2 * Copyright (c) 1988, 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. 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
36 * @(#) Copyright (c) 1988, 1993, 1994 The Regents of the University of California. All rights reserved.
37 * @(#)chpass.c 8.4 (Berkeley) 4/2/94
38 * $FreeBSD: src/usr.bin/chpass/chpass.c,v 1.28 2006/09/25 15:06:24 marck Exp $
39 * $DragonFly: src/usr.bin/chpass/chpass.c,v 1.4 2003/11/03 19:31:28 eirikn Exp $
42 #include <sys/param.h>
62 static void baduser(void);
63 static void usage(void);
66 main(int argc
, char **argv
)
68 enum { NEWSH
, LOADENTRY
, EDITENTRY
, NEWPW
, NEWEXP
} op
;
69 struct passwd lpw
, *old_pw
, *pw
;
76 struct ypclnt
*ypclnt
;
77 const char *yp_domain
= NULL
, *yp_host
= NULL
;
83 while ((ch
= getopt(argc
, argv
, "a:p:s:e:d:h:loy")) != -1)
85 while ((ch
= getopt(argc
, argv
, "a:p:s:e:")) != -1)
130 if (op
== EDITENTRY
|| op
== NEWSH
|| op
== NEWPW
|| op
== NEWEXP
) {
132 if ((pw
= getpwuid(uid
)) == NULL
)
133 errx(1, "unknown user: uid %lu",
136 if ((pw
= getpwnam(*argv
)) == NULL
)
137 errx(1, "unknown user: %s", *argv
);
138 if (uid
!= 0 && uid
!= pw
->pw_uid
)
142 /* Make a copy for later verification */
143 if ((pw
= pw_dup(pw
)) == NULL
||
144 (old_pw
= pw_dup(pw
)) == NULL
)
149 if (pw
!= NULL
&& (pw
->pw_fields
& _PWF_SOURCE
) == _PWF_NIS
) {
150 ypclnt
= ypclnt_new(yp_domain
, "passwd.byname", yp_host
);
151 master_mode
= (ypclnt
!= NULL
&&
152 ypclnt_connect(ypclnt
) != -1 &&
153 ypclnt_havepasswdd(ypclnt
) == 1);
157 master_mode
= (uid
== 0);
160 /* protect p_shell -- it thinks NULL is /bin/sh */
163 if (p_shell(arg
, pw
, NULL
) == -1)
168 if (uid
) /* only root can change expire */
170 if (p_expire(arg
, pw
, NULL
) == -1)
174 if (op
== LOADENTRY
) {
179 if (!__pw_scan(arg
, pw
, _PWSCAN_WARN
|_PWSCAN_MASTER
))
187 if (strchr(arg
, ':'))
188 errx(1, "invalid format for password");
192 if (op
== EDITENTRY
) {
194 * We don't really need pw_*() here, but pw_edit() (used
195 * by edit()) is just too useful...
197 if (pw_init(NULL
, NULL
))
199 if ((tfd
= pw_tmp(-1)) == -1) {
204 pw
= edit(pw_tempname(), old_pw
);
209 * pw_equal does not check for crypted passwords, so we
210 * should do it explicitly
212 if (pw_equal(old_pw
, pw
) &&
213 strcmp(old_pw
->pw_passwd
, pw
->pw_passwd
) == 0)
214 errx(0, "user information unchanged");
217 if (old_pw
&& !master_mode
) {
218 password
= getpass("Password: ");
219 cryptpw
= crypt(password
, old_pw
->pw_passwd
);
220 if (cryptpw
== NULL
|| strcmp(cryptpw
, old_pw
->pw_passwd
) != 0)
227 pw
->pw_fields
|= (old_pw
->pw_fields
& _PWF_SOURCE
);
228 switch (pw
->pw_fields
& _PWF_SOURCE
) {
231 ypclnt
= ypclnt_new(yp_domain
, "passwd.byname", yp_host
);
232 if (ypclnt
== NULL
||
233 ypclnt_connect(ypclnt
) == -1 ||
234 ypclnt_passwd(ypclnt
, pw
, password
) == -1) {
235 warnx("%s", ypclnt
->error
);
240 errx(0, "NIS user information updated");
244 if (pw_init(NULL
, NULL
))
246 if ((pfd
= pw_lock()) == -1) {
250 if ((tfd
= pw_tmp(-1)) == -1) {
254 if (pw_copy(pfd
, tfd
, pw
, old_pw
) == -1) {
258 if (pw_mkdb(pw
->pw_name
) == -1) {
263 errx(0, "user information updated");
266 errx(1, "unsupported passwd source");
274 errx(1, "%s", strerror(EACCES
));
282 "usage: chpass%s %s [user]\n",
284 " [-d domain] [-h host]",
288 "[-a list] [-p encpass] [-s shell] [-e mmm dd yy]");