pw_user.c revision 284149
1/*-
2 * Copyright (C) 1996
3 *	David L. Nugent.  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 *
14 * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 */
27
28#ifndef lint
29static const char rcsid[] =
30  "$FreeBSD: head/usr.sbin/pw/pw_user.c 284149 2015-06-08 05:27:34Z bapt $";
31#endif /* not lint */
32
33#include <ctype.h>
34#include <err.h>
35#include <fcntl.h>
36#include <sys/param.h>
37#include <dirent.h>
38#include <paths.h>
39#include <termios.h>
40#include <sys/types.h>
41#include <sys/time.h>
42#include <sys/resource.h>
43#include <login_cap.h>
44#include <pwd.h>
45#include <grp.h>
46#include <libutil.h>
47#include "pw.h"
48#include "bitmap.h"
49
50#define LOGNAMESIZE (MAXLOGNAME-1)
51
52static		char locked_str[] = "*LOCKED*";
53
54static int	delete_user(struct userconf *cnf, struct passwd *pwd,
55		    char *name, int delete, int mode);
56static int	print_user(struct passwd * pwd);
57static uid_t    pw_uidpolicy(struct userconf * cnf, long id);
58static uid_t    pw_gidpolicy(struct cargs * args, char *nam, gid_t prefer);
59static time_t   pw_pwdpolicy(struct userconf * cnf, struct cargs * args);
60static time_t   pw_exppolicy(struct userconf * cnf, struct cargs * args);
61static char    *pw_homepolicy(struct userconf * cnf, struct cargs * args, char const * user);
62static char    *pw_shellpolicy(struct userconf * cnf, struct cargs * args, char *newshell);
63static char    *pw_password(struct userconf * cnf, struct cargs * args, char const * user);
64static char    *shell_path(char const * path, char *shells[], char *sh);
65static void     rmat(uid_t uid);
66static void     rmopie(char const * name);
67
68static void
69create_and_populate_homedir(int mode, struct passwd *pwd)
70{
71	char *homedir, *dotdir;
72	struct userconf *cnf = conf.userconf;
73
74	homedir = dotdir = NULL;
75
76	if (conf.rootdir[0] != '\0') {
77		asprintf(&homedir, "%s/%s", conf.rootdir, pwd->pw_dir);
78		if (homedir == NULL)
79			errx(EX_OSERR, "out of memory");
80		asprintf(&dotdir, "%s/%s", conf.rootdir, cnf->dotdir);
81	}
82
83	copymkdir(homedir ? homedir : pwd->pw_dir, dotdir ? dotdir: cnf->dotdir,
84	    cnf->homemode, pwd->pw_uid, pwd->pw_gid);
85	pw_log(cnf, mode, W_USER, "%s(%u) home %s made", pwd->pw_name,
86	    pwd->pw_uid, pwd->pw_dir);
87}
88
89/*-
90 * -C config      configuration file
91 * -q             quiet operation
92 * -n name        login name
93 * -u uid         user id
94 * -c comment     user name/comment
95 * -d directory   home directory
96 * -e date        account expiry date
97 * -p date        password expiry date
98 * -g grp         primary group
99 * -G grp1,grp2   additional groups
100 * -m [ -k dir ]  create and set up home
101 * -s shell       name of login shell
102 * -o             duplicate uid ok
103 * -L class       user class
104 * -l name        new login name
105 * -h fd          password filehandle
106 * -H fd          encrypted password filehandle
107 * -F             force print or add
108 *   Setting defaults:
109 * -D             set user defaults
110 * -b dir         default home root dir
111 * -e period      default expiry period
112 * -p period      default password change period
113 * -g group       default group
114 * -G             grp1,grp2.. default additional groups
115 * -L class       default login class
116 * -k dir         default home skeleton
117 * -s shell       default shell
118 * -w method      default password method
119 */
120
121int
122pw_user(int mode, char *name, long id, struct cargs * args)
123{
124	int	        rc, edited = 0;
125	char           *p = NULL;
126	char					 *passtmp;
127	struct carg    *arg;
128	struct passwd  *pwd = NULL;
129	struct group   *grp;
130	struct stat     st;
131	struct userconf	*cnf;
132	char            line[_PASSWORD_LEN+1];
133	char		path[MAXPATHLEN];
134	FILE	       *fp;
135	char *dmode_c;
136	void *set = NULL;
137
138	static struct passwd fakeuser =
139	{
140		NULL,
141		"*",
142		-1,
143		-1,
144		0,
145		"",
146		"User &",
147		"/nonexistent",
148		"/bin/sh",
149		0
150#if defined(__FreeBSD__)
151		,0
152#endif
153	};
154
155	cnf = conf.userconf;
156
157	/*
158	 * With M_NEXT, we only need to return the
159	 * next uid to stdout
160	 */
161	if (mode == M_NEXT)
162	{
163		uid_t next = pw_uidpolicy(cnf, id);
164		if (getarg(args, 'q'))
165			return next;
166		printf("%u:", next);
167		pw_group(mode, name, -1, args);
168		return EXIT_SUCCESS;
169	}
170
171	/*
172	 * We can do all of the common legwork here
173	 */
174
175	if ((arg = getarg(args, 'b')) != NULL) {
176		cnf->home = arg->val;
177	}
178
179	if ((arg = getarg(args, 'M')) != NULL) {
180		dmode_c = arg->val;
181		if ((set = setmode(dmode_c)) == NULL)
182			errx(EX_DATAERR, "invalid directory creation mode '%s'",
183			    dmode_c);
184		cnf->homemode = getmode(set, _DEF_DIRMODE);
185		free(set);
186	}
187
188	/*
189	 * If we'll need to use it or we're updating it,
190	 * then create the base home directory if necessary
191	 */
192	if (arg != NULL || getarg(args, 'm') != NULL) {
193		int	l = strlen(cnf->home);
194
195		if (l > 1 && cnf->home[l-1] == '/')	/* Shave off any trailing path delimiter */
196			cnf->home[--l] = '\0';
197
198		if (l < 2 || *cnf->home != '/')		/* Check for absolute path name */
199			errx(EX_DATAERR, "invalid base directory for home '%s'", cnf->home);
200
201		if (stat(cnf->home, &st) == -1) {
202			char	dbuf[MAXPATHLEN];
203
204			/*
205			 * This is a kludge especially for Joerg :)
206			 * If the home directory would be created in the root partition, then
207			 * we really create it under /usr which is likely to have more space.
208			 * But we create a symlink from cnf->home -> "/usr" -> cnf->home
209			 */
210			if (strchr(cnf->home+1, '/') == NULL) {
211				snprintf(dbuf, MAXPATHLEN, "/usr%s", cnf->home);
212				if (mkdir(dbuf, _DEF_DIRMODE) != -1 || errno == EEXIST) {
213					chown(dbuf, 0, 0);
214					/*
215					 * Skip first "/" and create symlink:
216					 * /home -> usr/home
217					 */
218					symlink(dbuf+1, cnf->home);
219				}
220				/* If this falls, fall back to old method */
221			}
222			strlcpy(dbuf, cnf->home, sizeof(dbuf));
223			p = dbuf;
224			if (stat(dbuf, &st) == -1) {
225				while ((p = strchr(p + 1, '/')) != NULL) {
226					*p = '\0';
227					if (stat(dbuf, &st) == -1) {
228						if (mkdir(dbuf, _DEF_DIRMODE) == -1)
229							goto direrr;
230						chown(dbuf, 0, 0);
231					} else if (!S_ISDIR(st.st_mode))
232						errx(EX_OSFILE, "'%s' (root home parent) is not a directory", dbuf);
233					*p = '/';
234				}
235			}
236			if (stat(dbuf, &st) == -1) {
237				if (mkdir(dbuf, _DEF_DIRMODE) == -1) {
238				direrr:	err(EX_OSFILE, "mkdir '%s'", dbuf);
239				}
240				chown(dbuf, 0, 0);
241			}
242		} else if (!S_ISDIR(st.st_mode))
243			errx(EX_OSFILE, "root home `%s' is not a directory", cnf->home);
244	}
245
246	if ((arg = getarg(args, 'e')) != NULL)
247		cnf->expire_days = atoi(arg->val);
248
249	if ((arg = getarg(args, 'y')) != NULL)
250		cnf->nispasswd = arg->val;
251
252	if ((arg = getarg(args, 'p')) != NULL && arg->val)
253		cnf->password_days = atoi(arg->val);
254
255	if ((arg = getarg(args, 'g')) != NULL) {
256		if (!*(p = arg->val))	/* Handle empty group list specially */
257			cnf->default_group = "";
258		else {
259			if ((grp = GETGRNAM(p)) == NULL) {
260				if (!isdigit((unsigned char)*p) || (grp = GETGRGID((gid_t) atoi(p))) == NULL)
261					errx(EX_NOUSER, "group `%s' does not exist", p);
262			}
263			cnf->default_group = newstr(grp->gr_name);
264		}
265	}
266	if ((arg = getarg(args, 'L')) != NULL)
267		cnf->default_class = pw_checkname(arg->val, 0);
268
269	if ((arg = getarg(args, 'G')) != NULL && arg->val) {
270		int i = 0;
271
272		for (p = strtok(arg->val, ", \t"); p != NULL; p = strtok(NULL, ", \t")) {
273			if ((grp = GETGRNAM(p)) == NULL) {
274				if (!isdigit((unsigned char)*p) || (grp = GETGRGID((gid_t) atoi(p))) == NULL)
275					errx(EX_NOUSER, "group `%s' does not exist", p);
276			}
277			if (extendarray(&cnf->groups, &cnf->numgroups, i + 2) != -1)
278				cnf->groups[i++] = newstr(grp->gr_name);
279		}
280		while (i < cnf->numgroups)
281			cnf->groups[i++] = NULL;
282	}
283
284	if ((arg = getarg(args, 'k')) != NULL) {
285		if (stat(cnf->dotdir = arg->val, &st) == -1 || !S_ISDIR(st.st_mode))
286			errx(EX_OSFILE, "skeleton `%s' is not a directory or does not exist", cnf->dotdir);
287	}
288
289	if ((arg = getarg(args, 's')) != NULL)
290		cnf->shell_default = arg->val;
291
292	if ((arg = getarg(args, 'w')) != NULL)
293		cnf->default_password = boolean_val(arg->val, cnf->default_password);
294	if (mode == M_ADD && getarg(args, 'D')) {
295		if (name != NULL)
296			errx(EX_DATAERR, "can't combine `-D' with `-n name'");
297		if ((arg = getarg(args, 'u')) != NULL && (p = strtok(arg->val, ", \t")) != NULL) {
298			if ((cnf->min_uid = (uid_t) atoi(p)) == 0)
299				cnf->min_uid = 1000;
300			if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_uid = (uid_t) atoi(p)) < cnf->min_uid)
301				cnf->max_uid = 32000;
302		}
303		if ((arg = getarg(args, 'i')) != NULL && (p = strtok(arg->val, ", \t")) != NULL) {
304			if ((cnf->min_gid = (gid_t) atoi(p)) == 0)
305				cnf->min_gid = 1000;
306			if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_gid = (gid_t) atoi(p)) < cnf->min_gid)
307				cnf->max_gid = 32000;
308		}
309
310		if (write_userconfig(conf.config))
311			return (EXIT_SUCCESS);
312		err(EX_IOERR, "config udpate");
313	}
314
315	if (mode == M_PRINT && getarg(args, 'a')) {
316		SETPWENT();
317		while ((pwd = GETPWENT()) != NULL)
318			print_user(pwd);
319		ENDPWENT();
320		return EXIT_SUCCESS;
321	}
322
323	if (name != NULL)
324		pwd = GETPWNAM(pw_checkname(name, 0));
325
326	if (id < 0 && name == NULL)
327		errx(EX_DATAERR, "user name or id required");
328
329	/*
330	 * Update, delete & print require that the user exists
331	 */
332	if (mode == M_UPDATE || mode == M_DELETE ||
333	    mode == M_PRINT  || mode == M_LOCK   || mode == M_UNLOCK) {
334
335		if (name == NULL && pwd == NULL)	/* Try harder */
336			pwd = GETPWUID(id);
337
338		if (pwd == NULL) {
339			if (mode == M_PRINT && getarg(args, 'F')) {
340				fakeuser.pw_name = name ? name : "nouser";
341				fakeuser.pw_uid = (uid_t) id;
342				return print_user(&fakeuser);
343			}
344			if (name == NULL)
345				errx(EX_NOUSER, "no such uid `%ld'", id);
346			errx(EX_NOUSER, "no such user `%s'", name);
347		}
348
349		if (name == NULL)
350			name = pwd->pw_name;
351
352		/*
353		 * The M_LOCK and M_UNLOCK functions simply add or remove
354		 * a "*LOCKED*" prefix from in front of the password to
355		 * prevent it decoding correctly, and therefore prevents
356		 * access. Of course, this only prevents access via
357		 * password authentication (not ssh, kerberos or any
358		 * other method that does not use the UNIX password) but
359		 * that is a known limitation.
360		 */
361
362		if (mode == M_LOCK) {
363			if (strncmp(pwd->pw_passwd, locked_str, sizeof(locked_str)-1) == 0)
364				errx(EX_DATAERR, "user '%s' is already locked", pwd->pw_name);
365			asprintf(&passtmp, "%s%s", locked_str, pwd->pw_passwd);
366			if (passtmp == NULL)	/* disaster */
367				errx(EX_UNAVAILABLE, "out of memory");
368			pwd->pw_passwd = passtmp;
369			edited = 1;
370		} else if (mode == M_UNLOCK) {
371			if (strncmp(pwd->pw_passwd, locked_str, sizeof(locked_str)-1) != 0)
372				errx(EX_DATAERR, "user '%s' is not locked", pwd->pw_name);
373			pwd->pw_passwd += sizeof(locked_str)-1;
374			edited = 1;
375		} else if (mode == M_DELETE)
376			return (delete_user(cnf, pwd, name,
377				    getarg(args, 'r') != NULL, mode));
378		else if (mode == M_PRINT)
379			return print_user(pwd);
380
381		/*
382		 * The rest is edit code
383		 */
384		if (conf.newname != NULL) {
385			if (strcmp(pwd->pw_name, "root") == 0)
386				errx(EX_DATAERR, "can't rename `root' account");
387			pwd->pw_name = pw_checkname(conf.newname, 0);
388			edited = 1;
389		}
390
391		if (id > 0 && isdigit((unsigned char)*arg->val)) {
392			pwd->pw_uid = (uid_t)id;
393			edited = 1;
394			if (pwd->pw_uid != 0 && strcmp(pwd->pw_name, "root") == 0)
395				errx(EX_DATAERR, "can't change uid of `root' account");
396			if (pwd->pw_uid == 0 && strcmp(pwd->pw_name, "root") != 0)
397				warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd->pw_name);
398		}
399
400		if ((arg = getarg(args, 'g')) != NULL && pwd->pw_uid != 0) {	/* Already checked this */
401			gid_t newgid = (gid_t) GETGRNAM(cnf->default_group)->gr_gid;
402			if (newgid != pwd->pw_gid) {
403				edited = 1;
404				pwd->pw_gid = newgid;
405			}
406		}
407
408		if ((arg = getarg(args, 'p')) != NULL) {
409			if (*arg->val == '\0' || strcmp(arg->val, "0") == 0) {
410				if (pwd->pw_change != 0) {
411					pwd->pw_change = 0;
412					edited = 1;
413				}
414			}
415			else {
416				time_t          now = time(NULL);
417				time_t          expire = parse_date(now, arg->val);
418
419				if (pwd->pw_change != expire) {
420					pwd->pw_change = expire;
421					edited = 1;
422				}
423			}
424		}
425
426		if ((arg = getarg(args, 'e')) != NULL) {
427			if (*arg->val == '\0' || strcmp(arg->val, "0") == 0) {
428				if (pwd->pw_expire != 0) {
429					pwd->pw_expire = 0;
430					edited = 1;
431				}
432			}
433			else {
434				time_t          now = time(NULL);
435				time_t          expire = parse_date(now, arg->val);
436
437				if (pwd->pw_expire != expire) {
438					pwd->pw_expire = expire;
439					edited = 1;
440				}
441			}
442		}
443
444		if ((arg = getarg(args, 's')) != NULL) {
445			char *shell = shell_path(cnf->shelldir, cnf->shells, arg->val);
446			if (shell == NULL)
447				shell = "";
448			if (strcmp(shell, pwd->pw_shell) != 0) {
449				pwd->pw_shell = shell;
450				edited = 1;
451			}
452		}
453
454		if (getarg(args, 'L')) {
455			if (cnf->default_class == NULL)
456				cnf->default_class = "";
457			if (strcmp(pwd->pw_class, cnf->default_class) != 0) {
458				pwd->pw_class = cnf->default_class;
459				edited = 1;
460			}
461		}
462
463		if ((arg  = getarg(args, 'd')) != NULL) {
464			if (strcmp(pwd->pw_dir, arg->val))
465				edited = 1;
466			if (stat(pwd->pw_dir = arg->val, &st) == -1) {
467				if (getarg(args, 'm') == NULL && strcmp(pwd->pw_dir, "/nonexistent") != 0)
468				  warnx("WARNING: home `%s' does not exist", pwd->pw_dir);
469			} else if (!S_ISDIR(st.st_mode))
470				warnx("WARNING: home `%s' is not a directory", pwd->pw_dir);
471		}
472
473		if ((arg = getarg(args, 'w')) != NULL &&
474		    getarg(args, 'h') == NULL && getarg(args, 'H') == NULL) {
475			login_cap_t *lc;
476
477			lc = login_getpwclass(pwd);
478			if (lc == NULL ||
479			    login_setcryptfmt(lc, "sha512", NULL) == NULL)
480				warn("setting crypt(3) format");
481			login_close(lc);
482			pwd->pw_passwd = pw_password(cnf, args, pwd->pw_name);
483			edited = 1;
484		}
485
486	} else {
487		login_cap_t *lc;
488
489		/*
490		 * Add code
491		 */
492
493		if (name == NULL)	/* Required */
494			errx(EX_DATAERR, "login name required");
495		else if ((pwd = GETPWNAM(name)) != NULL)	/* Exists */
496			errx(EX_DATAERR, "login name `%s' already exists", name);
497
498		/*
499		 * Now, set up defaults for a new user
500		 */
501		pwd = &fakeuser;
502		pwd->pw_name = name;
503		pwd->pw_class = cnf->default_class ? cnf->default_class : "";
504		pwd->pw_uid = pw_uidpolicy(cnf, id);
505		pwd->pw_gid = pw_gidpolicy(args, pwd->pw_name, (gid_t) pwd->pw_uid);
506		pwd->pw_change = pw_pwdpolicy(cnf, args);
507		pwd->pw_expire = pw_exppolicy(cnf, args);
508		pwd->pw_dir = pw_homepolicy(cnf, args, pwd->pw_name);
509		pwd->pw_shell = pw_shellpolicy(cnf, args, NULL);
510		lc = login_getpwclass(pwd);
511		if (lc == NULL || login_setcryptfmt(lc, "sha512", NULL) == NULL)
512			warn("setting crypt(3) format");
513		login_close(lc);
514		pwd->pw_passwd = pw_password(cnf, args, pwd->pw_name);
515		edited = 1;
516
517		if (pwd->pw_uid == 0 && strcmp(pwd->pw_name, "root") != 0)
518			warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd->pw_name);
519	}
520
521	/*
522	 * Shared add/edit code
523	 */
524	if ((arg = getarg(args, 'c')) != NULL) {
525		char	*gecos = pw_checkname(arg->val, 1);
526		if (strcmp(pwd->pw_gecos, gecos) != 0) {
527			pwd->pw_gecos = gecos;
528			edited = 1;
529		}
530	}
531
532	if ((arg = getarg(args, 'h')) != NULL ||
533	    (arg = getarg(args, 'H')) != NULL) {
534		if (strcmp(arg->val, "-") == 0) {
535			if (!pwd->pw_passwd || *pwd->pw_passwd != '*') {
536				pwd->pw_passwd = "*";	/* No access */
537				edited = 1;
538			}
539		} else {
540			int             fd = atoi(arg->val);
541			int		precrypt = (arg->ch == 'H');
542			int             b;
543			int             istty = isatty(fd);
544			struct termios  t;
545			login_cap_t	*lc;
546
547			if (istty) {
548				if (tcgetattr(fd, &t) == -1)
549					istty = 0;
550				else {
551					struct termios  n = t;
552
553					/* Disable echo */
554					n.c_lflag &= ~(ECHO);
555					tcsetattr(fd, TCSANOW, &n);
556					printf("%s%spassword for user %s:",
557					     (mode == M_UPDATE) ? "new " : "",
558					     precrypt ? "encrypted " : "",
559					     pwd->pw_name);
560					fflush(stdout);
561				}
562			}
563			b = read(fd, line, sizeof(line) - 1);
564			if (istty) {	/* Restore state */
565				tcsetattr(fd, TCSANOW, &t);
566				fputc('\n', stdout);
567				fflush(stdout);
568			}
569			if (b < 0)
570				err(EX_IOERR, "-%c file descriptor",
571				    precrypt ? 'H' : 'h');
572			line[b] = '\0';
573			if ((p = strpbrk(line, "\r\n")) != NULL)
574				*p = '\0';
575			if (!*line)
576				errx(EX_DATAERR, "empty password read on file descriptor %d", fd);
577			if (precrypt) {
578				if (strchr(line, ':') != NULL)
579					return EX_DATAERR;
580				pwd->pw_passwd = line;
581			} else {
582				lc = login_getpwclass(pwd);
583				if (lc == NULL ||
584				    login_setcryptfmt(lc, "sha512", NULL) == NULL)
585					warn("setting crypt(3) format");
586				login_close(lc);
587				pwd->pw_passwd = pw_pwcrypt(line);
588			}
589			edited = 1;
590		}
591	}
592
593	/*
594	 * Special case: -N only displays & exits
595	 */
596	if (conf.dryrun)
597		return print_user(pwd);
598
599	if (mode == M_ADD) {
600		edited = 1;	/* Always */
601		rc = addpwent(pwd);
602		if (rc == -1)
603			errx(EX_IOERR, "user '%s' already exists",
604			    pwd->pw_name);
605		else if (rc != 0)
606			err(EX_IOERR, "passwd file update");
607		if (cnf->nispasswd && *cnf->nispasswd=='/') {
608			rc = addnispwent(cnf->nispasswd, pwd);
609			if (rc == -1)
610				warnx("User '%s' already exists in NIS passwd", pwd->pw_name);
611			else
612				warn("NIS passwd update");
613			/* NOTE: we treat NIS-only update errors as non-fatal */
614		}
615	} else if (mode == M_UPDATE || mode == M_LOCK || mode == M_UNLOCK) {
616		if (edited) {	/* Only updated this if required */
617			rc = chgpwent(name, pwd);
618			if (rc == -1)
619				errx(EX_IOERR, "user '%s' does not exist (NIS?)", pwd->pw_name);
620			else if (rc != 0)
621				err(EX_IOERR, "passwd file update");
622			if ( cnf->nispasswd && *cnf->nispasswd=='/') {
623				rc = chgnispwent(cnf->nispasswd, name, pwd);
624				if (rc == -1)
625					warn("User '%s' not found in NIS passwd", pwd->pw_name);
626				else
627					warn("NIS passwd update");
628				/* NOTE: NIS-only update errors are not fatal */
629			}
630		}
631	}
632
633	/*
634	 * Ok, user is created or changed - now edit group file
635	 */
636
637	if (mode == M_ADD || getarg(args, 'G') != NULL) {
638		int i, j;
639		/* First remove the user from all group */
640		SETGRENT();
641		while ((grp = GETGRENT()) != NULL) {
642			char group[MAXLOGNAME];
643			if (grp->gr_mem == NULL)
644				continue;
645			for (i = 0; grp->gr_mem[i] != NULL; i++) {
646				if (strcmp(grp->gr_mem[i] , pwd->pw_name) != 0)
647					continue;
648				for (j = i; grp->gr_mem[j] != NULL ; j++)
649					grp->gr_mem[j] = grp->gr_mem[j+1];
650				strlcpy(group, grp->gr_name, MAXLOGNAME);
651				chggrent(group, grp);
652			}
653		}
654		ENDGRENT();
655
656		/* now add to group where needed */
657		for (i = 0; cnf->groups[i] != NULL; i++) {
658			grp = GETGRNAM(cnf->groups[i]);
659			grp = gr_add(grp, pwd->pw_name);
660			/*
661			 * grp can only be NULL in 2 cases:
662			 * - the new member is already a member
663			 * - a problem with memory occurs
664			 * in both cases we want to skip now.
665			 */
666			if (grp == NULL)
667				continue;
668			chggrent(cnf->groups[i], grp);
669			free(grp);
670		}
671	}
672
673
674	/* go get a current version of pwd */
675	pwd = GETPWNAM(name);
676	if (pwd == NULL) {
677		/* This will fail when we rename, so special case that */
678		if (mode == M_UPDATE && conf.newname != NULL) {
679			name = conf.newname;		/* update new name */
680			pwd = GETPWNAM(name);	/* refetch renamed rec */
681		}
682	}
683	if (pwd == NULL)	/* can't go on without this */
684		errx(EX_NOUSER, "user '%s' disappeared during update", name);
685
686	grp = GETGRGID(pwd->pw_gid);
687	pw_log(cnf, mode, W_USER, "%s(%u):%s(%u):%s:%s:%s",
688	       pwd->pw_name, pwd->pw_uid,
689	    grp ? grp->gr_name : "unknown", (grp ? grp->gr_gid : (uid_t)-1),
690	       pwd->pw_gecos, pwd->pw_dir, pwd->pw_shell);
691
692	/*
693	 * If adding, let's touch and chown the user's mail file. This is not
694	 * strictly necessary under BSD with a 0755 maildir but it also
695	 * doesn't hurt anything to create the empty mailfile
696	 */
697	if (mode == M_ADD) {
698		if (PWALTDIR() != PWF_ALT) {
699			arg = getarg(args, 'R');
700			snprintf(path, sizeof(path), "%s%s/%s",
701			    arg ? arg->val : "", _PATH_MAILDIR, pwd->pw_name);
702			close(open(path, O_RDWR | O_CREAT, 0600));	/* Preserve contents &
703									 * mtime */
704			chown(path, pwd->pw_uid, pwd->pw_gid);
705		}
706	}
707
708	/*
709	 * Let's create and populate the user's home directory. Note
710	 * that this also `works' for editing users if -m is used, but
711	 * existing files will *not* be overwritten.
712	 */
713	if (PWALTDIR() != PWF_ALT && getarg(args, 'm') != NULL && pwd->pw_dir &&
714	    *pwd->pw_dir == '/' && pwd->pw_dir[1])
715		create_and_populate_homedir(mode, pwd);
716
717	/*
718	 * Finally, send mail to the new user as well, if we are asked to
719	 */
720	if (mode == M_ADD && !PWALTDIR() && cnf->newmail && *cnf->newmail && (fp = fopen(cnf->newmail, "r")) != NULL) {
721		FILE           *pfp = popen(_PATH_SENDMAIL " -t", "w");
722
723		if (pfp == NULL)
724			warn("sendmail");
725		else {
726			fprintf(pfp, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd->pw_name);
727			while (fgets(line, sizeof(line), fp) != NULL) {
728				/* Do substitutions? */
729				fputs(line, pfp);
730			}
731			pclose(pfp);
732			pw_log(cnf, mode, W_USER, "%s(%u) new user mail sent",
733			    pwd->pw_name, pwd->pw_uid);
734		}
735		fclose(fp);
736	}
737
738	return EXIT_SUCCESS;
739}
740
741
742static          uid_t
743pw_uidpolicy(struct userconf * cnf, long id)
744{
745	struct passwd  *pwd;
746	uid_t           uid = (uid_t) - 1;
747
748	/*
749	 * Check the given uid, if any
750	 */
751	if (id > 0) {
752		uid = (uid_t) id;
753
754		if ((pwd = GETPWUID(uid)) != NULL && conf.checkduplicate)
755			errx(EX_DATAERR, "uid `%u' has already been allocated", pwd->pw_uid);
756	} else {
757		struct bitmap   bm;
758
759		/*
760		 * We need to allocate the next available uid under one of
761		 * two policies a) Grab the first unused uid b) Grab the
762		 * highest possible unused uid
763		 */
764		if (cnf->min_uid >= cnf->max_uid) {	/* Sanity
765							 * claus^H^H^H^Hheck */
766			cnf->min_uid = 1000;
767			cnf->max_uid = 32000;
768		}
769		bm = bm_alloc(cnf->max_uid - cnf->min_uid + 1);
770
771		/*
772		 * Now, let's fill the bitmap from the password file
773		 */
774		SETPWENT();
775		while ((pwd = GETPWENT()) != NULL)
776			if (pwd->pw_uid >= (uid_t) cnf->min_uid && pwd->pw_uid <= (uid_t) cnf->max_uid)
777				bm_setbit(&bm, pwd->pw_uid - cnf->min_uid);
778		ENDPWENT();
779
780		/*
781		 * Then apply the policy, with fallback to reuse if necessary
782		 */
783		if (cnf->reuse_uids || (uid = (uid_t) (bm_lastset(&bm) + cnf->min_uid + 1)) > cnf->max_uid)
784			uid = (uid_t) (bm_firstunset(&bm) + cnf->min_uid);
785
786		/*
787		 * Another sanity check
788		 */
789		if (uid < cnf->min_uid || uid > cnf->max_uid)
790			errx(EX_SOFTWARE, "unable to allocate a new uid - range fully used");
791		bm_dealloc(&bm);
792	}
793	return uid;
794}
795
796
797static          uid_t
798pw_gidpolicy(struct cargs * args, char *nam, gid_t prefer)
799{
800	struct group   *grp;
801	gid_t           gid = (uid_t) - 1;
802	struct carg    *a_gid = getarg(args, 'g');
803	struct userconf	*cnf = conf.userconf;
804
805	/*
806	 * If no arg given, see if default can help out
807	 */
808	if (a_gid == NULL && cnf->default_group && *cnf->default_group)
809		a_gid = addarg(args, 'g', cnf->default_group);
810
811	/*
812	 * Check the given gid, if any
813	 */
814	SETGRENT();
815	if (a_gid != NULL) {
816		if ((grp = GETGRNAM(a_gid->val)) == NULL) {
817			gid = (gid_t) atol(a_gid->val);
818			if ((gid == 0 && !isdigit((unsigned char)*a_gid->val)) || (grp = GETGRGID(gid)) == NULL)
819				errx(EX_NOUSER, "group `%s' is not defined", a_gid->val);
820		}
821		gid = grp->gr_gid;
822	} else if ((grp = GETGRNAM(nam)) != NULL &&
823	    (grp->gr_mem == NULL || grp->gr_mem[0] == NULL)) {
824		gid = grp->gr_gid;  /* Already created? Use it anyway... */
825	} else {
826		struct cargs    grpargs;
827		char            tmp[32];
828
829		LIST_INIT(&grpargs);
830
831		/*
832		 * We need to auto-create a group with the user's name. We
833		 * can send all the appropriate output to our sister routine
834		 * bit first see if we can create a group with gid==uid so we
835		 * can keep the user and group ids in sync. We purposely do
836		 * NOT check the gid range if we can force the sync. If the
837		 * user's name dups an existing group, then the group add
838		 * function will happily handle that case for us and exit.
839		 */
840		if (GETGRGID(prefer) == NULL) {
841			snprintf(tmp, sizeof(tmp), "%u", prefer);
842			addarg(&grpargs, 'g', tmp);
843		}
844		if (conf.dryrun) {
845			addarg(&grpargs, 'q', NULL);
846			gid = pw_group(M_NEXT, nam, -1, &grpargs);
847		}
848		else
849		{
850			pw_group(M_ADD, nam, -1, &grpargs);
851			if ((grp = GETGRNAM(nam)) != NULL)
852				gid = grp->gr_gid;
853		}
854		a_gid = LIST_FIRST(&grpargs);
855		while (a_gid != NULL) {
856			struct carg    *t = LIST_NEXT(a_gid, list);
857			LIST_REMOVE(a_gid, list);
858			a_gid = t;
859		}
860	}
861	ENDGRENT();
862	return gid;
863}
864
865
866static          time_t
867pw_pwdpolicy(struct userconf * cnf, struct cargs * args)
868{
869	time_t          result = 0;
870	time_t          now = time(NULL);
871	struct carg    *arg = getarg(args, 'p');
872
873	if (arg != NULL) {
874		if ((result = parse_date(now, arg->val)) == now)
875			errx(EX_DATAERR, "invalid date/time `%s'", arg->val);
876	} else if (cnf->password_days > 0)
877		result = now + ((long) cnf->password_days * 86400L);
878	return result;
879}
880
881
882static          time_t
883pw_exppolicy(struct userconf * cnf, struct cargs * args)
884{
885	time_t          result = 0;
886	time_t          now = time(NULL);
887	struct carg    *arg = getarg(args, 'e');
888
889	if (arg != NULL) {
890		if ((result = parse_date(now, arg->val)) == now)
891			errx(EX_DATAERR, "invalid date/time `%s'", arg->val);
892	} else if (cnf->expire_days > 0)
893		result = now + ((long) cnf->expire_days * 86400L);
894	return result;
895}
896
897
898static char    *
899pw_homepolicy(struct userconf * cnf, struct cargs * args, char const * user)
900{
901	struct carg    *arg = getarg(args, 'd');
902	static char     home[128];
903
904	if (arg)
905		return (arg->val);
906
907	if (cnf->home == NULL || *cnf->home == '\0')
908		errx(EX_CONFIG, "no base home directory set");
909	snprintf(home, sizeof(home), "%s/%s", cnf->home, user);
910
911	return (home);
912}
913
914static char    *
915shell_path(char const * path, char *shells[], char *sh)
916{
917	if (sh != NULL && (*sh == '/' || *sh == '\0'))
918		return sh;	/* specified full path or forced none */
919	else {
920		char           *p;
921		char            paths[_UC_MAXLINE];
922
923		/*
924		 * We need to search paths
925		 */
926		strlcpy(paths, path, sizeof(paths));
927		for (p = strtok(paths, ": \t\r\n"); p != NULL; p = strtok(NULL, ": \t\r\n")) {
928			int             i;
929			static char     shellpath[256];
930
931			if (sh != NULL) {
932				snprintf(shellpath, sizeof(shellpath), "%s/%s", p, sh);
933				if (access(shellpath, X_OK) == 0)
934					return shellpath;
935			} else
936				for (i = 0; i < _UC_MAXSHELLS && shells[i] != NULL; i++) {
937					snprintf(shellpath, sizeof(shellpath), "%s/%s", p, shells[i]);
938					if (access(shellpath, X_OK) == 0)
939						return shellpath;
940				}
941		}
942		if (sh == NULL)
943			errx(EX_OSFILE, "can't find shell `%s' in shell paths", sh);
944		errx(EX_CONFIG, "no default shell available or defined");
945		return NULL;
946	}
947}
948
949
950static char    *
951pw_shellpolicy(struct userconf * cnf, struct cargs * args, char *newshell)
952{
953	char           *sh = newshell;
954	struct carg    *arg = getarg(args, 's');
955
956	if (newshell == NULL && arg != NULL)
957		sh = arg->val;
958	return shell_path(cnf->shelldir, cnf->shells, sh ? sh : cnf->shell_default);
959}
960
961#define	SALTSIZE	32
962
963static char const chars[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./";
964
965char           *
966pw_pwcrypt(char *password)
967{
968	int             i;
969	char            salt[SALTSIZE + 1];
970	char		*cryptpw;
971
972	static char     buf[256];
973
974	/*
975	 * Calculate a salt value
976	 */
977	for (i = 0; i < SALTSIZE; i++)
978		salt[i] = chars[arc4random_uniform(sizeof(chars) - 1)];
979	salt[SALTSIZE] = '\0';
980
981	cryptpw = crypt(password, salt);
982	if (cryptpw == NULL)
983		errx(EX_CONFIG, "crypt(3) failure");
984	return strcpy(buf, cryptpw);
985}
986
987
988static char    *
989pw_password(struct userconf * cnf, struct cargs * args, char const * user)
990{
991	int             i, l;
992	char            pwbuf[32];
993
994	switch (cnf->default_password) {
995	case -1:		/* Random password */
996		l = (arc4random() % 8 + 8);	/* 8 - 16 chars */
997		for (i = 0; i < l; i++)
998			pwbuf[i] = chars[arc4random_uniform(sizeof(chars)-1)];
999		pwbuf[i] = '\0';
1000
1001		/*
1002		 * We give this information back to the user
1003		 */
1004		if (getarg(args, 'h') == NULL && getarg(args, 'H') == NULL &&
1005		    !conf.dryrun) {
1006			if (isatty(STDOUT_FILENO))
1007				printf("Password for '%s' is: ", user);
1008			printf("%s\n", pwbuf);
1009			fflush(stdout);
1010		}
1011		break;
1012
1013	case -2:		/* No password at all! */
1014		return "";
1015
1016	case 0:		/* No login - default */
1017	default:
1018		return "*";
1019
1020	case 1:		/* user's name */
1021		strlcpy(pwbuf, user, sizeof(pwbuf));
1022		break;
1023	}
1024	return pw_pwcrypt(pwbuf);
1025}
1026
1027static int
1028delete_user(struct userconf *cnf, struct passwd *pwd, char *name,
1029    int delete, int mode)
1030{
1031	char		 file[MAXPATHLEN];
1032	char		 home[MAXPATHLEN];
1033	uid_t		 uid = pwd->pw_uid;
1034	struct group	*gr, *grp;
1035	char		 grname[LOGNAMESIZE];
1036	int		 rc;
1037	struct stat	 st;
1038
1039	if (strcmp(pwd->pw_name, "root") == 0)
1040		errx(EX_DATAERR, "cannot remove user 'root'");
1041
1042	if (!PWALTDIR()) {
1043		/*
1044		 * Remove opie record from /etc/opiekeys
1045		*/
1046
1047		rmopie(pwd->pw_name);
1048
1049		/*
1050		 * Remove crontabs
1051		 */
1052		snprintf(file, sizeof(file), "/var/cron/tabs/%s", pwd->pw_name);
1053		if (access(file, F_OK) == 0) {
1054			snprintf(file, sizeof(file), "crontab -u %s -r", pwd->pw_name);
1055			system(file);
1056		}
1057	}
1058	/*
1059	 * Save these for later, since contents of pwd may be
1060	 * invalidated by deletion
1061	 */
1062	snprintf(file, sizeof(file), "%s/%s", _PATH_MAILDIR, pwd->pw_name);
1063	strlcpy(home, pwd->pw_dir, sizeof(home));
1064	gr = GETGRGID(pwd->pw_gid);
1065	if (gr != NULL)
1066		strlcpy(grname, gr->gr_name, LOGNAMESIZE);
1067	else
1068		grname[0] = '\0';
1069
1070	rc = delpwent(pwd);
1071	if (rc == -1)
1072		err(EX_IOERR, "user '%s' does not exist", pwd->pw_name);
1073	else if (rc != 0)
1074		err(EX_IOERR, "passwd update");
1075
1076	if (cnf->nispasswd && *cnf->nispasswd=='/') {
1077		rc = delnispwent(cnf->nispasswd, name);
1078		if (rc == -1)
1079			warnx("WARNING: user '%s' does not exist in NIS passwd", pwd->pw_name);
1080		else if (rc != 0)
1081			warn("WARNING: NIS passwd update");
1082		/* non-fatal */
1083	}
1084
1085	grp = GETGRNAM(name);
1086	if (grp != NULL &&
1087	    (grp->gr_mem == NULL || *grp->gr_mem == NULL) &&
1088	    strcmp(name, grname) == 0)
1089		delgrent(GETGRNAM(name));
1090	SETGRENT();
1091	while ((grp = GETGRENT()) != NULL) {
1092		int i, j;
1093		char group[MAXLOGNAME];
1094		if (grp->gr_mem == NULL)
1095			continue;
1096
1097		for (i = 0; grp->gr_mem[i] != NULL; i++) {
1098			if (strcmp(grp->gr_mem[i], name) != 0)
1099				continue;
1100
1101			for (j = i; grp->gr_mem[j] != NULL; j++)
1102				grp->gr_mem[j] = grp->gr_mem[j+1];
1103			strlcpy(group, grp->gr_name, MAXLOGNAME);
1104			chggrent(group, grp);
1105		}
1106	}
1107	ENDGRENT();
1108
1109	pw_log(cnf, mode, W_USER, "%s(%u) account removed", name, uid);
1110
1111	if (!PWALTDIR()) {
1112		/*
1113		 * Remove mail file
1114		 */
1115		remove(file);
1116
1117		/*
1118		 * Remove at jobs
1119		 */
1120		if (getpwuid(uid) == NULL)
1121			rmat(uid);
1122
1123		/*
1124		 * Remove home directory and contents
1125		 */
1126		if (delete && *home == '/' && getpwuid(uid) == NULL &&
1127		    stat(home, &st) != -1) {
1128			rm_r(home, uid);
1129			pw_log(cnf, mode, W_USER, "%s(%u) home '%s' %sremoved",
1130			       name, uid, home,
1131			       stat(home, &st) == -1 ? "" : "not completely ");
1132		}
1133	}
1134
1135	return (EXIT_SUCCESS);
1136}
1137
1138static int
1139print_user(struct passwd * pwd)
1140{
1141	if (!conf.pretty) {
1142		char            *buf;
1143
1144		buf = conf.v7 ? pw_make_v7(pwd) : pw_make(pwd);
1145		printf("%s\n", buf);
1146		free(buf);
1147	} else {
1148		int		j;
1149		char           *p;
1150		struct group   *grp = GETGRGID(pwd->pw_gid);
1151		char            uname[60] = "User &", office[60] = "[None]",
1152		                wphone[60] = "[None]", hphone[60] = "[None]";
1153		char		acexpire[32] = "[None]", pwexpire[32] = "[None]";
1154		struct tm *    tptr;
1155
1156		if ((p = strtok(pwd->pw_gecos, ",")) != NULL) {
1157			strlcpy(uname, p, sizeof(uname));
1158			if ((p = strtok(NULL, ",")) != NULL) {
1159				strlcpy(office, p, sizeof(office));
1160				if ((p = strtok(NULL, ",")) != NULL) {
1161					strlcpy(wphone, p, sizeof(wphone));
1162					if ((p = strtok(NULL, "")) != NULL) {
1163						strlcpy(hphone, p,
1164						    sizeof(hphone));
1165					}
1166				}
1167			}
1168		}
1169		/*
1170		 * Handle '&' in gecos field
1171		 */
1172		if ((p = strchr(uname, '&')) != NULL) {
1173			int             l = strlen(pwd->pw_name);
1174			int             m = strlen(p);
1175
1176			memmove(p + l, p + 1, m);
1177			memmove(p, pwd->pw_name, l);
1178			*p = (char) toupper((unsigned char)*p);
1179		}
1180		if (pwd->pw_expire > (time_t)0 && (tptr = localtime(&pwd->pw_expire)) != NULL)
1181			strftime(acexpire, sizeof acexpire, "%c", tptr);
1182		if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL)
1183			strftime(pwexpire, sizeof pwexpire, "%c", tptr);
1184		printf("Login Name: %-15s   #%-12u Group: %-15s   #%u\n"
1185		       " Full Name: %s\n"
1186		       "      Home: %-26.26s      Class: %s\n"
1187		       "     Shell: %-26.26s     Office: %s\n"
1188		       "Work Phone: %-26.26s Home Phone: %s\n"
1189		       "Acc Expire: %-26.26s Pwd Expire: %s\n",
1190		       pwd->pw_name, pwd->pw_uid,
1191		       grp ? grp->gr_name : "(invalid)", pwd->pw_gid,
1192		       uname, pwd->pw_dir, pwd->pw_class,
1193		       pwd->pw_shell, office, wphone, hphone,
1194		       acexpire, pwexpire);
1195	        SETGRENT();
1196		j = 0;
1197		while ((grp=GETGRENT()) != NULL)
1198		{
1199			int     i = 0;
1200			if (grp->gr_mem != NULL) {
1201				while (grp->gr_mem[i] != NULL)
1202				{
1203					if (strcmp(grp->gr_mem[i], pwd->pw_name)==0)
1204					{
1205						printf(j++ == 0 ? "    Groups: %s" : ",%s", grp->gr_name);
1206						break;
1207					}
1208					++i;
1209				}
1210			}
1211		}
1212		ENDGRENT();
1213		printf("%s", j ? "\n" : "");
1214	}
1215	return EXIT_SUCCESS;
1216}
1217
1218char *
1219pw_checkname(char *name, int gecos)
1220{
1221	char showch[8];
1222	const char *badchars, *ch, *showtype;
1223	int reject;
1224
1225	ch = name;
1226	reject = 0;
1227	if (gecos) {
1228		/* See if the name is valid as a gecos (comment) field. */
1229		badchars = ":!@";
1230		showtype = "gecos field";
1231	} else {
1232		/* See if the name is valid as a userid or group. */
1233		badchars = " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1234		showtype = "userid/group name";
1235		/* Userids and groups can not have a leading '-'. */
1236		if (*ch == '-')
1237			reject = 1;
1238	}
1239	if (!reject) {
1240		while (*ch) {
1241			if (strchr(badchars, *ch) != NULL || *ch < ' ' ||
1242			    *ch == 127) {
1243				reject = 1;
1244				break;
1245			}
1246			/* 8-bit characters are only allowed in GECOS fields */
1247			if (!gecos && (*ch & 0x80)) {
1248				reject = 1;
1249				break;
1250			}
1251			ch++;
1252		}
1253	}
1254	/*
1255	 * A `$' is allowed as the final character for userids and groups,
1256	 * mainly for the benefit of samba.
1257	 */
1258	if (reject && !gecos) {
1259		if (*ch == '$' && *(ch + 1) == '\0') {
1260			reject = 0;
1261			ch++;
1262		}
1263	}
1264	if (reject) {
1265		snprintf(showch, sizeof(showch), (*ch >= ' ' && *ch < 127)
1266		    ? "`%c'" : "0x%02x", *ch);
1267		errx(EX_DATAERR, "invalid character %s at position %td in %s",
1268		    showch, (ch - name), showtype);
1269	}
1270	if (!gecos && (ch - name) > LOGNAMESIZE)
1271		errx(EX_DATAERR, "name too long `%s' (max is %d)", name,
1272		    LOGNAMESIZE);
1273
1274	return (name);
1275}
1276
1277
1278static void
1279rmat(uid_t uid)
1280{
1281	DIR            *d = opendir("/var/at/jobs");
1282
1283	if (d != NULL) {
1284		struct dirent  *e;
1285
1286		while ((e = readdir(d)) != NULL) {
1287			struct stat     st;
1288
1289			if (strncmp(e->d_name, ".lock", 5) != 0 &&
1290			    stat(e->d_name, &st) == 0 &&
1291			    !S_ISDIR(st.st_mode) &&
1292			    st.st_uid == uid) {
1293				char            tmp[MAXPATHLEN];
1294
1295				snprintf(tmp, sizeof(tmp), "/usr/bin/atrm %s", e->d_name);
1296				system(tmp);
1297			}
1298		}
1299		closedir(d);
1300	}
1301}
1302
1303static void
1304rmopie(char const * name)
1305{
1306	static const char etcopie[] = "/etc/opiekeys";
1307	FILE   *fp = fopen(etcopie, "r+");
1308
1309	if (fp != NULL) {
1310		char	tmp[1024];
1311		off_t	atofs = 0;
1312		int	length = strlen(name);
1313
1314		while (fgets(tmp, sizeof tmp, fp) != NULL) {
1315			if (strncmp(name, tmp, length) == 0 && tmp[length]==' ') {
1316				if (fseek(fp, atofs, SEEK_SET) == 0) {
1317					fwrite("#", 1, 1, fp);	/* Comment username out */
1318				}
1319				break;
1320			}
1321			atofs = ftell(fp);
1322		}
1323		/*
1324		 * If we got an error of any sort, don't update!
1325		 */
1326		fclose(fp);
1327	}
1328}
1329
1330