]> git.saurik.com Git - apple/system_cmds.git/blame - pwd_mkdb.tproj/pw_scan.c
system_cmds-880.100.5.tar.gz
[apple/system_cmds.git] / pwd_mkdb.tproj / pw_scan.c
CommitLineData
c3a08f59
A
1/* $OpenBSD: passwd.c,v 1.42 2003/06/26 16:34:42 deraadt Exp $ */
2
1815bff5 3/*
c3a08f59 4 * Copyright (c) 1987, 1993, 1994, 1995
1815bff5
A
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
c3a08f59 15 * 3. Neither the name of the University nor the names of its contributors
1815bff5
A
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
c3a08f59
A
32#if defined(LIBC_SCCS) && !defined(lint)
33static const char rcsid[] = "$OpenBSD: passwd.c,v 1.42 2003/06/26 16:34:42 deraadt Exp $";
34#endif /* LIBC_SCCS and not lint */
1815bff5 35
c3a08f59
A
36#include <sys/types.h>
37#include <sys/stat.h>
38#include <sys/time.h>
39#include <sys/resource.h>
40#include <sys/wait.h>
1815bff5 41
1815bff5 42#include <fcntl.h>
c3a08f59
A
43#include <unistd.h>
44#include <stdlib.h>
1815bff5
A
45#include <stdio.h>
46#include <string.h>
c3a08f59
A
47#include <ctype.h>
48#include <pwd.h>
49#include <err.h>
50#include <errno.h>
51#include <paths.h>
52#include <signal.h>
53#include <limits.h>
1815bff5 54
c3a08f59 55#include "util.h"
cf37c299 56#include "pw_scan.h"
1815bff5
A
57
58int
c3a08f59 59pw_scan(char *bp, struct passwd *pw, int *flags)
1815bff5 60{
c3a08f59 61 u_long id;
1815bff5 62 int root;
c3a08f59
A
63 char *p, *sh, *p2;
64
65 if (flags != (int *)NULL)
66 *flags = 0;
1815bff5 67
83f6dbe8
A
68#ifdef __APPLE__
69 if (bp[0] == '#') {
70 pw->pw_name = NULL;
71 return(1);
72 }
73#endif
74
c3a08f59 75 if (!(p = strsep(&bp, ":")) || *p == '\0') /* login */
1815bff5 76 goto fmt;
c3a08f59 77 pw->pw_name = p;
1815bff5
A
78 root = !strcmp(pw->pw_name, "root");
79
80 if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */
81 goto fmt;
82
83 if (!(p = strsep(&bp, ":"))) /* uid */
84 goto fmt;
c3a08f59 85 id = strtoul(p, &p2, 10);
1815bff5
A
86 if (root && id) {
87 warnx("root uid should be 0");
88 return (0);
89 }
c3a08f59
A
90 if (*p2 != '\0') {
91 warnx("illegal uid field");
1815bff5
A
92 return (0);
93 }
c3a08f59
A
94#ifndef __APPLE__
95 /* Apple's UID_MAX is too small (sizeof signed) 3091256 */
96 if (id > UID_MAX) {
97 /* errno is set to ERANGE by strtoul(3) */
98 warnx("uid greater than %u", UID_MAX-1);
99 return (0);
100 }
101#endif
102 pw->pw_uid = (uid_t)id;
103 if ((*p == '\0') && (flags != (int *)NULL))
104 *flags |= _PASSWORD_NOUID;
1815bff5
A
105
106 if (!(p = strsep(&bp, ":"))) /* gid */
107 goto fmt;
c3a08f59
A
108 id = strtoul(p, &p2, 10);
109 if (*p2 != '\0') {
110 warnx("illegal gid field");
111 return (0);
20e66415 112 }
c3a08f59
A
113#ifndef __APPLE__
114 /* Apple's UID_MAX is too small (sizeof signed) 3091256 */
115 if (id > UID_MAX) {
116 /* errno is set to ERANGE by strtoul(3) */
117 warnx("gid greater than %u", UID_MAX-1);
1815bff5
A
118 return (0);
119 }
c3a08f59
A
120#endif
121 pw->pw_gid = (gid_t)id;
122 if ((*p == '\0') && (flags != (int *)NULL))
123 *flags |= _PASSWORD_NOGID;
1815bff5
A
124
125 pw->pw_class = strsep(&bp, ":"); /* class */
126 if (!(p = strsep(&bp, ":"))) /* change */
127 goto fmt;
128 pw->pw_change = atol(p);
c3a08f59
A
129 if ((*p == '\0') && (flags != (int *)NULL))
130 *flags |= _PASSWORD_NOCHG;
1815bff5
A
131 if (!(p = strsep(&bp, ":"))) /* expire */
132 goto fmt;
133 pw->pw_expire = atol(p);
c3a08f59
A
134 if ((*p == '\0') && (flags != (int *)NULL))
135 *flags |= _PASSWORD_NOEXP;
1815bff5
A
136 pw->pw_gecos = strsep(&bp, ":"); /* gecos */
137 pw->pw_dir = strsep(&bp, ":"); /* directory */
138 if (!(pw->pw_shell = strsep(&bp, ":"))) /* shell */
139 goto fmt;
140
141 p = pw->pw_shell;
c3a08f59 142 if (root && *p) { /* empty == /bin/sh */
1815bff5
A
143 for (setusershell();;) {
144 if (!(sh = getusershell())) {
145 warnx("warning, unknown root shell");
146 break;
147 }
148 if (!strcmp(p, sh))
c3a08f59 149 break;
1815bff5 150 }
c3a08f59
A
151 endusershell();
152 }
1815bff5 153
c3a08f59 154 if ((p = strsep(&bp, ":"))) { /* too many */
1815bff5
A
155fmt: warnx("corrupted entry");
156 return (0);
157 }
c3a08f59 158
1815bff5
A
159 return (1);
160}