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