]>
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
, long id
);
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
, id
);
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')) {
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 if (write_userconfig(conf
.config
))
311 return (EXIT_SUCCESS
);
312 err(EX_IOERR
, "config udpate");
315 if (mode
== M_PRINT
&& getarg(args
, 'a')) {
317 while ((pwd
= GETPWENT()) != NULL
)
324 pwd
= GETPWNAM(pw_checkname(name
, 0));
326 if (id
< 0 && name
== NULL
)
327 errx(EX_DATAERR
, "user name or id required");
330 * Update, delete & print require that the user exists
332 if (mode
== M_UPDATE
|| mode
== M_DELETE
||
333 mode
== M_PRINT
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
335 if (name
== NULL
&& pwd
== NULL
) /* Try harder */
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
);
345 errx(EX_NOUSER
, "no such uid `%ld'", id
);
346 errx(EX_NOUSER
, "no such user `%s'", name
);
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.
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
;
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;
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
);
382 * The rest is edit code
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);
391 if (id
> 0 && isdigit((unsigned char)*arg
->val
)) {
392 pwd
->pw_uid
= (uid_t
)id
;
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
);
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
) {
404 pwd
->pw_gid
= newgid
;
408 if ((arg
= getarg(args
, 'p')) != NULL
) {
409 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
410 if (pwd
->pw_change
!= 0) {
416 time_t now
= time(NULL
);
417 time_t expire
= parse_date(now
, arg
->val
);
419 if (pwd
->pw_change
!= expire
) {
420 pwd
->pw_change
= expire
;
426 if ((arg
= getarg(args
, 'e')) != NULL
) {
427 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
428 if (pwd
->pw_expire
!= 0) {
434 time_t now
= time(NULL
);
435 time_t expire
= parse_date(now
, arg
->val
);
437 if (pwd
->pw_expire
!= expire
) {
438 pwd
->pw_expire
= expire
;
444 if ((arg
= getarg(args
, 's')) != NULL
) {
445 char *shell
= shell_path(cnf
->shelldir
, cnf
->shells
, arg
->val
);
448 if (strcmp(shell
, pwd
->pw_shell
) != 0) {
449 pwd
->pw_shell
= shell
;
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
;
463 if ((arg
= getarg(args
, 'd')) != NULL
) {
464 if (strcmp(pwd
->pw_dir
, arg
->val
))
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
);
473 if ((arg
= getarg(args
, 'w')) != NULL
&&
474 getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
) {
477 lc
= login_getpwclass(pwd
);
479 login_setcryptfmt(lc
, "sha512", NULL
) == NULL
)
480 warn("setting crypt(3) format");
482 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
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
);
499 * Now, set up defaults for a new user
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");
514 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
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
);
522 * Shared add/edit code
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
;
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 */
540 int fd
= atoi(arg
->val
);
541 int precrypt
= (arg
->ch
== 'H');
543 int istty
= isatty(fd
);
548 if (tcgetattr(fd
, &t
) == -1)
551 struct termios n
= t
;
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 " : "",
563 b
= read(fd
, line
, sizeof(line
) - 1);
564 if (istty
) { /* Restore state */
565 tcsetattr(fd
, TCSANOW
, &t
);
570 err(EX_IOERR
, "-%c file descriptor",
571 precrypt
? 'H' : 'h');
573 if ((p
= strpbrk(line
, "\r\n")) != NULL
)
576 errx(EX_DATAERR
, "empty password read on file descriptor %d", fd
);
578 if (strchr(line
, ':') != NULL
)
580 pwd
->pw_passwd
= line
;
582 lc
= login_getpwclass(pwd
);
584 login_setcryptfmt(lc
, "sha512", NULL
) == NULL
)
585 warn("setting crypt(3) format");
587 pwd
->pw_passwd
= pw_pwcrypt(line
);
594 * Special case: -N only displays & exits
597 return print_user(pwd
);
600 edited
= 1; /* Always */
603 errx(EX_IOERR
, "user '%s' already exists",
606 err(EX_IOERR
, "passwd file update");
607 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
608 rc
= addnispwent(cnf
->nispasswd
, pwd
);
610 warnx("User '%s' already exists in NIS passwd", pwd
->pw_name
);
612 warn("NIS passwd update");
613 /* NOTE: we treat NIS-only update errors as non-fatal */
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
);
619 errx(EX_IOERR
, "user '%s' does not exist (NIS?)", pwd
->pw_name
);
621 err(EX_IOERR
, "passwd file update");
622 if ( cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
623 rc
= chgnispwent(cnf
->nispasswd
, name
, pwd
);
625 warn("User '%s' not found in NIS passwd", pwd
->pw_name
);
627 warn("NIS passwd update");
628 /* NOTE: NIS-only update errors are not fatal */
634 * Ok, user is created or changed - now edit group file
637 if (mode
== M_ADD
|| getarg(args
, 'G') != NULL
) {
639 /* First remove the user from all group */
641 while ((grp
= GETGRENT()) != NULL
) {
642 char group
[MAXLOGNAME
];
643 if (grp
->gr_mem
== NULL
)
645 for (i
= 0; grp
->gr_mem
[i
] != NULL
; i
++) {
646 if (strcmp(grp
->gr_mem
[i
] , pwd
->pw_name
) != 0)
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
);
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
);
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.
668 chggrent(cnf
->groups
[i
], grp
);
674 /* go get a current version of pwd */
675 pwd
= GETPWNAM(name
);
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 */
683 if (pwd
== NULL
) /* can't go on without this */
684 errx(EX_NOUSER
, "user '%s' disappeared during update", name
);
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
);
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
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 &
704 chown(path
, pwd
->pw_uid
, pwd
->pw_gid
);
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.
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
);
718 * Finally, send mail to the new user as well, if we are asked to
720 if (mode
== M_ADD
&& !PWALTDIR() && cnf
->newmail
&& *cnf
->newmail
&& (fp
= fopen(cnf
->newmail
, "r")) != NULL
) {
721 FILE *pfp
= popen(_PATH_SENDMAIL
" -t", "w");
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? */
732 pw_log(cnf
, mode
, W_USER
, "%s(%u) new user mail sent",
733 pwd
->pw_name
, pwd
->pw_uid
);
743 pw_uidpolicy(struct userconf
* cnf
, long id
)
746 uid_t uid
= (uid_t
) - 1;
749 * Check the given uid, if any
754 if ((pwd
= GETPWUID(uid
)) != NULL
&& conf
.checkduplicate
)
755 errx(EX_DATAERR
, "uid `%u' has already been allocated", pwd
->pw_uid
);
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
764 if (cnf
->min_uid
>= cnf
->max_uid
) { /* Sanity
765 * claus^H^H^H^Hheck */
767 cnf
->max_uid
= 32000;
769 bm
= bm_alloc(cnf
->max_uid
- cnf
->min_uid
+ 1);
772 * Now, let's fill the bitmap from the password file
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
);
781 * Then apply the policy, with fallback to reuse if necessary
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
);
787 * Another sanity check
789 if (uid
< cnf
->min_uid
|| uid
> cnf
->max_uid
)
790 errx(EX_SOFTWARE
, "unable to allocate a new uid - range fully used");
798 pw_gidpolicy(struct cargs
* args
, char *nam
, gid_t prefer
)
801 gid_t gid
= (uid_t
) - 1;
802 struct carg
*a_gid
= getarg(args
, 'g');
803 struct userconf
*cnf
= conf
.userconf
;
806 * If no arg given, see if default can help out
808 if (a_gid
== NULL
&& cnf
->default_group
&& *cnf
->default_group
)
809 a_gid
= addarg(args
, 'g', cnf
->default_group
);
812 * Check the given gid, if any
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
);
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... */
826 struct cargs grpargs
;
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.
840 if (GETGRGID(prefer
) == NULL
) {
841 snprintf(tmp
, sizeof(tmp
), "%u", prefer
);
842 addarg(&grpargs
, 'g', tmp
);
845 addarg(&grpargs
, 'q', NULL
);
846 gid
= pw_group(M_NEXT
, nam
, -1, &grpargs
);
850 pw_group(M_ADD
, nam
, -1, &grpargs
);
851 if ((grp
= GETGRNAM(nam
)) != NULL
)
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
);
867 pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
)
870 time_t now
= time(NULL
);
871 struct carg
*arg
= getarg(args
, 'p');
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);
883 pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
)
886 time_t now
= time(NULL
);
887 struct carg
*arg
= getarg(args
, 'e');
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);
899 pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
901 struct carg
*arg
= getarg(args
, 'd');
902 static char home
[128];
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
);
915 shell_path(char const * path
, char *shells
[], char *sh
)
917 if (sh
!= NULL
&& (*sh
== '/' || *sh
== '\0'))
918 return sh
; /* specified full path or forced none */
921 char paths
[_UC_MAXLINE
];
924 * We need to search paths
926 strlcpy(paths
, path
, sizeof(paths
));
927 for (p
= strtok(paths
, ": \t\r\n"); p
!= NULL
; p
= strtok(NULL
, ": \t\r\n")) {
929 static char shellpath
[256];
932 snprintf(shellpath
, sizeof(shellpath
), "%s/%s", p
, sh
);
933 if (access(shellpath
, X_OK
) == 0)
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)
943 errx(EX_OSFILE
, "can't find shell `%s' in shell paths", sh
);
944 errx(EX_CONFIG
, "no default shell available or defined");
951 pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
)
954 struct carg
*arg
= getarg(args
, 's');
956 if (newshell
== NULL
&& arg
!= NULL
)
958 return shell_path(cnf
->shelldir
, cnf
->shells
, sh
? sh
: cnf
->shell_default
);
963 static char const chars
[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./";
966 pw_pwcrypt(char *password
)
969 char salt
[SALTSIZE
+ 1];
972 static char buf
[256];
975 * Calculate a salt value
977 for (i
= 0; i
< SALTSIZE
; i
++)
978 salt
[i
] = chars
[arc4random_uniform(sizeof(chars
) - 1)];
979 salt
[SALTSIZE
] = '\0';
981 cryptpw
= crypt(password
, salt
);
983 errx(EX_CONFIG
, "crypt(3) failure");
984 return strcpy(buf
, cryptpw
);
989 pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
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)];
1002 * We give this information back to the user
1004 if (getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
&&
1006 if (isatty(STDOUT_FILENO
))
1007 printf("Password for '%s' is: ", user
);
1008 printf("%s\n", pwbuf
);
1013 case -2: /* No password at all! */
1016 case 0: /* No login - default */
1020 case 1: /* user's name */
1021 strlcpy(pwbuf
, user
, sizeof(pwbuf
));
1024 return pw_pwcrypt(pwbuf
);
1028 delete_user(struct userconf
*cnf
, struct passwd
*pwd
, char *name
,
1029 int delete, int mode
)
1031 char file
[MAXPATHLEN
];
1032 char home
[MAXPATHLEN
];
1033 uid_t uid
= pwd
->pw_uid
;
1034 struct group
*gr
, *grp
;
1035 char grname
[LOGNAMESIZE
];
1039 if (strcmp(pwd
->pw_name
, "root") == 0)
1040 errx(EX_DATAERR
, "cannot remove user 'root'");
1044 * Remove opie record from /etc/opiekeys
1047 rmopie(pwd
->pw_name
);
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
);
1059 * Save these for later, since contents of pwd may be
1060 * invalidated by deletion
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
);
1066 strlcpy(grname
, gr
->gr_name
, LOGNAMESIZE
);
1072 err(EX_IOERR
, "user '%s' does not exist", pwd
->pw_name
);
1074 err(EX_IOERR
, "passwd update");
1076 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
1077 rc
= delnispwent(cnf
->nispasswd
, name
);
1079 warnx("WARNING: user '%s' does not exist in NIS passwd", pwd
->pw_name
);
1081 warn("WARNING: NIS passwd update");
1085 grp
= GETGRNAM(name
);
1087 (grp
->gr_mem
== NULL
|| *grp
->gr_mem
== NULL
) &&
1088 strcmp(name
, grname
) == 0)
1089 delgrent(GETGRNAM(name
));
1091 while ((grp
= GETGRENT()) != NULL
) {
1093 char group
[MAXLOGNAME
];
1094 if (grp
->gr_mem
== NULL
)
1097 for (i
= 0; grp
->gr_mem
[i
] != NULL
; i
++) {
1098 if (strcmp(grp
->gr_mem
[i
], name
) != 0)
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
);
1109 pw_log(cnf
, mode
, W_USER
, "%s(%u) account removed", name
, uid
);
1120 if (getpwuid(uid
) == NULL
)
1124 * Remove home directory and contents
1126 if (delete && *home
== '/' && getpwuid(uid
) == NULL
&&
1127 stat(home
, &st
) != -1) {
1129 pw_log(cnf
, mode
, W_USER
, "%s(%u) home '%s' %sremoved",
1131 stat(home
, &st
) == -1 ? "" : "not completely ");
1135 return (EXIT_SUCCESS
);
1139 print_user(struct passwd
* pwd
)
1144 buf
= conf
.v7
? pw_make_v7(pwd
) : pw_make(pwd
);
1145 printf("%s\n", buf
);
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]";
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
) {
1170 * Handle '&' in gecos field
1172 if ((p
= strchr(uname
, '&')) != NULL
) {
1173 int l
= strlen(pwd
->pw_name
);
1176 memmove(p
+ l
, p
+ 1, m
);
1177 memmove(p
, pwd
->pw_name
, l
);
1178 *p
= (char) toupper((unsigned char)*p
);
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"
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
);
1197 while ((grp
=GETGRENT()) != NULL
)
1200 if (grp
->gr_mem
!= NULL
) {
1201 while (grp
->gr_mem
[i
] != NULL
)
1203 if (strcmp(grp
->gr_mem
[i
], pwd
->pw_name
)==0)
1205 printf(j
++ == 0 ? " Groups: %s" : ",%s", grp
->gr_name
);
1213 printf("%s", j
? "\n" : "");
1215 return EXIT_SUCCESS
;
1219 pw_checkname(char *name
, int gecos
)
1222 const char *badchars
, *ch
, *showtype
;
1228 /* See if the name is valid as a gecos (comment) field. */
1230 showtype
= "gecos field";
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 '-'. */
1241 if (strchr(badchars
, *ch
) != NULL
|| *ch
< ' ' ||
1246 /* 8-bit characters are only allowed in GECOS fields */
1247 if (!gecos
&& (*ch
& 0x80)) {
1255 * A `$' is allowed as the final character for userids and groups,
1256 * mainly for the benefit of samba.
1258 if (reject
&& !gecos
) {
1259 if (*ch
== '$' && *(ch
+ 1) == '\0') {
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
);
1270 if (!gecos
&& (ch
- name
) > LOGNAMESIZE
)
1271 errx(EX_DATAERR
, "name too long `%s' (max is %d)", name
,
1281 DIR *d
= opendir("/var/at/jobs");
1286 while ((e
= readdir(d
)) != NULL
) {
1289 if (strncmp(e
->d_name
, ".lock", 5) != 0 &&
1290 stat(e
->d_name
, &st
) == 0 &&
1291 !S_ISDIR(st
.st_mode
) &&
1293 char tmp
[MAXPATHLEN
];
1295 snprintf(tmp
, sizeof(tmp
), "/usr/bin/atrm %s", e
->d_name
);
1304 rmopie(char const * name
)
1306 static const char etcopie
[] = "/etc/opiekeys";
1307 FILE *fp
= fopen(etcopie
, "r+");
1312 int length
= strlen(name
);
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 */
1324 * If we got an error of any sort, don't update!