2 * Copyright (c) 1988, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1988, 1993, 1994 The Regents of the University of California. All rights reserved.
34 * @(#)passwd.c 8.3 (Berkeley) 4/2/94
35 * $FreeBSD: src/usr.bin/passwd/passwd.c,v 1.16.2.1 2001/03/12 10:48:08 assar Exp $
36 * $DragonFly: src/usr.bin/passwd/passwd.c,v 1.3 2003/10/04 20:36:50 hmp Exp $
39 #include <sys/types.h>
52 #include <rpcsvc/yp.h>
54 int yp_errno
= YP_TRUE
;
55 extern int yp_passwd( char * );
64 static void usage(void);
66 int use_local_passwd
= 0;
69 main(int argc
, char **argv
)
74 char *iflag
= 0, *rflag
= 0, *uflag
= 0;
81 #define OPTIONS "d:h:lysfoi:r:u:"
83 #define OPTIONS "d:h:lysfo"
88 #define OPTIONS "li:r:u:"
97 if (strstr(argv
[0], "yppasswd")) __use_yp
= 1;
100 while ((ch
= getopt(argc
, argv
, OPTIONS
)) != -1) {
102 case 'l': /* change local password file */
103 use_local_passwd
= 1;
115 #endif /* KERBEROS */
117 case 'y': /* Change NIS password */
120 case 'd': /* Specify NIS domain. */
125 if (yp_server
== NULL
)
126 yp_server
= "localhost";
129 warnx("only the super-user may use the -d flag");
133 case 'h': /* Specify NIS server. */
140 warnx("only the super-user may use the -h flag");
157 if ((uname
= getlogin()) == NULL
)
172 * If NIS is turned on in the password database, use it, else punt.
175 if (__use_yp
|| (iflag
== NULL
&& rflag
== NULL
&& uflag
== NULL
)) {
177 res
= use_yp(uname
, 0, 0);
178 if (res
== USER_YP_ONLY
) {
179 if (!use_local_passwd
) {
180 exit(yp_passwd(uname
));
183 * Reject -l flag if NIS is turned on and the user
184 * doesn't exist in the local password database.
186 errx(1, "unknown local user: %s", uname
);
188 } else if (res
== USER_LOCAL_ONLY
) {
190 * Reject -y flag if user only exists locally.
193 errx(1, "unknown NIS user: %s", uname
);
194 } else if (res
== USER_YP_AND_LOCAL
) {
195 if (!use_local_passwd
&& (yp_in_pw_file
|| __use_yp
))
196 exit(yp_passwd(uname
));
203 if (!use_local_passwd
) {
205 k
= auth_getval("auth_list");
206 if (k
&& strstr(k
, "kerberos"))
207 if(krb_get_lrealm(realm
, 0) == KSUCCESS
) {
209 fprintf(stderr
, "realm %s\n", realm
);
210 exit(krb_passwd(argv
[0], iflag
, rflag
, uflag
));
214 exit(local_passwd(uname
));
223 fprintf(stderr
, "%s\n%s\n",
224 "usage: passwd [-l] [-i instance] [-r realm] [-u fullname]",
225 " passwd [-l] [-y] [-o] [-d domain [-h host]] [user]");
227 (void)fprintf(stderr
,
228 "usage: passwd [-l] [-y] [-o] [-d domain [-h host]] [user]\n");
233 "usage: passwd [-l] [-i instance] [-r realm] [-u fullname] [user]\n");
235 (void)fprintf(stderr
, "usage: passwd user\n");