]>
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 #if defined(USE_MD5RAND)
51 #if (MAXLOGNAME-1) > UT_NAMESIZE
52 #define LOGNAMESIZE UT_NAMESIZE
54 #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
) {
223 if ((grp
= GETGRNAM(p
)) == NULL
) {
224 if (!isdigit(*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
225 errx(EX_NOUSER
, "group `%s' does not exist", p
);
227 cnf
->default_group
= newstr(grp
->gr_name
);
229 if ((arg
= getarg(args
, 'L')) != NULL
)
230 cnf
->default_class
= pw_checkname((u_char
*)arg
->val
, 0);
232 if ((arg
= getarg(args
, 'G')) != NULL
&& arg
->val
) {
235 for (p
= strtok(arg
->val
, ", \t"); p
!= NULL
; p
= strtok(NULL
, ", \t")) {
236 if ((grp
= GETGRNAM(p
)) == NULL
) {
237 if (!isdigit(*p
) || (grp
= GETGRGID((gid_t
) atoi(p
))) == NULL
)
238 errx(EX_NOUSER
, "group `%s' does not exist", p
);
240 if (extendarray(&cnf
->groups
, &cnf
->numgroups
, i
+ 2) != -1)
241 cnf
->groups
[i
++] = newstr(grp
->gr_name
);
243 while (i
< cnf
->numgroups
)
244 cnf
->groups
[i
++] = NULL
;
247 if ((arg
= getarg(args
, 'k')) != NULL
) {
248 if (stat(cnf
->dotdir
= arg
->val
, &st
) == -1 || !S_ISDIR(st
.st_mode
))
249 errx(EX_OSFILE
, "skeleton `%s' is not a directory or does not exist", cnf
->dotdir
);
252 if ((arg
= getarg(args
, 's')) != NULL
)
253 cnf
->shell_default
= arg
->val
;
255 if (mode
== M_ADD
&& getarg(args
, 'D')) {
256 if (getarg(args
, 'n') != NULL
)
257 errx(EX_DATAERR
, "can't combine `-D' with `-n name'");
258 if ((arg
= getarg(args
, 'u')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
259 if ((cnf
->min_uid
= (uid_t
) atoi(p
)) == 0)
261 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_uid
= (uid_t
) atoi(p
)) < cnf
->min_uid
)
262 cnf
->max_uid
= 32000;
264 if ((arg
= getarg(args
, 'i')) != NULL
&& (p
= strtok(arg
->val
, ", \t")) != NULL
) {
265 if ((cnf
->min_gid
= (gid_t
) atoi(p
)) == 0)
267 if ((p
= strtok(NULL
, " ,\t")) == NULL
|| (cnf
->max_gid
= (gid_t
) atoi(p
)) < cnf
->min_gid
)
268 cnf
->max_gid
= 32000;
270 if ((arg
= getarg(args
, 'w')) != NULL
)
271 cnf
->default_password
= boolean_val(arg
->val
, cnf
->default_password
);
273 arg
= getarg(args
, 'C');
274 if (write_userconfig(arg
? arg
->val
: NULL
))
276 warn("config update");
280 if (mode
== M_PRINT
&& getarg(args
, 'a')) {
281 int pretty
= getarg(args
, 'P') != NULL
;
282 int v7
= getarg(args
, '7') != NULL
;
285 while ((pwd
= GETPWENT()) != NULL
)
286 print_user(pwd
, pretty
, v7
);
291 if ((a_name
= getarg(args
, 'n')) != NULL
)
292 pwd
= GETPWNAM(pw_checkname((u_char
*)a_name
->val
, 0));
293 a_uid
= getarg(args
, 'u');
297 errx(EX_DATAERR
, "user name or id required");
300 * Determine whether 'n' switch is name or uid - we don't
301 * really don't really care which we have, but we need to
304 if (mode
!= M_ADD
&& pwd
== NULL
305 && strspn(a_name
->val
, "0123456789") == strlen(a_name
->val
)
306 && atoi(a_name
->val
) > 0) { /* Assume uid */
307 (a_uid
= a_name
)->ch
= 'u';
313 * Update, delete & print require that the user exists
315 if (mode
== M_UPDATE
|| mode
== M_DELETE
||
316 mode
== M_PRINT
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
318 if (a_name
== NULL
&& pwd
== NULL
) /* Try harder */
319 pwd
= GETPWUID(atoi(a_uid
->val
));
322 if (mode
== M_PRINT
&& getarg(args
, 'F')) {
323 fakeuser
.pw_name
= a_name
? a_name
->val
: "nouser";
324 fakeuser
.pw_uid
= a_uid
? (uid_t
) atol(a_uid
->val
) : -1;
325 return print_user(&fakeuser
,
326 getarg(args
, 'P') != NULL
,
327 getarg(args
, '7') != NULL
);
330 errx(EX_NOUSER
, "no such uid `%s'", a_uid
->val
);
331 errx(EX_NOUSER
, "no such user `%s'", a_name
->val
);
334 if (a_name
== NULL
) /* May be needed later */
335 a_name
= addarg(args
, 'n', newstr(pwd
->pw_name
));
338 * The M_LOCK and M_UNLOCK functions simply add or remove
339 * a "*LOCKED*" prefix from in front of the password to
340 * prevent it decoding correctly, and therefore prevents
341 * access. Of course, this only prevents access via
342 * password authentication (not ssh, kerberos or any
343 * other method that does not use the UNIX password) but
344 * that is a known limitation.
347 if (mode
== M_LOCK
) {
348 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) == 0)
349 errx(EX_DATAERR
, "user '%s' is already locked", pwd
->pw_name
);
350 passtmp
= malloc(strlen(pwd
->pw_passwd
) + sizeof(locked_str
));
351 if (passtmp
== NULL
) /* disaster */
352 errx(EX_UNAVAILABLE
, "out of memory");
353 strcpy(passtmp
, locked_str
);
354 strcat(passtmp
, pwd
->pw_passwd
);
355 pwd
->pw_passwd
= passtmp
;
357 } else if (mode
== M_UNLOCK
) {
358 if (strncmp(pwd
->pw_passwd
, locked_str
, sizeof(locked_str
)-1) != 0)
359 errx(EX_DATAERR
, "user '%s' is not locked", pwd
->pw_name
);
360 pwd
->pw_passwd
+= sizeof(locked_str
)-1;
362 } else if (mode
== M_DELETE
) {
364 * Handle deletions now
366 char file
[MAXPATHLEN
];
367 char home
[MAXPATHLEN
];
368 uid_t uid
= pwd
->pw_uid
;
370 if (strcmp(pwd
->pw_name
, "root") == 0)
371 errx(EX_DATAERR
, "cannot remove user 'root'");
375 * Remove skey record from /etc/skeykeys
378 rmskey(pwd
->pw_name
);
383 sprintf(file
, "/var/cron/tabs/%s", pwd
->pw_name
);
384 if (access(file
, F_OK
) == 0) {
385 sprintf(file
, "crontab -u %s -r", pwd
->pw_name
);
390 * Save these for later, since contents of pwd may be
391 * invalidated by deletion
393 sprintf(file
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
394 strncpy(home
, pwd
->pw_dir
, sizeof home
);
395 home
[sizeof home
- 1] = '\0';
399 err(EX_IOERR
, "user '%s' does not exist", pwd
->pw_name
);
401 warn("passwd update");
405 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
406 rc
= delnispwent(cnf
->nispasswd
, a_name
->val
);
408 warnx("WARNING: user '%s' does not exist in NIS passwd", pwd
->pw_name
);
410 warn("WARNING: NIS passwd update");
414 editgroups(a_name
->val
, NULL
);
416 pw_log(cnf
, mode
, W_USER
, "%s(%ld) account removed", a_name
->val
, (long) uid
);
427 if (getpwuid(uid
) == NULL
)
431 * Remove home directory and contents
433 if (getarg(args
, 'r') != NULL
&& *home
== '/' && getpwuid(uid
) == NULL
) {
434 if (stat(home
, &st
) != -1) {
436 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home '%s' %sremoved",
437 a_name
->val
, (long) uid
, home
,
438 stat(home
, &st
) == -1 ? "" : "not completely ");
443 } else if (mode
== M_PRINT
)
444 return print_user(pwd
,
445 getarg(args
, 'P') != NULL
,
446 getarg(args
, '7') != NULL
);
449 * The rest is edit code
451 if ((arg
= getarg(args
, 'l')) != NULL
) {
452 if (strcmp(pwd
->pw_name
, "root") == 0)
453 errx(EX_DATAERR
, "can't rename `root' account");
454 pwd
->pw_name
= pw_checkname((u_char
*)arg
->val
, 0);
458 if ((arg
= getarg(args
, 'u')) != NULL
&& isdigit(*arg
->val
)) {
459 pwd
->pw_uid
= (uid_t
) atol(arg
->val
);
461 if (pwd
->pw_uid
!= 0 && strcmp(pwd
->pw_name
, "root") == 0)
462 errx(EX_DATAERR
, "can't change uid of `root' account");
463 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
464 warnx("WARNING: account `%s' will have a uid of 0 (superuser access!)", pwd
->pw_name
);
467 if ((arg
= getarg(args
, 'g')) != NULL
&& pwd
->pw_uid
!= 0) { /* Already checked this */
468 gid_t newgid
= (gid_t
) GETGRNAM(cnf
->default_group
)->gr_gid
;
469 if (newgid
!= pwd
->pw_gid
) {
471 pwd
->pw_gid
= newgid
;
475 if ((arg
= getarg(args
, 'p')) != NULL
) {
476 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
477 if (pwd
->pw_change
!= 0) {
483 time_t now
= time(NULL
);
484 time_t expire
= parse_date(now
, arg
->val
);
487 errx(EX_DATAERR
, "invalid password change date `%s'", arg
->val
);
488 if (pwd
->pw_change
!= expire
) {
489 pwd
->pw_change
= expire
;
495 if ((arg
= getarg(args
, 'e')) != NULL
) {
496 if (*arg
->val
== '\0' || strcmp(arg
->val
, "0") == 0) {
497 if (pwd
->pw_expire
!= 0) {
503 time_t now
= time(NULL
);
504 time_t expire
= parse_date(now
, arg
->val
);
507 errx(EX_DATAERR
, "invalid account expiry date `%s'", arg
->val
);
508 if (pwd
->pw_expire
!= expire
) {
509 pwd
->pw_expire
= expire
;
515 if ((arg
= getarg(args
, 's')) != NULL
) {
516 char *shell
= shell_path(cnf
->shelldir
, cnf
->shells
, arg
->val
);
519 if (strcmp(shell
, pwd
->pw_shell
) != 0) {
520 pwd
->pw_shell
= shell
;
525 if (getarg(args
, 'L')) {
526 if (cnf
->default_class
== NULL
)
527 cnf
->default_class
= "";
528 if (strcmp(pwd
->pw_class
, cnf
->default_class
) != 0) {
529 pwd
->pw_class
= cnf
->default_class
;
534 if ((arg
= getarg(args
, 'd')) != NULL
) {
535 if (stat(pwd
->pw_dir
= arg
->val
, &st
) == -1) {
536 if (getarg(args
, 'm') == NULL
&& strcmp(pwd
->pw_dir
, "/nonexistent") != 0)
537 warnx("WARNING: home `%s' does not exist", pwd
->pw_dir
);
538 } else if (!S_ISDIR(st
.st_mode
))
539 warnx("WARNING: home `%s' is not a directory", pwd
->pw_dir
);
542 if ((arg
= getarg(args
, 'w')) != NULL
&& getarg(args
, 'h') == NULL
) {
543 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
553 if (a_name
== NULL
) /* Required */
554 errx(EX_DATAERR
, "login name required");
555 else if ((pwd
= GETPWNAM(a_name
->val
)) != NULL
) /* Exists */
556 errx(EX_DATAERR
, "login name `%s' already exists", a_name
->val
);
559 * Now, set up defaults for a new user
562 pwd
->pw_name
= a_name
->val
;
563 pwd
->pw_class
= cnf
->default_class
? cnf
->default_class
: "";
564 pwd
->pw_passwd
= pw_password(cnf
, args
, pwd
->pw_name
);
565 pwd
->pw_uid
= pw_uidpolicy(cnf
, args
);
566 pwd
->pw_gid
= pw_gidpolicy(cnf
, args
, pwd
->pw_name
, (gid_t
) pwd
->pw_uid
);
567 pwd
->pw_change
= pw_pwdpolicy(cnf
, args
);
568 pwd
->pw_expire
= pw_exppolicy(cnf
, args
);
569 pwd
->pw_dir
= pw_homepolicy(cnf
, args
, pwd
->pw_name
);
570 pwd
->pw_shell
= pw_shellpolicy(cnf
, args
, NULL
);
573 if (pwd
->pw_uid
== 0 && strcmp(pwd
->pw_name
, "root") != 0)
574 warnx("WARNING: new account `%s' has a uid of 0 (superuser access!)", pwd
->pw_name
);
578 * Shared add/edit code
580 if ((arg
= getarg(args
, 'c')) != NULL
) {
581 char *gecos
= pw_checkname((u_char
*)arg
->val
, 1);
582 if (strcmp(pwd
->pw_gecos
, gecos
) != 0) {
583 pwd
->pw_gecos
= gecos
;
588 if ((arg
= getarg(args
, 'h')) != NULL
) {
589 if (strcmp(arg
->val
, "-") == 0)
590 pwd
->pw_passwd
= "*"; /* No access */
592 int fd
= atoi(arg
->val
);
594 int istty
= isatty(fd
);
598 if (tcgetattr(fd
, &t
) == -1)
601 struct termios n
= t
;
604 n
.c_lflag
&= ~(ECHO
);
605 tcsetattr(fd
, TCSANOW
, &n
);
606 printf("%sassword for user %s:", (mode
== M_UPDATE
) ? "New p" : "P", pwd
->pw_name
);
610 b
= read(fd
, line
, sizeof(line
) - 1);
611 if (istty
) { /* Restore state */
612 tcsetattr(fd
, TCSANOW
, &t
);
617 warn("-h file descriptor");
621 if ((p
= strpbrk(line
, " \t\r\n")) != NULL
)
624 errx(EX_DATAERR
, "empty password read on file descriptor %d", fd
);
625 pwd
->pw_passwd
= pw_pwcrypt(line
);
631 * Special case: -N only displays & exits
633 if (getarg(args
, 'N') != NULL
)
634 return print_user(pwd
,
635 getarg(args
, 'P') != NULL
,
636 getarg(args
, '7') != NULL
);
639 edited
= 1; /* Always */
642 warnx("user '%s' already exists", pwd
->pw_name
);
644 } else if (rc
!= 0) {
645 warn("passwd file update");
648 if (cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
649 rc
= addnispwent(cnf
->nispasswd
, pwd
);
651 warnx("User '%s' already exists in NIS passwd", pwd
->pw_name
);
653 warn("NIS passwd update");
654 /* NOTE: we treat NIS-only update errors as non-fatal */
656 } else if (mode
== M_UPDATE
|| mode
== M_LOCK
|| mode
== M_UNLOCK
) {
657 if (edited
) { /* Only updated this if required */
658 rc
= chgpwent(a_name
->val
, pwd
);
660 warnx("user '%s' does not exist (NIS?)", pwd
->pw_name
);
662 } else if (rc
!= 0) {
663 warn("passwd file update");
666 if ( cnf
->nispasswd
&& *cnf
->nispasswd
=='/') {
667 rc
= chgnispwent(cnf
->nispasswd
, a_name
->val
, pwd
);
669 warn("User '%s' not found in NIS passwd", pwd
->pw_name
);
671 warn("NIS passwd update");
672 /* NOTE: NIS-only update errors are not fatal */
678 * Ok, user is created or changed - now edit group file
681 if (mode
== M_ADD
|| getarg(args
, 'G') != NULL
)
682 editgroups(pwd
->pw_name
, cnf
->groups
);
684 /* go get a current version of pwd */
685 pwd
= GETPWNAM(a_name
->val
);
687 /* This will fail when we rename, so special case that */
688 if (mode
== M_UPDATE
&& (arg
= getarg(args
, 'l')) != NULL
) {
689 a_name
->val
= arg
->val
; /* update new name */
690 pwd
= GETPWNAM(a_name
->val
); /* refetch renamed rec */
693 if (pwd
== NULL
) /* can't go on without this */
694 errx(EX_NOUSER
, "user '%s' disappeared during update", a_name
->val
);
696 grp
= GETGRGID(pwd
->pw_gid
);
697 pw_log(cnf
, mode
, W_USER
, "%s(%ld):%s(%d):%s:%s:%s",
698 pwd
->pw_name
, (long) pwd
->pw_uid
,
699 grp
? grp
->gr_name
: "unknown", (long) (grp
? grp
->gr_gid
: -1),
700 pwd
->pw_gecos
, pwd
->pw_dir
, pwd
->pw_shell
);
703 * If adding, let's touch and chown the user's mail file. This is not
704 * strictly necessary under BSD with a 0755 maildir but it also
705 * doesn't hurt anything to create the empty mailfile
711 sprintf(line
, "%s/%s", _PATH_MAILDIR
, pwd
->pw_name
);
712 close(open(line
, O_RDWR
| O_CREAT
, 0600)); /* Preserve contents &
714 chown(line
, pwd
->pw_uid
, pwd
->pw_gid
);
717 * Send mail to the new user as well, if we are asked to
719 if (cnf
->newmail
&& *cnf
->newmail
&& (fp
= fopen(cnf
->newmail
, "r")) != NULL
) {
720 FILE *pfp
= popen(_PATH_SENDMAIL
" -t", "w");
725 fprintf(pfp
, "From: root\n" "To: %s\n" "Subject: Welcome!\n\n", pwd
->pw_name
);
726 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
727 /* Do substitutions? */
731 pw_log(cnf
, mode
, W_USER
, "%s(%ld) new user mail sent",
732 pwd
->pw_name
, (long) pwd
->pw_uid
);
740 * Finally, let's create and populate the user's home directory. Note
741 * that this also `works' for editing users if -m is used, but
742 * existing files will *not* be overwritten.
744 if (!PWALTDIR() && getarg(args
, 'm') != NULL
&& pwd
->pw_dir
&& *pwd
->pw_dir
== '/' && pwd
->pw_dir
[1]) {
745 copymkdir(pwd
->pw_dir
, cnf
->dotdir
, 0755, pwd
->pw_uid
, pwd
->pw_gid
);
746 pw_log(cnf
, mode
, W_USER
, "%s(%ld) home %s made",
747 pwd
->pw_name
, (long) pwd
->pw_uid
, pwd
->pw_dir
);
755 pw_uidpolicy(struct userconf
* cnf
, struct cargs
* args
)
758 uid_t uid
= (uid_t
) - 1;
759 struct carg
*a_uid
= getarg(args
, 'u');
762 * Check the given uid, if any
765 uid
= (uid_t
) atol(a_uid
->val
);
767 if ((pwd
= GETPWUID(uid
)) != NULL
&& getarg(args
, 'o') == NULL
)
768 errx(EX_DATAERR
, "uid `%ld' has already been allocated", (long) pwd
->pw_uid
);
773 * We need to allocate the next available uid under one of
774 * two policies a) Grab the first unused uid b) Grab the
775 * highest possible unused uid
777 if (cnf
->min_uid
>= cnf
->max_uid
) { /* Sanity
778 * claus^H^H^H^Hheck */
780 cnf
->max_uid
= 32000;
782 bm
= bm_alloc(cnf
->max_uid
- cnf
->min_uid
+ 1);
785 * Now, let's fill the bitmap from the password file
788 while ((pwd
= GETPWENT()) != NULL
)
789 if (pwd
->pw_uid
>= (uid_t
) cnf
->min_uid
&& pwd
->pw_uid
<= (uid_t
) cnf
->max_uid
)
790 bm_setbit(&bm
, pwd
->pw_uid
- cnf
->min_uid
);
794 * Then apply the policy, with fallback to reuse if necessary
796 if (cnf
->reuse_uids
|| (uid
= (uid_t
) (bm_lastset(&bm
) + cnf
->min_uid
+ 1)) > cnf
->max_uid
)
797 uid
= (uid_t
) (bm_firstunset(&bm
) + cnf
->min_uid
);
800 * Another sanity check
802 if (uid
< cnf
->min_uid
|| uid
> cnf
->max_uid
)
803 errx(EX_SOFTWARE
, "unable to allocate a new uid - range fully used");
811 pw_gidpolicy(struct userconf
* cnf
, struct cargs
* args
, char *nam
, gid_t prefer
)
814 gid_t gid
= (uid_t
) - 1;
815 struct carg
*a_gid
= getarg(args
, 'g');
818 * If no arg given, see if default can help out
820 if (a_gid
== NULL
&& cnf
->default_group
&& *cnf
->default_group
)
821 a_gid
= addarg(args
, 'g', cnf
->default_group
);
824 * Check the given gid, if any
828 if ((grp
= GETGRNAM(a_gid
->val
)) == NULL
) {
829 gid
= (gid_t
) atol(a_gid
->val
);
830 if ((gid
== 0 && !isdigit(*a_gid
->val
)) || (grp
= GETGRGID(gid
)) == NULL
)
831 errx(EX_NOUSER
, "group `%s' is not defined", a_gid
->val
);
834 } else if ((grp
= GETGRNAM(nam
)) != NULL
&& grp
->gr_mem
[0] == NULL
) {
835 gid
= grp
->gr_gid
; /* Already created? Use it anyway... */
837 struct cargs grpargs
;
841 addarg(&grpargs
, 'n', nam
);
844 * We need to auto-create a group with the user's name. We
845 * can send all the appropriate output to our sister routine
846 * bit first see if we can create a group with gid==uid so we
847 * can keep the user and group ids in sync. We purposely do
848 * NOT check the gid range if we can force the sync. If the
849 * user's name dups an existing group, then the group add
850 * function will happily handle that case for us and exit.
852 if (GETGRGID(prefer
) == NULL
) {
853 sprintf(tmp
, "%lu", (unsigned long) prefer
);
854 addarg(&grpargs
, 'g', tmp
);
856 if (getarg(args
, 'N'))
858 addarg(&grpargs
, 'N', NULL
);
859 addarg(&grpargs
, 'q', NULL
);
860 gid
= pw_group(cnf
, M_NEXT
, &grpargs
);
864 pw_group(cnf
, M_ADD
, &grpargs
);
865 if ((grp
= GETGRNAM(nam
)) != NULL
)
868 a_gid
= grpargs
.lh_first
;
869 while (a_gid
!= NULL
) {
870 struct carg
*t
= a_gid
->list
.le_next
;
871 LIST_REMOVE(a_gid
, list
);
881 pw_pwdpolicy(struct userconf
* cnf
, struct cargs
* args
)
884 time_t now
= time(NULL
);
885 struct carg
*arg
= getarg(args
, 'p');
888 if ((result
= parse_date(now
, arg
->val
)) == now
)
889 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
890 } else if (cnf
->password_days
> 0)
891 result
= now
+ ((long) cnf
->password_days
* 86400L);
897 pw_exppolicy(struct userconf
* cnf
, struct cargs
* args
)
900 time_t now
= time(NULL
);
901 struct carg
*arg
= getarg(args
, 'e');
904 if ((result
= parse_date(now
, arg
->val
)) == now
)
905 errx(EX_DATAERR
, "invalid date/time `%s'", arg
->val
);
906 } else if (cnf
->expire_days
> 0)
907 result
= now
+ ((long) cnf
->expire_days
* 86400L);
913 pw_homepolicy(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
915 struct carg
*arg
= getarg(args
, 'd');
920 static char home
[128];
922 if (cnf
->home
== NULL
|| *cnf
->home
== '\0')
923 errx(EX_CONFIG
, "no base home directory set");
924 sprintf(home
, "%s/%s", cnf
->home
, user
);
930 shell_path(char const * path
, char *shells
[], char *sh
)
932 if (sh
!= NULL
&& (*sh
== '/' || *sh
== '\0'))
933 return sh
; /* specified full path or forced none */
936 char paths
[_UC_MAXLINE
];
939 * We need to search paths
941 strncpy(paths
, path
, sizeof paths
);
942 paths
[sizeof paths
- 1] = '\0';
943 for (p
= strtok(paths
, ": \t\r\n"); p
!= NULL
; p
= strtok(NULL
, ": \t\r\n")) {
945 static char shellpath
[256];
948 sprintf(shellpath
, "%s/%s", p
, sh
);
949 if (access(shellpath
, X_OK
) == 0)
952 for (i
= 0; i
< _UC_MAXSHELLS
&& shells
[i
] != NULL
; i
++) {
953 sprintf(shellpath
, "%s/%s", p
, shells
[i
]);
954 if (access(shellpath
, X_OK
) == 0)
959 errx(EX_OSFILE
, "can't find shell `%s' in shell paths", sh
);
960 errx(EX_CONFIG
, "no default shell available or defined");
967 pw_shellpolicy(struct userconf
* cnf
, struct cargs
* args
, char *newshell
)
970 struct carg
*arg
= getarg(args
, 's');
972 if (newshell
== NULL
&& arg
!= NULL
)
974 return shell_path(cnf
->shelldir
, cnf
->shells
, sh
? sh
: cnf
->shell_default
);
977 static char const chars
[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.";
980 pw_pwcrypt(char *password
)
985 static char buf
[256];
988 * Calculate a salt value
995 srandom((unsigned long) (time(NULL
) ^ getpid()));
998 for (i
= 0; i
< 8; i
++)
999 salt
[i
] = chars
[random() % 63];
1002 return strcpy(buf
, crypt(password
, salt
));
1005 #if defined(USE_MD5RAND)
1007 pw_getrand(u_char
*buf
, int len
) /* cryptographically secure rng */
1010 for (i
=0;i
<len
;i
+=16) {
1014 struct timeval tv
, tvo
;
1021 MD5Update (&md5_ctx
, (u_char
*)&t
, sizeof t
);
1023 MD5Update (&md5_ctx
, (u_char
*)&t
, sizeof t
);
1024 gettimeofday (&tvo
, NULL
);
1026 getrusage (RUSAGE_SELF
, &ru
);
1027 MD5Update (&md5_ctx
, (u_char
*)&ru
, sizeof ru
);
1028 gettimeofday (&tv
, NULL
);
1029 MD5Update (&md5_ctx
, (u_char
*)&tv
, sizeof tv
);
1030 } while (n
++<20 || tv
.tv_usec
-tvo
.tv_usec
<100*1000);
1031 MD5Final (ubuf
, &md5_ctx
);
1032 memcpy(buf
+i
, ubuf
, MIN(16, len
-n
));
1037 #else /* Portable version */
1040 pw_getrand(u_char
*buf
, int len
)
1044 for (i
= 0; i
< len
; i
++) {
1045 unsigned long val
= random();
1046 /* Use all bits in the random value */
1047 buf
[i
]=(u_char
)((val
>> 24) ^ (val
>> 16) ^ (val
>> 8) ^ val
);
1055 pw_password(struct userconf
* cnf
, struct cargs
* args
, char const * user
)
1059 u_char rndbuf
[sizeof pwbuf
];
1061 switch (cnf
->default_password
) {
1062 case -1: /* Random password */
1068 srandom((unsigned long) (time(NULL
) ^ getpid()));
1071 l
= (random() % 8 + 8); /* 8 - 16 chars */
1072 pw_getrand(rndbuf
, l
);
1073 for (i
= 0; i
< l
; i
++)
1074 pwbuf
[i
] = chars
[rndbuf
[i
] % (sizeof(chars
)-1)];
1078 * We give this information back to the user
1080 if (getarg(args
, 'h') == NULL
&& getarg(args
, 'N') == NULL
) {
1082 printf("Password for '%s' is: ", user
);
1083 printf("%s\n", pwbuf
);
1088 case -2: /* No password at all! */
1091 case 0: /* No login - default */
1095 case 1: /* user's name */
1096 strncpy(pwbuf
, user
, sizeof pwbuf
);
1097 pwbuf
[sizeof pwbuf
- 1] = '\0';
1100 return pw_pwcrypt(pwbuf
);
1105 print_user(struct passwd
* pwd
, int pretty
, int v7
)
1108 char buf
[_UC_MAXLINE
];
1110 fmtpwentry(buf
, pwd
, v7
? PWF_PASSWD
: PWF_STANDARD
);
1115 struct group
*grp
= GETGRGID(pwd
->pw_gid
);
1116 char uname
[60] = "User &", office
[60] = "[None]",
1117 wphone
[60] = "[None]", hphone
[60] = "[None]";
1118 char acexpire
[32] = "[None]", pwexpire
[32] = "[None]";
1121 if ((p
= strtok(pwd
->pw_gecos
, ",")) != NULL
) {
1122 strncpy(uname
, p
, sizeof uname
);
1123 uname
[sizeof uname
- 1] = '\0';
1124 if ((p
= strtok(NULL
, ",")) != NULL
) {
1125 strncpy(office
, p
, sizeof office
);
1126 office
[sizeof office
- 1] = '\0';
1127 if ((p
= strtok(NULL
, ",")) != NULL
) {
1128 strncpy(wphone
, p
, sizeof wphone
);
1129 wphone
[sizeof wphone
- 1] = '\0';
1130 if ((p
= strtok(NULL
, "")) != NULL
) {
1131 strncpy(hphone
, p
, sizeof hphone
);
1132 hphone
[sizeof hphone
- 1] = '\0';
1138 * Handle '&' in gecos field
1140 if ((p
= strchr(uname
, '&')) != NULL
) {
1141 int l
= strlen(pwd
->pw_name
);
1144 memmove(p
+ l
, p
+ 1, m
);
1145 memmove(p
, pwd
->pw_name
, l
);
1146 *p
= (char) toupper(*p
);
1148 if (pwd
->pw_expire
> (time_t)0 && (tptr
= localtime(&pwd
->pw_expire
)) != NULL
)
1149 strftime(acexpire
, sizeof acexpire
, "%e-%b-%Y %T", tptr
);
1150 if (pwd
->pw_change
> (time_t)9 && (tptr
= localtime(&pwd
->pw_change
)) != NULL
)
1151 strftime(pwexpire
, sizeof pwexpire
, "%e-%b-%Y %T", tptr
);
1152 printf("Login Name: %-15s #%-12ld Group: %-15s #%ld\n"
1154 " Home: %-26.26s Class: %s\n"
1155 " Shell: %-26.26s Office: %s\n"
1156 "Work Phone: %-26.26s Home Phone: %s\n"
1157 "Acc Expire: %-26.26s Pwd Expire: %s\n",
1158 pwd
->pw_name
, (long) pwd
->pw_uid
,
1159 grp
? grp
->gr_name
: "(invalid)", (long) pwd
->pw_gid
,
1160 uname
, pwd
->pw_dir
, pwd
->pw_class
,
1161 pwd
->pw_shell
, office
, wphone
, hphone
,
1162 acexpire
, pwexpire
);
1165 while ((grp
=GETGRENT()) != NULL
)
1168 while (grp
->gr_mem
[i
] != NULL
)
1170 if (strcmp(grp
->gr_mem
[i
], pwd
->pw_name
)==0)
1172 printf(j
++ == 0 ? " Groups: %s" : ",%s", grp
->gr_name
);
1179 printf("%s\n", j
? "\n" : "");
1181 return EXIT_SUCCESS
;
1185 pw_checkname(u_char
*name
, int gecos
)
1188 char const *notch
= gecos
? ":!@" : " ,\t:+&#%$^()!@~*?<>=|\\/\"";
1191 if (strchr(notch
, name
[l
]) != NULL
|| name
[l
] < ' ' || name
[l
] == 127 ||
1192 (!gecos
&& l
==0 && name
[l
] == '-') || /* leading '-' */
1193 (!gecos
&& name
[l
] & 0x80)) /* 8-bit */
1194 errx(EX_DATAERR
, (name
[l
] >= ' ' && name
[l
] < 127)
1195 ? "invalid character `%c' in field"
1196 : "invalid character 0x%02x in field",
1200 if (!gecos
&& l
> LOGNAMESIZE
)
1201 errx(EX_DATAERR
, "name too long `%s'", name
);
1202 return (char *)name
;
1209 DIR *d
= opendir("/var/at/jobs");
1214 while ((e
= readdir(d
)) != NULL
) {
1217 if (strncmp(e
->d_name
, ".lock", 5) != 0 &&
1218 stat(e
->d_name
, &st
) == 0 &&
1219 !S_ISDIR(st
.st_mode
) &&
1221 char tmp
[MAXPATHLEN
];
1223 sprintf(tmp
, "/usr/bin/atrm %s", e
->d_name
);
1232 rmskey(char const * name
)
1234 static const char etcskey
[] = "/etc/skeykeys";
1235 FILE *fp
= fopen(etcskey
, "r+");
1240 int length
= strlen(name
);
1242 while (fgets(tmp
, sizeof tmp
, fp
) != NULL
) {
1243 if (strncmp(name
, tmp
, length
) == 0 && tmp
[length
]==' ') {
1244 if (fseek(fp
, atofs
, SEEK_SET
) == 0) {
1245 fwrite("#", 1, 1, fp
); /* Comment username out */
1252 * If we got an error of any sort, don't update!