1 /***************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 * $Id: netrc.c,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
22 ***************************************************************************/
40 #include <curl/curl.h>
47 #define _MPRINTF_REPLACE /* use our functions only */
48 #include <curl/mprintf.h>
50 /* The last #include file should be: */
53 /* Debug this single source file with:
54 'make netrc' then run './netrc'!
56 Oh, make sure you have a .netrc file too ;-)
59 /* Get user and password from .netrc when given a machine name */
63 HOSTFOUND
, /* the 'machine' keyword was found */
64 HOSTCOMPLETE
, /* the machine name following the keyword was found too */
65 HOSTVALID
, /* this is "our" machine! */
67 HOSTEND
/* LAST enum */
70 /* make sure we have room for at least this size: */
72 #define PASSWORDSIZE 64
74 /* returns -1 on failure, 0 if the host is found, 1 is the host isn't found */
75 int Curl_parsenetrc(const char *host
,
82 int specific_login
= (login
[0] != 0);
84 bool home_alloc
= FALSE
;
85 bool netrc_alloc
= FALSE
;
88 char state_login
=0; /* Found a login keyword */
89 char state_password
=0; /* Found a password keyword */
90 int state_our_login
=FALSE
; /* With specific_login, found *our* login name */
92 #define NETRC DOT_CHAR "netrc"
96 /* This is a hack to allow testing.
97 * If compiled with --enable-debug and CURL_DEBUG_NETRC is defined,
98 * then it's the path to a substitute .netrc for testing purposes *only* */
100 char *override
= curl_getenv("CURL_DEBUG_NETRC");
103 fprintf(stderr
, "NETRC: overridden " NETRC
" file: %s\n", override
);
104 netrcfile
= override
;
108 #endif /* CURLDEBUG */
110 home
= curl_getenv("HOME"); /* portable environment reader */
113 #if defined(HAVE_GETPWUID) && defined(HAVE_GETEUID)
117 pw
= getpwuid(geteuid());
120 home
= decc$
translate_vms(pw
->pw_dir
);
131 netrcfile
= curl_maprintf("%s%s%s", home
, DIR_CHAR
, NETRC
);
140 file
= fopen(netrcfile
, "r");
145 char netrcbuffer
[256];
147 while(!done
&& fgets(netrcbuffer
, sizeof(netrcbuffer
), file
)) {
148 tok
=strtok_r(netrcbuffer
, " \t\n", &tok_buf
);
149 while(!done
&& tok
) {
151 if(login
[0] && password
[0]) {
158 if(strequal("machine", tok
)) {
159 /* the next tok is the machine name, this is in itself the
160 delimiter that starts the stuff entered for this machine,
161 after this we need to search for 'login' and
167 if(strequal(host
, tok
)) {
168 /* and yes, this is our host! */
171 fprintf(stderr
, "HOST: %s\n", tok
);
173 retcode
=0; /* we did find our host */
180 /* we are now parsing sub-keywords concerning "our" host */
183 state_our_login
= strequal(login
, tok
);
186 strncpy(login
, tok
, LOGINSIZE
-1);
188 fprintf(stderr
, "LOGIN: %s\n", login
);
193 else if(state_password
) {
194 if(state_our_login
|| !specific_login
) {
195 strncpy(password
, tok
, PASSWORDSIZE
-1);
197 fprintf(stderr
, "PASSWORD: %s\n", password
);
202 else if(strequal("login", tok
))
204 else if(strequal("password", tok
))
206 else if(strequal("machine", tok
)) {
207 /* ok, there's machine here go => */
209 state_our_login
= FALSE
;
212 } /* switch (state) */
214 tok
= strtok_r(NULL
, " \t\n", &tok_buf
);
216 } /* while fgets() */
230 int main(int argc
, argv_item_t argv
[])
233 char password
[64]="";
238 if(0 == ParseNetrc(argv
[1], login
, password
)) {
239 printf("HOST: %s LOGIN: %s PASSWORD: %s\n",
240 argv
[1], login
, password
);