]>
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>
45 #include <login_cap.h>
46 #if defined(USE_MD5RAND)
52 #if (MAXLOGNAME-1) > UT_NAMESIZE
53 #define LOGNAMESIZE UT_NAMESIZE
55 #define LOGNAMESIZE (MAXLOGNAME-1)
58 static char locked_str
[] = "*LOCKED*";
60 static int print_user(struct passwd
* pwd
, int pretty
, int v7
);
61 static uid_t
pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
);
62 static uid_t
pw_gidpolicy(struct userconf
* cnf
, struct cargs
* args
, char *nam
, gid_t prefer
);
63 static time_t pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
);
64 static time_t pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
);
65 static char *pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
);
66 static char *pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
);
67 static char *pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
);
68 static char *shell_path(char const * path
, char *shells
[], char *sh
);
69 static void rmat(uid_t uid
);
70 static void rmopie(char const * name
);
73 * -C config configuration file
77 * -c comment user name/comment
78 * -d directory home directory
79 * -e date account expiry date
80 * -p date password expiry date
81 * -g grp primary group
82 * -G grp1,grp2 additional groups
83 * -m [ -k dir ] create and set up home
84 * -s shell name of login shell
87 * -l name new login name
88 * -h fd password filehandle
89 * -H fd encrypted password filehandle
90 * -F force print or add
92 * -D set user defaults
93 * -b dir default home root dir
94 * -e period default expiry period
95 * -p period default password change period
96 * -g group default group
97 * -G grp1,grp2.. default additional groups
98 * -L class default login class
99 * -k dir default home skeleton
100 * -s shell default shell
101 * -w method default password method
105 pw_user(struct userconf
* cnf
, int mode
, struct cargs
* args
)
113 struct passwd
*pwd
= NULL
;
116 char line
[_PASSWORD_LEN
+1];
119 static struct passwd fakeuser
=
131 #if defined(__FreeBSD__)
138 * With M_NEXT, we only need to return the
143 uid_t next
= pw_uidpolicy(cnf
, args
);
144 if (getarg(args
, 'q'))
146 printf("%ld:", (long)next
);
147 pw_group(cnf
, mode
, args
);
152 * We can do all of the common legwork here
155 if ((arg
= getarg(args
, 'b')) != NULL
) {
156 cnf
->home
= arg
->val
;
160 * If we'll need to use it or we're updating it,
161 * then create the base home directory if necessary
163 if (arg
!= NULL
|| getarg(args
, 'm') != NULL
) {
164 int l
= strlen(cnf
->home
);
166 if (l
> 1 && cnf
->home
[l
-1] == '/') /* Shave off any trailing path delimiter */
167 cnf
->home
[--l
] = '\0';
169 if (l
< 2 || *cnf
->home
!= '/') /* Check for absolute path name */
170 errx(EX_DATAERR
, "invalid base directory for home '%s'", cnf
->home
);
172 if (stat(cnf
->home
, &st
) == -1) {
173 char dbuf
[MAXPATHLEN
];
176 * This is a kludge especially for Joerg :)
177 * If the home directory would be created in the root partition, then
178 * we really create it under /usr which is likely to have more space.
179 * But we create a symlink from cnf->home -> "/usr" -> cnf->home
181 if (strchr(cnf
->home
+1, '/') == NULL
) {
182 strcpy(dbuf
, "/usr");
183 strncat(dbuf
, cnf
->home
, MAXPATHLEN
-5);
184 if (mkdir(dbuf
, 0755) != -1 || errno
== EEXIST
) {
186 symlink(dbuf
, cnf
->home
);
188 /* If this falls, fall back to old method */
190 p
= strncpy(dbuf
, cnf
->home
, sizeof dbuf
);
191 dbuf
[MAXPATHLEN
-1] = '\0';
192 if (stat(dbuf
, &st
) == -1) {
193 while ((p
= strchr(++p
, '/')) != NULL
) {
195 if (stat(dbuf
, &st
) == -1) {
196 if (mkdir(dbuf
, 0755) == -1)
199 } else if (!S_ISDIR(st
.st_mode
))
200 errx(EX_OSFILE
, "'%s' (root home parent) is not a directory", dbuf
);
204 if (stat(dbuf
, &st
) == -1) {
205 if (mkdir(dbuf
, 0755) == -1) {
206 direrr
: err(EX_OSFILE
, "mkdir '%s'", dbuf
);
210 } else if (!S_ISDIR(st
.st_mode
))
211 errx(EX_OSFILE
, "root home `%s' is not a directory", cnf
->home
);
214 if ((arg
= getarg(args
, 'e')) != NULL
)
215 cnf
->expire_days
= atoi(arg
->val
);
217 if ((arg
= getarg(args
, 'y')) != NULL
)
218 cnf
->nispasswd
= arg
->val
;
220 if ((arg
= getarg(args
, 'p')) != NULL
&& arg
->val
)
221 cnf
->password_days
= atoi(arg
->val
);
223 if ((arg
= getarg(args
, 'g')) != NULL
) {
224 if (!*(p
= arg
->val
)) /* Handle empty group list specially */
225 cnf
->default_group
= "";
227 if ((grp
= GETGRNAM(p
)) == NULL
) {
228 if (!isdigit((unsigned char)*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
229 errx(EX_NOUSER
, "group `%s' does not exist", p
);
231 cnf
->default_group
= newstr(grp
->gr_name
);
234 if ((arg
= getarg(args
, 'L')) != NULL
)
235 cnf
->default_class
= pw_checkname((u_char
*)arg
->val
, 0);
237 if ((arg
= getarg(args
, 'G')) != NULL
&& arg
->val
) {
240 for (p
= strtok(arg
->val
, ", \t"); p
!= NULL
; p
= strtok(NULL
, ", \t")) {
241 if ((grp
= GETGRNAM(p
)) == NULL
) {
242 if (!isdigit((unsigned char)*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
243 errx(EX_NOUSER
, "group `%s' does not exist", p
);
245 if (extendarray(&cnf
->groups
, &cnf
->numgroups
, i
+ 2) != -1)
246 cnf
->groups
[i
++] = newstr(grp
->gr_name
);
248 while (i
< cnf
->numgroups
)
249 cnf
->groups
[i
++] = NULL
;
252 if ((arg
= getarg(args
, 'k')) != NULL
) {
253 if (stat(cnf
->dotdir
= arg
->val
, &st
) == -1 || !S_ISDIR(st
.st_mode
))
254 errx(EX_OSFILE
, "skeleton `%s' is not a directory or does not exist", cnf
->dotdir
);
257 if ((arg
= getarg(args
, 's')) != NULL
)
258 cnf
->shell_default
= arg
->val
;
260 if ((arg
= getarg(args
, 'w')) != NULL
)
261 cnf
->default_password
= boolean_val(arg
->val
, cnf
->default_password
);
262 if (mode
== M_ADD
&& getarg(args
, 'D')) {
263 if (getarg(args
, 'n') != NULL
)
264 errx(EX_DATAERR
, "can't combine `-D' with `-n name'");
265 if ((arg
= getarg(args
, 'u')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
266 if ((cnf
->min_uid
= (uid_t
) atoi(p
)) == 0)
268 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_uid
= (uid_t
) atoi(p
)) < cnf
->min_uid
)
269 cnf
->max_uid
= 32000;
271 if ((arg
= getarg(args
, 'i')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
272 if ((cnf
->min_gid
= (gid_t
) atoi(p
)) == 0)
274 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_gid
= (gid_t
) atoi(p
)) < cnf
->min_gid
)
275 cnf
->max_gid
= 32000;
278 arg
= getarg(args
, 'C');
279 if (write_userconfig(arg
? arg
->val
: NULL
))
281 warn("config update");
285 if (mode
== M_PRINT
&& getarg(args
, 'a')) {
286 int pretty
= getarg(args
, 'P') != NULL
;
287 int v7
= getarg(args
, '7') != NULL
;
290 while ((pwd
= GETPWENT()) != NULL
)
291 print_user(pwd
, pretty
, v7
);
296 if ((a_name
= getarg(args
, 'n')) != NULL
)
297 pwd
= GETPWNAM(pw_checkname((u_char
*)a_name
->val
, 0));
298 a_uid
= getarg(args
, 'u');
302 errx(EX_DATAERR
, "user name or id required");
305 * Determine whether 'n' switch is name or uid - we don't
306 * really don't really care which we have, but we need to
309 if (mode
!= M_ADD
&& pwd
== NULL
310 && strspn(a_name
->val
, "0123456789") == strlen(a_name
->val
)
311 && atoi(a_name
->val
) > 0) { /* Assume uid */
312 (a_uid
= a_name
)->ch
= 'u';
318 * Update, delete & print require that the user exists
320 if (mode
== M_UPDATE
|| mode
== M_DELETE
||
321 mode
== M_PRINT
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
323 if (a_name
== NULL
&& pwd
== NULL
) /* Try harder */
324 pwd
= GETPWUID(atoi(a_uid
->val
));
327 if (mode
== M_PRINT
&& getarg(args
, 'F')) {
328 fakeuser
.pw_name
= a_name
? a_name
->val
: "nouser";
329 fakeuser
.pw_uid
= a_uid
? (uid_t
) atol(a_uid
->val
) : -1;
330 return print_user(&fakeuser
,
331 getarg(args
, 'P') != NULL
,
332 getarg(args
, '7') != NULL
);
335 errx(EX_NOUSER
, "no such uid `%s'", a_uid
->val
);
336 errx(EX_NOUSER
, "no such user `%s'", a_name
->val
);
339 if (a_name
== NULL
) /* May be needed later */
340 a_name
= addarg(args
, 'n', newstr(pwd
->pw_name
));
343 * The M_LOCK and M_UNLOCK functions simply add or remove
344 * a "*LOCKED*" prefix from in front of the password to
345 * prevent it decoding correctly, and therefore prevents
346 * access. Of course, this only prevents access via
347 * password authentication (not ssh, kerberos or any
348 * other method that does not use the UNIX password) but
349 * that is a known limitation.
352 if (mode
== M_LOCK
) {
353 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) == 0)
354 errx(EX_DATAERR
, "user '%s' is already locked", pwd
->pw_name
);
355 passtmp
= malloc(strlen(pwd
->pw_passwd
) + sizeof(locked_str
));
356 if (passtmp
== NULL
) /* disaster */
357 errx(EX_UNAVAILABLE
, "out of memory");
358 strcpy(passtmp
, locked_str
);
359 strcat(passtmp
, pwd
->pw_passwd
);
360 pwd
->pw_passwd
= passtmp
;
362 } else if (mode
== M_UNLOCK
) {
363 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) != 0)
364 errx(EX_DATAERR
, "user '%s' is not locked", pwd
->pw_name
);
365 pwd
->pw_passwd
+= sizeof(locked_str
)-1;
367 } else if (mode
== M_DELETE
) {
369 * Handle deletions now
371 char file
[MAXPATHLEN
];
372 char home
[MAXPATHLEN
];
373 uid_t uid
= pwd
->pw_uid
;
375 if (strcmp(pwd
->pw_name
, "root") == 0)
376 errx(EX_DATAERR
, "cannot remove user 'root'");
380 * Remove opie record from /etc/opiekeys
383 rmopie(pwd
->pw_name
);
388 sprintf(file
, "/var/cron/tabs/%s", pwd
->pw_name
);
389 if (access(file
, F_OK
) == 0) {
390 sprintf(file
, "crontab -u %s -r", pwd
->pw_name
);
395 * Save these for later, since contents of pwd may be
396 * invalidated by deletion
398 sprintf(file
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
399 strncpy(home
, pwd
->pw_dir
, sizeof home
);
400 home
[sizeof home
- 1] = '\0';
404 err(EX_IOERR
, "user '%s' does not exist", pwd
->pw_name
);
406 warn("passwd update");
410 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
411 rc
= delnispwent(cnf
->nispasswd
, a_name
->val
);
413 warnx("WARNING: user '%s' does not exist in NIS passwd", pwd
->pw_name
);
415 warn("WARNING: NIS passwd update");
419 editgroups(a_name
->val
, NULL
);
421 pw_log(cnf
, mode
, W_USER
, "%s(%ld) account removed", a_name
->val
, (long) uid
);
432 if (getpwuid(uid
) == NULL
)
436 * Remove home directory and contents
438 if (getarg(args
, 'r') != NULL
&& *home
== '/' && getpwuid(uid
) == NULL
) {
439 if (stat(home
, &st
) != -1) {
441 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home '%s' %sremoved",
442 a_name
->val
, (long) uid
, home
,
443 stat(home
, &st
) == -1 ? "" : "not completely ");
448 } else if (mode
== M_PRINT
)
449 return print_user(pwd
,
450 getarg(args
, 'P') != NULL
,
451 getarg(args
, '7') != NULL
);
454 * The rest is edit code
456 if ((arg
= getarg(args
, 'l')) != NULL
) {
457 if (strcmp(pwd
->pw_name
, "root") == 0)
458 errx(EX_DATAERR
, "can't rename `root' account");
459 pwd
->pw_name
= pw_checkname((u_char
*)arg
->val
, 0);
463 if ((arg
= getarg(args
, 'u')) != NULL
&& isdigit((unsigned char)*arg
->val
)) {
464 pwd
->pw_uid
= (uid_t
) atol(arg
->val
);
466 if (pwd
->pw_uid
!= 0 && strcmp(pwd
->pw_name
, "root") == 0)
467 errx(EX_DATAERR
, "can't change uid of `root' account");
468 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
469 warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd
->pw_name
);
472 if ((arg
= getarg(args
, 'g')) != NULL
&& pwd
->pw_uid
!= 0) { /* Already checked this */
473 gid_t newgid
= (gid_t
) GETGRNAM(cnf
->default_group
)->gr_gid
;
474 if (newgid
!= pwd
->pw_gid
) {
476 pwd
->pw_gid
= newgid
;
480 if ((arg
= getarg(args
, 'p')) != NULL
) {
481 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
482 if (pwd
->pw_change
!= 0) {
488 time_t now
= time(NULL
);
489 time_t expire
= parse_date(now
, arg
->val
);
492 errx(EX_DATAERR
, "invalid password change date `%s'", arg
->val
);
493 if (pwd
->pw_change
!= expire
) {
494 pwd
->pw_change
= expire
;
500 if ((arg
= getarg(args
, 'e')) != NULL
) {
501 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
502 if (pwd
->pw_expire
!= 0) {
508 time_t now
= time(NULL
);
509 time_t expire
= parse_date(now
, arg
->val
);
512 errx(EX_DATAERR
, "invalid account expiry date `%s'", arg
->val
);
513 if (pwd
->pw_expire
!= expire
) {
514 pwd
->pw_expire
= expire
;
520 if ((arg
= getarg(args
, 's')) != NULL
) {
521 char *shell
= shell_path(cnf
->shelldir
, cnf
->shells
, arg
->val
);
524 if (strcmp(shell
, pwd
->pw_shell
) != 0) {
525 pwd
->pw_shell
= shell
;
530 if (getarg(args
, 'L')) {
531 if (cnf
->default_class
== NULL
)
532 cnf
->default_class
= "";
533 if (strcmp(pwd
->pw_class
, cnf
->default_class
) != 0) {
534 pwd
->pw_class
= cnf
->default_class
;
539 if ((arg
= getarg(args
, 'd')) != NULL
) {
540 edited
= strcmp(pwd
->pw_dir
, arg
->val
) != 0;
541 if (stat(pwd
->pw_dir
= arg
->val
, &st
) == -1) {
542 if (getarg(args
, 'm') == NULL
&& strcmp(pwd
->pw_dir
, "/nonexistent") != 0)
543 warnx("WARNING: home `%s' does not exist", pwd
->pw_dir
);
544 } else if (!S_ISDIR(st
.st_mode
))
545 warnx("WARNING: home `%s' is not a directory", pwd
->pw_dir
);
548 if ((arg
= getarg(args
, 'w')) != NULL
&&
549 getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
) {
552 lc
= login_getpwclass(pwd
);
554 login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
555 warn("setting crypt(3) format");
557 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
568 if (a_name
== NULL
) /* Required */
569 errx(EX_DATAERR
, "login name required");
570 else if ((pwd
= GETPWNAM(a_name
->val
)) != NULL
) /* Exists */
571 errx(EX_DATAERR
, "login name `%s' already exists", a_name
->val
);
574 * Now, set up defaults for a new user
577 pwd
->pw_name
= a_name
->val
;
578 pwd
->pw_class
= cnf
->default_class
? cnf
->default_class
: "";
579 pwd
->pw_uid
= pw_uidpolicy(cnf
, args
);
580 pwd
->pw_gid
= pw_gidpolicy(cnf
, args
, pwd
->pw_name
, (gid_t
) pwd
->pw_uid
);
581 pwd
->pw_change
= pw_pwdpolicy(cnf
, args
);
582 pwd
->pw_expire
= pw_exppolicy(cnf
, args
);
583 pwd
->pw_dir
= pw_homepolicy(cnf
, args
, pwd
->pw_name
);
584 pwd
->pw_shell
= pw_shellpolicy(cnf
, args
, NULL
);
585 lc
= login_getpwclass(pwd
);
586 if (lc
== NULL
|| login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
587 warn("setting crypt(3) format");
589 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
592 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
593 warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd
->pw_name
);
597 * Shared add/edit code
599 if ((arg
= getarg(args
, 'c')) != NULL
) {
600 char *gecos
= pw_checkname((u_char
*)arg
->val
, 1);
601 if (strcmp(pwd
->pw_gecos
, gecos
) != 0) {
602 pwd
->pw_gecos
= gecos
;
607 if ((arg
= getarg(args
, 'h')) != NULL
||
608 (arg
= getarg(args
, 'H')) != NULL
) {
609 if (strcmp(arg
->val
, "-") == 0) {
610 if (!pwd
->pw_passwd
|| *pwd
->pw_passwd
!= '*') {
611 pwd
->pw_passwd
= "*"; /* No access */
615 int fd
= atoi(arg
->val
);
616 int precrypt
= (arg
->ch
== 'H');
618 int istty
= isatty(fd
);
623 if (tcgetattr(fd
, &t
) == -1)
626 struct termios n
= t
;
629 n
.c_lflag
&= ~(ECHO
);
630 tcsetattr(fd
, TCSANOW
, &n
);
631 printf("%s%spassword for user %s:",
632 (mode
== M_UPDATE
) ? "new " : "",
633 precrypt
? "encrypted " : "",
638 b
= read(fd
, line
, sizeof(line
) - 1);
639 if (istty
) { /* Restore state */
640 tcsetattr(fd
, TCSANOW
, &t
);
645 warn("-%c file descriptor", precrypt
? 'H' :
650 if ((p
= strpbrk(line
, " \t\r\n")) != NULL
)
653 errx(EX_DATAERR
, "empty password read on file descriptor %d", fd
);
655 if (strchr(line
, ':') != NULL
)
657 pwd
->pw_passwd
= line
;
659 lc
= login_getpwclass(pwd
);
661 login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
662 warn("setting crypt(3) format");
664 pwd
->pw_passwd
= pw_pwcrypt(line
);
671 * Special case: -N only displays & exits
673 if (getarg(args
, 'N') != NULL
)
674 return print_user(pwd
,
675 getarg(args
, 'P') != NULL
,
676 getarg(args
, '7') != NULL
);
679 edited
= 1; /* Always */
682 warnx("user '%s' already exists", pwd
->pw_name
);
684 } else if (rc
!= 0) {
685 warn("passwd file update");
688 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
689 rc
= addnispwent(cnf
->nispasswd
, pwd
);
691 warnx("User '%s' already exists in NIS passwd", pwd
->pw_name
);
693 warn("NIS passwd update");
694 /* NOTE: we treat NIS-only update errors as non-fatal */
696 } else if (mode
== M_UPDATE
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
697 if (edited
) { /* Only updated this if required */
698 rc
= chgpwent(a_name
->val
, pwd
);
700 warnx("user '%s' does not exist (NIS?)", pwd
->pw_name
);
702 } else if (rc
!= 0) {
703 warn("passwd file update");
706 if ( cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
707 rc
= chgnispwent(cnf
->nispasswd
, a_name
->val
, pwd
);
709 warn("User '%s' not found in NIS passwd", pwd
->pw_name
);
711 warn("NIS passwd update");
712 /* NOTE: NIS-only update errors are not fatal */
718 * Ok, user is created or changed - now edit group file
721 if (mode
== M_ADD
|| getarg(args
, 'G') != NULL
)
722 editgroups(pwd
->pw_name
, cnf
->groups
);
724 /* go get a current version of pwd */
725 pwd
= GETPWNAM(a_name
->val
);
727 /* This will fail when we rename, so special case that */
728 if (mode
== M_UPDATE
&& (arg
= getarg(args
, 'l')) != NULL
) {
729 a_name
->val
= arg
->val
; /* update new name */
730 pwd
= GETPWNAM(a_name
->val
); /* refetch renamed rec */
733 if (pwd
== NULL
) /* can't go on without this */
734 errx(EX_NOUSER
, "user '%s' disappeared during update", a_name
->val
);
736 grp
= GETGRGID(pwd
->pw_gid
);
737 pw_log(cnf
, mode
, W_USER
, "%s(%ld):%s(%ld):%s:%s:%s",
738 pwd
->pw_name
, (long) pwd
->pw_uid
,
739 grp
? grp
->gr_name
: "unknown", (long) (grp
? grp
->gr_gid
: -1),
740 pwd
->pw_gecos
, pwd
->pw_dir
, pwd
->pw_shell
);
743 * If adding, let's touch and chown the user's mail file. This is not
744 * strictly necessary under BSD with a 0755 maildir but it also
745 * doesn't hurt anything to create the empty mailfile
749 sprintf(line
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
750 close(open(line
, O_RDWR
| O_CREAT
, 0600)); /* Preserve contents &
752 chown(line
, pwd
->pw_uid
, pwd
->pw_gid
);
757 * Let's create and populate the user's home directory. Note
758 * that this also `works' for editing users if -m is used, but
759 * existing files will *not* be overwritten.
761 if (!PWALTDIR() && getarg(args
, 'm') != NULL
&& pwd
->pw_dir
&& *pwd
->pw_dir
== '/' && pwd
->pw_dir
[1]) {
762 copymkdir(pwd
->pw_dir
, cnf
->dotdir
, 0755, pwd
->pw_uid
, pwd
->pw_gid
);
763 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home %s made",
764 pwd
->pw_name
, (long) pwd
->pw_uid
, pwd
->pw_dir
);
769 * Finally, send mail to the new user as well, if we are asked to
771 if (mode
== M_ADD
&& !PWALTDIR() && cnf
->newmail
&& *cnf
->newmail
&& (fp
= fopen(cnf
->newmail
, "r")) != NULL
) {
772 FILE *pfp
= popen(_PATH_SENDMAIL
" -t", "w");
777 fprintf(pfp
, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd
->pw_name
);
778 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
779 /* Do substitutions? */
783 pw_log(cnf
, mode
, W_USER
, "%s(%ld) new user mail sent",
784 pwd
->pw_name
, (long) pwd
->pw_uid
);
794 pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
)
797 uid_t uid
= (uid_t
) - 1;
798 struct carg
*a_uid
= getarg(args
, 'u');
801 * Check the given uid, if any
804 uid
= (uid_t
) atol(a_uid
->val
);
806 if ((pwd
= GETPWUID(uid
)) != NULL
&& getarg(args
, 'o') == NULL
)
807 errx(EX_DATAERR
, "uid `%ld' has already been allocated", (long) pwd
->pw_uid
);
812 * We need to allocate the next available uid under one of
813 * two policies a) Grab the first unused uid b) Grab the
814 * highest possible unused uid
816 if (cnf
->min_uid
>= cnf
->max_uid
) { /* Sanity
817 * claus^H^H^H^Hheck */
819 cnf
->max_uid
= 32000;
821 bm
= bm_alloc(cnf
->max_uid
- cnf
->min_uid
+ 1);
824 * Now, let's fill the bitmap from the password file
827 while ((pwd
= GETPWENT()) != NULL
)
828 if (pwd
->pw_uid
>= (uid_t
) cnf
->min_uid
&& pwd
->pw_uid
<= (uid_t
) cnf
->max_uid
)
829 bm_setbit(&bm
, pwd
->pw_uid
- cnf
->min_uid
);
833 * Then apply the policy, with fallback to reuse if necessary
835 if (cnf
->reuse_uids
|| (uid
= (uid_t
) (bm_lastset(&bm
) + cnf
->min_uid
+ 1)) > cnf
->max_uid
)
836 uid
= (uid_t
) (bm_firstunset(&bm
) + cnf
->min_uid
);
839 * Another sanity check
841 if (uid
< cnf
->min_uid
|| uid
> cnf
->max_uid
)
842 errx(EX_SOFTWARE
, "unable to allocate a new uid - range fully used");
850 pw_gidpolicy(struct userconf
* cnf
, struct cargs
* args
, char *nam
, gid_t prefer
)
853 gid_t gid
= (uid_t
) - 1;
854 struct carg
*a_gid
= getarg(args
, 'g');
857 * If no arg given, see if default can help out
859 if (a_gid
== NULL
&& cnf
->default_group
&& *cnf
->default_group
)
860 a_gid
= addarg(args
, 'g', cnf
->default_group
);
863 * Check the given gid, if any
867 if ((grp
= GETGRNAM(a_gid
->val
)) == NULL
) {
868 gid
= (gid_t
) atol(a_gid
->val
);
869 if ((gid
== 0 && !isdigit((unsigned char)*a_gid
->val
)) || (grp
= GETGRGID(gid
)) == NULL
)
870 errx(EX_NOUSER
, "group `%s' is not defined", a_gid
->val
);
873 } else if ((grp
= GETGRNAM(nam
)) != NULL
&& grp
->gr_mem
[0] == NULL
) {
874 gid
= grp
->gr_gid
; /* Already created? Use it anyway... */
876 struct cargs grpargs
;
880 addarg(&grpargs
, 'n', nam
);
883 * We need to auto-create a group with the user's name. We
884 * can send all the appropriate output to our sister routine
885 * bit first see if we can create a group with gid==uid so we
886 * can keep the user and group ids in sync. We purposely do
887 * NOT check the gid range if we can force the sync. If the
888 * user's name dups an existing group, then the group add
889 * function will happily handle that case for us and exit.
891 if (GETGRGID(prefer
) == NULL
) {
892 sprintf(tmp
, "%lu", (unsigned long) prefer
);
893 addarg(&grpargs
, 'g', tmp
);
895 if (getarg(args
, 'N'))
897 addarg(&grpargs
, 'N', NULL
);
898 addarg(&grpargs
, 'q', NULL
);
899 gid
= pw_group(cnf
, M_NEXT
, &grpargs
);
903 pw_group(cnf
, M_ADD
, &grpargs
);
904 if ((grp
= GETGRNAM(nam
)) != NULL
)
907 a_gid
= LIST_FIRST(&grpargs
);
908 while (a_gid
!= NULL
) {
909 struct carg
*t
= LIST_NEXT(a_gid
, list
);
910 LIST_REMOVE(a_gid
, list
);
920 pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
)
923 time_t now
= time(NULL
);
924 struct carg
*arg
= getarg(args
, 'p');
927 if ((result
= parse_date(now
, arg
->val
)) == now
)
928 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
929 } else if (cnf
->password_days
> 0)
930 result
= now
+ ((long) cnf
->password_days
* 86400L);
936 pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
)
939 time_t now
= time(NULL
);
940 struct carg
*arg
= getarg(args
, 'e');
943 if ((result
= parse_date(now
, arg
->val
)) == now
)
944 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
945 } else if (cnf
->expire_days
> 0)
946 result
= now
+ ((long) cnf
->expire_days
* 86400L);
952 pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
954 struct carg
*arg
= getarg(args
, 'd');
959 static char home
[128];
961 if (cnf
->home
== NULL
|| *cnf
->home
== '\0')
962 errx(EX_CONFIG
, "no base home directory set");
963 sprintf(home
, "%s/%s", cnf
->home
, user
);
969 shell_path(char const * path
, char *shells
[], char *sh
)
971 if (sh
!= NULL
&& (*sh
== '/' || *sh
== '\0'))
972 return sh
; /* specified full path or forced none */
975 char paths
[_UC_MAXLINE
];
978 * We need to search paths
980 strncpy(paths
, path
, sizeof paths
);
981 paths
[sizeof paths
- 1] = '\0';
982 for (p
= strtok(paths
, ": \t\r\n"); p
!= NULL
; p
= strtok(NULL
, ": \t\r\n")) {
984 static char shellpath
[256];
987 sprintf(shellpath
, "%s/%s", p
, sh
);
988 if (access(shellpath
, X_OK
) == 0)
991 for (i
= 0; i
< _UC_MAXSHELLS
&& shells
[i
] != NULL
; i
++) {
992 sprintf(shellpath
, "%s/%s", p
, shells
[i
]);
993 if (access(shellpath
, X_OK
) == 0)
998 errx(EX_OSFILE
, "can't find shell `%s' in shell paths", sh
);
999 errx(EX_CONFIG
, "no default shell available or defined");
1006 pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
)
1008 char *sh
= newshell
;
1009 struct carg
*arg
= getarg(args
, 's');
1011 if (newshell
== NULL
&& arg
!= NULL
)
1013 return shell_path(cnf
->shelldir
, cnf
->shells
, sh
? sh
: cnf
->shell_default
);
1016 static char const chars
[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.";
1019 pw_pwcrypt(char *password
)
1024 static char buf
[256];
1027 * Calculate a salt value
1029 for (i
= 0; i
< 8; i
++)
1030 salt
[i
] = chars
[arc4random() % 63];
1033 return strcpy(buf
, crypt(password
, salt
));
1036 #if defined(USE_MD5RAND)
1038 pw_getrand(u_char
*buf
, int len
) /* cryptographically secure rng */
1041 for (i
=0;i
<len
;i
+=16) {
1045 struct timeval tv
, tvo
;
1052 MD5Update (&md5_ctx
, (u_char
*)&t
, sizeof t
);
1054 MD5Update (&md5_ctx
, (u_char
*)&t
, sizeof t
);
1055 gettimeofday (&tvo
, NULL
);
1057 getrusage (RUSAGE_SELF
, &ru
);
1058 MD5Update (&md5_ctx
, (u_char
*)&ru
, sizeof ru
);
1059 gettimeofday (&tv
, NULL
);
1060 MD5Update (&md5_ctx
, (u_char
*)&tv
, sizeof tv
);
1061 } while (n
++<20 || tv
.tv_usec
-tvo
.tv_usec
<100*1000);
1062 MD5Final (ubuf
, &md5_ctx
);
1063 memcpy(buf
+i
, ubuf
, MIN(16, len
-i
));
1068 #else /* Portable version */
1071 pw_getrand(u_char
*buf
, int len
)
1075 for (i
= 0; i
< len
; i
++) {
1076 unsigned long val
= arc4random();
1077 /* Use all bits in the random value */
1078 buf
[i
]=(u_char
)((val
>> 24) ^ (val
>> 16) ^ (val
>> 8) ^ val
);
1086 pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
1090 u_char rndbuf
[sizeof pwbuf
];
1092 switch (cnf
->default_password
) {
1093 case -1: /* Random password */
1094 l
= (arc4random() % 8 + 8); /* 8 - 16 chars */
1095 pw_getrand(rndbuf
, l
);
1096 for (i
= 0; i
< l
; i
++)
1097 pwbuf
[i
] = chars
[rndbuf
[i
] % (sizeof(chars
)-1)];
1101 * We give this information back to the user
1103 if (getarg(args
, 'h') == NULL
&& getarg(args
, 'H') == NULL
&&
1104 getarg(args
, 'N') == NULL
) {
1105 if (isatty(STDOUT_FILENO
))
1106 printf("Password for '%s' is: ", user
);
1107 printf("%s\n", pwbuf
);
1112 case -2: /* No password at all! */
1115 case 0: /* No login - default */
1119 case 1: /* user's name */
1120 strncpy(pwbuf
, user
, sizeof pwbuf
);
1121 pwbuf
[sizeof pwbuf
- 1] = '\0';
1124 return pw_pwcrypt(pwbuf
);
1129 print_user(struct passwd
* pwd
, int pretty
, int v7
)
1132 char buf
[_UC_MAXLINE
];
1134 fmtpwentry(buf
, pwd
, v7
? PWF_PASSWD
: PWF_STANDARD
);
1139 struct group
*grp
= GETGRGID(pwd
->pw_gid
);
1140 char uname
[60] = "User &", office
[60] = "[None]",
1141 wphone
[60] = "[None]", hphone
[60] = "[None]";
1142 char acexpire
[32] = "[None]", pwexpire
[32] = "[None]";
1145 if ((p
= strtok(pwd
->pw_gecos
, ",")) != NULL
) {
1146 strncpy(uname
, p
, sizeof uname
);
1147 uname
[sizeof uname
- 1] = '\0';
1148 if ((p
= strtok(NULL
, ",")) != NULL
) {
1149 strncpy(office
, p
, sizeof office
);
1150 office
[sizeof office
- 1] = '\0';
1151 if ((p
= strtok(NULL
, ",")) != NULL
) {
1152 strncpy(wphone
, p
, sizeof wphone
);
1153 wphone
[sizeof wphone
- 1] = '\0';
1154 if ((p
= strtok(NULL
, "")) != NULL
) {
1155 strncpy(hphone
, p
, sizeof hphone
);
1156 hphone
[sizeof hphone
- 1] = '\0';
1162 * Handle '&' in gecos field
1164 if ((p
= strchr(uname
, '&')) != NULL
) {
1165 int l
= strlen(pwd
->pw_name
);
1168 memmove(p
+ l
, p
+ 1, m
);
1169 memmove(p
, pwd
->pw_name
, l
);
1170 *p
= (char) toupper((unsigned char)*p
);
1172 if (pwd
->pw_expire
> (time_t)0 && (tptr
= localtime(&pwd
->pw_expire
)) != NULL
)
1173 strftime(acexpire
, sizeof acexpire
, "%c", tptr
);
1174 if (pwd
->pw_change
> (time_t)0 && (tptr
= localtime(&pwd
->pw_change
)) != NULL
)
1175 strftime(pwexpire
, sizeof pwexpire
, "%c", tptr
);
1176 printf("Login Name: %-15s #%-12ld Group: %-15s #%ld\n"
1178 " Home: %-26.26s Class: %s\n"
1179 " Shell: %-26.26s Office: %s\n"
1180 "Work Phone: %-26.26s Home Phone: %s\n"
1181 "Acc Expire: %-26.26s Pwd Expire: %s\n",
1182 pwd
->pw_name
, (long) pwd
->pw_uid
,
1183 grp
? grp
->gr_name
: "(invalid)", (long) pwd
->pw_gid
,
1184 uname
, pwd
->pw_dir
, pwd
->pw_class
,
1185 pwd
->pw_shell
, office
, wphone
, hphone
,
1186 acexpire
, pwexpire
);
1189 while ((grp
=GETGRENT()) != NULL
)
1192 while (grp
->gr_mem
[i
] != NULL
)
1194 if (strcmp(grp
->gr_mem
[i
], pwd
->pw_name
)==0)
1196 printf(j
++ == 0 ? " Groups: %s" : ",%s", grp
->gr_name
);
1203 printf("%s", j
? "\n" : "");
1205 return EXIT_SUCCESS
;
1209 pw_checkname(u_char
*name
, int gecos
)
1212 u_char
const *badchars
, *ch
, *showtype
;
1218 /* See if the name is valid as a gecos (comment) field. */
1220 showtype
= "gecos field";
1222 /* See if the name is valid as a userid or group. */
1223 badchars
= " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1224 showtype
= "userid/group name";
1225 /* Userids and groups can not have a leading '-'. */
1231 if (strchr(badchars
, *ch
) != NULL
|| *ch
< ' ' ||
1236 /* 8-bit characters are only allowed in GECOS fields */
1237 if (!gecos
&& (*ch
& 0x80)) {
1245 * A `$' is allowed as the final character for userids and groups,
1246 * mainly for the benefit of samba.
1248 if (reject
&& !gecos
) {
1249 if (*ch
== '$' && *(ch
+ 1) == '\0') {
1255 snprintf(showch
, sizeof(showch
), (*ch
>= ' ' && *ch
< 127)
1256 ? "`%c'" : "0x%02x", *ch
);
1257 errx(EX_DATAERR
, "invalid character %s at position %d in %s",
1258 showch
, (ch
- name
), showtype
);
1260 if (!gecos
&& (ch
- name
) > LOGNAMESIZE
)
1261 errx(EX_DATAERR
, "name too long `%s' (max is %d)", name
,
1263 return (char *)name
;
1270 DIR *d
= opendir("/var/at/jobs");
1275 while ((e
= readdir(d
)) != NULL
) {
1278 if (strncmp(e
->d_name
, ".lock", 5) != 0 &&
1279 stat(e
->d_name
, &st
) == 0 &&
1280 !S_ISDIR(st
.st_mode
) &&
1282 char tmp
[MAXPATHLEN
];
1284 sprintf(tmp
, "/usr/bin/atrm %s", e
->d_name
);
1293 rmopie(char const * name
)
1295 static const char etcopie
[] = "/etc/opiekeys";
1296 FILE *fp
= fopen(etcopie
, "r+");
1301 int length
= strlen(name
);
1303 while (fgets(tmp
, sizeof tmp
, fp
) != NULL
) {
1304 if (strncmp(name
, tmp
, length
) == 0 && tmp
[length
]==' ') {
1305 if (fseek(fp
, atofs
, SEEK_SET
) == 0) {
1306 fwrite("#", 1, 1, fp
); /* Comment username out */
1313 * If we got an error of any sort, don't update!