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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-08-02 08:24:51 -04:00
|
|
|
* Copyright (C) 1998 - 2017, 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"
|
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
|
|
|
};
|
|
|
|
|
2011-06-10 08:40:46 -04:00
|
|
|
/*
|
|
|
|
* @unittest: 1304
|
2013-08-29 06:49:56 -04:00
|
|
|
*
|
|
|
|
* *loginp and *passwordp MUST be allocated if they aren't NULL when passed
|
|
|
|
* in.
|
2011-06-10 08:40:46 -04:00
|
|
|
*/
|
2008-07-31 20:49:29 -04:00
|
|
|
int Curl_parsenetrc(const char *host,
|
2013-08-19 03:48:24 -04:00
|
|
|
char **loginp,
|
|
|
|
char **passwordp,
|
2003-11-11 09:30:43 -05:00
|
|
|
char *netrcfile)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
FILE *file;
|
2017-09-09 17:09:06 -04:00
|
|
|
int retcode = 1;
|
2014-04-19 10:00:43 -04:00
|
|
|
int specific_login = (*loginp && **loginp != 0);
|
2003-11-11 09:30:43 -05:00
|
|
|
bool netrc_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
|
|
|
|
2003-11-24 06:41:26 -05:00
|
|
|
#define NETRC DOT_CHAR "netrc"
|
|
|
|
|
2003-11-11 09:30:43 -05:00
|
|
|
if(!netrcfile) {
|
2014-01-24 15:52:48 -05:00
|
|
|
bool home_alloc = FALSE;
|
|
|
|
char *home = curl_getenv("HOME"); /* portable environment reader */
|
2004-02-19 04:22:00 -05:00
|
|
|
if(home) {
|
|
|
|
home_alloc = TRUE;
|
2014-07-12 18:18:40 -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) {
|
|
|
|
home = strdup(pw.pw_dir);
|
|
|
|
if(!home)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
home_alloc = TRUE;
|
|
|
|
}
|
|
|
|
#elif defined(HAVE_GETPWUID) && defined(HAVE_GETEUID)
|
2004-02-19 04:22:00 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct passwd *pw;
|
2017-09-09 17:09:06 -04:00
|
|
|
pw = getpwuid(geteuid());
|
2007-11-07 04:21:35 -05:00
|
|
|
if(pw) {
|
2004-02-19 04:22:00 -05:00
|
|
|
home = pw->pw_dir;
|
|
|
|
}
|
2003-11-11 09:30:43 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-02-19 04:22:00 -05:00
|
|
|
if(!home)
|
2014-07-12 14:19:34 -04:00
|
|
|
return retcode; /* no home directory found (or possibly out of memory) */
|
2004-02-19 04:22:00 -05:00
|
|
|
|
2003-11-11 09:30:43 -05:00
|
|
|
netrcfile = curl_maprintf("%s%s%s", home, DIR_CHAR, NETRC);
|
2014-01-24 15:52:48 -05:00
|
|
|
if(home_alloc)
|
2015-03-16 10:01:15 -04:00
|
|
|
free(home);
|
2003-11-11 09:30:43 -05:00
|
|
|
if(!netrcfile) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
netrc_alloc = TRUE;
|
|
|
|
}
|
2002-05-21 18:17:19 -04:00
|
|
|
|
2015-06-01 03:20:18 -04:00
|
|
|
file = fopen(netrcfile, FOPEN_READTEXT);
|
2014-01-24 15:52:48 -05:00
|
|
|
if(netrc_alloc)
|
2015-03-16 10:01:15 -04:00
|
|
|
free(netrcfile);
|
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;
|
2003-11-11 09:30:43 -05:00
|
|
|
char netrcbuffer[256];
|
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;
|
2003-08-20 11:40:21 -04:00
|
|
|
while(!done && tok) {
|
2002-05-21 18:17:19 -04:00
|
|
|
|
2014-04-19 10:00:43 -04:00
|
|
|
if((*loginp && **loginp) && (*passwordp && **passwordp)) {
|
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;
|
|
|
|
retcode = 0; /* 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;
|
|
|
|
retcode = 0; /* 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) {
|
2016-09-30 12:54:02 -04:00
|
|
|
state_our_login = strcasecompare(*loginp, tok);
|
2003-08-20 11:40:21 -04:00
|
|
|
}
|
|
|
|
else {
|
2013-08-19 03:48:24 -04:00
|
|
|
free(*loginp);
|
|
|
|
*loginp = strdup(tok);
|
2014-01-24 15:52:48 -05:00
|
|
|
if(!*loginp) {
|
|
|
|
retcode = -1; /* allocation failed */
|
|
|
|
goto out;
|
|
|
|
}
|
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) {
|
2007-11-07 04:21:35 -05:00
|
|
|
if(state_our_login || !specific_login) {
|
2013-08-19 03:48:24 -04:00
|
|
|
free(*passwordp);
|
|
|
|
*passwordp = strdup(tok);
|
2014-01-24 15:52:48 -05:00
|
|
|
if(!*passwordp) {
|
|
|
|
retcode = -1; /* allocation failed */
|
|
|
|
goto out;
|
|
|
|
}
|
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:
|
1999-12-29 09:20:26 -05:00
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
return retcode;
|
|
|
|
}
|