Home | History | Annotate | Line # | Download | only in passwd
yp_passwd.c revision 1.14
      1  1.14    lukem /*	$NetBSD: yp_passwd.c,v 1.14 1997/05/21 02:09:51 lukem Exp $	*/
      2   1.9  thorpej 
      3   1.1   brezak /*
      4  1.11      tls  * Copyright (c) 1988, 1990, 1993, 1994
      5  1.11      tls  *	The Regents of the University of California.  All rights reserved.
      6   1.1   brezak  *
      7   1.1   brezak  * Redistribution and use in source and binary forms, with or without
      8   1.1   brezak  * modification, are permitted provided that the following conditions
      9   1.1   brezak  * are met:
     10   1.1   brezak  * 1. Redistributions of source code must retain the above copyright
     11   1.1   brezak  *    notice, this list of conditions and the following disclaimer.
     12   1.1   brezak  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1   brezak  *    notice, this list of conditions and the following disclaimer in the
     14   1.1   brezak  *    documentation and/or other materials provided with the distribution.
     15   1.1   brezak  * 3. All advertising materials mentioning features or use of this software
     16   1.1   brezak  *    must display the following acknowledgement:
     17   1.1   brezak  *	This product includes software developed by the University of
     18   1.1   brezak  *	California, Berkeley and its contributors.
     19   1.1   brezak  * 4. Neither the name of the University nor the names of its contributors
     20   1.1   brezak  *    may be used to endorse or promote products derived from this software
     21   1.1   brezak  *    without specific prior written permission.
     22   1.1   brezak  *
     23   1.1   brezak  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1   brezak  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1   brezak  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1   brezak  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1   brezak  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1   brezak  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1   brezak  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1   brezak  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1   brezak  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1   brezak  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1   brezak  * SUCH DAMAGE.
     34   1.1   brezak  */
     35   1.9  thorpej 
     36   1.1   brezak #ifndef lint
     37   1.9  thorpej #if 0
     38  1.11      tls static char sccsid[] = "from:  @(#)local_passwd.c    8.3 (Berkeley) 4/2/94";
     39   1.9  thorpej #else
     40  1.14    lukem static char rcsid[] = "$NetBSD: yp_passwd.c,v 1.14 1997/05/21 02:09:51 lukem Exp $";
     41   1.9  thorpej #endif
     42   1.1   brezak #endif /* not lint */
     43   1.1   brezak 
     44   1.1   brezak #ifdef	YP
     45   1.1   brezak 
     46   1.9  thorpej #include <err.h>
     47   1.1   brezak #include <stdio.h>
     48   1.1   brezak #include <string.h>
     49   1.1   brezak #include <netdb.h>
     50   1.1   brezak #include <time.h>
     51   1.1   brezak #include <pwd.h>
     52   1.1   brezak #include <errno.h>
     53   1.1   brezak #include <rpc/rpc.h>
     54   1.1   brezak #include <rpcsvc/yp_prot.h>
     55   1.1   brezak #include <rpcsvc/ypclnt.h>
     56   1.1   brezak #define passwd yp_passwd_rec
     57   1.1   brezak #include <rpcsvc/yppasswd.h>
     58   1.1   brezak #undef passwd
     59   1.4  deraadt 
     60   1.1   brezak #ifndef _PASSWORD_LEN
     61   1.1   brezak #define _PASSWORD_LEN PASS_MAX
     62   1.1   brezak #endif
     63   1.4  deraadt 
     64   1.9  thorpej extern	char *__progname;		/* from crt0.o */
     65   1.9  thorpej 
     66  1.10  thorpej extern	int yflag, yppwd;
     67  1.10  thorpej 
     68   1.4  deraadt static char *getnewpasswd();
     69   1.1   brezak static struct passwd *ypgetpwnam();
     70   1.1   brezak 
     71   1.1   brezak static uid_t uid;
     72   1.1   brezak char *domain;
     73   1.1   brezak 
     74   1.4  deraadt static
     75   1.4  deraadt pw_error(name, err, eval)
     76   1.4  deraadt 	char *name;
     77   1.4  deraadt 	int err, eval;
     78   1.4  deraadt {
     79   1.4  deraadt 	int sverrno;
     80   1.4  deraadt 
     81   1.4  deraadt 	if (err) {
     82   1.4  deraadt 		sverrno = errno;
     83   1.9  thorpej 		(void)fprintf(stderr, "%s: ", __progname);
     84   1.4  deraadt 		if (name)
     85   1.4  deraadt 			(void)fprintf(stderr, "%s: ", name);
     86   1.4  deraadt 		(void)fprintf(stderr, "%s\n", strerror(sverrno));
     87   1.4  deraadt 	}
     88   1.9  thorpej 	errx(eval, "YP passwd database unchanged");
     89   1.4  deraadt }
     90   1.4  deraadt 
     91   1.9  thorpej int
     92   1.5  deraadt yp_passwd(username)
     93   1.5  deraadt 	char *username;
     94   1.1   brezak {
     95   1.4  deraadt 	char *master;
     96   1.4  deraadt 	char *pp;
     97   1.4  deraadt 	int r, rpcport, status;
     98   1.4  deraadt 	struct yppasswd yppasswd;
     99   1.4  deraadt 	struct passwd *pw;
    100   1.1   brezak 	struct timeval tv;
    101   1.1   brezak 	CLIENT *client;
    102   1.4  deraadt 
    103   1.4  deraadt 	uid = getuid();
    104   1.4  deraadt 
    105   1.4  deraadt 	/*
    106   1.4  deraadt 	 * Get local domain
    107   1.4  deraadt 	 */
    108   1.9  thorpej 	if (r = yp_get_default_domain(&domain))
    109   1.9  thorpej 		errx(1, "can't get local YP domain.  Reason: %s",
    110   1.9  thorpej 		    yperr_string(r));
    111   1.4  deraadt 
    112   1.4  deraadt 	/*
    113   1.4  deraadt 	 * Find the host for the passwd map; it should be running
    114   1.4  deraadt 	 * the daemon.
    115   1.4  deraadt 	 */
    116   1.9  thorpej 	if ((r = yp_master(domain, "passwd.byname", &master)) != 0)
    117   1.9  thorpej 		errx(1, "can't find the master YP server.  Reason: %s",
    118   1.9  thorpej 		    yperr_string(r));
    119   1.1   brezak 
    120   1.4  deraadt 	/*
    121   1.4  deraadt 	 * Ask the portmapper for the port of the daemon.
    122   1.4  deraadt 	 */
    123   1.4  deraadt 	if ((rpcport = getrpcport(master, YPPASSWDPROG,
    124  1.10  thorpej 	    YPPASSWDPROC_UPDATE, IPPROTO_UDP)) == 0) {
    125  1.10  thorpej 		/*
    126  1.10  thorpej 		 * Master server isn't running rpc.yppasswdd.  Check to see
    127  1.10  thorpej 		 * if there's a local passwd entry, and if there is, use
    128  1.10  thorpej 		 * it iff:
    129  1.10  thorpej 		 *	- we were not invoked as "yppasswd"
    130  1.10  thorpej 		 *	- we were not passed "-y", and defaulted to YP
    131  1.10  thorpej 		 */
    132  1.10  thorpej 		if (yppwd == 0 && yflag == 0)
    133  1.10  thorpej 			if (getpwnam(username) != NULL)
    134  1.10  thorpej 				exit(local_passwd(username));
    135   1.9  thorpej 		errx(1, "master YP server not running yppasswd daemon.\n\t%s\n",
    136   1.9  thorpej 		    "Can't change password.");
    137  1.10  thorpej 	}
    138   1.1   brezak 
    139   1.4  deraadt 	/*
    140   1.4  deraadt 	 * Be sure the port is priviledged
    141   1.4  deraadt 	 */
    142   1.9  thorpej 	if (rpcport >= IPPORT_RESERVED)
    143   1.9  thorpej 		errx(1, "yppasswd daemon is on an invalid port.");
    144   1.4  deraadt 
    145   1.4  deraadt 	/* Get user's login identity */
    146   1.9  thorpej 	if (!(pw = ypgetpwnam(username)))
    147   1.9  thorpej 		errx(1, "unknown user %s", username);
    148   1.9  thorpej 
    149   1.9  thorpej 	if (uid && uid != pw->pw_uid)
    150   1.9  thorpej 		errx(1, "you may only change your own password: %s",
    151   1.9  thorpej 		    strerror(EACCES));
    152   1.1   brezak 
    153   1.4  deraadt 	/* prompt for new password */
    154   1.4  deraadt 	yppasswd.newpw.pw_passwd = getnewpasswd(pw, &yppasswd.oldpass);
    155   1.1   brezak 
    156   1.4  deraadt 	/* tell rpc.yppasswdd */
    157   1.4  deraadt 	yppasswd.newpw.pw_name	= pw->pw_name;
    158   1.4  deraadt 	yppasswd.newpw.pw_uid 	= pw->pw_uid;
    159   1.4  deraadt 	yppasswd.newpw.pw_gid	= pw->pw_gid;
    160   1.4  deraadt 	yppasswd.newpw.pw_gecos = pw->pw_gecos;
    161   1.4  deraadt 	yppasswd.newpw.pw_dir	= pw->pw_dir;
    162   1.4  deraadt 	yppasswd.newpw.pw_shell	= pw->pw_shell;
    163   1.4  deraadt 
    164   1.4  deraadt 	client = clnt_create(master, YPPASSWDPROG, YPPASSWDVERS, "udp");
    165   1.4  deraadt 	if (client==NULL) {
    166   1.9  thorpej 		warnx("cannot contact yppasswdd on %s:  Reason: %s",
    167   1.5  deraadt 		    master, yperr_string(YPERR_YPBIND));
    168   1.4  deraadt 		return(YPERR_YPBIND);
    169   1.4  deraadt 	}
    170   1.9  thorpej 
    171   1.4  deraadt 	client->cl_auth = authunix_create_default();
    172   1.4  deraadt 	tv.tv_sec = 2;
    173   1.4  deraadt 	tv.tv_usec = 0;
    174   1.4  deraadt 	r = clnt_call(client, YPPASSWDPROC_UPDATE,
    175   1.9  thorpej 	    xdr_yppasswd, &yppasswd, xdr_int, &status, tv);
    176   1.4  deraadt 	if (r)
    177   1.9  thorpej 		errx(1, "rpc to yppasswdd failed.");
    178   1.4  deraadt 	else if (status)
    179   1.4  deraadt 		printf("Couldn't change YP password.\n");
    180   1.4  deraadt 	else
    181   1.9  thorpej 		printf("The YP password has been changed on %s, %s\n",
    182   1.9  thorpej 		    master, "the master YP passwd server.");
    183   1.4  deraadt 	exit(0);
    184   1.1   brezak }
    185   1.1   brezak 
    186   1.1   brezak static char *
    187   1.1   brezak getnewpasswd(pw, old_pass)
    188  1.11      tls 	struct passwd *pw;
    189   1.4  deraadt 	char **old_pass;
    190   1.1   brezak {
    191  1.11      tls 	int tries;
    192  1.11      tls 	char *p, *t;
    193   1.4  deraadt 	static char buf[_PASSWORD_LEN+1];
    194   1.1   brezak 	char salt[9], *crypt(), *getpass();
    195   1.4  deraadt 
    196   1.2   brezak 	(void)printf("Changing YP password for %s.\n", pw->pw_name);
    197   1.1   brezak 
    198   1.6  deraadt 	if (old_pass) {
    199   1.4  deraadt 		*old_pass = NULL;
    200   1.4  deraadt 
    201   1.8     phil 		if (pw->pw_passwd[0]) {
    202   1.8     phil 			if (strcmp(crypt(p = getpass("Old password:"),
    203   1.8     phil 					 pw->pw_passwd),  pw->pw_passwd)) {
    204   1.4  deraadt 				   errno = EACCES;
    205   1.4  deraadt 				   pw_error(NULL, 1, 1);
    206   1.8     phil 			}
    207   1.7     phil 		} else {
    208   1.7     phil 			p = "";
    209   1.4  deraadt 		}
    210   1.7     phil 
    211   1.4  deraadt 		*old_pass = strdup(p);
    212   1.4  deraadt 	}
    213   1.1   brezak 	for (buf[0] = '\0', tries = 0;;) {
    214   1.1   brezak 		p = getpass("New password:");
    215   1.1   brezak 		if (!*p) {
    216   1.1   brezak 			(void)printf("Password unchanged.\n");
    217   1.1   brezak 			pw_error(NULL, 0, 0);
    218   1.1   brezak 		}
    219   1.4  deraadt 		if (strlen(p) <= 5 && ++tries < 2) {
    220   1.1   brezak 			(void)printf("Please enter a longer password.\n");
    221   1.1   brezak 			continue;
    222   1.1   brezak 		}
    223   1.1   brezak 		for (t = p; *t && islower(*t); ++t);
    224   1.4  deraadt 		if (!*t && ++tries < 2) {
    225  1.13  thorpej 			(void)printf("Please don't use an all-lower case "
    226  1.13  thorpej 				     "password.\nUnusual capitalization, "
    227  1.13  thorpej 				     "control characters or digits are "
    228  1.13  thorpej 				     "suggested.\n");
    229   1.1   brezak 			continue;
    230   1.1   brezak 		}
    231  1.12      mrg 		(void)strncpy(buf, p, sizeof(buf) - 1);
    232   1.1   brezak 		if (!strcmp(buf, getpass("Retype new password:")))
    233   1.1   brezak 			break;
    234   1.1   brezak 		(void)printf("Mismatch; try again, EOF to quit.\n");
    235   1.1   brezak 	}
    236   1.1   brezak 	/* grab a random printable character that isn't a colon */
    237   1.1   brezak 	(void)srandom((int)time((time_t *)NULL));
    238   1.1   brezak #ifdef NEWSALT
    239   1.1   brezak 	salt[0] = _PASSWORD_EFMT1;
    240   1.1   brezak 	to64(&salt[1], (long)(29 * 25), 4);
    241   1.1   brezak 	to64(&salt[5], random(), 4);
    242   1.1   brezak #else
    243   1.1   brezak 	to64(&salt[0], random(), 2);
    244   1.1   brezak #endif
    245   1.1   brezak 	return(strdup(crypt(buf, salt)));
    246   1.1   brezak }
    247   1.1   brezak 
    248   1.1   brezak static char *
    249  1.14    lukem pwskip(char *p)
    250   1.1   brezak {
    251   1.1   brezak 	while (*p && *p != ':' && *p != '\n')
    252   1.1   brezak 		++p;
    253   1.1   brezak 	if (*p)
    254   1.1   brezak 		*p++ = 0;
    255   1.1   brezak 	return (p);
    256   1.1   brezak }
    257   1.1   brezak 
    258   1.1   brezak struct passwd *
    259   1.1   brezak interpret(struct passwd *pwent, char *line)
    260   1.1   brezak {
    261  1.14    lukem 	char	*p = line;
    262  1.14    lukem 	int	c;
    263   1.1   brezak 
    264   1.4  deraadt 	pwent->pw_passwd = "*";
    265   1.4  deraadt 	pwent->pw_uid = 0;
    266   1.4  deraadt 	pwent->pw_gid = 0;
    267   1.4  deraadt 	pwent->pw_gecos = "";
    268   1.4  deraadt 	pwent->pw_dir = "";
    269   1.4  deraadt 	pwent->pw_shell = "";
    270   1.1   brezak 	pwent->pw_change = 0;
    271   1.1   brezak 	pwent->pw_expire = 0;
    272   1.1   brezak 	pwent->pw_class = "";
    273   1.4  deraadt 
    274   1.4  deraadt 	/* line without colon separators is no good, so ignore it */
    275   1.4  deraadt 	if(!strchr(p,':'))
    276   1.4  deraadt 		return(NULL);
    277   1.1   brezak 
    278   1.1   brezak 	pwent->pw_name = p;
    279   1.1   brezak 	p = pwskip(p);
    280   1.1   brezak 	pwent->pw_passwd = p;
    281   1.1   brezak 	p = pwskip(p);
    282   1.1   brezak 	pwent->pw_uid = (uid_t)strtoul(p, NULL, 10);
    283   1.1   brezak 	p = pwskip(p);
    284   1.1   brezak 	pwent->pw_gid = (gid_t)strtoul(p, NULL, 10);
    285   1.1   brezak 	p = pwskip(p);
    286   1.1   brezak 	pwent->pw_gecos = p;
    287   1.1   brezak 	p = pwskip(p);
    288   1.1   brezak 	pwent->pw_dir = p;
    289   1.1   brezak 	p = pwskip(p);
    290   1.1   brezak 	pwent->pw_shell = p;
    291   1.1   brezak 	while (*p && *p != '\n')
    292   1.1   brezak 		p++;
    293   1.1   brezak 	*p = '\0';
    294   1.1   brezak 	return (pwent);
    295   1.1   brezak }
    296   1.1   brezak 
    297   1.1   brezak static struct passwd *
    298   1.1   brezak ypgetpwnam(nam)
    299   1.4  deraadt 	char *nam;
    300   1.1   brezak {
    301   1.4  deraadt 	static struct passwd pwent;
    302   1.4  deraadt 	static char line[1024];
    303   1.4  deraadt 	char *val;
    304   1.4  deraadt 	int reason, vallen;
    305   1.4  deraadt 
    306  1.14    lukem 	val = NULL;
    307   1.4  deraadt 	reason = yp_match(domain, "passwd.byname", nam, strlen(nam),
    308   1.4  deraadt 			  &val, &vallen);
    309  1.14    lukem 	if (reason != 0) {
    310  1.14    lukem 		if (val != NULL)
    311  1.14    lukem 			free(val);
    312   1.4  deraadt 		return (NULL);
    313   1.4  deraadt 	}
    314   1.4  deraadt 	val[vallen] = '\0';
    315  1.12      mrg 	(void)strncpy(line, val, sizeof(line) - 1);
    316   1.4  deraadt 	free(val);
    317   1.1   brezak 
    318   1.4  deraadt 	return(interpret(&pwent, line));
    319   1.1   brezak }
    320   1.1   brezak 
    321   1.1   brezak #endif	/* YP */
    322