]>
git.cameronkatri.com Git - pw-darwin.git/blob - chpass/chpass.c
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. 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
42 static const char copyright
[] =
43 "@(#) Copyright (c) 1988, 1993, 1994\n\
44 The Regents of the University of California. All rights reserved.\n";
49 static char sccsid
[] = "@(#)chpass.c 8.4 (Berkeley) 4/2/94";
53 #include <sys/cdefs.h>
54 __FBSDID("$FreeBSD$");
56 #include <sys/param.h>
58 #include <sys/signal.h>
60 #include <sys/resource.h>
82 static void baduser(void);
83 static void usage(void);
86 main(int argc
, char *argv
[])
88 enum { NEWSH
, LOADENTRY
, EDITENTRY
, NEWPW
, NEWEXP
} op
;
89 struct passwd lpw
, *old_pw
, *pw
;
95 struct ypclnt
*ypclnt
;
96 const char *yp_domain
= NULL
, *yp_host
= NULL
;
102 while ((ch
= getopt(argc
, argv
, "a:p:s:e:d:h:loy")) != -1)
104 while ((ch
= getopt(argc
, argv
, "a:p:s:e:")) != -1)
149 if (op
== EDITENTRY
|| op
== NEWSH
|| op
== NEWPW
|| op
== NEWEXP
) {
151 if ((pw
= getpwuid(uid
)) == NULL
)
152 errx(1, "unknown user: uid %lu",
155 if ((pw
= getpwnam(*argv
)) == NULL
)
156 errx(1, "unknown user: %s", *argv
);
157 if (uid
!= 0 && uid
!= pw
->pw_uid
)
161 /* Make a copy for later verification */
162 if ((pw
= pw_dup(pw
)) == NULL
||
163 (old_pw
= pw_dup(pw
)) == NULL
)
168 if (pw
!= NULL
&& (pw
->pw_fields
& _PWF_SOURCE
) == _PWF_NIS
) {
169 ypclnt
= ypclnt_new(yp_domain
, "passwd.byname", yp_host
);
170 master_mode
= (ypclnt
!= NULL
&&
171 ypclnt_connect(ypclnt
) != -1 &&
172 ypclnt_havepasswdd(ypclnt
) == 1);
176 master_mode
= (uid
== 0);
179 /* protect p_shell -- it thinks NULL is /bin/sh */
182 if (p_shell(arg
, pw
, (ENTRY
*)NULL
) == -1)
187 if (uid
) /* only root can change expire */
189 if (p_expire(arg
, pw
, (ENTRY
*)NULL
) == -1)
193 if (op
== LOADENTRY
) {
198 if (!__pw_scan(arg
, pw
, _PWSCAN_WARN
|_PWSCAN_MASTER
))
206 if (strchr(arg
, ':'))
207 errx(1, "invalid format for password");
211 if (op
== EDITENTRY
) {
213 * We don't really need pw_*() here, but pw_edit() (used
214 * by edit()) is just too useful...
216 if (pw_init(NULL
, NULL
))
218 if ((tfd
= pw_tmp(-1)) == -1) {
223 pw
= edit(pw_tempname(), old_pw
);
227 if (pw_equal(old_pw
, pw
))
228 errx(0, "user information unchanged");
231 if (old_pw
&& !master_mode
) {
232 password
= getpass("Password: ");
233 if (strcmp(crypt(password
, old_pw
->pw_passwd
),
234 old_pw
->pw_passwd
) != 0)
241 pw
->pw_fields
|= (old_pw
->pw_fields
& _PWF_SOURCE
);
242 switch (pw
->pw_fields
& _PWF_SOURCE
) {
245 ypclnt
= ypclnt_new(yp_domain
, "passwd.byname", yp_host
);
246 if (ypclnt
== NULL
||
247 ypclnt_connect(ypclnt
) == -1 ||
248 ypclnt_passwd(ypclnt
, pw
, password
) == -1) {
249 warnx("%s", ypclnt
->error
);
254 errx(0, "NIS user information updated");
258 if (pw_init(NULL
, NULL
))
260 if ((pfd
= pw_lock()) == -1) {
264 if ((tfd
= pw_tmp(-1)) == -1) {
268 if (pw_copy(pfd
, tfd
, pw
, old_pw
) == -1) {
272 if (pw_mkdb(pw
->pw_name
) == -1) {
277 errx(0, "user information updated");
280 errx(1, "unsupported passwd source");
288 errx(1, "%s", strerror(EACCES
));
295 (void)fprintf(stderr
,
296 "Usage: chpass%s %s [user]\n",
298 " [-d domain] [-h host]",
302 "[-a list] [-p encpass] [-s shell] [-e mmm dd yy]");