update from main archive 961001
[glibc.git] / nss / nsswitch.c
blob9f27ef80ffde6a41a4296055d01cd6952f424c78
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. */
20 #include <ctype.h>
21 #include <dlfcn.h>
22 #include <errno.h>
23 #include <netdb.h>
24 #include <libc-lock.h>
25 #include <search.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
30 #include "nsswitch.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,
39 const char *name);
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. */
50 static struct
52 const char *name;
53 service_user **dbp;
54 } databases[] =
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 */
76 int
77 __nss_database_lookup (const char *database, const char *defconfig,
78 service_user **ni)
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. */
85 if (*ni != NULL)
87 __libc_lock_unlock (lock);
88 return 0;
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. */
113 if (*ni == NULL)
114 *ni = nss_parse_service_list (defconfig
115 ?: "compat [NOTFOUND=return] files");
117 __libc_lock_unlock (lock);
119 return 0;
123 /* -1 == not found
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);
130 while (*fctp == NULL
131 && nss_next_action (*ni, NSS_STATUS_UNAVAIL) == NSS_ACTION_CONTINUE
132 && (*ni)->next != NULL)
134 *ni = (*ni)->next;
136 *fctp = nss_lookup_function (*ni, fct_name);
139 return *fctp != NULL ? 0 : -1;
143 /* -1 == not found
144 0 == adjusted for next function
145 1 == finished */
147 __nss_next (service_user **ni, const char *fct_name, void **fctp, int status,
148 int all_values)
150 if (all_values)
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)
156 return 1;
158 else
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)
165 return 1;
168 if ((*ni)->next == NULL)
169 return -1;
173 *ni = (*ni)->next;
175 *fctp = nss_lookup_function (*ni, fct_name);
177 while (*fctp == NULL
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;
189 size_t cnt;
191 for (cnt = 0; cnt < sizeof databases; ++cnt)
193 int cmp = strcmp (dbname, databases[cnt].name);
194 if (cmp == 0)
195 break;
196 if (cmp > 0)
198 __set_errno (EINVAL);
199 return -1;
203 if (cnt == sizeof databases)
205 __set_errno (EINVAL);
206 return -1;
209 /* Test whether it is really used. */
210 if (databases[cnt].dbp == NULL)
211 /* Nothing to do, but we could do. */
212 return 0;
214 /* Try to generate new data. */
215 new_db = nss_parse_service_list (service_line);
216 if (new_db == NULL)
218 /* Illegal service specification. */
219 __set_errno (EINVAL);
220 return -1;
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);
231 return 0;
235 static int
236 nss_dlerror_run (void (*operate) (void))
238 char *last_errstring = NULL;
239 const char *last_object_name = NULL;
240 int result;
242 (void) _dl_catch_error (&last_errstring, &last_object_name, operate);
244 result = last_errstring != NULL;
245 if (result)
246 free (last_errstring);
248 return result;
252 /* Comparison function for searching NI->known tree. */
253 static int
254 known_compare (const void *p1, const void *p2)
256 return p1 == p2 ? 0 : strcmp (*(const char *const *) p1,
257 *(const char *const *) p2);
261 static void *
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;
282 else
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);
290 if (! known)
292 remove_from_tree:
293 /* Oops. We can't instantiate this node properly.
294 Remove it from the tree. */
295 __tdelete (&fct_name, (void **) &ni->known, &known_compare);
296 result = NULL;
298 else
300 /* Point the tree node at this new structure. */
301 *found = known;
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,
313 ni->name);
314 if (ni->library == NULL)
316 /* This only happens when out of memory. */
317 free (known);
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];
329 void do_open (void)
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_"),
337 ni->library->name),
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. */
347 result = NULL;
348 else
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);
353 char name[namlen];
354 struct link_map *map = ni->library->lib_handle;
355 ElfW(Addr) loadbase;
356 const ElfW(Sym) *ref = NULL;
357 void get_sym (void)
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_"),
366 ni->library->name),
367 "_"),
368 fct_name);
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);
384 return result;
388 static name_database *
389 nss_parse_file (const char *fname)
391 FILE *fp;
392 name_database *result;
393 name_database_entry *last;
394 char *line;
395 size_t len;
397 /* Open the configuration file. */
398 fp = fopen (fname, "r");
399 if (fp == NULL)
400 return NULL;
402 result = (name_database *) malloc (sizeof (name_database));
403 if (result == NULL)
404 return NULL;
406 result->entry = NULL;
407 result->library = NULL;
408 last = NULL;
409 line = NULL;
410 len = 0;
413 name_database_entry *this;
414 ssize_t n;
415 char *cp;
417 n = __getline (&line, &len, fp);
418 if (n < 0)
419 break;
420 if (line[n - 1] == '\n')
421 line[n - 1] = '\0';
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, '#');
427 if (cp != NULL)
428 *cp = '\0';
430 /* If the line is blank it is ignored. */
431 if (line[0] == '\0')
432 continue;
434 /* Each line completely specifies the actions for a database. */
435 this = nss_getline (line);
436 if (this != NULL)
438 if (last != NULL)
439 last->next = this;
440 else
441 result->entry = this;
443 last = this;
446 while (!feof (fp));
448 /* Free the buffer. */
449 free (line);
450 /* Close configuration file. */
451 fclose (fp);
453 return result;
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;
465 while (1)
467 service_user *new_service;
468 const char *name;
470 while (isspace (line[0]))
471 ++line;
472 if (line[0] == '\0')
473 /* No source specified. */
474 return result;
476 /* Read <source> identifier. */
477 name = line;
478 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '[')
479 ++line;
480 if (name == line)
481 return result;
484 new_service = (service_user *) malloc (sizeof (service_user));
485 if (new_service == NULL)
486 return result;
487 else
489 char *source = (char *) malloc (line - name + 1);
490 if (source == NULL)
492 free (new_service);
493 return result;
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]))
512 ++line;
514 if (line[0] == '[')
516 /* Read criterions. */
518 ++line;
519 while (line[0] != '\0' && isspace (line[0]));
523 int not;
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] == '!')
529 ++line;
531 /* Read status name. */
532 name = line;
533 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '='
534 && line[0] != ']')
535 ++line;
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;
544 else
545 return result;
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;
553 else
554 return result;
556 else
557 return result;
559 while (isspace (line[0]))
560 ++line;
561 if (line[0] != '=')
562 return result;
564 ++line;
565 while (isspace (line[0]));
567 name = line;
568 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '='
569 && line[0] != ']')
570 ++line;
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;
577 else
578 return result;
580 if (not)
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;
591 else
592 new_service->actions[2 + status] = action;
594 /* Skip white spaces. */
595 while (isspace (line[0]))
596 ++line;
598 while (line[0] != ']');
600 /* Skip the ']'. */
601 ++line;
604 *nextp = new_service;
605 nextp = &new_service->next;
609 static name_database_entry *
610 nss_getline (char *line)
612 const char *name;
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]))
620 ++line;
622 /* Recognize `<database> ":"'. */
623 name = line;
624 while (line[0] != '\0' && !isspace (line[0]) && line[0] != ':')
625 ++line;
626 if (line[0] == '\0' || name == line)
627 /* Syntax error. */
628 return NULL;
629 *line++ = '\0';
631 result = (name_database_entry *) malloc (sizeof (name_database_entry));
632 if (result == NULL)
633 return NULL;
635 /* Save the database name. */
637 const size_t len = strlen (name) + 1;
638 char *new = malloc (len);
639 if (new == NULL)
641 free (result);
642 return NULL;
644 result->name = memcpy (new, name, len);
647 /* Parse the list of services. */
648 result->service = nss_parse_service_list (line);
650 result->next = NULL;
651 return result;
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)
663 return *currentp;
664 currentp = &(*currentp)->next;
667 /* We have to add the new service. */
668 *currentp = (service_library *) malloc (sizeof (service_library));
669 if (*currentp == NULL)
670 return NULL;
672 (*currentp)->name = name;
673 (*currentp)->lib_handle = NULL;
674 (*currentp)->next = NULL;
676 return *currentp;