]>
git.cameronkatri.com Git - pw-darwin.git/blob - pw/pw_user.c
3 * David L. Nugent. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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
29 static const char rcsid
[] =
36 #include <sys/param.h>
40 #include <sys/types.h>
42 #include <sys/resource.h>
43 #include <login_cap.h>
50 #define LOGNAMESIZE (MAXLOGNAME-1)
52 static char locked_str
[] = "*LOCKED*";
54 static int delete_user(struct userconf
*cnf
, struct passwd
*pwd
,
55 char *name
, int delete, int mode
);
56 static int print_user(struct passwd
* pwd
);
57 static uid_t
pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
);
58 static uid_t
pw_gidpolicy(struct cargs
* args
, char *nam
, gid_t prefer
);
59 static time_t pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
);
60 static time_t pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
);
61 static char *pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
);
62 static char *pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
);
63 static char *pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
);
64 static char *shell_path(char const * path
, char *shells
[], char *sh
);
65 static void rmat(uid_t uid
);
66 static void rmopie(char const * name
);
69 create_and_populate_homedir(int mode
, struct passwd
*pwd
)
71 char *homedir
, *dotdir
;
72 struct userconf
*cnf
= conf
.userconf
;
74 homedir
= dotdir
= NULL
;
76 if (conf
.rootdir
[0] != '\0') {
77 asprintf(&homedir
, "%s/%s", conf
.rootdir
, pwd
->pw_dir
);
79 errx(EX_OSERR
, "out of memory");
80 asprintf(&dotdir
, "%s/%s", conf
.rootdir
, cnf
->dotdir
);
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
);
90 * -C config configuration file
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
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
122 pw_user(int mode
, char *name
, long id
, struct cargs
* args
)
128 struct passwd
*pwd
= NULL
;
131 struct userconf
*cnf
;
132 char line
[_PASSWORD_LEN
+1];
133 char path
[MAXPATHLEN
];
138 static struct passwd fakeuser
=
150 #if defined(__FreeBSD__)
158 * With M_NEXT, we only need to return the
163 uid_t next
= pw_uidpolicy(cnf
, args
);
164 if (getarg(args
, 'q'))
167 pw_group(mode
, name
, -1, args
);
172 * We can do all of the common legwork here
175 if ((arg
= getarg(args
, 'b')) != NULL
) {
176 cnf
->home
= arg
->val
;
179 if ((arg
= getarg(args
, 'M')) != NULL
) {
181 if ((set
= setmode(dmode_c
)) == NULL
)
182 errx(EX_DATAERR
, "invalid directory creation mode '%s'",
184 cnf
->homemode
= getmode(set
, _DEF_DIRMODE
);
189 * If we'll need to use it or we're updating it,
190 * then create the base home directory if necessary
192 if (arg
!= NULL
|| getarg(args
, 'm') != NULL
) {
193 int l
= strlen(cnf
->home
);
195 if (l
> 1 && cnf
->home
[l
-1] == '/') /* Shave off any trailing path delimiter */
196 cnf
->home
[--l
] = '\0';
198 if (l
< 2 || *cnf
->home
!= '/') /* Check for absolute path name */
199 errx(EX_DATAERR
, "invalid base directory for home '%s'", cnf
->home
);
201 if (stat(cnf
->home
, &st
) == -1) {
202 char dbuf
[MAXPATHLEN
];
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
210 if (strchr(cnf
->home
+1, '/') == NULL
) {
211 snprintf(dbuf
, MAXPATHLEN
, "/usr%s", cnf
->home
);
212 if (mkdir(dbuf
, _DEF_DIRMODE
) != -1 || errno
== EEXIST
) {
215 * Skip first "/" and create symlink:
218 symlink(dbuf
+1, cnf
->home
);
220 /* If this falls, fall back to old method */
222 strlcpy(dbuf
, cnf
->home
, sizeof(dbuf
));
224 if (stat(dbuf
, &st
) == -1) {
225 while ((p
= strchr(p
+ 1, '/')) != NULL
) {
227 if (stat(dbuf
, &st
) == -1) {
228 if (mkdir(dbuf
, _DEF_DIRMODE
) == -1)
231 } else if (!S_ISDIR(st
.st_mode
))
232 errx(EX_OSFILE
, "'%s' (root home parent) is not a directory", dbuf
);
236 if (stat(dbuf
, &st
) == -1) {
237 if (mkdir(dbuf
, _DEF_DIRMODE
) == -1) {
238 direrr
: err(EX_OSFILE
, "mkdir '%s'", dbuf
);
242 } else if (!S_ISDIR(st
.st_mode
))
243 errx(EX_OSFILE
, "root home `%s' is not a directory", cnf
->home
);
246 if ((arg
= getarg(args
, 'e')) != NULL
)
247 cnf
->expire_days
= atoi(arg
->val
);
249 if ((arg
= getarg(args
, 'y')) != NULL
)
250 cnf
->nispasswd
= arg
->val
;
252 if ((arg
= getarg(args
, 'p')) != NULL
&& arg
->val
)
253 cnf
->password_days
= atoi(arg
->val
);
255 if ((arg
= getarg(args
, 'g')) != NULL
) {
256 if (!*(p
= arg
->val
)) /* Handle empty group list specially */
257 cnf
->default_group
= "";
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
);
263 cnf
->default_group
= newstr(grp
->gr_name
);
266 if ((arg
= getarg(args
, 'L')) != NULL
)
267 cnf
->default_class
= pw_checkname(arg
->val
, 0);
269 if ((arg
= getarg(args
, 'G')) != NULL
&& arg
->val
) {
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
);
277 if (extendarray(&cnf
->groups
, &cnf
->numgroups
, i
+ 2) != -1)
278 cnf
->groups
[i
++] = newstr(grp
->gr_name
);
280 while (i
< cnf
->numgroups
)
281 cnf
->groups
[i
++] = NULL
;
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
);
289 if ((arg
= getarg(args
, 's')) != NULL
)
290 cnf
->shell_default
= arg
->val
;
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 (getarg(args
, 'n') != 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)
300 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_uid
= (uid_t
) atoi(p
)) < cnf
->min_uid
)
301 cnf
->max_uid
= 32000;
303 if ((arg
= getarg(args
, 'i')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
304 if ((cnf
->min_gid
= (gid_t
) atoi(p
)) == 0)
306 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_gid
= (gid_t
) atoi(p
)) < cnf
->min_gid
)
307 cnf
->max_gid
= 32000;
310 arg
= getarg(args
, 'C');
311 if (write_userconfig(arg
? arg
->val
: NULL
))
313 err(EX_IOERR
, "config udpate");
316 if (mode
== M_PRINT
&& getarg(args
, 'a')) {
318 while ((pwd
= GETPWENT()) != NULL
)
325 pwd
= GETPWNAM(pw_checkname(name
, 0));
327 if (id
< 0 && name
== NULL
)
328 errx(EX_DATAERR
, "user name or id required");
331 * Update, delete & print require that the user exists
333 if (mode
== M_UPDATE
|| mode
== M_DELETE
||
334 mode
== M_PRINT
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
336 if (name
== NULL
&& pwd
== NULL
) /* Try harder */
340 if (mode
== M_PRINT
&& getarg(args
, 'F')) {
341 fakeuser
.pw_name
= name
? name
: "nouser";
342 fakeuser
.pw_uid
= (uid_t
) id
;
343 return print_user(&fakeuser
);
346 errx(EX_NOUSER
, "no such uid `%ld'", id
);
347 errx(EX_NOUSER
, "no such user `%s'", name
);
354 * The M_LOCK and M_UNLOCK functions simply add or remove
355 * a "*LOCKED*" prefix from in front of the password to
356 * prevent it decoding correctly, and therefore prevents
357 * access. Of course, this only prevents access via
358 * password authentication (not ssh, kerberos or any
359 * other method that does not use the UNIX password) but
360 * that is a known limitation.
363 if (mode
== M_LOCK
) {
364 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) == 0)
365 errx(EX_DATAERR
, "user '%s' is already locked", pwd
->pw_name
);
366 asprintf(&passtmp
, "%s%s", locked_str
, pwd
->pw_passwd
);
367 if (passtmp
== NULL
) /* disaster */
368 errx(EX_UNAVAILABLE
, "out of memory");
369 pwd
->pw_passwd
= passtmp
;
371 } else if (mode
== M_UNLOCK
) {
372 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) != 0)
373 errx(EX_DATAERR
, "user '%s' is not locked", pwd
->pw_name
);
374 pwd
->pw_passwd
+= sizeof(locked_str
)-1;
376 } else if (mode
== M_DELETE
)
377 return (delete_user(cnf
, pwd
, name
,
378 getarg(args
, 'r') != NULL
, mode
));
379 else if (mode
== M_PRINT
)
380 return print_user(pwd
);
383 * The rest is edit code
385 if (conf
.newname
!= NULL
) {
386 if (strcmp(pwd
->pw_name
, "root") == 0)
387 errx(EX_DATAERR
, "can't rename `root' account");
388 pwd
->pw_name
= pw_checkname(conf
.newname
, 0);
392 if ((arg
= getarg(args
, 'u')) != NULL
&& isdigit((unsigned char)*arg
->val
)) {
393 pwd
->pw_uid
= (uid_t
) atol(arg
->val
);
395 if (pwd
->pw_uid
!= 0 && strcmp(pwd
->pw_name
, "root") == 0)
396 errx(EX_DATAERR
, "can't change uid of `root' account");
397 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
398 warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd
->pw_name
);
401 if ((arg
= getarg(args
, 'g')) != NULL
&& pwd
->pw_uid
!= 0) { /* Already checked this */
402 gid_t newgid
= (gid_t
) GETGRNAM(cnf
->default_group
)->gr_gid
;
403 if (newgid
!= pwd
->pw_gid
) {
405 pwd
->pw_gid
= newgid
;
409 if ((arg
= getarg(args
, 'p')) != NULL
) {
410 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
411 if (pwd
->pw_change
!= 0) {
417 time_t now
= time(NULL
);
418 time_t expire
= parse_date(now
, arg
->val
);
420 if (pwd
->pw_change
!= expire
) {
421 pwd
->pw_change
= expire
;
427 if ((arg
= getarg(args
, 'e')) != NULL
) {
428 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
429 if (pwd
->pw_expire
!= 0) {
435 time_t now
= time(NULL
);
436 time_t expire
= parse_date(now
, arg
->val
);
438 if (pwd
->pw_expire
!= expire
) {
439 pwd
->pw_expire
= expire
;
445 if ((arg
= getarg(args
, 's')) != NULL
) {
446 char *shell
= shell_path(cnf
->shelldir
, cnf
->shells
, arg
->val
);
449 if (strcmp(shell
, pwd
->pw_shell
) != 0) {
450 pwd
->pw_shell
= shell
;
455 if (getarg(args
, 'L')) {
456 if (cnf
->default_class
== NULL
)
457 cnf
->default_class
= "";
458 if (strcmp(pwd
->pw_class
, cnf
->default_class
) != 0) {
459 pwd
->pw_class
= cnf
->default_class
;
464 if ((arg
= getarg(args
, 'd')) != NULL
) {
465 if (strcmp(pwd
->pw_dir
, arg
->val
))
467 if (stat(pwd
->pw_dir
= arg
->val
, &st
) == -1) {
468 if (getarg(args
, 'm') == NULL
&& strcmp(pwd
->pw_dir
, "/nonexistent") != 0)
469 warnx("WARNING: home `%s' does not exist", pwd
->pw_dir
);
470 } else if (!S_ISDIR(st
.st_mode
))
471 warnx("WARNING: home `%s' is not a directory", pwd
->pw_dir
);
474 if ((arg
= getarg(args
, 'w')) != NULL
&&
475 getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
) {
478 lc
= login_getpwclass(pwd
);
480 login_setcryptfmt(lc
, "sha512", NULL
) == NULL
)
481 warn("setting crypt(3) format");
483 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
494 if (name
== NULL
) /* Required */
495 errx(EX_DATAERR
, "login name required");
496 else if ((pwd
= GETPWNAM(name
)) != NULL
) /* Exists */
497 errx(EX_DATAERR
, "login name `%s' already exists", name
);
500 * Now, set up defaults for a new user
504 pwd
->pw_class
= cnf
->default_class
? cnf
->default_class
: "";
505 pwd
->pw_uid
= pw_uidpolicy(cnf
, args
);
506 pwd
->pw_gid
= pw_gidpolicy(args
, pwd
->pw_name
, (gid_t
) pwd
->pw_uid
);
507 pwd
->pw_change
= pw_pwdpolicy(cnf
, args
);
508 pwd
->pw_expire
= pw_exppolicy(cnf
, args
);
509 pwd
->pw_dir
= pw_homepolicy(cnf
, args
, pwd
->pw_name
);
510 pwd
->pw_shell
= pw_shellpolicy(cnf
, args
, NULL
);
511 lc
= login_getpwclass(pwd
);
512 if (lc
== NULL
|| login_setcryptfmt(lc
, "sha512", NULL
) == NULL
)
513 warn("setting crypt(3) format");
515 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
518 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
519 warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd
->pw_name
);
523 * Shared add/edit code
525 if ((arg
= getarg(args
, 'c')) != NULL
) {
526 char *gecos
= pw_checkname(arg
->val
, 1);
527 if (strcmp(pwd
->pw_gecos
, gecos
) != 0) {
528 pwd
->pw_gecos
= gecos
;
533 if ((arg
= getarg(args
, 'h')) != NULL
||
534 (arg
= getarg(args
, 'H')) != NULL
) {
535 if (strcmp(arg
->val
, "-") == 0) {
536 if (!pwd
->pw_passwd
|| *pwd
->pw_passwd
!= '*') {
537 pwd
->pw_passwd
= "*"; /* No access */
541 int fd
= atoi(arg
->val
);
542 int precrypt
= (arg
->ch
== 'H');
544 int istty
= isatty(fd
);
549 if (tcgetattr(fd
, &t
) == -1)
552 struct termios n
= t
;
555 n
.c_lflag
&= ~(ECHO
);
556 tcsetattr(fd
, TCSANOW
, &n
);
557 printf("%s%spassword for user %s:",
558 (mode
== M_UPDATE
) ? "new " : "",
559 precrypt
? "encrypted " : "",
564 b
= read(fd
, line
, sizeof(line
) - 1);
565 if (istty
) { /* Restore state */
566 tcsetattr(fd
, TCSANOW
, &t
);
571 err(EX_IOERR
, "-%c file descriptor",
572 precrypt
? 'H' : 'h');
574 if ((p
= strpbrk(line
, "\r\n")) != NULL
)
577 errx(EX_DATAERR
, "empty password read on file descriptor %d", fd
);
579 if (strchr(line
, ':') != NULL
)
581 pwd
->pw_passwd
= line
;
583 lc
= login_getpwclass(pwd
);
585 login_setcryptfmt(lc
, "sha512", NULL
) == NULL
)
586 warn("setting crypt(3) format");
588 pwd
->pw_passwd
= pw_pwcrypt(line
);
595 * Special case: -N only displays & exits
598 return print_user(pwd
);
601 edited
= 1; /* Always */
604 errx(EX_IOERR
, "user '%s' already exists",
607 err(EX_IOERR
, "passwd file update");
608 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
609 rc
= addnispwent(cnf
->nispasswd
, pwd
);
611 warnx("User '%s' already exists in NIS passwd", pwd
->pw_name
);
613 warn("NIS passwd update");
614 /* NOTE: we treat NIS-only update errors as non-fatal */
616 } else if (mode
== M_UPDATE
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
617 if (edited
) { /* Only updated this if required */
618 rc
= chgpwent(name
, pwd
);
620 errx(EX_IOERR
, "user '%s' does not exist (NIS?)", pwd
->pw_name
);
622 err(EX_IOERR
, "passwd file update");
623 if ( cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
624 rc
= chgnispwent(cnf
->nispasswd
, name
, pwd
);
626 warn("User '%s' not found in NIS passwd", pwd
->pw_name
);
628 warn("NIS passwd update");
629 /* NOTE: NIS-only update errors are not fatal */
635 * Ok, user is created or changed - now edit group file
638 if (mode
== M_ADD
|| getarg(args
, 'G') != NULL
) {
640 /* First remove the user from all group */
642 while ((grp
= GETGRENT()) != NULL
) {
643 char group
[MAXLOGNAME
];
644 if (grp
->gr_mem
== NULL
)
646 for (i
= 0; grp
->gr_mem
[i
] != NULL
; i
++) {
647 if (strcmp(grp
->gr_mem
[i
] , pwd
->pw_name
) != 0)
649 for (j
= i
; grp
->gr_mem
[j
] != NULL
; j
++)
650 grp
->gr_mem
[j
] = grp
->gr_mem
[j
+1];
651 strlcpy(group
, grp
->gr_name
, MAXLOGNAME
);
652 chggrent(group
, grp
);
657 /* now add to group where needed */
658 for (i
= 0; cnf
->groups
[i
] != NULL
; i
++) {
659 grp
= GETGRNAM(cnf
->groups
[i
]);
660 grp
= gr_add(grp
, pwd
->pw_name
);
662 * grp can only be NULL in 2 cases:
663 * - the new member is already a member
664 * - a problem with memory occurs
665 * in both cases we want to skip now.
669 chggrent(cnf
->groups
[i
], grp
);
675 /* go get a current version of pwd */
676 pwd
= GETPWNAM(name
);
678 /* This will fail when we rename, so special case that */
679 if (mode
== M_UPDATE
&& conf
.newname
!= NULL
) {
680 name
= conf
.newname
; /* update new name */
681 pwd
= GETPWNAM(name
); /* refetch renamed rec */
684 if (pwd
== NULL
) /* can't go on without this */
685 errx(EX_NOUSER
, "user '%s' disappeared during update", name
);
687 grp
= GETGRGID(pwd
->pw_gid
);
688 pw_log(cnf
, mode
, W_USER
, "%s(%u):%s(%u):%s:%s:%s",
689 pwd
->pw_name
, pwd
->pw_uid
,
690 grp
? grp
->gr_name
: "unknown", (grp
? grp
->gr_gid
: (uid_t
)-1),
691 pwd
->pw_gecos
, pwd
->pw_dir
, pwd
->pw_shell
);
694 * If adding, let's touch and chown the user's mail file. This is not
695 * strictly necessary under BSD with a 0755 maildir but it also
696 * doesn't hurt anything to create the empty mailfile
699 if (PWALTDIR() != PWF_ALT
) {
700 arg
= getarg(args
, 'R');
701 snprintf(path
, sizeof(path
), "%s%s/%s",
702 arg
? arg
->val
: "", _PATH_MAILDIR
, pwd
->pw_name
);
703 close(open(path
, O_RDWR
| O_CREAT
, 0600)); /* Preserve contents &
705 chown(path
, pwd
->pw_uid
, pwd
->pw_gid
);
710 * Let's create and populate the user's home directory. Note
711 * that this also `works' for editing users if -m is used, but
712 * existing files will *not* be overwritten.
714 if (PWALTDIR() != PWF_ALT
&& getarg(args
, 'm') != NULL
&& pwd
->pw_dir
&&
715 *pwd
->pw_dir
== '/' && pwd
->pw_dir
[1])
716 create_and_populate_homedir(mode
, pwd
);
719 * Finally, send mail to the new user as well, if we are asked to
721 if (mode
== M_ADD
&& !PWALTDIR() && cnf
->newmail
&& *cnf
->newmail
&& (fp
= fopen(cnf
->newmail
, "r")) != NULL
) {
722 FILE *pfp
= popen(_PATH_SENDMAIL
" -t", "w");
727 fprintf(pfp
, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd
->pw_name
);
728 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
729 /* Do substitutions? */
733 pw_log(cnf
, mode
, W_USER
, "%s(%u) new user mail sent",
734 pwd
->pw_name
, pwd
->pw_uid
);
744 pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
)
747 uid_t uid
= (uid_t
) - 1;
748 struct carg
*a_uid
= getarg(args
, 'u');
751 * Check the given uid, if any
754 uid
= (uid_t
) atol(a_uid
->val
);
756 if ((pwd
= GETPWUID(uid
)) != NULL
&& getarg(args
, 'o') == NULL
)
757 errx(EX_DATAERR
, "uid `%u' has already been allocated", pwd
->pw_uid
);
762 * We need to allocate the next available uid under one of
763 * two policies a) Grab the first unused uid b) Grab the
764 * highest possible unused uid
766 if (cnf
->min_uid
>= cnf
->max_uid
) { /* Sanity
767 * claus^H^H^H^Hheck */
769 cnf
->max_uid
= 32000;
771 bm
= bm_alloc(cnf
->max_uid
- cnf
->min_uid
+ 1);
774 * Now, let's fill the bitmap from the password file
777 while ((pwd
= GETPWENT()) != NULL
)
778 if (pwd
->pw_uid
>= (uid_t
) cnf
->min_uid
&& pwd
->pw_uid
<= (uid_t
) cnf
->max_uid
)
779 bm_setbit(&bm
, pwd
->pw_uid
- cnf
->min_uid
);
783 * Then apply the policy, with fallback to reuse if necessary
785 if (cnf
->reuse_uids
|| (uid
= (uid_t
) (bm_lastset(&bm
) + cnf
->min_uid
+ 1)) > cnf
->max_uid
)
786 uid
= (uid_t
) (bm_firstunset(&bm
) + cnf
->min_uid
);
789 * Another sanity check
791 if (uid
< cnf
->min_uid
|| uid
> cnf
->max_uid
)
792 errx(EX_SOFTWARE
, "unable to allocate a new uid - range fully used");
800 pw_gidpolicy(struct cargs
* args
, char *nam
, gid_t prefer
)
803 gid_t gid
= (uid_t
) - 1;
804 struct carg
*a_gid
= getarg(args
, 'g');
805 struct userconf
*cnf
= conf
.userconf
;
808 * If no arg given, see if default can help out
810 if (a_gid
== NULL
&& cnf
->default_group
&& *cnf
->default_group
)
811 a_gid
= addarg(args
, 'g', cnf
->default_group
);
814 * Check the given gid, if any
818 if ((grp
= GETGRNAM(a_gid
->val
)) == NULL
) {
819 gid
= (gid_t
) atol(a_gid
->val
);
820 if ((gid
== 0 && !isdigit((unsigned char)*a_gid
->val
)) || (grp
= GETGRGID(gid
)) == NULL
)
821 errx(EX_NOUSER
, "group `%s' is not defined", a_gid
->val
);
824 } else if ((grp
= GETGRNAM(nam
)) != NULL
&&
825 (grp
->gr_mem
== NULL
|| grp
->gr_mem
[0] == NULL
)) {
826 gid
= grp
->gr_gid
; /* Already created? Use it anyway... */
828 struct cargs grpargs
;
834 * We need to auto-create a group with the user's name. We
835 * can send all the appropriate output to our sister routine
836 * bit first see if we can create a group with gid==uid so we
837 * can keep the user and group ids in sync. We purposely do
838 * NOT check the gid range if we can force the sync. If the
839 * user's name dups an existing group, then the group add
840 * function will happily handle that case for us and exit.
842 if (GETGRGID(prefer
) == NULL
) {
843 snprintf(tmp
, sizeof(tmp
), "%u", prefer
);
844 addarg(&grpargs
, 'g', tmp
);
847 addarg(&grpargs
, 'q', NULL
);
848 gid
= pw_group(M_NEXT
, nam
, -1, &grpargs
);
852 pw_group(M_ADD
, nam
, -1, &grpargs
);
853 if ((grp
= GETGRNAM(nam
)) != NULL
)
856 a_gid
= LIST_FIRST(&grpargs
);
857 while (a_gid
!= NULL
) {
858 struct carg
*t
= LIST_NEXT(a_gid
, list
);
859 LIST_REMOVE(a_gid
, list
);
869 pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
)
872 time_t now
= time(NULL
);
873 struct carg
*arg
= getarg(args
, 'p');
876 if ((result
= parse_date(now
, arg
->val
)) == now
)
877 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
878 } else if (cnf
->password_days
> 0)
879 result
= now
+ ((long) cnf
->password_days
* 86400L);
885 pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
)
888 time_t now
= time(NULL
);
889 struct carg
*arg
= getarg(args
, 'e');
892 if ((result
= parse_date(now
, arg
->val
)) == now
)
893 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
894 } else if (cnf
->expire_days
> 0)
895 result
= now
+ ((long) cnf
->expire_days
* 86400L);
901 pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
903 struct carg
*arg
= getarg(args
, 'd');
904 static char home
[128];
909 if (cnf
->home
== NULL
|| *cnf
->home
== '\0')
910 errx(EX_CONFIG
, "no base home directory set");
911 snprintf(home
, sizeof(home
), "%s/%s", cnf
->home
, user
);
917 shell_path(char const * path
, char *shells
[], char *sh
)
919 if (sh
!= NULL
&& (*sh
== '/' || *sh
== '\0'))
920 return sh
; /* specified full path or forced none */
923 char paths
[_UC_MAXLINE
];
926 * We need to search paths
928 strlcpy(paths
, path
, sizeof(paths
));
929 for (p
= strtok(paths
, ": \t\r\n"); p
!= NULL
; p
= strtok(NULL
, ": \t\r\n")) {
931 static char shellpath
[256];
934 snprintf(shellpath
, sizeof(shellpath
), "%s/%s", p
, sh
);
935 if (access(shellpath
, X_OK
) == 0)
938 for (i
= 0; i
< _UC_MAXSHELLS
&& shells
[i
] != NULL
; i
++) {
939 snprintf(shellpath
, sizeof(shellpath
), "%s/%s", p
, shells
[i
]);
940 if (access(shellpath
, X_OK
) == 0)
945 errx(EX_OSFILE
, "can't find shell `%s' in shell paths", sh
);
946 errx(EX_CONFIG
, "no default shell available or defined");
953 pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
)
956 struct carg
*arg
= getarg(args
, 's');
958 if (newshell
== NULL
&& arg
!= NULL
)
960 return shell_path(cnf
->shelldir
, cnf
->shells
, sh
? sh
: cnf
->shell_default
);
965 static char const chars
[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./";
968 pw_pwcrypt(char *password
)
971 char salt
[SALTSIZE
+ 1];
974 static char buf
[256];
977 * Calculate a salt value
979 for (i
= 0; i
< SALTSIZE
; i
++)
980 salt
[i
] = chars
[arc4random_uniform(sizeof(chars
) - 1)];
981 salt
[SALTSIZE
] = '\0';
983 cryptpw
= crypt(password
, salt
);
985 errx(EX_CONFIG
, "crypt(3) failure");
986 return strcpy(buf
, cryptpw
);
991 pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
996 switch (cnf
->default_password
) {
997 case -1: /* Random password */
998 l
= (arc4random() % 8 + 8); /* 8 - 16 chars */
999 for (i
= 0; i
< l
; i
++)
1000 pwbuf
[i
] = chars
[arc4random_uniform(sizeof(chars
)-1)];
1004 * We give this information back to the user
1006 if (getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
&&
1008 if (isatty(STDOUT_FILENO
))
1009 printf("Password for '%s' is: ", user
);
1010 printf("%s\n", pwbuf
);
1015 case -2: /* No password at all! */
1018 case 0: /* No login - default */
1022 case 1: /* user's name */
1023 strlcpy(pwbuf
, user
, sizeof(pwbuf
));
1026 return pw_pwcrypt(pwbuf
);
1030 delete_user(struct userconf
*cnf
, struct passwd
*pwd
, char *name
,
1031 int delete, int mode
)
1033 char file
[MAXPATHLEN
];
1034 char home
[MAXPATHLEN
];
1035 uid_t uid
= pwd
->pw_uid
;
1036 struct group
*gr
, *grp
;
1037 char grname
[LOGNAMESIZE
];
1041 if (strcmp(pwd
->pw_name
, "root") == 0)
1042 errx(EX_DATAERR
, "cannot remove user 'root'");
1046 * Remove opie record from /etc/opiekeys
1049 rmopie(pwd
->pw_name
);
1054 snprintf(file
, sizeof(file
), "/var/cron/tabs/%s", pwd
->pw_name
);
1055 if (access(file
, F_OK
) == 0) {
1056 snprintf(file
, sizeof(file
), "crontab -u %s -r", pwd
->pw_name
);
1061 * Save these for later, since contents of pwd may be
1062 * invalidated by deletion
1064 snprintf(file
, sizeof(file
), "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
1065 strlcpy(home
, pwd
->pw_dir
, sizeof(home
));
1066 gr
= GETGRGID(pwd
->pw_gid
);
1068 strlcpy(grname
, gr
->gr_name
, LOGNAMESIZE
);
1074 err(EX_IOERR
, "user '%s' does not exist", pwd
->pw_name
);
1076 err(EX_IOERR
, "passwd update");
1078 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
1079 rc
= delnispwent(cnf
->nispasswd
, name
);
1081 warnx("WARNING: user '%s' does not exist in NIS passwd", pwd
->pw_name
);
1083 warn("WARNING: NIS passwd update");
1087 grp
= GETGRNAM(name
);
1089 (grp
->gr_mem
== NULL
|| *grp
->gr_mem
== NULL
) &&
1090 strcmp(name
, grname
) == 0)
1091 delgrent(GETGRNAM(name
));
1093 while ((grp
= GETGRENT()) != NULL
) {
1095 char group
[MAXLOGNAME
];
1096 if (grp
->gr_mem
== NULL
)
1099 for (i
= 0; grp
->gr_mem
[i
] != NULL
; i
++) {
1100 if (strcmp(grp
->gr_mem
[i
], name
) != 0)
1103 for (j
= i
; grp
->gr_mem
[j
] != NULL
; j
++)
1104 grp
->gr_mem
[j
] = grp
->gr_mem
[j
+1];
1105 strlcpy(group
, grp
->gr_name
, MAXLOGNAME
);
1106 chggrent(group
, grp
);
1111 pw_log(cnf
, mode
, W_USER
, "%s(%u) account removed", name
, uid
);
1122 if (getpwuid(uid
) == NULL
)
1126 * Remove home directory and contents
1128 if (delete && *home
== '/' && getpwuid(uid
) == NULL
&&
1129 stat(home
, &st
) != -1) {
1131 pw_log(cnf
, mode
, W_USER
, "%s(%u) home '%s' %sremoved",
1133 stat(home
, &st
) == -1 ? "" : "not completely ");
1137 return (EXIT_SUCCESS
);
1141 print_user(struct passwd
* pwd
)
1146 buf
= conf
.v7
? pw_make_v7(pwd
) : pw_make(pwd
);
1147 printf("%s\n", buf
);
1152 struct group
*grp
= GETGRGID(pwd
->pw_gid
);
1153 char uname
[60] = "User &", office
[60] = "[None]",
1154 wphone
[60] = "[None]", hphone
[60] = "[None]";
1155 char acexpire
[32] = "[None]", pwexpire
[32] = "[None]";
1158 if ((p
= strtok(pwd
->pw_gecos
, ",")) != NULL
) {
1159 strlcpy(uname
, p
, sizeof(uname
));
1160 if ((p
= strtok(NULL
, ",")) != NULL
) {
1161 strlcpy(office
, p
, sizeof(office
));
1162 if ((p
= strtok(NULL
, ",")) != NULL
) {
1163 strlcpy(wphone
, p
, sizeof(wphone
));
1164 if ((p
= strtok(NULL
, "")) != NULL
) {
1172 * Handle '&' in gecos field
1174 if ((p
= strchr(uname
, '&')) != NULL
) {
1175 int l
= strlen(pwd
->pw_name
);
1178 memmove(p
+ l
, p
+ 1, m
);
1179 memmove(p
, pwd
->pw_name
, l
);
1180 *p
= (char) toupper((unsigned char)*p
);
1182 if (pwd
->pw_expire
> (time_t)0 && (tptr
= localtime(&pwd
->pw_expire
)) != NULL
)
1183 strftime(acexpire
, sizeof acexpire
, "%c", tptr
);
1184 if (pwd
->pw_change
> (time_t)0 && (tptr
= localtime(&pwd
->pw_change
)) != NULL
)
1185 strftime(pwexpire
, sizeof pwexpire
, "%c", tptr
);
1186 printf("Login Name: %-15s #%-12u Group: %-15s #%u\n"
1188 " Home: %-26.26s Class: %s\n"
1189 " Shell: %-26.26s Office: %s\n"
1190 "Work Phone: %-26.26s Home Phone: %s\n"
1191 "Acc Expire: %-26.26s Pwd Expire: %s\n",
1192 pwd
->pw_name
, pwd
->pw_uid
,
1193 grp
? grp
->gr_name
: "(invalid)", pwd
->pw_gid
,
1194 uname
, pwd
->pw_dir
, pwd
->pw_class
,
1195 pwd
->pw_shell
, office
, wphone
, hphone
,
1196 acexpire
, pwexpire
);
1199 while ((grp
=GETGRENT()) != NULL
)
1202 if (grp
->gr_mem
!= NULL
) {
1203 while (grp
->gr_mem
[i
] != NULL
)
1205 if (strcmp(grp
->gr_mem
[i
], pwd
->pw_name
)==0)
1207 printf(j
++ == 0 ? " Groups: %s" : ",%s", grp
->gr_name
);
1215 printf("%s", j
? "\n" : "");
1217 return EXIT_SUCCESS
;
1221 pw_checkname(char *name
, int gecos
)
1224 const char *badchars
, *ch
, *showtype
;
1230 /* See if the name is valid as a gecos (comment) field. */
1232 showtype
= "gecos field";
1234 /* See if the name is valid as a userid or group. */
1235 badchars
= " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1236 showtype
= "userid/group name";
1237 /* Userids and groups can not have a leading '-'. */
1243 if (strchr(badchars
, *ch
) != NULL
|| *ch
< ' ' ||
1248 /* 8-bit characters are only allowed in GECOS fields */
1249 if (!gecos
&& (*ch
& 0x80)) {
1257 * A `$' is allowed as the final character for userids and groups,
1258 * mainly for the benefit of samba.
1260 if (reject
&& !gecos
) {
1261 if (*ch
== '$' && *(ch
+ 1) == '\0') {
1267 snprintf(showch
, sizeof(showch
), (*ch
>= ' ' && *ch
< 127)
1268 ? "`%c'" : "0x%02x", *ch
);
1269 errx(EX_DATAERR
, "invalid character %s at position %td in %s",
1270 showch
, (ch
- name
), showtype
);
1272 if (!gecos
&& (ch
- name
) > LOGNAMESIZE
)
1273 errx(EX_DATAERR
, "name too long `%s' (max is %d)", name
,
1283 DIR *d
= opendir("/var/at/jobs");
1288 while ((e
= readdir(d
)) != NULL
) {
1291 if (strncmp(e
->d_name
, ".lock", 5) != 0 &&
1292 stat(e
->d_name
, &st
) == 0 &&
1293 !S_ISDIR(st
.st_mode
) &&
1295 char tmp
[MAXPATHLEN
];
1297 snprintf(tmp
, sizeof(tmp
), "/usr/bin/atrm %s", e
->d_name
);
1306 rmopie(char const * name
)
1308 static const char etcopie
[] = "/etc/opiekeys";
1309 FILE *fp
= fopen(etcopie
, "r+");
1314 int length
= strlen(name
);
1316 while (fgets(tmp
, sizeof tmp
, fp
) != NULL
) {
1317 if (strncmp(name
, tmp
, length
) == 0 && tmp
[length
]==' ') {
1318 if (fseek(fp
, atofs
, SEEK_SET
) == 0) {
1319 fwrite("#", 1, 1, fp
); /* Comment username out */
1326 * If we got an error of any sort, don't update!