]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - usr.sbin/chkgrp/chkgrp.c
MFC r363988:
[FreeBSD/stable/9.git] / usr.sbin / chkgrp / chkgrp.c
1 /*-
2  * Copyright (c) 1998 Dag-Erling Coïdan Smørgrav
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer
10  *    in this position and unchanged.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 #include <err.h>
33 #include <errno.h>
34 #include <ctype.h>
35 #include <limits.h>
36 #include <stdint.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <unistd.h>
41 #include <sysexits.h>
42
43 static void __dead2
44 usage(void)
45 {
46
47         fprintf(stderr, "usage: chkgrp [-q] [groupfile]\n");
48         exit(EX_USAGE);
49 }
50
51 int
52 main(int argc, char *argv[])
53 {
54         FILE *gf;
55         unsigned long gid;
56         unsigned int i;
57         size_t len;
58         int opt, quiet;
59         int n = 0, k, e = 0;
60         const char *cp, *f[4], *gfn, *p;
61         char *line;
62
63         quiet = 0;
64         while ((opt = getopt(argc, argv, "q")) != -1) {
65                 switch (opt) {
66                 case 'q':
67                         quiet = 1;
68                         break;
69                 default:
70                         printf("hello\n");
71                         usage();
72                 }
73         }
74
75         argc -= optind;
76         argv += optind;
77
78         if (argc == 0)
79                 gfn = "/etc/group";
80         else if (argc == 1)
81                 gfn = argv[0];
82         else
83                 usage();
84
85         /* open group file */
86         if ((gf = fopen(gfn, "r")) == NULL)
87                 err(EX_NOINPUT, "%s", gfn);
88
89         /* check line by line */
90         while (++n) {
91                 if ((line = fgetln(gf, &len)) == NULL)
92                         break;
93                 if (len > 0 && line[len - 1] != '\n') {
94                         warnx("%s: line %d: no newline character", gfn, n);
95                         e = 1;
96                 }
97                 while (len && isspace(line[len-1]))
98                         len--;
99
100                 /* ignore blank lines and comments */
101                 for (p = line; p < line + len; p++)
102                         if (!isspace(*p)) break;
103                 if (!len || *p == '#')
104                         continue;
105
106                 /*
107                  * Hack: special case for + line
108                  */
109                 if (strncmp(line, "+:::", len) == 0)
110                         continue;
111
112                 /*
113                  * A correct group entry has four colon-separated fields,
114                  * the third of which must be entirely numeric and the
115                  * fourth of which may be empty.
116                  */
117                 for (i = k = 0; k < 4; k++) {
118                         for (f[k] = line + i; i < len && line[i] != ':'; i++)
119                                 /* nothing */ ;
120                         if (k < 3 && line[i] != ':')
121                                 break;
122                         line[i++] = 0;
123                 }
124
125                 if (k < 4) {
126                         warnx("%s: line %d: missing field(s)", gfn, n);
127                         while (k < 4)
128                                 f[k++] = "";
129                         e = 1;
130                 }
131
132                 for (cp = f[0] ; *cp ; cp++) {
133                         if (!isalnum(*cp) && *cp != '.' && *cp != '_' &&
134                             *cp != '-' && (cp > f[0] || *cp != '+')) {
135                                 warnx("%s: line %d: '%c' invalid character",
136                                     gfn, n, *cp);
137                                 e = 1;
138                         }
139                 }
140
141                 for (cp = f[3] ; *cp ; cp++) {
142                         if (!isalnum(*cp) && *cp != '.' && *cp != '_' &&
143                             *cp != '-' && *cp != ',') {
144                                 warnx("%s: line %d: '%c' invalid character",
145                                     gfn, n, *cp);
146                                 e = 1;
147                         }
148                 }
149
150                 /* check if fourth field ended with a colon */
151                 if (i < len) {
152                         warnx("%s: line %d: too many fields", gfn, n);
153                         e = 1;
154                 }
155         
156                 /* check that none of the fields contain whitespace */
157                 for (k = 0; k < 4; k++) {
158                         if (strcspn(f[k], " \t") != strlen(f[k])) {
159                                 warnx("%s: line %d: field %d contains whitespace",
160                                     gfn, n, k+1);
161                                 e = 1;
162                         }
163                 }
164
165                 /* check that the GID is numeric */
166                 if (strspn(f[2], "0123456789") != strlen(f[2])) {
167                         warnx("%s: line %d: group id is not numeric", gfn, n);
168                         e = 1;
169                 }
170
171                 /* check the range of the group id */
172                 errno = 0;
173                 gid = strtoul(f[2], NULL, 10);
174                 if (errno != 0) {
175                         warnx("%s: line %d: strtoul failed", gfn, n);
176                 } else if (gid > GID_MAX) {
177                         warnx("%s: line %d: group id is too large (%ju > %ju)",
178                             gfn, n, (uintmax_t)gid, (uintmax_t)GID_MAX);
179                         e = 1;
180                 }
181         }
182
183         /* check what broke the loop */
184         if (ferror(gf))
185                 err(EX_IOERR, "%s: line %d", gfn, n);
186
187         /* done */
188         fclose(gf);
189         if (e == 0 && quiet == 0)
190                 printf("%s is fine\n", gfn);
191         exit(e ? EX_DATAERR : EX_OK);
192 }