Update copyright dates with scripts/update-copyrights.
[glibc.git] / nss / nsswitch.c
blob9712623157b260e0e7243d2b7507875bcca897b9
1 /* Copyright (C) 1996-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 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, see
17 <http://www.gnu.org/licenses/>. */
19 #include <ctype.h>
20 #include <dlfcn.h>
21 #include <errno.h>
22 #include <netdb.h>
23 #include <bits/libc-lock.h>
24 #include <search.h>
25 #include <stdio.h>
26 #include <stdio_ext.h>
27 #include <stdlib.h>
28 #include <string.h>
30 #include <aliases.h>
31 #include <grp.h>
32 #include <netinet/ether.h>
33 #include <pwd.h>
34 #include <shadow.h>
36 #if !defined DO_STATIC_NSS || defined SHARED
37 # include <gnu/lib-names.h>
38 #endif
40 #include "nsswitch.h"
41 #include "../nscd/nscd_proto.h"
42 #include <sysdep.h>
44 /* Prototypes for the local functions. */
45 static name_database *nss_parse_file (const char *fname) internal_function;
46 static name_database_entry *nss_getline (char *line) internal_function;
47 static service_user *nss_parse_service_list (const char *line)
48 internal_function;
49 #if !defined DO_STATIC_NSS || defined SHARED
50 static service_library *nss_new_service (name_database *database,
51 const char *name) internal_function;
52 #endif
55 /* Declare external database variables. */
56 #define DEFINE_DATABASE(name) \
57 extern service_user *__nss_##name##_database attribute_hidden; \
58 weak_extern (__nss_##name##_database)
59 #include "databases.def"
60 #undef DEFINE_DATABASE
62 /* Structure to map database name to variable. */
63 static const struct
65 const char name[10];
66 service_user **dbp;
67 } databases[] =
69 #define DEFINE_DATABASE(name) \
70 { #name, &__nss_##name##_database },
71 #include "databases.def"
72 #undef DEFINE_DATABASE
74 #define ndatabases (sizeof (databases) / sizeof (databases[0]))
76 /* Flags whether custom rules for database is set. */
77 bool __nss_database_custom[NSS_DBSIDX_max];
80 __libc_lock_define_initialized (static, lock)
82 #if !defined DO_STATIC_NSS || defined SHARED
83 /* String with revision number of the shared object files. */
84 static const char *const __nss_shlib_revision = LIBNSS_FILES_SO + 15;
85 #endif
87 /* The root of the whole data base. */
88 static name_database *service_table;
90 /* List of default service lists that were generated by glibc because
91 /etc/nsswitch.conf did not provide a value.
92 The list is only maintained so we can free such service lists in
93 __libc_freeres. */
94 static name_database_entry *defconfig_entries;
97 #ifdef USE_NSCD
98 /* Nonzero if this is the nscd process. */
99 static bool is_nscd;
100 /* The callback passed to the init functions when nscd is used. */
101 static void (*nscd_init_cb) (size_t, struct traced_file *);
102 #endif
105 /* -1 == database not found
106 0 == database entry pointer stored */
108 __nss_database_lookup (const char *database, const char *alternate_name,
109 const char *defconfig, service_user **ni)
111 /* Prevent multiple threads to change the service table. */
112 __libc_lock_lock (lock);
114 /* Reconsider database variable in case some other thread called
115 `__nss_configure_lookup' while we waited for the lock. */
116 if (*ni != NULL)
118 __libc_lock_unlock (lock);
119 return 0;
122 /* Are we initialized yet? */
123 if (service_table == NULL)
124 /* Read config file. */
125 service_table = nss_parse_file (_PATH_NSSWITCH_CONF);
127 /* Test whether configuration data is available. */
128 if (service_table != NULL)
130 /* Return first `service_user' entry for DATABASE. */
131 name_database_entry *entry;
133 /* XXX Could use some faster mechanism here. But each database is
134 only requested once and so this might not be critical. */
135 for (entry = service_table->entry; entry != NULL; entry = entry->next)
136 if (strcmp (database, entry->name) == 0)
137 *ni = entry->service;
139 if (*ni == NULL && alternate_name != NULL)
140 /* We haven't found an entry so far. Try to find it with the
141 alternative name. */
142 for (entry = service_table->entry; entry != NULL; entry = entry->next)
143 if (strcmp (alternate_name, entry->name) == 0)
144 *ni = entry->service;
147 /* No configuration data is available, either because nsswitch.conf
148 doesn't exist or because it doesn't have a line for this database.
150 DEFCONFIG specifies the default service list for this database,
151 or null to use the most common default. */
152 if (*ni == NULL)
154 *ni = nss_parse_service_list (defconfig
155 ?: "nis [NOTFOUND=return] files");
156 if (*ni != NULL)
158 /* Record the memory we've just allocated in defconfig_entries list,
159 so we can free it later. */
160 name_database_entry *entry;
162 /* Allocate ENTRY plus size of name (1 here). */
163 entry = (name_database_entry *) malloc (sizeof (*entry) + 1);
165 if (entry != NULL)
167 entry->next = defconfig_entries;
168 entry->service = *ni;
169 entry->name[0] = '\0';
170 defconfig_entries = entry;
175 __libc_lock_unlock (lock);
177 return *ni != NULL ? 0 : -1;
179 libc_hidden_def (__nss_database_lookup)
182 /* -1 == not found
183 0 == function found
184 1 == finished */
186 __nss_lookup (service_user **ni, const char *fct_name, const char *fct2_name,
187 void **fctp)
189 *fctp = __nss_lookup_function (*ni, fct_name);
190 if (*fctp == NULL && fct2_name != NULL)
191 *fctp = __nss_lookup_function (*ni, fct2_name);
193 while (*fctp == NULL
194 && nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_CONTINUE
195 && (*ni)->next != NULL)
197 *ni = (*ni)->next;
199 *fctp = __nss_lookup_function (*ni, fct_name);
200 if (*fctp == NULL && fct2_name != NULL)
201 *fctp = __nss_lookup_function (*ni, fct2_name);
204 return *fctp != NULL ? 0 : (*ni)->next == NULL ? 1 : -1;
206 libc_hidden_def (__nss_lookup)
209 /* -1 == not found
210 0 == adjusted for next function
211 1 == finished */
213 __nss_next2 (service_user **ni, const char *fct_name, const char *fct2_name,
214 void **fctp, int status, int all_values)
216 if (all_values)
218 if (nss_next_action (*ni, NSS_STATUS_TRYAGAIN) == NSS_ACTION_RETURN
219 && nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_RETURN
220 && nss_next_action (*ni, NSS_STATUS_NOTFOUND) == NSS_ACTION_RETURN
221 && nss_next_action (*ni, NSS_STATUS_SUCCESS) == NSS_ACTION_RETURN)
222 return 1;
224 else
226 /* This is really only for debugging. */
227 if (__builtin_expect (NSS_STATUS_TRYAGAIN > status
228 || status > NSS_STATUS_RETURN, 0))
229 __libc_fatal ("illegal status in __nss_next");
231 if (nss_next_action (*ni, status) == NSS_ACTION_RETURN)
232 return 1;
235 if ((*ni)->next == NULL)
236 return -1;
240 *ni = (*ni)->next;
242 *fctp = __nss_lookup_function (*ni, fct_name);
243 if (*fctp == NULL && fct2_name != NULL)
244 *fctp = __nss_lookup_function (*ni, fct2_name);
246 while (*fctp == NULL
247 && nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_CONTINUE
248 && (*ni)->next != NULL);
250 return *fctp != NULL ? 0 : -1;
252 libc_hidden_def (__nss_next2)
256 attribute_compat_text_section
257 __nss_next (service_user **ni, const char *fct_name, void **fctp, int status,
258 int all_values)
260 return __nss_next2 (ni, fct_name, NULL, fctp, status, all_values);
265 __nss_configure_lookup (const char *dbname, const char *service_line)
267 service_user *new_db;
268 size_t cnt;
270 for (cnt = 0; cnt < ndatabases; ++cnt)
272 int cmp = strcmp (dbname, databases[cnt].name);
273 if (cmp == 0)
274 break;
275 if (cmp < 0)
277 __set_errno (EINVAL);
278 return -1;
282 if (cnt == ndatabases)
284 __set_errno (EINVAL);
285 return -1;
288 /* Test whether it is really used. */
289 if (databases[cnt].dbp == NULL)
290 /* Nothing to do, but we could do. */
291 return 0;
293 /* Try to generate new data. */
294 new_db = nss_parse_service_list (service_line);
295 if (new_db == NULL)
297 /* Illegal service specification. */
298 __set_errno (EINVAL);
299 return -1;
302 /* Prevent multiple threads to change the service table. */
303 __libc_lock_lock (lock);
305 /* Install new rules. */
306 *databases[cnt].dbp = new_db;
307 __nss_database_custom[cnt] = true;
309 __libc_lock_unlock (lock);
311 return 0;
315 /* Comparison function for searching NI->known tree. */
316 static int
317 known_compare (const void *p1, const void *p2)
319 return p1 == p2 ? 0 : strcmp (*(const char *const *) p1,
320 *(const char *const *) p2);
324 #if !defined DO_STATIC_NSS || defined SHARED
325 /* Load library. */
326 static int
327 nss_load_library (service_user *ni)
329 if (ni->library == NULL)
331 /* This service has not yet been used. Fetch the service
332 library for it, creating a new one if need be. If there
333 is no service table from the file, this static variable
334 holds the head of the service_library list made from the
335 default configuration. */
336 static name_database default_table;
337 ni->library = nss_new_service (service_table ?: &default_table,
338 ni->name);
339 if (ni->library == NULL)
340 return -1;
343 if (ni->library->lib_handle == NULL)
345 /* Load the shared library. */
346 size_t shlen = (7 + strlen (ni->name) + 3
347 + strlen (__nss_shlib_revision) + 1);
348 int saved_errno = errno;
349 char shlib_name[shlen];
351 /* Construct shared object name. */
352 __stpcpy (__stpcpy (__stpcpy (__stpcpy (shlib_name,
353 "libnss_"),
354 ni->name),
355 ".so"),
356 __nss_shlib_revision);
358 ni->library->lib_handle = __libc_dlopen (shlib_name);
359 if (ni->library->lib_handle == NULL)
361 /* Failed to load the library. */
362 ni->library->lib_handle = (void *) -1l;
363 __set_errno (saved_errno);
365 # ifdef USE_NSCD
366 else if (is_nscd)
368 /* Call the init function when nscd is used. */
369 size_t initlen = (5 + strlen (ni->name)
370 + strlen ("_init") + 1);
371 char init_name[initlen];
373 /* Construct the init function name. */
374 __stpcpy (__stpcpy (__stpcpy (init_name,
375 "_nss_"),
376 ni->name),
377 "_init");
379 /* Find the optional init function. */
380 void (*ifct) (void (*) (size_t, struct traced_file *))
381 = __libc_dlsym (ni->library->lib_handle, init_name);
382 if (ifct != NULL)
384 void (*cb) (size_t, struct traced_file *) = nscd_init_cb;
385 # ifdef PTR_DEMANGLE
386 PTR_DEMANGLE (cb);
387 # endif
388 ifct (cb);
391 # endif
394 return 0;
396 #endif
399 void *
400 __nss_lookup_function (service_user *ni, const char *fct_name)
402 void **found, *result;
404 /* We now modify global data. Protect it. */
405 __libc_lock_lock (lock);
407 /* Search the tree of functions previously requested. Data in the
408 tree are `known_function' structures, whose first member is a
409 `const char *', the lookup key. The search returns a pointer to
410 the tree node structure; the first member of the is a pointer to
411 our structure (i.e. what will be a `known_function'); since the
412 first member of that is the lookup key string, &FCT_NAME is close
413 enough to a pointer to our structure to use as a lookup key that
414 will be passed to `known_compare' (above). */
416 found = __tsearch (&fct_name, &ni->known, &known_compare);
417 if (found == NULL)
418 /* This means out-of-memory. */
419 result = NULL;
420 else if (*found != &fct_name)
422 /* The search found an existing structure in the tree. */
423 result = ((known_function *) *found)->fct_ptr;
424 #ifdef PTR_DEMANGLE
425 PTR_DEMANGLE (result);
426 #endif
428 else
430 /* This name was not known before. Now we have a node in the tree
431 (in the proper sorted position for FCT_NAME) that points to
432 &FCT_NAME instead of any real `known_function' structure.
433 Allocate a new structure and fill it in. */
435 known_function *known = malloc (sizeof *known);
436 if (! known)
438 #if !defined DO_STATIC_NSS || defined SHARED
439 remove_from_tree:
440 #endif
441 /* Oops. We can't instantiate this node properly.
442 Remove it from the tree. */
443 __tdelete (&fct_name, &ni->known, &known_compare);
444 free (known);
445 result = NULL;
447 else
449 /* Point the tree node at this new structure. */
450 *found = known;
451 known->fct_name = fct_name;
453 #if !defined DO_STATIC_NSS || defined SHARED
454 /* Load the appropriate library. */
455 if (nss_load_library (ni) != 0)
456 /* This only happens when out of memory. */
457 goto remove_from_tree;
459 if (ni->library->lib_handle == (void *) -1l)
460 /* Library not found => function not found. */
461 result = NULL;
462 else
464 /* Get the desired function. */
465 size_t namlen = (5 + strlen (ni->name) + 1
466 + strlen (fct_name) + 1);
467 char name[namlen];
469 /* Construct the function name. */
470 __stpcpy (__stpcpy (__stpcpy (__stpcpy (name, "_nss_"),
471 ni->name),
472 "_"),
473 fct_name);
475 /* Look up the symbol. */
476 result = __libc_dlsym (ni->library->lib_handle, name);
478 #else
479 /* We can't get function address dynamically in static linking. */
481 # define DEFINE_ENT(h,nm) \
482 { #h"_get"#nm"ent_r", _nss_##h##_get##nm##ent_r }, \
483 { #h"_end"#nm"ent", _nss_##h##_end##nm##ent }, \
484 { #h"_set"#nm"ent", _nss_##h##_set##nm##ent },
485 # define DEFINE_GET(h,nm) \
486 { #h"_get"#nm"_r", _nss_##h##_get##nm##_r },
487 # define DEFINE_GETBY(h,nm,ky) \
488 { #h"_get"#nm"by"#ky"_r", _nss_##h##_get##nm##by##ky##_r },
489 static struct fct_tbl { const char *fname; void *fp; } *tp, tbl[] =
491 # include "function.def"
492 { NULL, NULL }
494 size_t namlen = (5 + strlen (ni->name) + 1
495 + strlen (fct_name) + 1);
496 char name[namlen];
498 /* Construct the function name. */
499 __stpcpy (__stpcpy (__stpcpy (name, ni->name),
500 "_"),
501 fct_name);
503 result = NULL;
504 for (tp = &tbl[0]; tp->fname; tp++)
505 if (strcmp (tp->fname, name) == 0)
507 result = tp->fp;
508 break;
511 #endif
513 /* Remember function pointer for later calls. Even if null, we
514 record it so a second try needn't search the library again. */
515 known->fct_ptr = result;
516 #ifdef PTR_MANGLE
517 PTR_MANGLE (known->fct_ptr);
518 #endif
522 /* Remove the lock. */
523 __libc_lock_unlock (lock);
525 return result;
527 libc_hidden_def (__nss_lookup_function)
530 static name_database *
531 internal_function
532 nss_parse_file (const char *fname)
534 FILE *fp;
535 name_database *result;
536 name_database_entry *last;
537 char *line;
538 size_t len;
540 /* Open the configuration file. */
541 fp = fopen (fname, "rce");
542 if (fp == NULL)
543 return NULL;
545 /* No threads use this stream. */
546 __fsetlocking (fp, FSETLOCKING_BYCALLER);
548 result = (name_database *) malloc (sizeof (name_database));
549 if (result == NULL)
551 fclose (fp);
552 return NULL;
555 result->entry = NULL;
556 result->library = NULL;
557 last = NULL;
558 line = NULL;
559 len = 0;
562 name_database_entry *this;
563 ssize_t n;
565 n = __getline (&line, &len, fp);
566 if (n < 0)
567 break;
568 if (line[n - 1] == '\n')
569 line[n - 1] = '\0';
571 /* Because the file format does not know any form of quoting we
572 can search forward for the next '#' character and if found
573 make it terminating the line. */
574 *__strchrnul (line, '#') = '\0';
576 /* If the line is blank it is ignored. */
577 if (line[0] == '\0')
578 continue;
580 /* Each line completely specifies the actions for a database. */
581 this = nss_getline (line);
582 if (this != NULL)
584 if (last != NULL)
585 last->next = this;
586 else
587 result->entry = this;
589 last = this;
592 while (!feof_unlocked (fp));
594 /* Free the buffer. */
595 free (line);
596 /* Close configuration file. */
597 fclose (fp);
599 return result;
603 /* Read the source names:
604 `( <source> ( "[" "!"? (<status> "=" <action> )+ "]" )? )*'
606 static service_user *
607 internal_function
608 nss_parse_service_list (const char *line)
610 service_user *result = NULL, **nextp = &result;
612 while (1)
614 service_user *new_service;
615 const char *name;
617 while (isspace (line[0]))
618 ++line;
619 if (line[0] == '\0')
620 /* No source specified. */
621 return result;
623 /* Read <source> identifier. */
624 name = line;
625 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '[')
626 ++line;
627 if (name == line)
628 return result;
631 new_service = (service_user *) malloc (sizeof (service_user)
632 + (line - name + 1));
633 if (new_service == NULL)
634 return result;
636 *((char *) __mempcpy (new_service->name, name, line - name)) = '\0';
638 /* Set default actions. */
639 new_service->actions[2 + NSS_STATUS_TRYAGAIN] = NSS_ACTION_CONTINUE;
640 new_service->actions[2 + NSS_STATUS_UNAVAIL] = NSS_ACTION_CONTINUE;
641 new_service->actions[2 + NSS_STATUS_NOTFOUND] = NSS_ACTION_CONTINUE;
642 new_service->actions[2 + NSS_STATUS_SUCCESS] = NSS_ACTION_RETURN;
643 new_service->actions[2 + NSS_STATUS_RETURN] = NSS_ACTION_RETURN;
644 new_service->library = NULL;
645 new_service->known = NULL;
646 new_service->next = NULL;
648 while (isspace (line[0]))
649 ++line;
651 if (line[0] == '[')
653 /* Read criterions. */
655 ++line;
656 while (line[0] != '\0' && isspace (line[0]));
660 int not;
661 enum nss_status status;
662 lookup_actions action;
664 /* Grok ! before name to mean all statii but that one. */
665 not = line[0] == '!';
666 if (not)
667 ++line;
669 /* Read status name. */
670 name = line;
671 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '='
672 && line[0] != ']')
673 ++line;
675 /* Compare with known statii. */
676 if (line - name == 7)
678 if (__strncasecmp (name, "SUCCESS", 7) == 0)
679 status = NSS_STATUS_SUCCESS;
680 else if (__strncasecmp (name, "UNAVAIL", 7) == 0)
681 status = NSS_STATUS_UNAVAIL;
682 else
683 goto finish;
685 else if (line - name == 8)
687 if (__strncasecmp (name, "NOTFOUND", 8) == 0)
688 status = NSS_STATUS_NOTFOUND;
689 else if (__strncasecmp (name, "TRYAGAIN", 8) == 0)
690 status = NSS_STATUS_TRYAGAIN;
691 else
692 goto finish;
694 else
695 goto finish;
697 while (isspace (line[0]))
698 ++line;
699 if (line[0] != '=')
700 goto finish;
702 ++line;
703 while (isspace (line[0]));
705 name = line;
706 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '='
707 && line[0] != ']')
708 ++line;
710 if (line - name == 6 && __strncasecmp (name, "RETURN", 6) == 0)
711 action = NSS_ACTION_RETURN;
712 else if (line - name == 8
713 && __strncasecmp (name, "CONTINUE", 8) == 0)
714 action = NSS_ACTION_CONTINUE;
715 else
716 goto finish;
718 if (not)
720 /* Save the current action setting for this status,
721 set them all to the given action, and reset this one. */
722 const lookup_actions save = new_service->actions[2 + status];
723 new_service->actions[2 + NSS_STATUS_TRYAGAIN] = action;
724 new_service->actions[2 + NSS_STATUS_UNAVAIL] = action;
725 new_service->actions[2 + NSS_STATUS_NOTFOUND] = action;
726 new_service->actions[2 + NSS_STATUS_SUCCESS] = action;
727 new_service->actions[2 + status] = save;
729 else
730 new_service->actions[2 + status] = action;
732 /* Skip white spaces. */
733 while (isspace (line[0]))
734 ++line;
736 while (line[0] != ']');
738 /* Skip the ']'. */
739 ++line;
742 *nextp = new_service;
743 nextp = &new_service->next;
744 continue;
746 finish:
747 free (new_service);
748 return result;
752 static name_database_entry *
753 internal_function
754 nss_getline (char *line)
756 const char *name;
757 name_database_entry *result;
758 size_t len;
760 /* Ignore leading white spaces. ATTENTION: this is different from
761 what is implemented in Solaris. The Solaris man page says a line
762 beginning with a white space character is ignored. We regard
763 this as just another misfeature in Solaris. */
764 while (isspace (line[0]))
765 ++line;
767 /* Recognize `<database> ":"'. */
768 name = line;
769 while (line[0] != '\0' && !isspace (line[0]) && line[0] != ':')
770 ++line;
771 if (line[0] == '\0' || name == line)
772 /* Syntax error. */
773 return NULL;
774 *line++ = '\0';
776 len = strlen (name) + 1;
778 result = (name_database_entry *) malloc (sizeof (name_database_entry) + len);
779 if (result == NULL)
780 return NULL;
782 /* Save the database name. */
783 memcpy (result->name, name, len);
785 /* Parse the list of services. */
786 result->service = nss_parse_service_list (line);
788 result->next = NULL;
789 return result;
793 #if !defined DO_STATIC_NSS || defined SHARED
794 static service_library *
795 internal_function
796 nss_new_service (name_database *database, const char *name)
798 service_library **currentp = &database->library;
800 while (*currentp != NULL)
802 if (strcmp ((*currentp)->name, name) == 0)
803 return *currentp;
804 currentp = &(*currentp)->next;
807 /* We have to add the new service. */
808 *currentp = (service_library *) malloc (sizeof (service_library));
809 if (*currentp == NULL)
810 return NULL;
812 (*currentp)->name = name;
813 (*currentp)->lib_handle = NULL;
814 (*currentp)->next = NULL;
816 return *currentp;
818 #endif
821 #if defined SHARED && defined USE_NSCD
822 /* Load all libraries for the service. */
823 static void
824 nss_load_all_libraries (const char *service, const char *def)
826 service_user *ni = NULL;
828 if (__nss_database_lookup (service, NULL, def, &ni) == 0)
829 while (ni != NULL)
831 nss_load_library (ni);
832 ni = ni->next;
837 /* Called by nscd and nscd alone. */
838 void
839 __nss_disable_nscd (void (*cb) (size_t, struct traced_file *))
841 # ifdef PTR_MANGLE
842 PTR_MANGLE (cb);
843 # endif
844 nscd_init_cb = cb;
845 is_nscd = true;
847 /* Find all the relevant modules so that the init functions are called. */
848 nss_load_all_libraries ("passwd", "compat [NOTFOUND=return] files");
849 nss_load_all_libraries ("group", "compat [NOTFOUND=return] files");
850 nss_load_all_libraries ("hosts", "dns [!UNAVAIL=return] files");
851 nss_load_all_libraries ("services", NULL);
853 /* Disable all uses of NSCD. */
854 __nss_not_use_nscd_passwd = -1;
855 __nss_not_use_nscd_group = -1;
856 __nss_not_use_nscd_hosts = -1;
857 __nss_not_use_nscd_services = -1;
858 __nss_not_use_nscd_netgroup = -1;
860 #endif
862 static void
863 free_database_entries (name_database_entry *entry)
865 while (entry != NULL)
867 name_database_entry *olde = entry;
868 service_user *service = entry->service;
870 while (service != NULL)
872 service_user *olds = service;
874 if (service->known != NULL)
875 __tdestroy (service->known, free);
877 service = service->next;
878 free (olds);
881 entry = entry->next;
882 free (olde);
886 /* Free all resources if necessary. */
887 libc_freeres_fn (free_defconfig)
889 name_database_entry *entry = defconfig_entries;
891 if (entry == NULL)
892 /* defconfig was not used. */
893 return;
895 /* Don't disturb ongoing other threads (if there are any). */
896 defconfig_entries = NULL;
898 free_database_entries (entry);
901 libc_freeres_fn (free_mem)
903 name_database *top = service_table;
904 service_library *library;
906 if (top == NULL)
907 /* Maybe we have not read the nsswitch.conf file. */
908 return;
910 /* Don't disturb ongoing other threads (if there are any). */
911 service_table = NULL;
913 free_database_entries (top->entry);
915 library = top->library;
916 while (library != NULL)
918 service_library *oldl = library;
920 if (library->lib_handle && library->lib_handle != (void *) -1l)
921 __libc_dlclose (library->lib_handle);
923 library = library->next;
924 free (oldl);
927 free (top);