Add YP support.

This commit is contained in:
brezak 1993-06-11 00:34:38 +00:00
parent 23f01fa004
commit 96267d0e22
6 changed files with 686 additions and 15 deletions

View File

@ -1,11 +1,18 @@
# @(#)Makefile 5.5 (Berkeley) 2/19/91
PROG= chpass
SRCS= chpass.c edit.c field.c pw_copy.c pw_scan.c pw_util.c table.c util.c
SRCS= chpass.c edit.c field.c pw_copy.c pw_scan.c pw_util.c pw_yp.c table.c util.c getpwent.c
BINOWN= root
BINMODE=4555
.PATH: ${.CURDIR}/../../usr.sbin/pwd_mkdb ${.CURDIR}/../../usr.sbin/vipw
.PATH: ${.CURDIR}/../../usr.sbin/pwd_mkdb ${.CURDIR}/../../usr.sbin/vipw \
${.CURDIR}/../../lib/libc/gen
LINKS= ${BINDIR}/chpass ${BINDIR}/chfn ${BINDIR}/chpass ${BINDIR}/chsh
MLINKS= chpass.1 chfn.1 chpass.1 chsh.1
CFLAGS+=-DYP
DPADD+= ${LIBRPCSVC}
LDADD+= -lrpcsvc
.include <bsd.prog.mk>
getpwent.o: getpwent.c
${CC} ${CFLAGS} -UYP -c ${.IMPSRC}

View File

