1 /* $NetBSD: revnetgroup.c,v 1.13 2004/10/30 16:01:48 dsl Exp $ */
5 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Bill Paul.
18 * 4. Neither the name of the author nor the names of any co-contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * reverse netgroup map generator program
36 * Written by Bill Paul <wpaul@ctr.columbia.edu>
37 * Center for Telecommunications Research
38 * Columbia University, New York City
42 #include <sys/cdefs.h>
44 __RCSID("$NetBSD: revnetgroup.c,v 1.13 2004/10/30 16:01:48 dsl Exp $");
58 int main(int, char *[]);
63 /* Default location of netgroup file. */
64 const char *netgroup
= "/etc/netgroup";
66 /* Stored hash table version of 'forward' netgroup database. */
67 struct group_entry
*gtable
[TABLESIZE
];
70 * Stored hash table of 'reverse' netgroup member database
71 * which we will construct.
73 struct member_entry
*mtable
[TABLESIZE
];
79 fprintf (stderr
,"usage: %s -u|-h [-f netgroup file]\n", getprogname());
84 main(int argc
, char *argv
[])
86 struct group_entry
*gcur
;
87 struct member_entry
*mcur
;
89 char *line
, *p
, *host
, *user
, *domain
;
98 while ((ch
= getopt(argc
, argv
, "uhf:")) != -1) {
102 warnx("please use only one of -u or -h");
109 warnx("please use only one of -u or -h");
126 if (strcmp(netgroup
, "-")) {
127 if ((fp
= fopen(netgroup
, "r")) == NULL
) {
128 err(1, "%s", netgroup
);
134 /* Stuff all the netgroup names and members into a hash table. */
136 (line
= fparseln(fp
, &len
, NULL
, NULL
, FPARSELN_UNESCALL
));
142 for (key
= p
; *p
&& isspace((unsigned char)*p
) == 0; p
++)
144 while (*p
&& isspace((unsigned char)*p
))
146 store(gtable
, key
, p
);
152 * Find all members of each netgroup and keep track of which
153 * group they belong to.
155 for (i
= 0; i
< TABLESIZE
; i
++) {
158 rng_setnetgrent(gcur
->key
);
159 while (rng_getnetgrent(&host
, &user
, &domain
) != 0) {
161 if (!(host
&& !strcmp(host
,"-"))) {
165 domain
? domain
: "*");
168 if (!(user
&& !strcmp(user
,"-"))) {
172 domain
? domain
: "*");
180 /* Release resources used by the netgroup parser code. */
183 /* Spew out the results. */
184 for (i
= 0; i
< TABLESIZE
; i
++) {
187 struct grouplist
*tmp
;
188 printf ("%s.%s\t", mcur
->key
, mcur
->domain
);
191 printf ("%s", tmp
->groupname
);
201 /* Let the OS free all our resources. */