1 /* Copyright (C) 1996-1999,2001-2004,2005 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@suse.de>, 1996.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 #include <stdio_ext.h>
28 #include <rpc/types.h>
29 #include <bits/libc-lock.h>
31 static service_user
*ni
;
32 static enum nss_status (*nss_setgrent
) (int stayopen
);
33 static enum nss_status (*nss_getgrnam_r
) (const char *name
,
34 struct group
* grp
, char *buffer
,
35 size_t buflen
, int *errnop
);
36 static enum nss_status (*nss_getgrgid_r
) (gid_t gid
, struct group
* grp
,
37 char *buffer
, size_t buflen
,
39 static enum nss_status (*nss_getgrent_r
) (struct group
* grp
, char *buffer
,
40 size_t buflen
, int *errnop
);
41 static enum nss_status (*nss_endgrent
) (void);
43 /* Get the declaration of the parser function. */
45 #define STRUCTURE group
47 #include <nss/nss_files/files-parse.c>
49 /* Structure for remembering -group members ... */
50 #define BLACKLIST_INITIAL_SIZE 512
51 #define BLACKLIST_INCREMENT 256
63 struct blacklist_t blacklist
;
65 typedef struct ent_t ent_t
;
67 static ent_t ext_ent
= {TRUE
, NULL
, {NULL
, 0, 0}};
69 /* Protect global state against multiple changers. */
70 __libc_lock_define_initialized (static, lock
)
72 /* Prototypes for local functions. */
73 static void blacklist_store_name (const char *, ent_t
*);
74 static int in_blacklist (const char *, int, ent_t
*);
76 /* Initialize the NSS interface/functions. The calling function must
79 init_nss_interface (void)
81 if (__nss_database_lookup ("group_compat", NULL
, "nis", &ni
) >= 0)
83 nss_setgrent
= __nss_lookup_function (ni
, "setgrent");
84 nss_getgrnam_r
= __nss_lookup_function (ni
, "getgrnam_r");
85 nss_getgrgid_r
= __nss_lookup_function (ni
, "getgrgid_r");
86 nss_getgrent_r
= __nss_lookup_function (ni
, "getgrent_r");
87 nss_endgrent
= __nss_lookup_function (ni
, "endgrent");
91 static enum nss_status
92 internal_setgrent (ent_t
*ent
, int stayopen
)
94 enum nss_status status
= NSS_STATUS_SUCCESS
;
98 if (ent
->blacklist
.data
!= NULL
)
100 ent
->blacklist
.current
= 1;
101 ent
->blacklist
.data
[0] = '|';
102 ent
->blacklist
.data
[1] = '\0';
105 ent
->blacklist
.current
= 0;
107 if (ent
->stream
== NULL
)
109 ent
->stream
= fopen ("/etc/group", "rm");
111 if (ent
->stream
== NULL
)
112 status
= errno
== EAGAIN
? NSS_STATUS_TRYAGAIN
: NSS_STATUS_UNAVAIL
;
115 /* We have to make sure the file is `closed on exec'. */
118 result
= flags
= fcntl (fileno_unlocked (ent
->stream
), F_GETFD
, 0);
122 result
= fcntl (fileno_unlocked (ent
->stream
), F_SETFD
, flags
);
126 /* Something went wrong. Close the stream and return a
128 fclose (ent
->stream
);
130 status
= NSS_STATUS_UNAVAIL
;
133 /* We take care of locking ourself. */
134 __fsetlocking (ent
->stream
, FSETLOCKING_BYCALLER
);
138 rewind (ent
->stream
);
140 if (status
== NSS_STATUS_SUCCESS
&& nss_setgrent
)
141 return nss_setgrent (stayopen
);
148 _nss_compat_setgrent (int stayopen
)
150 enum nss_status result
;
152 __libc_lock_lock (lock
);
155 init_nss_interface ();
157 result
= internal_setgrent (&ext_ent
, stayopen
);
159 __libc_lock_unlock (lock
);
165 static enum nss_status
166 internal_endgrent (ent_t
*ent
)
171 if (ent
->stream
!= NULL
)
173 fclose (ent
->stream
);
177 if (ent
->blacklist
.data
!= NULL
)
179 ent
->blacklist
.current
= 1;
180 ent
->blacklist
.data
[0] = '|';
181 ent
->blacklist
.data
[1] = '\0';
184 ent
->blacklist
.current
= 0;
186 return NSS_STATUS_SUCCESS
;
190 _nss_compat_endgrent (void)
192 enum nss_status result
;
194 __libc_lock_lock (lock
);
196 result
= internal_endgrent (&ext_ent
);
198 __libc_lock_unlock (lock
);
203 /* get the next group from NSS (+ entry) */
204 static enum nss_status
205 getgrent_next_nss (struct group
*result
, ent_t
*ent
, char *buffer
,
206 size_t buflen
, int *errnop
)
209 return NSS_STATUS_UNAVAIL
;
213 enum nss_status status
;
215 if ((status
= nss_getgrent_r (result
, buffer
, buflen
, errnop
)) !=
219 while (in_blacklist (result
->gr_name
, strlen (result
->gr_name
), ent
));
221 return NSS_STATUS_SUCCESS
;
224 /* This function handle the +group entrys in /etc/group */
225 static enum nss_status
226 getgrnam_plusgroup (const char *name
, struct group
*result
, ent_t
*ent
,
227 char *buffer
, size_t buflen
, int *errnop
)
230 return NSS_STATUS_UNAVAIL
;
232 enum nss_status status
= nss_getgrnam_r (name
, result
, buffer
, buflen
,
234 if (status
!= NSS_STATUS_SUCCESS
)
237 if (in_blacklist (result
->gr_name
, strlen (result
->gr_name
), ent
))
238 return NSS_STATUS_NOTFOUND
;
240 /* We found the entry. */
241 return NSS_STATUS_SUCCESS
;
244 static enum nss_status
245 getgrent_next_file (struct group
*result
, ent_t
*ent
,
246 char *buffer
, size_t buflen
, int *errnop
)
248 struct parser_data
*data
= (void *) buffer
;
257 /* We need at least 3 characters for one line. */
258 if (__builtin_expect (buflen
< 3, 0))
262 return NSS_STATUS_TRYAGAIN
;
265 fgetpos (ent
->stream
, &pos
);
266 buffer
[buflen
- 1] = '\xff';
267 p
= fgets_unlocked (buffer
, buflen
, ent
->stream
);
268 if (p
== NULL
&& feof_unlocked (ent
->stream
))
269 return NSS_STATUS_NOTFOUND
;
271 if (p
== NULL
|| __builtin_expect (buffer
[buflen
- 1] != '\xff', 0))
274 fsetpos (ent
->stream
, &pos
);
278 /* Terminate the line for any case. */
279 buffer
[buflen
- 1] = '\0';
281 /* Skip leading blanks. */
285 while (*p
== '\0' || *p
== '#' || /* Ignore empty and comment lines. */
286 /* Parse the line. If it is invalid, loop to
287 get the next line of the file to parse. */
288 !(parse_res
= _nss_files_parse_grent (p
, result
, data
, buflen
,
291 if (__builtin_expect (parse_res
== -1, 0))
292 /* The parser ran out of space. */
295 if (result
->gr_name
[0] != '+' && result
->gr_name
[0] != '-')
296 /* This is a real entry. */
300 if (result
->gr_name
[0] == '-' && result
->gr_name
[1] != '\0'
301 && result
->gr_name
[1] != '@')
303 blacklist_store_name (&result
->gr_name
[1], ent
);
308 if (result
->gr_name
[0] == '+' && result
->gr_name
[1] != '\0'
309 && result
->gr_name
[1] != '@')
311 size_t len
= strlen (result
->gr_name
);
313 enum nss_status status
;
315 /* Store the group in the blacklist for the "+" at the end of
317 memcpy (buf
, &result
->gr_name
[1], len
);
318 status
= getgrnam_plusgroup (&result
->gr_name
[1], result
, ent
,
319 buffer
, buflen
, errnop
);
320 blacklist_store_name (buf
, ent
);
321 if (status
== NSS_STATUS_SUCCESS
) /* We found the entry. */
323 else if (status
== NSS_STATUS_RETURN
/* We couldn't parse the entry*/
324 || status
== NSS_STATUS_NOTFOUND
) /* No group in NIS */
328 if (status
== NSS_STATUS_TRYAGAIN
)
329 /* The parser ran out of space. */
337 if (result
->gr_name
[0] == '+' && result
->gr_name
[1] == '\0')
341 return getgrent_next_nss (result
, ent
, buffer
, buflen
, errnop
);
345 return NSS_STATUS_SUCCESS
;
350 _nss_compat_getgrent_r (struct group
*grp
, char *buffer
, size_t buflen
,
353 enum nss_status result
= NSS_STATUS_SUCCESS
;
355 __libc_lock_lock (lock
);
357 /* Be prepared that the setgrent function was not called before. */
359 init_nss_interface ();
361 if (ext_ent
.stream
== NULL
)
362 result
= internal_setgrent (&ext_ent
, 1);
364 if (result
== NSS_STATUS_SUCCESS
)
367 result
= getgrent_next_file (grp
, &ext_ent
, buffer
, buflen
, errnop
);
369 result
= getgrent_next_nss (grp
, &ext_ent
, buffer
, buflen
, errnop
);
371 __libc_lock_unlock (lock
);
376 /* Searches in /etc/group and the NIS/NIS+ map for a special group */
377 static enum nss_status
378 internal_getgrnam_r (const char *name
, struct group
*result
, ent_t
*ent
,
379 char *buffer
, size_t buflen
, int *errnop
)
381 struct parser_data
*data
= (void *) buffer
;
390 /* We need at least 3 characters for one line. */
391 if (__builtin_expect (buflen
< 3, 0))
395 return NSS_STATUS_TRYAGAIN
;
398 fgetpos (ent
->stream
, &pos
);
399 buffer
[buflen
- 1] = '\xff';
400 p
= fgets_unlocked (buffer
, buflen
, ent
->stream
);
401 if (p
== NULL
&& feof_unlocked (ent
->stream
))
402 return NSS_STATUS_NOTFOUND
;
404 if (p
== NULL
|| __builtin_expect (buffer
[buflen
- 1] != '\xff', 0))
407 fsetpos (ent
->stream
, &pos
);
411 /* Terminate the line for any case. */
412 buffer
[buflen
- 1] = '\0';
414 /* Skip leading blanks. */
418 while (*p
== '\0' || *p
== '#' || /* Ignore empty and comment lines. */
419 /* Parse the line. If it is invalid, loop to
420 get the next line of the file to parse. */
421 !(parse_res
= _nss_files_parse_grent (p
, result
, data
, buflen
,
424 if (__builtin_expect (parse_res
== -1, 0))
425 /* The parser ran out of space. */
428 /* This is a real entry. */
429 if (result
->gr_name
[0] != '+' && result
->gr_name
[0] != '-')
431 if (strcmp (result
->gr_name
, name
) == 0)
432 return NSS_STATUS_SUCCESS
;
438 if (result
->gr_name
[0] == '-' && result
->gr_name
[1] != '\0')
440 if (strcmp (&result
->gr_name
[1], name
) == 0)
441 return NSS_STATUS_NOTFOUND
;
447 if (result
->gr_name
[0] == '+' && result
->gr_name
[1] != '\0')
449 if (strcmp (name
, &result
->gr_name
[1]) == 0)
451 enum nss_status status
;
453 status
= getgrnam_plusgroup (name
, result
, ent
,
454 buffer
, buflen
, errnop
);
455 if (status
== NSS_STATUS_RETURN
)
456 /* We couldn't parse the entry */
463 if (result
->gr_name
[0] == '+' && result
->gr_name
[1] == '\0')
465 enum nss_status status
;
467 status
= getgrnam_plusgroup (name
, result
, ent
,
468 buffer
, buflen
, errnop
);
469 if (status
== NSS_STATUS_RETURN
)
470 /* We couldn't parse the entry */
477 return NSS_STATUS_SUCCESS
;
481 _nss_compat_getgrnam_r (const char *name
, struct group
*grp
,
482 char *buffer
, size_t buflen
, int *errnop
)
484 ent_t ent
= {TRUE
, NULL
, {NULL
, 0, 0}};
485 enum nss_status result
;
487 if (name
[0] == '-' || name
[0] == '+')
488 return NSS_STATUS_NOTFOUND
;
490 __libc_lock_lock (lock
);
493 init_nss_interface ();
495 __libc_lock_unlock (lock
);
497 result
= internal_setgrent (&ent
, 0);
499 if (result
== NSS_STATUS_SUCCESS
)
500 result
= internal_getgrnam_r (name
, grp
, &ent
, buffer
, buflen
, errnop
);
502 internal_endgrent (&ent
);
507 /* Searches in /etc/group and the NIS/NIS+ map for a special group id */
508 static enum nss_status
509 internal_getgrgid_r (gid_t gid
, struct group
*result
, ent_t
*ent
,
510 char *buffer
, size_t buflen
, int *errnop
)
512 struct parser_data
*data
= (void *) buffer
;
521 /* We need at least 3 characters for one line. */
522 if (__builtin_expect (buflen
< 3, 0))
526 return NSS_STATUS_TRYAGAIN
;
529 fgetpos (ent
->stream
, &pos
);
530 buffer
[buflen
- 1] = '\xff';
531 p
= fgets_unlocked (buffer
, buflen
, ent
->stream
);
532 if (p
== NULL
&& feof_unlocked (ent
->stream
))
533 return NSS_STATUS_NOTFOUND
;
535 if (p
== NULL
|| __builtin_expect (buffer
[buflen
- 1] != '\xff', 0))
538 fsetpos (ent
->stream
, &pos
);
542 /* Terminate the line for any case. */
543 buffer
[buflen
- 1] = '\0';
545 /* Skip leading blanks. */
549 while (*p
== '\0' || *p
== '#' || /* Ignore empty and comment lines. */
550 /* Parse the line. If it is invalid, loop to
551 get the next line of the file to parse. */
552 !(parse_res
= _nss_files_parse_grent (p
, result
, data
, buflen
,
555 if (__builtin_expect (parse_res
== -1, 0))
556 /* The parser ran out of space. */
559 /* This is a real entry. */
560 if (result
->gr_name
[0] != '+' && result
->gr_name
[0] != '-')
562 if (result
->gr_gid
== gid
)
563 return NSS_STATUS_SUCCESS
;
569 if (result
->gr_name
[0] == '-' && result
->gr_name
[1] != '\0')
571 blacklist_store_name (&result
->gr_name
[1], ent
);
576 if (result
->gr_name
[0] == '+' && result
->gr_name
[1] != '\0')
578 enum nss_status status
;
580 /* Store the group in the blacklist for the "+" at the end of
582 blacklist_store_name (&result
->gr_name
[1], ent
);
583 status
= getgrnam_plusgroup (&result
->gr_name
[1], result
, ent
,
584 buffer
, buflen
, errnop
);
585 if (status
== NSS_STATUS_SUCCESS
&& result
->gr_gid
== gid
)
591 if (result
->gr_name
[0] == '+' && result
->gr_name
[1] == '\0')
594 return NSS_STATUS_UNAVAIL
;
596 enum nss_status status
= nss_getgrgid_r (gid
, result
, buffer
, buflen
,
598 if (status
== NSS_STATUS_RETURN
) /* We couldn't parse the entry */
599 return NSS_STATUS_NOTFOUND
;
605 return NSS_STATUS_SUCCESS
;
609 _nss_compat_getgrgid_r (gid_t gid
, struct group
*grp
,
610 char *buffer
, size_t buflen
, int *errnop
)
612 ent_t ent
= {TRUE
, NULL
, {NULL
, 0, 0}};
613 enum nss_status result
;
615 __libc_lock_lock (lock
);
618 init_nss_interface ();
620 __libc_lock_unlock (lock
);
622 result
= internal_setgrent (&ent
, 0);
624 if (result
== NSS_STATUS_SUCCESS
)
625 result
= internal_getgrgid_r (gid
, grp
, &ent
, buffer
, buflen
, errnop
);
627 internal_endgrent (&ent
);
633 /* Support routines for remembering -@netgroup and -user entries.
634 The names are stored in a single string with `|' as separator. */
636 blacklist_store_name (const char *name
, ent_t
*ent
)
638 int namelen
= strlen (name
);
641 /* first call, setup cache */
642 if (ent
->blacklist
.size
== 0)
644 ent
->blacklist
.size
= MAX (BLACKLIST_INITIAL_SIZE
, 2 * namelen
);
645 ent
->blacklist
.data
= malloc (ent
->blacklist
.size
);
646 if (ent
->blacklist
.data
== NULL
)
648 ent
->blacklist
.data
[0] = '|';
649 ent
->blacklist
.data
[1] = '\0';
650 ent
->blacklist
.current
= 1;
654 if (in_blacklist (name
, namelen
, ent
))
655 return; /* no duplicates */
657 if (ent
->blacklist
.current
+ namelen
+ 1 >= ent
->blacklist
.size
)
659 ent
->blacklist
.size
+= MAX (BLACKLIST_INCREMENT
, 2 * namelen
);
660 tmp
= realloc (ent
->blacklist
.data
, ent
->blacklist
.size
);
663 free (ent
->blacklist
.data
);
664 ent
->blacklist
.size
= 0;
667 ent
->blacklist
.data
= tmp
;
671 tmp
= stpcpy (ent
->blacklist
.data
+ ent
->blacklist
.current
, name
);
674 ent
->blacklist
.current
+= namelen
+ 1;
679 /* returns TRUE if ent->blacklist contains name, else FALSE */
681 in_blacklist (const char *name
, int namelen
, ent_t
*ent
)
683 char buf
[namelen
+ 3];
686 if (ent
->blacklist
.data
== NULL
)
690 cp
= stpcpy (&buf
[1], name
);
693 return strstr (ent
->blacklist
.data
, buf
) != NULL
;