2 * Copyright (c) 1985, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 4. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/types.h>
38 #include <stdio_ext.h>
44 /* #include "ftp_var.h" */
46 static int token (void);
57 static char tokval
[100];
59 static const char tokstr
[] =
61 #define TOK_DEFAULT_IDX 0
63 #define TOK_LOGIN_IDX (TOK_DEFAULT_IDX + sizeof "default")
65 #define TOK_PASSWORD_IDX (TOK_LOGIN_IDX + sizeof "login")
67 #define TOK_PASSWD_IDX (TOK_PASSWORD_IDX + sizeof "password")
69 #define TOK_ACCOUNT_IDX (TOK_PASSWD_IDX + sizeof "passwd")
71 #define TOK_MACHINE_IDX (TOK_ACCOUNT_IDX + sizeof "account")
73 #define TOK_MACDEF_IDX (TOK_MACHINE_IDX + sizeof "machine")
77 static const struct toktab
{
81 { TOK_DEFAULT_IDX
, DEFAULT
},
82 { TOK_LOGIN_IDX
, LOGIN
},
83 { TOK_PASSWORD_IDX
, PASSWD
},
84 { TOK_PASSWD_IDX
, PASSWD
},
85 { TOK_ACCOUNT_IDX
, ACCOUNT
},
86 { TOK_MACHINE_IDX
, MACHINE
},
87 { TOK_MACDEF_IDX
, MACDEF
}
93 ruserpass (const char *host
, const char **aname
, const char **apass
)
95 char *hdir
, *buf
, *tmp
;
96 char myname
[1024], *mydomain
;
97 int t
, usedefault
= 0;
100 hdir
= __libc_secure_getenv("HOME");
102 /* If we can't get HOME, fail instead of trying ".",
103 which is no improvement. This really should call
104 getpwuid(getuid()). */
109 buf
= alloca (strlen (hdir
) + 8);
111 __stpcpy (__stpcpy (buf
, hdir
), "/.netrc");
112 cfile
= fopen(buf
, "rce");
118 /* No threads use this stream. */
119 __fsetlocking (cfile
, FSETLOCKING_BYCALLER
);
120 if (__gethostname(myname
, sizeof(myname
)) < 0)
122 mydomain
= __strchrnul(myname
, '.');
124 while ((t
= token())) switch(t
) {
135 * Allow match either for user's input host name
136 * or official hostname. Also allow match of
137 * incompletely-specified host in local domain.
139 if (__strcasecmp(host
, tokval
) == 0)
141 /* if (__strcasecmp(hostname, tokval) == 0)
143 if ((tmp = strchr(hostname, '.')) != NULL &&
144 __strcasecmp(tmp, mydomain) == 0 &&
145 __strncasecmp(hostname, tokval, tmp-hostname) == 0 &&
146 tokval[tmp - hostname] == '\0')
148 if ((tmp
= strchr(host
, '.')) != NULL
&&
149 __strcasecmp(tmp
, mydomain
) == 0 &&
150 __strncasecmp(host
, tokval
, tmp
- host
) == 0 &&
151 tokval
[tmp
- host
] == '\0')
156 while ((t
= token()) && t
!= MACHINE
&& t
!= DEFAULT
) switch(t
) {
162 newp
= malloc((unsigned) strlen(tokval
) + 1);
165 warnx(_("out of memory"));
168 *aname
= strcpy(newp
, tokval
);
170 if (strcmp(*aname
, tokval
))
176 if (strcmp(*aname
, "anonymous") &&
177 fstat64(fileno(cfile
), &stb
) >= 0 &&
178 (stb
.st_mode
& 077) != 0) {
179 warnx(_("Error: .netrc file is readable by others."));
180 warnx(_("Remove 'password' line or make file unreadable by others."));
183 if (token() && *apass
== 0) {
185 newp
= malloc((unsigned) strlen(tokval
) + 1);
188 warnx(_("out of memory"));
191 *apass
= strcpy(newp
, tokval
);
199 warnx(_("Unknown .netrc keyword %s"), tokval
);
205 (void) fclose(cfile
);
208 (void) fclose(cfile
);
211 libc_hidden_def (ruserpass
)
220 if (feof_unlocked(cfile
) || ferror_unlocked(cfile
))
222 while ((c
= getc_unlocked(cfile
)) != EOF
&&
223 (c
== '\n' || c
== '\t' || c
== ' ' || c
== ','))
229 while ((c
= getc_unlocked(cfile
)) != EOF
&& c
!= '"') {
231 c
= getc_unlocked(cfile
);
236 while ((c
= getc_unlocked(cfile
)) != EOF
237 && c
!= '\n' && c
!= '\t' && c
!= ' ' && c
!= ',') {
239 c
= getc_unlocked(cfile
);
246 for (i
= 0; i
< (int) (sizeof (toktab
) / sizeof (toktab
[0])); ++i
)
247 if (!strcmp(&tokstr
[toktab
[i
].tokstr_off
], tokval
))
248 return toktab
[i
].tval
;