2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-10-06 03:50:18 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-05-05 11:08:22 -04:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-10-06 03:50:18 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2019-05-05 11:08:22 -04:00
|
|
|
#ifndef CURL_DISABLE_NETRC
|
2000-08-24 10:26:33 -04:00
|
|
|
|
2001-03-14 11:05:00 -05:00
|
|
|
#ifdef HAVE_PWD_H
|
|
|
|
#include <pwd.h>
|
|
|
|
#endif
|
|
|
|
|
2001-02-07 03:36:23 -05:00
|
|
|
#include <curl/curl.h>
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "netrc.h"
|
|
|
|
#include "strtok.h"
|
2016-09-30 12:54:02 -04:00
|
|
|
#include "strcase.h"
|
2003-11-11 09:30:43 -05:00
|
|
|
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
|
|
|
#include "curl_printf.h"
|
2015-03-24 18:12:03 -04:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2001-03-16 10:19:36 -05:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* Get user and password from .netrc when given a machine name */
|
|
|
|
|
2011-01-28 11:20:37 -05:00
|
|
|
enum host_lookup_state {
|
1999-12-29 09:20:26 -05:00
|
|
|
NOTHING,
|
|
|
|
HOSTFOUND, /* the 'machine' keyword was found */
|
2012-06-12 16:46:14 -04:00
|
|
|
HOSTVALID /* this is "our" machine! */
|
1999-12-29 09:20:26 -05:00
|
|
|
};
|
|
|
|
|
2019-08-16 05:30:29 -04:00
|
|
|
#define NETRC_FILE_MISSING 1
|
|
|
|
#define NETRC_FAILED -1
|
|
|
|
#define NETRC_SUCCESS 0
|
|
|
|
|
2011-06-10 08:40:46 -04:00
|
|
|
/*
|
2019-08-16 05:30:29 -04:00
|
|
|
* Returns zero on success.
|
2011-06-10 08:40:46 -04:00
|
|
|
*/
|
2019-08-16 05:30:29 -04:00
|
|
|
static int parsenetrc(const char *host,
|
|
|
|
char **loginp,
|
|
|
|
char **passwordp,
|
|
|
|
bool *login_changed,
|
|
|
|
bool *password_changed,
|
|
|
|
char *netrcfile)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
FILE *file;
|
2019-08-16 05:30:29 -04:00
|
|
|
int retcode = NETRC_FILE_MISSING;
|
2018-10-10 16:38:50 -04:00
|
|
|
char *login = *loginp;
|
|
|
|
char *password = *passwordp;
|
|
|
|
bool specific_login = (login && *login != 0);
|
|
|
|
bool login_alloc = FALSE;
|
|
|
|
bool password_alloc = FALSE;
|
2017-09-09 17:09:06 -04:00
|
|
|
enum host_lookup_state state = NOTHING;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2017-09-09 17:09:06 -04:00
|
|
|
char state_login = 0; /* Found a login keyword */
|
|
|
|
char state_password = 0; /* Found a password keyword */
|
|
|
|
int state_our_login = FALSE; /* With specific_login, found *our* login
|
|
|
|
name */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2019-08-16 05:30:29 -04:00
|
|
|
DEBUGASSERT(netrcfile);
|
2002-05-21 18:17:19 -04:00
|
|
|
|
2015-06-01 03:20:18 -04:00
|
|
|
file = fopen(netrcfile, FOPEN_READTEXT);
|
1999-12-29 09:20:26 -05:00
|
|
|
if(file) {
|
|
|
|
char *tok;
|
2003-08-20 11:40:21 -04:00
|
|
|
char *tok_buf;
|
2017-09-09 17:09:06 -04:00
|
|
|
bool done = FALSE;
|
2018-06-23 15:32:22 -04:00
|
|
|
char netrcbuffer[4096];
|
2009-04-14 08:53:53 -04:00
|
|
|
int netrcbuffsize = (int)sizeof(netrcbuffer);
|
2010-02-14 14:40:18 -05:00
|
|
|
|
2009-04-14 08:53:53 -04:00
|
|
|
while(!done && fgets(netrcbuffer, netrcbuffsize, file)) {
|
2017-09-09 17:09:06 -04:00
|
|
|
tok = strtok_r(netrcbuffer, " \t\n", &tok_buf);
|
2017-08-02 08:24:51 -04:00
|
|
|
if(tok && *tok == '#')
|
|
|
|
/* treat an initial hash as a comment line */
|
|
|
|
continue;
|
2019-09-19 03:34:30 -04:00
|
|
|
while(tok) {
|
2002-05-21 18:17:19 -04:00
|
|
|
|
2018-10-10 16:38:50 -04:00
|
|
|
if((login && *login) && (password && *password)) {
|
2017-09-09 17:09:06 -04:00
|
|
|
done = TRUE;
|
2003-08-20 11:40:21 -04:00
|
|
|
break;
|
|
|
|
}
|
2002-05-21 18:17:19 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
switch(state) {
|
|
|
|
case NOTHING:
|
2016-09-30 12:54:02 -04:00
|
|
|
if(strcasecompare("machine", tok)) {
|
2004-10-06 03:50:18 -04:00
|
|
|
/* the next tok is the machine name, this is in itself the
|
|
|
|
delimiter that starts the stuff entered for this machine,
|
|
|
|
after this we need to search for 'login' and
|
|
|
|
'password'. */
|
2017-09-09 17:09:06 -04:00
|
|
|
state = HOSTFOUND;
|
2004-10-06 03:50:18 -04:00
|
|
|
}
|
2016-09-30 12:54:02 -04:00
|
|
|
else if(strcasecompare("default", tok)) {
|
2017-09-09 17:09:06 -04:00
|
|
|
state = HOSTVALID;
|
2019-08-16 05:30:29 -04:00
|
|
|
retcode = NETRC_SUCCESS; /* we did find our host */
|
2015-04-08 21:46:15 -04:00
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
break;
|
|
|
|
case HOSTFOUND:
|
2016-09-30 12:54:02 -04:00
|
|
|
if(strcasecompare(host, tok)) {
|
2004-10-06 03:50:18 -04:00
|
|
|
/* and yes, this is our host! */
|
2017-09-09 17:09:06 -04:00
|
|
|
state = HOSTVALID;
|
2019-08-16 05:30:29 -04:00
|
|
|
retcode = NETRC_SUCCESS; /* we did find our host */
|
2004-10-06 03:50:18 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
/* not our host */
|
2017-09-09 17:09:06 -04:00
|
|
|
state = NOTHING;
|
2004-10-06 03:50:18 -04:00
|
|
|
break;
|
|
|
|
case HOSTVALID:
|
|
|
|
/* we are now parsing sub-keywords concerning "our" host */
|
|
|
|
if(state_login) {
|
2007-11-07 04:21:35 -05:00
|
|
|
if(specific_login) {
|
2018-10-10 16:38:50 -04:00
|
|
|
state_our_login = strcasecompare(login, tok);
|
2003-08-20 11:40:21 -04:00
|
|
|
}
|
2018-11-03 11:58:18 -04:00
|
|
|
else if(!login || strcmp(login, tok)) {
|
2018-10-10 16:38:50 -04:00
|
|
|
if(login_alloc) {
|
|
|
|
free(login);
|
|
|
|
login_alloc = FALSE;
|
|
|
|
}
|
|
|
|
login = strdup(tok);
|
|
|
|
if(!login) {
|
2019-08-16 05:30:29 -04:00
|
|
|
retcode = NETRC_FAILED; /* allocation failed */
|
2014-01-24 15:52:48 -05:00
|
|
|
goto out;
|
|
|
|
}
|
2018-10-10 16:38:50 -04:00
|
|
|
login_alloc = TRUE;
|
2002-05-21 18:17:19 -04:00
|
|
|
}
|
2017-09-09 17:09:06 -04:00
|
|
|
state_login = 0;
|
2004-10-06 03:50:18 -04:00
|
|
|
}
|
|
|
|
else if(state_password) {
|
2018-11-03 11:58:18 -04:00
|
|
|
if((state_our_login || !specific_login)
|
|
|
|
&& (!password || strcmp(password, tok))) {
|
2018-10-10 16:38:50 -04:00
|
|
|
if(password_alloc) {
|
|
|
|
free(password);
|
|
|
|
password_alloc = FALSE;
|
|
|
|
}
|
|
|
|
password = strdup(tok);
|
|
|
|
if(!password) {
|
2019-08-16 05:30:29 -04:00
|
|
|
retcode = NETRC_FAILED; /* allocation failed */
|
2014-01-24 15:52:48 -05:00
|
|
|
goto out;
|
|
|
|
}
|
2018-10-10 16:38:50 -04:00
|
|
|
password_alloc = TRUE;
|
2002-05-21 18:17:19 -04:00
|
|
|
}
|
2017-09-09 17:09:06 -04:00
|
|
|
state_password = 0;
|
2004-10-06 03:50:18 -04:00
|
|
|
}
|
2016-09-30 12:54:02 -04:00
|
|
|
else if(strcasecompare("login", tok))
|
2017-09-09 17:09:06 -04:00
|
|
|
state_login = 1;
|
2016-09-30 12:54:02 -04:00
|
|
|
else if(strcasecompare("password", tok))
|
2017-09-09 17:09:06 -04:00
|
|
|
state_password = 1;
|
2016-09-30 12:54:02 -04:00
|
|
|
else if(strcasecompare("machine", tok)) {
|
2004-10-06 03:50:18 -04:00
|
|
|
/* ok, there's machine here go => */
|
|
|
|
state = HOSTFOUND;
|
2004-03-23 10:30:12 -05:00
|
|
|
state_our_login = FALSE;
|
2004-10-06 03:50:18 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
} /* switch (state) */
|
2002-05-21 18:17:19 -04:00
|
|
|
|
2004-10-06 03:50:18 -04:00
|
|
|
tok = strtok_r(NULL, " \t\n", &tok_buf);
|
2007-11-07 04:21:35 -05:00
|
|
|
} /* while(tok) */
|
1999-12-29 09:20:26 -05:00
|
|
|
} /* while fgets() */
|
|
|
|
|
2014-01-24 15:52:48 -05:00
|
|
|
out:
|
2018-10-10 16:38:50 -04:00
|
|
|
if(!retcode) {
|
2019-08-16 05:30:29 -04:00
|
|
|
/* success */
|
2018-11-03 11:58:18 -04:00
|
|
|
*login_changed = FALSE;
|
|
|
|
*password_changed = FALSE;
|
2018-10-10 16:38:50 -04:00
|
|
|
if(login_alloc) {
|
|
|
|
if(*loginp)
|
|
|
|
free(*loginp);
|
|
|
|
*loginp = login;
|
2018-11-03 11:58:18 -04:00
|
|
|
*login_changed = TRUE;
|
2018-10-10 16:38:50 -04:00
|
|
|
}
|
|
|
|
if(password_alloc) {
|
|
|
|
if(*passwordp)
|
|
|
|
free(*passwordp);
|
|
|
|
*passwordp = password;
|
2018-11-03 11:58:18 -04:00
|
|
|
*password_changed = TRUE;
|
2018-10-10 16:38:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(login_alloc)
|
|
|
|
free(login);
|
|
|
|
if(password_alloc)
|
|
|
|
free(password);
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
return retcode;
|
|
|
|
}
|
2019-05-05 11:08:22 -04:00
|
|
|
|
2019-08-16 05:30:29 -04:00
|
|
|
/*
|
|
|
|
* @unittest: 1304
|
|
|
|
*
|
|
|
|
* *loginp and *passwordp MUST be allocated if they aren't NULL when passed
|
|
|
|
* in.
|
|
|
|
*/
|
|
|
|
int Curl_parsenetrc(const char *host,
|
|
|
|
char **loginp,
|
|
|
|
char **passwordp,
|
|
|
|
bool *login_changed,
|
|
|
|
bool *password_changed,
|
|
|
|
char *netrcfile)
|
|
|
|
{
|
|
|
|
int retcode = 1;
|
|
|
|
char *filealloc = NULL;
|
|
|
|
|
|
|
|
if(!netrcfile) {
|
2019-09-03 07:46:36 -04:00
|
|
|
char *home = NULL;
|
|
|
|
char *homea = curl_getenv("HOME"); /* portable environment reader */
|
|
|
|
if(homea) {
|
|
|
|
home = homea;
|
2019-08-16 05:30:29 -04:00
|
|
|
#if defined(HAVE_GETPWUID_R) && defined(HAVE_GETEUID)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct passwd pw, *pw_res;
|
|
|
|
char pwbuf[1024];
|
|
|
|
if(!getpwuid_r(geteuid(), &pw, pwbuf, sizeof(pwbuf), &pw_res)
|
|
|
|
&& pw_res) {
|
2019-09-03 07:46:36 -04:00
|
|
|
home = pw.pw_dir;
|
2019-08-16 05:30:29 -04:00
|
|
|
}
|
|
|
|
#elif defined(HAVE_GETPWUID) && defined(HAVE_GETEUID)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct passwd *pw;
|
|
|
|
pw = getpwuid(geteuid());
|
|
|
|
if(pw) {
|
|
|
|
home = pw->pw_dir;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!home)
|
|
|
|
return retcode; /* no home directory found (or possibly out of
|
|
|
|
memory) */
|
|
|
|
|
|
|
|
filealloc = curl_maprintf("%s%s.netrc", home, DIR_CHAR);
|
2019-09-03 07:46:36 -04:00
|
|
|
if(!filealloc) {
|
|
|
|
free(homea);
|
2019-08-16 05:30:29 -04:00
|
|
|
return -1;
|
2019-09-03 07:46:36 -04:00
|
|
|
}
|
2019-08-16 05:30:29 -04:00
|
|
|
retcode = parsenetrc(host, loginp, passwordp, login_changed,
|
|
|
|
password_changed, filealloc);
|
|
|
|
free(filealloc);
|
|
|
|
#ifdef WIN32
|
|
|
|
if(retcode == NETRC_FILE_MISSING) {
|
|
|
|
/* fallback to the old-style "_netrc" file */
|
|
|
|
filealloc = curl_maprintf("%s%s_netrc", home, DIR_CHAR);
|
2019-09-03 07:46:36 -04:00
|
|
|
if(!filealloc) {
|
|
|
|
free(homea);
|
2019-08-16 05:30:29 -04:00
|
|
|
return -1;
|
2019-09-03 07:46:36 -04:00
|
|
|
}
|
2019-08-16 05:30:29 -04:00
|
|
|
retcode = parsenetrc(host, loginp, passwordp, login_changed,
|
|
|
|
password_changed, filealloc);
|
|
|
|
free(filealloc);
|
|
|
|
}
|
|
|
|
#endif
|
2019-09-03 07:46:36 -04:00
|
|
|
free(homea);
|
2019-08-16 05:30:29 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
retcode = parsenetrc(host, loginp, passwordp, login_changed,
|
|
|
|
password_changed, netrcfile);
|
|
|
|
return retcode;
|
|
|
|
}
|
|
|
|
|
2019-05-05 11:08:22 -04:00
|
|
|
#endif
|