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 *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 while (len && isspace(line[len-1])) 78 len--; 79 80 /* ignore blank lines and comments */ 81 for (p = line; p < (line + len); p++) 82 if (!isspace(*p)) break; 83 if (!len || (*p == '#')) { 84 #if 0 85 /* entry is correct, so print it */ 86 printf("%*.*s\n", len, len, line); 87 #endif 88 continue; 89 } 90 91 /* 92 * A correct group entry has four colon-separated fields, the third 93 * of which must be entirely numeric and the fourth of which may 94 * be empty. 95 */ 96 for (i = k = 0; k < 4; k++) { 97 for (f[k] = line+i; (i < len) && (line[i] != ':'); i++) 98 /* nothing */ ; 99 if ((k < 3) && (line[i] != ':')) 100 break; 101 line[i++] = 0; 102 } 103 if (k < 4) { 104 warnx("%s: line %d: missing field(s)", gfn, n); 105 e++; 106 continue; 107 } 108 109 /* check if fourth field ended with a colon */ 110 if (i < len) { 111 warnx("%s: line %d: too many fields", gfn, n); 112 e++; 113 continue; 114 } 115 116 /* check that none of the fields contain whitespace */ 117 for (k = 0; k < 4; k++) 118 if (strcspn(f[k], " \t") != strlen(f[k])) 119 warnx("%s: line %d: field %d contains whitespace", 120 gfn, n, k+1); 121 122 /* check that the GID is numeric */ 123 if (strspn(f[2], "0123456789") != strlen(f[2])) { 124 warnx("%s: line %d: GID is not numeric", gfn, n); 125 e++; 126 continue; 127 } 128 129 #if 0 130 /* entry is correct, so print it */ 131 printf("%s:%s:%s:%s\n", f[0], f[1], f[2], f[3]); 132 #endif 133 } 134 135 /* check what broke the loop */ 136 if (ferror(gf)) 137 err(EX_IOERR, "%s: line %d", gfn, n); 138 139 /* done */ 140 fclose(gf); 141 exit(e ? EX_DATAERR : EX_OK); 142 } 143