yppasswdd_server.c revision 16876
1/*
2 * Copyright (c) 1995, 1996
3 *	Bill Paul <wpaul@ctr.columbia.edu>.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by Bill Paul.
16 * 4. Neither the name of the author nor the names of any co-contributors
17 *    may be used to endorse or promote products derived from this software
18 *    without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 *	$Id: yppasswdd_server.c,v 1.5 1996/06/23 22:44:06 wpaul Exp $
33 */
34
35#include <stdio.h>
36#include <string.h>
37#include <ctype.h>
38#include <stdlib.h>
39#include <unistd.h>
40#include <dirent.h>
41#include <sys/stat.h>
42#include <sys/socket.h>
43#include <netinet/in.h>
44#include <arpa/inet.h>
45#include <limits.h>
46#include <db.h>
47#include <pwd.h>
48#include <errno.h>
49#include <signal.h>
50#include <rpc/rpc.h>
51#include <rpcsvc/yp.h>
52#include <sys/types.h>
53#include <sys/wait.h>
54#include <sys/param.h>
55#include <sys/fcntl.h>
56struct dom_binding {};
57#include <rpcsvc/ypclnt.h>
58#include "yppasswdd_extern.h"
59#include "yppasswd.h"
60#include "yppasswd_private.h"
61#include "yppasswd_comm.h"
62
63#ifndef lint
64static const char rcsid[] = "$Id: yppasswdd_server.c,v 1.5 1996/06/23 22:44:06 wpaul Exp $";
65#endif /* not lint */
66
67char *tempname;
68
69void reaper(sig)
70	int sig;
71{
72	extern pid_t pid;
73	extern int pstat;
74	int st;
75
76	if (sig > 0) {
77		if (sig == SIGCHLD)
78			while(wait3(&st, WNOHANG, NULL) > 0) ;
79	} else {
80		pid = waitpid(pid, &pstat, 0);
81	}
82	return;
83}
84
85void install_reaper(on)
86	int on;
87{
88	if (on) {
89		signal(SIGCHLD, reaper);
90	} else {
91		signal(SIGCHLD, SIG_DFL);
92	}
93	return;
94}
95
96static struct passwd yp_password;
97
98static void copy_yp_pass(p, x, m)
99char *p;
100int x, m;
101{
102	register char *t, *s = p;
103	static char *buf;
104
105	yp_password.pw_fields = 0;
106
107	buf = (char *)realloc(buf, m + 10);
108	bzero(buf, m + 10);
109
110	/* Turn all colons into NULLs */
111	while (strchr(s, ':')) {
112		s = (strchr(s, ':') + 1);
113		*(s - 1)= '\0';
114	}
115
116	t = buf;
117#define EXPAND(e)       e = t; while ((*t++ = *p++));
118        EXPAND(yp_password.pw_name);
119	yp_password.pw_fields |= _PWF_NAME;
120        EXPAND(yp_password.pw_passwd);
121	yp_password.pw_fields |= _PWF_PASSWD;
122	yp_password.pw_uid = atoi(p);
123        p += (strlen(p) + 1);
124	yp_password.pw_fields |= _PWF_UID;
125	yp_password.pw_gid = atoi(p);
126        p += (strlen(p) + 1);
127	yp_password.pw_fields |= _PWF_GID;
128	if (x) {
129		EXPAND(yp_password.pw_class);
130		yp_password.pw_fields |= _PWF_CLASS;
131		yp_password.pw_change = atol(p);
132		p += (strlen(p) + 1);
133		yp_password.pw_fields |= _PWF_CHANGE;
134		yp_password.pw_expire = atol(p);
135		p += (strlen(p) + 1);
136		yp_password.pw_fields |= _PWF_EXPIRE;
137	}
138        EXPAND(yp_password.pw_gecos);
139	yp_password.pw_fields |= _PWF_GECOS;
140        EXPAND(yp_password.pw_dir);
141	yp_password.pw_fields |= _PWF_DIR;
142        EXPAND(yp_password.pw_shell);
143	yp_password.pw_fields |= _PWF_SHELL;
144
145	return;
146}
147
148static int validchars(arg)
149	char *arg;
150{
151	int i;
152
153	for (i = 0; i < strlen(arg); i++) {
154		if (iscntrl(arg[i])) {
155			yp_error("string contains a control character");
156			return(1);
157		}
158		if (arg[i] == ':') {
159			yp_error("string contains a colon");
160			return(1);
161		}
162		/* Be evil: truncate strings with \n in them silently. */
163		if (arg[i] == '\n') {
164			arg[i] = '\0';
165			return(0);
166		}
167	}
168	return(0);
169}
170
171static int validate_master(opw, npw)
172	struct passwd *opw;
173	struct x_master_passwd *npw;
174{
175
176	if (npw->pw_name[0] == '+' || npw->pw_name[0] == '-') {
177		yp_error("client tried to modify an NIS entry");
178		return(1);
179	}
180
181	if (validchars(npw->pw_shell)) {
182		yp_error("specified shell contains invalid characters");
183		return(1);
184	}
185
186	if (validchars(npw->pw_gecos)) {
187		yp_error("specified gecos field contains invalid characters");
188		return(1);
189	}
190
191	if (validchars(npw->pw_passwd)) {
192		yp_error("specified password contains invalid characters");
193		return(1);
194	}
195	return(0);
196}
197
198static int validate(opw, npw)
199	struct passwd *opw;
200	struct x_passwd *npw;
201{
202
203	if (npw->pw_name[0] == '+' || npw->pw_name[0] == '-') {
204		yp_error("client tried to modify an NIS entry");
205		return(1);
206	}
207
208	if (npw->pw_uid != opw->pw_uid) {
209		yp_error("UID mismatch: client says user %s has UID %d",
210			 npw->pw_name, npw->pw_uid);
211		yp_error("database says user %s has UID %d", opw->pw_name,
212			 opw->pw_uid);
213		return(1);
214	}
215
216	if (npw->pw_gid != opw->pw_gid) {
217		yp_error("GID mismatch: client says user %s has GID %d",
218			 npw->pw_name, npw->pw_gid);
219		yp_error("database says user %s has GID %d", opw->pw_name,
220			 opw->pw_gid);
221		return(1);
222	}
223
224	/*
225	 * Don't allow the user to shoot himself in the foot,
226	 * even on purpose.
227	 */
228	if (!ok_shell(npw->pw_shell)) {
229		yp_error("%s is not a valid shell", npw->pw_shell);
230		return(1);
231	}
232
233	if (validchars(npw->pw_shell)) {
234		yp_error("specified shell contains invalid characters");
235		return(1);
236	}
237
238	if (validchars(npw->pw_gecos)) {
239		yp_error("specified gecos field contains invalid characters");
240		return(1);
241	}
242
243	if (validchars(npw->pw_passwd)) {
244		yp_error("specified password contains invalid characters");
245		return(1);
246	}
247	return(0);
248}
249
250/*
251 * Kludge alert:
252 * In order to have one rpc.yppasswdd support multiple domains,
253 * we have to cheat: we search each directory under /var/yp
254 * and try to match the user in each master.passwd.byname
255 * map that we find. If the user matches (username, uid and gid
256 * all agree), then we use that domain. If we match the user in
257 * more than one database, we must abort.
258 */
259static char *find_domain(pw)
260	struct x_passwd *pw;
261{
262	struct stat statbuf;
263	struct dirent *dirp;
264	DIR *dird;
265	char yp_mapdir[MAXPATHLEN + 2];
266	static char domain[YPMAXDOMAIN];
267	char *tmp = NULL;
268	DBT key, data;
269	int hit = 0;
270
271	yp_error("performing multidomain lookup");
272
273	if ((dird = opendir(yp_dir)) == NULL) {
274		yp_error("opendir(%s) failed: %s", yp_dir, strerror(errno));
275		return(NULL);
276	}
277
278	while ((dirp = readdir(dird)) != NULL) {
279		snprintf(yp_mapdir, sizeof(yp_mapdir), "%s/%s",
280							yp_dir, dirp->d_name);
281		if (stat(yp_mapdir, &statbuf) < 0) {
282			yp_error("stat(%s) failed: %s", yp_mapdir,
283							strerror(errno));
284			closedir(dird);
285			return(NULL);
286		}
287		if (S_ISDIR(statbuf.st_mode)) {
288			tmp = (char *)dirp->d_name;
289			key.data = pw->pw_name;
290			key.size = strlen(pw->pw_name);
291
292			if (yp_get_record(tmp,"master.passwd.byname",
293			  		&key, &data, 0) != YP_TRUE) {
294				continue;
295			}
296			*(char *)(data.data + data.size) = '\0';
297			copy_yp_pass(data.data, 1, data.size);
298			if (yp_password.pw_uid == pw->pw_uid &&
299			    yp_password.pw_gid == pw->pw_gid) {
300				hit++;
301				snprintf(domain, YPMAXDOMAIN, "%s", tmp);
302			}
303		}
304	}
305
306	closedir(dird);
307	if (hit > 1) {
308		yp_error("found same user in two different domains");
309		return(NULL);
310	} else
311		return((char *)&domain);
312}
313
314static int update_inplace(pw, domain)
315	struct passwd *pw;
316	char *domain;
317{
318	DB *dbp = NULL;
319	DBT key = { NULL, 0 };
320	DBT data = { NULL, 0 };
321	char pwbuf[YPMAXRECORD];
322	char keybuf[20];
323	int rval, i;
324	char *maps[] = { "master.passwd.byname", "master.passwd.byuid",
325			 "passwd.byname", "passwd.byuid" };
326
327	char *formats[] = { "%s:%s:%d:%d:%s:%ld:%ld:%s:%s:%s",
328			    "%s:%s:%d:%d:%s:%ld:%ld:%s:%s:%s",
329			    "%s:%s:%d:%d:%s:%s:%s", "%s:%s:%d:%d:%s:%s:%s" };
330	char *ptr = NULL;
331	char *yp_last = "YP_LAST_MODIFIED";
332	char yplastbuf[YPMAXRECORD];
333
334	snprintf(yplastbuf, sizeof(yplastbuf), "%lu", time(NULL));
335
336	for (i = 0; i < 4; i++) {
337
338		if (i % 2) {
339			snprintf(keybuf, sizeof(keybuf), "%ld", pw->pw_uid);
340			key.data = (char *)&keybuf;
341			key.size = strlen(keybuf);
342		} else {
343			key.data = pw->pw_name;
344			key.size = strlen(pw->pw_name);
345		}
346
347		/*
348		 * XXX The passwd.byname and passwd.byuid maps come in
349		 * two flavors: secure and insecure. The secure version
350		 * has a '*' in the password field whereas the insecure one
351		 * has a real crypted password. The maps will be insecure
352		 * if they were built with 'unsecure = TRUE' enabled in
353		 * /var/yp/Makefile, but we'd have no way of knowing if
354		 * this has been done unless we were to try parsing the
355		 * Makefile, which is a disgusting thought. Instead, we
356		 * read the records from the maps, skip to the first ':'
357		 * in them, and then look at the character immediately
358		 * following it. If it's an '*' then the map is 'secure'
359		 * and we must not insert a real password into the pw_passwd
360		 * field. If it's not an '*', then we put the real crypted
361		 * password in.
362		 */
363		if (yp_get_record(domain,maps[i],&key,&data,1) != YP_TRUE) {
364			yp_error("couldn't read %s/%s: %s", domain,
365						maps[i], strerror(errno));
366			return(1);
367		}
368
369		if ((ptr = strchr(data.data, ':')) == NULL) {
370			yp_error("no colon in passwd record?!");
371			return(1);
372		}
373
374		if (i < 2) {
375			snprintf(pwbuf, sizeof(pwbuf), formats[i],
376			   pw->pw_name, pw->pw_passwd, pw->pw_uid,
377			   pw->pw_gid, pw->pw_class, pw->pw_change,
378			   pw->pw_expire, pw->pw_gecos, pw->pw_dir,
379			   pw->pw_shell);
380		} else {
381			snprintf(pwbuf, sizeof(pwbuf), formats[i],
382			   pw->pw_name, *(ptr+1) == '*' ? "*" : pw->pw_passwd,
383			   pw->pw_uid, pw->pw_gid, pw->pw_gecos, pw->pw_dir,
384			   pw->pw_shell);
385		}
386
387#define FLAGS O_RDWR|O_CREAT
388
389		if ((dbp = yp_open_db_rw(domain, maps[i], FLAGS)) == NULL) {
390			yp_error("couldn't open %s/%s r/w: %s",domain,
391						maps[i],strerror(errno));
392			return(1);
393		}
394
395		data.data = pwbuf;
396		data.size = strlen(pwbuf);
397
398		if (yp_put_record(dbp, &key, &data, 1) != YP_TRUE) {
399			yp_error("failed to update record in %s/%s", domain,
400								maps[i]);
401			(void)(dbp->close)(dbp);
402			return(1);
403		}
404
405		key.data = yp_last;
406		key.size = strlen(yp_last);
407		data.data = (char *)&yplastbuf;
408		data.size = strlen(yplastbuf);
409
410		if (yp_put_record(dbp, &key, &data, 1) != YP_TRUE) {
411			yp_error("failed to update timestamp in %s/%s", domain,
412								maps[i]);
413			(void)(dbp->close)(dbp);
414			return(1);
415		}
416
417		(void)(dbp->close)(dbp);
418	}
419
420	return(0);
421}
422
423
424int *
425yppasswdproc_update_1_svc(yppasswd *argp, struct svc_req *rqstp)
426{
427	static int  result;
428	struct sockaddr_in *rqhost;
429	DBT key, data;
430	int rval = 0;
431	int pfd, tfd;
432	int pid;
433	int passwd_changed = 0;
434	int shell_changed = 0;
435	int gecos_changed = 0;
436	char *oldshell = NULL;
437	char *oldgecos = NULL;
438	char *passfile_hold;
439	char passfile_buf[MAXPATHLEN + 2];
440	char template[] = "/etc/yppwtmp.XXXXX";
441	char *domain = yppasswd_domain;
442
443	/*
444	 * Normal user updates always use the 'default' master.passwd file.
445	 */
446
447	passfile = passfile_default;
448	result = 1;
449
450	rqhost = svc_getcaller(rqstp->rq_xprt);
451
452	if (yp_access(resvport ? "master.passwd.byname" : NULL, rqstp)) {
453		yp_error("rejected update request from unauthorized host");
454		svcerr_auth(rqstp->rq_xprt, AUTH_BADCRED);
455		return(&result);
456	}
457
458	/*
459	 * Step one: find the user. (It's kinda pointless to
460	 * proceed if the user doesn't exist.) We look for the
461	 * user in the master.passwd.byname database, _NOT_ by
462	 * using getpwent() and friends! We can't use getpwent()
463	 * since the NIS master server is not guaranteed to be
464	 * configured as an NIS client.
465	 */
466
467	if (multidomain) {
468		if ((domain = find_domain(&argp->newpw)) == NULL) {
469			yp_error("multidomain lookup failed - aborting update");
470			return(&result);
471		} else
472			yp_error("updating user %s in domain %s",
473					argp->newpw.pw_name, domain);
474	}
475
476	key.data = argp->newpw.pw_name;
477	key.size = strlen(argp->newpw.pw_name);
478
479	if ((rval=yp_get_record(domain,"master.passwd.byname",
480		  	&key, &data, 0)) != YP_TRUE) {
481		if (rval == YP_NOKEY) {
482			yp_error("user %s not found in passwd database",
483			 	argp->newpw.pw_name);
484		} else {
485			yp_error("database access error: %s",
486			 	yperr_string(rval));
487		}
488		return(&result);
489	}
490
491	/* Nul terminate, please. */
492	*(char *)(data.data + data.size) = '\0';
493
494	copy_yp_pass(data.data, 1, data.size);
495
496	/* Step 2: check that the supplied oldpass is valid. */
497
498	if (strcmp(crypt(argp->oldpass, yp_password.pw_passwd),
499					yp_password.pw_passwd)) {
500		yp_error("rejected change attempt -- bad password");
501		yp_error("client address: %s username: %s",
502			  inet_ntoa(rqhost->sin_addr),
503			  argp->newpw.pw_name);
504		return(&result);
505	}
506
507	/* Step 3: validate the arguments passed to us by the client. */
508
509	if (validate(&yp_password, &argp->newpw)) {
510		yp_error("rejecting change attempt: bad arguments");
511		yp_error("client address: %s username: %s",
512			 inet_ntoa(rqhost->sin_addr),
513			 argp->newpw.pw_name);
514		svcerr_decode(rqstp->rq_xprt);
515		return(&result);
516	}
517
518	/* Step 4: update the user's passwd structure. */
519
520	if (!no_chsh && strcmp(argp->newpw.pw_shell, yp_password.pw_shell)) {
521		oldshell = yp_password.pw_shell;
522		yp_password.pw_shell = argp->newpw.pw_shell;
523		shell_changed++;
524	}
525
526
527	if (!no_chfn && strcmp(argp->newpw.pw_gecos, yp_password.pw_gecos)) {
528		oldgecos = yp_password.pw_gecos;
529		yp_password.pw_gecos = argp->newpw.pw_gecos;
530		gecos_changed++;
531	}
532
533	if (strcmp(argp->newpw.pw_passwd, yp_password.pw_passwd)) {
534		yp_password.pw_passwd = argp->newpw.pw_passwd;
535		passwd_changed++;
536	}
537
538	/*
539	 * If the caller specified a domain other than our 'default'
540	 * domain, change the path to master.passwd accordingly.
541	 */
542
543	if (strcmp(domain, yppasswd_domain)) {
544		snprintf(passfile_buf, sizeof(passfile_buf),
545			"%s/%s/master.passwd", yp_dir, domain);
546		passfile = (char *)&passfile_buf;
547	}
548
549	/* Step 5: make a new password file with the updated info. */
550
551	if ((pfd = pw_lock()) < 0) {
552		return (&result);
553	}
554	if ((tfd = pw_tmp()) < 0) {
555		return (&result);
556	}
557
558	if (pw_copy(pfd, tfd, &yp_password)) {
559		yp_error("failed to created updated password file -- \
560cleaning up and bailing out");
561		unlink(tempname);
562		return(&result);
563	}
564
565	passfile_hold = mktemp((char *)&template);
566	rename(passfile, passfile_hold);
567	if (strcmp(passfile, _PATH_MASTERPASSWD)) {
568		rename(tempname, passfile);
569	} else {
570		if (pw_mkdb(argp->newpw.pw_name) < 0) {
571			yp_error("pwd_mkdb failed");
572			return(&result);
573		}
574	}
575
576	if (inplace) {
577		if ((rval = update_inplace(&yp_password, domain))) {
578			yp_error("inplace update failed -- rebuilding maps");
579		}
580	}
581
582	switch((pid = fork())) {
583	case 0:
584		/* unlink(passfile_hold); */
585		if (inplace && !rval) {
586    			execlp(MAP_UPDATE_PATH, MAP_UPDATE, passfile,
587				yppasswd_domain, "pushpw", NULL);
588		} else {
589    			execlp(MAP_UPDATE_PATH, MAP_UPDATE, passfile,
590				yppasswd_domain, NULL);
591		}
592    		yp_error("couldn't exec map update process: %s",
593					strerror(errno));
594		unlink(passfile);
595		rename(passfile_hold, passfile);
596    		exit(1);
597		break;
598	case -1:
599		yp_error("fork() failed: %s", strerror(errno));
600		return(&result);
601		unlink(passfile);
602		rename(passfile_hold, passfile);
603		break;
604	default:
605		break;
606	}
607
608	if (verbose) {
609		yp_error("update completed for user %s (uid %d):",
610						argp->newpw.pw_name,
611						argp->newpw.pw_uid);
612
613		if (passwd_changed)
614			yp_error("password changed");
615
616		if (gecos_changed)
617			yp_error("gecos changed ('%s' -> '%s')",
618					oldgecos, argp->newpw.pw_gecos);
619
620		if (shell_changed)
621			yp_error("shell changed ('%s' -> '%s')",
622					oldshell, argp->newpw.pw_shell);
623	}
624
625	result = 0;
626	return (&result);
627
628}
629
630/*
631 * Note that this function performs a little less sanity checking
632 * than the last one. Since only the superuser is allowed to use it,
633 * it is assumed that the caller knows what he's doing.
634 */
635static int update_master(master_yppasswd *argp)
636{
637	int result;
638	int pfd, tfd;
639	int pid;
640	int rval = 0;
641	DBT key, data;
642	char *passfile_hold;
643	char passfile_buf[MAXPATHLEN + 2];
644	char template[] = "/etc/yppwtmp.XXXXX";
645
646	result = 1;
647	passfile = passfile_default;
648
649	key.data = argp->newpw.pw_name;
650	key.size = strlen(argp->newpw.pw_name);
651
652	/*
653	 * The superuser may add entries to the passwd maps if
654	 * rpc.yppasswdd is started with the -a flag. Paranoia
655	 * prevents me from allowing additions by default.
656	 */
657	if ((rval = yp_get_record(argp->domain, "master.passwd.byname",
658			  &key, &data, 0)) != YP_TRUE) {
659		if (rval == YP_NOKEY) {
660			yp_error("user %s not found in passwd database",
661				 argp->newpw.pw_name);
662			if (allow_additions)
663				yp_error("notice: adding user %s to \
664master.passwd database for domain %s", argp->newpw.pw_name, argp->domain);
665			else
666				yp_error("restart %s with the -a flag to \
667allow additions to be made to the password database", progname);
668		} else {
669			yp_error("database access error: %s",
670				 yperr_string(rval));
671		}
672		if (!allow_additions)
673			return(result);
674	} else {
675
676		/* Nul terminate, please. */
677		*(char *)(data.data + data.size) = '\0';
678
679		copy_yp_pass(data.data, 1, data.size);
680	}
681
682	/*
683	 * Perform a small bit of sanity checking.
684	 */
685	if (validate_master(rval == YP_TRUE ? &yp_password:NULL,&argp->newpw)){
686		yp_error("rejecting update attempt for %s: bad arguments",
687			 argp->newpw.pw_name);
688		return(result);
689	}
690
691	/*
692	 * If the caller specified a domain other than our 'default'
693	 * domain, change the path to master.passwd accordingly.
694	 */
695
696	if (strcmp(argp->domain, yppasswd_domain)) {
697		snprintf(passfile_buf, sizeof(passfile_buf),
698			"%s/%s/master.passwd", yp_dir, argp->domain);
699		passfile = (char *)&passfile_buf;
700	}
701
702	if ((pfd = pw_lock()) < 0) {
703		return (result);
704	}
705	if ((tfd = pw_tmp()) < 0) {
706		return (result);
707	}
708
709	if (pw_copy(pfd, tfd, (struct passwd  *)&argp->newpw)) {
710		yp_error("failed to created updated password file -- \
711cleaning up and bailing out");
712		unlink(tempname);
713		return(result);
714	}
715
716	passfile_hold = mktemp((char *)&template);
717	rename(passfile, passfile_hold);
718	if (strcmp(passfile, _PATH_MASTERPASSWD)) {
719		rename(tempname, passfile);
720	} else {
721		if (pw_mkdb(argp->newpw.pw_name) < 0) {
722			yp_error("pwd_mkdb failed");
723			return(result);
724		}
725	}
726
727	if (inplace) {
728		if ((rval = update_inplace((struct passwd *)&argp->newpw,
729							argp->domain))) {
730			yp_error("inplace update failed -- rebuilding maps");
731		}
732	}
733
734	switch((pid = fork())) {
735	case 0:
736		close(yp_sock);
737		if (inplace && !rval) {
738    			execlp(MAP_UPDATE_PATH, MAP_UPDATE, passfile,
739				argp->domain, "pushpw", NULL);
740    		} else {
741			execlp(MAP_UPDATE_PATH, MAP_UPDATE, passfile,
742				argp->domain, NULL);
743		}
744    		yp_error("couldn't exec map update process: %s",
745					strerror(errno));
746		unlink(passfile);
747		rename(passfile_hold, passfile);
748    		exit(1);
749		break;
750	case -1:
751		yp_error("fork() failed: %s", strerror(errno));
752		unlink(passfile);
753		rename(passfile_hold, passfile);
754		return(result);
755		break;
756	default:
757		break;
758	}
759
760	yp_error("performed update of user %s (uid %d) domain %s",
761						argp->newpw.pw_name,
762						argp->newpw.pw_uid,
763						argp->domain);
764
765	result = 0;
766	return(result);
767}
768
769/*
770 * Pseudo-dispatcher for private 'superuser-only' update handler.
771 */
772void do_master()
773{
774	struct master_yppasswd *pw;
775
776	if ((pw = getdat(yp_sock)) == NULL) {
777		return;
778	}
779
780	yp_error("received update request from superuser on localhost");
781	sendresp(update_master(pw));
782
783	/* Remember to free args. */
784	xdr_free(xdr_master_yppasswd, (char *)pw);
785
786	return;
787}
788