- Add further functionality to check for invalid characters
[dragonfly.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  * $FreeBSD: src/usr.sbin/chkgrp/chkgrp.c,v 1.3.2.2 2001/07/12 22:57:35 mjacob Exp $
29  * $DragonFly: src/usr.sbin/chkgrp/chkgrp.c,v 1.3 2005/04/24 14:36:55 liamfoy Exp $
30  */
31 #include <sys/types.h>
32
33 #include <ctype.h>
34 #include <err.h>
35 #include <stdio.h>
36 #include <string.h>
37 #include <sysexits.h>
38
39 #define DEFAULTGFILE "/etc/group"
40
41 static void     usage(void);
42
43 static void
44 usage(void)
45 {
46         fprintf(stderr, "usage: chkgrp [groupfile]\n");
47         exit(EX_USAGE);
48 }
49
50 int
51 main(int argc, char *argv[])
52 {
53         size_t len;
54         int n = 0, i, k, e = 0;
55         char *line, *f[4], *p;
56         const char *cp, *gfn;
57         FILE *gf;
58
59         /* check arguments */
60         switch (argc) {
61         case 1:
62                 gfn = DEFAULTGFILE;
63                 break;
64         case 2:
65                 gfn = argv[1];
66                 break;
67         default:
68                 gfn = NULL;     /* silence compiler */
69                 usage();
70         }
71
72         /* open group file */
73         if ((gf = fopen(gfn, "r")) == NULL)
74                 err(EX_IOERR, "%s", gfn);
75
76         /* check line by line */
77         while (++n) {
78                 if ((line = fgetln(gf, &len)) == NULL)
79                         break;
80                 if (len > 0 && line[len - 1] != '\n') {
81                         warnx("%s: line %d: no newline character", gfn, n);
82                         e++;
83                 }
84                 while (len && isspace(line[len - 1]))
85                         len--;
86
87                 /* ignore blank lines and comments */
88                 for (p = line; p < (line + len); p++)
89                         if (!isspace(*p))
90                                 break;
91                 if (!len || (*p == '#')) {
92 #if 0
93                         /* entry is correct, so print it */
94                         printf("%*.*s\n", len, len, line);
95 #endif
96                         continue;
97                 }
98                 /*
99                  * A correct group entry has four colon-separated fields, the
100                  * third of which must be entirely numeric and the fourth of
101                  * which may be empty. We also check for any incorrect characters.
102                  */
103                 for (i = k = 0; k < 4; k++) {
104                         for (f[k] = line + i; (i < (int)len) && (line[i] != ':'); i++)
105                                  /* nothing */ ;
106                         if ((k < 3) && (line[i] != ':'))
107                                 break;
108                         line[i++] = 0;
109                 }
110
111                 for (cp = f[0] ; *cp ; cp++) {
112                         if (!isalnum(*cp) && *cp != '.' && *cp != '_' && *cp != '-') {
113                                 warnx("%s: line %d: '%c' invalid character", gfn, n, *cp);
114                                 e++;
115                         }
116                 }
117
118                 for (cp = f[3] ; *cp ; cp++) {
119                         if (!isalnum(*cp) && *cp != ',' && *cp != '.' && *cp != '_' && *cp != '-') {
120                                 warnx("%s: line %d: '%c' invalid character", gfn, n, *cp);
121                                 e++;
122                         }
123                 }
124
125                 if (k < 4) {
126                         warnx("%s: line %d: missing field(s)", gfn, n);
127                         e++;
128                 }
129
130                 /* check if fourth field ended with a colon */
131                 if (i < (int)len) {
132                         warnx("%s: line %d: too many fields", gfn, n);
133                         e++;
134                 }
135                 /* check that none of the fields contain whitespace */
136                 for (k = 0; k < 4; k++) {
137                         if (strcspn(f[k], " \t") != strlen(f[k])) {
138                                 warnx("%s: line %d: field %d contains whitespace",
139                                       gfn, n, k + 1);
140                                 e++;
141                         }
142                 }
143
144                 /* check that the GID is numeric */
145                 if (strspn(f[2], "0123456789") != strlen(f[2])) {
146                         warnx("%s: line %d: GID is not numeric", gfn, n);
147                         e++;
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 }