120253Sjoerg/*-
220302Sjoerg * Copyright (C) 1996
320302Sjoerg *	David L. Nugent.  All rights reserved.
420253Sjoerg *
520253Sjoerg * Redistribution and use in source and binary forms, with or without
620253Sjoerg * modification, are permitted provided that the following conditions
720253Sjoerg * are met:
820253Sjoerg * 1. Redistributions of source code must retain the above copyright
920302Sjoerg *    notice, this list of conditions and the following disclaimer.
1020253Sjoerg * 2. Redistributions in binary form must reproduce the above copyright
1120253Sjoerg *    notice, this list of conditions and the following disclaimer in the
1220253Sjoerg *    documentation and/or other materials provided with the distribution.
1320253Sjoerg *
1420302Sjoerg * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
1520253Sjoerg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1620253Sjoerg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1720302Sjoerg * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
1820253Sjoerg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1920253Sjoerg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2020253Sjoerg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2120253Sjoerg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2220253Sjoerg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2320253Sjoerg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2420253Sjoerg * SUCH DAMAGE.
2544229Sdavidn *
2620253Sjoerg */
2720253Sjoerg
2830259Scharnier#ifndef lint
2930259Scharnierstatic const char rcsid[] =
3050479Speter  "$FreeBSD$";
3130259Scharnier#endif /* not lint */
3230259Scharnier
3330259Scharnier#include <ctype.h>
3430259Scharnier#include <err.h>
3520253Sjoerg#include <fcntl.h>
3620253Sjoerg#include <sys/param.h>
3720253Sjoerg#include <dirent.h>
3830259Scharnier#include <paths.h>
3920253Sjoerg#include <termios.h>
4020555Sdavidn#include <sys/types.h>
4120555Sdavidn#include <sys/time.h>
4220555Sdavidn#include <sys/resource.h>
4330259Scharnier#include <unistd.h>
4464918Sgreen#include <login_cap.h>
45242349Sbapt#include <pwd.h>
46242349Sbapt#include <grp.h>
47242349Sbapt#include <libutil.h>
4820253Sjoerg#include "pw.h"
4920253Sjoerg#include "bitmap.h"
5020253Sjoerg
5123318Sache#define LOGNAMESIZE (MAXLOGNAME-1)
5222394Sdavidn
5352512Sdavidnstatic		char locked_str[] = "*LOCKED*";
5424214Sache
5544386Sdavidnstatic int      print_user(struct passwd * pwd, int pretty, int v7);
5620253Sjoergstatic uid_t    pw_uidpolicy(struct userconf * cnf, struct cargs * args);
5720253Sjoergstatic uid_t    pw_gidpolicy(struct userconf * cnf, struct cargs * args, char *nam, gid_t prefer);
5820253Sjoergstatic time_t   pw_pwdpolicy(struct userconf * cnf, struct cargs * args);
5920253Sjoergstatic time_t   pw_exppolicy(struct userconf * cnf, struct cargs * args);
6020253Sjoergstatic char    *pw_homepolicy(struct userconf * cnf, struct cargs * args, char const * user);
6120253Sjoergstatic char    *pw_shellpolicy(struct userconf * cnf, struct cargs * args, char *newshell);
6220253Sjoergstatic char    *pw_password(struct userconf * cnf, struct cargs * args, char const * user);
6320253Sjoergstatic char    *shell_path(char const * path, char *shells[], char *sh);
6420253Sjoergstatic void     rmat(uid_t uid);
6585145Sachestatic void     rmopie(char const * name);
6620253Sjoerg
6720253Sjoerg/*-
6820253Sjoerg * -C config      configuration file
6920253Sjoerg * -q             quiet operation
7020253Sjoerg * -n name        login name
7120253Sjoerg * -u uid         user id
7220253Sjoerg * -c comment     user name/comment
7320253Sjoerg * -d directory   home directory
7420253Sjoerg * -e date        account expiry date
7520253Sjoerg * -p date        password expiry date
7620253Sjoerg * -g grp         primary group
7720253Sjoerg * -G grp1,grp2   additional groups
7820253Sjoerg * -m [ -k dir ]  create and set up home
7920253Sjoerg * -s shell       name of login shell
8020253Sjoerg * -o             duplicate uid ok
8120253Sjoerg * -L class       user class
8220253Sjoerg * -l name        new login name
8320253Sjoerg * -h fd          password filehandle
84124382Siedowse * -H fd          encrypted password filehandle
8520253Sjoerg * -F             force print or add
8620253Sjoerg *   Setting defaults:
8720253Sjoerg * -D             set user defaults
8820253Sjoerg * -b dir         default home root dir
8920253Sjoerg * -e period      default expiry period
9020253Sjoerg * -p period      default password change period
9120253Sjoerg * -g group       default group
9220253Sjoerg * -G             grp1,grp2.. default additional groups
9320253Sjoerg * -L class       default login class
9420253Sjoerg * -k dir         default home skeleton
9520253Sjoerg * -s shell       default shell
9620253Sjoerg * -w method      default password method
9720253Sjoerg */
9820253Sjoerg
9920253Sjoergint
10020253Sjoergpw_user(struct userconf * cnf, int mode, struct cargs * args)
10120253Sjoerg{
10252527Sdavidn	int	        rc, edited = 0;
10320253Sjoerg	char           *p = NULL;
10452512Sdavidn	char					 *passtmp;
10520253Sjoerg	struct carg    *a_name;
10620253Sjoerg	struct carg    *a_uid;
10720253Sjoerg	struct carg    *arg;
10820253Sjoerg	struct passwd  *pwd = NULL;
10920253Sjoerg	struct group   *grp;
11020253Sjoerg	struct stat     st;
11120747Sdavidn	char            line[_PASSWORD_LEN+1];
11282868Sdd	FILE	       *fp;
113167919Sle	char *dmode_c;
114167919Sle	void *set = NULL;
11520253Sjoerg
11620253Sjoerg	static struct passwd fakeuser =
11720253Sjoerg	{
11820253Sjoerg		NULL,
11920253Sjoerg		"*",
12020253Sjoerg		-1,
12120253Sjoerg		-1,
12220253Sjoerg		0,
12320253Sjoerg		"",
12420253Sjoerg		"User &",
12556000Sdavidn		"/nonexistent",
12620253Sjoerg		"/bin/sh",
12720253Sjoerg		0
12856000Sdavidn#if defined(__FreeBSD__)
12956000Sdavidn		,0
13056000Sdavidn#endif
13120253Sjoerg	};
13220253Sjoerg
13352512Sdavidn
13420253Sjoerg	/*
13520267Sjoerg	 * With M_NEXT, we only need to return the
13620267Sjoerg	 * next uid to stdout
13720267Sjoerg	 */
13820267Sjoerg	if (mode == M_NEXT)
13920267Sjoerg	{
14020267Sjoerg		uid_t next = pw_uidpolicy(cnf, args);
14120267Sjoerg		if (getarg(args, 'q'))
14220267Sjoerg			return next;
14320267Sjoerg		printf("%ld:", (long)next);
14420267Sjoerg		pw_group(cnf, mode, args);
14520267Sjoerg		return EXIT_SUCCESS;
14620267Sjoerg	}
14720267Sjoerg
14820267Sjoerg	/*
14920253Sjoerg	 * We can do all of the common legwork here
15020253Sjoerg	 */
15120253Sjoerg
15220253Sjoerg	if ((arg = getarg(args, 'b')) != NULL) {
15320267Sjoerg		cnf->home = arg->val;
15420253Sjoerg	}
15521052Sdavidn
156167919Sle	if ((arg = getarg(args, 'M')) != NULL) {
157167919Sle		dmode_c = arg->val;
158167919Sle		if ((set = setmode(dmode_c)) == NULL)
159167919Sle			errx(EX_DATAERR, "invalid directory creation mode '%s'",
160167919Sle			    dmode_c);
161219408Sjkim		cnf->homemode = getmode(set, _DEF_DIRMODE);
162167919Sle		free(set);
163168044Sle	}
164167919Sle
16521052Sdavidn	/*
16621052Sdavidn	 * If we'll need to use it or we're updating it,
16721052Sdavidn	 * then create the base home directory if necessary
16821052Sdavidn	 */
169224535Sdelphij	if (arg != NULL || getarg(args, 'm') != NULL) {
17021052Sdavidn		int	l = strlen(cnf->home);
17121052Sdavidn
17221052Sdavidn		if (l > 1 && cnf->home[l-1] == '/')	/* Shave off any trailing path delimiter */
17321052Sdavidn			cnf->home[--l] = '\0';
17421052Sdavidn
17521052Sdavidn		if (l < 2 || *cnf->home != '/')		/* Check for absolute path name */
17630259Scharnier			errx(EX_DATAERR, "invalid base directory for home '%s'", cnf->home);
17721052Sdavidn
17821052Sdavidn		if (stat(cnf->home, &st) == -1) {
17921052Sdavidn			char	dbuf[MAXPATHLEN];
18021052Sdavidn
18121242Sdavidn			/*
18221242Sdavidn			 * This is a kludge especially for Joerg :)
18321242Sdavidn			 * If the home directory would be created in the root partition, then
18421242Sdavidn			 * we really create it under /usr which is likely to have more space.
18521242Sdavidn			 * But we create a symlink from cnf->home -> "/usr" -> cnf->home
18621242Sdavidn			 */
18721242Sdavidn			if (strchr(cnf->home+1, '/') == NULL) {
18821242Sdavidn				strcpy(dbuf, "/usr");
18921242Sdavidn				strncat(dbuf, cnf->home, MAXPATHLEN-5);
190219408Sjkim				if (mkdir(dbuf, _DEF_DIRMODE) != -1 || errno == EEXIST) {
19121242Sdavidn					chown(dbuf, 0, 0);
192148584Spjd					/*
193148584Spjd					 * Skip first "/" and create symlink:
194148584Spjd					 * /home -> usr/home
195148584Spjd					 */
196148584Spjd					symlink(dbuf+1, cnf->home);
19721242Sdavidn				}
19821242Sdavidn				/* If this falls, fall back to old method */
19921242Sdavidn			}
200130633Srobert			strlcpy(dbuf, cnf->home, sizeof(dbuf));
201130633Srobert			p = dbuf;
20221242Sdavidn			if (stat(dbuf, &st) == -1) {
203252377Skientzle				while ((p = strchr(p + 1, '/')) != NULL) {
20421242Sdavidn					*p = '\0';
20521242Sdavidn					if (stat(dbuf, &st) == -1) {
206219408Sjkim						if (mkdir(dbuf, _DEF_DIRMODE) == -1)
20721242Sdavidn							goto direrr;
20821242Sdavidn						chown(dbuf, 0, 0);
20921242Sdavidn					} else if (!S_ISDIR(st.st_mode))
21030259Scharnier						errx(EX_OSFILE, "'%s' (root home parent) is not a directory", dbuf);
21121242Sdavidn					*p = '/';
21221242Sdavidn				}
21321052Sdavidn			}
21421242Sdavidn			if (stat(dbuf, &st) == -1) {
215219408Sjkim				if (mkdir(dbuf, _DEF_DIRMODE) == -1) {
21630259Scharnier				direrr:	err(EX_OSFILE, "mkdir '%s'", dbuf);
21721052Sdavidn				}
21821052Sdavidn				chown(dbuf, 0, 0);
21921052Sdavidn			}
22021052Sdavidn		} else if (!S_ISDIR(st.st_mode))
22130259Scharnier			errx(EX_OSFILE, "root home `%s' is not a directory", cnf->home);
22221052Sdavidn	}
22321052Sdavidn
22420253Sjoerg	if ((arg = getarg(args, 'e')) != NULL)
22520253Sjoerg		cnf->expire_days = atoi(arg->val);
22620253Sjoerg
22721330Sdavidn	if ((arg = getarg(args, 'y')) != NULL)
22821330Sdavidn		cnf->nispasswd = arg->val;
22921330Sdavidn
23020253Sjoerg	if ((arg = getarg(args, 'p')) != NULL && arg->val)
23120253Sjoerg		cnf->password_days = atoi(arg->val);
23220253Sjoerg
23320253Sjoerg	if ((arg = getarg(args, 'g')) != NULL) {
23463596Sdavidn		if (!*(p = arg->val))	/* Handle empty group list specially */
23563596Sdavidn			cnf->default_group = "";
23663596Sdavidn		else {
23763596Sdavidn			if ((grp = GETGRNAM(p)) == NULL) {
23863596Sdavidn				if (!isdigit((unsigned char)*p) || (grp = GETGRGID((gid_t) atoi(p))) == NULL)
23963596Sdavidn					errx(EX_NOUSER, "group `%s' does not exist", p);
24063596Sdavidn			}
24163596Sdavidn			cnf->default_group = newstr(grp->gr_name);
24220253Sjoerg		}
24320253Sjoerg	}
24420253Sjoerg	if ((arg = getarg(args, 'L')) != NULL)
24520679Sdavidn		cnf->default_class = pw_checkname((u_char *)arg->val, 0);
24620253Sjoerg
24720253Sjoerg	if ((arg = getarg(args, 'G')) != NULL && arg->val) {
24852527Sdavidn		int i = 0;
24920253Sjoerg
25020747Sdavidn		for (p = strtok(arg->val, ", \t"); p != NULL; p = strtok(NULL, ", \t")) {
25144229Sdavidn			if ((grp = GETGRNAM(p)) == NULL) {
25261957Sache				if (!isdigit((unsigned char)*p) || (grp = GETGRGID((gid_t) atoi(p))) == NULL)
25330259Scharnier					errx(EX_NOUSER, "group `%s' does not exist", p);
25420253Sjoerg			}
25520747Sdavidn			if (extendarray(&cnf->groups, &cnf->numgroups, i + 2) != -1)
25620747Sdavidn				cnf->groups[i++] = newstr(grp->gr_name);
25720253Sjoerg		}
25820747Sdavidn		while (i < cnf->numgroups)
25920253Sjoerg			cnf->groups[i++] = NULL;
26020253Sjoerg	}
26152527Sdavidn
26220253Sjoerg	if ((arg = getarg(args, 'k')) != NULL) {
26326088Sdavidn		if (stat(cnf->dotdir = arg->val, &st) == -1 || !S_ISDIR(st.st_mode))
26430259Scharnier			errx(EX_OSFILE, "skeleton `%s' is not a directory or does not exist", cnf->dotdir);
26520253Sjoerg	}
26652527Sdavidn
26720253Sjoerg	if ((arg = getarg(args, 's')) != NULL)
26820253Sjoerg		cnf->shell_default = arg->val;
26920253Sjoerg
27063600Sdavidn	if ((arg = getarg(args, 'w')) != NULL)
27163600Sdavidn		cnf->default_password = boolean_val(arg->val, cnf->default_password);
27220253Sjoerg	if (mode == M_ADD && getarg(args, 'D')) {
27320253Sjoerg		if (getarg(args, 'n') != NULL)
27430259Scharnier			errx(EX_DATAERR, "can't combine `-D' with `-n name'");
27520253Sjoerg		if ((arg = getarg(args, 'u')) != NULL && (p = strtok(arg->val, ", \t")) != NULL) {
27620253Sjoerg			if ((cnf->min_uid = (uid_t) atoi(p)) == 0)
27720253Sjoerg				cnf->min_uid = 1000;
27820253Sjoerg			if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_uid = (uid_t) atoi(p)) < cnf->min_uid)
27920253Sjoerg				cnf->max_uid = 32000;
28020253Sjoerg		}
28120253Sjoerg		if ((arg = getarg(args, 'i')) != NULL && (p = strtok(arg->val, ", \t")) != NULL) {
28220253Sjoerg			if ((cnf->min_gid = (gid_t) atoi(p)) == 0)
28320253Sjoerg				cnf->min_gid = 1000;
28420253Sjoerg			if ((p = strtok(NULL, " ,\t")) == NULL || (cnf->max_gid = (gid_t) atoi(p)) < cnf->min_gid)
28520253Sjoerg				cnf->max_gid = 32000;
28620253Sjoerg		}
28720253Sjoerg
28820253Sjoerg		arg = getarg(args, 'C');
28920253Sjoerg		if (write_userconfig(arg ? arg->val : NULL))
29020267Sjoerg			return EXIT_SUCCESS;
29130259Scharnier		warn("config update");
29220267Sjoerg		return EX_IOERR;
29320253Sjoerg	}
29452527Sdavidn
29520253Sjoerg	if (mode == M_PRINT && getarg(args, 'a')) {
29620267Sjoerg		int             pretty = getarg(args, 'P') != NULL;
29744386Sdavidn		int		v7 = getarg(args, '7') != NULL;
29844229Sdavidn		SETPWENT();
29944229Sdavidn		while ((pwd = GETPWENT()) != NULL)
30044386Sdavidn			print_user(pwd, pretty, v7);
30144229Sdavidn		ENDPWENT();
30220267Sjoerg		return EXIT_SUCCESS;
30320253Sjoerg	}
30452527Sdavidn
30520253Sjoerg	if ((a_name = getarg(args, 'n')) != NULL)
30644229Sdavidn		pwd = GETPWNAM(pw_checkname((u_char *)a_name->val, 0));
30720253Sjoerg	a_uid = getarg(args, 'u');
30820253Sjoerg
30920253Sjoerg	if (a_uid == NULL) {
31020253Sjoerg		if (a_name == NULL)
31130259Scharnier			errx(EX_DATAERR, "user name or id required");
31220253Sjoerg
31320253Sjoerg		/*
31420253Sjoerg		 * Determine whether 'n' switch is name or uid - we don't
31520253Sjoerg		 * really don't really care which we have, but we need to
31620253Sjoerg		 * know.
31720253Sjoerg		 */
31843780Sdes		if (mode != M_ADD && pwd == NULL
319241108Sbapt		    && strspn(a_name->val, "0123456789") == strlen(a_name->val)
320241108Sbapt		    && *a_name->val) {
32120253Sjoerg			(a_uid = a_name)->ch = 'u';
32220253Sjoerg			a_name = NULL;
32320253Sjoerg		}
32420253Sjoerg	}
32552527Sdavidn
32620253Sjoerg	/*
32720253Sjoerg	 * Update, delete & print require that the user exists
32820253Sjoerg	 */
32952512Sdavidn	if (mode == M_UPDATE || mode == M_DELETE ||
33052512Sdavidn	    mode == M_PRINT  || mode == M_LOCK   || mode == M_UNLOCK) {
33152527Sdavidn
33220253Sjoerg		if (a_name == NULL && pwd == NULL)	/* Try harder */
33344229Sdavidn			pwd = GETPWUID(atoi(a_uid->val));
33420253Sjoerg
33520253Sjoerg		if (pwd == NULL) {
33620253Sjoerg			if (mode == M_PRINT && getarg(args, 'F')) {
33720253Sjoerg				fakeuser.pw_name = a_name ? a_name->val : "nouser";
33820253Sjoerg				fakeuser.pw_uid = a_uid ? (uid_t) atol(a_uid->val) : -1;
33944386Sdavidn				return print_user(&fakeuser,
34044386Sdavidn						  getarg(args, 'P') != NULL,
34144386Sdavidn						  getarg(args, '7') != NULL);
34220253Sjoerg			}
34320253Sjoerg			if (a_name == NULL)
34430259Scharnier				errx(EX_NOUSER, "no such uid `%s'", a_uid->val);
34530259Scharnier			errx(EX_NOUSER, "no such user `%s'", a_name->val);
34620253Sjoerg		}
34752527Sdavidn
34820253Sjoerg		if (a_name == NULL)	/* May be needed later */
34920253Sjoerg			a_name = addarg(args, 'n', newstr(pwd->pw_name));
35020253Sjoerg
35120253Sjoerg		/*
35252512Sdavidn		 * The M_LOCK and M_UNLOCK functions simply add or remove
35352512Sdavidn		 * a "*LOCKED*" prefix from in front of the password to
35452512Sdavidn		 * prevent it decoding correctly, and therefore prevents
35552512Sdavidn		 * access. Of course, this only prevents access via
35652512Sdavidn		 * password authentication (not ssh, kerberos or any
35752512Sdavidn		 * other method that does not use the UNIX password) but
35852512Sdavidn		 * that is a known limitation.
35952512Sdavidn		 */
36052512Sdavidn
36152512Sdavidn		if (mode == M_LOCK) {
36252512Sdavidn			if (strncmp(pwd->pw_passwd, locked_str, sizeof(locked_str)-1) == 0)
36352512Sdavidn				errx(EX_DATAERR, "user '%s' is already locked", pwd->pw_name);
36452512Sdavidn			passtmp = malloc(strlen(pwd->pw_passwd) + sizeof(locked_str));
36552512Sdavidn			if (passtmp == NULL)	/* disaster */
36652512Sdavidn				errx(EX_UNAVAILABLE, "out of memory");
36752512Sdavidn			strcpy(passtmp, locked_str);
36852512Sdavidn			strcat(passtmp, pwd->pw_passwd);
36952512Sdavidn			pwd->pw_passwd = passtmp;
37052527Sdavidn			edited = 1;
37152512Sdavidn		} else if (mode == M_UNLOCK) {
37252512Sdavidn			if (strncmp(pwd->pw_passwd, locked_str, sizeof(locked_str)-1) != 0)
37352512Sdavidn				errx(EX_DATAERR, "user '%s' is not locked", pwd->pw_name);
37452512Sdavidn			pwd->pw_passwd += sizeof(locked_str)-1;
37552527Sdavidn			edited = 1;
37652527Sdavidn		} else if (mode == M_DELETE) {
37752527Sdavidn			/*
37852527Sdavidn			 * Handle deletions now
37952527Sdavidn			 */
38020253Sjoerg			char            file[MAXPATHLEN];
38120253Sjoerg			char            home[MAXPATHLEN];
38220253Sjoerg			uid_t           uid = pwd->pw_uid;
383272192Sdteske			struct group    *gr;
384272192Sdteske			char            grname[LOGNAMESIZE];
38520253Sjoerg
38620253Sjoerg			if (strcmp(pwd->pw_name, "root") == 0)
38730259Scharnier				errx(EX_DATAERR, "cannot remove user 'root'");
38820253Sjoerg
38944229Sdavidn			if (!PWALTDIR()) {
39044229Sdavidn				/*
39185145Sache				 * Remove opie record from /etc/opiekeys
39244229Sdavidn		        	 */
39320747Sdavidn
39485145Sache				rmopie(pwd->pw_name);
39520747Sdavidn
39644229Sdavidn				/*
39744229Sdavidn				 * Remove crontabs
39844229Sdavidn				 */
399243895Seadler				snprintf(file, sizeof(file), "/var/cron/tabs/%s", pwd->pw_name);
40044229Sdavidn				if (access(file, F_OK) == 0) {
40144229Sdavidn					sprintf(file, "crontab -u %s -r", pwd->pw_name);
40244229Sdavidn					system(file);
40344229Sdavidn				}
40420253Sjoerg			}
40520253Sjoerg			/*
40620253Sjoerg			 * Save these for later, since contents of pwd may be
40720253Sjoerg			 * invalidated by deletion
40820253Sjoerg			 */
40920253Sjoerg			sprintf(file, "%s/%s", _PATH_MAILDIR, pwd->pw_name);
410130633Srobert			strlcpy(home, pwd->pw_dir, sizeof(home));
411272192Sdteske			gr = GETGRGID(pwd->pw_gid);
412272192Sdteske			if (gr != NULL)
413272192Sdteske				strlcpy(grname, gr->gr_name, LOGNAMESIZE);
414272192Sdteske			else
415272192Sdteske				grname[0] = '\0';
41620253Sjoerg
41752502Sdavidn			rc = delpwent(pwd);
41852502Sdavidn			if (rc == -1)
41952502Sdavidn				err(EX_IOERR, "user '%s' does not exist", pwd->pw_name);
42052502Sdavidn			else if (rc != 0) {
42156000Sdavidn				warn("passwd update");
42252502Sdavidn				return EX_IOERR;
42352502Sdavidn			}
42421330Sdavidn
42552502Sdavidn			if (cnf->nispasswd && *cnf->nispasswd=='/') {
42652502Sdavidn				rc = delnispwent(cnf->nispasswd, a_name->val);
42752502Sdavidn				if (rc == -1)
42852502Sdavidn					warnx("WARNING: user '%s' does not exist in NIS passwd", pwd->pw_name);
42952502Sdavidn				else if (rc != 0)
43056000Sdavidn					warn("WARNING: NIS passwd update");
43152502Sdavidn				/* non-fatal */
43252502Sdavidn			}
43352502Sdavidn
434242349Sbapt			grp = GETGRNAM(a_name->val);
435272192Sdteske			if (grp != NULL &&
436272192Sdteske			    (grp->gr_mem == NULL || *grp->gr_mem == NULL) &&
437272192Sdteske			    strcmp(a_name->val, grname) == 0)
438242349Sbapt				delgrent(GETGRNAM(a_name->val));
439242349Sbapt			SETGRENT();
440242349Sbapt			while ((grp = GETGRENT()) != NULL) {
441272192Sdteske				int i, j;
442242349Sbapt				char group[MAXLOGNAME];
443272192Sdteske				if (grp->gr_mem != NULL) {
444272192Sdteske					for (i = 0; grp->gr_mem[i] != NULL; i++) {
445272192Sdteske						if (!strcmp(grp->gr_mem[i], a_name->val)) {
446272192Sdteske							for (j = i; grp->gr_mem[j] != NULL; j++)
447272192Sdteske								grp->gr_mem[j] = grp->gr_mem[j+1];
448272192Sdteske							strlcpy(group, grp->gr_name, MAXLOGNAME);
449272192Sdteske							chggrent(group, grp);
450272192Sdteske						}
451242349Sbapt					}
452242349Sbapt				}
453242349Sbapt			}
454242349Sbapt			ENDGRENT();
45520253Sjoerg
45620253Sjoerg			pw_log(cnf, mode, W_USER, "%s(%ld) account removed", a_name->val, (long) uid);
45720253Sjoerg
45844229Sdavidn			if (!PWALTDIR()) {
45944229Sdavidn				/*
46044229Sdavidn				 * Remove mail file
46144229Sdavidn				 */
46244229Sdavidn				remove(file);
46320253Sjoerg
46444229Sdavidn				/*
46544229Sdavidn				 * Remove at jobs
46644229Sdavidn				 */
46744229Sdavidn				if (getpwuid(uid) == NULL)
46844229Sdavidn					rmat(uid);
46920253Sjoerg
47044229Sdavidn				/*
47144229Sdavidn				 * Remove home directory and contents
47244229Sdavidn				 */
47344229Sdavidn				if (getarg(args, 'r') != NULL && *home == '/' && getpwuid(uid) == NULL) {
47444229Sdavidn					if (stat(home, &st) != -1) {
47544229Sdavidn						rm_r(home, uid);
47644229Sdavidn						pw_log(cnf, mode, W_USER, "%s(%ld) home '%s' %sremoved",
47744229Sdavidn						       a_name->val, (long) uid, home,
47844229Sdavidn						       stat(home, &st) == -1 ? "" : "not completely ");
47944229Sdavidn					}
48020253Sjoerg				}
48120253Sjoerg			}
48220267Sjoerg			return EXIT_SUCCESS;
48320253Sjoerg		} else if (mode == M_PRINT)
48444386Sdavidn			return print_user(pwd,
48544386Sdavidn					  getarg(args, 'P') != NULL,
48644386Sdavidn					  getarg(args, '7') != NULL);
48720253Sjoerg
48820253Sjoerg		/*
48920253Sjoerg		 * The rest is edit code
49020253Sjoerg		 */
49120253Sjoerg		if ((arg = getarg(args, 'l')) != NULL) {
49220253Sjoerg			if (strcmp(pwd->pw_name, "root") == 0)
49330259Scharnier				errx(EX_DATAERR, "can't rename `root' account");
49420679Sdavidn			pwd->pw_name = pw_checkname((u_char *)arg->val, 0);
49552527Sdavidn			edited = 1;
49620253Sjoerg		}
49752527Sdavidn
49861957Sache		if ((arg = getarg(args, 'u')) != NULL && isdigit((unsigned char)*arg->val)) {
49920253Sjoerg			pwd->pw_uid = (uid_t) atol(arg->val);
50052527Sdavidn			edited = 1;
50120253Sjoerg			if (pwd->pw_uid != 0 && strcmp(pwd->pw_name, "root") == 0)
50230259Scharnier				errx(EX_DATAERR, "can't change uid of `root' account");
50320253Sjoerg			if (pwd->pw_uid == 0 && strcmp(pwd->pw_name, "root") != 0)
50430259Scharnier				warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd->pw_name);
50520253Sjoerg		}
50620253Sjoerg
50752527Sdavidn		if ((arg = getarg(args, 'g')) != NULL && pwd->pw_uid != 0) {	/* Already checked this */
50852527Sdavidn			gid_t newgid = (gid_t) GETGRNAM(cnf->default_group)->gr_gid;
50952527Sdavidn			if (newgid != pwd->pw_gid) {
51052527Sdavidn				edited = 1;
51161762Sdavidn				pwd->pw_gid = newgid;
51252527Sdavidn			}
51352527Sdavidn		}
51452527Sdavidn
51520253Sjoerg		if ((arg = getarg(args, 'p')) != NULL) {
51652527Sdavidn			if (*arg->val == '\0' || strcmp(arg->val, "0") == 0) {
51752527Sdavidn				if (pwd->pw_change != 0) {
51852527Sdavidn					pwd->pw_change = 0;
51952527Sdavidn					edited = 1;
52052527Sdavidn				}
52152527Sdavidn			}
52220253Sjoerg			else {
52320253Sjoerg				time_t          now = time(NULL);
52420253Sjoerg				time_t          expire = parse_date(now, arg->val);
52520253Sjoerg
52652527Sdavidn				if (pwd->pw_change != expire) {
52752527Sdavidn					pwd->pw_change = expire;
52852527Sdavidn					edited = 1;
52952527Sdavidn				}
53020253Sjoerg			}
53120253Sjoerg		}
53252527Sdavidn
53320267Sjoerg		if ((arg = getarg(args, 'e')) != NULL) {
53452527Sdavidn			if (*arg->val == '\0' || strcmp(arg->val, "0") == 0) {
53552527Sdavidn				if (pwd->pw_expire != 0) {
53652527Sdavidn					pwd->pw_expire = 0;
53752527Sdavidn					edited = 1;
53852527Sdavidn				}
53952527Sdavidn			}
54020253Sjoerg			else {
54120253Sjoerg				time_t          now = time(NULL);
54220253Sjoerg				time_t          expire = parse_date(now, arg->val);
54320253Sjoerg
54452527Sdavidn				if (pwd->pw_expire != expire) {
54552527Sdavidn					pwd->pw_expire = expire;
54652527Sdavidn					edited = 1;
54752527Sdavidn				}
54820253Sjoerg			}
54920253Sjoerg		}
55020253Sjoerg
55152527Sdavidn		if ((arg = getarg(args, 's')) != NULL) {
55252527Sdavidn			char *shell = shell_path(cnf->shelldir, cnf->shells, arg->val);
55352527Sdavidn			if (shell == NULL)
55452527Sdavidn				shell = "";
55552527Sdavidn			if (strcmp(shell, pwd->pw_shell) != 0) {
55652527Sdavidn				pwd->pw_shell = shell;
55752527Sdavidn				edited = 1;
55852527Sdavidn			}
55952527Sdavidn		}
56020253Sjoerg
56152527Sdavidn		if (getarg(args, 'L')) {
56252527Sdavidn			if (cnf->default_class == NULL)
56352527Sdavidn				cnf->default_class = "";
56452527Sdavidn			if (strcmp(pwd->pw_class, cnf->default_class) != 0) {
56552527Sdavidn				pwd->pw_class = cnf->default_class;
56652527Sdavidn				edited = 1;
56752527Sdavidn			}
56852527Sdavidn		}
56952527Sdavidn
57020747Sdavidn		if ((arg  = getarg(args, 'd')) != NULL) {
571130629Srobert			if (strcmp(pwd->pw_dir, arg->val))
572130629Srobert				edited = 1;
57320747Sdavidn			if (stat(pwd->pw_dir = arg->val, &st) == -1) {
57420747Sdavidn				if (getarg(args, 'm') == NULL && strcmp(pwd->pw_dir, "/nonexistent") != 0)
57530259Scharnier				  warnx("WARNING: home `%s' does not exist", pwd->pw_dir);
57620747Sdavidn			} else if (!S_ISDIR(st.st_mode))
57730259Scharnier				warnx("WARNING: home `%s' is not a directory", pwd->pw_dir);
57820747Sdavidn		}
57920747Sdavidn
580124382Siedowse		if ((arg = getarg(args, 'w')) != NULL &&
581124382Siedowse		    getarg(args, 'h') == NULL && getarg(args, 'H') == NULL) {
58264918Sgreen			login_cap_t *lc;
58364918Sgreen
58464918Sgreen			lc = login_getpwclass(pwd);
58564918Sgreen			if (lc == NULL ||
586252688Sdes			    login_setcryptfmt(lc, "sha512", NULL) == NULL)
58764918Sgreen				warn("setting crypt(3) format");
58864918Sgreen			login_close(lc);
58920267Sjoerg			pwd->pw_passwd = pw_password(cnf, args, pwd->pw_name);
59052527Sdavidn			edited = 1;
59152527Sdavidn		}
59220267Sjoerg
59320253Sjoerg	} else {
59464918Sgreen		login_cap_t *lc;
59552527Sdavidn
59652527Sdavidn		/*
59752527Sdavidn		 * Add code
59852527Sdavidn		 */
59952527Sdavidn
60020253Sjoerg		if (a_name == NULL)	/* Required */
60130259Scharnier			errx(EX_DATAERR, "login name required");
60244229Sdavidn		else if ((pwd = GETPWNAM(a_name->val)) != NULL)	/* Exists */
60330259Scharnier			errx(EX_DATAERR, "login name `%s' already exists", a_name->val);
60420253Sjoerg
60520253Sjoerg		/*
60620253Sjoerg		 * Now, set up defaults for a new user
60720253Sjoerg		 */
60820253Sjoerg		pwd = &fakeuser;
60920253Sjoerg		pwd->pw_name = a_name->val;
61020253Sjoerg		pwd->pw_class = cnf->default_class ? cnf->default_class : "";
61120253Sjoerg		pwd->pw_uid = pw_uidpolicy(cnf, args);
61220253Sjoerg		pwd->pw_gid = pw_gidpolicy(cnf, args, pwd->pw_name, (gid_t) pwd->pw_uid);
61320253Sjoerg		pwd->pw_change = pw_pwdpolicy(cnf, args);
61420253Sjoerg		pwd->pw_expire = pw_exppolicy(cnf, args);
61520253Sjoerg		pwd->pw_dir = pw_homepolicy(cnf, args, pwd->pw_name);
61620253Sjoerg		pwd->pw_shell = pw_shellpolicy(cnf, args, NULL);
61764918Sgreen		lc = login_getpwclass(pwd);
618273187Sdes		if (lc == NULL || login_setcryptfmt(lc, "sha512", NULL) == NULL)
61964918Sgreen			warn("setting crypt(3) format");
62064918Sgreen		login_close(lc);
62164918Sgreen		pwd->pw_passwd = pw_password(cnf, args, pwd->pw_name);
62252527Sdavidn		edited = 1;
62320253Sjoerg
62420253Sjoerg		if (pwd->pw_uid == 0 && strcmp(pwd->pw_name, "root") != 0)
62530259Scharnier			warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd->pw_name);
62620253Sjoerg	}
62720253Sjoerg
62820253Sjoerg	/*
62920253Sjoerg	 * Shared add/edit code
63020253Sjoerg	 */
63152527Sdavidn	if ((arg = getarg(args, 'c')) != NULL) {
63252527Sdavidn		char	*gecos = pw_checkname((u_char *)arg->val, 1);
63352527Sdavidn		if (strcmp(pwd->pw_gecos, gecos) != 0) {
63452527Sdavidn			pwd->pw_gecos = gecos;
63552527Sdavidn			edited = 1;
63652527Sdavidn		}
63752527Sdavidn	}
63820253Sjoerg
639124382Siedowse	if ((arg = getarg(args, 'h')) != NULL ||
640124382Siedowse	    (arg = getarg(args, 'H')) != NULL) {
64163572Sdavidn		if (strcmp(arg->val, "-") == 0) {
64263572Sdavidn			if (!pwd->pw_passwd || *pwd->pw_passwd != '*') {
64363572Sdavidn				pwd->pw_passwd = "*";	/* No access */
64463572Sdavidn				edited = 1;
64563572Sdavidn			}
64663572Sdavidn		} else {
64720253Sjoerg			int             fd = atoi(arg->val);
648124382Siedowse			int		precrypt = (arg->ch == 'H');
64920253Sjoerg			int             b;
65020253Sjoerg			int             istty = isatty(fd);
65120253Sjoerg			struct termios  t;
65264918Sgreen			login_cap_t	*lc;
65320253Sjoerg
65420253Sjoerg			if (istty) {
65520253Sjoerg				if (tcgetattr(fd, &t) == -1)
65620253Sjoerg					istty = 0;
65720253Sjoerg				else {
65820253Sjoerg					struct termios  n = t;
65920253Sjoerg
66020253Sjoerg					/* Disable echo */
66120253Sjoerg					n.c_lflag &= ~(ECHO);
66220253Sjoerg					tcsetattr(fd, TCSANOW, &n);
663124382Siedowse					printf("%s%spassword for user %s:",
664124382Siedowse					     (mode == M_UPDATE) ? "new " : "",
665124382Siedowse					     precrypt ? "encrypted " : "",
666124382Siedowse					     pwd->pw_name);
66720253Sjoerg					fflush(stdout);
66820253Sjoerg				}
66920253Sjoerg			}
67020253Sjoerg			b = read(fd, line, sizeof(line) - 1);
67120253Sjoerg			if (istty) {	/* Restore state */
67220253Sjoerg				tcsetattr(fd, TCSANOW, &t);
67320253Sjoerg				fputc('\n', stdout);
67420253Sjoerg				fflush(stdout);
67520253Sjoerg			}
67620253Sjoerg			if (b < 0) {
677124382Siedowse				warn("-%c file descriptor", precrypt ? 'H' :
678124382Siedowse				    'h');
67920267Sjoerg				return EX_IOERR;
68020253Sjoerg			}
68120253Sjoerg			line[b] = '\0';
682168045Sle			if ((p = strpbrk(line, "\r\n")) != NULL)
68320253Sjoerg				*p = '\0';
68420253Sjoerg			if (!*line)
68530259Scharnier				errx(EX_DATAERR, "empty password read on file descriptor %d", fd);
686124382Siedowse			if (precrypt) {
687124382Siedowse				if (strchr(line, ':') != NULL)
688124382Siedowse					return EX_DATAERR;
689124382Siedowse				pwd->pw_passwd = line;
690124382Siedowse			} else {
691124382Siedowse				lc = login_getpwclass(pwd);
692124382Siedowse				if (lc == NULL ||
693273187Sdes				    login_setcryptfmt(lc, "sha512", NULL) == NULL)
694124382Siedowse					warn("setting crypt(3) format");
695124382Siedowse				login_close(lc);
696124382Siedowse				pwd->pw_passwd = pw_pwcrypt(line);
697124382Siedowse			}
69852527Sdavidn			edited = 1;
69920253Sjoerg		}
70020253Sjoerg	}
70120267Sjoerg
70220267Sjoerg	/*
70320267Sjoerg	 * Special case: -N only displays & exits
70420267Sjoerg	 */
70520267Sjoerg	if (getarg(args, 'N') != NULL)
70644386Sdavidn		return print_user(pwd,
70744386Sdavidn				  getarg(args, 'P') != NULL,
70844386Sdavidn				  getarg(args, '7') != NULL);
70920267Sjoerg
71021330Sdavidn	if (mode == M_ADD) {
71152527Sdavidn		edited = 1;	/* Always */
71252502Sdavidn		rc = addpwent(pwd);
71352502Sdavidn		if (rc == -1) {
71452502Sdavidn			warnx("user '%s' already exists", pwd->pw_name);
71552502Sdavidn			return EX_IOERR;
71652502Sdavidn		} else if (rc != 0) {
71756000Sdavidn			warn("passwd file update");
71852502Sdavidn			return EX_IOERR;
71952502Sdavidn		}
72052502Sdavidn		if (cnf->nispasswd && *cnf->nispasswd=='/') {
72152502Sdavidn			rc = addnispwent(cnf->nispasswd, pwd);
72252502Sdavidn			if (rc == -1)
72352502Sdavidn				warnx("User '%s' already exists in NIS passwd", pwd->pw_name);
72452502Sdavidn			else
72556000Sdavidn				warn("NIS passwd update");
72652502Sdavidn			/* NOTE: we treat NIS-only update errors as non-fatal */
72752502Sdavidn		}
72852512Sdavidn	} else if (mode == M_UPDATE || mode == M_LOCK || mode == M_UNLOCK) {
72952527Sdavidn		if (edited) {	/* Only updated this if required */
73052527Sdavidn			rc = chgpwent(a_name->val, pwd);
73152527Sdavidn			if (rc == -1) {
73252527Sdavidn				warnx("user '%s' does not exist (NIS?)", pwd->pw_name);
73352527Sdavidn				return EX_IOERR;
73452527Sdavidn			} else if (rc != 0) {
73556000Sdavidn				warn("passwd file update");
73652527Sdavidn				return EX_IOERR;
73752527Sdavidn			}
73852527Sdavidn			if ( cnf->nispasswd && *cnf->nispasswd=='/') {
73952527Sdavidn				rc = chgnispwent(cnf->nispasswd, a_name->val, pwd);
74052527Sdavidn				if (rc == -1)
74152527Sdavidn					warn("User '%s' not found in NIS passwd", pwd->pw_name);
74252527Sdavidn				else
74356000Sdavidn					warn("NIS passwd update");
74452527Sdavidn				/* NOTE: NIS-only update errors are not fatal */
74552527Sdavidn			}
74652502Sdavidn		}
74721330Sdavidn	}
74821330Sdavidn
74920253Sjoerg	/*
75020253Sjoerg	 * Ok, user is created or changed - now edit group file
75120253Sjoerg	 */
75220253Sjoerg
753242349Sbapt	if (mode == M_ADD || getarg(args, 'G') != NULL) {
754244737Sbapt		int i;
755242349Sbapt		for (i = 0; cnf->groups[i] != NULL; i++) {
756242349Sbapt			grp = GETGRNAM(cnf->groups[i]);
757244737Sbapt			grp = gr_add(grp, pwd->pw_name);
758244737Sbapt			/*
759244737Sbapt			 * grp can only be NULL in 2 cases:
760244737Sbapt			 * - the new member is already a member
761244737Sbapt			 * - a problem with memory occurs
762244737Sbapt			 * in both cases we want to skip now.
763244737Sbapt			 */
764244737Sbapt			if (grp == NULL)
765242349Sbapt				continue;
766242349Sbapt			chggrent(cnf->groups[i], grp);
767245114Smjg			free(grp);
768242349Sbapt		}
769242349Sbapt	}
770242349Sbapt
771242349Sbapt
77261759Sdavidn	/* go get a current version of pwd */
77361759Sdavidn	pwd = GETPWNAM(a_name->val);
77461759Sdavidn	if (pwd == NULL) {
77561759Sdavidn		/* This will fail when we rename, so special case that */
77661759Sdavidn		if (mode == M_UPDATE && (arg = getarg(args, 'l')) != NULL) {
77761759Sdavidn			a_name->val = arg->val;		/* update new name */
77861759Sdavidn			pwd = GETPWNAM(a_name->val);	/* refetch renamed rec */
77961759Sdavidn		}
78061759Sdavidn	}
78161759Sdavidn	if (pwd == NULL)	/* can't go on without this */
78230259Scharnier		errx(EX_NOUSER, "user '%s' disappeared during update", a_name->val);
78320253Sjoerg
78444229Sdavidn	grp = GETGRGID(pwd->pw_gid);
78598744Sdwmalone	pw_log(cnf, mode, W_USER, "%s(%ld):%s(%ld):%s:%s:%s",
78620253Sjoerg	       pwd->pw_name, (long) pwd->pw_uid,
78720253Sjoerg	    grp ? grp->gr_name : "unknown", (long) (grp ? grp->gr_gid : -1),
78820253Sjoerg	       pwd->pw_gecos, pwd->pw_dir, pwd->pw_shell);
78920253Sjoerg
79020253Sjoerg	/*
79120253Sjoerg	 * If adding, let's touch and chown the user's mail file. This is not
79220253Sjoerg	 * strictly necessary under BSD with a 0755 maildir but it also
79320253Sjoerg	 * doesn't hurt anything to create the empty mailfile
79420253Sjoerg	 */
79520253Sjoerg	if (mode == M_ADD) {
79644229Sdavidn		if (!PWALTDIR()) {
79744229Sdavidn			sprintf(line, "%s/%s", _PATH_MAILDIR, pwd->pw_name);
79844229Sdavidn			close(open(line, O_RDWR | O_CREAT, 0600));	/* Preserve contents &
79944229Sdavidn									 * mtime */
80044229Sdavidn			chown(line, pwd->pw_uid, pwd->pw_gid);
80120253Sjoerg		}
80220253Sjoerg	}
80352527Sdavidn
80420253Sjoerg	/*
80582868Sdd	 * Let's create and populate the user's home directory. Note
80620253Sjoerg	 * that this also `works' for editing users if -m is used, but
80720253Sjoerg	 * existing files will *not* be overwritten.
80820253Sjoerg	 */
80944229Sdavidn	if (!PWALTDIR() && getarg(args, 'm') != NULL && pwd->pw_dir && *pwd->pw_dir == '/' && pwd->pw_dir[1]) {
810168044Sle		copymkdir(pwd->pw_dir, cnf->dotdir, cnf->homemode, pwd->pw_uid, pwd->pw_gid);
81120253Sjoerg		pw_log(cnf, mode, W_USER, "%s(%ld) home %s made",
81220253Sjoerg		       pwd->pw_name, (long) pwd->pw_uid, pwd->pw_dir);
81320253Sjoerg	}
81452527Sdavidn
81582868Sdd
81682868Sdd	/*
81782868Sdd	 * Finally, send mail to the new user as well, if we are asked to
81882868Sdd	 */
81982868Sdd	if (mode == M_ADD && !PWALTDIR() && cnf->newmail && *cnf->newmail && (fp = fopen(cnf->newmail, "r")) != NULL) {
82082868Sdd		FILE           *pfp = popen(_PATH_SENDMAIL " -t", "w");
82182868Sdd
82282868Sdd		if (pfp == NULL)
82382868Sdd			warn("sendmail");
82482868Sdd		else {
82582868Sdd			fprintf(pfp, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd->pw_name);
82682868Sdd			while (fgets(line, sizeof(line), fp) != NULL) {
82782868Sdd				/* Do substitutions? */
82882868Sdd				fputs(line, pfp);
82982868Sdd			}
83082868Sdd			pclose(pfp);
83182868Sdd			pw_log(cnf, mode, W_USER, "%s(%ld) new user mail sent",
83282868Sdd			    pwd->pw_name, (long) pwd->pw_uid);
83382868Sdd		}
83482868Sdd		fclose(fp);
83582868Sdd	}
83682868Sdd
83720267Sjoerg	return EXIT_SUCCESS;
83820253Sjoerg}
83920253Sjoerg
84020253Sjoerg
84120253Sjoergstatic          uid_t
84220253Sjoergpw_uidpolicy(struct userconf * cnf, struct cargs * args)
84320253Sjoerg{
84420253Sjoerg	struct passwd  *pwd;
84520253Sjoerg	uid_t           uid = (uid_t) - 1;
84620253Sjoerg	struct carg    *a_uid = getarg(args, 'u');
84720253Sjoerg
84820253Sjoerg	/*
84920253Sjoerg	 * Check the given uid, if any
85020253Sjoerg	 */
85120253Sjoerg	if (a_uid != NULL) {
85220253Sjoerg		uid = (uid_t) atol(a_uid->val);
85320253Sjoerg
85444229Sdavidn		if ((pwd = GETPWUID(uid)) != NULL && getarg(args, 'o') == NULL)
85530259Scharnier			errx(EX_DATAERR, "uid `%ld' has already been allocated", (long) pwd->pw_uid);
85620253Sjoerg	} else {
85720253Sjoerg		struct bitmap   bm;
85820253Sjoerg
85920253Sjoerg		/*
86020253Sjoerg		 * We need to allocate the next available uid under one of
86120253Sjoerg		 * two policies a) Grab the first unused uid b) Grab the
86220253Sjoerg		 * highest possible unused uid
86320253Sjoerg		 */
86420253Sjoerg		if (cnf->min_uid >= cnf->max_uid) {	/* Sanity
86520253Sjoerg							 * claus^H^H^H^Hheck */
86620253Sjoerg			cnf->min_uid = 1000;
86720253Sjoerg			cnf->max_uid = 32000;
86820253Sjoerg		}
86920253Sjoerg		bm = bm_alloc(cnf->max_uid - cnf->min_uid + 1);
87020253Sjoerg
87120253Sjoerg		/*
87220253Sjoerg		 * Now, let's fill the bitmap from the password file
87320253Sjoerg		 */
87444229Sdavidn		SETPWENT();
87544229Sdavidn		while ((pwd = GETPWENT()) != NULL)
87644229Sdavidn			if (pwd->pw_uid >= (uid_t) cnf->min_uid && pwd->pw_uid <= (uid_t) cnf->max_uid)
87720253Sjoerg				bm_setbit(&bm, pwd->pw_uid - cnf->min_uid);
87844229Sdavidn		ENDPWENT();
87920253Sjoerg
88020253Sjoerg		/*
88120253Sjoerg		 * Then apply the policy, with fallback to reuse if necessary
88220253Sjoerg		 */
88320253Sjoerg		if (cnf->reuse_uids || (uid = (uid_t) (bm_lastset(&bm) + cnf->min_uid + 1)) > cnf->max_uid)
88420253Sjoerg			uid = (uid_t) (bm_firstunset(&bm) + cnf->min_uid);
88520253Sjoerg
88620253Sjoerg		/*
88720253Sjoerg		 * Another sanity check
88820253Sjoerg		 */
88920253Sjoerg		if (uid < cnf->min_uid || uid > cnf->max_uid)
89030259Scharnier			errx(EX_SOFTWARE, "unable to allocate a new uid - range fully used");
89120253Sjoerg		bm_dealloc(&bm);
89220253Sjoerg	}
89320253Sjoerg	return uid;
89420253Sjoerg}
89520253Sjoerg
89620253Sjoerg
89720253Sjoergstatic          uid_t
89820253Sjoergpw_gidpolicy(struct userconf * cnf, struct cargs * args, char *nam, gid_t prefer)
89920253Sjoerg{
90020253Sjoerg	struct group   *grp;
90120253Sjoerg	gid_t           gid = (uid_t) - 1;
90220253Sjoerg	struct carg    *a_gid = getarg(args, 'g');
90320253Sjoerg
90420253Sjoerg	/*
90520253Sjoerg	 * If no arg given, see if default can help out
90620253Sjoerg	 */
90720253Sjoerg	if (a_gid == NULL && cnf->default_group && *cnf->default_group)
90820253Sjoerg		a_gid = addarg(args, 'g', cnf->default_group);
90920253Sjoerg
91020253Sjoerg	/*
91120253Sjoerg	 * Check the given gid, if any
91220253Sjoerg	 */
91344229Sdavidn	SETGRENT();
91420253Sjoerg	if (a_gid != NULL) {
91544229Sdavidn		if ((grp = GETGRNAM(a_gid->val)) == NULL) {
91620253Sjoerg			gid = (gid_t) atol(a_gid->val);
91761957Sache			if ((gid == 0 && !isdigit((unsigned char)*a_gid->val)) || (grp = GETGRGID(gid)) == NULL)
91830259Scharnier				errx(EX_NOUSER, "group `%s' is not defined", a_gid->val);
91920253Sjoerg		}
92020253Sjoerg		gid = grp->gr_gid;
921272192Sdteske	} else if ((grp = GETGRNAM(nam)) != NULL &&
922272192Sdteske	    (grp->gr_mem == NULL || grp->gr_mem[0] == NULL)) {
92320267Sjoerg		gid = grp->gr_gid;  /* Already created? Use it anyway... */
92420253Sjoerg	} else {
92520253Sjoerg		struct cargs    grpargs;
92620253Sjoerg		char            tmp[32];
92720253Sjoerg
92820253Sjoerg		LIST_INIT(&grpargs);
92920253Sjoerg		addarg(&grpargs, 'n', nam);
93020253Sjoerg
93120253Sjoerg		/*
93220253Sjoerg		 * We need to auto-create a group with the user's name. We
93320253Sjoerg		 * can send all the appropriate output to our sister routine
93420253Sjoerg		 * bit first see if we can create a group with gid==uid so we
93520253Sjoerg		 * can keep the user and group ids in sync. We purposely do
93620253Sjoerg		 * NOT check the gid range if we can force the sync. If the
93720253Sjoerg		 * user's name dups an existing group, then the group add
93820253Sjoerg		 * function will happily handle that case for us and exit.
93920253Sjoerg		 */
94044229Sdavidn		if (GETGRGID(prefer) == NULL) {
94120253Sjoerg			sprintf(tmp, "%lu", (unsigned long) prefer);
94220253Sjoerg			addarg(&grpargs, 'g', tmp);
94320253Sjoerg		}
94420267Sjoerg		if (getarg(args, 'N'))
94520267Sjoerg		{
94620267Sjoerg			addarg(&grpargs, 'N', NULL);
94720267Sjoerg			addarg(&grpargs, 'q', NULL);
94820267Sjoerg			gid = pw_group(cnf, M_NEXT, &grpargs);
94920267Sjoerg		}
95020267Sjoerg		else
95120267Sjoerg		{
95220267Sjoerg			pw_group(cnf, M_ADD, &grpargs);
95344229Sdavidn			if ((grp = GETGRNAM(nam)) != NULL)
95420267Sjoerg				gid = grp->gr_gid;
95520267Sjoerg		}
95670486Sben		a_gid = LIST_FIRST(&grpargs);
95720253Sjoerg		while (a_gid != NULL) {
95870486Sben			struct carg    *t = LIST_NEXT(a_gid, list);
95920253Sjoerg			LIST_REMOVE(a_gid, list);
96020253Sjoerg			a_gid = t;
96120253Sjoerg		}
96220253Sjoerg	}
96344229Sdavidn	ENDGRENT();
96420253Sjoerg	return gid;
96520253Sjoerg}
96620253Sjoerg
96720253Sjoerg
96820253Sjoergstatic          time_t
96920253Sjoergpw_pwdpolicy(struct userconf * cnf, struct cargs * args)
97020253Sjoerg{
97120253Sjoerg	time_t          result = 0;
97220253Sjoerg	time_t          now = time(NULL);
97327831Sdavidn	struct carg    *arg = getarg(args, 'p');
97420253Sjoerg
97520253Sjoerg	if (arg != NULL) {
97620253Sjoerg		if ((result = parse_date(now, arg->val)) == now)
97730259Scharnier			errx(EX_DATAERR, "invalid date/time `%s'", arg->val);
97820253Sjoerg	} else if (cnf->password_days > 0)
97920253Sjoerg		result = now + ((long) cnf->password_days * 86400L);
98020253Sjoerg	return result;
98120253Sjoerg}
98220253Sjoerg
98320253Sjoerg
98420253Sjoergstatic          time_t
98520253Sjoergpw_exppolicy(struct userconf * cnf, struct cargs * args)
98620253Sjoerg{
98720253Sjoerg	time_t          result = 0;
98820253Sjoerg	time_t          now = time(NULL);
98920253Sjoerg	struct carg    *arg = getarg(args, 'e');
99020253Sjoerg
99120253Sjoerg	if (arg != NULL) {
99220253Sjoerg		if ((result = parse_date(now, arg->val)) == now)
99330259Scharnier			errx(EX_DATAERR, "invalid date/time `%s'", arg->val);
99420253Sjoerg	} else if (cnf->expire_days > 0)
99520253Sjoerg		result = now + ((long) cnf->expire_days * 86400L);
99620253Sjoerg	return result;
99720253Sjoerg}
99820253Sjoerg
99920253Sjoerg
100020253Sjoergstatic char    *
100120253Sjoergpw_homepolicy(struct userconf * cnf, struct cargs * args, char const * user)
100220253Sjoerg{
100320253Sjoerg	struct carg    *arg = getarg(args, 'd');
100420253Sjoerg
100520253Sjoerg	if (arg)
100620253Sjoerg		return arg->val;
100720253Sjoerg	else {
100820253Sjoerg		static char     home[128];
100920253Sjoerg
101020253Sjoerg		if (cnf->home == NULL || *cnf->home == '\0')
101130259Scharnier			errx(EX_CONFIG, "no base home directory set");
101220253Sjoerg		sprintf(home, "%s/%s", cnf->home, user);
101320253Sjoerg		return home;
101420253Sjoerg	}
101520253Sjoerg}
101620253Sjoerg
101720253Sjoergstatic char    *
101820253Sjoergshell_path(char const * path, char *shells[], char *sh)
101920253Sjoerg{
102020253Sjoerg	if (sh != NULL && (*sh == '/' || *sh == '\0'))
102120253Sjoerg		return sh;	/* specified full path or forced none */
102220253Sjoerg	else {
102320253Sjoerg		char           *p;
102420253Sjoerg		char            paths[_UC_MAXLINE];
102520253Sjoerg
102620253Sjoerg		/*
102720253Sjoerg		 * We need to search paths
102820253Sjoerg		 */
1029130633Srobert		strlcpy(paths, path, sizeof(paths));
103020253Sjoerg		for (p = strtok(paths, ": \t\r\n"); p != NULL; p = strtok(NULL, ": \t\r\n")) {
103120253Sjoerg			int             i;
103220253Sjoerg			static char     shellpath[256];
103320253Sjoerg
103420253Sjoerg			if (sh != NULL) {
103520253Sjoerg				sprintf(shellpath, "%s/%s", p, sh);
103620253Sjoerg				if (access(shellpath, X_OK) == 0)
103720253Sjoerg					return shellpath;
103820253Sjoerg			} else
103920253Sjoerg				for (i = 0; i < _UC_MAXSHELLS && shells[i] != NULL; i++) {
104020253Sjoerg					sprintf(shellpath, "%s/%s", p, shells[i]);
104120253Sjoerg					if (access(shellpath, X_OK) == 0)
104220253Sjoerg						return shellpath;
104320253Sjoerg				}
104420253Sjoerg		}
104520253Sjoerg		if (sh == NULL)
104630259Scharnier			errx(EX_OSFILE, "can't find shell `%s' in shell paths", sh);
104730259Scharnier		errx(EX_CONFIG, "no default shell available or defined");
104820253Sjoerg		return NULL;
104920253Sjoerg	}
105020253Sjoerg}
105120253Sjoerg
105220253Sjoerg
105320253Sjoergstatic char    *
105420253Sjoergpw_shellpolicy(struct userconf * cnf, struct cargs * args, char *newshell)
105520253Sjoerg{
105620253Sjoerg	char           *sh = newshell;
105720253Sjoerg	struct carg    *arg = getarg(args, 's');
105820253Sjoerg
105920253Sjoerg	if (newshell == NULL && arg != NULL)
106020253Sjoerg		sh = arg->val;
106120253Sjoerg	return shell_path(cnf->shelldir, cnf->shells, sh ? sh : cnf->shell_default);
106220253Sjoerg}
106320253Sjoerg
1064179365Santoine#define	SALTSIZE	32
106520253Sjoerg
1066179365Santoinestatic char const chars[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./";
1067179365Santoine
106820253Sjoergchar           *
106920253Sjoergpw_pwcrypt(char *password)
107020253Sjoerg{
107120253Sjoerg	int             i;
1072179365Santoine	char            salt[SALTSIZE + 1];
1073231994Skevlo	char		*cryptpw;
107420253Sjoerg
107520253Sjoerg	static char     buf[256];
107620253Sjoerg
107720253Sjoerg	/*
107820253Sjoerg	 * Calculate a salt value
107920253Sjoerg	 */
1080179365Santoine	for (i = 0; i < SALTSIZE; i++)
1081181785Sache		salt[i] = chars[arc4random_uniform(sizeof(chars) - 1)];
1082179365Santoine	salt[SALTSIZE] = '\0';
108320253Sjoerg
1084231994Skevlo	cryptpw = crypt(password, salt);
1085231994Skevlo	if (cryptpw == NULL)
1086231994Skevlo		errx(EX_CONFIG, "crypt(3) failure");
1087231994Skevlo	return strcpy(buf, cryptpw);
108820253Sjoerg}
108920253Sjoerg
109020590Sdavidn
109120253Sjoergstatic char    *
109220253Sjoergpw_password(struct userconf * cnf, struct cargs * args, char const * user)
109320253Sjoerg{
109420253Sjoerg	int             i, l;
109520253Sjoerg	char            pwbuf[32];
109620253Sjoerg
109720253Sjoerg	switch (cnf->default_password) {
109820253Sjoerg	case -1:		/* Random password */
109973563Skris		l = (arc4random() % 8 + 8);	/* 8 - 16 chars */
110020253Sjoerg		for (i = 0; i < l; i++)
1101181785Sache			pwbuf[i] = chars[arc4random_uniform(sizeof(chars)-1)];
110220253Sjoerg		pwbuf[i] = '\0';
110320253Sjoerg
110420253Sjoerg		/*
110520253Sjoerg		 * We give this information back to the user
110620253Sjoerg		 */
1107124382Siedowse		if (getarg(args, 'h') == NULL && getarg(args, 'H') == NULL &&
1108124382Siedowse		    getarg(args, 'N') == NULL) {
110961957Sache			if (isatty(STDOUT_FILENO))
111020712Sdavidn				printf("Password for '%s' is: ", user);
111120253Sjoerg			printf("%s\n", pwbuf);
111220253Sjoerg			fflush(stdout);
111320253Sjoerg		}
111420253Sjoerg		break;
111520253Sjoerg
111620253Sjoerg	case -2:		/* No password at all! */
111720253Sjoerg		return "";
111820253Sjoerg
111920253Sjoerg	case 0:		/* No login - default */
112020253Sjoerg	default:
112120253Sjoerg		return "*";
112220253Sjoerg
112320253Sjoerg	case 1:		/* user's name */
1124130633Srobert		strlcpy(pwbuf, user, sizeof(pwbuf));
112520253Sjoerg		break;
112620253Sjoerg	}
112720253Sjoerg	return pw_pwcrypt(pwbuf);
112820253Sjoerg}
112920253Sjoerg
113020253Sjoerg
113120253Sjoergstatic int
113244386Sdavidnprint_user(struct passwd * pwd, int pretty, int v7)
113320253Sjoerg{
113420253Sjoerg	if (!pretty) {
1135242349Sbapt		char            *buf;
113620253Sjoerg
1137242349Sbapt		if (!v7)
1138242349Sbapt			pwd->pw_passwd = (pwd->pw_passwd == NULL) ? "" : "*";
1139242349Sbapt
1140242349Sbapt		buf = v7 ? pw_make_v7(pwd) : pw_make(pwd);
1141242349Sbapt		printf("%s\n", buf);
1142242349Sbapt		free(buf);
114320253Sjoerg	} else {
114420267Sjoerg		int		j;
114520253Sjoerg		char           *p;
114644229Sdavidn		struct group   *grp = GETGRGID(pwd->pw_gid);
114720253Sjoerg		char            uname[60] = "User &", office[60] = "[None]",
114820253Sjoerg		                wphone[60] = "[None]", hphone[60] = "[None]";
114920590Sdavidn		char		acexpire[32] = "[None]", pwexpire[32] = "[None]";
115020590Sdavidn		struct tm *    tptr;
115120253Sjoerg
115220253Sjoerg		if ((p = strtok(pwd->pw_gecos, ",")) != NULL) {
1153130633Srobert			strlcpy(uname, p, sizeof(uname));
115420253Sjoerg			if ((p = strtok(NULL, ",")) != NULL) {
1155130633Srobert				strlcpy(office, p, sizeof(office));
115620253Sjoerg				if ((p = strtok(NULL, ",")) != NULL) {
1157130633Srobert					strlcpy(wphone, p, sizeof(wphone));
115820253Sjoerg					if ((p = strtok(NULL, "")) != NULL) {
1159130633Srobert						strlcpy(hphone, p,
1160130633Srobert						    sizeof(hphone));
116120253Sjoerg					}
116220253Sjoerg				}
116320253Sjoerg			}
116420253Sjoerg		}
116520253Sjoerg		/*
116620253Sjoerg		 * Handle '&' in gecos field
116720253Sjoerg		 */
116820253Sjoerg		if ((p = strchr(uname, '&')) != NULL) {
116920253Sjoerg			int             l = strlen(pwd->pw_name);
117020253Sjoerg			int             m = strlen(p);
117120253Sjoerg
117220253Sjoerg			memmove(p + l, p + 1, m);
117320253Sjoerg			memmove(p, pwd->pw_name, l);
117461957Sache			*p = (char) toupper((unsigned char)*p);
117520253Sjoerg		}
117620590Sdavidn		if (pwd->pw_expire > (time_t)0 && (tptr = localtime(&pwd->pw_expire)) != NULL)
117774569Sache			strftime(acexpire, sizeof acexpire, "%c", tptr);
117861957Sache		if (pwd->pw_change > (time_t)0 && (tptr = localtime(&pwd->pw_change)) != NULL)
117974569Sache			strftime(pwexpire, sizeof pwexpire, "%c", tptr);
118022394Sdavidn		printf("Login Name: %-15s   #%-12ld Group: %-15s   #%ld\n"
118120747Sdavidn		       " Full Name: %s\n"
118220747Sdavidn		       "      Home: %-26.26s      Class: %s\n"
118320747Sdavidn		       "     Shell: %-26.26s     Office: %s\n"
118420747Sdavidn		       "Work Phone: %-26.26s Home Phone: %s\n"
118520747Sdavidn		       "Acc Expire: %-26.26s Pwd Expire: %s\n",
118620253Sjoerg		       pwd->pw_name, (long) pwd->pw_uid,
118720253Sjoerg		       grp ? grp->gr_name : "(invalid)", (long) pwd->pw_gid,
118820253Sjoerg		       uname, pwd->pw_dir, pwd->pw_class,
118920590Sdavidn		       pwd->pw_shell, office, wphone, hphone,
119020590Sdavidn		       acexpire, pwexpire);
119144229Sdavidn	        SETGRENT();
119220267Sjoerg		j = 0;
119344229Sdavidn		while ((grp=GETGRENT()) != NULL)
119420267Sjoerg		{
119520267Sjoerg			int     i = 0;
1196272192Sdteske			if (grp->gr_mem != NULL) {
1197272192Sdteske				while (grp->gr_mem[i] != NULL)
119820267Sjoerg				{
1199272192Sdteske					if (strcmp(grp->gr_mem[i], pwd->pw_name)==0)
1200272192Sdteske					{
1201272192Sdteske						printf(j++ == 0 ? "    Groups: %s" : ",%s", grp->gr_name);
1202272192Sdteske						break;
1203272192Sdteske					}
1204272192Sdteske					++i;
120520267Sjoerg				}
120620267Sjoerg			}
120720267Sjoerg		}
120844229Sdavidn		ENDGRENT();
120961957Sache		printf("%s", j ? "\n" : "");
121020253Sjoerg	}
121120267Sjoerg	return EXIT_SUCCESS;
121220253Sjoerg}
121320253Sjoerg
121420679Sdavidnchar    *
121520679Sdavidnpw_checkname(u_char *name, int gecos)
121620253Sjoerg{
1217109961Sgad	char showch[8];
1218109961Sgad	u_char const *badchars, *ch, *showtype;
1219109961Sgad	int reject;
122020253Sjoerg
1221109961Sgad	ch = name;
1222109961Sgad	reject = 0;
1223109961Sgad	if (gecos) {
1224109961Sgad		/* See if the name is valid as a gecos (comment) field. */
1225109961Sgad		badchars = ":!@";
1226109961Sgad		showtype = "gecos field";
1227109961Sgad	} else {
1228109961Sgad		/* See if the name is valid as a userid or group. */
1229109961Sgad		badchars = " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1230109961Sgad		showtype = "userid/group name";
1231109961Sgad		/* Userids and groups can not have a leading '-'. */
1232109961Sgad		if (*ch == '-')
1233109961Sgad			reject = 1;
123420253Sjoerg	}
1235109961Sgad	if (!reject) {
1236109961Sgad		while (*ch) {
1237109961Sgad			if (strchr(badchars, *ch) != NULL || *ch < ' ' ||
1238109961Sgad			    *ch == 127) {
1239109961Sgad				reject = 1;
1240109961Sgad				break;
1241109961Sgad			}
1242109961Sgad			/* 8-bit characters are only allowed in GECOS fields */
1243109961Sgad			if (!gecos && (*ch & 0x80)) {
1244109961Sgad				reject = 1;
1245109961Sgad				break;
1246109961Sgad			}
1247109961Sgad			ch++;
1248109961Sgad		}
1249109961Sgad	}
1250109961Sgad	/*
1251109961Sgad	 * A `$' is allowed as the final character for userids and groups,
1252109961Sgad	 * mainly for the benefit of samba.
1253109961Sgad	 */
1254109961Sgad	if (reject && !gecos) {
1255109961Sgad		if (*ch == '$' && *(ch + 1) == '\0') {
1256109961Sgad			reject = 0;
1257109961Sgad			ch++;
1258109961Sgad		}
1259109961Sgad	}
1260109961Sgad	if (reject) {
1261109961Sgad		snprintf(showch, sizeof(showch), (*ch >= ' ' && *ch < 127)
1262109961Sgad		    ? "`%c'" : "0x%02x", *ch);
1263228673Sdim		errx(EX_DATAERR, "invalid character %s at position %td in %s",
1264109961Sgad		    showch, (ch - name), showtype);
1265109961Sgad	}
1266109961Sgad	if (!gecos && (ch - name) > LOGNAMESIZE)
1267109961Sgad		errx(EX_DATAERR, "name too long `%s' (max is %d)", name,
1268109961Sgad		    LOGNAMESIZE);
126920679Sdavidn	return (char *)name;
127020253Sjoerg}
127120253Sjoerg
127220253Sjoerg
127320253Sjoergstatic void
127420253Sjoergrmat(uid_t uid)
127520253Sjoerg{
127620253Sjoerg	DIR            *d = opendir("/var/at/jobs");
127720253Sjoerg
127820253Sjoerg	if (d != NULL) {
127920253Sjoerg		struct dirent  *e;
128020253Sjoerg
128120253Sjoerg		while ((e = readdir(d)) != NULL) {
128220253Sjoerg			struct stat     st;
128320253Sjoerg
128420253Sjoerg			if (strncmp(e->d_name, ".lock", 5) != 0 &&
128520253Sjoerg			    stat(e->d_name, &st) == 0 &&
128620253Sjoerg			    !S_ISDIR(st.st_mode) &&
128720253Sjoerg			    st.st_uid == uid) {
128820253Sjoerg				char            tmp[MAXPATHLEN];
128920253Sjoerg
129020253Sjoerg				sprintf(tmp, "/usr/bin/atrm %s", e->d_name);
129120253Sjoerg				system(tmp);
129220253Sjoerg			}
129320253Sjoerg		}
129420253Sjoerg		closedir(d);
129520253Sjoerg	}
129620253Sjoerg}
129720747Sdavidn
129820747Sdavidnstatic void
129985145Sachermopie(char const * name)
130020747Sdavidn{
130185145Sache	static const char etcopie[] = "/etc/opiekeys";
130285145Sache	FILE   *fp = fopen(etcopie, "r+");
130320747Sdavidn
130421052Sdavidn	if (fp != NULL) {
130521052Sdavidn		char	tmp[1024];
130621052Sdavidn		off_t	atofs = 0;
130721052Sdavidn		int	length = strlen(name);
130820747Sdavidn
130921052Sdavidn		while (fgets(tmp, sizeof tmp, fp) != NULL) {
131021052Sdavidn			if (strncmp(name, tmp, length) == 0 && tmp[length]==' ') {
131121052Sdavidn				if (fseek(fp, atofs, SEEK_SET) == 0) {
131221052Sdavidn					fwrite("#", 1, 1, fp);	/* Comment username out */
131321052Sdavidn				}
131421052Sdavidn				break;
131520747Sdavidn			}
131621052Sdavidn			atofs = ftell(fp);
131720747Sdavidn		}
131821052Sdavidn		/*
131921052Sdavidn		 * If we got an error of any sort, don't update!
132021052Sdavidn		 */
132121052Sdavidn		fclose(fp);
132220747Sdavidn	}
132320747Sdavidn}
132420747Sdavidn
1325