pw_user.c revision 61957
1228753Smm/*-
2228753Smm * Copyright (C) 1996
3228753Smm *	David L. Nugent.  All rights reserved.
4228753Smm *
5228753Smm * Redistribution and use in source and binary forms, with or without
6228753Smm * modification, are permitted provided that the following conditions
7228753Smm * are met:
8228753Smm * 1. Redistributions of source code must retain the above copyright
9228753Smm *    notice, this list of conditions and the following disclaimer.
10228753Smm * 2. Redistributions in binary form must reproduce the above copyright
11228753Smm *    notice, this list of conditions and the following disclaimer in the
12228753Smm *    documentation and/or other materials provided with the distribution.
13228753Smm *
14228753Smm * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
15228753Smm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16228753Smm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17228753Smm * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
18228753Smm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19228753Smm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20228753Smm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21228753Smm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22228753Smm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23228753Smm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24228753Smm * SUCH DAMAGE.
25228753Smm *
26228753Smm */
27228753Smm
28228753Smm#ifndef lint
29228753Smmstatic const char rcsid[] =
30228753Smm  "$FreeBSD: head/usr.sbin/pw/pw_user.c 61957 2000-06-22 16:48:41Z ache $";
31228753Smm#endif /* not lint */
32228753Smm
33228753Smm#include <ctype.h>
34228753Smm#include <err.h>
35228753Smm#include <fcntl.h>
36228753Smm#include <sys/param.h>
37228753Smm#include <dirent.h>
38228753Smm#include <paths.h>
39228753Smm#include <termios.h>
40228753Smm#include <sys/types.h>
41228753Smm#include <sys/time.h>
42228753Smm#include <sys/resource.h>
43228753Smm#include <unistd.h>
44228753Smm#include <utmp.h>
45228753Smm#if defined(USE_MD5RAND)
46228753Smm#include <md5.h>
47228753Smm#endif
48228753Smm#include "pw.h"
49228753Smm#include "bitmap.h"
50228753Smm
51228753Smm#if (MAXLOGNAME-1) > UT_NAMESIZE
52228753Smm#define LOGNAMESIZE UT_NAMESIZE
53228753Smm#else
54228753Smm#define LOGNAMESIZE (MAXLOGNAME-1)
55228753Smm#endif
56228753Smm
57228753Smmstatic          int randinit;
58228753Smmstatic		char locked_str[] = "*LOCKED*";
59228753Smm
60228753Smmstatic int      print_user(struct passwd * pwd, int pretty, int v7);
61228753Smmstatic uid_t    pw_uidpolicy(struct userconf * cnf, struct cargs * args);
62228753Smmstatic uid_t    pw_gidpolicy(struct userconf * cnf, struct cargs * args, char *nam, gid_t prefer);
63228753Smmstatic time_t   pw_pwdpolicy(struct userconf * cnf, struct cargs * args);
64228753Smmstatic time_t   pw_exppolicy(struct userconf * cnf, struct cargs * args);
65228753Smmstatic char    *pw_homepolicy(struct userconf * cnf, struct cargs * args, char const * user);
66228753Smmstatic char    *pw_shellpolicy(struct userconf * cnf, struct cargs * args, char *newshell);
67228753Smmstatic char    *pw_password(struct userconf * cnf, struct cargs * args, char const * user);
68228753Smmstatic char    *shell_path(char const * path, char *shells[], char *sh);
69228753Smmstatic void     rmat(uid_t uid);
70228753Smmstatic void	rmskey(char const * name);
71228753Smm
72228753Smm/*-
73228753Smm * -C config      configuration file
74228753Smm * -q             quiet operation
75228753Smm * -n name        login name
76228753Smm * -u uid         user id
77228753Smm * -c comment     user name/comment
78228753Smm * -d directory   home directory
79228753Smm * -e date        account expiry date
80228753Smm * -p date        password expiry date
81228753Smm * -g grp         primary group
82228753Smm * -G grp1,grp2   additional groups
83228753Smm * -m [ -k dir ]  create and set up home
84228753Smm * -s shell       name of login shell
85228753Smm * -o             duplicate uid ok
86228753Smm * -L class       user class
87228753Smm * -l name        new login name
88228753Smm * -h fd          password filehandle
89228753Smm * -F             force print or add
90228753Smm *   Setting defaults:
91228753Smm * -D             set user defaults
92228753Smm * -b dir         default home root dir
93228753Smm * -e period      default expiry period
94228753Smm * -p period      default password change period
95228753Smm * -g group       default group
96228753Smm * -G             grp1,grp2.. default additional groups
97228753Smm * -L class       default login class
98228753Smm * -k dir         default home skeleton
99228753Smm * -s shell       default shell
100228753Smm * -w method      default password method
101228753Smm */
102228753Smm
103228753Smmint
104228753Smmpw_user(struct userconf * cnf, int mode, struct cargs * args)
105228753Smm{
106228753Smm	int	        rc, edited = 0;
107228753Smm	char           *p = NULL;
108228753Smm	char					 *passtmp;
109228753Smm	struct carg    *a_name;
110228753Smm	struct carg    *a_uid;
111228753Smm	struct carg    *arg;
112228753Smm	struct passwd  *pwd = NULL;
113228753Smm	struct group   *grp;
114228753Smm	struct stat     st;
115228753Smm	char            line[_PASSWORD_LEN+1];
116228753Smm
117228753Smm	static struct passwd fakeuser =
118228753Smm	{
119228753Smm		NULL,
120228753Smm		"*",
121228753Smm		-1,
122228753Smm		-1,
123228753Smm		0,
124228753Smm		"",
125228753Smm		"User &",
126228753Smm		"/nonexistent",
127228753Smm		"/bin/sh",
128228753Smm		0
129228753Smm#if defined(__FreeBSD__)
130228753Smm		,0
131228753Smm#endif
132228753Smm	};
133228753Smm
134228753Smm
135228753Smm	/*
136228753Smm	 * With M_NEXT, we only need to return the
137228753Smm	 * next uid to stdout
138228753Smm	 */
139228753Smm	if (mode == M_NEXT)
140228753Smm	{
141228753Smm		uid_t next = pw_uidpolicy(cnf, args);
142228753Smm		if (getarg(args, 'q'))
143228753Smm			return next;
144228753Smm		printf("%ld:", (long)next);
145228753Smm		pw_group(cnf, mode, args);
146228753Smm		return EXIT_SUCCESS;
147228753Smm	}
148228753Smm
149228753Smm	/*
150228753Smm	 * We can do all of the common legwork here
151228753Smm	 */
152228753Smm
153228753Smm	if ((arg = getarg(args, 'b')) != NULL) {
154228753Smm		cnf->home = arg->val;
155228753Smm	}
156228753Smm
157228753Smm	/*
158228753Smm	 * If we'll need to use it or we're updating it,
159228753Smm	 * then create the base home directory if necessary
160228753Smm	 */
161228753Smm	if (arg != NULL || getarg(args, 'm') != NULL) {
162228753Smm		int	l = strlen(cnf->home);
163228753Smm
164228753Smm		if (l > 1 && cnf->home[l-1] == '/')	/* Shave off any trailing path delimiter */
165228753Smm			cnf->home[--l] = '\0';
166228753Smm
167228753Smm		if (l < 2 || *cnf->home != '/')		/* Check for absolute path name */
168228753Smm			errx(EX_DATAERR, "invalid base directory for home '%s'", cnf->home);
169228753Smm
170228753Smm		if (stat(cnf->home, &st) == -1) {
171228753Smm			char	dbuf[MAXPATHLEN];
172228753Smm
173228753Smm			/*
174228753Smm			 * This is a kludge especially for Joerg :)
175228753Smm			 * If the home directory would be created in the root partition, then
176228753Smm			 * we really create it under /usr which is likely to have more space.
177228753Smm			 * But we create a symlink from cnf->home -> "/usr" -> cnf->home
178228753Smm			 */
179228753Smm			if (strchr(cnf->home+1, '/') == NULL) {
180228753Smm				strcpy(dbuf, "/usr");
181228753Smm				strncat(dbuf, cnf->home, MAXPATHLEN-5);
182228753Smm				if (mkdir(dbuf, 0755) != -1 || errno == EEXIST) {
183228753Smm					chown(dbuf, 0, 0);
184228753Smm					symlink(dbuf, cnf->home);
185228753Smm				}
186228753Smm				/* If this falls, fall back to old method */
187228753Smm			}
188228753Smm			p = strncpy(dbuf, cnf->home, sizeof dbuf);
189228753Smm			dbuf[MAXPATHLEN-1] = '\0';
190228753Smm			if (stat(dbuf, &st) == -1) {
191228753Smm				while ((p = strchr(++p, '/')) != NULL) {
192228753Smm					*p = '\0';
193228753Smm					if (stat(dbuf, &st) == -1) {
194228753Smm						if (mkdir(dbuf, 0755) == -1)
195228753Smm							goto direrr;
196228753Smm						chown(dbuf, 0, 0);
197228753Smm					} else if (!S_ISDIR(st.st_mode))
198228753Smm						errx(EX_OSFILE, "'%s' (root home parent) is not a directory", dbuf);
199228753Smm					*p = '/';
200228753Smm				}
201228753Smm			}
202228753Smm			if (stat(dbuf, &st) == -1) {
203228753Smm				if (mkdir(dbuf, 0755) == -1) {
204228753Smm				direrr:	err(EX_OSFILE, "mkdir '%s'", dbuf);
205228753Smm				}
206228753Smm				chown(dbuf, 0, 0);
207228753Smm			}
208228753Smm		} else if (!S_ISDIR(st.st_mode))
209228753Smm			errx(EX_OSFILE, "root home `%s' is not a directory", cnf->home);
210228753Smm	}
211228753Smm
212228753Smm	if ((arg = getarg(args, 'e')) != NULL)
213228753Smm		cnf->expire_days = atoi(arg->val);
214228753Smm
215228753Smm	if ((arg = getarg(args, 'y')) != NULL)
216228753Smm		cnf->nispasswd = arg->val;
217228753Smm
218228753Smm	if ((arg = getarg(args, 'p')) != NULL && arg->val)
219228753Smm		cnf->password_days = atoi(arg->val);
220228753Smm
221228753Smm	if ((arg = getarg(args, 'g')) != NULL) {
222		p = arg->val;
223		if ((grp = GETGRNAM(p)) == NULL) {
224			if (!isdigit((unsigned char)*p) || (grp = GETGRGID((gid_t) atoi(p))) == NULL)
225				errx(EX_NOUSER, "group `%s' does not exist", p);
226		}
227		cnf->default_group = newstr(grp->gr_name);
228	}
229	if ((arg = getarg(args, 'L')) != NULL)
230		cnf->default_class = pw_checkname((u_char *)arg->val, 0);
231
232	if ((arg = getarg(args, 'G')) != NULL && arg->val) {
233		int i = 0;
234
235		for (p = strtok(arg->val, ", \t"); p != NULL; p = strtok(NULL, ", \t")) {
236			if ((grp = GETGRNAM(p)) == NULL) {
237				if (!isdigit((unsigned char)*p) || (grp = GETGRGID((gid_t) atoi(p))) == NULL)
238					errx(EX_NOUSER, "group `%s' does not exist", p);
239			}
240			if (extendarray(&cnf->groups, &cnf->numgroups, i + 2) != -1)
241				cnf->groups[i++] = newstr(grp->gr_name);
242		}
243		while (i < cnf->numgroups)
244			cnf->groups[i++] = NULL;
245	}
246
247	if ((arg = getarg(args, 'k')) != NULL) {
248		if (stat(cnf->dotdir = arg->val, &st) == -1 || !S_ISDIR(st.st_mode))
249			errx(EX_OSFILE, "skeleton `%s' is not a directory or does not exist", cnf->dotdir);
250	}
251
252	if ((arg = getarg(args, 's')) != NULL)
253		cnf->shell_default = arg->val;
254
255	if (mode == M_ADD && getarg(args, 'D')) {
256		if (getarg(args, 'n') != NULL)
257			errx(EX_DATAERR, "can't combine `-D' with `-n name'");
258		if ((arg = getarg(args, 'u')) != NULL && (p = strtok(arg->val, ", \t")) != NULL) {
259			if ((cnf->min_uid = (uid_t) atoi(p)) == 0)
260				cnf->min_uid = 1000;
261			if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_uid = (uid_t) atoi(p)) < cnf->min_uid)
262				cnf->max_uid = 32000;
263		}
264		if ((arg = getarg(args, 'i')) != NULL && (p = strtok(arg->val, ", \t")) != NULL) {
265			if ((cnf->min_gid = (gid_t) atoi(p)) == 0)
266				cnf->min_gid = 1000;
267			if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_gid = (gid_t) atoi(p)) < cnf->min_gid)
268				cnf->max_gid = 32000;
269		}
270		if ((arg = getarg(args, 'w')) != NULL)
271			cnf->default_password = boolean_val(arg->val, cnf->default_password);
272
273		arg = getarg(args, 'C');
274		if (write_userconfig(arg ? arg->val : NULL))
275			return EXIT_SUCCESS;
276		warn("config update");
277		return EX_IOERR;
278	}
279
280	if (mode == M_PRINT && getarg(args, 'a')) {
281		int             pretty = getarg(args, 'P') != NULL;
282		int		v7 = getarg(args, '7') != NULL;
283
284		SETPWENT();
285		while ((pwd = GETPWENT()) != NULL)
286			print_user(pwd, pretty, v7);
287		ENDPWENT();
288		return EXIT_SUCCESS;
289	}
290
291	if ((a_name = getarg(args, 'n')) != NULL)
292		pwd = GETPWNAM(pw_checkname((u_char *)a_name->val, 0));
293	a_uid = getarg(args, 'u');
294
295	if (a_uid == NULL) {
296		if (a_name == NULL)
297			errx(EX_DATAERR, "user name or id required");
298
299		/*
300		 * Determine whether 'n' switch is name or uid - we don't
301		 * really don't really care which we have, but we need to
302		 * know.
303		 */
304		if (mode != M_ADD && pwd == NULL
305		    && strspn(a_name->val, "0123456789") == strlen(a_name->val)
306		    && atoi(a_name->val) > 0) {	/* Assume uid */
307			(a_uid = a_name)->ch = 'u';
308			a_name = NULL;
309		}
310	}
311
312	/*
313	 * Update, delete & print require that the user exists
314	 */
315	if (mode == M_UPDATE || mode == M_DELETE ||
316	    mode == M_PRINT  || mode == M_LOCK   || mode == M_UNLOCK) {
317
318		if (a_name == NULL && pwd == NULL)	/* Try harder */
319			pwd = GETPWUID(atoi(a_uid->val));
320
321		if (pwd == NULL) {
322			if (mode == M_PRINT && getarg(args, 'F')) {
323				fakeuser.pw_name = a_name ? a_name->val : "nouser";
324				fakeuser.pw_uid = a_uid ? (uid_t) atol(a_uid->val) : -1;
325				return print_user(&fakeuser,
326						  getarg(args, 'P') != NULL,
327						  getarg(args, '7') != NULL);
328			}
329			if (a_name == NULL)
330				errx(EX_NOUSER, "no such uid `%s'", a_uid->val);
331			errx(EX_NOUSER, "no such user `%s'", a_name->val);
332		}
333
334		if (a_name == NULL)	/* May be needed later */
335			a_name = addarg(args, 'n', newstr(pwd->pw_name));
336
337		/*
338		 * The M_LOCK and M_UNLOCK functions simply add or remove
339		 * a "*LOCKED*" prefix from in front of the password to
340		 * prevent it decoding correctly, and therefore prevents
341		 * access. Of course, this only prevents access via
342		 * password authentication (not ssh, kerberos or any
343		 * other method that does not use the UNIX password) but
344		 * that is a known limitation.
345		 */
346
347		if (mode == M_LOCK) {
348			if (strncmp(pwd->pw_passwd, locked_str, sizeof(locked_str)-1) == 0)
349				errx(EX_DATAERR, "user '%s' is already locked", pwd->pw_name);
350			passtmp = malloc(strlen(pwd->pw_passwd) + sizeof(locked_str));
351			if (passtmp == NULL)	/* disaster */
352				errx(EX_UNAVAILABLE, "out of memory");
353			strcpy(passtmp, locked_str);
354			strcat(passtmp, pwd->pw_passwd);
355			pwd->pw_passwd = passtmp;
356			edited = 1;
357		} else if (mode == M_UNLOCK) {
358			if (strncmp(pwd->pw_passwd, locked_str, sizeof(locked_str)-1) != 0)
359				errx(EX_DATAERR, "user '%s' is not locked", pwd->pw_name);
360			pwd->pw_passwd += sizeof(locked_str)-1;
361			edited = 1;
362		} else if (mode == M_DELETE) {
363			/*
364			 * Handle deletions now
365			 */
366			char            file[MAXPATHLEN];
367			char            home[MAXPATHLEN];
368			uid_t           uid = pwd->pw_uid;
369
370			if (strcmp(pwd->pw_name, "root") == 0)
371				errx(EX_DATAERR, "cannot remove user 'root'");
372
373			if (!PWALTDIR()) {
374				/*
375				 * Remove skey record from /etc/skeykeys
376		        	 */
377
378				rmskey(pwd->pw_name);
379
380				/*
381				 * Remove crontabs
382				 */
383				sprintf(file, "/var/cron/tabs/%s", pwd->pw_name);
384				if (access(file, F_OK) == 0) {
385					sprintf(file, "crontab -u %s -r", pwd->pw_name);
386					system(file);
387				}
388			}
389			/*
390			 * Save these for later, since contents of pwd may be
391			 * invalidated by deletion
392			 */
393			sprintf(file, "%s/%s", _PATH_MAILDIR, pwd->pw_name);
394			strncpy(home, pwd->pw_dir, sizeof home);
395			home[sizeof home - 1] = '\0';
396
397			rc = delpwent(pwd);
398			if (rc == -1)
399				err(EX_IOERR, "user '%s' does not exist", pwd->pw_name);
400			else if (rc != 0) {
401				warn("passwd update");
402				return EX_IOERR;
403			}
404
405			if (cnf->nispasswd && *cnf->nispasswd=='/') {
406				rc = delnispwent(cnf->nispasswd, a_name->val);
407				if (rc == -1)
408					warnx("WARNING: user '%s' does not exist in NIS passwd", pwd->pw_name);
409				else if (rc != 0)
410					warn("WARNING: NIS passwd update");
411				/* non-fatal */
412			}
413
414			editgroups(a_name->val, NULL);
415
416			pw_log(cnf, mode, W_USER, "%s(%ld) account removed", a_name->val, (long) uid);
417
418			if (!PWALTDIR()) {
419				/*
420				 * Remove mail file
421				 */
422				remove(file);
423
424				/*
425				 * Remove at jobs
426				 */
427				if (getpwuid(uid) == NULL)
428					rmat(uid);
429
430				/*
431				 * Remove home directory and contents
432				 */
433				if (getarg(args, 'r') != NULL && *home == '/' && getpwuid(uid) == NULL) {
434					if (stat(home, &st) != -1) {
435						rm_r(home, uid);
436						pw_log(cnf, mode, W_USER, "%s(%ld) home '%s' %sremoved",
437						       a_name->val, (long) uid, home,
438						       stat(home, &st) == -1 ? "" : "not completely ");
439					}
440				}
441			}
442			return EXIT_SUCCESS;
443		} else if (mode == M_PRINT)
444			return print_user(pwd,
445					  getarg(args, 'P') != NULL,
446					  getarg(args, '7') != NULL);
447
448		/*
449		 * The rest is edit code
450		 */
451		if ((arg = getarg(args, 'l')) != NULL) {
452			if (strcmp(pwd->pw_name, "root") == 0)
453				errx(EX_DATAERR, "can't rename `root' account");
454			pwd->pw_name = pw_checkname((u_char *)arg->val, 0);
455			edited = 1;
456		}
457
458		if ((arg = getarg(args, 'u')) != NULL && isdigit((unsigned char)*arg->val)) {
459			pwd->pw_uid = (uid_t) atol(arg->val);
460			edited = 1;
461			if (pwd->pw_uid != 0 && strcmp(pwd->pw_name, "root") == 0)
462				errx(EX_DATAERR, "can't change uid of `root' account");
463			if (pwd->pw_uid == 0 && strcmp(pwd->pw_name, "root") != 0)
464				warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd->pw_name);
465		}
466
467		if ((arg = getarg(args, 'g')) != NULL && pwd->pw_uid != 0) {	/* Already checked this */
468			gid_t newgid = (gid_t) GETGRNAM(cnf->default_group)->gr_gid;
469			if (newgid != pwd->pw_gid) {
470				edited = 1;
471				pwd->pw_gid = newgid;
472			}
473		}
474
475		if ((arg = getarg(args, 'p')) != NULL) {
476			if (*arg->val == '\0' || strcmp(arg->val, "0") == 0) {
477				if (pwd->pw_change != 0) {
478					pwd->pw_change = 0;
479					edited = 1;
480				}
481			}
482			else {
483				time_t          now = time(NULL);
484				time_t          expire = parse_date(now, arg->val);
485
486				if (now == expire)
487					errx(EX_DATAERR, "invalid password change date `%s'", arg->val);
488				if (pwd->pw_change != expire) {
489					pwd->pw_change = expire;
490					edited = 1;
491				}
492			}
493		}
494
495		if ((arg = getarg(args, 'e')) != NULL) {
496			if (*arg->val == '\0' || strcmp(arg->val, "0") == 0) {
497				if (pwd->pw_expire != 0) {
498					pwd->pw_expire = 0;
499					edited = 1;
500				}
501			}
502			else {
503				time_t          now = time(NULL);
504				time_t          expire = parse_date(now, arg->val);
505
506				if (now == expire)
507					errx(EX_DATAERR, "invalid account expiry date `%s'", arg->val);
508				if (pwd->pw_expire != expire) {
509					pwd->pw_expire = expire;
510					edited = 1;
511				}
512			}
513		}
514
515		if ((arg = getarg(args, 's')) != NULL) {
516			char *shell = shell_path(cnf->shelldir, cnf->shells, arg->val);
517			if (shell == NULL)
518				shell = "";
519			if (strcmp(shell, pwd->pw_shell) != 0) {
520				pwd->pw_shell = shell;
521				edited = 1;
522			}
523		}
524
525		if (getarg(args, 'L')) {
526			if (cnf->default_class == NULL)
527				cnf->default_class = "";
528			if (strcmp(pwd->pw_class, cnf->default_class) != 0) {
529				pwd->pw_class = cnf->default_class;
530				edited = 1;
531			}
532		}
533
534		if ((arg  = getarg(args, 'd')) != NULL) {
535			if (stat(pwd->pw_dir = arg->val, &st) == -1) {
536				if (getarg(args, 'm') == NULL && strcmp(pwd->pw_dir, "/nonexistent") != 0)
537				  warnx("WARNING: home `%s' does not exist", pwd->pw_dir);
538			} else if (!S_ISDIR(st.st_mode))
539				warnx("WARNING: home `%s' is not a directory", pwd->pw_dir);
540		}
541
542		if ((arg = getarg(args, 'w')) != NULL && getarg(args, 'h') == NULL) {
543			pwd->pw_passwd = pw_password(cnf, args, pwd->pw_name);
544			edited = 1;
545		}
546
547	} else {
548
549		/*
550		 * Add code
551		 */
552
553		if (a_name == NULL)	/* Required */
554			errx(EX_DATAERR, "login name required");
555		else if ((pwd = GETPWNAM(a_name->val)) != NULL)	/* Exists */
556			errx(EX_DATAERR, "login name `%s' already exists", a_name->val);
557
558		/*
559		 * Now, set up defaults for a new user
560		 */
561		pwd = &fakeuser;
562		pwd->pw_name = a_name->val;
563		pwd->pw_class = cnf->default_class ? cnf->default_class : "";
564		pwd->pw_passwd = pw_password(cnf, args, pwd->pw_name);
565		pwd->pw_uid = pw_uidpolicy(cnf, args);
566		pwd->pw_gid = pw_gidpolicy(cnf, args, pwd->pw_name, (gid_t) pwd->pw_uid);
567		pwd->pw_change = pw_pwdpolicy(cnf, args);
568		pwd->pw_expire = pw_exppolicy(cnf, args);
569		pwd->pw_dir = pw_homepolicy(cnf, args, pwd->pw_name);
570		pwd->pw_shell = pw_shellpolicy(cnf, args, NULL);
571		edited = 1;
572
573		if (pwd->pw_uid == 0 && strcmp(pwd->pw_name, "root") != 0)
574			warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd->pw_name);
575	}
576
577	/*
578	 * Shared add/edit code
579	 */
580	if ((arg = getarg(args, 'c')) != NULL) {
581		char	*gecos = pw_checkname((u_char *)arg->val, 1);
582		if (strcmp(pwd->pw_gecos, gecos) != 0) {
583			pwd->pw_gecos = gecos;
584			edited = 1;
585		}
586	}
587
588	if ((arg = getarg(args, 'h')) != NULL) {
589		if (strcmp(arg->val, "-") == 0)
590			pwd->pw_passwd = "*";	/* No access */
591		else {
592			int             fd = atoi(arg->val);
593			int             b;
594			int             istty = isatty(fd);
595			struct termios  t;
596
597			if (istty) {
598				if (tcgetattr(fd, &t) == -1)
599					istty = 0;
600				else {
601					struct termios  n = t;
602
603					/* Disable echo */
604					n.c_lflag &= ~(ECHO);
605					tcsetattr(fd, TCSANOW, &n);
606					printf("%sassword for user %s:", (mode == M_UPDATE) ? "New p" : "P", pwd->pw_name);
607					fflush(stdout);
608				}
609			}
610			b = read(fd, line, sizeof(line) - 1);
611			if (istty) {	/* Restore state */
612				tcsetattr(fd, TCSANOW, &t);
613				fputc('\n', stdout);
614				fflush(stdout);
615			}
616			if (b < 0) {
617				warn("-h file descriptor");
618				return EX_IOERR;
619			}
620			line[b] = '\0';
621			if ((p = strpbrk(line, " \t\r\n")) != NULL)
622				*p = '\0';
623			if (!*line)
624				errx(EX_DATAERR, "empty password read on file descriptor %d", fd);
625			pwd->pw_passwd = pw_pwcrypt(line);
626			edited = 1;
627		}
628	}
629
630	/*
631	 * Special case: -N only displays & exits
632	 */
633	if (getarg(args, 'N') != NULL)
634		return print_user(pwd,
635				  getarg(args, 'P') != NULL,
636				  getarg(args, '7') != NULL);
637
638	if (mode == M_ADD) {
639		edited = 1;	/* Always */
640		rc = addpwent(pwd);
641		if (rc == -1) {
642			warnx("user '%s' already exists", pwd->pw_name);
643			return EX_IOERR;
644		} else if (rc != 0) {
645			warn("passwd file update");
646			return EX_IOERR;
647		}
648		if (cnf->nispasswd && *cnf->nispasswd=='/') {
649			rc = addnispwent(cnf->nispasswd, pwd);
650			if (rc == -1)
651				warnx("User '%s' already exists in NIS passwd", pwd->pw_name);
652			else
653				warn("NIS passwd update");
654			/* NOTE: we treat NIS-only update errors as non-fatal */
655		}
656	} else if (mode == M_UPDATE || mode == M_LOCK || mode == M_UNLOCK) {
657		if (edited) {	/* Only updated this if required */
658			rc = chgpwent(a_name->val, pwd);
659			if (rc == -1) {
660				warnx("user '%s' does not exist (NIS?)", pwd->pw_name);
661				return EX_IOERR;
662			} else if (rc != 0) {
663				warn("passwd file update");
664				return EX_IOERR;
665			}
666			if ( cnf->nispasswd && *cnf->nispasswd=='/') {
667				rc = chgnispwent(cnf->nispasswd, a_name->val, pwd);
668				if (rc == -1)
669					warn("User '%s' not found in NIS passwd", pwd->pw_name);
670				else
671					warn("NIS passwd update");
672				/* NOTE: NIS-only update errors are not fatal */
673			}
674		}
675	}
676
677	/*
678	 * Ok, user is created or changed - now edit group file
679	 */
680
681	if (mode == M_ADD || getarg(args, 'G') != NULL)
682		editgroups(pwd->pw_name, cnf->groups);
683
684	/* go get a current version of pwd */
685	pwd = GETPWNAM(a_name->val);
686	if (pwd == NULL) {
687		/* This will fail when we rename, so special case that */
688		if (mode == M_UPDATE && (arg = getarg(args, 'l')) != NULL) {
689			a_name->val = arg->val;		/* update new name */
690			pwd = GETPWNAM(a_name->val);	/* refetch renamed rec */
691		}
692	}
693	if (pwd == NULL)	/* can't go on without this */
694		errx(EX_NOUSER, "user '%s' disappeared during update", a_name->val);
695
696	grp = GETGRGID(pwd->pw_gid);
697	pw_log(cnf, mode, W_USER, "%s(%ld):%s(%d):%s:%s:%s",
698	       pwd->pw_name, (long) pwd->pw_uid,
699	    grp ? grp->gr_name : "unknown", (long) (grp ? grp->gr_gid : -1),
700	       pwd->pw_gecos, pwd->pw_dir, pwd->pw_shell);
701
702	/*
703	 * If adding, let's touch and chown the user's mail file. This is not
704	 * strictly necessary under BSD with a 0755 maildir but it also
705	 * doesn't hurt anything to create the empty mailfile
706	 */
707	if (mode == M_ADD) {
708		FILE           *fp;
709
710		if (!PWALTDIR()) {
711			sprintf(line, "%s/%s", _PATH_MAILDIR, pwd->pw_name);
712			close(open(line, O_RDWR | O_CREAT, 0600));	/* Preserve contents &
713									 * mtime */
714			chown(line, pwd->pw_uid, pwd->pw_gid);
715
716			/*
717			 * Send mail to the new user as well, if we are asked to
718			 */
719			if (cnf->newmail && *cnf->newmail && (fp = fopen(cnf->newmail, "r")) != NULL) {
720				FILE           *pfp = popen(_PATH_SENDMAIL " -t", "w");
721
722				if (pfp == NULL)
723					warn("sendmail");
724				else {
725					fprintf(pfp, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd->pw_name);
726					while (fgets(line, sizeof(line), fp) != NULL) {
727						/* Do substitutions? */
728						fputs(line, pfp);
729					}
730					pclose(pfp);
731					pw_log(cnf, mode, W_USER, "%s(%ld) new user mail sent",
732					       pwd->pw_name, (long) pwd->pw_uid);
733				}
734				fclose(fp);
735			}
736		}
737	}
738
739	/*
740	 * Finally, let's create and populate the user's home directory. Note
741	 * that this also `works' for editing users if -m is used, but
742	 * existing files will *not* be overwritten.
743	 */
744	if (!PWALTDIR() && getarg(args, 'm') != NULL && pwd->pw_dir && *pwd->pw_dir == '/' && pwd->pw_dir[1]) {
745		copymkdir(pwd->pw_dir, cnf->dotdir, 0755, pwd->pw_uid, pwd->pw_gid);
746		pw_log(cnf, mode, W_USER, "%s(%ld) home %s made",
747		       pwd->pw_name, (long) pwd->pw_uid, pwd->pw_dir);
748	}
749
750	return EXIT_SUCCESS;
751}
752
753
754static          uid_t
755pw_uidpolicy(struct userconf * cnf, struct cargs * args)
756{
757	struct passwd  *pwd;
758	uid_t           uid = (uid_t) - 1;
759	struct carg    *a_uid = getarg(args, 'u');
760
761	/*
762	 * Check the given uid, if any
763	 */
764	if (a_uid != NULL) {
765		uid = (uid_t) atol(a_uid->val);
766
767		if ((pwd = GETPWUID(uid)) != NULL && getarg(args, 'o') == NULL)
768			errx(EX_DATAERR, "uid `%ld' has already been allocated", (long) pwd->pw_uid);
769	} else {
770		struct bitmap   bm;
771
772		/*
773		 * We need to allocate the next available uid under one of
774		 * two policies a) Grab the first unused uid b) Grab the
775		 * highest possible unused uid
776		 */
777		if (cnf->min_uid >= cnf->max_uid) {	/* Sanity
778							 * claus^H^H^H^Hheck */
779			cnf->min_uid = 1000;
780			cnf->max_uid = 32000;
781		}
782		bm = bm_alloc(cnf->max_uid - cnf->min_uid + 1);
783
784		/*
785		 * Now, let's fill the bitmap from the password file
786		 */
787		SETPWENT();
788		while ((pwd = GETPWENT()) != NULL)
789			if (pwd->pw_uid >= (uid_t) cnf->min_uid && pwd->pw_uid <= (uid_t) cnf->max_uid)
790				bm_setbit(&bm, pwd->pw_uid - cnf->min_uid);
791		ENDPWENT();
792
793		/*
794		 * Then apply the policy, with fallback to reuse if necessary
795		 */
796		if (cnf->reuse_uids || (uid = (uid_t) (bm_lastset(&bm) + cnf->min_uid + 1)) > cnf->max_uid)
797			uid = (uid_t) (bm_firstunset(&bm) + cnf->min_uid);
798
799		/*
800		 * Another sanity check
801		 */
802		if (uid < cnf->min_uid || uid > cnf->max_uid)
803			errx(EX_SOFTWARE, "unable to allocate a new uid - range fully used");
804		bm_dealloc(&bm);
805	}
806	return uid;
807}
808
809
810static          uid_t
811pw_gidpolicy(struct userconf * cnf, struct cargs * args, char *nam, gid_t prefer)
812{
813	struct group   *grp;
814	gid_t           gid = (uid_t) - 1;
815	struct carg    *a_gid = getarg(args, 'g');
816
817	/*
818	 * If no arg given, see if default can help out
819	 */
820	if (a_gid == NULL && cnf->default_group && *cnf->default_group)
821		a_gid = addarg(args, 'g', cnf->default_group);
822
823	/*
824	 * Check the given gid, if any
825	 */
826	SETGRENT();
827	if (a_gid != NULL) {
828		if ((grp = GETGRNAM(a_gid->val)) == NULL) {
829			gid = (gid_t) atol(a_gid->val);
830			if ((gid == 0 && !isdigit((unsigned char)*a_gid->val)) || (grp = GETGRGID(gid)) == NULL)
831				errx(EX_NOUSER, "group `%s' is not defined", a_gid->val);
832		}
833		gid = grp->gr_gid;
834	} else if ((grp = GETGRNAM(nam)) != NULL && grp->gr_mem[0] == NULL) {
835		gid = grp->gr_gid;  /* Already created? Use it anyway... */
836	} else {
837		struct cargs    grpargs;
838		char            tmp[32];
839
840		LIST_INIT(&grpargs);
841		addarg(&grpargs, 'n', nam);
842
843		/*
844		 * We need to auto-create a group with the user's name. We
845		 * can send all the appropriate output to our sister routine
846		 * bit first see if we can create a group with gid==uid so we
847		 * can keep the user and group ids in sync. We purposely do
848		 * NOT check the gid range if we can force the sync. If the
849		 * user's name dups an existing group, then the group add
850		 * function will happily handle that case for us and exit.
851		 */
852		if (GETGRGID(prefer) == NULL) {
853			sprintf(tmp, "%lu", (unsigned long) prefer);
854			addarg(&grpargs, 'g', tmp);
855		}
856		if (getarg(args, 'N'))
857		{
858			addarg(&grpargs, 'N', NULL);
859			addarg(&grpargs, 'q', NULL);
860			gid = pw_group(cnf, M_NEXT, &grpargs);
861		}
862		else
863		{
864			pw_group(cnf, M_ADD, &grpargs);
865			if ((grp = GETGRNAM(nam)) != NULL)
866				gid = grp->gr_gid;
867		}
868		a_gid = grpargs.lh_first;
869		while (a_gid != NULL) {
870			struct carg    *t = a_gid->list.le_next;
871			LIST_REMOVE(a_gid, list);
872			a_gid = t;
873		}
874	}
875	ENDGRENT();
876	return gid;
877}
878
879
880static          time_t
881pw_pwdpolicy(struct userconf * cnf, struct cargs * args)
882{
883	time_t          result = 0;
884	time_t          now = time(NULL);
885	struct carg    *arg = getarg(args, 'p');
886
887	if (arg != NULL) {
888		if ((result = parse_date(now, arg->val)) == now)
889			errx(EX_DATAERR, "invalid date/time `%s'", arg->val);
890	} else if (cnf->password_days > 0)
891		result = now + ((long) cnf->password_days * 86400L);
892	return result;
893}
894
895
896static          time_t
897pw_exppolicy(struct userconf * cnf, struct cargs * args)
898{
899	time_t          result = 0;
900	time_t          now = time(NULL);
901	struct carg    *arg = getarg(args, 'e');
902
903	if (arg != NULL) {
904		if ((result = parse_date(now, arg->val)) == now)
905			errx(EX_DATAERR, "invalid date/time `%s'", arg->val);
906	} else if (cnf->expire_days > 0)
907		result = now + ((long) cnf->expire_days * 86400L);
908	return result;
909}
910
911
912static char    *
913pw_homepolicy(struct userconf * cnf, struct cargs * args, char const * user)
914{
915	struct carg    *arg = getarg(args, 'd');
916
917	if (arg)
918		return arg->val;
919	else {
920		static char     home[128];
921
922		if (cnf->home == NULL || *cnf->home == '\0')
923			errx(EX_CONFIG, "no base home directory set");
924		sprintf(home, "%s/%s", cnf->home, user);
925		return home;
926	}
927}
928
929static char    *
930shell_path(char const * path, char *shells[], char *sh)
931{
932	if (sh != NULL && (*sh == '/' || *sh == '\0'))
933		return sh;	/* specified full path or forced none */
934	else {
935		char           *p;
936		char            paths[_UC_MAXLINE];
937
938		/*
939		 * We need to search paths
940		 */
941		strncpy(paths, path, sizeof paths);
942		paths[sizeof paths - 1] = '\0';
943		for (p = strtok(paths, ": \t\r\n"); p != NULL; p = strtok(NULL, ": \t\r\n")) {
944			int             i;
945			static char     shellpath[256];
946
947			if (sh != NULL) {
948				sprintf(shellpath, "%s/%s", p, sh);
949				if (access(shellpath, X_OK) == 0)
950					return shellpath;
951			} else
952				for (i = 0; i < _UC_MAXSHELLS && shells[i] != NULL; i++) {
953					sprintf(shellpath, "%s/%s", p, shells[i]);
954					if (access(shellpath, X_OK) == 0)
955						return shellpath;
956				}
957		}
958		if (sh == NULL)
959			errx(EX_OSFILE, "can't find shell `%s' in shell paths", sh);
960		errx(EX_CONFIG, "no default shell available or defined");
961		return NULL;
962	}
963}
964
965
966static char    *
967pw_shellpolicy(struct userconf * cnf, struct cargs * args, char *newshell)
968{
969	char           *sh = newshell;
970	struct carg    *arg = getarg(args, 's');
971
972	if (newshell == NULL && arg != NULL)
973		sh = arg->val;
974	return shell_path(cnf->shelldir, cnf->shells, sh ? sh : cnf->shell_default);
975}
976
977static char const chars[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.";
978
979char           *
980pw_pwcrypt(char *password)
981{
982	int             i;
983	char            salt[12];
984
985	static char     buf[256];
986
987	/*
988	 * Calculate a salt value
989	 */
990	if (!randinit) {
991		randinit = 1;
992#ifdef __FreeBSD__
993		srandomdev();
994#else
995		srandom((unsigned long) (time(NULL) ^ getpid()));
996#endif
997	}
998	for (i = 0; i < 8; i++)
999		salt[i] = chars[random() % 63];
1000	salt[i] = '\0';
1001
1002	return strcpy(buf, crypt(password, salt));
1003}
1004
1005#if defined(USE_MD5RAND)
1006u_char *
1007pw_getrand(u_char *buf, int len)	/* cryptographically secure rng */
1008{
1009	int i;
1010	for (i=0;i<len;i+=16) {
1011		u_char ubuf[16];
1012
1013		MD5_CTX md5_ctx;
1014		struct timeval tv, tvo;
1015		struct rusage ru;
1016		int n=0;
1017		int t;
1018
1019		MD5Init (&md5_ctx);
1020		t=getpid();
1021		MD5Update (&md5_ctx, (u_char*)&t, sizeof t);
1022		t=getppid();
1023		MD5Update (&md5_ctx, (u_char*)&t, sizeof t);
1024		gettimeofday (&tvo, NULL);
1025		do {
1026			getrusage (RUSAGE_SELF, &ru);
1027			MD5Update (&md5_ctx, (u_char*)&ru, sizeof ru);
1028			gettimeofday (&tv, NULL);
1029			MD5Update (&md5_ctx, (u_char*)&tv, sizeof tv);
1030		} while (n++<20 || tv.tv_usec-tvo.tv_usec<100*1000);
1031		MD5Final (ubuf, &md5_ctx);
1032		memcpy(buf+i, ubuf, MIN(16, len-n));
1033	}
1034	return buf;
1035}
1036
1037#else	/* Portable version */
1038
1039static u_char *
1040pw_getrand(u_char *buf, int len)
1041{
1042	int i;
1043
1044	for (i = 0; i < len; i++) {
1045		unsigned long val = random();
1046		/* Use all bits in the random value */
1047		buf[i]=(u_char)((val >> 24) ^ (val >> 16) ^ (val >> 8) ^ val);
1048	}
1049	return buf;
1050}
1051
1052#endif
1053
1054static char    *
1055pw_password(struct userconf * cnf, struct cargs * args, char const * user)
1056{
1057	int             i, l;
1058	char            pwbuf[32];
1059	u_char		rndbuf[sizeof pwbuf];
1060
1061	switch (cnf->default_password) {
1062	case -1:		/* Random password */
1063		if (!randinit) {
1064			randinit = 1;
1065#ifdef __FreeBSD__
1066			srandomdev();
1067#else
1068			srandom((unsigned long) (time(NULL) ^ getpid()));
1069#endif
1070		}
1071		l = (random() % 8 + 8);	/* 8 - 16 chars */
1072		pw_getrand(rndbuf, l);
1073		for (i = 0; i < l; i++)
1074			pwbuf[i] = chars[rndbuf[i] % (sizeof(chars)-1)];
1075		pwbuf[i] = '\0';
1076
1077		/*
1078		 * We give this information back to the user
1079		 */
1080		if (getarg(args, 'h') == NULL && getarg(args, 'N') == NULL) {
1081			if (isatty(STDOUT_FILENO))
1082				printf("Password for '%s' is: ", user);
1083			printf("%s\n", pwbuf);
1084			fflush(stdout);
1085		}
1086		break;
1087
1088	case -2:		/* No password at all! */
1089		return "";
1090
1091	case 0:		/* No login - default */
1092	default:
1093		return "*";
1094
1095	case 1:		/* user's name */
1096		strncpy(pwbuf, user, sizeof pwbuf);
1097		pwbuf[sizeof pwbuf - 1] = '\0';
1098		break;
1099	}
1100	return pw_pwcrypt(pwbuf);
1101}
1102
1103
1104static int
1105print_user(struct passwd * pwd, int pretty, int v7)
1106{
1107	if (!pretty) {
1108		char            buf[_UC_MAXLINE];
1109
1110		fmtpwentry(buf, pwd, v7 ? PWF_PASSWD : PWF_STANDARD);
1111		fputs(buf, stdout);
1112	} else {
1113		int		j;
1114		char           *p;
1115		struct group   *grp = GETGRGID(pwd->pw_gid);
1116		char            uname[60] = "User &", office[60] = "[None]",
1117		                wphone[60] = "[None]", hphone[60] = "[None]";
1118		char		acexpire[32] = "[None]", pwexpire[32] = "[None]";
1119		struct tm *    tptr;
1120
1121		if ((p = strtok(pwd->pw_gecos, ",")) != NULL) {
1122			strncpy(uname, p, sizeof uname);
1123			uname[sizeof uname - 1] = '\0';
1124			if ((p = strtok(NULL, ",")) != NULL) {
1125				strncpy(office, p, sizeof office);
1126				office[sizeof office - 1] = '\0';
1127				if ((p = strtok(NULL, ",")) != NULL) {
1128					strncpy(wphone, p, sizeof wphone);
1129					wphone[sizeof wphone - 1] = '\0';
1130					if ((p = strtok(NULL, "")) != NULL) {
1131						strncpy(hphone, p, sizeof hphone);
1132						hphone[sizeof hphone - 1] = '\0';
1133					}
1134				}
1135			}
1136		}
1137		/*
1138		 * Handle '&' in gecos field
1139		 */
1140		if ((p = strchr(uname, '&')) != NULL) {
1141			int             l = strlen(pwd->pw_name);
1142			int             m = strlen(p);
1143
1144			memmove(p + l, p + 1, m);
1145			memmove(p, pwd->pw_name, l);
1146			*p = (char) toupper((unsigned char)*p);
1147		}
1148		if (pwd->pw_expire > (time_t)0 && (tptr = localtime(&pwd->pw_expire)) != NULL)
1149		  strftime(acexpire, sizeof acexpire, "%Ef %Y %X", tptr);
1150		if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL)
1151		  strftime(pwexpire, sizeof pwexpire, "%Ef %Y %X", tptr);
1152		printf("Login Name: %-15s   #%-12ld Group: %-15s   #%ld\n"
1153		       " Full Name: %s\n"
1154		       "      Home: %-26.26s      Class: %s\n"
1155		       "     Shell: %-26.26s     Office: %s\n"
1156		       "Work Phone: %-26.26s Home Phone: %s\n"
1157		       "Acc Expire: %-26.26s Pwd Expire: %s\n",
1158		       pwd->pw_name, (long) pwd->pw_uid,
1159		       grp ? grp->gr_name : "(invalid)", (long) pwd->pw_gid,
1160		       uname, pwd->pw_dir, pwd->pw_class,
1161		       pwd->pw_shell, office, wphone, hphone,
1162		       acexpire, pwexpire);
1163	        SETGRENT();
1164		j = 0;
1165		while ((grp=GETGRENT()) != NULL)
1166		{
1167			int     i = 0;
1168			while (grp->gr_mem[i] != NULL)
1169			{
1170				if (strcmp(grp->gr_mem[i], pwd->pw_name)==0)
1171				{
1172					printf(j++ == 0 ? "    Groups: %s" : ",%s", grp->gr_name);
1173					break;
1174				}
1175				++i;
1176			}
1177		}
1178		ENDGRENT();
1179		printf("%s", j ? "\n" : "");
1180	}
1181	return EXIT_SUCCESS;
1182}
1183
1184char    *
1185pw_checkname(u_char *name, int gecos)
1186{
1187	int             l = 0;
1188	char const     *notch = gecos ? ":!@" : " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1189
1190	while (name[l]) {
1191		if (strchr(notch, name[l]) != NULL || name[l] < ' ' || name[l] == 127 ||
1192			(!gecos && l==0 && name[l] == '-') ||	/* leading '-' */
1193			(!gecos && name[l] & 0x80))	/* 8-bit */
1194			errx(EX_DATAERR, (name[l] >= ' ' && name[l] < 127)
1195					    ? "invalid character `%c' in field"
1196					    : "invalid character 0x%02x in field",
1197					    name[l]);
1198		++l;
1199	}
1200	if (!gecos && l > LOGNAMESIZE)
1201		errx(EX_DATAERR, "name too long `%s'", name);
1202	return (char *)name;
1203}
1204
1205
1206static void
1207rmat(uid_t uid)
1208{
1209	DIR            *d = opendir("/var/at/jobs");
1210
1211	if (d != NULL) {
1212		struct dirent  *e;
1213
1214		while ((e = readdir(d)) != NULL) {
1215			struct stat     st;
1216
1217			if (strncmp(e->d_name, ".lock", 5) != 0 &&
1218			    stat(e->d_name, &st) == 0 &&
1219			    !S_ISDIR(st.st_mode) &&
1220			    st.st_uid == uid) {
1221				char            tmp[MAXPATHLEN];
1222
1223				sprintf(tmp, "/usr/bin/atrm %s", e->d_name);
1224				system(tmp);
1225			}
1226		}
1227		closedir(d);
1228	}
1229}
1230
1231static void
1232rmskey(char const * name)
1233{
1234	static const char etcskey[] = "/etc/skeykeys";
1235	FILE   *fp = fopen(etcskey, "r+");
1236
1237	if (fp != NULL) {
1238		char	tmp[1024];
1239		off_t	atofs = 0;
1240		int	length = strlen(name);
1241
1242		while (fgets(tmp, sizeof tmp, fp) != NULL) {
1243			if (strncmp(name, tmp, length) == 0 && tmp[length]==' ') {
1244				if (fseek(fp, atofs, SEEK_SET) == 0) {
1245					fwrite("#", 1, 1, fp);	/* Comment username out */
1246				}
1247				break;
1248			}
1249			atofs = ftell(fp);
1250		}
1251		/*
1252		 * If we got an error of any sort, don't update!
1253		 */
1254		fclose(fp);
1255	}
1256}
1257
1258