]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/chkgrp/chkgrp.c
Add support for a -q flag. While here make the custom argument parsing
[FreeBSD/FreeBSD.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 char empty[] = { 0 };
44
45 static void __dead2
46 usage(void)
47 {
48     fprintf(stderr, "usage: chkgrp [groupfile]\n");
49     exit(EX_USAGE);
50 }
51
52 int
53 main(int argc, char *argv[])
54 {
55     unsigned int i;
56     size_t len;
57     int quiet;
58     int ch;
59     int n = 0, k, e = 0;
60     char *line, *f[4], *p;
61     const char *cp, *gfn;
62     FILE *gf;
63
64     quiet = 0;
65     while ((ch = getopt(argc, argv, "q")) != -1) {
66             switch (ch) {
67                 case 'q':
68                         quiet = 1;
69                         break;
70                 case '?':
71                 default:
72                         printf("hello\n");
73                         usage();
74             }
75     }
76
77     if (optind == argc)
78             gfn = "/etc/group";
79     else if (optind == argc - 1)
80             gfn = argv[optind];
81     else
82             usage();
83
84     /* open group file */
85     if ((gf = fopen(gfn, "r")) == NULL)
86         err(EX_NOINPUT, "%s", gfn);
87
88     /* check line by line */
89     while (++n) {
90         if ((line = fgetln(gf, &len)) == NULL)
91             break;
92         if (len > 0 && line[len - 1] != '\n') {
93             warnx("%s: line %d: no newline character", gfn, n);
94             e = 1;
95         }
96         while (len && isspace(line[len-1]))
97             len--;
98
99         /* ignore blank lines and comments */
100         for (p = line; p < (line + len); p++)
101             if (!isspace(*p)) break;
102         if (!len || (*p == '#')) {
103 #if 0
104             /* entry is correct, so print it */
105             printf("%*.*s\n", len, len, line);
106 #endif
107             continue;
108         }
109         
110         /*
111          * A correct group entry has four colon-separated fields, the third
112          * of which must be entirely numeric and the fourth of which may
113          * be empty.
114          */
115         for (i = k = 0; k < 4; k++) {
116             for (f[k] = line+i; (i < len) && (line[i] != ':'); i++)
117                 /* nothing */ ;
118             if ((k < 3) && (line[i] != ':'))
119                 break;
120             line[i++] = 0;
121         }
122
123         if (k < 4) {
124             warnx("%s: line %d: missing field(s)", gfn, n);
125             for ( ; k < 4; k++)
126                 f[k] = empty;
127             e = 1;
128         }
129
130         for (cp = f[0] ; *cp ; cp++) {
131             if (!isalnum(*cp) && *cp != '.' && *cp != '_' && *cp != '-' &&
132                 (cp > f[0] || *cp != '+')) {
133                 warnx("%s: line %d: '%c' invalid character", gfn, n, *cp);
134                 e = 1;
135             }
136         }
137
138         for (cp = f[3] ; *cp ; cp++) {
139             if (!isalnum(*cp) && *cp != '.' && *cp != '_' && *cp != '-' &&
140                         *cp != ',') {
141                 warnx("%s: line %d: '%c' invalid character", gfn, n, *cp);
142                 e = 1;
143             }
144         }
145
146         /* check if fourth field ended with a colon */
147         if (i < len) {
148             warnx("%s: line %d: too many fields", gfn, n);
149             e = 1;
150         }
151         
152         /* check that none of the fields contain whitespace */
153         for (k = 0; k < 4; k++) {
154             if (strcspn(f[k], " \t") != strlen(f[k])) {
155                 warnx("%s: line %d: field %d contains whitespace",
156                       gfn, n, k+1);
157                 e = 1;
158             }
159         }
160
161         /* check that the GID is numeric */
162         if (strspn(f[2], "0123456789") != strlen(f[2])) {
163             warnx("%s: line %d: GID is not numeric", gfn, n);
164             e = 1;
165         }
166
167         /* check the range of the group id */
168         errno = 0;
169         unsigned long groupid = strtoul(f[2], NULL, 10);
170         if (errno != 0) {
171                 warnx("%s: line %d: strtoul failed", gfn, n);
172         }
173         else if (groupid > GID_MAX) {
174                 warnx("%s: line %d: group id is too large (> %ju)",
175                   gfn, n, (uintmax_t)GID_MAX);
176                 e = 1;
177         }
178         
179 #if 0
180         /* entry is correct, so print it */
181         printf("%s:%s:%s:%s\n", f[0], f[1], f[2], f[3]);
182 #endif  
183     }
184
185     /* check what broke the loop */
186     if (ferror(gf))
187         err(EX_IOERR, "%s: line %d", gfn, n);
188
189     /* done */
190     fclose(gf);
191     if (e == 0 && quiet == 0)
192         printf("%s is fine\n", gfn);
193     exit(e ? EX_DATAERR : EX_OK);
194 }