xref: /freebsd/lib/libc/gen/pw_scan.c (revision dc36d6f9bb1753f3808552f3afd30eda9a7b206a)
1dea673e9SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
4dea673e9SRodney W. Grimes  * Copyright (c) 1990, 1993, 1994
5dea673e9SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
6dea673e9SRodney W. Grimes  *
7dea673e9SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
8dea673e9SRodney W. Grimes  * modification, are permitted provided that the following conditions
9dea673e9SRodney W. Grimes  * are met:
10dea673e9SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
11dea673e9SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
12dea673e9SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
13dea673e9SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
14dea673e9SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
16dea673e9SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
17dea673e9SRodney W. Grimes  *    without specific prior written permission.
18dea673e9SRodney W. Grimes  *
19dea673e9SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20dea673e9SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21dea673e9SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22dea673e9SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23dea673e9SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24dea673e9SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25dea673e9SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26dea673e9SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27dea673e9SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28dea673e9SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29dea673e9SRodney W. Grimes  * SUCH DAMAGE.
30dea673e9SRodney W. Grimes  */
31dea673e9SRodney W. Grimes 
32dea673e9SRodney W. Grimes /*
33dea673e9SRodney W. Grimes  * This module is used to "verify" password entries by chpass(1) and
34dea673e9SRodney W. Grimes  * pwd_mkdb(8).
35dea673e9SRodney W. Grimes  */
36dea673e9SRodney W. Grimes 
37dea673e9SRodney W. Grimes #include <sys/param.h>
38dea673e9SRodney W. Grimes 
39dea673e9SRodney W. Grimes #include <err.h>
40cd7b8d78SPaul Richards #include <errno.h>
41dea673e9SRodney W. Grimes #include <pwd.h>
42dea673e9SRodney W. Grimes #include <string.h>
43dea673e9SRodney W. Grimes #include <stdlib.h>
44dea673e9SRodney W. Grimes #include <unistd.h>
45dea673e9SRodney W. Grimes 
46dea673e9SRodney W. Grimes #include "pw_scan.h"
47dea673e9SRodney W. Grimes 
4818138b08SSheldon Hearn /*
4918138b08SSheldon Hearn  * Some software assumes that IDs are short.  We should emit warnings
5018138b08SSheldon Hearn  * for id's which cannot be stored in a short, but we are more liberal
5118138b08SSheldon Hearn  * by default, warning for IDs greater than USHRT_MAX.
529a602accSSheldon Hearn  *
53235d6772SDima Dorfman  * If pw_big_ids_warning is -1 on entry to pw_scan(), it will be set based
54235d6772SDima Dorfman  * on the existence of PW_SCAN_BIG_IDS in the environment.
55764eca25SKen Smith  *
56764eca25SKen Smith  * It is believed all baseline system software that can not handle the
57764eca25SKen Smith  * normal ID sizes is now gone so pw_big_ids_warning is disabled for now.
58764eca25SKen Smith  * But the code has been left in place in case end-users want to re-enable
59764eca25SKen Smith  * it and/or for the next time the ID sizes get bigger but pieces of the
60764eca25SKen Smith  * system lag behind.
6118138b08SSheldon Hearn  */
62764eca25SKen Smith static int	pw_big_ids_warning = 0;
6318138b08SSheldon Hearn 
64*34e9190dSIan Lepore void
__pw_initpwd(struct passwd * pwd)65*34e9190dSIan Lepore __pw_initpwd(struct passwd *pwd)
66*34e9190dSIan Lepore {
67*34e9190dSIan Lepore 	static char nul[] = "";
68*34e9190dSIan Lepore 
69*34e9190dSIan Lepore 	memset(pwd, 0, sizeof(*pwd));
70*34e9190dSIan Lepore 	pwd->pw_uid = (uid_t)-1;  /* Considered least likely to lead to */
71*34e9190dSIan Lepore 	pwd->pw_gid = (gid_t)-1;  /* a security issue.                  */
72*34e9190dSIan Lepore 	pwd->pw_name = nul;
73*34e9190dSIan Lepore 	pwd->pw_passwd = nul;
74*34e9190dSIan Lepore 	pwd->pw_class = nul;
75*34e9190dSIan Lepore 	pwd->pw_gecos = nul;
76*34e9190dSIan Lepore 	pwd->pw_dir = nul;
77*34e9190dSIan Lepore 	pwd->pw_shell = nul;
78*34e9190dSIan Lepore }
79*34e9190dSIan Lepore 
80dea673e9SRodney W. Grimes int
__pw_scan(char * bp,struct passwd * pw,int flags)81248aee62SJacques Vidrine __pw_scan(char *bp, struct passwd *pw, int flags)
82dea673e9SRodney W. Grimes {
83cd7b8d78SPaul Richards 	uid_t id;
84dea673e9SRodney W. Grimes 	int root;
8505a7daf5SMaxim Konovalov 	char *ep, *p, *sh;
86764eca25SKen Smith 	unsigned long temp;
87dea673e9SRodney W. Grimes 
889a602accSSheldon Hearn 	if (pw_big_ids_warning == -1)
899a602accSSheldon Hearn 		pw_big_ids_warning = getenv("PW_SCAN_BIG_IDS") == NULL ? 1 : 0;
909a602accSSheldon Hearn 
9128ca3091SGarrett Wollman 	pw->pw_fields = 0;
92dea673e9SRodney W. Grimes 	if (!(pw->pw_name = strsep(&bp, ":")))		/* login */
93dea673e9SRodney W. Grimes 		goto fmt;
94dea673e9SRodney W. Grimes 	root = !strcmp(pw->pw_name, "root");
9528ca3091SGarrett Wollman 	if (pw->pw_name[0] && (pw->pw_name[0] != '+' || pw->pw_name[1] == '\0'))
9628ca3091SGarrett Wollman 		pw->pw_fields |= _PWF_NAME;
97dea673e9SRodney W. Grimes 
98dea673e9SRodney W. Grimes 	if (!(pw->pw_passwd = strsep(&bp, ":")))	/* passwd */
99dea673e9SRodney W. Grimes 		goto fmt;
1006478822fSDag-Erling Smørgrav 	if (pw->pw_passwd[0])
1016478822fSDag-Erling Smørgrav 		pw->pw_fields |= _PWF_PASSWD;
102dea673e9SRodney W. Grimes 
103dea673e9SRodney W. Grimes 	if (!(p = strsep(&bp, ":")))			/* uid */
104dea673e9SRodney W. Grimes 		goto fmt;
105aa510d67SEivind Eklund 	if (p[0])
106aa510d67SEivind Eklund 		pw->pw_fields |= _PWF_UID;
107aa510d67SEivind Eklund 	else {
108637bc596SEivind Eklund 		if (pw->pw_name[0] != '+' && pw->pw_name[0] != '-') {
109248aee62SJacques Vidrine 			if (flags & _PWSCAN_WARN)
110aa510d67SEivind Eklund 				warnx("no uid for user %s", pw->pw_name);
111aa510d67SEivind Eklund 			return (0);
112aa510d67SEivind Eklund 		}
113637bc596SEivind Eklund 	}
114764eca25SKen Smith 	errno = 0;
115764eca25SKen Smith 	temp = strtoul(p, &ep, 10);
116764eca25SKen Smith 	if ((temp == ULONG_MAX && errno == ERANGE) || temp > UID_MAX) {
117248aee62SJacques Vidrine 		if (flags & _PWSCAN_WARN)
118764eca25SKen Smith 			warnx("%s > max uid value (%u)", p, UID_MAX);
119cd7b8d78SPaul Richards 		return (0);
120cd7b8d78SPaul Richards 	}
121764eca25SKen Smith 	id = temp;
1229b7c7ff8SMaxim Konovalov 	if (*ep != '\0') {
12305a7daf5SMaxim Konovalov 		if (flags & _PWSCAN_WARN)
12405a7daf5SMaxim Konovalov 			warnx("%s uid is incorrect", p);
12505a7daf5SMaxim Konovalov 		return (0);
12605a7daf5SMaxim Konovalov 	}
127dea673e9SRodney W. Grimes 	if (root && id) {
128248aee62SJacques Vidrine 		if (flags & _PWSCAN_WARN)
129dea673e9SRodney W. Grimes 			warnx("root uid should be 0");
130dea673e9SRodney W. Grimes 		return (0);
131dea673e9SRodney W. Grimes 	}
132248aee62SJacques Vidrine 	if (flags & _PWSCAN_WARN && pw_big_ids_warning && id > USHRT_MAX) {
133cd7b8d78SPaul Richards 		warnx("%s > recommended max uid value (%u)", p, USHRT_MAX);
13433d37c13SSheldon Hearn 		/*return (0);*/ /* THIS SHOULD NOT BE FATAL! */
135dea673e9SRodney W. Grimes 	}
136dea673e9SRodney W. Grimes 	pw->pw_uid = id;
137dea673e9SRodney W. Grimes 
138dea673e9SRodney W. Grimes 	if (!(p = strsep(&bp, ":")))			/* gid */
139dea673e9SRodney W. Grimes 		goto fmt;
1406478822fSDag-Erling Smørgrav 	if (p[0])
1416478822fSDag-Erling Smørgrav 		pw->pw_fields |= _PWF_GID;
14265edeb23SMaxim Konovalov 	else {
14365edeb23SMaxim Konovalov 		if (pw->pw_name[0] != '+' && pw->pw_name[0] != '-') {
14465edeb23SMaxim Konovalov 			if (flags & _PWSCAN_WARN)
14565edeb23SMaxim Konovalov 				warnx("no gid for user %s", pw->pw_name);
14665edeb23SMaxim Konovalov 			return (0);
14765edeb23SMaxim Konovalov 		}
14865edeb23SMaxim Konovalov 	}
149764eca25SKen Smith 	errno = 0;
150764eca25SKen Smith 	temp = strtoul(p, &ep, 10);
151764eca25SKen Smith 	if ((temp == ULONG_MAX && errno == ERANGE) || temp > GID_MAX) {
152248aee62SJacques Vidrine 		if (flags & _PWSCAN_WARN)
153764eca25SKen Smith 			warnx("%s > max gid value (%u)", p, GID_MAX);
154cd7b8d78SPaul Richards 		return (0);
155cd7b8d78SPaul Richards 	}
156764eca25SKen Smith 	id = temp;
1579b7c7ff8SMaxim Konovalov 	if (*ep != '\0') {
15805a7daf5SMaxim Konovalov 		if (flags & _PWSCAN_WARN)
15905a7daf5SMaxim Konovalov 			warnx("%s gid is incorrect", p);
16005a7daf5SMaxim Konovalov 		return (0);
16105a7daf5SMaxim Konovalov 	}
162248aee62SJacques Vidrine 	if (flags & _PWSCAN_WARN && pw_big_ids_warning && id > USHRT_MAX) {
163cd7b8d78SPaul Richards 		warnx("%s > recommended max gid value (%u)", p, USHRT_MAX);
16433d37c13SSheldon Hearn 		/* return (0); This should not be fatal! */
165dea673e9SRodney W. Grimes 	}
166dea673e9SRodney W. Grimes 	pw->pw_gid = id;
167dea673e9SRodney W. Grimes 
168248aee62SJacques Vidrine 	if (flags & _PWSCAN_MASTER ) {
169a8adfe18SDag-Erling Smørgrav 		if (!(pw->pw_class = strsep(&bp, ":")))	/* class */
170a8adfe18SDag-Erling Smørgrav 			goto fmt;
1716478822fSDag-Erling Smørgrav 		if (pw->pw_class[0])
1726478822fSDag-Erling Smørgrav 			pw->pw_fields |= _PWF_CLASS;
17328ca3091SGarrett Wollman 
174dea673e9SRodney W. Grimes 		if (!(p = strsep(&bp, ":")))		/* change */
175dea673e9SRodney W. Grimes 			goto fmt;
1766478822fSDag-Erling Smørgrav 		if (p[0])
1776478822fSDag-Erling Smørgrav 			pw->pw_fields |= _PWF_CHANGE;
178dea673e9SRodney W. Grimes 		pw->pw_change = atol(p);
17928ca3091SGarrett Wollman 
180dea673e9SRodney W. Grimes 		if (!(p = strsep(&bp, ":")))		/* expire */
181dea673e9SRodney W. Grimes 			goto fmt;
1826478822fSDag-Erling Smørgrav 		if (p[0])
1836478822fSDag-Erling Smørgrav 			pw->pw_fields |= _PWF_EXPIRE;
184dea673e9SRodney W. Grimes 		pw->pw_expire = atol(p);
185c798532fSIan Lepore 	}
186cc6f6281SDavid Greenman 	if (!(pw->pw_gecos = strsep(&bp, ":")))		/* gecos */
187cc6f6281SDavid Greenman 		goto fmt;
1886478822fSDag-Erling Smørgrav 	if (pw->pw_gecos[0])
1896478822fSDag-Erling Smørgrav 		pw->pw_fields |= _PWF_GECOS;
19028ca3091SGarrett Wollman 
191cc6f6281SDavid Greenman 	if (!(pw->pw_dir = strsep(&bp, ":")))		/* directory */
192cc6f6281SDavid Greenman 		goto fmt;
1936478822fSDag-Erling Smørgrav 	if (pw->pw_dir[0])
1946478822fSDag-Erling Smørgrav 		pw->pw_fields |= _PWF_DIR;
19528ca3091SGarrett Wollman 
196dea673e9SRodney W. Grimes 	if (!(pw->pw_shell = strsep(&bp, ":")))		/* shell */
197dea673e9SRodney W. Grimes 		goto fmt;
198dea673e9SRodney W. Grimes 
199dea673e9SRodney W. Grimes 	p = pw->pw_shell;
200c4fe9d66SPhilippe Charnier 	if (root && *p) {				/* empty == /bin/sh */
201dea673e9SRodney W. Grimes 		for (setusershell();;) {
202dea673e9SRodney W. Grimes 			if (!(sh = getusershell())) {
203248aee62SJacques Vidrine 				if (flags & _PWSCAN_WARN)
204dea673e9SRodney W. Grimes 					warnx("warning, unknown root shell");
205dea673e9SRodney W. Grimes 				break;
206dea673e9SRodney W. Grimes 			}
207dea673e9SRodney W. Grimes 			if (!strcmp(p, sh))
208dea673e9SRodney W. Grimes 				break;
209dea673e9SRodney W. Grimes 		}
210c4fe9d66SPhilippe Charnier 		endusershell();
211c4fe9d66SPhilippe Charnier 	}
2126478822fSDag-Erling Smørgrav 	if (p[0])
2136478822fSDag-Erling Smørgrav 		pw->pw_fields |= _PWF_SHELL;
214dea673e9SRodney W. Grimes 
2158b76e1d7SPhilippe Charnier 	if ((p = strsep(&bp, ":"))) {			/* too many */
216248aee62SJacques Vidrine fmt:
217248aee62SJacques Vidrine 		if (flags & _PWSCAN_WARN)
218248aee62SJacques Vidrine 			warnx("corrupted entry");
219dea673e9SRodney W. Grimes 		return (0);
220dea673e9SRodney W. Grimes 	}
221dea673e9SRodney W. Grimes 	return (1);
222dea673e9SRodney W. Grimes }
223