@ -59,6 +59,12 @@ char *progname = "chpass";
char *tempname;
uid_t uid;
#ifdef YP
int use_yp;
int force_yp = 0;
extern struct passwd *ypgetpwnam(), *ypgetpwuid();
#endif
main(argc, argv)
int argc;
char **argv;
@ -71,8 +77,12 @@ main(argc, argv)
int ch, pfd, tfd;
char *arg;
#ifdef YP
use_yp = _yp_check(NULL);
#endif
op = EDITENTRY;
while ((ch = getopt(argc, argv, "a:s:")) != EOF)
while ((ch = getopt(argc, argv, "a:s:ly")) != EOF)
switch(ch) {
case 'a':
op = LOADENTRY;
@ -82,6 +92,19 @@ main(argc, argv)
op = NEWSH;
arg = optarg;
break;
#ifdef YP
case 'l':
use_yp = 0;
break;
case 'y':
if (!use_yp) {
fprintf(stderr, "chpass: YP not in use.\n");
usage();
exit(1);
}
force_yp = 1;
break;
#endif
case '?':
default:
usage();
@ -89,19 +112,39 @@ main(argc, argv)
argc -= optind;
argv += optind;
#ifdef YP
if (op == LOADENTRY && use_yp) {
(void)fprintf(stderr, "chpass: cannot load entry using NIS.\n\tUse the -l flag to load local.\n");
exit(1);
}
#endif
uid = getuid();
if (op == EDITENTRY || op == NEWSH)
switch(argc) {
case 0:
if (!(pw = getpwuid(uid))) {
pw = getpwuid(uid);
#ifdef YP
if (pw && !force_yp)
use_yp = 0;
else if (use_yp)
pw = ypgetpwuid(uid);
#endif /* YP */
if (!pw) {
(void)fprintf(stderr,
"chpass: unknown user: uid %u\n", uid);
exit(1);
}
break;
case 1:
if (!(pw = getpwnam(*argv))) {
pw = getpwnam(*argv);
#ifdef YP
if (pw && !force_yp)
use_yp = 0;
else if (use_yp)
pw = ypgetpwnam(*argv);
#endif /* YP */
if (!pw) {
(void)fprintf(stderr,
"chpass: unknown user %s.\n", *argv);
exit(1);
@ -165,10 +208,21 @@ main(argc, argv)
tfd = pw_tmp();
}
#ifdef YP
if (use_yp) {
(void)unlink(tempname);
if (pw_yp(pw, uid))
pw_error((char *)NULL, 0, 1);
else
exit(0);
}
else
#endif /* YP */
pw_copy(pfd, tfd, pw);
if (!pw_mkdb())
pw_error((char *)NULL, 0, 1);
exit(0);
}
@ -180,6 +234,10 @@ baduser()
usage()
{
#ifdef YP
(void)fprintf(stderr, "usage: chpass [-a list] [-s shell] [-l]%s [user]\n", use_yp?" [-y]":"");
#else
(void)fprintf(stderr, "usage: chpass [-a list] [-s shell] [user]\n");
#endif
exit(1);
}

258
usr.bin/chpass/pw_yp.c Normal file
View File

@ -0,0 +1,258 @@
/*
* Copyright (c) 1988 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 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.
*/
#ifndef lint
static char sccsid[] = "@(#)pw_yp.c 1.0 2/2/93";
#endif /* not lint */
#ifdef YP
#include <stdio.h>
#include <string.h>
#include <netdb.h>
#include <time.h>
#include <pwd.h>
#include <errno.h>
#include <rpc/rpc.h>
#include <rpcsvc/yp_prot.h>
#include <rpcsvc/ypclnt.h>
#define passwd yp_passwd_rec
#include <rpcsvc/yppasswd.h>
#undef passwd
extern char *progname;
static char *domain;
pw_yp(pw, uid)
struct passwd *pw;
uid_t uid;
{
char *master;
char *pp;
int r, rpcport, status;
struct yppasswd yppasswd;
struct timeval tv;
CLIENT *client;
extern char *getpass();
/*
* Get local domain
*/
if (!domain && (r = yp_get_default_domain(&domain))) {
(void)fprintf(stderr, "%s: can't get local NIS domain. Reason: %s\n", progname, yperr_string(r));
return(0);
}
/*
* Find the host for the passwd map; it should be running
* the daemon.
*/
if ((r = yp_master(domain, "passwd.byname", &master)) != 0) {
(void)fprintf(stderr, "%s: can't find the master NIS server. Reason: %s\n", progname, yperr_string(r));
return(0);
}
/*
* Ask the portmapper for the port of the daemon.
*/
if ((rpcport = getrpcport(master, YPPASSWDPROG, YPPASSWDPROC_UPDATE, IPPROTO_UDP)) == 0) {
(void)fprintf(stderr, "%s: master NIS server not running yppasswd daemon.\n\tCan't change password.\n", progname);
return(0);
}
/*
* Be sure the port is priviledged
*/
if (rpcport >= IPPORT_RESERVED) {
(void)fprintf(stderr, "%s: yppasswd daemon running on an invalid port.\n", progname);
return(0);
}
/* prompt for old password */
yppasswd.oldpass = "none";
if (uid)
yppasswd.oldpass = getpass("Old password:");
if (!yppasswd.oldpass) {
(void)fprintf(stderr, "Cancelled.\n");
return(0);
}
/* tell rpc.yppasswdd */
yppasswd.newpw.pw_name = pw->pw_name;
yppasswd.newpw.pw_passwd= pw->pw_passwd;
yppasswd.newpw.pw_uid = pw->pw_uid;
yppasswd.newpw.pw_gid = pw->pw_gid;
yppasswd.newpw.pw_gecos = pw->pw_gecos;
yppasswd.newpw.pw_dir = pw->pw_dir;
yppasswd.newpw.pw_shell = pw->pw_shell;
client = clnt_create(master, YPPASSWDPROG, YPPASSWDVERS, "udp");
if (client==NULL) {
fprintf(stderr, "can't contact yppasswdd on %s: Reason: %s\n",
master, yperr_string(YPERR_YPBIND));
return(0);
}
client->cl_auth = authunix_create_default();
tv.tv_sec = 2;
tv.tv_usec = 0;
r = clnt_call(client, YPPASSWDPROC_UPDATE,
xdr_yppasswd, &yppasswd, xdr_int, &status, tv);
if (r) {
fprintf(stderr, "%s: rpc to yppasswdd failed.\n");
return(0);
}
else if (status) {
printf("Couldn't change NIS password information.\n");
return(0);
}
else
printf("The NIS password information has been changed on %s, the master NIS passwd server.\n", master);
return(1);
}
static char *
pwskip(register char *p)
{
while (*p && *p != ':' && *p != '\n')
++p;
if (*p)
*p++ = 0;
return (p);
}
static struct passwd *
interpret(struct passwd *pwent, char *line)
{
register char *p = line;
register int c;
pwent->pw_passwd = "*";
pwent->pw_uid = 0;
pwent->pw_gid = 0;
pwent->pw_gecos = "";
pwent->pw_dir = "";
pwent->pw_shell = "";
pwent->pw_change = 0;
pwent->pw_expire = 0;
pwent->pw_class = "";
/* line without colon separators is no good, so ignore it */
if(!strchr(p,':'))
return(NULL);
pwent->pw_name = p;
p = pwskip(p);
pwent->pw_passwd = p;
p = pwskip(p);
pwent->pw_uid = (uid_t)strtoul(p, NULL, 10);
p = pwskip(p);
pwent->pw_gid = (gid_t)strtoul(p, NULL, 10);
p = pwskip(p);
pwent->pw_gecos = p;
p = pwskip(p);
pwent->pw_dir = p;
p = pwskip(p);
pwent->pw_shell = p;
while (*p && *p != '\n')
p++;
*p = '\0';
return (pwent);
}
struct passwd *
ypgetpwnam(nam)
char *nam;
{
static struct passwd pwent;
static char line[1024];
char *val;
int reason, vallen;
/*
* Get local domain
*/
if (!domain && (reason = yp_get_default_domain(&domain))) {
(void)fprintf(stderr, "%s: can't get local NIS domain. Reason: %s\n", progname, yperr_string(reason));
exit(1);
}
reason = yp_match(domain, "passwd.byname", nam, strlen(nam),
&val, &vallen);
switch(reason) {
case 0:
break;
default:
return (NULL);
break;
}
val[vallen] = '\0';
strcpy(line, val);
free(val);
return(interpret(&pwent, line));
}
struct passwd *
ypgetpwuid(uid)
uid_t uid;
{
static struct passwd pwent;
static char line[1024];
char *val;
int reason, vallen;
char namebuf[16];
if (!domain && (reason = yp_get_default_domain(&domain))) {
(void)fprintf(stderr, "%s: can't get local NIS domain. Reason: %s\n", progname, yperr_string(reason));
exit(1);
}
sprintf(namebuf, "%d", uid);
reason = yp_match(domain, "passwd.byuid", namebuf, strlen(namebuf),
&val, &vallen);
switch(reason) {
case 0:
break;
default:
return (NULL);
break;
}
val[vallen] = '\0';
strcpy(line, val);
free(val);
return(interpret(&pwent, line));
}
#endif /* YP */

View File

@ -1,15 +1,20 @@
# @(#)Makefile 5.11 (Berkeley) 2/19/91
PROG= passwd
SRCS= local_passwd.c passwd.c pw_copy.c pw_util.c
SRCS= local_passwd.c yp_passwd.c passwd.c pw_copy.c pw_util.c getpwent.c
.PATH: ${.CURDIR}/../../usr.bin/chpass ${.CURDIR}/../../usr.sbin/vipw \
${.CURDIR}/../rlogin
CFLAGS+=-I${.CURDIR}
${.CURDIR}/../rlogin ${.CURDIR}/../../lib/libc/gen
CFLAGS+=-I${.CURDIR} -DYP
BINOWN= root
BINMODE=4555
DPADD+= ${LIBRPCSVC}
LDADD+= -lrpcsvc
.ifndef EXPORTABLE_SYSTEM
DPADD+= ${LIBCRYPT}
LDADD+= -lcrypt
.endif
.include <bsd.prog.mk>
getpwent.o: getpwent.c
${CC} ${CFLAGS} -UYP -c ${.IMPSRC}

View File

@ -44,8 +44,22 @@ static char sccsid[] = "@(#)passwd.c 5.5 (Berkeley) 7/6/91";
#include <stdio.h>
#include <unistd.h>
/*
* Note on configuration:
* Generally one would not use both Kerberos and YP
* to maintain passwords.
*
*/
#ifdef KERBEROS
int use_kerberos = 1;
#else
int use_kerberos = 0;
#endif
#ifdef YP
int force_yp = 0;
int use_yp;
#else
int use_yp = 0;
#endif
main(argc, argv)
@ -55,16 +69,43 @@ main(argc, argv)
extern int optind;
register int ch;
char *uname;
#ifdef KERBEROS
while ((ch = getopt(argc, argv, "l")) != EOF)
int status;
#ifdef YP
use_yp = _yp_check(NULL);
#endif
while ((ch = getopt(argc, argv, "lky")) != EOF)
switch (ch) {
case 'l': /* change local password file */
use_kerberos = 0;
use_yp = 0;
break;
case 'k': /* change Kerberos password */
#ifdef KERBEROS
use_kerberos = 1;
use_yp = 0;
break;
#else
while ((ch = getopt(argc, argv, "")) != EOF)
switch (ch) {
usage();
exit(1);
#endif
case 'y': /* change YP password */
#ifdef YP
if (!use_yp) {
fprintf(stderr, "passwd: YP not in use.\n");
usage();
exit(1);
}
/* XXX Maybe just exec yppasswd ?? */
use_kerberos = 0;
use_yp = 1;
force_yp = 1;
break;
#else
usage();
exit(1);
#endif
default:
case '?':
@ -76,7 +117,11 @@ main(argc, argv)
argv += optind;
uname = getlogin();
if (uname == NULL) {
fprintf(stderr, "passwd: who are you ??\n");
exit(1);
}
switch(argc) {
case 0:
break;
@ -100,15 +145,24 @@ main(argc, argv)
#ifdef KERBEROS
if (use_kerberos)
exit(krb_passwd());
#endif
#ifdef YP
if (force_yp || ((status = local_passwd(uname)) && use_yp))
exit(nis_passwd(uname));
exit(status);
#endif
exit(local_passwd(uname));
}
usage()
{
#ifdef KERBEROS
#if defined(KERBEROS) && defined(YP)
(void)fprintf(stderr, "usage: passwd [-l] [-k] [-y] user\n");
#else /* !(KERBEROS && YP) */
#if defined(KERBEROS) || defined(YP)
(void)fprintf(stderr, "usage: passwd [-l] user\n");
#else
(void)fprintf(stderr, "usage: passwd user\n");
#endif
#endif /* KERBEROS && YP */
}

289
usr.bin/passwd/yp_passwd.c Normal file
View File

@ -0,0 +1,289 @@
/*
* Copyright (c) 1988 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 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.
*/
#ifndef lint
static char sccsid[] = "@(#)nis_passwd.c 1.0 2/2/93";
#endif /* not lint */
#ifdef YP
#include <stdio.h>
#include <string.h>
#include <netdb.h>
#include <time.h>
#include <pwd.h>
#include <errno.h>
#include <rpc/rpc.h>
#include <rpcsvc/yp_prot.h>
#include <rpcsvc/ypclnt.h>
#define passwd yp_passwd_rec
#include <rpcsvc/yppasswd.h>
#undef passwd
#ifndef _PASSWORD_LEN
#define _PASSWORD_LEN PASS_MAX
#endif
extern char *progname;
static char *getnewpasswd();
static struct passwd *ypgetpwnam();
static uid_t uid;
char *domain;
nis_passwd(uname)
char *uname;
{
char *master;
char *pp;
int r, rpcport, status;
struct yppasswd yppasswd;
struct passwd *pw;
struct timeval tv;
CLIENT *client;
uid = getuid();
/*
* Get local domain
*/
if (r = yp_get_default_domain(&domain)) {
(void)fprintf(stderr, "%s: can't get local NIS domain. Reason: %s\n", progname, yperr_string(r));
exit(1);
}
/*
* Find the host for the passwd map; it should be running
* the daemon.
*/
if ((r = yp_master(domain, "passwd.byname", &master)) != 0) {
(void)fprintf(stderr, "%s: can't find the master NIS server. Reason: %s\n", progname, yperr_string(r));
exit(1);
}
/*
* Ask the portmapper for the port of the daemon.
*/
if ((rpcport = getrpcport(master, YPPASSWDPROG, YPPASSWDPROC_UPDATE, IPPROTO_UDP)) == 0) {
(void)fprintf(stderr, "%s: master NIS server not running yppasswd daemon.\n\tCan't change password.\n", progname);
exit(1);
}
/*
* Be sure the port is priviledged
*/
if (rpcport >= IPPORT_RESERVED) {
(void)fprintf(stderr, "%s: yppasswd daemon running on an invalid port.\n", progname);
exit(1);
}
/* Get user's login identity */
if (!(pw = ypgetpwnam(uname))) {
(void)fprintf(stderr, "%s: unknown user %s.\n", progname, uname);
exit(1);
}
if (uid && uid != pw->pw_uid) {
(void)fprintf(stderr, "%s: you are only allowed to change your own password: %s\n", progname, strerror(EACCES));
exit(1);
}
/* prompt for new password */
yppasswd.newpw.pw_passwd = getnewpasswd(pw, &yppasswd.oldpass);
/* tell rpc.yppasswdd */
yppasswd.newpw.pw_name = pw->pw_name;
yppasswd.newpw.pw_uid = pw->pw_uid;
yppasswd.newpw.pw_gid = pw->pw_gid;
yppasswd.newpw.pw_gecos = pw->pw_gecos;
yppasswd.newpw.pw_dir = pw->pw_dir;
yppasswd.newpw.pw_shell = pw->pw_shell;
client = clnt_create(master, YPPASSWDPROG, YPPASSWDVERS, "udp");
if (client==NULL) {
fprintf(stderr, "can't contact yppasswdd on %s: Reason: %s\n",
master, yperr_string(YPERR_YPBIND));
return(YPERR_YPBIND);
}
client->cl_auth = authunix_create_default();
tv.tv_sec = 2;
tv.tv_usec = 0;
r = clnt_call(client, YPPASSWDPROC_UPDATE,
xdr_yppasswd, &yppasswd, xdr_int, &status, tv);
if (r)
fprintf(stderr, "%s: rpc to yppasswdd failed.\n");
else if (status)
printf("Couldn't change NIS password.\n");
else
printf("The NIS password has been changed on %s, the master NIS passwd server.\n", master);
exit(0);
}
static char *
getnewpasswd(pw, old_pass)
register struct passwd *pw;
char **old_pass;
{
static char buf[_PASSWORD_LEN+1];
register char *p, *t;
int tries;
char salt[9], *crypt(), *getpass();
(void)printf("Changing NIS password for %s.\n", pw->pw_name);
if (uid && old_pass) {
*old_pass = NULL;
if (pw->pw_passwd &&
#ifdef DES
strcmp(crypt(p = getpass("Old password:"), pw->pw_passwd),
pw->pw_passwd)) {
#else
strcmp(p = getpass("Old password:"), pw->pw_passwd)) {
#endif
errno = EACCES;
pw_error(NULL, 1, 1);
}
*old_pass = strdup(p);
}
for (buf[0] = '\0', tries = 0;;) {
p = getpass("New password:");
if (!*p) {
(void)printf("Password unchanged.\n");
pw_error(NULL, 0, 0);
}
if (strlen(p) <= 5 && (uid != 0 || ++tries < 2)) {
(void)printf("Please enter a longer password.\n");
continue;
}
for (t = p; *t && islower(*t); ++t);
if (!*t && (uid != 0 || ++tries < 2)) {
(void)printf("Please don't use an all-lower case password.\nUnusual capitalization, control characters or digits are suggested.\n");
continue;
}
(void)strcpy(buf, p);
if (!strcmp(buf, getpass("Retype new password:")))
break;
(void)printf("Mismatch; try again, EOF to quit.\n");
}
/* grab a random printable character that isn't a colon */
(void)srandom((int)time((time_t *)NULL));
#ifdef NEWSALT
salt[0] = _PASSWORD_EFMT1;
to64(&salt[1], (long)(29 * 25), 4);
to64(&salt[5], random(), 4);
#else
to64(&salt[0], random(), 2);
#endif
#ifdef DES
return(strdup(crypt(buf, salt)));
#else
return(buf);
#endif
}
static char *
pwskip(register char *p)
{
while (*p && *p != ':' && *p != '\n')
++p;
if (*p)
*p++ = 0;
return (p);
}
struct passwd *
interpret(struct passwd *pwent, char *line)
{
register char *p = line;
register int c;
pwent->pw_passwd = "*";
pwent->pw_uid = 0;
pwent->pw_gid = 0;
pwent->pw_gecos = "";
pwent->pw_dir = "";
pwent->pw_shell = "";
pwent->pw_change = 0;
pwent->pw_expire = 0;
pwent->pw_class = "";
/* line without colon separators is no good, so ignore it */
if(!strchr(p,':'))
return(NULL);
pwent->pw_name = p;
p = pwskip(p);
pwent->pw_passwd = p;
p = pwskip(p);
pwent->pw_uid = (uid_t)strtoul(p, NULL, 10);
p = pwskip(p);
pwent->pw_gid = (gid_t)strtoul(p, NULL, 10);
p = pwskip(p);
pwent->pw_gecos = p;
p = pwskip(p);
pwent->pw_dir = p;
p = pwskip(p);
pwent->pw_shell = p;
while (*p && *p != '\n')
p++;
*p = '\0';
return (pwent);
}
static struct passwd *
ypgetpwnam(nam)
char *nam;
{
static struct passwd pwent;
static char line[1024];
char *val;
int reason, vallen;
reason = yp_match(domain, "passwd.byname", nam, strlen(nam),
&val, &vallen);
switch(reason) {
case 0:
break;
default:
return (NULL);
break;
}
val[vallen] = '\0';
strcpy(line, val);
free(val);
return(interpret(&pwent, line));
}
#endif /* YP */