1 /* Copyright (C) 1996 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 Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 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 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
24 #include <libc-lock.h>
31 #include "../elf/link.h" /* We need some help from ld.so. */
33 /* Prototypes for the local functions. */
34 static void *nss_lookup_function (service_user *ni, const char *fct_name);
35 static name_database *nss_parse_file (const char *fname);
36 static name_database_entry *nss_getline (char *line);
37 static service_user *nss_parse_service_list (const char *line);
38 static service_library *nss_new_service (name_database *database,
42 /* Declare external database variables. */
43 #define DEFINE_DATABASE(name) \
44 extern service_user *__nss_##name##_database; \
45 weak_extern (__nss_##name##_database)
46 #include "databases.def"
47 #undef DEFINE_DATABASE
49 /* Structure to map database name to variable. */
56 #define DEFINE_DATABASE(name) \
57 { #name, &__nss_##name##_database },
58 #include "databases.def"
59 #undef DEFINE_DATABASE
63 __libc_lock_define_initialized (static, lock)
66 /* Nonzero if the sevices are already initialized. */
67 static int nss_initialized;
70 /* The root of the whole data base. */
71 static name_database *service_table;
74 /* -1 == database not found
75 0 == database entry pointer stored */
77 __nss_database_lookup (const char *database, const char *defconfig,
80 /* Prevent multiple threads to change the service table. */
81 __libc_lock_lock (lock);
83 /* Reconsider database variable in case some other thread called
84 `__nss_configure_lookup' while we waited for the lock. */
87 __libc_lock_unlock (lock);
91 if (nss_initialized == 0 && service_table == NULL)
92 /* Read config file. */
93 service_table = nss_parse_file (_PATH_NSSWITCH_CONF);
95 /* Test whether configuration data is available. */
96 if (service_table != NULL)
98 /* Return first `service_user' entry for DATABASE. */
99 name_database_entry *entry;
101 /* XXX Could use some faster mechanism here. But each database is
102 only requested once and so this might not be critical. */
103 for (entry = service_table->entry; entry != NULL; entry = entry->next)
104 if (strcmp (database, entry->name) == 0)
105 *ni = entry->service;
108 /* No configuration data is available, either because nsswitch.conf
109 doesn't exist or because it doesn't has a line for this database.
111 DEFCONFIG specifies the default service list for this database,
112 or null to use the most common default. */
114 *ni = nss_parse_service_list (defconfig
115 ?: "compat [NOTFOUND=return] files");
117 __libc_lock_unlock (lock);
124 0 == adjusted for next function */
126 __nss_lookup (service_user **ni, const char *fct_name, void **fctp)
128 *fctp = nss_lookup_function (*ni, fct_name);
131 && nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_CONTINUE
132 && (*ni)->next != NULL)
136 *fctp = nss_lookup_function (*ni, fct_name);
139 return *fctp != NULL ? 0 : -1;
144 0 == adjusted for next function
147 __nss_next (service_user **ni, const char *fct_name, void **fctp, int status,
152 if (nss_next_action (*ni, NSS_STATUS_TRYAGAIN) == NSS_ACTION_RETURN
153 && nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_RETURN
154 && nss_next_action (*ni, NSS_STATUS_NOTFOUND) == NSS_ACTION_RETURN
155 && nss_next_action (*ni, NSS_STATUS_SUCCESS) == NSS_ACTION_RETURN)
160 /* This is really only for debugging. */
161 if (NSS_STATUS_TRYAGAIN > status || status > NSS_STATUS_RETURN)
162 __libc_fatal ("illegal status in " __FUNCTION__);
164 if (nss_next_action (*ni, status) == NSS_ACTION_RETURN)
168 if ((*ni)->next == NULL)
175 *fctp = nss_lookup_function (*ni, fct_name);
178 && nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_CONTINUE
179 && (*ni)->next != NULL);
181 return *fctp != NULL ? 0 : -1;
186 __nss_configure_lookup (const char *dbname, const char *service_line)
188 service_user *new_db;
191 for (cnt = 0; cnt < sizeof databases; ++cnt)
193 int cmp = strcmp (dbname, databases[cnt].name);
198 __set_errno (EINVAL);
203 if (cnt == sizeof databases)
205 __set_errno (EINVAL);
209 /* Test whether it is really used. */
210 if (databases[cnt].dbp == NULL)
211 /* Nothing to do, but we could do. */
214 /* Try to generate new data. */
215 new_db = nss_parse_service_list (service_line);
218 /* Illegal service specification. */
219 __set_errno (EINVAL);
223 /* Prevent multiple threads to change the service table. */
224 __libc_lock_lock (lock);
226 /* Install new rules. */
227 *databases[cnt].dbp = new_db;
229 __libc_lock_unlock (lock);
236 nss_dlerror_run (void (*operate) (void))
238 char *last_errstring = NULL;
239 const char *last_object_name = NULL;
242 (void) _dl_catch_error (&last_errstring, &last_object_name, operate);
244 result = last_errstring != NULL;
246 free (last_errstring);
252 /* Comparison function for searching NI->known tree. */
254 known_compare (const void *p1, const void *p2)
256 return p1 == p2 ? 0 : strcmp (*(const char *const *) p1,
257 *(const char *const *) p2);
262 nss_lookup_function (service_user *ni, const char *fct_name)
264 void **found, *result;
266 /* We now modify global data. Protect it. */
267 __libc_lock_lock (lock);
269 /* Search the tree of functions previously requested. Data in the
270 tree are `known_function' structures, whose first member is a
271 `const char *', the lookup key. The search returns a pointer to
272 the tree node structure; the first member of the is a pointer to
273 our structure (i.e. what will be a `known_function'); since the
274 first member of that is the lookup key string, &FCT_NAME is close
275 enough to a pointer to our structure to use as a lookup key that
276 will be passed to `known_compare' (above). */
278 found = __tsearch (&fct_name, (void **) &ni->known, &known_compare);
279 if (*found != &fct_name)
280 /* The search found an existing structure in the tree. */
281 result = ((known_function *) *found)->fct_ptr;
284 /* This name was not known before. Now we have a node in the tree
285 (in the proper sorted position for FCT_NAME) that points to
286 &FCT_NAME instead of any real `known_function' structure.
287 Allocate a new structure and fill it in. */
289 known_function *known = malloc (sizeof *known);
293 /* Oops. We can't instantiate this node properly.
294 Remove it from the tree. */
295 __tdelete (&fct_name, (void **) &ni->known, &known_compare);
300 /* Point the tree node at this new structure. */
302 known->fct_name = fct_name;
304 if (ni->library == NULL)
306 /* This service has not yet been used. Fetch the service
307 library for it, creating a new one if need be. If there
308 is no service table from the file, this static variable
309 holds the head of the service_library list made from the
310 default configuration. */
311 static name_database default_table;
312 ni->library = nss_new_service (service_table ?: &default_table,
314 if (ni->library == NULL)
316 /* This only happens when out of memory. */
318 goto remove_from_tree;
322 if (ni->library->lib_handle == NULL)
324 /* Load the shared library. */
325 size_t shlen = (7 + strlen (ni->library->name) + 3
326 + sizeof (NSS_SHLIB_REVISION));
327 char shlib_name[shlen];
331 /* Open and relocate the shared object. */
332 ni->library->lib_handle = _dl_open (shlib_name, RTLD_LAZY);
335 /* Construct shared object name. */
336 __stpcpy (__stpcpy (__stpcpy (shlib_name, "libnss_"),
338 ".so" NSS_SHLIB_REVISION);
340 if (nss_dlerror_run (do_open) != 0)
341 /* Failed to load the library. */
342 ni->library->lib_handle = (void *) -1;
345 if (ni->library->lib_handle == (void *) -1)
346 /* Library not found => function not found. */
350 /* Get the desired function. Again, GNU ld.so magic ahead. */
351 size_t namlen = (5 + strlen (ni->library->name) + 1
352 + strlen (fct_name) + 1);
354 struct link_map *map = ni->library->lib_handle;
356 const ElfW(Sym) *ref = NULL;
359 struct link_map *scope[2] = { map, NULL };
360 loadbase = _dl_lookup_symbol (name, &ref,
361 scope, map->l_name, 0);
364 /* Construct the function name. */
365 __stpcpy (__stpcpy (__stpcpy (__stpcpy (name, "_nss_"),
370 /* Look up the symbol. */
371 result = (nss_dlerror_run (get_sym)
372 ? NULL : (void *) (loadbase + ref->st_value));
375 /* Remember function pointer for later calls. Even if null, we
376 record it so a second try needn't search the library again. */
377 known->fct_ptr = result;
381 /* Remove the lock. */
382 __libc_lock_unlock (lock);
388 static name_database *
389 nss_parse_file (const char *fname)
392 name_database *result;
393 name_database_entry *last;
397 /* Open the configuration file. */
398 fp = fopen (fname, "r");
402 result = (name_database *) malloc (sizeof (name_database));
406 result->entry = NULL;
407 result->library = NULL;
413 name_database_entry *this;
417 n = __getline (&line, &len, fp);
420 if (line[n - 1] == '\n')
423 /* Because the file format does not know any form of quoting we
424 can search forward for the next '#' character and if found
425 make it terminating the line. */
426 cp = strchr (line, '#');
430 /* If the line is blank it is ignored. */
434 /* Each line completely specifies the actions for a database. */
435 this = nss_getline (line);
441 result->entry = this;
448 /* Free the buffer. */
450 /* Close configuration file. */
457 /* Read the source names:
458 `( <source> ( "[" "!"? (<status> "=" <action> )+ "]" )? )*'
460 static service_user *
461 nss_parse_service_list (const char *line)
463 service_user *result = NULL, **nextp = &result;
467 service_user *new_service;
470 while (isspace (line[0]))
473 /* No source specified. */
476 /* Read <source> identifier. */
478 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '[')
484 new_service = (service_user *) malloc (sizeof (service_user));
485 if (new_service == NULL)
489 char *source = (char *) malloc (line - name + 1);
495 memcpy (source, name, line - name);
496 source[line - name] = '\0';
498 new_service->name = source;
501 /* Set default actions. */
502 new_service->actions[2 + NSS_STATUS_TRYAGAIN] = NSS_ACTION_CONTINUE;
503 new_service->actions[2 + NSS_STATUS_UNAVAIL] = NSS_ACTION_CONTINUE;
504 new_service->actions[2 + NSS_STATUS_NOTFOUND] = NSS_ACTION_CONTINUE;
505 new_service->actions[2 + NSS_STATUS_SUCCESS] = NSS_ACTION_RETURN;
506 new_service->actions[2 + NSS_STATUS_RETURN] = NSS_ACTION_RETURN;
507 new_service->library = NULL;
508 new_service->known = NULL;
509 new_service->next = NULL;
511 while (isspace (line[0]))
516 /* Read criterions. */
519 while (line[0] != '\0' && isspace (line[0]));
524 enum nss_status status;
525 lookup_actions action;
527 /* Grok ! before name to mean all statii but that one. */
528 if (not = line[0] == '!')
531 /* Read status name. */
533 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '='
537 /* Compare with known statii. */
538 if (line - name == 7)
540 if (__strncasecmp (name, "SUCCESS", 7) == 0)
541 status = NSS_STATUS_SUCCESS;
542 else if (__strncasecmp (name, "UNAVAIL", 7) == 0)
543 status = NSS_STATUS_UNAVAIL;
547 else if (line - name == 8)
549 if (__strncasecmp (name, "NOTFOUND", 8) == 0)
550 status = NSS_STATUS_NOTFOUND;
551 else if (__strncasecmp (name, "TRYAGAIN", 8) == 0)
552 status = NSS_STATUS_TRYAGAIN;
559 while (isspace (line[0]))
565 while (isspace (line[0]));
568 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '='
572 if (line - name == 6 && __strncasecmp (name, "RETURN", 6) == 0)
573 action = NSS_ACTION_RETURN;
574 else if (line - name == 8
575 && __strncasecmp (name, "CONTINUE", 8) == 0)
576 action = NSS_ACTION_CONTINUE;
582 /* Save the current action setting for this status,
583 set them all to the given action, and reset this one. */
584 const lookup_actions save = new_service->actions[2 + status];
585 new_service->actions[2 + NSS_STATUS_TRYAGAIN] = action;
586 new_service->actions[2 + NSS_STATUS_UNAVAIL] = action;
587 new_service->actions[2 + NSS_STATUS_NOTFOUND] = action;
588 new_service->actions[2 + NSS_STATUS_SUCCESS] = action;
589 new_service->actions[2 + status] = save;
592 new_service->actions[2 + status] = action;
594 /* Skip white spaces. */
595 while (isspace (line[0]))
598 while (line[0] != ']');
604 *nextp = new_service;
605 nextp = &new_service->next;
609 static name_database_entry *
610 nss_getline (char *line)
613 name_database_entry *result;
615 /* Ignore leading white spaces. ATTENTION: this is different from
616 what is implemented in Solaris. The Solaris man page says a line
617 beginning with a white space character is ignored. We regard
618 this as just another misfeature in Solaris. */
619 while (isspace (line[0]))
622 /* Recognize `<database> ":"'. */
624 while (line[0] != '\0' && !isspace (line[0]) && line[0] != ':')
626 if (line[0] == '\0' || name == line)
631 result = (name_database_entry *) malloc (sizeof (name_database_entry));
635 /* Save the database name. */
637 const size_t len = strlen (name) + 1;
638 char *new = malloc (len);
644 result->name = memcpy (new, name, len);
647 /* Parse the list of services. */
648 result->service = nss_parse_service_list (line);
655 static service_library *
656 nss_new_service (name_database *database, const char *name)
658 service_library **currentp = &database->library;
660 while (*currentp != NULL)
662 if (strcmp ((*currentp)->name, name) == 0)
664 currentp = &(*currentp)->next;
667 /* We have to add the new service. */
668 *currentp = (service_library *) malloc (sizeof (service_library));
669 if (*currentp == NULL)
672 (*currentp)->name = name;
673 (*currentp)->lib_handle = NULL;
674 (*currentp)->next = NULL;