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 #if defined(LIBC_SCCS) && !defined(lint)
31 static char sccsid
[] = "@(#)ruserpass.c 8.3 (Berkeley) 4/2/94";
34 #include <sys/types.h>
42 #include <stdio_ext.h>
48 /* #include "ftp_var.h" */
50 static int token (void);
61 static char tokval
[100];
63 static const char tokstr
[] =
65 #define TOK_DEFAULT_IDX 0
67 #define TOK_LOGIN_IDX (TOK_DEFAULT_IDX + sizeof "default")
69 #define TOK_PASSWORD_IDX (TOK_LOGIN_IDX + sizeof "login")
71 #define TOK_PASSWD_IDX (TOK_PASSWORD_IDX + sizeof "password")
73 #define TOK_ACCOUNT_IDX (TOK_PASSWD_IDX + sizeof "passwd")
75 #define TOK_MACHINE_IDX (TOK_ACCOUNT_IDX + sizeof "account")
77 #define TOK_MACDEF_IDX (TOK_MACHINE_IDX + sizeof "machine")
81 static const struct toktab
{
85 { TOK_DEFAULT_IDX
, DEFAULT
},
86 { TOK_LOGIN_IDX
, LOGIN
},
87 { TOK_PASSWORD_IDX
, PASSWD
},
88 { TOK_PASSWD_IDX
, PASSWD
},
89 { TOK_ACCOUNT_IDX
, ACCOUNT
},
90 { TOK_MACHINE_IDX
, MACHINE
},
91 { TOK_MACDEF_IDX
, MACDEF
}
97 ruserpass (const char *host
, const char **aname
, const char **apass
)
99 char *hdir
, *buf
, *tmp
;
100 char myname
[1024], *mydomain
;
101 int t
, usedefault
= 0;
104 hdir
= __libc_secure_getenv("HOME");
106 /* If we can't get HOME, fail instead of trying ".",
107 which is no improvement. This really should call
108 getpwuid(getuid()). */
113 buf
= alloca (strlen (hdir
) + 8);
115 __stpcpy (__stpcpy (buf
, hdir
), "/.netrc");
116 cfile
= fopen(buf
, "rce");
122 /* No threads use this stream. */
123 __fsetlocking (cfile
, FSETLOCKING_BYCALLER
);
124 if (__gethostname(myname
, sizeof(myname
)) < 0)
126 mydomain
= __strchrnul(myname
, '.');
128 while ((t
= token())) switch(t
) {
139 * Allow match either for user's input host name
140 * or official hostname. Also allow match of
141 * incompletely-specified host in local domain.
143 if (__strcasecmp(host
, tokval
) == 0)
145 /* if (__strcasecmp(hostname, tokval) == 0)
147 if ((tmp = strchr(hostname, '.')) != NULL &&
148 __strcasecmp(tmp, mydomain) == 0 &&
149 __strncasecmp(hostname, tokval, tmp-hostname) == 0 &&
150 tokval[tmp - hostname] == '\0')
152 if ((tmp
= strchr(host
, '.')) != NULL
&&
153 __strcasecmp(tmp
, mydomain
) == 0 &&
154 __strncasecmp(host
, tokval
, tmp
- host
) == 0 &&
155 tokval
[tmp
- host
] == '\0')
160 while ((t
= token()) && t
!= MACHINE
&& t
!= DEFAULT
) switch(t
) {
166 newp
= malloc((unsigned) strlen(tokval
) + 1);
169 warnx(_("out of memory"));
172 *aname
= strcpy(newp
, tokval
);
174 if (strcmp(*aname
, tokval
))
180 if (strcmp(*aname
, "anonymous") &&
181 fstat64(fileno(cfile
), &stb
) >= 0 &&
182 (stb
.st_mode
& 077) != 0) {
183 warnx(_("Error: .netrc file is readable by others."));
184 warnx(_("Remove password or make file unreadable by others."));
187 if (token() && *apass
== 0) {
189 newp
= malloc((unsigned) strlen(tokval
) + 1);
192 warnx(_("out of memory"));
195 *apass
= strcpy(newp
, tokval
);
200 if (fstat64(fileno(cfile
), &stb
) >= 0
201 && (stb
.st_mode
& 077) != 0) {
202 warnx("Error: .netrc file is readable by others.");
203 warnx("Remove account or make file unreadable by others.");
206 if (token() && *aacct
== 0) {
207 *aacct
= malloc((unsigned) strlen(tokval
) + 1);
208 (void) strcpy(*aacct
, tokval
);
215 (void) fclose(cfile
);
218 while ((c
=getc_unlocked(cfile
)) != EOF
&& c
== ' '
220 if (c
== EOF
|| c
== '\n') {
221 printf("Missing macdef name argument.\n");
225 printf("Limit of 16 macros have already been defined\n");
228 tmp
= macros
[macnum
].mac_name
;
230 for (i
=0; i
< 8 && (c
=getc_unlocked(cfile
)) != EOF
&&
235 printf("Macro definition missing null line terminator.\n");
240 while ((c
=getc_unlocked(cfile
)) != EOF
244 printf("Macro definition missing null line terminator.\n");
248 macros
[macnum
].mac_start
= macbuf
;
251 macros
[macnum
].mac_start
= macros
[macnum
-1].mac_end
+ 1;
253 tmp
= macros
[macnum
].mac_start
;
254 while (tmp
!= macbuf
+ 4096) {
255 if ((c
=getc_unlocked(cfile
)) == EOF
) {
256 printf("Macro definition missing null line terminator.\n");
261 if (*(tmp
-1) == '\0') {
262 macros
[macnum
++].mac_end
= tmp
- 1;
269 if (tmp
== macbuf
+ 4096) {
270 printf("4K macro buffer exceeded\n");
276 warnx(_("Unknown .netrc keyword %s"), tokval
);
282 (void) fclose(cfile
);
285 (void) fclose(cfile
);
288 libc_hidden_def (ruserpass
)
297 if (feof_unlocked(cfile
) || ferror_unlocked(cfile
))
299 while ((c
= getc_unlocked(cfile
)) != EOF
&&
300 (c
== '\n' || c
== '\t' || c
== ' ' || c
== ','))
306 while ((c
= getc_unlocked(cfile
)) != EOF
&& c
!= '"') {
308 c
= getc_unlocked(cfile
);
313 while ((c
= getc_unlocked(cfile
)) != EOF
314 && c
!= '\n' && c
!= '\t' && c
!= ' ' && c
!= ',') {
316 c
= getc_unlocked(cfile
);
323 for (i
= 0; i
< (int) (sizeof (toktab
) / sizeof (toktab
[0])); ++i
)
324 if (!strcmp(&tokstr
[toktab
[i
].tokstr_off
], tokval
))
325 return toktab
[i
].tval
;