1 /* Copyright (C) 1996-2013 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
20 #include <bits/libc-lock.h>
29 #include <nscd/nscd_proto.h>
32 /* Protect above variable against multiple uses at the same time. */
33 __libc_lock_define_initialized (static, lock
)
35 /* The whole information for the set/get/endnetgrent functions are
36 kept in this structure. */
37 static struct __netgrent dataset
;
39 /* The lookup function for the first entry of this service. */
40 extern int __nss_netgroup_lookup (service_user
**nipp
, const char *name
,
41 void **fctp
) internal_function
;
43 /* Set up NIP to run through the services. Return nonzero if there are no
46 setup (void **fctp
, service_user
**nipp
)
48 /* Remember the first service_entry, it's always the same. */
49 static bool startp_initialized
;
50 static service_user
*startp
;
53 if (!startp_initialized
)
55 /* Executing this more than once at the same time must yield the
56 same result every time. So we need no locking. */
57 no_more
= __nss_netgroup_lookup (nipp
, "setnetgrent", fctp
);
58 startp
= no_more
? (service_user
*) -1 : *nipp
;
62 atomic_write_barrier ();
63 startp_initialized
= true;
67 service_user
*nip
= startp
;
71 if (nip
== (service_user
*) -1)
72 /* No services at all. */
75 /* Reset to the beginning of the service list. */
77 /* Look up the first function. */
78 no_more
= __nss_lookup (nipp
, "setnetgrent", NULL
, fctp
);
83 /* Free used memory. */
85 free_memory (struct __netgrent
*data
)
87 while (data
->known_groups
!= NULL
)
89 struct name_list
*tmp
= data
->known_groups
;
90 data
->known_groups
= data
->known_groups
->next
;
94 while (data
->needed_groups
!= NULL
)
96 struct name_list
*tmp
= data
->needed_groups
;
97 data
->needed_groups
= data
->needed_groups
->next
;
103 endnetgrent_hook (struct __netgrent
*datap
)
105 enum nss_status (*endfct
) (struct __netgrent
*);
107 if (datap
->nip
== NULL
|| datap
->nip
== (service_user
*) -1l)
110 endfct
= __nss_lookup_function (datap
->nip
, "endnetgrent");
112 (void) (*endfct
) (datap
);
118 __internal_setnetgrent_reuse (const char *group
, struct __netgrent
*datap
,
123 enum nss_status (*f
) (const char *, struct __netgrent
*);
126 enum nss_status status
= NSS_STATUS_UNAVAIL
;
127 struct name_list
*new_elem
;
129 /* Free data from previous service. */
130 endnetgrent_hook (datap
);
132 /* Cycle through all the services and run their setnetgrent functions. */
133 int no_more
= setup (&fct
.ptr
, &datap
->nip
);
136 assert (datap
->data
== NULL
);
138 /* Ignore status, we force check in `__nss_next2'. */
139 status
= DL_CALL_FCT (*fct
.f
, (group
, datap
));
141 service_user
*old_nip
= datap
->nip
;
142 no_more
= __nss_next2 (&datap
->nip
, "setnetgrent", NULL
, &fct
.ptr
,
145 if (status
== NSS_STATUS_SUCCESS
&& ! no_more
)
147 enum nss_status (*endfct
) (struct __netgrent
*);
149 endfct
= __nss_lookup_function (old_nip
, "endnetgrent");
151 (void) DL_CALL_FCT (*endfct
, (datap
));
155 /* Add the current group to the list of known groups. */
156 size_t group_len
= strlen (group
) + 1;
157 new_elem
= (struct name_list
*) malloc (sizeof (struct name_list
)
159 if (new_elem
== NULL
)
162 status
= NSS_STATUS_TRYAGAIN
;
166 new_elem
->next
= datap
->known_groups
;
167 memcpy (new_elem
->name
, group
, group_len
);
168 datap
->known_groups
= new_elem
;
171 return status
== NSS_STATUS_SUCCESS
;
176 __internal_setnetgrent (const char *group
, struct __netgrent
*datap
)
178 /* Free list of all netgroup names from last run. */
181 return __internal_setnetgrent_reuse (group
, datap
, &errno
);
183 libc_hidden_def (__internal_setnetgrent
)
186 nscd_setnetgrent (const char *group
)
189 if (__nss_not_use_nscd_netgroup
> 0
190 && ++__nss_not_use_nscd_netgroup
> NSS_NSCD_RETRY
)
191 __nss_not_use_nscd_netgroup
= 0;
193 if (!__nss_not_use_nscd_netgroup
194 && !__nss_database_custom
[NSS_DBSIDX_netgroup
])
195 return __nscd_setnetgrent (group
, &dataset
);
201 setnetgrent (const char *group
)
205 __libc_lock_lock (lock
);
207 result
= nscd_setnetgrent (group
);
209 result
= __internal_setnetgrent (group
, &dataset
);
211 __libc_lock_unlock (lock
);
218 __internal_endnetgrent (struct __netgrent
*datap
)
220 endnetgrent_hook (datap
);
221 /* Now free list of all netgroup names from last run. */
224 libc_hidden_def (__internal_endnetgrent
)
230 __libc_lock_lock (lock
);
232 __internal_endnetgrent (&dataset
);
234 __libc_lock_unlock (lock
);
238 static enum nss_status
239 nscd_getnetgrent (struct __netgrent
*datap
, char *buffer
, size_t buflen
,
242 if (datap
->cursor
>= datap
->data
+ datap
->data_size
)
243 return NSS_STATUS_UNAVAIL
;
245 datap
->type
= triple_val
;
246 datap
->val
.triple
.host
= datap
->cursor
;
247 datap
->cursor
= (char *) __rawmemchr (datap
->cursor
, '\0') + 1;
248 datap
->val
.triple
.user
= datap
->cursor
;
249 datap
->cursor
= (char *) __rawmemchr (datap
->cursor
, '\0') + 1;
250 datap
->val
.triple
.domain
= datap
->cursor
;
251 datap
->cursor
= (char *) __rawmemchr (datap
->cursor
, '\0') + 1;
253 return NSS_STATUS_SUCCESS
;
259 __internal_getnetgrent_r (char **hostp
, char **userp
, char **domainp
,
260 struct __netgrent
*datap
,
261 char *buffer
, size_t buflen
, int *errnop
)
263 enum nss_status (*fct
) (struct __netgrent
*, char *, size_t, int *);
265 /* Initialize status to return if no more functions are found. */
266 enum nss_status status
= NSS_STATUS_NOTFOUND
;
268 /* Run through available functions, starting with the same function last
269 run. We will repeat each function as long as it succeeds, and then go
270 on to the next service action. */
271 int no_more
= datap
->nip
== NULL
;
275 /* This bogus function pointer is a special marker left by
276 __nscd_setnetgrent to tell us to use the data it left
277 before considering any modules. */
278 if (datap
->nip
== (service_user
*) -1l)
279 fct
= nscd_getnetgrent
;
283 fct
= __nss_lookup_function (datap
->nip
, "getnetgrent_r");
284 no_more
= fct
== NULL
;
290 status
= DL_CALL_FCT (*fct
, (datap
, buffer
, buflen
, &errno
));
292 if (status
== NSS_STATUS_RETURN
)
294 /* This was the last one for this group. Look at next group
297 while (datap
->needed_groups
!= NULL
&& ! found
)
299 struct name_list
*tmp
= datap
->needed_groups
;
300 datap
->needed_groups
= datap
->needed_groups
->next
;
301 tmp
->next
= datap
->known_groups
;
302 datap
->known_groups
= tmp
;
304 found
= __internal_setnetgrent_reuse (datap
->known_groups
->name
,
308 if (found
&& datap
->nip
!= NULL
)
310 fct
= __nss_lookup_function (datap
->nip
, "getnetgrent_r");
315 else if (status
== NSS_STATUS_SUCCESS
&& datap
->type
== group_val
)
317 /* The last entry was a name of another netgroup. */
318 struct name_list
*namep
;
320 /* Ignore if we've seen the name before. */
321 for (namep
= datap
->known_groups
; namep
!= NULL
;
323 if (strcmp (datap
->val
.group
, namep
->name
) == 0)
326 for (namep
= datap
->needed_groups
; namep
!= NULL
;
328 if (strcmp (datap
->val
.group
, namep
->name
) == 0)
334 size_t group_len
= strlen (datap
->val
.group
) + 1;
335 namep
= (struct name_list
*) malloc (sizeof (struct name_list
)
338 /* We are out of memory. */
339 status
= NSS_STATUS_RETURN
;
342 namep
->next
= datap
->needed_groups
;
343 memcpy (namep
->name
, datap
->val
.group
, group_len
);
344 datap
->needed_groups
= namep
;
345 /* And get the next entry. */
353 if (status
== NSS_STATUS_SUCCESS
)
355 *hostp
= (char *) datap
->val
.triple
.host
;
356 *userp
= (char *) datap
->val
.triple
.user
;
357 *domainp
= (char *) datap
->val
.triple
.domain
;
360 return status
== NSS_STATUS_SUCCESS
? 1 : 0;
362 libc_hidden_def (__internal_getnetgrent_r
)
364 /* The real entry point. */
366 __getnetgrent_r (char **hostp
, char **userp
, char **domainp
,
367 char *buffer
, size_t buflen
)
369 enum nss_status status
;
371 __libc_lock_lock (lock
);
373 status
= __internal_getnetgrent_r (hostp
, userp
, domainp
, &dataset
,
374 buffer
, buflen
, &errno
);
376 __libc_lock_unlock (lock
);
380 weak_alias (__getnetgrent_r
, getnetgrent_r
)
382 /* Test whether given (host,user,domain) triple is in NETGROUP. */
384 innetgr (const char *netgroup
, const char *host
, const char *user
,
388 if (__nss_not_use_nscd_netgroup
> 0
389 && ++__nss_not_use_nscd_netgroup
> NSS_NSCD_RETRY
)
390 __nss_not_use_nscd_netgroup
= 0;
392 if (!__nss_not_use_nscd_netgroup
393 && !__nss_database_custom
[NSS_DBSIDX_netgroup
])
395 int result
= __nscd_innetgr (netgroup
, host
, user
, domain
);
403 enum nss_status (*f
) (const char *, struct __netgrent
*);
406 void (*endfct
) (struct __netgrent
*);
407 int (*getfct
) (struct __netgrent
*, char *, size_t, int *);
408 struct __netgrent entry
;
410 const char *current_group
= netgroup
;
412 memset (&entry
, '\0', sizeof (entry
));
414 /* Walk through the services until we found an answer or we shall
415 not work further. We can do some optimization here. Since all
416 services must provide the `setnetgrent' function we can do all
417 the work during one walk through the service list. */
420 int no_more
= setup (&setfct
.ptr
, &entry
.nip
);
423 assert (entry
.data
== NULL
);
426 enum nss_status status
= DL_CALL_FCT (*setfct
.f
,
427 (current_group
, &entry
));
429 if (status
== NSS_STATUS_SUCCESS
430 && (getfct
= __nss_lookup_function (entry
.nip
, "getnetgrent_r"))
435 while (DL_CALL_FCT (*getfct
,
436 (&entry
, buffer
, sizeof buffer
, &errno
))
437 == NSS_STATUS_SUCCESS
)
439 if (entry
.type
== group_val
)
441 /* Make sure we haven't seen the name before. */
442 struct name_list
*namep
;
444 for (namep
= entry
.known_groups
; namep
!= NULL
;
446 if (strcmp (entry
.val
.group
, namep
->name
) == 0)
449 for (namep
= entry
.needed_groups
; namep
!= NULL
;
451 if (strcmp (entry
.val
.group
, namep
->name
) == 0)
454 && strcmp (netgroup
, entry
.val
.group
) != 0)
456 size_t group_len
= strlen (entry
.val
.group
) + 1;
458 (struct name_list
*) malloc (sizeof (*namep
)
462 /* Out of memory, simply return. */
467 namep
->next
= entry
.needed_groups
;
468 memcpy (namep
->name
, entry
.val
.group
, group_len
);
469 entry
.needed_groups
= namep
;
474 if ((entry
.val
.triple
.host
== NULL
|| host
== NULL
475 || __strcasecmp (entry
.val
.triple
.host
, host
) == 0)
476 && (entry
.val
.triple
.user
== NULL
|| user
== NULL
477 || strcmp (entry
.val
.triple
.user
, user
) == 0)
478 && (entry
.val
.triple
.domain
== NULL
|| domain
== NULL
479 || __strcasecmp (entry
.val
.triple
.domain
,
488 /* If we found one service which does know the given
489 netgroup we don't try further. */
490 status
= NSS_STATUS_RETURN
;
493 /* Free all resources of the service. */
494 endfct
= __nss_lookup_function (entry
.nip
, "endnetgrent");
496 DL_CALL_FCT (*endfct
, (&entry
));
501 /* Look for the next service. */
502 no_more
= __nss_next2 (&entry
.nip
, "setnetgrent", NULL
,
503 &setfct
.ptr
, status
, 0);
506 if (result
== 0 && entry
.needed_groups
!= NULL
)
508 struct name_list
*tmp
= entry
.needed_groups
;
509 entry
.needed_groups
= tmp
->next
;
510 tmp
->next
= entry
.known_groups
;
511 entry
.known_groups
= tmp
;
512 current_group
= tmp
->name
;
520 /* Free the memory. */
521 free_memory (&entry
);
525 libc_hidden_def (innetgr
)