]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/netrc.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: netrc.c,v 1.38 2007-11-07 09:21:35 bagder Exp $
4 /* ######################################################################
6 netrc file parser - returns the login and password of a give host in
7 a specified netrc-type file
9 Originally written by Daniel Stenberg, <daniel@haxx.se>, et al. and
10 placed into the Public Domain, do with it what you will.
12 ##################################################################### */
16 #include <apt-pkg/configuration.h>
17 #include <apt-pkg/strutl.h>
31 /* Get user and password from .netrc when given a machine name */
35 HOSTFOUND
, /* the 'machine' keyword was found */
36 HOSTCOMPLETE
, /* the machine name following the keyword was found too */
37 HOSTVALID
, /* this is "our" machine! */
38 HOSTEND
/* LAST enum */
41 /* make sure we have room for at least this size: */
43 #define PASSWORDSIZE 256
44 #define NETRC DOT_CHAR "netrc"
46 /* returns -1 on failure, 0 if the host is found, 1 is the host isn't found */
47 static int parsenetrc_string (char *host
, std::string
&login
, std::string
&password
, char *netrcfile
= NULL
)
51 int specific_login
= (login
.empty() == false);
52 bool netrc_alloc
= false;
55 char const * home
= getenv ("HOME"); /* portable environment reader */
59 pw
= getpwuid (geteuid ());
67 if (asprintf (&netrcfile
, "%s%s%s", home
, DIR_CHAR
, NETRC
) == -1 || netrcfile
== NULL
)
73 file
= fopen (netrcfile
, "r");
78 char *netrcbuffer
= NULL
;
79 size_t netrcbuffer_size
= 0;
82 char state_login
= 0; /* Found a login keyword */
83 char state_password
= 0; /* Found a password keyword */
84 int state_our_login
= false; /* With specific_login,
85 found *our* login name */
87 while (!done
&& getline(&netrcbuffer
, &netrcbuffer_size
, file
) != -1) {
88 tok
= strtok_r (netrcbuffer
, " \t\n", &tok_buf
);
89 while (!done
&& tok
) {
90 if(login
.empty() == false && password
.empty() == false) {
97 if (!strcasecmp ("machine", tok
)) {
98 /* the next tok is the machine name, this is in itself the
99 delimiter that starts the stuff entered for this machine,
100 after this we need to search for 'login' and
106 /* extended definition of a "machine" if we have a "/"
107 we match the start of the string (host.startswith(token) */
108 if ((strchr(host
, '/') && strstr(host
, tok
) == host
) ||
109 (!strcasecmp (host
, tok
))) {
110 /* and yes, this is our host! */
112 retcode
= 0; /* we did find our host */
119 /* we are now parsing sub-keywords concerning "our" host */
122 state_our_login
= !strcasecmp (login
.c_str(), tok
);
126 } else if (state_password
) {
127 if (state_our_login
|| !specific_login
)
130 } else if (!strcasecmp ("login", tok
))
132 else if (!strcasecmp ("password", tok
))
134 else if(!strcasecmp ("machine", tok
)) {
135 /* ok, there's machine here go => */
137 state_our_login
= false;
140 } /* switch (state) */
142 tok
= strtok_r (NULL
, " \t\n", &tok_buf
);
144 } /* while getline() */
155 // for some unknown reason this method is exported so keep a compatible interface for now …
156 int parsenetrc (char *host
, char *login
, char *password
, char *netrcfile
= NULL
)
158 std::string login_string
, password_string
;
159 int const ret
= parsenetrc_string(host
, login_string
, password_string
, netrcfile
);
162 strncpy(login
, login_string
.c_str(), LOGINSIZE
- 1);
163 strncpy(password
, password_string
.c_str(), PASSWORDSIZE
- 1);
168 void maybe_add_auth (URI
&Uri
, string NetRCFile
)
170 if (_config
->FindB("Debug::Acquire::netrc", false) == true)
171 std::clog
<< "maybe_add_auth: " << (string
)Uri
172 << " " << NetRCFile
<< std::endl
;
173 if (Uri
.Password
.empty () == true || Uri
.User
.empty () == true)
175 if (NetRCFile
.empty () == false)
177 std::string login
, password
;
178 char *netrcfile
= strdup(NetRCFile
.c_str());
180 // first check for a generic host based netrc entry
181 char *host
= strdup(Uri
.Host
.c_str());
182 if (host
&& parsenetrc_string(host
, login
, password
, netrcfile
) == 0)
184 if (_config
->FindB("Debug::Acquire::netrc", false) == true)
185 std::clog
<< "host: " << host
186 << " user: " << login
187 << " pass-size: " << password
.size()
190 Uri
.Password
= password
;
197 // if host did not work, try Host+Path next, this will trigger
198 // a lookup uri.startswith(host) in the netrc file parser (because
200 char *hostpath
= strdup((Uri
.Host
+ Uri
.Path
).c_str());
201 if (hostpath
&& parsenetrc_string(hostpath
, login
, password
, netrcfile
) == 0)
203 if (_config
->FindB("Debug::Acquire::netrc", false) == true)
204 std::clog
<< "hostpath: " << hostpath
205 << " user: " << login
206 << " pass-size: " << password
.size()
209 Uri
.Password
= password
;
218 int main(int argc
, char* argv
[])
221 char password
[64] = "";
226 if(0 == parsenetrc (argv
[1], login
, password
, argv
[2])) {
227 printf("HOST: %s LOGIN: %s PASSWORD: %s\n", argv
[1], login
, password
);