]>
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);
85 char localhost
[] = "localhost";
88 main(int argc
, char *argv
[])
90 enum { NEWSH
, LOADENTRY
, EDITENTRY
, NEWPW
, NEWEXP
} op
;
91 struct passwd
*pw
= NULL
, lpw
, *old_pw
;
97 struct ypclnt
*ypclnt
;
98 const char *yp_domain
= NULL
, *yp_host
= NULL
;
103 while ((ch
= getopt(argc
, argv
, "a:p:s:e:d:h:loy")) != -1)
105 while ((ch
= getopt(argc
, argv
, "a:p:s:e:")) != -1)
150 if (op
== EDITENTRY
|| op
== NEWSH
|| op
== NEWPW
|| op
== NEWEXP
) {
152 if ((pw
= getpwuid(uid
)) == NULL
)
153 errx(1, "unknown user: uid %lu",
156 if ((pw
= getpwnam(*argv
)) == NULL
)
157 errx(1, "unknown user: %s", *argv
);
158 if (uid
!= 0 && uid
!= pw
->pw_uid
)
162 /* Make a copy for later verification */
163 if ((pw
= pw_dup(pw
)) == NULL
||
164 (old_pw
= pw_dup(pw
)) == NULL
)
169 if (pw
!= NULL
&& (pw
->pw_fields
& _PWF_SOURCE
) == _PWF_NIS
) {
170 ypclnt
= ypclnt_new(yp_domain
, "passwd.byname", yp_host
);
171 master_mode
= (ypclnt
!= NULL
&&
172 ypclnt_connect(ypclnt
) != -1 &&
173 ypclnt_havepasswdd(ypclnt
) == 1);
177 master_mode
= (uid
== 0);
180 /* protect p_shell -- it thinks NULL is /bin/sh */
183 if (p_shell(arg
, pw
, (ENTRY
*)NULL
) == -1)
188 if (uid
) /* only root can change expire */
190 if (p_expire(arg
, pw
, (ENTRY
*)NULL
) == -1)
194 if (op
== LOADENTRY
) {
199 if (!__pw_scan(arg
, pw
, _PWSCAN_WARN
|_PWSCAN_MASTER
))
207 if (strchr(arg
, ':'))
208 errx(1, "invalid format for password");
212 if (op
== EDITENTRY
) {
214 * We don't really need pw_*() here, but pw_edit() (used
215 * by edit()) is just too useful...
217 if (pw_init(NULL
, NULL
))
219 if ((tfd
= pw_tmp(-1)) == -1) {
224 pw
= edit(pw_tempname(), old_pw
);
228 if (pw_equal(old_pw
, pw
))
229 errx(0, "user information unchanged");
232 if (old_pw
&& !master_mode
) {
233 password
= getpass("Password: ");
234 if (strcmp(crypt(password
, old_pw
->pw_passwd
),
235 old_pw
->pw_passwd
) != 0)
242 pw
->pw_fields
|= (old_pw
->pw_fields
& _PWF_SOURCE
);
243 switch (pw
->pw_fields
& _PWF_SOURCE
) {
246 ypclnt
= ypclnt_new(yp_domain
, "passwd.byname", yp_host
);
247 if (ypclnt
== NULL
||
248 ypclnt_connect(ypclnt
) == -1 ||
249 ypclnt_passwd(ypclnt
, pw
, password
) == -1) {
250 warnx("%s", ypclnt
->error
);
255 errx(0, "NIS user information updated");
259 if (pw_init(NULL
, NULL
))
261 if ((pfd
= pw_lock()) == -1) {
265 if ((tfd
= pw_tmp(-1)) == -1) {
269 if (pw_copy(pfd
, tfd
, pw
, old_pw
) == -1) {
273 if (pw_mkdb(pw
->pw_name
) == -1) {
278 errx(0, "user information updated");
281 errx(1, "unsupported passwd source");
289 errx(1, "%s", strerror(EACCES
));
296 (void)fprintf(stderr
,
297 "Usage: chpass%s %s [user]\n",
299 " [-d domain] [-h host]",
303 "[-a list] [-p encpass] [-s shell] [-e mmm dd yy]");