]>
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 rmskey(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 * -F force print or add
91 * -D set user defaults
92 * -b dir default home root dir
93 * -e period default expiry period
94 * -p period default password change period
95 * -g group default group
96 * -G grp1,grp2.. default additional groups
97 * -L class default login class
98 * -k dir default home skeleton
99 * -s shell default shell
100 * -w method default password method
104 pw_user(struct userconf
* cnf
, int mode
, struct cargs
* args
)
112 struct passwd
*pwd
= NULL
;
115 char line
[_PASSWORD_LEN
+1];
117 static struct passwd fakeuser
=
129 #if defined(__FreeBSD__)
136 * With M_NEXT, we only need to return the
141 uid_t next
= pw_uidpolicy(cnf
, args
);
142 if (getarg(args
, 'q'))
144 printf("%ld:", (long)next
);
145 pw_group(cnf
, mode
, args
);
150 * We can do all of the common legwork here
153 if ((arg
= getarg(args
, 'b')) != NULL
) {
154 cnf
->home
= arg
->val
;
158 * If we'll need to use it or we're updating it,
159 * then create the base home directory if necessary
161 if (arg
!= NULL
|| getarg(args
, 'm') != NULL
) {
162 int l
= strlen(cnf
->home
);
164 if (l
> 1 && cnf
->home
[l
-1] == '/') /* Shave off any trailing path delimiter */
165 cnf
->home
[--l
] = '\0';
167 if (l
< 2 || *cnf
->home
!= '/') /* Check for absolute path name */
168 errx(EX_DATAERR
, "invalid base directory for home '%s'", cnf
->home
);
170 if (stat(cnf
->home
, &st
) == -1) {
171 char dbuf
[MAXPATHLEN
];
174 * This is a kludge especially for Joerg :)
175 * If the home directory would be created in the root partition, then
176 * we really create it under /usr which is likely to have more space.
177 * But we create a symlink from cnf->home -> "/usr" -> cnf->home
179 if (strchr(cnf
->home
+1, '/') == NULL
) {
180 strcpy(dbuf
, "/usr");
181 strncat(dbuf
, cnf
->home
, MAXPATHLEN
-5);
182 if (mkdir(dbuf
, 0755) != -1 || errno
== EEXIST
) {
184 symlink(dbuf
, cnf
->home
);
186 /* If this falls, fall back to old method */
188 p
= strncpy(dbuf
, cnf
->home
, sizeof dbuf
);
189 dbuf
[MAXPATHLEN
-1] = '\0';
190 if (stat(dbuf
, &st
) == -1) {
191 while ((p
= strchr(++p
, '/')) != NULL
) {
193 if (stat(dbuf
, &st
) == -1) {
194 if (mkdir(dbuf
, 0755) == -1)
197 } else if (!S_ISDIR(st
.st_mode
))
198 errx(EX_OSFILE
, "'%s' (root home parent) is not a directory", dbuf
);
202 if (stat(dbuf
, &st
) == -1) {
203 if (mkdir(dbuf
, 0755) == -1) {
204 direrr
: err(EX_OSFILE
, "mkdir '%s'", dbuf
);
208 } else if (!S_ISDIR(st
.st_mode
))
209 errx(EX_OSFILE
, "root home `%s' is not a directory", cnf
->home
);
212 if ((arg
= getarg(args
, 'e')) != NULL
)
213 cnf
->expire_days
= atoi(arg
->val
);
215 if ((arg
= getarg(args
, 'y')) != NULL
)
216 cnf
->nispasswd
= arg
->val
;
218 if ((arg
= getarg(args
, 'p')) != NULL
&& arg
->val
)
219 cnf
->password_days
= atoi(arg
->val
);
221 if ((arg
= getarg(args
, 'g')) != NULL
) {
222 if (!*(p
= arg
->val
)) /* Handle empty group list specially */
223 cnf
->default_group
= "";
225 if ((grp
= GETGRNAM(p
)) == NULL
) {
226 if (!isdigit((unsigned char)*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
227 errx(EX_NOUSER
, "group `%s' does not exist", p
);
229 cnf
->default_group
= newstr(grp
->gr_name
);
232 if ((arg
= getarg(args
, 'L')) != NULL
)
233 cnf
->default_class
= pw_checkname((u_char
*)arg
->val
, 0);
235 if ((arg
= getarg(args
, 'G')) != NULL
&& arg
->val
) {
238 for (p
= strtok(arg
->val
, ", \t"); p
!= NULL
; p
= strtok(NULL
, ", \t")) {
239 if ((grp
= GETGRNAM(p
)) == NULL
) {
240 if (!isdigit((unsigned char)*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
241 errx(EX_NOUSER
, "group `%s' does not exist", p
);
243 if (extendarray(&cnf
->groups
, &cnf
->numgroups
, i
+ 2) != -1)
244 cnf
->groups
[i
++] = newstr(grp
->gr_name
);
246 while (i
< cnf
->numgroups
)
247 cnf
->groups
[i
++] = NULL
;
250 if ((arg
= getarg(args
, 'k')) != NULL
) {
251 if (stat(cnf
->dotdir
= arg
->val
, &st
) == -1 || !S_ISDIR(st
.st_mode
))
252 errx(EX_OSFILE
, "skeleton `%s' is not a directory or does not exist", cnf
->dotdir
);
255 if ((arg
= getarg(args
, 's')) != NULL
)
256 cnf
->shell_default
= arg
->val
;
258 if ((arg
= getarg(args
, 'w')) != NULL
)
259 cnf
->default_password
= boolean_val(arg
->val
, cnf
->default_password
);
260 if (mode
== M_ADD
&& getarg(args
, 'D')) {
261 if (getarg(args
, 'n') != NULL
)
262 errx(EX_DATAERR
, "can't combine `-D' with `-n name'");
263 if ((arg
= getarg(args
, 'u')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
264 if ((cnf
->min_uid
= (uid_t
) atoi(p
)) == 0)
266 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_uid
= (uid_t
) atoi(p
)) < cnf
->min_uid
)
267 cnf
->max_uid
= 32000;
269 if ((arg
= getarg(args
, 'i')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
270 if ((cnf
->min_gid
= (gid_t
) atoi(p
)) == 0)
272 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_gid
= (gid_t
) atoi(p
)) < cnf
->min_gid
)
273 cnf
->max_gid
= 32000;
276 arg
= getarg(args
, 'C');
277 if (write_userconfig(arg
? arg
->val
: NULL
))
279 warn("config update");
283 if (mode
== M_PRINT
&& getarg(args
, 'a')) {
284 int pretty
= getarg(args
, 'P') != NULL
;
285 int v7
= getarg(args
, '7') != NULL
;
288 while ((pwd
= GETPWENT()) != NULL
)
289 print_user(pwd
, pretty
, v7
);
294 if ((a_name
= getarg(args
, 'n')) != NULL
)
295 pwd
= GETPWNAM(pw_checkname((u_char
*)a_name
->val
, 0));
296 a_uid
= getarg(args
, 'u');
300 errx(EX_DATAERR
, "user name or id required");
303 * Determine whether 'n' switch is name or uid - we don't
304 * really don't really care which we have, but we need to
307 if (mode
!= M_ADD
&& pwd
== NULL
308 && strspn(a_name
->val
, "0123456789") == strlen(a_name
->val
)
309 && atoi(a_name
->val
) > 0) { /* Assume uid */
310 (a_uid
= a_name
)->ch
= 'u';
316 * Update, delete & print require that the user exists
318 if (mode
== M_UPDATE
|| mode
== M_DELETE
||
319 mode
== M_PRINT
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
321 if (a_name
== NULL
&& pwd
== NULL
) /* Try harder */
322 pwd
= GETPWUID(atoi(a_uid
->val
));
325 if (mode
== M_PRINT
&& getarg(args
, 'F')) {
326 fakeuser
.pw_name
= a_name
? a_name
->val
: "nouser";
327 fakeuser
.pw_uid
= a_uid
? (uid_t
) atol(a_uid
->val
) : -1;
328 return print_user(&fakeuser
,
329 getarg(args
, 'P') != NULL
,
330 getarg(args
, '7') != NULL
);
333 errx(EX_NOUSER
, "no such uid `%s'", a_uid
->val
);
334 errx(EX_NOUSER
, "no such user `%s'", a_name
->val
);
337 if (a_name
== NULL
) /* May be needed later */
338 a_name
= addarg(args
, 'n', newstr(pwd
->pw_name
));
341 * The M_LOCK and M_UNLOCK functions simply add or remove
342 * a "*LOCKED*" prefix from in front of the password to
343 * prevent it decoding correctly, and therefore prevents
344 * access. Of course, this only prevents access via
345 * password authentication (not ssh, kerberos or any
346 * other method that does not use the UNIX password) but
347 * that is a known limitation.
350 if (mode
== M_LOCK
) {
351 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) == 0)
352 errx(EX_DATAERR
, "user '%s' is already locked", pwd
->pw_name
);
353 passtmp
= malloc(strlen(pwd
->pw_passwd
) + sizeof(locked_str
));
354 if (passtmp
== NULL
) /* disaster */
355 errx(EX_UNAVAILABLE
, "out of memory");
356 strcpy(passtmp
, locked_str
);
357 strcat(passtmp
, pwd
->pw_passwd
);
358 pwd
->pw_passwd
= passtmp
;
360 } else if (mode
== M_UNLOCK
) {
361 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) != 0)
362 errx(EX_DATAERR
, "user '%s' is not locked", pwd
->pw_name
);
363 pwd
->pw_passwd
+= sizeof(locked_str
)-1;
365 } else if (mode
== M_DELETE
) {
367 * Handle deletions now
369 char file
[MAXPATHLEN
];
370 char home
[MAXPATHLEN
];
371 uid_t uid
= pwd
->pw_uid
;
373 if (strcmp(pwd
->pw_name
, "root") == 0)
374 errx(EX_DATAERR
, "cannot remove user 'root'");
378 * Remove skey record from /etc/skeykeys
381 rmskey(pwd
->pw_name
);
386 sprintf(file
, "/var/cron/tabs/%s", pwd
->pw_name
);
387 if (access(file
, F_OK
) == 0) {
388 sprintf(file
, "crontab -u %s -r", pwd
->pw_name
);
393 * Save these for later, since contents of pwd may be
394 * invalidated by deletion
396 sprintf(file
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
397 strncpy(home
, pwd
->pw_dir
, sizeof home
);
398 home
[sizeof home
- 1] = '\0';
402 err(EX_IOERR
, "user '%s' does not exist", pwd
->pw_name
);
404 warn("passwd update");
408 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
409 rc
= delnispwent(cnf
->nispasswd
, a_name
->val
);
411 warnx("WARNING: user '%s' does not exist in NIS passwd", pwd
->pw_name
);
413 warn("WARNING: NIS passwd update");
417 editgroups(a_name
->val
, NULL
);
419 pw_log(cnf
, mode
, W_USER
, "%s(%ld) account removed", a_name
->val
, (long) uid
);
430 if (getpwuid(uid
) == NULL
)
434 * Remove home directory and contents
436 if (getarg(args
, 'r') != NULL
&& *home
== '/' && getpwuid(uid
) == NULL
) {
437 if (stat(home
, &st
) != -1) {
439 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home '%s' %sremoved",
440 a_name
->val
, (long) uid
, home
,
441 stat(home
, &st
) == -1 ? "" : "not completely ");
446 } else if (mode
== M_PRINT
)
447 return print_user(pwd
,
448 getarg(args
, 'P') != NULL
,
449 getarg(args
, '7') != NULL
);
452 * The rest is edit code
454 if ((arg
= getarg(args
, 'l')) != NULL
) {
455 if (strcmp(pwd
->pw_name
, "root") == 0)
456 errx(EX_DATAERR
, "can't rename `root' account");
457 pwd
->pw_name
= pw_checkname((u_char
*)arg
->val
, 0);
461 if ((arg
= getarg(args
, 'u')) != NULL
&& isdigit((unsigned char)*arg
->val
)) {
462 pwd
->pw_uid
= (uid_t
) atol(arg
->val
);
464 if (pwd
->pw_uid
!= 0 && strcmp(pwd
->pw_name
, "root") == 0)
465 errx(EX_DATAERR
, "can't change uid of `root' account");
466 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
467 warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd
->pw_name
);
470 if ((arg
= getarg(args
, 'g')) != NULL
&& pwd
->pw_uid
!= 0) { /* Already checked this */
471 gid_t newgid
= (gid_t
) GETGRNAM(cnf
->default_group
)->gr_gid
;
472 if (newgid
!= pwd
->pw_gid
) {
474 pwd
->pw_gid
= newgid
;
478 if ((arg
= getarg(args
, 'p')) != NULL
) {
479 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
480 if (pwd
->pw_change
!= 0) {
486 time_t now
= time(NULL
);
487 time_t expire
= parse_date(now
, arg
->val
);
490 errx(EX_DATAERR
, "invalid password change date `%s'", arg
->val
);
491 if (pwd
->pw_change
!= expire
) {
492 pwd
->pw_change
= expire
;
498 if ((arg
= getarg(args
, 'e')) != NULL
) {
499 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
500 if (pwd
->pw_expire
!= 0) {
506 time_t now
= time(NULL
);
507 time_t expire
= parse_date(now
, arg
->val
);
510 errx(EX_DATAERR
, "invalid account expiry date `%s'", arg
->val
);
511 if (pwd
->pw_expire
!= expire
) {
512 pwd
->pw_expire
= expire
;
518 if ((arg
= getarg(args
, 's')) != NULL
) {
519 char *shell
= shell_path(cnf
->shelldir
, cnf
->shells
, arg
->val
);
522 if (strcmp(shell
, pwd
->pw_shell
) != 0) {
523 pwd
->pw_shell
= shell
;
528 if (getarg(args
, 'L')) {
529 if (cnf
->default_class
== NULL
)
530 cnf
->default_class
= "";
531 if (strcmp(pwd
->pw_class
, cnf
->default_class
) != 0) {
532 pwd
->pw_class
= cnf
->default_class
;
537 if ((arg
= getarg(args
, 'd')) != NULL
) {
538 edited
= strcmp(pwd
->pw_dir
, arg
->val
) != 0;
539 if (stat(pwd
->pw_dir
= arg
->val
, &st
) == -1) {
540 if (getarg(args
, 'm') == NULL
&& strcmp(pwd
->pw_dir
, "/nonexistent") != 0)
541 warnx("WARNING: home `%s' does not exist", pwd
->pw_dir
);
542 } else if (!S_ISDIR(st
.st_mode
))
543 warnx("WARNING: home `%s' is not a directory", pwd
->pw_dir
);
546 if ((arg
= getarg(args
, 'w')) != NULL
&& getarg(args
, 'h') == NULL
) {
549 lc
= login_getpwclass(pwd
);
551 login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
552 warn("setting crypt(3) format");
554 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
565 if (a_name
== NULL
) /* Required */
566 errx(EX_DATAERR
, "login name required");
567 else if ((pwd
= GETPWNAM(a_name
->val
)) != NULL
) /* Exists */
568 errx(EX_DATAERR
, "login name `%s' already exists", a_name
->val
);
571 * Now, set up defaults for a new user
574 pwd
->pw_name
= a_name
->val
;
575 pwd
->pw_class
= cnf
->default_class
? cnf
->default_class
: "";
576 pwd
->pw_uid
= pw_uidpolicy(cnf
, args
);
577 pwd
->pw_gid
= pw_gidpolicy(cnf
, args
, pwd
->pw_name
, (gid_t
) pwd
->pw_uid
);
578 pwd
->pw_change
= pw_pwdpolicy(cnf
, args
);
579 pwd
->pw_expire
= pw_exppolicy(cnf
, args
);
580 pwd
->pw_dir
= pw_homepolicy(cnf
, args
, pwd
->pw_name
);
581 pwd
->pw_shell
= pw_shellpolicy(cnf
, args
, NULL
);
582 lc
= login_getpwclass(pwd
);
583 if (lc
== NULL
|| login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
584 warn("setting crypt(3) format");
586 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
589 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
590 warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd
->pw_name
);
594 * Shared add/edit code
596 if ((arg
= getarg(args
, 'c')) != NULL
) {
597 char *gecos
= pw_checkname((u_char
*)arg
->val
, 1);
598 if (strcmp(pwd
->pw_gecos
, gecos
) != 0) {
599 pwd
->pw_gecos
= gecos
;
604 if ((arg
= getarg(args
, 'h')) != NULL
) {
605 if (strcmp(arg
->val
, "-") == 0) {
606 if (!pwd
->pw_passwd
|| *pwd
->pw_passwd
!= '*') {
607 pwd
->pw_passwd
= "*"; /* No access */
611 int fd
= atoi(arg
->val
);
613 int istty
= isatty(fd
);
618 if (tcgetattr(fd
, &t
) == -1)
621 struct termios n
= t
;
624 n
.c_lflag
&= ~(ECHO
);
625 tcsetattr(fd
, TCSANOW
, &n
);
626 printf("%sassword for user %s:", (mode
== M_UPDATE
) ? "New p" : "P", pwd
->pw_name
);
630 b
= read(fd
, line
, sizeof(line
) - 1);
631 if (istty
) { /* Restore state */
632 tcsetattr(fd
, TCSANOW
, &t
);
637 warn("-h file descriptor");
641 if ((p
= strpbrk(line
, " \t\r\n")) != NULL
)
644 errx(EX_DATAERR
, "empty password read on file descriptor %d", fd
);
645 lc
= login_getpwclass(pwd
);
647 login_setcryptfmt(lc
, "md5", NULL
) == NULL
)
648 warn("setting crypt(3) format");
650 pwd
->pw_passwd
= pw_pwcrypt(line
);
656 * Special case: -N only displays & exits
658 if (getarg(args
, 'N') != NULL
)
659 return print_user(pwd
,
660 getarg(args
, 'P') != NULL
,
661 getarg(args
, '7') != NULL
);
664 edited
= 1; /* Always */
667 warnx("user '%s' already exists", pwd
->pw_name
);
669 } else if (rc
!= 0) {
670 warn("passwd file update");
673 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
674 rc
= addnispwent(cnf
->nispasswd
, pwd
);
676 warnx("User '%s' already exists in NIS passwd", pwd
->pw_name
);
678 warn("NIS passwd update");
679 /* NOTE: we treat NIS-only update errors as non-fatal */
681 } else if (mode
== M_UPDATE
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
682 if (edited
) { /* Only updated this if required */
683 rc
= chgpwent(a_name
->val
, pwd
);
685 warnx("user '%s' does not exist (NIS?)", pwd
->pw_name
);
687 } else if (rc
!= 0) {
688 warn("passwd file update");
691 if ( cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
692 rc
= chgnispwent(cnf
->nispasswd
, a_name
->val
, pwd
);
694 warn("User '%s' not found in NIS passwd", pwd
->pw_name
);
696 warn("NIS passwd update");
697 /* NOTE: NIS-only update errors are not fatal */
703 * Ok, user is created or changed - now edit group file
706 if (mode
== M_ADD
|| getarg(args
, 'G') != NULL
)
707 editgroups(pwd
->pw_name
, cnf
->groups
);
709 /* go get a current version of pwd */
710 pwd
= GETPWNAM(a_name
->val
);
712 /* This will fail when we rename, so special case that */
713 if (mode
== M_UPDATE
&& (arg
= getarg(args
, 'l')) != NULL
) {
714 a_name
->val
= arg
->val
; /* update new name */
715 pwd
= GETPWNAM(a_name
->val
); /* refetch renamed rec */
718 if (pwd
== NULL
) /* can't go on without this */
719 errx(EX_NOUSER
, "user '%s' disappeared during update", a_name
->val
);
721 grp
= GETGRGID(pwd
->pw_gid
);
722 pw_log(cnf
, mode
, W_USER
, "%s(%ld):%s(%d):%s:%s:%s",
723 pwd
->pw_name
, (long) pwd
->pw_uid
,
724 grp
? grp
->gr_name
: "unknown", (long) (grp
? grp
->gr_gid
: -1),
725 pwd
->pw_gecos
, pwd
->pw_dir
, pwd
->pw_shell
);
728 * If adding, let's touch and chown the user's mail file. This is not
729 * strictly necessary under BSD with a 0755 maildir but it also
730 * doesn't hurt anything to create the empty mailfile
736 sprintf(line
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
737 close(open(line
, O_RDWR
| O_CREAT
, 0600)); /* Preserve contents &
739 chown(line
, pwd
->pw_uid
, pwd
->pw_gid
);
742 * Send mail to the new user as well, if we are asked to
744 if (cnf
->newmail
&& *cnf
->newmail
&& (fp
= fopen(cnf
->newmail
, "r")) != NULL
) {
745 FILE *pfp
= popen(_PATH_SENDMAIL
" -t", "w");
750 fprintf(pfp
, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd
->pw_name
);
751 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
752 /* Do substitutions? */
756 pw_log(cnf
, mode
, W_USER
, "%s(%ld) new user mail sent",
757 pwd
->pw_name
, (long) pwd
->pw_uid
);
765 * Finally, let's create and populate the user's home directory. Note
766 * that this also `works' for editing users if -m is used, but
767 * existing files will *not* be overwritten.
769 if (!PWALTDIR() && getarg(args
, 'm') != NULL
&& pwd
->pw_dir
&& *pwd
->pw_dir
== '/' && pwd
->pw_dir
[1]) {
770 copymkdir(pwd
->pw_dir
, cnf
->dotdir
, 0755, pwd
->pw_uid
, pwd
->pw_gid
);
771 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home %s made",
772 pwd
->pw_name
, (long) pwd
->pw_uid
, pwd
->pw_dir
);
780 pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
)
783 uid_t uid
= (uid_t
) - 1;
784 struct carg
*a_uid
= getarg(args
, 'u');
787 * Check the given uid, if any
790 uid
= (uid_t
) atol(a_uid
->val
);
792 if ((pwd
= GETPWUID(uid
)) != NULL
&& getarg(args
, 'o') == NULL
)
793 errx(EX_DATAERR
, "uid `%ld' has already been allocated", (long) pwd
->pw_uid
);
798 * We need to allocate the next available uid under one of
799 * two policies a) Grab the first unused uid b) Grab the
800 * highest possible unused uid
802 if (cnf
->min_uid
>= cnf
->max_uid
) { /* Sanity
803 * claus^H^H^H^Hheck */
805 cnf
->max_uid
= 32000;
807 bm
= bm_alloc(cnf
->max_uid
- cnf
->min_uid
+ 1);
810 * Now, let's fill the bitmap from the password file
813 while ((pwd
= GETPWENT()) != NULL
)
814 if (pwd
->pw_uid
>= (uid_t
) cnf
->min_uid
&& pwd
->pw_uid
<= (uid_t
) cnf
->max_uid
)
815 bm_setbit(&bm
, pwd
->pw_uid
- cnf
->min_uid
);
819 * Then apply the policy, with fallback to reuse if necessary
821 if (cnf
->reuse_uids
|| (uid
= (uid_t
) (bm_lastset(&bm
) + cnf
->min_uid
+ 1)) > cnf
->max_uid
)
822 uid
= (uid_t
) (bm_firstunset(&bm
) + cnf
->min_uid
);
825 * Another sanity check
827 if (uid
< cnf
->min_uid
|| uid
> cnf
->max_uid
)
828 errx(EX_SOFTWARE
, "unable to allocate a new uid - range fully used");
836 pw_gidpolicy(struct userconf
* cnf
, struct cargs
* args
, char *nam
, gid_t prefer
)
839 gid_t gid
= (uid_t
) - 1;
840 struct carg
*a_gid
= getarg(args
, 'g');
843 * If no arg given, see if default can help out
845 if (a_gid
== NULL
&& cnf
->default_group
&& *cnf
->default_group
)
846 a_gid
= addarg(args
, 'g', cnf
->default_group
);
849 * Check the given gid, if any
853 if ((grp
= GETGRNAM(a_gid
->val
)) == NULL
) {
854 gid
= (gid_t
) atol(a_gid
->val
);
855 if ((gid
== 0 && !isdigit((unsigned char)*a_gid
->val
)) || (grp
= GETGRGID(gid
)) == NULL
)
856 errx(EX_NOUSER
, "group `%s' is not defined", a_gid
->val
);
859 } else if ((grp
= GETGRNAM(nam
)) != NULL
&& grp
->gr_mem
[0] == NULL
) {
860 gid
= grp
->gr_gid
; /* Already created? Use it anyway... */
862 struct cargs grpargs
;
866 addarg(&grpargs
, 'n', nam
);
869 * We need to auto-create a group with the user's name. We
870 * can send all the appropriate output to our sister routine
871 * bit first see if we can create a group with gid==uid so we
872 * can keep the user and group ids in sync. We purposely do
873 * NOT check the gid range if we can force the sync. If the
874 * user's name dups an existing group, then the group add
875 * function will happily handle that case for us and exit.
877 if (GETGRGID(prefer
) == NULL
) {
878 sprintf(tmp
, "%lu", (unsigned long) prefer
);
879 addarg(&grpargs
, 'g', tmp
);
881 if (getarg(args
, 'N'))
883 addarg(&grpargs
, 'N', NULL
);
884 addarg(&grpargs
, 'q', NULL
);
885 gid
= pw_group(cnf
, M_NEXT
, &grpargs
);
889 pw_group(cnf
, M_ADD
, &grpargs
);
890 if ((grp
= GETGRNAM(nam
)) != NULL
)
893 a_gid
= LIST_FIRST(&grpargs
);
894 while (a_gid
!= NULL
) {
895 struct carg
*t
= LIST_NEXT(a_gid
, list
);
896 LIST_REMOVE(a_gid
, list
);
906 pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
)
909 time_t now
= time(NULL
);
910 struct carg
*arg
= getarg(args
, 'p');
913 if ((result
= parse_date(now
, arg
->val
)) == now
)
914 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
915 } else if (cnf
->password_days
> 0)
916 result
= now
+ ((long) cnf
->password_days
* 86400L);
922 pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
)
925 time_t now
= time(NULL
);
926 struct carg
*arg
= getarg(args
, 'e');
929 if ((result
= parse_date(now
, arg
->val
)) == now
)
930 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
931 } else if (cnf
->expire_days
> 0)
932 result
= now
+ ((long) cnf
->expire_days
* 86400L);
938 pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
940 struct carg
*arg
= getarg(args
, 'd');
945 static char home
[128];
947 if (cnf
->home
== NULL
|| *cnf
->home
== '\0')
948 errx(EX_CONFIG
, "no base home directory set");
949 sprintf(home
, "%s/%s", cnf
->home
, user
);
955 shell_path(char const * path
, char *shells
[], char *sh
)
957 if (sh
!= NULL
&& (*sh
== '/' || *sh
== '\0'))
958 return sh
; /* specified full path or forced none */
961 char paths
[_UC_MAXLINE
];
964 * We need to search paths
966 strncpy(paths
, path
, sizeof paths
);
967 paths
[sizeof paths
- 1] = '\0';
968 for (p
= strtok(paths
, ": \t\r\n"); p
!= NULL
; p
= strtok(NULL
, ": \t\r\n")) {
970 static char shellpath
[256];
973 sprintf(shellpath
, "%s/%s", p
, sh
);
974 if (access(shellpath
, X_OK
) == 0)
977 for (i
= 0; i
< _UC_MAXSHELLS
&& shells
[i
] != NULL
; i
++) {
978 sprintf(shellpath
, "%s/%s", p
, shells
[i
]);
979 if (access(shellpath
, X_OK
) == 0)
984 errx(EX_OSFILE
, "can't find shell `%s' in shell paths", sh
);
985 errx(EX_CONFIG
, "no default shell available or defined");
992 pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
)
995 struct carg
*arg
= getarg(args
, 's');
997 if (newshell
== NULL
&& arg
!= NULL
)
999 return shell_path(cnf
->shelldir
, cnf
->shells
, sh
? sh
: cnf
->shell_default
);
1002 static char const chars
[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.";
1005 pw_pwcrypt(char *password
)
1010 static char buf
[256];
1013 * Calculate a salt value
1015 for (i
= 0; i
< 8; i
++)
1016 salt
[i
] = chars
[arc4random() % 63];
1019 return strcpy(buf
, crypt(password
, salt
));
1022 #if defined(USE_MD5RAND)
1024 pw_getrand(u_char
*buf
, int len
) /* cryptographically secure rng */
1027 for (i
=0;i
<len
;i
+=16) {
1031 struct timeval tv
, tvo
;
1038 MD5Update (&md5_ctx
, (u_char
*)&t
, sizeof t
);
1040 MD5Update (&md5_ctx
, (u_char
*)&t
, sizeof t
);
1041 gettimeofday (&tvo
, NULL
);
1043 getrusage (RUSAGE_SELF
, &ru
);
1044 MD5Update (&md5_ctx
, (u_char
*)&ru
, sizeof ru
);
1045 gettimeofday (&tv
, NULL
);
1046 MD5Update (&md5_ctx
, (u_char
*)&tv
, sizeof tv
);
1047 } while (n
++<20 || tv
.tv_usec
-tvo
.tv_usec
<100*1000);
1048 MD5Final (ubuf
, &md5_ctx
);
1049 memcpy(buf
+i
, ubuf
, MIN(16, len
-n
));
1054 #else /* Portable version */
1057 pw_getrand(u_char
*buf
, int len
)
1061 for (i
= 0; i
< len
; i
++) {
1062 unsigned long val
= random();
1063 /* Use all bits in the random value */
1064 buf
[i
]=(u_char
)((val
>> 24) ^ (val
>> 16) ^ (val
>> 8) ^ val
);
1072 pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
1076 u_char rndbuf
[sizeof pwbuf
];
1078 switch (cnf
->default_password
) {
1079 case -1: /* Random password */
1080 l
= (arc4random() % 8 + 8); /* 8 - 16 chars */
1081 pw_getrand(rndbuf
, l
);
1082 for (i
= 0; i
< l
; i
++)
1083 pwbuf
[i
] = chars
[rndbuf
[i
] % (sizeof(chars
)-1)];
1087 * We give this information back to the user
1089 if (getarg(args
, 'h') == NULL
&& getarg(args
, 'N') == NULL
) {
1090 if (isatty(STDOUT_FILENO
))
1091 printf("Password for '%s' is: ", user
);
1092 printf("%s\n", pwbuf
);
1097 case -2: /* No password at all! */
1100 case 0: /* No login - default */
1104 case 1: /* user's name */
1105 strncpy(pwbuf
, user
, sizeof pwbuf
);
1106 pwbuf
[sizeof pwbuf
- 1] = '\0';
1109 return pw_pwcrypt(pwbuf
);
1114 print_user(struct passwd
* pwd
, int pretty
, int v7
)
1117 char buf
[_UC_MAXLINE
];
1119 fmtpwentry(buf
, pwd
, v7
? PWF_PASSWD
: PWF_STANDARD
);
1124 struct group
*grp
= GETGRGID(pwd
->pw_gid
);
1125 char uname
[60] = "User &", office
[60] = "[None]",
1126 wphone
[60] = "[None]", hphone
[60] = "[None]";
1127 char acexpire
[32] = "[None]", pwexpire
[32] = "[None]";
1130 if ((p
= strtok(pwd
->pw_gecos
, ",")) != NULL
) {
1131 strncpy(uname
, p
, sizeof uname
);
1132 uname
[sizeof uname
- 1] = '\0';
1133 if ((p
= strtok(NULL
, ",")) != NULL
) {
1134 strncpy(office
, p
, sizeof office
);
1135 office
[sizeof office
- 1] = '\0';
1136 if ((p
= strtok(NULL
, ",")) != NULL
) {
1137 strncpy(wphone
, p
, sizeof wphone
);
1138 wphone
[sizeof wphone
- 1] = '\0';
1139 if ((p
= strtok(NULL
, "")) != NULL
) {
1140 strncpy(hphone
, p
, sizeof hphone
);
1141 hphone
[sizeof hphone
- 1] = '\0';
1147 * Handle '&' in gecos field
1149 if ((p
= strchr(uname
, '&')) != NULL
) {
1150 int l
= strlen(pwd
->pw_name
);
1153 memmove(p
+ l
, p
+ 1, m
);
1154 memmove(p
, pwd
->pw_name
, l
);
1155 *p
= (char) toupper((unsigned char)*p
);
1157 if (pwd
->pw_expire
> (time_t)0 && (tptr
= localtime(&pwd
->pw_expire
)) != NULL
)
1158 strftime(acexpire
, sizeof acexpire
, "%c", tptr
);
1159 if (pwd
->pw_change
> (time_t)0 && (tptr
= localtime(&pwd
->pw_change
)) != NULL
)
1160 strftime(pwexpire
, sizeof pwexpire
, "%c", tptr
);
1161 printf("Login Name: %-15s #%-12ld Group: %-15s #%ld\n"
1163 " Home: %-26.26s Class: %s\n"
1164 " Shell: %-26.26s Office: %s\n"
1165 "Work Phone: %-26.26s Home Phone: %s\n"
1166 "Acc Expire: %-26.26s Pwd Expire: %s\n",
1167 pwd
->pw_name
, (long) pwd
->pw_uid
,
1168 grp
? grp
->gr_name
: "(invalid)", (long) pwd
->pw_gid
,
1169 uname
, pwd
->pw_dir
, pwd
->pw_class
,
1170 pwd
->pw_shell
, office
, wphone
, hphone
,
1171 acexpire
, pwexpire
);
1174 while ((grp
=GETGRENT()) != NULL
)
1177 while (grp
->gr_mem
[i
] != NULL
)
1179 if (strcmp(grp
->gr_mem
[i
], pwd
->pw_name
)==0)
1181 printf(j
++ == 0 ? " Groups: %s" : ",%s", grp
->gr_name
);
1188 printf("%s", j
? "\n" : "");
1190 return EXIT_SUCCESS
;
1194 pw_checkname(u_char
*name
, int gecos
)
1197 char const *notch
= gecos
? ":!@" : " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1200 if (strchr(notch
, name
[l
]) != NULL
|| name
[l
] < ' ' || name
[l
] == 127 ||
1201 (!gecos
&& l
==0 && name
[l
] == '-') || /* leading '-' */
1202 (!gecos
&& name
[l
] & 0x80)) /* 8-bit */
1203 errx(EX_DATAERR
, (name
[l
] >= ' ' && name
[l
] < 127)
1204 ? "invalid character `%c' in field"
1205 : "invalid character 0x%02x in field",
1209 if (!gecos
&& l
> LOGNAMESIZE
)
1210 errx(EX_DATAERR
, "name too long `%s'", name
);
1211 return (char *)name
;
1218 DIR *d
= opendir("/var/at/jobs");
1223 while ((e
= readdir(d
)) != NULL
) {
1226 if (strncmp(e
->d_name
, ".lock", 5) != 0 &&
1227 stat(e
->d_name
, &st
) == 0 &&
1228 !S_ISDIR(st
.st_mode
) &&
1230 char tmp
[MAXPATHLEN
];
1232 sprintf(tmp
, "/usr/bin/atrm %s", e
->d_name
);
1241 rmskey(char const * name
)
1243 static const char etcskey
[] = "/etc/skeykeys";
1244 FILE *fp
= fopen(etcskey
, "r+");
1249 int length
= strlen(name
);
1251 while (fgets(tmp
, sizeof tmp
, fp
) != NULL
) {
1252 if (strncmp(name
, tmp
, length
) == 0 && tmp
[length
]==' ') {
1253 if (fseek(fp
, atofs
, SEEK_SET
) == 0) {
1254 fwrite("#", 1, 1, fp
); /* Comment username out */
1261 * If we got an error of any sort, don't update!