]>
git.cameronkatri.com Git - pw-darwin.git/blob - libutil/pw_util.c
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 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the University of
23 * California, Berkeley and its contributors.
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 static const char sccsid
[] = "@(#)pw_util.c 8.3 (Berkeley) 4/2/94";
45 static const char rcsid
[] =
50 * This file is used by all the "password" programs; vipw(8), chpass(1),
54 #include <sys/param.h>
55 #include <sys/errno.h>
57 #include <sys/resource.h>
76 static pid_t editpid
= -1;
77 static int lockfd
= -1;
78 static char masterpasswd
[PATH_MAX
];
79 static char passwd_dir
[PATH_MAX
];
80 static char tempname
[PATH_MAX
];
81 static int initialized
;
92 * Initialize statics and set limits, signals & umask to try to avoid
93 * interruptions, crashes etc. that might expose passord data.
96 pw_init(const char *dir
, const char *master
)
103 strcpy(passwd_dir
, _PATH_ETC
);
105 if (strlen(dir
) >= sizeof passwd_dir
) {
106 errno
= ENAMETOOLONG
;
109 strcpy(passwd_dir
, dir
);
112 if (master
== NULL
) {
114 strcpy(masterpasswd
, _PATH_MASTERPASSWD
);
115 } else if (snprintf(masterpasswd
, sizeof masterpasswd
, "%s/%s",
116 passwd_dir
, _MASTERPASSWD
) > sizeof masterpasswd
) {
117 errno
= ENAMETOOLONG
;
121 if (strlen(master
) >= sizeof masterpasswd
) {
122 errno
= ENAMETOOLONG
;
125 strcpy(masterpasswd
, master
);
129 * The code that follows is extremely disruptive to the calling
130 * process, and is therefore disabled until someone can conceive
131 * of a realistic scenario where it would fend off a compromise.
132 * Race conditions concerning the temporary files can be guarded
133 * against in other ways than masking signals (by checking stat(2)
134 * results after creation).
137 /* Unlimited resource limits. */
138 rlim
.rlim_cur
= rlim
.rlim_max
= RLIM_INFINITY
;
139 (void)setrlimit(RLIMIT_CPU
, &rlim
);
140 (void)setrlimit(RLIMIT_FSIZE
, &rlim
);
141 (void)setrlimit(RLIMIT_STACK
, &rlim
);
142 (void)setrlimit(RLIMIT_DATA
, &rlim
);
143 (void)setrlimit(RLIMIT_RSS
, &rlim
);
145 /* Don't drop core (not really necessary, but GP's). */
146 rlim
.rlim_cur
= rlim
.rlim_max
= 0;
147 (void)setrlimit(RLIMIT_CORE
, &rlim
);
149 /* Turn off signals. */
150 (void)signal(SIGALRM
, SIG_IGN
);
151 (void)signal(SIGHUP
, SIG_IGN
);
152 (void)signal(SIGINT
, SIG_IGN
);
153 (void)signal(SIGPIPE
, SIG_IGN
);
154 (void)signal(SIGQUIT
, SIG_IGN
);
155 (void)signal(SIGTERM
, SIG_IGN
);
156 (void)signal(SIGCONT
, pw_cont
);
158 /* Create with exact permissions. */
166 * Lock the master password file.
172 if (*masterpasswd
== '\0')
176 * If the master password file doesn't exist, the system is hosed.
177 * Might as well try to build one. Set the close-on-exec bit so
178 * that users can't get at the encrypted passwords while editing.
179 * Open should allow flock'ing the file; see 4.4BSD. XXX
184 lockfd
= open(masterpasswd
, O_RDONLY
, 0);
185 if (lockfd
< 0 || fcntl(lockfd
, F_SETFD
, 1) == -1)
186 err(1, "%s", masterpasswd
);
187 /* XXX vulnerable to race conditions */
188 if (flock(lockfd
, LOCK_EX
|LOCK_NB
) == -1) {
189 if (errno
== EWOULDBLOCK
) {
190 errx(1, "the password db file is busy");
192 err(1, "could not lock the passwd file: ");
197 * If the password file was replaced while we were trying to
198 * get the lock, our hardlink count will be 0 and we have to
201 if (fstat(lockfd
, &st
) == -1)
202 err(1, "fstat() failed: ");
203 if (st
.st_nlink
!= 0)
212 * Create and open a presumably safe temp file for editing the password
213 * data, and copy the master password file into it.
223 if (*masterpasswd
== '\0')
225 if ((p
= strrchr(masterpasswd
, '/')))
229 if (snprintf(tempname
, sizeof tempname
, "%.*spw.XXXXXX",
230 (int)(p
- masterpasswd
), masterpasswd
) >= sizeof tempname
) {
231 errno
= ENAMETOOLONG
;
234 if ((tfd
= mkstemp(tempname
)) == -1)
237 while ((nr
= read(mfd
, buf
, sizeof buf
)) > 0)
238 if ((nw
= write(tfd
, buf
, nr
)) != nr
)
251 * Regenerate the password database.
254 pw_mkdb(const char *user
)
259 (void)fflush(stderr
);
260 switch ((pid
= fork())) {
266 execl(_PATH_PWD_MKDB
, "pwd_mkdb", "-p",
267 "-d", passwd_dir
, tempname
, NULL
);
269 execl(_PATH_PWD_MKDB
, "pwd_mkdb", "-p",
270 "-d", passwd_dir
, "-u", user
, tempname
, NULL
);
276 if (waitpid(pid
, &pstat
, 0) == -1)
278 if (WIFEXITED(pstat
) && WEXITSTATUS(pstat
) == 0)
285 * Edit the temp file. Return -1 on error, >0 if the file was modified, 0
289 pw_edit(int notsetuid
)
291 struct sigaction sa
, sa_int
, sa_quit
;
292 sigset_t oldsigset
, sigset
;
293 struct stat st1
, st2
;
297 if ((editor
= getenv("EDITOR")) == NULL
)
299 if (stat(tempname
, &st1
) == -1)
301 sa
.sa_handler
= SIG_IGN
;
302 sigemptyset(&sa
.sa_mask
);
304 sigaction(SIGINT
, &sa
, &sa_int
);
305 sigaction(SIGQUIT
, &sa
, &sa_quit
);
306 sigemptyset(&sigset
);
307 sigaddset(&sigset
, SIGCHLD
);
308 sigprocmask(SIG_BLOCK
, &sigset
, &oldsigset
);
309 switch ((editpid
= fork())) {
313 sigaction(SIGINT
, &sa_int
, NULL
);
314 sigaction(SIGQUIT
, &sa_quit
, NULL
);
315 sigprocmask(SIG_SETMASK
, &oldsigset
, NULL
);
317 (void)setgid(getgid());
318 (void)setuid(getuid());
321 execlp(editor
, basename(editor
), tempname
, NULL
);
328 if (waitpid(editpid
, &pstat
, WUNTRACED
) == -1) {
334 } else if (WIFSTOPPED(pstat
)) {
335 raise(WSTOPSIG(pstat
));
336 } else if (WIFEXITED(pstat
) && WEXITSTATUS(pstat
) == 0) {
345 sigaction(SIGINT
, &sa_int
, NULL
);
346 sigaction(SIGQUIT
, &sa_quit
, NULL
);
347 sigprocmask(SIG_SETMASK
, &oldsigset
, NULL
);
348 if (stat(tempname
, &st2
) == -1)
350 return (st1
.st_mtime
!= st2
.st_mtime
);
354 * Clean up. Preserve errno for the caller's convenience.
366 kill(editpid
, SIGTERM
);
367 kill(editpid
, SIGCONT
);
368 waitpid(editpid
, &status
, 0);
371 if (*tempname
!= '\0') {
381 * Compares two struct pwds.
384 pw_equal(struct passwd
*pw1
, struct passwd
*pw2
)
386 return (strcmp(pw1
->pw_name
, pw2
->pw_name
) == 0 &&
387 pw1
->pw_uid
== pw2
->pw_uid
&&
388 pw1
->pw_gid
== pw2
->pw_gid
&&
389 strcmp(pw1
->pw_class
, pw2
->pw_class
) == 0 &&
390 pw1
->pw_change
== pw2
->pw_change
&&
391 pw1
->pw_expire
== pw2
->pw_expire
&&
392 strcmp(pw1
->pw_gecos
, pw2
->pw_gecos
) == 0 &&
393 strcmp(pw1
->pw_dir
, pw2
->pw_dir
) == 0 &&
394 strcmp(pw1
->pw_shell
, pw2
->pw_shell
) == 0);
398 * Make a passwd line out of a struct passwd.
401 pw_make(struct passwd
*pw
)
405 asprintf(&line
, "%s:%s:%ju:%ju:%s:%ju:%ju:%s:%s:%s", pw
->pw_name
,
406 pw
->pw_passwd
, (uintmax_t)pw
->pw_uid
, (uintmax_t)pw
->pw_gid
,
407 pw
->pw_class
, (uintmax_t)pw
->pw_change
, (uintmax_t)pw
->pw_expire
,
408 pw
->pw_gecos
, pw
->pw_dir
, pw
->pw_shell
);
413 * Copy password file from one descriptor to another, replacing or adding
414 * a single record on the way.
417 pw_copy(int ffd
, int tfd
, struct passwd
*pw
, struct passwd
*old_pw
)
419 char buf
[8192], *end
, *line
, *p
, *q
, *r
, t
;
424 if ((line
= pw_make(pw
)) == NULL
)
431 /* find the end of the current line */
432 for (p
= q
; q
< end
&& *q
!= '\0'; ++q
)
436 /* if we don't have a complete line, fill up the buffer */
440 if (q
- p
>= sizeof buf
) {
441 warnx("passwd line too long");
442 errno
= EINVAL
; /* hack */
446 q
= memmove(buf
, p
, end
- p
);
451 len
= read(ffd
, end
, sizeof buf
- (end
- buf
));
454 if (len
== 0 && p
== buf
)
458 if (len
< sizeof buf
) {
460 if (len
> 0 && buf
[len
- 1] != '\n')
461 ++len
, *end
++ = '\n';
466 /* is it a blank line or a comment? */
467 for (r
= p
; r
< q
&& isspace(*r
); ++r
)
469 if (r
== q
|| *r
== '#') {
471 if (write(tfd
, p
, q
- p
+ 1) != q
- p
+ 1)
477 /* is it the one we're looking for? */
480 fpw
= pw_scan(r
, PWSCAN_MASTER
);
482 if (strcmp(fpw
->pw_name
, pw
->pw_name
) != 0) {
485 if (write(tfd
, p
, q
- p
+ 1) != q
- p
+ 1)
490 if (old_pw
&& !pw_equal(fpw
, old_pw
)) {
491 warnx("entry inconsistent");
493 errno
= EINVAL
; /* hack */
498 /* it is, replace it */
500 if (write(tfd
, line
, len
) != len
)
503 /* we're done, just copy the rest over */
505 if (write(tfd
, q
, end
- q
) != end
- q
)
508 len
= read(ffd
, buf
, sizeof buf
);
518 /* if we got here, we have a new entry */
520 if (write(tfd
, line
, len
) != len
||
521 write(tfd
, "\n", 1) != 1)
532 * Return the current value of tempname.
542 * Duplicate a struct passwd.
545 pw_dup(struct passwd
*pw
)
551 (pw
->pw_name
? strlen(pw
->pw_name
) + 1 : 0) +
552 (pw
->pw_passwd
? strlen(pw
->pw_passwd
) + 1 : 0) +
553 (pw
->pw_class
? strlen(pw
->pw_class
) + 1 : 0) +
554 (pw
->pw_gecos
? strlen(pw
->pw_gecos
) + 1 : 0) +
555 (pw
->pw_dir
? strlen(pw
->pw_dir
) + 1 : 0) +
556 (pw
->pw_shell
? strlen(pw
->pw_shell
) + 1 : 0);
557 if ((npw
= malloc(len
)) == NULL
)
559 memcpy(npw
, pw
, sizeof *npw
);
562 npw
->pw_name
= ((char *)npw
) + len
;
563 len
+= sprintf(npw
->pw_name
, "%s", pw
->pw_name
) + 1;
566 npw
->pw_passwd
= ((char *)npw
) + len
;
567 len
+= sprintf(npw
->pw_passwd
, "%s", pw
->pw_passwd
) + 1;
570 npw
->pw_class
= ((char *)npw
) + len
;
571 len
+= sprintf(npw
->pw_class
, "%s", pw
->pw_class
) + 1;
574 npw
->pw_gecos
= ((char *)npw
) + len
;
575 len
+= sprintf(npw
->pw_gecos
, "%s", pw
->pw_gecos
) + 1;
578 npw
->pw_dir
= ((char *)npw
) + len
;
579 len
+= sprintf(npw
->pw_dir
, "%s", pw
->pw_dir
) + 1;
582 npw
->pw_shell
= ((char *)npw
) + len
;
583 len
+= sprintf(npw
->pw_shell
, "%s", pw
->pw_shell
) + 1;
591 * Wrapper around an internal libc function
594 pw_scan(const char *line
, int flags
)
596 struct passwd pw
, *ret
;
599 if ((bp
= strdup(line
)) == NULL
)
601 if (!__pw_scan(bp
, &pw
, flags
)) {