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