]>
git.cameronkatri.com Git - pw-darwin.git/blob - libutil/pw_util.c
befd1fb02d701ee9f8bf67f83077073139b36dc2
2 * Copyright (c) 1990, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 2002 Networks Associates Technology, Inc.
7 * Portions of this software were developed for the FreeBSD Project by
8 * ThinkSec AS and NAI Labs, the Security Research Division of Network
9 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
10 * ("CBOSS"), as part of the DARPA CHATS research program.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 static const char sccsid
[] = "@(#)pw_util.c 8.3 (Berkeley) 4/2/94";
41 static const char rcsid
[] =
46 * This file is used by all the "password" programs; vipw(8), chpass(1),
50 #include <sys/param.h>
51 #include <sys/errno.h>
53 #include <sys/resource.h>
72 static pid_t editpid
= -1;
73 static int lockfd
= -1;
74 static char masterpasswd
[PATH_MAX
];
75 static char passwd_dir
[PATH_MAX
];
76 static char tempname
[PATH_MAX
];
77 static int initialized
;
90 * Initialize statics and set limits, signals & umask to try to avoid
91 * interruptions, crashes etc. that might expose passord data.
94 pw_init(const char *dir
, const char *master
)
101 strcpy(passwd_dir
, _PATH_ETC
);
103 if (strlen(dir
) >= sizeof(passwd_dir
)) {
104 errno
= ENAMETOOLONG
;
107 strcpy(passwd_dir
, dir
);
110 if (master
== NULL
) {
112 strcpy(masterpasswd
, _PATH_MASTERPASSWD
);
113 } else if (snprintf(masterpasswd
, sizeof(masterpasswd
), "%s/%s",
114 passwd_dir
, _MASTERPASSWD
) > (int)sizeof(masterpasswd
)) {
115 errno
= ENAMETOOLONG
;
119 if (strlen(master
) >= sizeof(masterpasswd
)) {
120 errno
= ENAMETOOLONG
;
123 strcpy(masterpasswd
, master
);
127 * The code that follows is extremely disruptive to the calling
128 * process, and is therefore disabled until someone can conceive
129 * of a realistic scenario where it would fend off a compromise.
130 * Race conditions concerning the temporary files can be guarded
131 * against in other ways than masking signals (by checking stat(2)
132 * results after creation).
135 /* Unlimited resource limits. */
136 rlim
.rlim_cur
= rlim
.rlim_max
= RLIM_INFINITY
;
137 (void)setrlimit(RLIMIT_CPU
, &rlim
);
138 (void)setrlimit(RLIMIT_FSIZE
, &rlim
);
139 (void)setrlimit(RLIMIT_STACK
, &rlim
);
140 (void)setrlimit(RLIMIT_DATA
, &rlim
);
141 (void)setrlimit(RLIMIT_RSS
, &rlim
);
143 /* Don't drop core (not really necessary, but GP's). */
144 rlim
.rlim_cur
= rlim
.rlim_max
= 0;
145 (void)setrlimit(RLIMIT_CORE
, &rlim
);
147 /* Turn off signals. */
148 (void)signal(SIGALRM
, SIG_IGN
);
149 (void)signal(SIGHUP
, SIG_IGN
);
150 (void)signal(SIGINT
, SIG_IGN
);
151 (void)signal(SIGPIPE
, SIG_IGN
);
152 (void)signal(SIGQUIT
, SIG_IGN
);
153 (void)signal(SIGTERM
, SIG_IGN
);
154 (void)signal(SIGCONT
, pw_cont
);
156 /* Create with exact permissions. */
164 * Lock the master password file.
170 if (*masterpasswd
== '\0')
174 * If the master password file doesn't exist, the system is hosed.
175 * Might as well try to build one. Set the close-on-exec bit so
176 * that users can't get at the encrypted passwords while editing.
177 * Open should allow flock'ing the file; see 4.4BSD. XXX
182 lockfd
= flopen(masterpasswd
, O_RDONLY
|O_NONBLOCK
|O_CLOEXEC
, 0);
184 if (errno
== EWOULDBLOCK
) {
185 errx(1, "the password db file is busy");
187 err(1, "could not lock the passwd file: ");
192 * If the password file was replaced while we were trying to
193 * get the lock, our hardlink count will be 0 and we have to
196 if (fstat(lockfd
, &st
) == -1)
197 err(1, "fstat() failed: ");
198 if (st
.st_nlink
!= 0)
207 * Create and open a presumably safe temp file for editing the password
208 * data, and copy the master password file into it.
218 if (*masterpasswd
== '\0')
220 if ((p
= strrchr(masterpasswd
, '/')))
224 if (snprintf(tempname
, sizeof(tempname
), "%.*spw.XXXXXX",
225 (int)(p
- masterpasswd
), masterpasswd
) >= (int)sizeof(tempname
)) {
226 errno
= ENAMETOOLONG
;
229 if ((tfd
= mkstemp(tempname
)) == -1)
232 while ((nr
= read(mfd
, buf
, sizeof(buf
))) > 0)
233 if (write(tfd
, buf
, (size_t)nr
) != nr
)
246 * Regenerate the password database.
249 pw_mkdb(const char *user
)
254 (void)fflush(stderr
);
255 switch ((pid
= fork())) {
261 execl(_PATH_PWD_MKDB
, "pwd_mkdb", "-p",
262 "-d", passwd_dir
, tempname
, (char *)NULL
);
264 execl(_PATH_PWD_MKDB
, "pwd_mkdb", "-p",
265 "-d", passwd_dir
, "-u", user
, tempname
,
273 if (waitpid(pid
, &pstat
, 0) == -1)
275 if (WIFEXITED(pstat
) && WEXITSTATUS(pstat
) == 0)
282 * Edit the temp file. Return -1 on error, >0 if the file was modified, 0
286 pw_edit(int notsetuid
)
288 struct sigaction sa
, sa_int
, sa_quit
;
289 sigset_t oldsigset
, nsigset
;
290 struct stat st1
, st2
;
294 if ((editor
= getenv("EDITOR")) == NULL
)
296 if (stat(tempname
, &st1
) == -1)
298 sa
.sa_handler
= SIG_IGN
;
299 sigemptyset(&sa
.sa_mask
);
301 sigaction(SIGINT
, &sa
, &sa_int
);
302 sigaction(SIGQUIT
, &sa
, &sa_quit
);
303 sigemptyset(&nsigset
);
304 sigaddset(&nsigset
, SIGCHLD
);
305 sigprocmask(SIG_BLOCK
, &nsigset
, &oldsigset
);
306 switch ((editpid
= fork())) {
310 sigaction(SIGINT
, &sa_int
, NULL
);
311 sigaction(SIGQUIT
, &sa_quit
, NULL
);
312 sigprocmask(SIG_SETMASK
, &oldsigset
, NULL
);
314 (void)setgid(getgid());
315 (void)setuid(getuid());
318 execlp(editor
, basename(editor
), tempname
, (char *)NULL
);
325 if (waitpid(editpid
, &pstat
, WUNTRACED
) == -1) {
331 } else if (WIFSTOPPED(pstat
)) {
332 raise(WSTOPSIG(pstat
));
333 } else if (WIFEXITED(pstat
) && WEXITSTATUS(pstat
) == 0) {
342 sigaction(SIGINT
, &sa_int
, NULL
);
343 sigaction(SIGQUIT
, &sa_quit
, NULL
);
344 sigprocmask(SIG_SETMASK
, &oldsigset
, NULL
);
345 if (stat(tempname
, &st2
) == -1)
347 return (st1
.st_mtim
.tv_sec
!= st2
.st_mtim
.tv_sec
||
348 st1
.st_mtim
.tv_nsec
!= st2
.st_mtim
.tv_nsec
);
352 * Clean up. Preserve errno for the caller's convenience.
364 kill(editpid
, SIGTERM
);
365 kill(editpid
, SIGCONT
);
366 waitpid(editpid
, &status
, 0);
369 if (*tempname
!= '\0') {
379 * Compares two struct pwds.
382 pw_equal(const struct passwd
*pw1
, const struct passwd
*pw2
)
384 return (strcmp(pw1
->pw_name
, pw2
->pw_name
) == 0 &&
385 pw1
->pw_uid
== pw2
->pw_uid
&&
386 pw1
->pw_gid
== pw2
->pw_gid
&&
387 strcmp(pw1
->pw_class
, pw2
->pw_class
) == 0 &&
388 pw1
->pw_change
== pw2
->pw_change
&&
389 pw1
->pw_expire
== pw2
->pw_expire
&&
390 strcmp(pw1
->pw_gecos
, pw2
->pw_gecos
) == 0 &&
391 strcmp(pw1
->pw_dir
, pw2
->pw_dir
) == 0 &&
392 strcmp(pw1
->pw_shell
, pw2
->pw_shell
) == 0);
396 * Make a passwd line out of a struct passwd.
399 pw_make(const struct passwd
*pw
)
403 asprintf(&line
, "%s:%s:%ju:%ju:%s:%ju:%ju:%s:%s:%s", pw
->pw_name
,
404 pw
->pw_passwd
, (uintmax_t)pw
->pw_uid
, (uintmax_t)pw
->pw_gid
,
405 pw
->pw_class
, (uintmax_t)pw
->pw_change
, (uintmax_t)pw
->pw_expire
,
406 pw
->pw_gecos
, pw
->pw_dir
, pw
->pw_shell
);
411 * Make a passwd line (in v7 format) out of a struct passwd
414 pw_make_v7(const struct passwd
*pw
)
418 asprintf(&line
, "%s:*:%ju:%ju:%s:%s:%s", pw
->pw_name
,
419 (uintmax_t)pw
->pw_uid
, (uintmax_t)pw
->pw_gid
,
420 pw
->pw_gecos
, pw
->pw_dir
, pw
->pw_shell
);
425 * Copy password file from one descriptor to another, replacing, deleting
426 * or adding a single record on the way.
429 pw_copy(int ffd
, int tfd
, const struct passwd
*pw
, struct passwd
*old_pw
)
431 char buf
[8192], *end
, *line
, *p
, *q
, *r
, t
;
433 const struct passwd
*spw
;
437 if (old_pw
== NULL
&& pw
== NULL
)
441 /* deleting a user */
445 if ((line
= pw_make(pw
)) == NULL
)
457 /* find the end of the current line */
458 for (p
= q
; q
< end
&& *q
!= '\0'; ++q
)
462 /* if we don't have a complete line, fill up the buffer */
466 if ((size_t)(q
- p
) >= sizeof(buf
)) {
467 warnx("passwd line too long");
468 errno
= EINVAL
; /* hack */
472 q
= memmove(buf
, p
, end
- p
);
477 readlen
= read(ffd
, end
, sizeof(buf
) - (end
- buf
));
481 len
= (size_t)readlen
;
482 if (len
== 0 && p
== buf
)
486 if (len
< (ssize_t
)sizeof(buf
)) {
488 if (len
> 0 && buf
[len
- 1] != '\n')
489 ++len
, *end
++ = '\n';
494 /* is it a blank line or a comment? */
495 for (r
= p
; r
< q
&& isspace(*r
); ++r
)
497 if (r
== q
|| *r
== '#') {
499 if (write(tfd
, p
, q
- p
+ 1) != q
- p
+ 1)
505 /* is it the one we're looking for? */
510 fpw
= pw_scan(r
, PWSCAN_MASTER
);
513 * fpw is either the struct passwd for the current line,
514 * or NULL if the line is malformed.
518 if (fpw
== NULL
|| strcmp(fpw
->pw_name
, spw
->pw_name
) != 0) {
522 if (write(tfd
, p
, q
- p
+ 1) != q
- p
+ 1)
527 if (old_pw
&& !pw_equal(fpw
, old_pw
)) {
528 warnx("entry inconsistent");
530 errno
= EINVAL
; /* hack */
535 /* it is, replace or remove it */
538 if (write(tfd
, line
, len
) != (int)len
)
541 /* when removed, avoid the \n */
544 /* we're done, just copy the rest over */
546 if (write(tfd
, q
, end
- q
) != end
- q
)
549 readlen
= read(ffd
, buf
, sizeof(buf
));
553 len
= (size_t)readlen
;
561 /* if we got here, we didn't find the old entry */
567 if ((size_t)write(tfd
, line
, len
) != len
||
568 write(tfd
, "\n", 1) != 1)
581 * Return the current value of tempname.
591 * Duplicate a struct passwd.
594 pw_dup(const struct passwd
*pw
)
601 if (pw
->pw_name
!= NULL
)
602 len
+= strlen(pw
->pw_name
) + 1;
603 if (pw
->pw_passwd
!= NULL
)
604 len
+= strlen(pw
->pw_passwd
) + 1;
605 if (pw
->pw_class
!= NULL
)
606 len
+= strlen(pw
->pw_class
) + 1;
607 if (pw
->pw_gecos
!= NULL
)
608 len
+= strlen(pw
->pw_gecos
) + 1;
609 if (pw
->pw_dir
!= NULL
)
610 len
+= strlen(pw
->pw_dir
) + 1;
611 if (pw
->pw_shell
!= NULL
)
612 len
+= strlen(pw
->pw_shell
) + 1;
613 if ((npw
= malloc((size_t)len
)) == NULL
)
615 memcpy(npw
, pw
, sizeof(*npw
));
616 dst
= (char *)npw
+ sizeof(*npw
);
617 if (pw
->pw_name
!= NULL
) {
619 dst
= stpcpy(npw
->pw_name
, pw
->pw_name
) + 1;
621 if (pw
->pw_passwd
!= NULL
) {
622 npw
->pw_passwd
= dst
;
623 dst
= stpcpy(npw
->pw_passwd
, pw
->pw_passwd
) + 1;
625 if (pw
->pw_class
!= NULL
) {
627 dst
= stpcpy(npw
->pw_class
, pw
->pw_class
) + 1;
629 if (pw
->pw_gecos
!= NULL
) {
631 dst
= stpcpy(npw
->pw_gecos
, pw
->pw_gecos
) + 1;
633 if (pw
->pw_dir
!= NULL
) {
635 dst
= stpcpy(npw
->pw_dir
, pw
->pw_dir
) + 1;
637 if (pw
->pw_shell
!= NULL
) {
639 dst
= stpcpy(npw
->pw_shell
, pw
->pw_shell
) + 1;
647 * Wrapper around an internal libc function
650 pw_scan(const char *line
, int flags
)
652 struct passwd pw
, *ret
;
655 if ((bp
= strdup(line
)) == NULL
)
657 if (!__pw_scan(bp
, &pw
, flags
)) {