Home | History | Annotate | Line # | Download | only in chpass
pw_yp.c revision 1.11
      1  1.11    mikel /*	$NetBSD: pw_yp.c,v 1.11 1997/07/25 06:37:27 mikel Exp $	*/
      2   1.5    glass 
      3   1.1   brezak /*
      4   1.1   brezak  * Copyright (c) 1988 The Regents of the University of California.
      5   1.1   brezak  * 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.1   brezak #ifndef lint
     36   1.5    glass #if 0
     37   1.5    glass static char sccsid[] = "@(#)pw_yp.c	1.0 2/2/93";
     38   1.5    glass #else
     39  1.11    mikel static char rcsid[] = "$NetBSD: pw_yp.c,v 1.11 1997/07/25 06:37:27 mikel Exp $";
     40   1.5    glass #endif
     41   1.1   brezak #endif /* not lint */
     42   1.1   brezak 
     43   1.1   brezak #ifdef	YP
     44   1.1   brezak 
     45  1.11    mikel #include <err.h>
     46   1.1   brezak #include <stdio.h>
     47  1.11    mikel #include <stdlib.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.3  deraadt 
     60   1.1   brezak static char *domain;
     61   1.7  thorpej 
     62   1.7  thorpej /*
     63   1.7  thorpej  * Check if rpc.yppasswdd is running on the master YP server.
     64   1.7  thorpej  * XXX this duplicates some code, but is much less complex
     65   1.7  thorpej  * than the alternative.
     66   1.7  thorpej  */
     67   1.7  thorpej int
     68   1.7  thorpej check_yppasswdd()
     69   1.7  thorpej {
     70   1.7  thorpej 	char *master;
     71   1.7  thorpej 	int rpcport;
     72   1.7  thorpej 
     73   1.7  thorpej 	/*
     74   1.7  thorpej 	 * Get local domain
     75   1.7  thorpej 	 */
     76   1.7  thorpej 	if (!domain && yp_get_default_domain(&domain) != 0)
     77   1.7  thorpej 		return (1);
     78   1.7  thorpej 
     79   1.7  thorpej 	/*
     80   1.7  thorpej 	 * Find the host for the passwd map; it should be running
     81   1.7  thorpej 	 * the daemon.
     82   1.7  thorpej 	 */
     83   1.9    lukem 	master = NULL;
     84   1.9    lukem 	if (yp_master(domain, "passwd.byname", &master) != 0) {
     85   1.9    lukem 		if (master != NULL)
     86   1.9    lukem 			free (master);
     87   1.7  thorpej 		return (1);
     88   1.9    lukem 	}
     89   1.7  thorpej 
     90   1.7  thorpej 	/*
     91   1.7  thorpej 	 * Ask the portmapper for the port of the daemon.
     92   1.7  thorpej 	 */
     93   1.7  thorpej 	if ((rpcport = getrpcport(master, YPPASSWDPROG, YPPASSWDPROC_UPDATE,
     94   1.7  thorpej 	    IPPROTO_UDP)) == 0)
     95   1.7  thorpej 		return (1);
     96   1.7  thorpej 
     97   1.7  thorpej 	/*
     98   1.7  thorpej 	 * Successful contact with rpc.yppasswdd.
     99   1.7  thorpej 	 */
    100   1.7  thorpej 	return (0);
    101   1.7  thorpej }
    102   1.1   brezak 
    103  1.11    mikel int
    104   1.1   brezak pw_yp(pw, uid)
    105   1.3  deraadt 	struct passwd *pw;
    106   1.3  deraadt 	uid_t uid;
    107   1.1   brezak {
    108   1.3  deraadt 	char *master;
    109   1.3  deraadt 	char *pp;
    110   1.3  deraadt 	int r, rpcport, status;
    111   1.3  deraadt 	struct yppasswd yppasswd;
    112   1.1   brezak 	struct timeval tv;
    113   1.1   brezak 	CLIENT *client;
    114   1.3  deraadt 	extern char *getpass();
    115   1.3  deraadt 
    116   1.3  deraadt 	/*
    117   1.3  deraadt 	 * Get local domain
    118   1.3  deraadt 	 */
    119   1.6  thorpej 	if (!domain && (r = yp_get_default_domain(&domain)))
    120   1.6  thorpej 		errx(1, "can't get local YP domain.  Reason: %s",
    121   1.6  thorpej 		    yperr_string(r));
    122   1.3  deraadt 
    123   1.3  deraadt 	/*
    124   1.3  deraadt 	 * Find the host for the passwd map; it should be running
    125   1.3  deraadt 	 * the daemon.
    126   1.3  deraadt 	 */
    127   1.9    lukem 	master = NULL;
    128   1.3  deraadt 	if ((r = yp_master(domain, "passwd.byname", &master)) != 0) {
    129   1.9    lukem 		if (master)
    130   1.9    lukem 			free (master);
    131   1.6  thorpej 		warnx("can't find the master YP server.  Reason: %s",
    132   1.6  thorpej 		    yperr_string(r));
    133   1.6  thorpej 		return (1);
    134   1.3  deraadt 	}
    135   1.3  deraadt 
    136   1.3  deraadt 	/*
    137   1.3  deraadt 	 * Ask the portmapper for the port of the daemon.
    138   1.3  deraadt 	 */
    139   1.3  deraadt 	if ((rpcport = getrpcport(master, YPPASSWDPROG, YPPASSWDPROC_UPDATE,
    140   1.3  deraadt 	    IPPROTO_UDP)) == 0) {
    141   1.6  thorpej 		warnx("master YP server not running yppasswd daemon.\n\t%s\n",
    142   1.6  thorpej 		    "Can't change password.");
    143   1.6  thorpej 		return (1);
    144   1.3  deraadt 	}
    145   1.3  deraadt 
    146   1.3  deraadt 	/*
    147   1.3  deraadt 	 * Be sure the port is priviledged
    148   1.3  deraadt 	 */
    149   1.3  deraadt 	if (rpcport >= IPPORT_RESERVED) {
    150   1.6  thorpej 		warnx("yppasswd daemon is on an invalid port.");
    151   1.6  thorpej 		return (1);
    152   1.3  deraadt 	}
    153   1.3  deraadt 
    154   1.3  deraadt 	/* prompt for old password */
    155   1.3  deraadt 	bzero(&yppasswd, sizeof yppasswd);
    156   1.3  deraadt 	yppasswd.oldpass = "none";
    157   1.4  deraadt 	yppasswd.oldpass = getpass("Old password:");
    158   1.3  deraadt 	if (!yppasswd.oldpass) {
    159   1.6  thorpej 		warnx("Cancelled.");
    160   1.6  thorpej 		return (1);
    161   1.3  deraadt 	}
    162   1.6  thorpej 
    163   1.3  deraadt 	/* tell rpc.yppasswdd */
    164   1.3  deraadt 	yppasswd.newpw.pw_name	= pw->pw_name;
    165   1.3  deraadt 	yppasswd.newpw.pw_passwd= pw->pw_passwd;
    166   1.3  deraadt 	yppasswd.newpw.pw_uid 	= pw->pw_uid;
    167   1.3  deraadt 	yppasswd.newpw.pw_gid	= pw->pw_gid;
    168   1.3  deraadt 	yppasswd.newpw.pw_gecos = pw->pw_gecos;
    169   1.3  deraadt 	yppasswd.newpw.pw_dir	= pw->pw_dir;
    170   1.3  deraadt 	yppasswd.newpw.pw_shell	= pw->pw_shell;
    171   1.3  deraadt 
    172   1.3  deraadt 	client = clnt_create(master, YPPASSWDPROG, YPPASSWDVERS, "udp");
    173   1.3  deraadt 	if (client==NULL) {
    174   1.6  thorpej 		warnx("cannot contact yppasswdd on %s:  Reason: %s",
    175   1.3  deraadt 		    master, yperr_string(YPERR_YPBIND));
    176   1.6  thorpej 		return (1);
    177   1.3  deraadt 	}
    178   1.3  deraadt 	client->cl_auth = authunix_create_default();
    179   1.3  deraadt 	tv.tv_sec = 5;
    180   1.3  deraadt 	tv.tv_usec = 0;
    181   1.3  deraadt 	r = clnt_call(client, YPPASSWDPROC_UPDATE,
    182   1.3  deraadt 	    xdr_yppasswd, &yppasswd, xdr_int, &status, tv);
    183   1.3  deraadt 	if (r) {
    184   1.6  thorpej 		warnx("rpc to yppasswdd failed.");
    185   1.6  thorpej 		return (1);
    186   1.6  thorpej 	} else if (status)
    187   1.6  thorpej 		printf("Couldn't change YP password.\n");
    188   1.6  thorpej 	else
    189   1.6  thorpej 		printf("%s %s, %s\n",
    190   1.6  thorpej 		    "The YP password information has been changed on",
    191   1.6  thorpej 		    master, "the master YP passwd server.");
    192   1.6  thorpej 	return (0);
    193   1.1   brezak }
    194   1.1   brezak 
    195   1.1   brezak static char *
    196   1.3  deraadt pwskip(p)
    197  1.10    lukem 	char *p;
    198   1.1   brezak {
    199   1.1   brezak 	while (*p && *p != ':' && *p != '\n')
    200   1.1   brezak 		++p;
    201   1.1   brezak 	if (*p)
    202   1.1   brezak 		*p++ = 0;
    203   1.1   brezak 	return (p);
    204   1.1   brezak }
    205   1.1   brezak 
    206   1.1   brezak static struct passwd *
    207   1.3  deraadt interpret(pwent, line)
    208   1.3  deraadt 	struct passwd *pwent;
    209   1.3  deraadt 	char *line;
    210   1.1   brezak {
    211  1.10    lukem 	char	*p = line;
    212  1.10    lukem 	int	c;
    213   1.1   brezak 
    214   1.3  deraadt 	pwent->pw_passwd = "*";
    215   1.3  deraadt 	pwent->pw_uid = 0;
    216   1.3  deraadt 	pwent->pw_gid = 0;
    217   1.3  deraadt 	pwent->pw_gecos = "";
    218   1.3  deraadt 	pwent->pw_dir = "";
    219   1.3  deraadt 	pwent->pw_shell = "";
    220   1.1   brezak 	pwent->pw_change = 0;
    221   1.1   brezak 	pwent->pw_expire = 0;
    222   1.1   brezak 	pwent->pw_class = "";
    223   1.3  deraadt 
    224   1.3  deraadt 	/* line without colon separators is no good, so ignore it */
    225   1.3  deraadt 	if(!strchr(p,':'))
    226   1.3  deraadt 		return(NULL);
    227   1.1   brezak 
    228   1.1   brezak 	pwent->pw_name = p;
    229   1.1   brezak 	p = pwskip(p);
    230   1.1   brezak 	pwent->pw_passwd = p;
    231   1.1   brezak 	p = pwskip(p);
    232   1.1   brezak 	pwent->pw_uid = (uid_t)strtoul(p, NULL, 10);
    233   1.1   brezak 	p = pwskip(p);
    234   1.1   brezak 	pwent->pw_gid = (gid_t)strtoul(p, NULL, 10);
    235   1.1   brezak 	p = pwskip(p);
    236   1.1   brezak 	pwent->pw_gecos = p;
    237   1.1   brezak 	p = pwskip(p);
    238   1.1   brezak 	pwent->pw_dir = p;
    239   1.1   brezak 	p = pwskip(p);
    240   1.1   brezak 	pwent->pw_shell = p;
    241   1.1   brezak 	while (*p && *p != '\n')
    242   1.1   brezak 		p++;
    243   1.1   brezak 	*p = '\0';
    244   1.1   brezak 	return (pwent);
    245   1.1   brezak }
    246   1.1   brezak 
    247   1.1   brezak struct passwd *
    248   1.1   brezak ypgetpwnam(nam)
    249   1.3  deraadt 	char *nam;
    250   1.1   brezak {
    251   1.3  deraadt 	static struct passwd pwent;
    252   1.3  deraadt 	static char line[1024];
    253   1.3  deraadt 	char *val;
    254   1.3  deraadt 	int reason, vallen;
    255   1.3  deraadt 
    256   1.3  deraadt 	/*
    257   1.3  deraadt 	 * Get local domain
    258   1.3  deraadt 	 */
    259   1.6  thorpej 	if (!domain && (reason = yp_get_default_domain(&domain)))
    260   1.6  thorpej 		errx(1, "can't get local YP domain. Reason: %s",
    261   1.6  thorpej 		    yperr_string(reason));
    262   1.3  deraadt 
    263   1.9    lukem 	val = NULL;
    264   1.3  deraadt 	reason = yp_match(domain, "passwd.byname", nam, strlen(nam),
    265   1.3  deraadt 	    &val, &vallen);
    266   1.9    lukem 	if (reason != 0) {
    267   1.9    lukem 		if (val)
    268   1.9    lukem 			free (val);
    269   1.3  deraadt 		return (NULL);
    270   1.3  deraadt 	}
    271   1.3  deraadt 	val[vallen] = '\0';
    272   1.8      mrg 	(void)strncpy(line, val, sizeof(line) - 1);
    273   1.3  deraadt 	free(val);
    274   1.1   brezak 
    275   1.3  deraadt 	return(interpret(&pwent, line));
    276   1.1   brezak }
    277   1.1   brezak 
    278   1.1   brezak struct passwd *
    279   1.1   brezak ypgetpwuid(uid)
    280   1.3  deraadt 	uid_t uid;
    281   1.1   brezak {
    282   1.3  deraadt 	static struct passwd pwent;
    283   1.3  deraadt 	static char line[1024];
    284   1.3  deraadt 	char *val;
    285   1.3  deraadt 	int reason, vallen;
    286   1.3  deraadt 	char namebuf[16];
    287   1.3  deraadt 
    288   1.6  thorpej 	if (!domain && (reason = yp_get_default_domain(&domain)))
    289   1.6  thorpej 		errx(1, "can't get local YP domain. Reason: %s\n",
    290   1.6  thorpej 		    yperr_string(reason));
    291   1.3  deraadt 
    292   1.8      mrg 	(void)snprintf(namebuf, sizeof namebuf, "%d", uid);
    293   1.9    lukem 	val = NULL;
    294   1.3  deraadt 	reason = yp_match(domain, "passwd.byuid", namebuf, strlen(namebuf),
    295   1.3  deraadt 	    &val, &vallen);
    296   1.9    lukem 	if (reason != 0) {
    297   1.9    lukem 		if (val)
    298   1.9    lukem 			free (val);
    299   1.3  deraadt 		return (NULL);
    300   1.3  deraadt 	}
    301   1.3  deraadt 	val[vallen] = '\0';
    302   1.8      mrg 	(void)strncpy(line, val, sizeof(line) - 1);
    303   1.3  deraadt 	free(val);
    304   1.1   brezak 
    305   1.3  deraadt 	return(interpret(&pwent, line));
    306   1.1   brezak }
    307   1.1   brezak 
    308   1.6  thorpej void
    309   1.6  thorpej yppw_error(name, err, eval)
    310   1.6  thorpej 	const char *name;
    311   1.6  thorpej 	int err, eval;
    312   1.6  thorpej {
    313   1.6  thorpej 
    314   1.6  thorpej 	if (err)
    315   1.6  thorpej 		warn(name);
    316   1.6  thorpej 
    317   1.6  thorpej 	errx(eval, "YP passwd information unchanged");
    318   1.6  thorpej }
    319   1.6  thorpej 
    320   1.6  thorpej void
    321   1.6  thorpej yppw_prompt()
    322   1.6  thorpej {
    323   1.6  thorpej 	int c;
    324   1.6  thorpej 
    325   1.6  thorpej 	(void)printf("re-edit the password file? [y]: ");
    326   1.6  thorpej 	(void)fflush(stdout);
    327   1.6  thorpej 	c = getchar();
    328   1.6  thorpej 	if (c != EOF && c != '\n')
    329   1.6  thorpej 		while (getchar() != '\n');
    330   1.6  thorpej 	if (c == 'n')
    331   1.6  thorpej 		yppw_error(NULL, 0, 0);
    332   1.6  thorpej }
    333   1.1   brezak #endif	/* YP */
    334