getnetgrent.c revision 1.9.2.2 1 1.9.2.2 jtc /* $NetBSD: getnetgrent.c,v 1.9.2.2 1996/09/19 20:02:58 jtc Exp $ */
2 1.8 cgd
3 1.1 mycroft /*
4 1.4 christos * Copyright (c) 1994 Christos Zoulas
5 1.4 christos * All rights reserved.
6 1.1 mycroft *
7 1.1 mycroft * Redistribution and use in source and binary forms, with or without
8 1.1 mycroft * modification, are permitted provided that the following conditions
9 1.1 mycroft * are met:
10 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
11 1.1 mycroft * notice, this list of conditions and the following disclaimer.
12 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
14 1.1 mycroft * documentation and/or other materials provided with the distribution.
15 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
16 1.1 mycroft * must display the following acknowledgement:
17 1.4 christos * This product includes software developed by Christos Zoulas.
18 1.4 christos * 4. The name of the author may not be used to endorse or promote products
19 1.4 christos * derived from this software without specific prior written permission.
20 1.1 mycroft *
21 1.4 christos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
22 1.4 christos * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 1.4 christos * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.4 christos * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
25 1.4 christos * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 mycroft * SUCH DAMAGE.
32 1.1 mycroft */
33 1.1 mycroft
34 1.1 mycroft #if defined(LIBC_SCCS) && !defined(lint)
35 1.9.2.2 jtc static char *rcsid = "$NetBSD: getnetgrent.c,v 1.9.2.2 1996/09/19 20:02:58 jtc Exp $";
36 1.1 mycroft #endif /* LIBC_SCCS and not lint */
37 1.1 mycroft
38 1.9.2.1 jtc #include "namespace.h"
39 1.9 christos #include <sys/types.h>
40 1.1 mycroft #include <stdio.h>
41 1.9 christos #define _NETGROUP_PRIVATE
42 1.4 christos #include <netgroup.h>
43 1.4 christos #include <string.h>
44 1.4 christos #include <fcntl.h>
45 1.4 christos #include <err.h>
46 1.4 christos #include <ctype.h>
47 1.3 cgd #include <stdlib.h>
48 1.4 christos #include <db.h>
49 1.9.2.2 jtc
50 1.9.2.2 jtc #ifdef __weak_alias
51 1.9.2.2 jtc __weak_alias(endnetgrent,_endnetgrent);
52 1.9.2.2 jtc __weak_alias(getnetgrent,_getnetgrent);
53 1.9.2.2 jtc __weak_alias(innetgr,_innetgr);
54 1.9.2.2 jtc __weak_alias(setnetgrent,_setnetgrent);
55 1.9.2.2 jtc #endif
56 1.4 christos
57 1.4 christos #define _NG_STAR(s) (((s) == NULL || *(s) == '\0') ? _ngstar : s)
58 1.9 christos #define _NG_EMPTY(s) ((s) == NULL ? "" : s)
59 1.4 christos #define _NG_ISSPACE(p) (isspace((unsigned char) (p)) || (p) == '\n')
60 1.1 mycroft
61 1.4 christos static const char _ngstar[] = "*";
62 1.4 christos static const char _ngoomem[] = "netgroup: %m";
63 1.6 christos static struct netgroup *_nghead = (struct netgroup *)NULL;
64 1.6 christos static struct netgroup *_nglist = (struct netgroup *)NULL;
65 1.4 christos static DB *_ng_db;
66 1.1 mycroft
67 1.1 mycroft /*
68 1.4 christos * Simple string list
69 1.4 christos */
70 1.4 christos struct stringlist {
71 1.4 christos char **sl_str;
72 1.4 christos size_t sl_max;
73 1.4 christos size_t sl_cur;
74 1.1 mycroft };
75 1.1 mycroft
76 1.6 christos static int getstring __P((char **, int, char **));
77 1.4 christos static struct netgroup *getnetgroup __P((char **));
78 1.4 christos static int lookup __P((const char *, char *, char **, int));
79 1.4 christos static void addgroup __P((char *, struct stringlist *, char *));
80 1.4 christos static int in_check __P((const char *, const char *,
81 1.4 christos const char *, struct netgroup *));
82 1.4 christos static int in_find __P((char *, struct stringlist *,
83 1.4 christos char *, const char *,
84 1.4 christos const char *, const char *));
85 1.4 christos static char *in_lookup1 __P((const char *, const char *,
86 1.4 christos const char *, int));
87 1.4 christos static int in_lookup __P((const char *, const char *,
88 1.4 christos const char *, const char *, int));
89 1.4 christos
90 1.4 christos /*
91 1.4 christos * _ng_sl_init(): Initialize a string list
92 1.4 christos */
93 1.4 christos struct stringlist *
94 1.4 christos _ng_sl_init()
95 1.4 christos {
96 1.4 christos struct stringlist *sl = malloc(sizeof(struct stringlist));
97 1.6 christos if (sl == NULL)
98 1.7 jtc _err(1, _ngoomem);
99 1.4 christos
100 1.4 christos sl->sl_cur = 0;
101 1.4 christos sl->sl_max = 20;
102 1.4 christos sl->sl_str = malloc(sl->sl_max * sizeof(char *));
103 1.4 christos if (sl->sl_str == NULL)
104 1.7 jtc _err(1, _ngoomem);
105 1.4 christos return sl;
106 1.4 christos }
107 1.4 christos
108 1.4 christos
109 1.4 christos /*
110 1.4 christos * _ng_sl_add(): Add an item to the string list
111 1.4 christos */
112 1.4 christos void
113 1.4 christos _ng_sl_add(sl, name)
114 1.4 christos struct stringlist *sl;
115 1.4 christos char *name;
116 1.4 christos {
117 1.4 christos if (sl->sl_cur == sl->sl_max - 1) {
118 1.4 christos sl->sl_max += 20;
119 1.4 christos sl->sl_str = realloc(sl->sl_str, sl->sl_max * sizeof(char *));
120 1.4 christos if (sl->sl_str == NULL)
121 1.7 jtc _err(1, _ngoomem);
122 1.4 christos }
123 1.4 christos sl->sl_str[sl->sl_cur++] = name;
124 1.4 christos }
125 1.4 christos
126 1.1 mycroft
127 1.1 mycroft /*
128 1.4 christos * _ng_sl_free(): Free a stringlist
129 1.1 mycroft */
130 1.1 mycroft void
131 1.4 christos _ng_sl_free(sl, all)
132 1.4 christos struct stringlist *sl;
133 1.4 christos int all;
134 1.1 mycroft {
135 1.4 christos size_t i;
136 1.4 christos
137 1.4 christos if (all)
138 1.4 christos for (i = 0; i < sl->sl_cur; i++)
139 1.4 christos free(sl->sl_str[i]);
140 1.4 christos free(sl->sl_str);
141 1.4 christos free(sl);
142 1.4 christos }
143 1.4 christos
144 1.4 christos
145 1.4 christos /*
146 1.4 christos * sl_find(): Find a name in the string list
147 1.4 christos */
148 1.4 christos char *
149 1.4 christos _ng_sl_find(sl, name)
150 1.4 christos struct stringlist *sl;
151 1.4 christos char *name;
152 1.4 christos {
153 1.4 christos size_t i;
154 1.4 christos
155 1.4 christos for (i = 0; i < sl->sl_cur; i++)
156 1.4 christos if (strcmp(sl->sl_str[i], name) == 0)
157 1.4 christos return sl->sl_str[i];
158 1.4 christos
159 1.4 christos return NULL;
160 1.4 christos }
161 1.4 christos
162 1.4 christos
163 1.4 christos /*
164 1.4 christos * getstring(): Get a string delimited by the character, skipping leading and
165 1.4 christos * trailing blanks and advancing the pointer
166 1.4 christos */
167 1.6 christos static int
168 1.6 christos getstring(pp, del, str)
169 1.4 christos char **pp;
170 1.4 christos int del;
171 1.6 christos char **str;
172 1.4 christos {
173 1.4 christos char *sp, *ep, *dp;
174 1.4 christos
175 1.4 christos /* skip leading blanks */
176 1.4 christos for (sp = *pp; *sp && _NG_ISSPACE(*sp); sp++)
177 1.4 christos continue;
178 1.4 christos
179 1.4 christos /* accumulate till delimiter or space */
180 1.4 christos for (ep = sp; *ep && *ep != del && !_NG_ISSPACE(*ep); ep++)
181 1.4 christos continue;
182 1.4 christos
183 1.4 christos /* hunt for the delimiter */
184 1.4 christos for (dp = ep; *dp && *dp != del && _NG_ISSPACE(*dp); dp++)
185 1.4 christos continue;
186 1.4 christos
187 1.6 christos if (*dp != del) {
188 1.6 christos *str = NULL;
189 1.6 christos return 0;
190 1.6 christos }
191 1.4 christos
192 1.4 christos *pp = ++dp;
193 1.4 christos
194 1.4 christos del = (ep - sp) + 1;
195 1.6 christos if (del > 1) {
196 1.6 christos dp = malloc(del);
197 1.6 christos if (dp == NULL)
198 1.7 jtc _err(1, _ngoomem);
199 1.6 christos memcpy(dp, sp, del);
200 1.6 christos dp[del - 1] = '\0';
201 1.6 christos } else
202 1.6 christos dp = NULL;
203 1.1 mycroft
204 1.6 christos *str = dp;
205 1.6 christos return 1;
206 1.4 christos }
207 1.4 christos
208 1.4 christos
209 1.4 christos /*
210 1.4 christos * getnetgroup(): Parse a netgroup, and advance the pointer
211 1.4 christos */
212 1.4 christos static struct netgroup *
213 1.4 christos getnetgroup(pp)
214 1.4 christos char **pp;
215 1.4 christos {
216 1.4 christos struct netgroup *ng = malloc(sizeof(struct netgroup));
217 1.4 christos
218 1.4 christos if (ng == NULL)
219 1.7 jtc _err(1, _ngoomem);
220 1.4 christos
221 1.4 christos (*pp)++; /* skip '(' */
222 1.6 christos if (!getstring(pp, ',', &ng->ng_host))
223 1.4 christos goto badhost;
224 1.4 christos
225 1.6 christos if (!getstring(pp, ',', &ng->ng_user))
226 1.4 christos goto baduser;
227 1.4 christos
228 1.6 christos if (!getstring(pp, ')', &ng->ng_domain))
229 1.4 christos goto baddomain;
230 1.4 christos
231 1.4 christos #ifdef DEBUG_NG
232 1.9 christos {
233 1.9 christos char buf[1024];
234 1.9 christos (void) fprintf(stderr, "netgroup %s\n",
235 1.9 christos _ng_print(buf, sizeof(buf), ng));
236 1.9 christos }
237 1.4 christos #endif
238 1.4 christos return ng;
239 1.4 christos
240 1.4 christos baddomain:
241 1.6 christos if (ng->ng_user)
242 1.6 christos free(ng->ng_user);
243 1.4 christos baduser:
244 1.6 christos if (ng->ng_host)
245 1.6 christos free(ng->ng_host);
246 1.4 christos badhost:
247 1.4 christos free(ng);
248 1.4 christos return NULL;
249 1.4 christos }
250 1.4 christos
251 1.4 christos
252 1.4 christos /*
253 1.4 christos * lookup(): Find the given key in the database or yp, and return its value
254 1.4 christos * in *line; returns 1 if key was found, 0 otherwise
255 1.4 christos */
256 1.4 christos static int
257 1.4 christos lookup(ypdom, name, line, bywhat)
258 1.4 christos const char *ypdom;
259 1.4 christos char *name;
260 1.4 christos char **line;
261 1.4 christos int bywhat;
262 1.4 christos {
263 1.4 christos #ifdef YP
264 1.4 christos int i;
265 1.4 christos char *map = NULL;
266 1.4 christos #endif
267 1.4 christos
268 1.4 christos if (_ng_db) {
269 1.4 christos DBT key, data;
270 1.4 christos size_t len = strlen(name) + 2;
271 1.4 christos char *ks = malloc(len);
272 1.4 christos
273 1.4 christos ks[0] = bywhat;
274 1.4 christos memcpy(&ks[1], name, len - 1);
275 1.4 christos
276 1.4 christos key.data = (u_char *) ks;
277 1.4 christos key.size = len;
278 1.4 christos
279 1.4 christos switch ((_ng_db->get) (_ng_db, &key, &data, 0)) {
280 1.4 christos case 0:
281 1.4 christos free(ks);
282 1.4 christos *line = strdup(data.data);
283 1.4 christos if (*line == NULL)
284 1.7 jtc _err(1, _ngoomem);
285 1.4 christos return 1;
286 1.4 christos
287 1.4 christos case 1:
288 1.4 christos break;
289 1.4 christos
290 1.4 christos case -1:
291 1.7 jtc _warn("netgroup: db get");
292 1.4 christos break;
293 1.1 mycroft }
294 1.4 christos free(ks);
295 1.4 christos }
296 1.4 christos #ifdef YP
297 1.6 christos if (ypdom) {
298 1.6 christos switch (bywhat) {
299 1.6 christos case _NG_KEYBYNAME:
300 1.6 christos map = "netgroup";
301 1.6 christos break;
302 1.4 christos
303 1.6 christos case _NG_KEYBYUSER:
304 1.6 christos map = "netgroup.byuser";
305 1.6 christos break;
306 1.4 christos
307 1.6 christos case _NG_KEYBYHOST:
308 1.6 christos map = "netgroup.byhost";
309 1.6 christos break;
310 1.4 christos
311 1.6 christos default:
312 1.6 christos abort();
313 1.6 christos break;
314 1.6 christos }
315 1.4 christos
316 1.4 christos
317 1.6 christos if (yp_match(ypdom, map, name, strlen(name), line, &i) == 0)
318 1.6 christos return 1;
319 1.6 christos }
320 1.4 christos #endif
321 1.4 christos
322 1.4 christos return 0;
323 1.1 mycroft }
324 1.1 mycroft
325 1.4 christos
326 1.1 mycroft /*
327 1.4 christos * _ng_parse(): Parse a line and return: _NG_ERROR: Syntax Error _NG_NONE:
328 1.4 christos * line was empty or a comment _NG_GROUP: line had a netgroup definition,
329 1.4 christos * returned in ng _NG_NAME: line had a netgroup name, returned in name
330 1.4 christos *
331 1.4 christos * Public since used by netgroup_mkdb
332 1.1 mycroft */
333 1.1 mycroft int
334 1.4 christos _ng_parse(p, name, ng)
335 1.4 christos char **p;
336 1.4 christos char **name;
337 1.4 christos struct netgroup **ng;
338 1.1 mycroft {
339 1.4 christos while (**p) {
340 1.4 christos if (**p == '#')
341 1.4 christos /* comment */
342 1.4 christos return _NG_NONE;
343 1.4 christos
344 1.4 christos while (**p && _NG_ISSPACE(**p))
345 1.4 christos /* skipblank */
346 1.4 christos (*p)++;
347 1.4 christos
348 1.4 christos if (**p == '(') {
349 1.4 christos if ((*ng = getnetgroup(p)) == NULL) {
350 1.7 jtc _warnx("netgroup: Syntax error `%s'", *p);
351 1.4 christos return _NG_ERROR;
352 1.4 christos }
353 1.4 christos return _NG_GROUP;
354 1.4 christos } else {
355 1.4 christos char *np;
356 1.4 christos int i;
357 1.1 mycroft
358 1.4 christos for (np = *p; **p && !_NG_ISSPACE(**p); (*p)++)
359 1.4 christos continue;
360 1.4 christos if (np != *p) {
361 1.4 christos i = (*p - np) + 1;
362 1.4 christos *name = malloc(i);
363 1.4 christos if (*name == NULL)
364 1.7 jtc _err(1, _ngoomem);
365 1.4 christos memcpy(*name, np, i);
366 1.4 christos (*name)[i - 1] = '\0';
367 1.4 christos return _NG_NAME;
368 1.4 christos }
369 1.4 christos }
370 1.1 mycroft }
371 1.4 christos return _NG_NONE;
372 1.1 mycroft }
373 1.1 mycroft
374 1.4 christos
375 1.1 mycroft /*
376 1.4 christos * addgroup(): Recursively add all the members of the netgroup to this group
377 1.1 mycroft */
378 1.4 christos static void
379 1.4 christos addgroup(ypdom, sl, grp)
380 1.4 christos char *ypdom;
381 1.4 christos struct stringlist *sl;
382 1.4 christos char *grp;
383 1.1 mycroft {
384 1.4 christos char *line, *p;
385 1.4 christos struct netgroup *ng;
386 1.4 christos char *name;
387 1.4 christos
388 1.4 christos #ifdef DEBUG_NG
389 1.4 christos (void) fprintf(stderr, "addgroup(%s)\n", grp);
390 1.4 christos #endif
391 1.4 christos /* check for cycles */
392 1.4 christos if (_ng_sl_find(sl, grp) != NULL) {
393 1.6 christos free(grp);
394 1.7 jtc _warnx("netgroup: Cycle in group `%s'", grp);
395 1.4 christos return;
396 1.4 christos }
397 1.4 christos _ng_sl_add(sl, grp);
398 1.4 christos
399 1.4 christos /* Lookup this netgroup */
400 1.4 christos if (!lookup(ypdom, grp, &line, _NG_KEYBYNAME))
401 1.4 christos return;
402 1.4 christos
403 1.4 christos p = line;
404 1.4 christos
405 1.4 christos for (;;) {
406 1.4 christos switch (_ng_parse(&p, &name, &ng)) {
407 1.4 christos case _NG_NONE:
408 1.4 christos /* Done with the line */
409 1.4 christos free(line);
410 1.4 christos return;
411 1.4 christos
412 1.4 christos case _NG_GROUP:
413 1.4 christos /* new netgroup */
414 1.4 christos /* add to the list */
415 1.4 christos ng->ng_next = _nglist;
416 1.4 christos _nglist = ng;
417 1.4 christos break;
418 1.4 christos
419 1.4 christos case _NG_NAME:
420 1.4 christos /* netgroup name */
421 1.4 christos addgroup(ypdom, sl, name);
422 1.4 christos break;
423 1.1 mycroft
424 1.4 christos case _NG_ERROR:
425 1.4 christos return;
426 1.4 christos
427 1.4 christos default:
428 1.4 christos abort();
429 1.4 christos return;
430 1.4 christos }
431 1.1 mycroft }
432 1.1 mycroft }
433 1.1 mycroft
434 1.4 christos
435 1.1 mycroft /*
436 1.4 christos * in_check(): Compare the spec with the netgroup
437 1.1 mycroft */
438 1.4 christos static int
439 1.4 christos in_check(host, user, domain, ng)
440 1.4 christos const char *host;
441 1.4 christos const char *user;
442 1.4 christos const char *domain;
443 1.4 christos struct netgroup *ng;
444 1.1 mycroft {
445 1.6 christos if ((host != NULL) && (ng->ng_host != NULL)
446 1.4 christos && strcmp(ng->ng_host, host) != 0)
447 1.4 christos return 0;
448 1.4 christos
449 1.6 christos if ((user != NULL) && (ng->ng_user != NULL)
450 1.4 christos && strcmp(ng->ng_user, user) != 0)
451 1.4 christos return 0;
452 1.4 christos
453 1.6 christos if ((domain != NULL) && (ng->ng_domain != NULL)
454 1.4 christos && strcmp(ng->ng_domain, domain) != 0)
455 1.4 christos return 0;
456 1.1 mycroft
457 1.4 christos return 1;
458 1.1 mycroft }
459 1.1 mycroft
460 1.4 christos
461 1.1 mycroft /*
462 1.4 christos * in_find(): Find a match for the host, user, domain spec
463 1.1 mycroft */
464 1.1 mycroft static int
465 1.4 christos in_find(ypdom, sl, grp, host, user, domain)
466 1.4 christos char *ypdom;
467 1.4 christos struct stringlist *sl;
468 1.4 christos char *grp;
469 1.4 christos const char *host;
470 1.4 christos const char *user;
471 1.4 christos const char *domain;
472 1.1 mycroft {
473 1.4 christos char *line, *p;
474 1.4 christos int i;
475 1.4 christos struct netgroup *ng;
476 1.4 christos char *name;
477 1.4 christos
478 1.4 christos #ifdef DEBUG_NG
479 1.4 christos (void) fprintf(stderr, "in_find(%s)\n", grp);
480 1.4 christos #endif
481 1.4 christos /* check for cycles */
482 1.4 christos if (_ng_sl_find(sl, grp) != NULL) {
483 1.6 christos free(grp);
484 1.7 jtc _warnx("netgroup: Cycle in group `%s'", grp);
485 1.4 christos return 0;
486 1.4 christos }
487 1.4 christos _ng_sl_add(sl, grp);
488 1.1 mycroft
489 1.4 christos /* Lookup this netgroup */
490 1.4 christos if (!lookup(ypdom, grp, &line, _NG_KEYBYNAME))
491 1.4 christos return 0;
492 1.4 christos
493 1.4 christos p = line;
494 1.4 christos
495 1.4 christos for (;;) {
496 1.4 christos switch (_ng_parse(&p, &name, &ng)) {
497 1.4 christos case _NG_NONE:
498 1.4 christos /* Done with the line */
499 1.4 christos free(line);
500 1.4 christos return 0;
501 1.4 christos
502 1.4 christos case _NG_GROUP:
503 1.4 christos /* new netgroup */
504 1.4 christos i = in_check(host, user, domain, ng);
505 1.6 christos if (ng->ng_host != NULL)
506 1.6 christos free(ng->ng_host);
507 1.6 christos if (ng->ng_user != NULL)
508 1.6 christos free(ng->ng_user);
509 1.6 christos if (ng->ng_domain != NULL)
510 1.6 christos free(ng->ng_domain);
511 1.4 christos free(ng);
512 1.4 christos if (i) {
513 1.4 christos free(line);
514 1.4 christos return 1;
515 1.4 christos }
516 1.1 mycroft break;
517 1.4 christos
518 1.4 christos case _NG_NAME:
519 1.4 christos /* netgroup name */
520 1.4 christos if (in_find(ypdom, sl, name, host, user, domain)) {
521 1.4 christos free(line);
522 1.4 christos return 1;
523 1.1 mycroft }
524 1.4 christos break;
525 1.4 christos
526 1.4 christos case _NG_ERROR:
527 1.4 christos free(line);
528 1.4 christos return 0;
529 1.4 christos
530 1.4 christos default:
531 1.4 christos abort();
532 1.4 christos return 0;
533 1.1 mycroft }
534 1.1 mycroft }
535 1.4 christos }
536 1.4 christos
537 1.4 christos
538 1.4 christos /*
539 1.4 christos * _ng_makekey(): Make a key from the two names given. The key is of the form
540 1.4 christos * <name1>.<name2> Names strings are replaced with * if they are empty;
541 1.4 christos */
542 1.4 christos char *
543 1.4 christos _ng_makekey(s1, s2, len)
544 1.4 christos const char *s1, *s2;
545 1.4 christos size_t len;
546 1.4 christos {
547 1.4 christos char *buf = malloc(len);
548 1.4 christos if (buf == NULL)
549 1.7 jtc _err(1, _ngoomem);
550 1.4 christos (void) snprintf(buf, len, "%s.%s", _NG_STAR(s1), _NG_STAR(s2));
551 1.4 christos return buf;
552 1.9 christos }
553 1.9 christos
554 1.9 christos void
555 1.9 christos _ng_print(buf, len, ng)
556 1.9 christos char *buf;
557 1.9 christos size_t len;
558 1.9 christos const struct netgroup *ng;
559 1.9 christos {
560 1.9 christos (void) snprintf(buf, len, "(%s,%s,%s)", _NG_EMPTY(ng->ng_host),
561 1.9 christos _NG_EMPTY(ng->ng_user), _NG_EMPTY(ng->ng_domain));
562 1.4 christos }
563 1.4 christos
564 1.4 christos
565 1.4 christos /*
566 1.4 christos * in_lookup1(): Fast lookup for a key in the appropriate map
567 1.4 christos */
568 1.4 christos static char *
569 1.4 christos in_lookup1(ypdom, key, domain, map)
570 1.4 christos const char *ypdom;
571 1.4 christos const char *key;
572 1.4 christos const char *domain;
573 1.4 christos int map;
574 1.4 christos {
575 1.4 christos char *line;
576 1.4 christos size_t len;
577 1.4 christos char *ptr;
578 1.4 christos int res;
579 1.4 christos
580 1.4 christos len = (key ? strlen(key) : 1) + (domain ? strlen(domain) : 1) + 2;
581 1.4 christos ptr = _ng_makekey(key, domain, len);
582 1.4 christos res = lookup(ypdom, ptr, &line, map);
583 1.4 christos free(ptr);
584 1.4 christos return res ? line : NULL;
585 1.4 christos }
586 1.4 christos
587 1.4 christos
588 1.4 christos /*
589 1.4 christos * in_lookup(): Fast lookup for a key in the appropriate map
590 1.4 christos */
591 1.4 christos static int
592 1.4 christos in_lookup(ypdom, group, key, domain, map)
593 1.4 christos const char *ypdom;
594 1.4 christos const char *group;
595 1.4 christos const char *key;
596 1.4 christos const char *domain;
597 1.4 christos int map;
598 1.4 christos {
599 1.4 christos size_t len;
600 1.4 christos char *ptr, *line;
601 1.4 christos
602 1.4 christos if (domain != NULL) {
603 1.4 christos /* Domain specified; look in "group.domain" and "*.domain" */
604 1.4 christos if ((line = in_lookup1(ypdom, key, domain, map)) == NULL)
605 1.4 christos line = in_lookup1(ypdom, NULL, domain, map);
606 1.4 christos }
607 1.4 christos else
608 1.4 christos line = NULL;
609 1.4 christos
610 1.4 christos if (line == NULL) {
611 1.4 christos /*
612 1.4 christos * domain not specified or domain lookup failed; look in
613 1.4 christos * "group.*" and "*.*"
614 1.4 christos */
615 1.4 christos if (((line = in_lookup1(ypdom, key, NULL, map)) == NULL) &&
616 1.4 christos ((line = in_lookup1(ypdom, NULL, NULL, map)) == NULL))
617 1.4 christos return 0;
618 1.4 christos }
619 1.4 christos
620 1.4 christos len = strlen(group);
621 1.4 christos
622 1.4 christos for (ptr = line; (ptr = strstr(ptr, group)) != NULL;)
623 1.4 christos /* Make sure we did not find a substring */
624 1.4 christos if ((ptr != line && ptr[-1] != ',') ||
625 1.4 christos (ptr[len] != '\0' && strchr("\n\t ,", ptr[len]) == NULL))
626 1.4 christos ptr++;
627 1.4 christos else {
628 1.4 christos free(line);
629 1.4 christos return 1;
630 1.1 mycroft }
631 1.4 christos
632 1.4 christos free(line);
633 1.4 christos return 0;
634 1.4 christos }
635 1.4 christos
636 1.4 christos
637 1.4 christos void
638 1.4 christos endnetgrent()
639 1.4 christos {
640 1.4 christos for (_nglist = _nghead; _nglist != NULL; _nglist = _nghead) {
641 1.4 christos _nghead = _nglist->ng_next;
642 1.6 christos if (_nglist->ng_host != NULL)
643 1.6 christos free(_nglist->ng_host);
644 1.6 christos if (_nglist->ng_user != NULL)
645 1.6 christos free(_nglist->ng_user);
646 1.6 christos if (_nglist->ng_domain != NULL)
647 1.6 christos free(_nglist->ng_domain);
648 1.4 christos free(_nglist);
649 1.4 christos }
650 1.4 christos
651 1.4 christos if (_ng_db) {
652 1.4 christos (void) (_ng_db->close) (_ng_db);
653 1.4 christos _ng_db = NULL;
654 1.4 christos }
655 1.4 christos }
656 1.4 christos
657 1.4 christos
658 1.4 christos void
659 1.4 christos setnetgrent(ng)
660 1.4 christos const char *ng;
661 1.4 christos {
662 1.4 christos struct stringlist *sl = _ng_sl_init();
663 1.4 christos #ifdef YP
664 1.4 christos char *line;
665 1.4 christos #endif
666 1.4 christos char *ng_copy, *ypdom = NULL;
667 1.4 christos
668 1.4 christos /* Cleanup any previous storage */
669 1.4 christos if (_nghead != NULL)
670 1.4 christos endnetgrent();
671 1.4 christos
672 1.4 christos if (_ng_db == NULL)
673 1.4 christos _ng_db = dbopen(_PATH_NETGROUP_DB, O_RDONLY, 0, DB_HASH, NULL);
674 1.4 christos
675 1.4 christos #ifdef YP
676 1.4 christos /*
677 1.4 christos * We use yp if there is a "+" in the netgroup file, or if there is
678 1.4 christos * no netgroup file at all
679 1.4 christos */
680 1.4 christos if (_ng_db == NULL || lookup(NULL, "+", &line, _NG_KEYBYNAME) == 0)
681 1.4 christos yp_get_default_domain(&ypdom);
682 1.4 christos else
683 1.4 christos free(line);
684 1.4 christos #endif
685 1.4 christos ng_copy = strdup(ng);
686 1.4 christos if (ng_copy == NULL)
687 1.7 jtc _err(1, _ngoomem);
688 1.4 christos addgroup(ypdom, sl, ng_copy);
689 1.4 christos _nghead = _nglist;
690 1.4 christos _ng_sl_free(sl, 1);
691 1.4 christos }
692 1.4 christos
693 1.4 christos
694 1.4 christos int
695 1.4 christos getnetgrent(host, user, domain)
696 1.4 christos const char **host;
697 1.4 christos const char **user;
698 1.4 christos const char **domain;
699 1.4 christos {
700 1.4 christos if (_nglist == NULL)
701 1.4 christos return 0;
702 1.4 christos
703 1.4 christos *host = _nglist->ng_host;
704 1.4 christos *user = _nglist->ng_user;
705 1.4 christos *domain = _nglist->ng_domain;
706 1.4 christos
707 1.4 christos _nglist = _nglist->ng_next;
708 1.4 christos
709 1.4 christos return 1;
710 1.4 christos }
711 1.4 christos
712 1.4 christos
713 1.4 christos int
714 1.4 christos innetgr(grp, host, user, domain)
715 1.4 christos const char *grp, *host, *user, *domain;
716 1.4 christos {
717 1.4 christos char *ypdom = NULL;
718 1.4 christos #ifdef YP
719 1.4 christos char *line;
720 1.4 christos #endif
721 1.4 christos int found;
722 1.4 christos struct stringlist *sl;
723 1.4 christos
724 1.4 christos if (_ng_db == NULL)
725 1.4 christos _ng_db = dbopen(_PATH_NETGROUP_DB, O_RDONLY, 0, DB_HASH, NULL);
726 1.4 christos
727 1.4 christos #ifdef YP
728 1.4 christos /*
729 1.4 christos * We use yp if there is a "+" in the netgroup file, or if there is
730 1.4 christos * no netgroup file at all
731 1.4 christos */
732 1.4 christos if (_ng_db == NULL)
733 1.4 christos yp_get_default_domain(&ypdom);
734 1.4 christos else if (lookup(NULL, "+", &line, _NG_KEYBYNAME) == 0) {
735 1.4 christos yp_get_default_domain(&ypdom);
736 1.4 christos free(line);
737 1.1 mycroft }
738 1.4 christos #endif
739 1.4 christos
740 1.4 christos /* Try the fast lookup first */
741 1.4 christos if (host != NULL && user == NULL) {
742 1.4 christos if (in_lookup(ypdom, grp, host, domain, _NG_KEYBYHOST))
743 1.4 christos return 1;
744 1.4 christos } else if (host == NULL && user != NULL) {
745 1.4 christos if (in_lookup(ypdom, grp, user, domain, _NG_KEYBYUSER))
746 1.4 christos return 1;
747 1.4 christos }
748 1.4 christos /* If a domainname is given, we would have found a match */
749 1.4 christos if (domain != NULL)
750 1.4 christos return 0;
751 1.4 christos
752 1.4 christos /* Too bad need the slow recursive way */
753 1.4 christos sl = _ng_sl_init();
754 1.4 christos found = in_find(ypdom, sl, strdup(grp), host, user, domain);
755 1.4 christos _ng_sl_free(sl, 1);
756 1.4 christos
757 1.4 christos return found;
758 1.1 mycroft }
759