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 * @(#)field.c 8.4 (Berkeley) 4/2/94
34 * $DragonFly: src/usr.bin/chpass/field.c,v 1.3 2003/10/02 19:42:26 hmp Exp $
37 #include <sys/param.h>
51 #include "pathnames.h"
55 p_login(char *p
, struct passwd
*pw
, ENTRY
*ep
)
58 warnx("empty login field");
62 warnx("login names may not begin with a hyphen");
65 if (!(pw
->pw_name
= strdup(p
))) {
66 warnx("can't save entry");
70 warnx("\'.\' is dangerous in a login name");
73 warnx("upper-case letters are dangerous in a login name");
81 p_passwd(char *p
, struct passwd
*pw
, ENTRY
*ep
)
84 pw
->pw_passwd
= ""; /* "NOLOGIN"; */
85 else if (!(pw
->pw_passwd
= strdup(p
))) {
86 warnx("can't save password entry");
95 p_uid(char *p
, struct passwd
*pw
, ENTRY
*ep
)
101 warnx("empty uid field");
105 warnx("illegal uid");
109 id
= strtoul(p
, &np
, 10);
110 if (*np
|| (id
== ULONG_MAX
&& errno
== ERANGE
)) {
111 warnx("illegal uid");
120 p_gid(char *p
, struct passwd
*pw
, ENTRY
*ep
)
127 warnx("empty gid field");
131 if (!(gr
= getgrnam(p
))) {
132 warnx("unknown group %s", p
);
135 pw
->pw_gid
= gr
->gr_gid
;
139 id
= strtoul(p
, &np
, 10);
140 if (*np
|| (id
== ULONG_MAX
&& errno
== ERANGE
)) {
141 warnx("illegal gid");
150 p_class(char *p
, struct passwd
*pw
, ENTRY
*ep
)
154 else if (!(pw
->pw_class
= strdup(p
))) {
155 warnx("can't save entry");
164 p_change(char *p
, struct passwd
*pw
, ENTRY
*ep
)
166 if (!atot(p
, &pw
->pw_change
))
168 warnx("illegal date for change field");
174 p_expire(char *p
, struct passwd
*pw
, ENTRY
*ep
)
176 if (!atot(p
, &pw
->pw_expire
))
178 warnx("illegal date for expire field");
184 p_gecos(char *p
, struct passwd
*pw
, ENTRY
*ep
)
188 else if (!(ep
->save
= strdup(p
))) {
189 warnx("can't save entry");
197 p_hdir(char *p
, struct passwd
*pw
, ENTRY
*ep
)
200 warnx("empty home directory field");
203 if (!(pw
->pw_dir
= strdup(p
))) {
204 warnx("can't save entry");
212 p_shell(char *p
, struct passwd
*pw
, ENTRY
*ep
)
214 char *t
, *ok_shell();
218 pw
->pw_shell
= _PATH_BSHELL
;
221 /* only admin can change from or to "restricted" shells */
222 if (uid
&& pw
->pw_shell
&& !ok_shell(pw
->pw_shell
)) {
223 warnx("%s: current shell non-standard", pw
->pw_shell
);
226 if (!(t
= ok_shell(p
))) {
228 warnx("%s: non-standard shell", p
);
234 if (!(pw
->pw_shell
= strdup(p
))) {
235 warnx("can't save entry");
238 if (stat(pw
->pw_shell
, &sbuf
) < 0) {
240 warnx("WARNING: shell '%s' does not exist",
243 warn("WARNING: can't stat shell '%s'", pw
->pw_shell
);
246 if (!S_ISREG(sbuf
.st_mode
)) {
247 warnx("WARNING: shell '%s' is not a regular file",
251 if ((sbuf
.st_mode
& (S_IXOTH
| S_IXGRP
| S_IXUSR
)) == 0) {
252 warnx("WARNING: shell '%s' is not executable", pw
->pw_shell
);