]>
git.cameronkatri.com Git - pw-darwin.git/blob - chpass/chpass.c
2 * SPDX-License-Identifier: BSD-4-Clause
4 * Copyright (c) 1988, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 * Copyright (c) 2002 Networks Associates Technology, Inc.
9 * Portions of this software were developed for the FreeBSD Project by
10 * ThinkSec AS and NAI Labs, the Security Research Division of Network
11 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
12 * ("CBOSS"), as part of the DARPA CHATS research program.
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. All advertising materials mentioning features or use of this software
23 * must display the following acknowledgement:
24 * This product includes software developed by the University of
25 * California, Berkeley and its contributors.
26 * 4. Neither the name of the University nor the names of its contributors
27 * may be used to endorse or promote products derived from this software
28 * without specific prior written permission.
30 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
45 static const char copyright
[] =
46 "@(#) Copyright (c) 1988, 1993, 1994\n\
47 The Regents of the University of California. All rights reserved.\n";
51 static char sccsid
[] = "@(#)chpass.c 8.4 (Berkeley) 4/2/94";
54 #include <sys/cdefs.h>
55 __FBSDID("$FreeBSD$");
57 #include <sys/param.h>
78 static void baduser(void);
79 static void usage(void);
82 main(int argc
, char *argv
[])
84 enum { NEWSH
, LOADENTRY
, EDITENTRY
, NEWPW
, NEWEXP
} op
;
85 struct passwd lpw
, *old_pw
, *pw
;
88 char *arg
= NULL
, *cryptpw
;
91 struct ypclnt
*ypclnt
;
92 const char *yp_domain
= NULL
, *yp_host
= NULL
;
98 while ((ch
= getopt(argc
, argv
, "a:p:s:e:d:h:loy")) != -1)
100 while ((ch
= getopt(argc
, argv
, "a:p:s:e:")) != -1)
145 if (op
== EDITENTRY
|| op
== NEWSH
|| op
== NEWPW
|| op
== NEWEXP
) {
147 if ((pw
= getpwuid(uid
)) == NULL
)
148 errx(1, "unknown user: uid %lu",
151 if ((pw
= getpwnam(*argv
)) == NULL
)
152 errx(1, "unknown user: %s", *argv
);
153 if (uid
!= 0 && uid
!= pw
->pw_uid
)
157 /* Make a copy for later verification */
158 if ((pw
= pw_dup(pw
)) == NULL
||
159 (old_pw
= pw_dup(pw
)) == NULL
)
164 if (pw
!= NULL
&& (pw
->pw_fields
& _PWF_SOURCE
) == _PWF_NIS
) {
165 ypclnt
= ypclnt_new(yp_domain
, "passwd.byname", yp_host
);
166 master_mode
= (ypclnt
!= NULL
&&
167 ypclnt_connect(ypclnt
) != -1 &&
168 ypclnt_havepasswdd(ypclnt
) == 1);
172 master_mode
= (uid
== 0);
175 /* protect p_shell -- it thinks NULL is /bin/sh */
178 if (p_shell(arg
, pw
, (ENTRY
*)NULL
) == -1)
183 if (uid
) /* only root can change expire */
185 if (p_expire(arg
, pw
, (ENTRY
*)NULL
) == -1)
189 if (op
== LOADENTRY
) {
194 if (!__pw_scan(arg
, pw
, _PWSCAN_WARN
|_PWSCAN_MASTER
))
202 if (strchr(arg
, ':'))
203 errx(1, "invalid format for password");
207 if (op
== EDITENTRY
) {
209 * We don't really need pw_*() here, but pw_edit() (used
210 * by edit()) is just too useful...
212 if (pw_init(NULL
, NULL
))
214 if ((tfd
= pw_tmp(-1)) == -1) {
219 pw
= edit(pw_tempname(), old_pw
);
224 * pw_equal does not check for crypted passwords, so we
225 * should do it explicitly
227 if (pw_equal(old_pw
, pw
) &&
228 strcmp(old_pw
->pw_passwd
, pw
->pw_passwd
) == 0)
229 errx(0, "user information unchanged");
232 if (old_pw
&& !master_mode
) {
233 password
= getpass("Password: ");
234 cryptpw
= crypt(password
, old_pw
->pw_passwd
);
235 if (cryptpw
== NULL
|| strcmp(cryptpw
, old_pw
->pw_passwd
) != 0)
241 if (pw_init(NULL
, NULL
))
243 if ((pfd
= pw_lock()) == -1) {
247 if ((tfd
= pw_tmp(-1)) == -1) {
251 if (pw_copy(pfd
, tfd
, pw
, old_pw
) == -1) {
255 if (pw_mkdb(pw
->pw_name
) == -1) {
260 errx(0, "user information updated");
267 errx(1, "%s", strerror(EACCES
));
274 (void)fprintf(stderr
,
275 "usage: chpass%s %s [user]\n",
277 " [-d domain] [-h host]",
281 "[-a list] [-p encpass] [-s shell] [-e mmm dd yy]");