1*df57947fSPedro F. Giffuni /*-
2*df57947fSPedro F. Giffuni * SPDX-License-Identifier: BSD-4-Clause
3*df57947fSPedro F. Giffuni *
49b50d902SRodney W. Grimes * Copyright (c) 1988, 1993, 1994
59b50d902SRodney W. Grimes * The Regents of the University of California. All rights reserved.
6f1d05925SDag-Erling Smørgrav * Copyright (c) 2002 Networks Associates Technology, Inc.
7f1d05925SDag-Erling Smørgrav * All rights reserved.
8f1d05925SDag-Erling Smørgrav *
9f1d05925SDag-Erling Smørgrav * Portions of this software were developed for the FreeBSD Project by
10f1d05925SDag-Erling Smørgrav * ThinkSec AS and NAI Labs, the Security Research Division of Network
11f1d05925SDag-Erling Smørgrav * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035
12f1d05925SDag-Erling Smørgrav * ("CBOSS"), as part of the DARPA CHATS research program.
139b50d902SRodney W. Grimes *
149b50d902SRodney W. Grimes * Redistribution and use in source and binary forms, with or without
159b50d902SRodney W. Grimes * modification, are permitted provided that the following conditions
169b50d902SRodney W. Grimes * are met:
179b50d902SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
189b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer.
199b50d902SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
209b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
219b50d902SRodney W. Grimes * documentation and/or other materials provided with the distribution.
229b50d902SRodney W. Grimes * 3. All advertising materials mentioning features or use of this software
239b50d902SRodney W. Grimes * must display the following acknowledgement:
249b50d902SRodney W. Grimes * This product includes software developed by the University of
259b50d902SRodney W. Grimes * California, Berkeley and its contributors.
269b50d902SRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors
279b50d902SRodney W. Grimes * may be used to endorse or promote products derived from this software
289b50d902SRodney W. Grimes * without specific prior written permission.
299b50d902SRodney W. Grimes *
309b50d902SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
319b50d902SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
329b50d902SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
339b50d902SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
349b50d902SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
359b50d902SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
369b50d902SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
379b50d902SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
389b50d902SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
399b50d902SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
409b50d902SRodney W. Grimes * SUCH DAMAGE.
419b50d902SRodney W. Grimes */
429b50d902SRodney W. Grimes
439b50d902SRodney W. Grimes #include <sys/param.h>
44d33c4953SMike Pritchard #include <sys/stat.h>
459b50d902SRodney W. Grimes
469b50d902SRodney W. Grimes #include <ctype.h>
479b50d902SRodney W. Grimes #include <err.h>
489b50d902SRodney W. Grimes #include <errno.h>
499b50d902SRodney W. Grimes #include <grp.h>
50f1d05925SDag-Erling Smørgrav #include <paths.h>
519b50d902SRodney W. Grimes #include <pwd.h>
529b50d902SRodney W. Grimes #include <stdlib.h>
539b50d902SRodney W. Grimes #include <string.h>
549b50d902SRodney W. Grimes
559b50d902SRodney W. Grimes #include "chpass.h"
569b50d902SRodney W. Grimes
579b50d902SRodney W. Grimes /* ARGSUSED */
589b50d902SRodney W. Grimes int
p_login(char * p,struct passwd * pw,ENTRY * ep __unused)595ea73378SMark Murray p_login(char *p, struct passwd *pw, ENTRY *ep __unused)
609b50d902SRodney W. Grimes {
619b50d902SRodney W. Grimes if (!*p) {
629b50d902SRodney W. Grimes warnx("empty login field");
63f1d05925SDag-Erling Smørgrav return (-1);
649b50d902SRodney W. Grimes }
659b50d902SRodney W. Grimes if (*p == '-') {
669b50d902SRodney W. Grimes warnx("login names may not begin with a hyphen");
67f1d05925SDag-Erling Smørgrav return (-1);
689b50d902SRodney W. Grimes }
699b50d902SRodney W. Grimes if (!(pw->pw_name = strdup(p))) {
709b50d902SRodney W. Grimes warnx("can't save entry");
71f1d05925SDag-Erling Smørgrav return (-1);
729b50d902SRodney W. Grimes }
739b50d902SRodney W. Grimes if (strchr(p, '.'))
749b50d902SRodney W. Grimes warnx("\'.\' is dangerous in a login name");
759b50d902SRodney W. Grimes for (; *p; ++p)
769b50d902SRodney W. Grimes if (isupper(*p)) {
779b50d902SRodney W. Grimes warnx("upper-case letters are dangerous in a login name");
789b50d902SRodney W. Grimes break;
799b50d902SRodney W. Grimes }
809b50d902SRodney W. Grimes return (0);
819b50d902SRodney W. Grimes }
829b50d902SRodney W. Grimes
839b50d902SRodney W. Grimes /* ARGSUSED */
849b50d902SRodney W. Grimes int
p_passwd(char * p,struct passwd * pw,ENTRY * ep __unused)855ea73378SMark Murray p_passwd(char *p, struct passwd *pw, ENTRY *ep __unused)
869b50d902SRodney W. Grimes {
87afa6d859SDavid Malone if (!(pw->pw_passwd = strdup(p))) {
889b50d902SRodney W. Grimes warnx("can't save password entry");
89f1d05925SDag-Erling Smørgrav return (-1);
909b50d902SRodney W. Grimes }
919b50d902SRodney W. Grimes
929b50d902SRodney W. Grimes return (0);
939b50d902SRodney W. Grimes }
949b50d902SRodney W. Grimes
959b50d902SRodney W. Grimes /* ARGSUSED */
969b50d902SRodney W. Grimes int
p_uid(char * p,struct passwd * pw,ENTRY * ep __unused)975ea73378SMark Murray p_uid(char *p, struct passwd *pw, ENTRY *ep __unused)
989b50d902SRodney W. Grimes {
999b50d902SRodney W. Grimes uid_t id;
1009b50d902SRodney W. Grimes char *np;
1019b50d902SRodney W. Grimes
1029b50d902SRodney W. Grimes if (!*p) {
1039b50d902SRodney W. Grimes warnx("empty uid field");
104f1d05925SDag-Erling Smørgrav return (-1);
1059b50d902SRodney W. Grimes }
1069b50d902SRodney W. Grimes if (!isdigit(*p)) {
1079b50d902SRodney W. Grimes warnx("illegal uid");
108f1d05925SDag-Erling Smørgrav return (-1);
1099b50d902SRodney W. Grimes }
1109b50d902SRodney W. Grimes errno = 0;
1119b50d902SRodney W. Grimes id = strtoul(p, &np, 10);
1128a50130bSAlexander Kabaev if (*np || (id == (uid_t)ULONG_MAX && errno == ERANGE)) {
1139b50d902SRodney W. Grimes warnx("illegal uid");
114f1d05925SDag-Erling Smørgrav return (-1);
1159b50d902SRodney W. Grimes }
1169b50d902SRodney W. Grimes pw->pw_uid = id;
1179b50d902SRodney W. Grimes return (0);
1189b50d902SRodney W. Grimes }
1199b50d902SRodney W. Grimes
1209b50d902SRodney W. Grimes /* ARGSUSED */
1219b50d902SRodney W. Grimes int
p_gid(char * p,struct passwd * pw,ENTRY * ep __unused)1225ea73378SMark Murray p_gid(char *p, struct passwd *pw, ENTRY *ep __unused)
1239b50d902SRodney W. Grimes {
1249b50d902SRodney W. Grimes struct group *gr;
1259b50d902SRodney W. Grimes gid_t id;
1269b50d902SRodney W. Grimes char *np;
1279b50d902SRodney W. Grimes
1289b50d902SRodney W. Grimes if (!*p) {
1299b50d902SRodney W. Grimes warnx("empty gid field");
130f1d05925SDag-Erling Smørgrav return (-1);
1319b50d902SRodney W. Grimes }
1329b50d902SRodney W. Grimes if (!isdigit(*p)) {
1339b50d902SRodney W. Grimes if (!(gr = getgrnam(p))) {
1349b50d902SRodney W. Grimes warnx("unknown group %s", p);
135f1d05925SDag-Erling Smørgrav return (-1);
1369b50d902SRodney W. Grimes }
1379b50d902SRodney W. Grimes pw->pw_gid = gr->gr_gid;
1389b50d902SRodney W. Grimes return (0);
1399b50d902SRodney W. Grimes }
1409b50d902SRodney W. Grimes errno = 0;
1419b50d902SRodney W. Grimes id = strtoul(p, &np, 10);
1428a50130bSAlexander Kabaev if (*np || (id == (uid_t)ULONG_MAX && errno == ERANGE)) {
1439b50d902SRodney W. Grimes warnx("illegal gid");
144f1d05925SDag-Erling Smørgrav return (-1);
1459b50d902SRodney W. Grimes }
1469b50d902SRodney W. Grimes pw->pw_gid = id;
1479b50d902SRodney W. Grimes return (0);
1489b50d902SRodney W. Grimes }
1499b50d902SRodney W. Grimes
1509b50d902SRodney W. Grimes /* ARGSUSED */
1519b50d902SRodney W. Grimes int
p_class(char * p,struct passwd * pw,ENTRY * ep __unused)1525ea73378SMark Murray p_class(char *p, struct passwd *pw, ENTRY *ep __unused)
1539b50d902SRodney W. Grimes {
154afa6d859SDavid Malone if (!(pw->pw_class = strdup(p))) {
1559b50d902SRodney W. Grimes warnx("can't save entry");
156f1d05925SDag-Erling Smørgrav return (-1);
1579b50d902SRodney W. Grimes }
1589b50d902SRodney W. Grimes
1599b50d902SRodney W. Grimes return (0);
1609b50d902SRodney W. Grimes }
1619b50d902SRodney W. Grimes
1629b50d902SRodney W. Grimes /* ARGSUSED */
1639b50d902SRodney W. Grimes int
p_change(char * p,struct passwd * pw,ENTRY * ep __unused)1645ea73378SMark Murray p_change(char *p, struct passwd *pw, ENTRY *ep __unused)
1659b50d902SRodney W. Grimes {
1669b50d902SRodney W. Grimes if (!atot(p, &pw->pw_change))
1679b50d902SRodney W. Grimes return (0);
1689b50d902SRodney W. Grimes warnx("illegal date for change field");
169f1d05925SDag-Erling Smørgrav return (-1);
1709b50d902SRodney W. Grimes }
1719b50d902SRodney W. Grimes
1729b50d902SRodney W. Grimes /* ARGSUSED */
1739b50d902SRodney W. Grimes int
p_expire(char * p,struct passwd * pw,ENTRY * ep __unused)1745ea73378SMark Murray p_expire(char *p, struct passwd *pw, ENTRY *ep __unused)
1759b50d902SRodney W. Grimes {
1769b50d902SRodney W. Grimes if (!atot(p, &pw->pw_expire))
1779b50d902SRodney W. Grimes return (0);
1789b50d902SRodney W. Grimes warnx("illegal date for expire field");
179f1d05925SDag-Erling Smørgrav return (-1);
1809b50d902SRodney W. Grimes }
1819b50d902SRodney W. Grimes
1829b50d902SRodney W. Grimes /* ARGSUSED */
1839b50d902SRodney W. Grimes int
p_gecos(char * p,struct passwd * pw __unused,ENTRY * ep)184f1d05925SDag-Erling Smørgrav p_gecos(char *p, struct passwd *pw __unused, ENTRY *ep)
1859b50d902SRodney W. Grimes {
186afa6d859SDavid Malone if (!(ep->save = strdup(p))) {
1879b50d902SRodney W. Grimes warnx("can't save entry");
188f1d05925SDag-Erling Smørgrav return (-1);
1899b50d902SRodney W. Grimes }
1909b50d902SRodney W. Grimes return (0);
1919b50d902SRodney W. Grimes }
1929b50d902SRodney W. Grimes
1939b50d902SRodney W. Grimes /* ARGSUSED */
1949b50d902SRodney W. Grimes int
p_hdir(char * p,struct passwd * pw,ENTRY * ep __unused)1955ea73378SMark Murray p_hdir(char *p, struct passwd *pw, ENTRY *ep __unused)
1969b50d902SRodney W. Grimes {
1979b50d902SRodney W. Grimes if (!*p) {
1989b50d902SRodney W. Grimes warnx("empty home directory field");
199f1d05925SDag-Erling Smørgrav return (-1);
2009b50d902SRodney W. Grimes }
2019b50d902SRodney W. Grimes if (!(pw->pw_dir = strdup(p))) {
2029b50d902SRodney W. Grimes warnx("can't save entry");
203f1d05925SDag-Erling Smørgrav return (-1);
2049b50d902SRodney W. Grimes }
2059b50d902SRodney W. Grimes return (0);
2069b50d902SRodney W. Grimes }
2079b50d902SRodney W. Grimes
2089b50d902SRodney W. Grimes /* ARGSUSED */
2099b50d902SRodney W. Grimes int
p_shell(char * p,struct passwd * pw,ENTRY * ep __unused)2105ea73378SMark Murray p_shell(char *p, struct passwd *pw, ENTRY *ep __unused)
2119b50d902SRodney W. Grimes {
212d33c4953SMike Pritchard struct stat sbuf;
2139b50d902SRodney W. Grimes
2149b50d902SRodney W. Grimes if (!*p) {
2155ea73378SMark Murray pw->pw_shell = strdup(_PATH_BSHELL);
2169b50d902SRodney W. Grimes return (0);
2179b50d902SRodney W. Grimes }
2189b50d902SRodney W. Grimes /* only admin can change from or to "restricted" shells */
219f1d05925SDag-Erling Smørgrav if (!master_mode && pw->pw_shell && !ok_shell(pw->pw_shell)) {
2209b50d902SRodney W. Grimes warnx("%s: current shell non-standard", pw->pw_shell);
221f1d05925SDag-Erling Smørgrav return (-1);
2229b50d902SRodney W. Grimes }
223612956f6SPhilippe Charnier if (!ok_shell(p)) {
224f1d05925SDag-Erling Smørgrav if (!master_mode) {
2259b50d902SRodney W. Grimes warnx("%s: non-standard shell", p);
226f1d05925SDag-Erling Smørgrav return (-1);
2279b50d902SRodney W. Grimes }
228612956f6SPhilippe Charnier pw->pw_shell = strdup(p);
2299b50d902SRodney W. Grimes }
2309b50d902SRodney W. Grimes else
231612956f6SPhilippe Charnier pw->pw_shell = dup_shell(p);
232612956f6SPhilippe Charnier if (!pw->pw_shell) {
2339b50d902SRodney W. Grimes warnx("can't save entry");
234f1d05925SDag-Erling Smørgrav return (-1);
2359b50d902SRodney W. Grimes }
236d33c4953SMike Pritchard if (stat(pw->pw_shell, &sbuf) < 0) {
237d33c4953SMike Pritchard if (errno == ENOENT)
238d33c4953SMike Pritchard warnx("WARNING: shell '%s' does not exist",
239d33c4953SMike Pritchard pw->pw_shell);
240d33c4953SMike Pritchard else
241d33c4953SMike Pritchard warn("WARNING: can't stat shell '%s'", pw->pw_shell);
242d33c4953SMike Pritchard return (0);
243d33c4953SMike Pritchard }
244d33c4953SMike Pritchard if (!S_ISREG(sbuf.st_mode)) {
245d33c4953SMike Pritchard warnx("WARNING: shell '%s' is not a regular file",
246d33c4953SMike Pritchard pw->pw_shell);
247d33c4953SMike Pritchard return (0);
248d33c4953SMike Pritchard }
249d33c4953SMike Pritchard if ((sbuf.st_mode & (S_IXOTH | S_IXGRP | S_IXUSR)) == 0) {
250d33c4953SMike Pritchard warnx("WARNING: shell '%s' is not executable", pw->pw_shell);
251d33c4953SMike Pritchard return (0);
252d33c4953SMike Pritchard }
2539b50d902SRodney W. Grimes return (0);
2549b50d902SRodney W. Grimes }
255