1995-07-26 02:13:55 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1985, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1999-04-28 23:56:46 +02:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1995-07-26 02:13:55 +02:00
|
|
|
static char sccsid[] = "@(#)ruserpass.c 8.3 (Berkeley) 4/2/94";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
1996-08-16 03:33:20 +02:00
|
|
|
#include <err.h>
|
1995-07-26 02:13:55 +02:00
|
|
|
#include <errno.h>
|
2000-05-29 20:04:55 +02:00
|
|
|
#include <netdb.h>
|
1995-07-26 02:13:55 +02:00
|
|
|
#include <stdio.h>
|
2001-07-17 10:32:35 +02:00
|
|
|
#include <stdio_ext.h>
|
1995-07-26 02:13:55 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
1999-06-19 11:58:37 +02:00
|
|
|
#include <libintl.h>
|
1995-07-26 02:13:55 +02:00
|
|
|
|
|
|
|
/* #include "ftp_var.h" */
|
|
|
|
|
2000-05-29 20:04:55 +02:00
|
|
|
static int token (void);
|
1995-07-26 02:13:55 +02:00
|
|
|
static FILE *cfile;
|
|
|
|
|
|
|
|
#define DEFAULT 1
|
|
|
|
#define LOGIN 2
|
|
|
|
#define PASSWD 3
|
|
|
|
#define ACCOUNT 4
|
|
|
|
#define MACDEF 5
|
|
|
|
#define ID 10
|
|
|
|
#define MACHINE 11
|
|
|
|
|
|
|
|
static char tokval[100];
|
|
|
|
|
1999-04-28 23:56:46 +02:00
|
|
|
static const char tokstr[] =
|
|
|
|
{
|
|
|
|
#define TOK_DEFAULT_IDX 0
|
|
|
|
"default\0"
|
|
|
|
#define TOK_LOGIN_IDX (TOK_DEFAULT_IDX + sizeof "default")
|
|
|
|
"login\0"
|
|
|
|
#define TOK_PASSWORD_IDX (TOK_LOGIN_IDX + sizeof "login")
|
|
|
|
"password\0"
|
|
|
|
#define TOK_PASSWD_IDX (TOK_PASSWORD_IDX + sizeof "password")
|
|
|
|
"passwd\0"
|
|
|
|
#define TOK_ACCOUNT_IDX (TOK_PASSWD_IDX + sizeof "passwd")
|
|
|
|
"account\0"
|
|
|
|
#define TOK_MACHINE_IDX (TOK_ACCOUNT_IDX + sizeof "account")
|
|
|
|
"machine\0"
|
|
|
|
#define TOK_MACDEF_IDX (TOK_MACHINE_IDX + sizeof "machine")
|
|
|
|
"macdef"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct toktab {
|
|
|
|
int tokstr_off;
|
1995-07-26 02:13:55 +02:00
|
|
|
int tval;
|
|
|
|
} toktab[]= {
|
1999-04-28 23:56:46 +02:00
|
|
|
{ TOK_DEFAULT_IDX, DEFAULT },
|
|
|
|
{ TOK_LOGIN_IDX, LOGIN },
|
|
|
|
{ TOK_PASSWORD_IDX, PASSWD },
|
|
|
|
{ TOK_PASSWD_IDX, PASSWD },
|
|
|
|
{ TOK_ACCOUNT_IDX, ACCOUNT },
|
|
|
|
{ TOK_MACHINE_IDX, MACHINE },
|
|
|
|
{ TOK_MACDEF_IDX, MACDEF }
|
1995-07-26 02:13:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
ruserpass(host, aname, apass)
|
2000-05-29 20:04:55 +02:00
|
|
|
const char *host, **aname, **apass;
|
1995-07-26 02:13:55 +02:00
|
|
|
{
|
1996-08-16 03:33:20 +02:00
|
|
|
char *hdir, *buf, *tmp;
|
1995-07-26 02:13:55 +02:00
|
|
|
char myname[1024], *mydomain;
|
2000-05-29 20:04:55 +02:00
|
|
|
int t, usedefault = 0;
|
2000-09-01 04:26:05 +02:00
|
|
|
struct stat64 stb;
|
1995-07-26 02:13:55 +02:00
|
|
|
|
1996-09-28 05:24:10 +02:00
|
|
|
hdir = __secure_getenv("HOME");
|
|
|
|
if (hdir == NULL) {
|
|
|
|
/* If we can't get HOME, fail instead of trying ".",
|
|
|
|
which is no improvement. This really should call
|
|
|
|
getpwuid(getuid()). */
|
|
|
|
/*hdir = ".";*/
|
|
|
|
return -1;
|
|
|
|
}
|
1996-08-16 03:33:20 +02:00
|
|
|
|
|
|
|
buf = alloca (strlen (hdir) + 8);
|
|
|
|
|
1997-11-06 01:02:46 +01:00
|
|
|
__stpcpy (__stpcpy (buf, hdir), "/.netrc");
|
2003-09-04 10:27:37 +02:00
|
|
|
cfile = fopen(buf, "rc");
|
1995-07-26 02:13:55 +02:00
|
|
|
if (cfile == NULL) {
|
1996-08-16 03:33:20 +02:00
|
|
|
if (errno != ENOENT)
|
|
|
|
warn("%s", buf);
|
1995-07-26 02:13:55 +02:00
|
|
|
return (0);
|
|
|
|
}
|
2001-07-17 10:32:35 +02:00
|
|
|
/* No threads use this stream. */
|
|
|
|
__fsetlocking (cfile, FSETLOCKING_BYCALLER);
|
1998-07-16 13:44:36 +02:00
|
|
|
if (__gethostname(myname, sizeof(myname)) < 0)
|
1995-07-26 02:13:55 +02:00
|
|
|
myname[0] = '\0';
|
1999-04-28 23:56:46 +02:00
|
|
|
mydomain = __strchrnul(myname, '.');
|
1995-07-26 02:13:55 +02:00
|
|
|
next:
|
|
|
|
while ((t = token())) switch(t) {
|
|
|
|
|
|
|
|
case DEFAULT:
|
|
|
|
usedefault = 1;
|
|
|
|
/* FALL THROUGH */
|
|
|
|
|
|
|
|
case MACHINE:
|
|
|
|
if (!usedefault) {
|
|
|
|
if (token() != ID)
|
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* Allow match either for user's input host name
|
1996-08-16 03:33:20 +02:00
|
|
|
* or official hostname. Also allow match of
|
1995-07-26 02:13:55 +02:00
|
|
|
* incompletely-specified host in local domain.
|
|
|
|
*/
|
1998-07-16 13:44:36 +02:00
|
|
|
if (__strcasecmp(host, tokval) == 0)
|
1995-07-26 02:13:55 +02:00
|
|
|
goto match;
|
1998-07-16 13:44:36 +02:00
|
|
|
/* if (__strcasecmp(hostname, tokval) == 0)
|
1996-08-16 03:33:20 +02:00
|
|
|
goto match;
|
1995-07-26 02:13:55 +02:00
|
|
|
if ((tmp = strchr(hostname, '.')) != NULL &&
|
1998-07-16 13:44:36 +02:00
|
|
|
__strcasecmp(tmp, mydomain) == 0 &&
|
|
|
|
__strncasecmp(hostname, tokval, tmp-hostname) == 0 &&
|
1995-07-26 02:13:55 +02:00
|
|
|
tokval[tmp - hostname] == '\0')
|
|
|
|
goto match; */
|
|
|
|
if ((tmp = strchr(host, '.')) != NULL &&
|
1998-07-16 13:44:36 +02:00
|
|
|
__strcasecmp(tmp, mydomain) == 0 &&
|
|
|
|
__strncasecmp(host, tokval, tmp - host) == 0 &&
|
1995-07-26 02:13:55 +02:00
|
|
|
tokval[tmp - host] == '\0')
|
|
|
|
goto match;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
match:
|
|
|
|
while ((t = token()) && t != MACHINE && t != DEFAULT) switch(t) {
|
|
|
|
|
|
|
|
case LOGIN:
|
2000-05-29 20:04:55 +02:00
|
|
|
if (token()) {
|
1996-08-16 03:33:20 +02:00
|
|
|
if (*aname == 0) {
|
2000-05-29 20:04:55 +02:00
|
|
|
char *newp;
|
|
|
|
newp = malloc((unsigned) strlen(tokval) + 1);
|
|
|
|
if (newp == NULL)
|
|
|
|
{
|
|
|
|
warnx(_("out of memory"));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
*aname = strcpy(newp, tokval);
|
1995-07-26 02:13:55 +02:00
|
|
|
} else {
|
|
|
|
if (strcmp(*aname, tokval))
|
|
|
|
goto next;
|
|
|
|
}
|
2000-05-29 20:04:55 +02:00
|
|
|
}
|
1995-07-26 02:13:55 +02:00
|
|
|
break;
|
|
|
|
case PASSWD:
|
|
|
|
if (strcmp(*aname, "anonymous") &&
|
2000-09-01 04:26:05 +02:00
|
|
|
fstat64(fileno(cfile), &stb) >= 0 &&
|
1995-07-26 02:13:55 +02:00
|
|
|
(stb.st_mode & 077) != 0) {
|
1996-08-16 03:33:20 +02:00
|
|
|
warnx(_("Error: .netrc file is readable by others."));
|
|
|
|
warnx(_("Remove password or make file unreadable by others."));
|
1995-07-26 02:13:55 +02:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (token() && *apass == 0) {
|
2000-05-29 20:04:55 +02:00
|
|
|
char *newp;
|
|
|
|
newp = malloc((unsigned) strlen(tokval) + 1);
|
|
|
|
if (newp == NULL)
|
|
|
|
{
|
|
|
|
warnx(_("out of memory"));
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
*apass = strcpy(newp, tokval);
|
1995-07-26 02:13:55 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ACCOUNT:
|
|
|
|
#if 0
|
2000-09-01 04:26:05 +02:00
|
|
|
if (fstat64(fileno(cfile), &stb) >= 0
|
1995-07-26 02:13:55 +02:00
|
|
|
&& (stb.st_mode & 077) != 0) {
|
|
|
|
warnx("Error: .netrc file is readable by others.");
|
|
|
|
warnx("Remove account or make file unreadable by others.");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (token() && *aacct == 0) {
|
|
|
|
*aacct = malloc((unsigned) strlen(tokval) + 1);
|
|
|
|
(void) strcpy(*aacct, tokval);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case MACDEF:
|
|
|
|
#if 0
|
|
|
|
if (proxy) {
|
|
|
|
(void) fclose(cfile);
|
|
|
|
return (0);
|
1996-08-16 03:33:20 +02:00
|
|
|
}
|
1998-07-05 10:24:43 +02:00
|
|
|
while ((c=getc_unlocked(cfile)) != EOF && c == ' '
|
|
|
|
|| c == '\t');
|
1995-07-26 02:13:55 +02:00
|
|
|
if (c == EOF || c == '\n') {
|
|
|
|
printf("Missing macdef name argument.\n");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (macnum == 16) {
|
|
|
|
printf("Limit of 16 macros have already been defined\n");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
tmp = macros[macnum].mac_name;
|
|
|
|
*tmp++ = c;
|
1998-07-05 10:24:43 +02:00
|
|
|
for (i=0; i < 8 && (c=getc_unlocked(cfile)) != EOF &&
|
1995-07-26 02:13:55 +02:00
|
|
|
!isspace(c); ++i) {
|
|
|
|
*tmp++ = c;
|
|
|
|
}
|
|
|
|
if (c == EOF) {
|
|
|
|
printf("Macro definition missing null line terminator.\n");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
*tmp = '\0';
|
|
|
|
if (c != '\n') {
|
1998-07-05 10:24:43 +02:00
|
|
|
while ((c=getc_unlocked(cfile)) != EOF
|
|
|
|
&& c != '\n');
|
1995-07-26 02:13:55 +02:00
|
|
|
}
|
|
|
|
if (c == EOF) {
|
|
|
|
printf("Macro definition missing null line terminator.\n");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if (macnum == 0) {
|
|
|
|
macros[macnum].mac_start = macbuf;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
macros[macnum].mac_start = macros[macnum-1].mac_end + 1;
|
|
|
|
}
|
|
|
|
tmp = macros[macnum].mac_start;
|
|
|
|
while (tmp != macbuf + 4096) {
|
1998-07-05 10:24:43 +02:00
|
|
|
if ((c=getc_unlocked(cfile)) == EOF) {
|
1995-07-26 02:13:55 +02:00
|
|
|
printf("Macro definition missing null line terminator.\n");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
*tmp = c;
|
|
|
|
if (*tmp == '\n') {
|
|
|
|
if (*(tmp-1) == '\0') {
|
|
|
|
macros[macnum++].mac_end = tmp - 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*tmp = '\0';
|
|
|
|
}
|
|
|
|
tmp++;
|
|
|
|
}
|
|
|
|
if (tmp == macbuf + 4096) {
|
|
|
|
printf("4K macro buffer exceeded\n");
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
default:
|
1996-08-16 03:33:20 +02:00
|
|
|
warnx(_("Unknown .netrc keyword %s"), tokval);
|
1995-07-26 02:13:55 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
(void) fclose(cfile);
|
|
|
|
return (0);
|
|
|
|
bad:
|
|
|
|
(void) fclose(cfile);
|
|
|
|
return (-1);
|
|
|
|
}
|
* include/stdlib.h: Use libc_hidden_proto for wctomb.
* stdlib/wctomb.c: Add libc_hidden_def.
* include/netdb.h: Use libc_hidden_proto for innetgr, rcmd_af,
rexec_af, rresvport_af, ruserok_af, iruserok_af, ruserpass, hstrerror.
* resolv/herror.c: Likewise.
* inet/rcmd.c: Add libc_hidden_def.
* inet/ruserpass.c: Likewise.
* inet/getnetgrent_r.c: Likewise.
* include/rpc/auth.h: Use libc_hidden_proto for getnetname,
netname2user, host2netname, user2netname.
* sunrpc/netname.c: Add libc_hidden_def.
* include/rpc/svc.h: Use libc_hidden_proto for svc_register,
svc_unregister, remove *_internal decls. Use libc_hidden_proto
for svcerr_auth, svcerr_noprog, svcerr_progvers.
* sunrpc/svc.c (svc_register, svc_unregister): Change INTDEF to
libc_hidden_def.
(svcerr_auth, svcerr_noprog, svcerr_progvers): Add libc_hidden_def.
* sunrpc/svc_simple.c (registerrpc): Nix INTUSE for svc_register.
2002-08-06 07:10:45 +02:00
|
|
|
libc_hidden_def (ruserpass)
|
1995-07-26 02:13:55 +02:00
|
|
|
|
|
|
|
static int
|
|
|
|
token()
|
|
|
|
{
|
|
|
|
char *cp;
|
|
|
|
int c;
|
1999-04-28 23:56:46 +02:00
|
|
|
int i;
|
1995-07-26 02:13:55 +02:00
|
|
|
|
1998-07-05 13:57:59 +02:00
|
|
|
if (feof_unlocked(cfile) || ferror_unlocked(cfile))
|
1995-07-26 02:13:55 +02:00
|
|
|
return (0);
|
1998-07-05 10:24:43 +02:00
|
|
|
while ((c = getc_unlocked(cfile)) != EOF &&
|
1995-07-26 02:13:55 +02:00
|
|
|
(c == '\n' || c == '\t' || c == ' ' || c == ','))
|
|
|
|
continue;
|
|
|
|
if (c == EOF)
|
|
|
|
return (0);
|
|
|
|
cp = tokval;
|
|
|
|
if (c == '"') {
|
1998-07-05 10:24:43 +02:00
|
|
|
while ((c = getc_unlocked(cfile)) != EOF && c != '"') {
|
1995-07-26 02:13:55 +02:00
|
|
|
if (c == '\\')
|
1998-07-05 10:24:43 +02:00
|
|
|
c = getc_unlocked(cfile);
|
1995-07-26 02:13:55 +02:00
|
|
|
*cp++ = c;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*cp++ = c;
|
1998-07-05 10:24:43 +02:00
|
|
|
while ((c = getc_unlocked(cfile)) != EOF
|
1995-07-26 02:13:55 +02:00
|
|
|
&& c != '\n' && c != '\t' && c != ' ' && c != ',') {
|
|
|
|
if (c == '\\')
|
1998-07-05 10:24:43 +02:00
|
|
|
c = getc_unlocked(cfile);
|
1995-07-26 02:13:55 +02:00
|
|
|
*cp++ = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*cp = 0;
|
|
|
|
if (tokval[0] == 0)
|
|
|
|
return (0);
|
Update.
2000-11-26 Ulrich Drepper <drepper@redhat.com>
* inet/getnameinfo.c: Adjust casts to avoid warnings.
* inet/rcmd.c: Likewise.
* inet/ruserpass.c: Likewise.
* inet/netinet/in.h (IN6_IS_ADDR_UNSPECIFIED, IN6_IS_ADDR_LOOPBACK,
IN6_IS_ADDR_MULTICAST, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, IN6_ARE_ADDR_EQUAL,
IN6_IS_ADDR_MC_NODELOCAL, IN6_IS_ADDR_MC_LINKLOCAL,
IN6_IS_ADDR_MC_SITELOCAL, IN6_IS_ADDR_MC_ORGLOCAL,
IN6_IS_ADDR_MC_GLOBAL): Preserve const in cast.
* include/aliases.h: Add prototypes for internal __getalias* functions.
* include/netdb.h: Add prototypes for __old_gethostent_r,
__old_gethostbyaddr_r, __old_gethostbyname_r, __old_gethostbyname2_r,
__old_getnetent_r, __old_getnetbyaddr_r, __old_getnetbyname_r,
__old_getservent_r, __old_getservbyname_r, __old_getservbyport_r,
__old_getprotoent_r, __old_getprotobyname_r, __old_getprotobynumber_r.
* include/rpc/netdb.h: Add prototypes for __old_getrpcbyname_r,
__old_getrpcbynumber_r, __old_getrpcent_r.
* include/rpc/netdb.h: Add __getrpcbyname_r, __getrpcbynumber_r,
__getrpcent_r prototypes.
2000-11-26 10:44:30 +01:00
|
|
|
for (i = 0; i < (int) (sizeof (toktab) / sizeof (toktab[0])); ++i)
|
1999-04-28 23:56:46 +02:00
|
|
|
if (!strcmp(&tokstr[toktab[i].tokstr_off], tokval))
|
|
|
|
return toktab[i].tval;
|
1995-07-26 02:13:55 +02:00
|
|
|
return (ID);
|
|
|
|
}
|