]>
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>
44 #include <login_cap.h>
51 #define LOGNAMESIZE (MAXLOGNAME-1)
53 static char locked_str
[] = "*LOCKED*";
55 static int print_user(struct passwd
* pwd
, int pretty
, int v7
);
56 static uid_t
pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
);
57 static uid_t
pw_gidpolicy(struct userconf
* cnf
, struct cargs
* args
, char *nam
, gid_t prefer
);
58 static time_t pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
);
59 static time_t pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
);
60 static char *pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
);
61 static char *pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
);
62 static char *pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
);
63 static char *shell_path(char const * path
, char *shells
[], char *sh
);
64 static void rmat(uid_t uid
);
65 static void rmopie(char const * name
);
68 * -C config configuration file
72 * -c comment user name/comment
73 * -d directory home directory
74 * -e date account expiry date
75 * -p date password expiry date
76 * -g grp primary group
77 * -G grp1,grp2 additional groups
78 * -m [ -k dir ] create and set up home
79 * -s shell name of login shell
82 * -l name new login name
83 * -h fd password filehandle
84 * -H fd encrypted password filehandle
85 * -F force print or add
87 * -D set user defaults
88 * -b dir default home root dir
89 * -e period default expiry period
90 * -p period default password change period
91 * -g group default group
92 * -G grp1,grp2.. default additional groups
93 * -L class default login class
94 * -k dir default home skeleton
95 * -s shell default shell
96 * -w method default password method
100 pw_user(struct userconf
* cnf
, int mode
, struct cargs
* args
)
108 struct passwd
*pwd
= NULL
;
111 char line
[_PASSWORD_LEN
+1];
116 static struct passwd fakeuser
=
128 #if defined(__FreeBSD__)
135 * With M_NEXT, we only need to return the
140 uid_t next
= pw_uidpolicy(cnf
, args
);
141 if (getarg(args
, 'q'))
143 printf("%ld:", (long)next
);
144 pw_group(cnf
, mode
, args
);
149 * We can do all of the common legwork here
152 if ((arg
= getarg(args
, 'b')) != NULL
) {
153 cnf
->home
= arg
->val
;
156 if ((arg
= getarg(args
, 'M')) != NULL
) {
158 if ((set
= setmode(dmode_c
)) == NULL
)
159 errx(EX_DATAERR
, "invalid directory creation mode '%s'",
161 cnf
->homemode
= getmode(set
, _DEF_DIRMODE
);
166 * If we'll need to use it or we're updating it,
167 * then create the base home directory if necessary
169 if (arg
!= NULL
|| getarg(args
, 'm') != NULL
) {
170 int l
= strlen(cnf
->home
);
172 if (l
> 1 && cnf
->home
[l
-1] == '/') /* Shave off any trailing path delimiter */
173 cnf
->home
[--l
] = '\0';
175 if (l
< 2 || *cnf
->home
!= '/') /* Check for absolute path name */
176 errx(EX_DATAERR
, "invalid base directory for home '%s'", cnf
->home
);
178 if (stat(cnf
->home
, &st
) == -1) {
179 char dbuf
[MAXPATHLEN
];
182 * This is a kludge especially for Joerg :)
183 * If the home directory would be created in the root partition, then
184 * we really create it under /usr which is likely to have more space.
185 * But we create a symlink from cnf->home -> "/usr" -> cnf->home
187 if (strchr(cnf
->home
+1, '/') == NULL
) {
188 strcpy(dbuf
, "/usr");
189 strncat(dbuf
, cnf
->home
, MAXPATHLEN
-5);
190 if (mkdir(dbuf
, _DEF_DIRMODE
) != -1 || errno
== EEXIST
) {
193 * Skip first "/" and create symlink:
196 symlink(dbuf
+1, cnf
->home
);
198 /* If this falls, fall back to old method */
200 strlcpy(dbuf
, cnf
->home
, sizeof(dbuf
));
202 if (stat(dbuf
, &st
) == -1) {
203 while ((p
= strchr(++p
, '/')) != NULL
) {
205 if (stat(dbuf
, &st
) == -1) {
206 if (mkdir(dbuf
, _DEF_DIRMODE
) == -1)
209 } else if (!S_ISDIR(st
.st_mode
))
210 errx(EX_OSFILE
, "'%s' (root home parent) is not a directory", dbuf
);
214 if (stat(dbuf
, &st
) == -1) {
215 if (mkdir(dbuf
, _DEF_DIRMODE
) == -1) {
216 direrr
: err(EX_OSFILE
, "mkdir '%s'", dbuf
);
220 } else if (!S_ISDIR(st
.st_mode
))
221 errx(EX_OSFILE
, "root home `%s' is not a directory", cnf
->home
);
224 if ((arg
= getarg(args
, 'e')) != NULL
)
225 cnf
->expire_days
= atoi(arg
->val
);
227 if ((arg
= getarg(args
, 'y')) != NULL
)
228 cnf
->nispasswd
= arg
->val
;
230 if ((arg
= getarg(args
, 'p')) != NULL
&& arg
->val
)
231 cnf
->password_days
= atoi(arg
->val
);
233 if ((arg
= getarg(args
, 'g')) != NULL
) {
234 if (!*(p
= arg
->val
)) /* Handle empty group list specially */
235 cnf
->default_group
= "";
237 if ((grp
= GETGRNAM(p
)) == NULL
) {
238 if (!isdigit((unsigned char)*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
239 errx(EX_NOUSER
, "group `%s' does not exist", p
);
241 cnf
->default_group
= newstr(grp
->gr_name
);
244 if ((arg
= getarg(args
, 'L')) != NULL
)
245 cnf
->default_class
= pw_checkname((u_char
*)arg
->val
, 0);
247 if ((arg
= getarg(args
, 'G')) != NULL
&& arg
->val
) {
250 for (p
= strtok(arg
->val
, ", \t"); p
!= NULL
; p
= strtok(NULL
, ", \t")) {
251 if ((grp
= GETGRNAM(p
)) == NULL
) {
252 if (!isdigit((unsigned char)*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
253 errx(EX_NOUSER
, "group `%s' does not exist", p
);
255 if (extendarray(&cnf
->groups
, &cnf
->numgroups
, i
+ 2) != -1)
256 cnf
->groups
[i
++] = newstr(grp
->gr_name
);
258 while (i
< cnf
->numgroups
)
259 cnf
->groups
[i
++] = NULL
;
262 if ((arg
= getarg(args
, 'k')) != NULL
) {
263 if (stat(cnf
->dotdir
= arg
->val
, &st
) == -1 || !S_ISDIR(st
.st_mode
))
264 errx(EX_OSFILE
, "skeleton `%s' is not a directory or does not exist", cnf
->dotdir
);
267 if ((arg
= getarg(args
, 's')) != NULL
)
268 cnf
->shell_default
= arg
->val
;
270 if ((arg
= getarg(args
, 'w')) != NULL
)
271 cnf
->default_password
= boolean_val(arg
->val
, cnf
->default_password
);
272 if (mode
== M_ADD
&& getarg(args
, 'D')) {
273 if (getarg(args
, 'n') != NULL
)
274 errx(EX_DATAERR
, "can't combine `-D' with `-n name'");
275 if ((arg
= getarg(args
, 'u')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
276 if ((cnf
->min_uid
= (uid_t
) atoi(p
)) == 0)
278 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_uid
= (uid_t
) atoi(p
)) < cnf
->min_uid
)
279 cnf
->max_uid
= 32000;
281 if ((arg
= getarg(args
, 'i')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
282 if ((cnf
->min_gid
= (gid_t
) atoi(p
)) == 0)
284 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_gid
= (gid_t
) atoi(p
)) < cnf
->min_gid
)
285 cnf
->max_gid
= 32000;
288 arg
= getarg(args
, 'C');
289 if (write_userconfig(arg
? arg
->val
: NULL
))
291 warn("config update");
295 if (mode
== M_PRINT
&& getarg(args
, 'a')) {
296 int pretty
= getarg(args
, 'P') != NULL
;
297 int v7
= getarg(args
, '7') != NULL
;
299 while ((pwd
= GETPWENT()) != NULL
)
300 print_user(pwd
, pretty
, v7
);
305 if ((a_name
= getarg(args
, 'n')) != NULL
)
306 pwd
= GETPWNAM(pw_checkname((u_char
*)a_name
->val
, 0));
307 a_uid
= getarg(args
, 'u');
311 errx(EX_DATAERR
, "user name or id required");
314 * Determine whether 'n' switch is name or uid - we don't
315 * really don't really care which we have, but we need to
318 if (mode
!= M_ADD
&& pwd
== NULL
319 && strspn(a_name
->val
, "0123456789") == strlen(a_name
->val
)
321 (a_uid
= a_name
)->ch
= 'u';
327 * Update, delete & print require that the user exists
329 if (mode
== M_UPDATE
|| mode
== M_DELETE
||
330 mode
== M_PRINT
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
332 if (a_name
== NULL
&& pwd
== NULL
) /* Try harder */
333 pwd
= GETPWUID(atoi(a_uid
->val
));
336 if (mode
== M_PRINT
&& getarg(args
, 'F')) {
337 fakeuser
.pw_name
= a_name
? a_name
->val
: "nouser";
338 fakeuser
.pw_uid
= a_uid
? (uid_t
) atol(a_uid
->val
) : -1;
339 return print_user(&fakeuser
,
340 getarg(args
, 'P') != NULL
,
341 getarg(args
, '7') != NULL
);
344 errx(EX_NOUSER
, "no such uid `%s'", a_uid
->val
);
345 errx(EX_NOUSER
, "no such user `%s'", a_name
->val
);
348 if (a_name
== NULL
) /* May be needed later */
349 a_name
= addarg(args
, 'n', newstr(pwd
->pw_name
));
352 * The M_LOCK and M_UNLOCK functions simply add or remove
353 * a "*LOCKED*" prefix from in front of the password to
354 * prevent it decoding correctly, and therefore prevents
355 * access. Of course, this only prevents access via
356 * password authentication (not ssh, kerberos or any
357 * other method that does not use the UNIX password) but
358 * that is a known limitation.
361 if (mode
== M_LOCK
) {
362 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) == 0)
363 errx(EX_DATAERR
, "user '%s' is already locked", pwd
->pw_name
);
364 passtmp
= malloc(strlen(pwd
->pw_passwd
) + sizeof(locked_str
));
365 if (passtmp
== NULL
) /* disaster */
366 errx(EX_UNAVAILABLE
, "out of memory");
367 strcpy(passtmp
, locked_str
);
368 strcat(passtmp
, pwd
->pw_passwd
);
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
) {
378 * Handle deletions now
380 char file
[MAXPATHLEN
];
381 char home
[MAXPATHLEN
];
382 uid_t uid
= pwd
->pw_uid
;
384 if (strcmp(pwd
->pw_name
, "root") == 0)
385 errx(EX_DATAERR
, "cannot remove user 'root'");
389 * Remove opie record from /etc/opiekeys
392 rmopie(pwd
->pw_name
);
397 snprintf(file
, sizeof(file
), "/var/cron/tabs/%s", pwd
->pw_name
);
398 if (access(file
, F_OK
) == 0) {
399 sprintf(file
, "crontab -u %s -r", pwd
->pw_name
);
404 * Save these for later, since contents of pwd may be
405 * invalidated by deletion
407 sprintf(file
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
408 strlcpy(home
, pwd
->pw_dir
, sizeof(home
));
412 err(EX_IOERR
, "user '%s' does not exist", pwd
->pw_name
);
414 warn("passwd update");
418 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
419 rc
= delnispwent(cnf
->nispasswd
, a_name
->val
);
421 warnx("WARNING: user '%s' does not exist in NIS passwd", pwd
->pw_name
);
423 warn("WARNING: NIS passwd update");
427 grp
= GETGRNAM(a_name
->val
);
428 if (*grp
->gr_mem
== NULL
)
429 delgrent(GETGRNAM(a_name
->val
));
431 while ((grp
= GETGRENT()) != NULL
) {
433 char group
[MAXLOGNAME
];
434 for (i
= 0; grp
->gr_mem
[i
] != NULL
; i
++) {
435 if (!strcmp(grp
->gr_mem
[i
], a_name
->val
)) {
436 while (grp
->gr_mem
[i
] != NULL
) {
437 grp
->gr_mem
[i
] = grp
->gr_mem
[i
+1];
439 strlcpy(group
, grp
->gr_name
, MAXLOGNAME
);
440 chggrent(group
, grp
);
446 pw_log(cnf
, mode
, W_USER
, "%s(%ld) account removed", a_name
->val
, (long) uid
);
457 if (getpwuid(uid
) == NULL
)
461 * Remove home directory and contents
463 if (getarg(args
, 'r') != NULL
&& *home
== '/' && getpwuid(uid
) == NULL
) {
464 if (stat(home
, &st
) != -1) {
466 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home '%s' %sremoved",
467 a_name
->val
, (long) uid
, home
,
468 stat(home
, &st
) == -1 ? "" : "not completely ");
473 } else if (mode
== M_PRINT
)
474 return print_user(pwd
,
475 getarg(args
, 'P') != NULL
,
476 getarg(args
, '7') != NULL
);
479 * The rest is edit code
481 if ((arg
= getarg(args
, 'l')) != NULL
) {
482 if (strcmp(pwd
->pw_name
, "root") == 0)
483 errx(EX_DATAERR
, "can't rename `root' account");
484 pwd
->pw_name
= pw_checkname((u_char
*)arg
->val
, 0);
488 if ((arg
= getarg(args
, 'u')) != NULL
&& isdigit((unsigned char)*arg
->val
)) {
489 pwd
->pw_uid
= (uid_t
) atol(arg
->val
);
491 if (pwd
->pw_uid
!= 0 && strcmp(pwd
->pw_name
, "root") == 0)
492 errx(EX_DATAERR
, "can't change uid of `root' account");
493 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
494 warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd
->pw_name
);
497 if ((arg
= getarg(args
, 'g')) != NULL
&& pwd
->pw_uid
!= 0) { /* Already checked this */
498 gid_t newgid
= (gid_t
) GETGRNAM(cnf
->default_group
)->gr_gid
;
499 if (newgid
!= pwd
->pw_gid
) {
501 pwd
->pw_gid
= newgid
;
505 if ((arg
= getarg(args
, 'p')) != NULL
) {
506 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
507 if (pwd
->pw_change
!= 0) {
513 time_t now
= time(NULL
);
514 time_t expire
= parse_date(now
, arg
->val
);
517 errx(EX_DATAERR
, "invalid password change date `%s'", arg
->val
);
518 if (pwd
->pw_change
!= expire
) {
519 pwd
->pw_change
= expire
;
525 if ((arg
= getarg(args
, 'e')) != NULL
) {
526 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
527 if (pwd
->pw_expire
!= 0) {
533 time_t now
= time(NULL
);
534 time_t expire
= parse_date(now
, arg
->val
);
537 errx(EX_DATAERR
, "invalid account expiry date `%s'", arg
->val
);
538 if (pwd
->pw_expire
!= expire
) {
539 pwd
->pw_expire
= expire
;
545 if ((arg
= getarg(args
, 's')) != NULL
) {
546 char *shell
= shell_path(cnf
->shelldir
, cnf
->shells
, arg
->val
);
549 if (strcmp(shell
, pwd
->pw_shell
) != 0) {
550 pwd
->pw_shell
= shell
;
555 if (getarg(args
, 'L')) {
556 if (cnf
->default_class
== NULL
)
557 cnf
->default_class
= "";
558 if (strcmp(pwd
->pw_class
, cnf
->default_class
) != 0) {
559 pwd
->pw_class
= cnf
->default_class
;
564 if ((arg
= getarg(args
, 'd')) != NULL
) {
565 if (strcmp(pwd
->pw_dir
, arg
->val
))
567 if (stat(pwd
->pw_dir
= arg
->val
, &st
) == -1) {
568 if (getarg(args
, 'm') == NULL
&& strcmp(pwd
->pw_dir
, "/nonexistent") != 0)
569 warnx("WARNING: home `%s' does not exist", pwd
->pw_dir
);
570 } else if (!S_ISDIR(st
.st_mode
))
571 warnx("WARNING: home `%s' is not a directory", pwd
->pw_dir
);
574 if ((arg
= getarg(args
, 'w')) != NULL
&&
575 getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
) {
578 lc
= login_getpwclass(pwd
);
580 login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
581 warn("setting crypt(3) format");
583 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
594 if (a_name
== NULL
) /* Required */
595 errx(EX_DATAERR
, "login name required");
596 else if ((pwd
= GETPWNAM(a_name
->val
)) != NULL
) /* Exists */
597 errx(EX_DATAERR
, "login name `%s' already exists", a_name
->val
);
600 * Now, set up defaults for a new user
603 pwd
->pw_name
= a_name
->val
;
604 pwd
->pw_class
= cnf
->default_class
? cnf
->default_class
: "";
605 pwd
->pw_uid
= pw_uidpolicy(cnf
, args
);
606 pwd
->pw_gid
= pw_gidpolicy(cnf
, args
, pwd
->pw_name
, (gid_t
) pwd
->pw_uid
);
607 pwd
->pw_change
= pw_pwdpolicy(cnf
, args
);
608 pwd
->pw_expire
= pw_exppolicy(cnf
, args
);
609 pwd
->pw_dir
= pw_homepolicy(cnf
, args
, pwd
->pw_name
);
610 pwd
->pw_shell
= pw_shellpolicy(cnf
, args
, NULL
);
611 lc
= login_getpwclass(pwd
);
612 if (lc
== NULL
|| login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
613 warn("setting crypt(3) format");
615 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
618 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
619 warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd
->pw_name
);
623 * Shared add/edit code
625 if ((arg
= getarg(args
, 'c')) != NULL
) {
626 char *gecos
= pw_checkname((u_char
*)arg
->val
, 1);
627 if (strcmp(pwd
->pw_gecos
, gecos
) != 0) {
628 pwd
->pw_gecos
= gecos
;
633 if ((arg
= getarg(args
, 'h')) != NULL
||
634 (arg
= getarg(args
, 'H')) != NULL
) {
635 if (strcmp(arg
->val
, "-") == 0) {
636 if (!pwd
->pw_passwd
|| *pwd
->pw_passwd
!= '*') {
637 pwd
->pw_passwd
= "*"; /* No access */
641 int fd
= atoi(arg
->val
);
642 int precrypt
= (arg
->ch
== 'H');
644 int istty
= isatty(fd
);
649 if (tcgetattr(fd
, &t
) == -1)
652 struct termios n
= t
;
655 n
.c_lflag
&= ~(ECHO
);
656 tcsetattr(fd
, TCSANOW
, &n
);
657 printf("%s%spassword for user %s:",
658 (mode
== M_UPDATE
) ? "new " : "",
659 precrypt
? "encrypted " : "",
664 b
= read(fd
, line
, sizeof(line
) - 1);
665 if (istty
) { /* Restore state */
666 tcsetattr(fd
, TCSANOW
, &t
);
671 warn("-%c file descriptor", precrypt
? 'H' :
676 if ((p
= strpbrk(line
, "\r\n")) != NULL
)
679 errx(EX_DATAERR
, "empty password read on file descriptor %d", fd
);
681 if (strchr(line
, ':') != NULL
)
683 pwd
->pw_passwd
= line
;
685 lc
= login_getpwclass(pwd
);
687 login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
688 warn("setting crypt(3) format");
690 pwd
->pw_passwd
= pw_pwcrypt(line
);
697 * Special case: -N only displays & exits
699 if (getarg(args
, 'N') != NULL
)
700 return print_user(pwd
,
701 getarg(args
, 'P') != NULL
,
702 getarg(args
, '7') != NULL
);
705 edited
= 1; /* Always */
708 warnx("user '%s' already exists", pwd
->pw_name
);
710 } else if (rc
!= 0) {
711 warn("passwd file update");
714 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
715 rc
= addnispwent(cnf
->nispasswd
, pwd
);
717 warnx("User '%s' already exists in NIS passwd", pwd
->pw_name
);
719 warn("NIS passwd update");
720 /* NOTE: we treat NIS-only update errors as non-fatal */
722 } else if (mode
== M_UPDATE
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
723 if (edited
) { /* Only updated this if required */
724 rc
= chgpwent(a_name
->val
, pwd
);
726 warnx("user '%s' does not exist (NIS?)", pwd
->pw_name
);
728 } else if (rc
!= 0) {
729 warn("passwd file update");
732 if ( cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
733 rc
= chgnispwent(cnf
->nispasswd
, a_name
->val
, pwd
);
735 warn("User '%s' not found in NIS passwd", pwd
->pw_name
);
737 warn("NIS passwd update");
738 /* NOTE: NIS-only update errors are not fatal */
744 * Ok, user is created or changed - now edit group file
747 if (mode
== M_ADD
|| getarg(args
, 'G') != NULL
) {
749 for (i
= 0; cnf
->groups
[i
] != NULL
; i
++) {
751 grp
= GETGRNAM(cnf
->groups
[i
]);
752 for (j
= 0; grp
->gr_mem
[j
] != NULL
; j
++) {
753 if (!strcmp(grp
->gr_mem
[j
], pwd
->pw_name
))
756 if (grp
->gr_mem
[j
] != NULL
) /* user already member of group */
759 members
= malloc(sizeof(char *) * (j
+ 2));
760 for (j
= 0; grp
->gr_mem
[j
] != NULL
; j
++)
761 members
[j
] = grp
->gr_mem
[j
];
763 members
[j
] = pwd
->pw_name
;
765 grp
->gr_mem
= members
;
766 chggrent(cnf
->groups
[i
], grp
);
772 /* go get a current version of pwd */
773 pwd
= GETPWNAM(a_name
->val
);
775 /* This will fail when we rename, so special case that */
776 if (mode
== M_UPDATE
&& (arg
= getarg(args
, 'l')) != NULL
) {
777 a_name
->val
= arg
->val
; /* update new name */
778 pwd
= GETPWNAM(a_name
->val
); /* refetch renamed rec */
781 if (pwd
== NULL
) /* can't go on without this */
782 errx(EX_NOUSER
, "user '%s' disappeared during update", a_name
->val
);
784 grp
= GETGRGID(pwd
->pw_gid
);
785 pw_log(cnf
, mode
, W_USER
, "%s(%ld):%s(%ld):%s:%s:%s",
786 pwd
->pw_name
, (long) pwd
->pw_uid
,
787 grp
? grp
->gr_name
: "unknown", (long) (grp
? grp
->gr_gid
: -1),
788 pwd
->pw_gecos
, pwd
->pw_dir
, pwd
->pw_shell
);
791 * If adding, let's touch and chown the user's mail file. This is not
792 * strictly necessary under BSD with a 0755 maildir but it also
793 * doesn't hurt anything to create the empty mailfile
797 sprintf(line
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
798 close(open(line
, O_RDWR
| O_CREAT
, 0600)); /* Preserve contents &
800 chown(line
, pwd
->pw_uid
, pwd
->pw_gid
);
805 * Let's create and populate the user's home directory. Note
806 * that this also `works' for editing users if -m is used, but
807 * existing files will *not* be overwritten.
809 if (!PWALTDIR() && getarg(args
, 'm') != NULL
&& pwd
->pw_dir
&& *pwd
->pw_dir
== '/' && pwd
->pw_dir
[1]) {
810 copymkdir(pwd
->pw_dir
, cnf
->dotdir
, cnf
->homemode
, pwd
->pw_uid
, pwd
->pw_gid
);
811 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home %s made",
812 pwd
->pw_name
, (long) pwd
->pw_uid
, pwd
->pw_dir
);
817 * Finally, send mail to the new user as well, if we are asked to
819 if (mode
== M_ADD
&& !PWALTDIR() && cnf
->newmail
&& *cnf
->newmail
&& (fp
= fopen(cnf
->newmail
, "r")) != NULL
) {
820 FILE *pfp
= popen(_PATH_SENDMAIL
" -t", "w");
825 fprintf(pfp
, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd
->pw_name
);
826 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
827 /* Do substitutions? */
831 pw_log(cnf
, mode
, W_USER
, "%s(%ld) new user mail sent",
832 pwd
->pw_name
, (long) pwd
->pw_uid
);
842 pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
)
845 uid_t uid
= (uid_t
) - 1;
846 struct carg
*a_uid
= getarg(args
, 'u');
849 * Check the given uid, if any
852 uid
= (uid_t
) atol(a_uid
->val
);
854 if ((pwd
= GETPWUID(uid
)) != NULL
&& getarg(args
, 'o') == NULL
)
855 errx(EX_DATAERR
, "uid `%ld' has already been allocated", (long) pwd
->pw_uid
);
860 * We need to allocate the next available uid under one of
861 * two policies a) Grab the first unused uid b) Grab the
862 * highest possible unused uid
864 if (cnf
->min_uid
>= cnf
->max_uid
) { /* Sanity
865 * claus^H^H^H^Hheck */
867 cnf
->max_uid
= 32000;
869 bm
= bm_alloc(cnf
->max_uid
- cnf
->min_uid
+ 1);
872 * Now, let's fill the bitmap from the password file
875 while ((pwd
= GETPWENT()) != NULL
)
876 if (pwd
->pw_uid
>= (uid_t
) cnf
->min_uid
&& pwd
->pw_uid
<= (uid_t
) cnf
->max_uid
)
877 bm_setbit(&bm
, pwd
->pw_uid
- cnf
->min_uid
);
881 * Then apply the policy, with fallback to reuse if necessary
883 if (cnf
->reuse_uids
|| (uid
= (uid_t
) (bm_lastset(&bm
) + cnf
->min_uid
+ 1)) > cnf
->max_uid
)
884 uid
= (uid_t
) (bm_firstunset(&bm
) + cnf
->min_uid
);
887 * Another sanity check
889 if (uid
< cnf
->min_uid
|| uid
> cnf
->max_uid
)
890 errx(EX_SOFTWARE
, "unable to allocate a new uid - range fully used");
898 pw_gidpolicy(struct userconf
* cnf
, struct cargs
* args
, char *nam
, gid_t prefer
)
901 gid_t gid
= (uid_t
) - 1;
902 struct carg
*a_gid
= getarg(args
, 'g');
905 * If no arg given, see if default can help out
907 if (a_gid
== NULL
&& cnf
->default_group
&& *cnf
->default_group
)
908 a_gid
= addarg(args
, 'g', cnf
->default_group
);
911 * Check the given gid, if any
915 if ((grp
= GETGRNAM(a_gid
->val
)) == NULL
) {
916 gid
= (gid_t
) atol(a_gid
->val
);
917 if ((gid
== 0 && !isdigit((unsigned char)*a_gid
->val
)) || (grp
= GETGRGID(gid
)) == NULL
)
918 errx(EX_NOUSER
, "group `%s' is not defined", a_gid
->val
);
921 } else if ((grp
= GETGRNAM(nam
)) != NULL
&& grp
->gr_mem
[0] == NULL
) {
922 gid
= grp
->gr_gid
; /* Already created? Use it anyway... */
924 struct cargs grpargs
;
928 addarg(&grpargs
, 'n', nam
);
931 * We need to auto-create a group with the user's name. We
932 * can send all the appropriate output to our sister routine
933 * bit first see if we can create a group with gid==uid so we
934 * can keep the user and group ids in sync. We purposely do
935 * NOT check the gid range if we can force the sync. If the
936 * user's name dups an existing group, then the group add
937 * function will happily handle that case for us and exit.
939 if (GETGRGID(prefer
) == NULL
) {
940 sprintf(tmp
, "%lu", (unsigned long) prefer
);
941 addarg(&grpargs
, 'g', tmp
);
943 if (getarg(args
, 'N'))
945 addarg(&grpargs
, 'N', NULL
);
946 addarg(&grpargs
, 'q', NULL
);
947 gid
= pw_group(cnf
, M_NEXT
, &grpargs
);
951 pw_group(cnf
, M_ADD
, &grpargs
);
952 if ((grp
= GETGRNAM(nam
)) != NULL
)
955 a_gid
= LIST_FIRST(&grpargs
);
956 while (a_gid
!= NULL
) {
957 struct carg
*t
= LIST_NEXT(a_gid
, list
);
958 LIST_REMOVE(a_gid
, list
);
968 pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
)
971 time_t now
= time(NULL
);
972 struct carg
*arg
= getarg(args
, 'p');
975 if ((result
= parse_date(now
, arg
->val
)) == now
)
976 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
977 } else if (cnf
->password_days
> 0)
978 result
= now
+ ((long) cnf
->password_days
* 86400L);
984 pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
)
987 time_t now
= time(NULL
);
988 struct carg
*arg
= getarg(args
, 'e');
991 if ((result
= parse_date(now
, arg
->val
)) == now
)
992 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
993 } else if (cnf
->expire_days
> 0)
994 result
= now
+ ((long) cnf
->expire_days
* 86400L);
1000 pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
1002 struct carg
*arg
= getarg(args
, 'd');
1007 static char home
[128];
1009 if (cnf
->home
== NULL
|| *cnf
->home
== '\0')
1010 errx(EX_CONFIG
, "no base home directory set");
1011 sprintf(home
, "%s/%s", cnf
->home
, user
);
1017 shell_path(char const * path
, char *shells
[], char *sh
)
1019 if (sh
!= NULL
&& (*sh
== '/' || *sh
== '\0'))
1020 return sh
; /* specified full path or forced none */
1023 char paths
[_UC_MAXLINE
];
1026 * We need to search paths
1028 strlcpy(paths
, path
, sizeof(paths
));
1029 for (p
= strtok(paths
, ": \t\r\n"); p
!= NULL
; p
= strtok(NULL
, ": \t\r\n")) {
1031 static char shellpath
[256];
1034 sprintf(shellpath
, "%s/%s", p
, sh
);
1035 if (access(shellpath
, X_OK
) == 0)
1038 for (i
= 0; i
< _UC_MAXSHELLS
&& shells
[i
] != NULL
; i
++) {
1039 sprintf(shellpath
, "%s/%s", p
, shells
[i
]);
1040 if (access(shellpath
, X_OK
) == 0)
1045 errx(EX_OSFILE
, "can't find shell `%s' in shell paths", sh
);
1046 errx(EX_CONFIG
, "no default shell available or defined");
1053 pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
)
1055 char *sh
= newshell
;
1056 struct carg
*arg
= getarg(args
, 's');
1058 if (newshell
== NULL
&& arg
!= NULL
)
1060 return shell_path(cnf
->shelldir
, cnf
->shells
, sh
? sh
: cnf
->shell_default
);
1065 static char const chars
[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ./";
1068 pw_pwcrypt(char *password
)
1071 char salt
[SALTSIZE
+ 1];
1074 static char buf
[256];
1077 * Calculate a salt value
1079 for (i
= 0; i
< SALTSIZE
; i
++)
1080 salt
[i
] = chars
[arc4random_uniform(sizeof(chars
) - 1)];
1081 salt
[SALTSIZE
] = '\0';
1083 cryptpw
= crypt(password
, salt
);
1084 if (cryptpw
== NULL
)
1085 errx(EX_CONFIG
, "crypt(3) failure");
1086 return strcpy(buf
, cryptpw
);
1091 pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
1096 switch (cnf
->default_password
) {
1097 case -1: /* Random password */
1098 l
= (arc4random() % 8 + 8); /* 8 - 16 chars */
1099 for (i
= 0; i
< l
; i
++)
1100 pwbuf
[i
] = chars
[arc4random_uniform(sizeof(chars
)-1)];
1104 * We give this information back to the user
1106 if (getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
&&
1107 getarg(args
, 'N') == NULL
) {
1108 if (isatty(STDOUT_FILENO
))
1109 printf("Password for '%s' is: ", user
);
1110 printf("%s\n", pwbuf
);
1115 case -2: /* No password at all! */
1118 case 0: /* No login - default */
1122 case 1: /* user's name */
1123 strlcpy(pwbuf
, user
, sizeof(pwbuf
));
1126 return pw_pwcrypt(pwbuf
);
1131 print_user(struct passwd
* pwd
, int pretty
, int v7
)
1137 pwd
->pw_passwd
= (pwd
->pw_passwd
== NULL
) ? "" : "*";
1139 buf
= v7
? pw_make_v7(pwd
) : pw_make(pwd
);
1140 printf("%s\n", buf
);
1145 struct group
*grp
= GETGRGID(pwd
->pw_gid
);
1146 char uname
[60] = "User &", office
[60] = "[None]",
1147 wphone
[60] = "[None]", hphone
[60] = "[None]";
1148 char acexpire
[32] = "[None]", pwexpire
[32] = "[None]";
1151 if ((p
= strtok(pwd
->pw_gecos
, ",")) != NULL
) {
1152 strlcpy(uname
, p
, sizeof(uname
));
1153 if ((p
= strtok(NULL
, ",")) != NULL
) {
1154 strlcpy(office
, p
, sizeof(office
));
1155 if ((p
= strtok(NULL
, ",")) != NULL
) {
1156 strlcpy(wphone
, p
, sizeof(wphone
));
1157 if ((p
= strtok(NULL
, "")) != NULL
) {
1165 * Handle '&' in gecos field
1167 if ((p
= strchr(uname
, '&')) != NULL
) {
1168 int l
= strlen(pwd
->pw_name
);
1171 memmove(p
+ l
, p
+ 1, m
);
1172 memmove(p
, pwd
->pw_name
, l
);
1173 *p
= (char) toupper((unsigned char)*p
);
1175 if (pwd
->pw_expire
> (time_t)0 && (tptr
= localtime(&pwd
->pw_expire
)) != NULL
)
1176 strftime(acexpire
, sizeof acexpire
, "%c", tptr
);
1177 if (pwd
->pw_change
> (time_t)0 && (tptr
= localtime(&pwd
->pw_change
)) != NULL
)
1178 strftime(pwexpire
, sizeof pwexpire
, "%c", tptr
);
1179 printf("Login Name: %-15s #%-12ld Group: %-15s #%ld\n"
1181 " Home: %-26.26s Class: %s\n"
1182 " Shell: %-26.26s Office: %s\n"
1183 "Work Phone: %-26.26s Home Phone: %s\n"
1184 "Acc Expire: %-26.26s Pwd Expire: %s\n",
1185 pwd
->pw_name
, (long) pwd
->pw_uid
,
1186 grp
? grp
->gr_name
: "(invalid)", (long) pwd
->pw_gid
,
1187 uname
, pwd
->pw_dir
, pwd
->pw_class
,
1188 pwd
->pw_shell
, office
, wphone
, hphone
,
1189 acexpire
, pwexpire
);
1192 while ((grp
=GETGRENT()) != NULL
)
1195 while (grp
->gr_mem
[i
] != NULL
)
1197 if (strcmp(grp
->gr_mem
[i
], pwd
->pw_name
)==0)
1199 printf(j
++ == 0 ? " Groups: %s" : ",%s", grp
->gr_name
);
1206 printf("%s", j
? "\n" : "");
1208 return EXIT_SUCCESS
;
1212 pw_checkname(u_char
*name
, int gecos
)
1215 u_char
const *badchars
, *ch
, *showtype
;
1221 /* See if the name is valid as a gecos (comment) field. */
1223 showtype
= "gecos field";
1225 /* See if the name is valid as a userid or group. */
1226 badchars
= " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1227 showtype
= "userid/group name";
1228 /* Userids and groups can not have a leading '-'. */
1234 if (strchr(badchars
, *ch
) != NULL
|| *ch
< ' ' ||
1239 /* 8-bit characters are only allowed in GECOS fields */
1240 if (!gecos
&& (*ch
& 0x80)) {
1248 * A `$' is allowed as the final character for userids and groups,
1249 * mainly for the benefit of samba.
1251 if (reject
&& !gecos
) {
1252 if (*ch
== '$' && *(ch
+ 1) == '\0') {
1258 snprintf(showch
, sizeof(showch
), (*ch
>= ' ' && *ch
< 127)
1259 ? "`%c'" : "0x%02x", *ch
);
1260 errx(EX_DATAERR
, "invalid character %s at position %td in %s",
1261 showch
, (ch
- name
), showtype
);
1263 if (!gecos
&& (ch
- name
) > LOGNAMESIZE
)
1264 errx(EX_DATAERR
, "name too long `%s' (max is %d)", name
,
1266 return (char *)name
;
1273 DIR *d
= opendir("/var/at/jobs");
1278 while ((e
= readdir(d
)) != NULL
) {
1281 if (strncmp(e
->d_name
, ".lock", 5) != 0 &&
1282 stat(e
->d_name
, &st
) == 0 &&
1283 !S_ISDIR(st
.st_mode
) &&
1285 char tmp
[MAXPATHLEN
];
1287 sprintf(tmp
, "/usr/bin/atrm %s", e
->d_name
);
1296 rmopie(char const * name
)
1298 static const char etcopie
[] = "/etc/opiekeys";
1299 FILE *fp
= fopen(etcopie
, "r+");
1304 int length
= strlen(name
);
1306 while (fgets(tmp
, sizeof tmp
, fp
) != NULL
) {
1307 if (strncmp(name
, tmp
, length
) == 0 && tmp
[length
]==' ') {
1308 if (fseek(fp
, atofs
, SEEK_SET
) == 0) {
1309 fwrite("#", 1, 1, fp
); /* Comment username out */
1316 * If we got an error of any sort, don't update!