1 /* Copyright (C) 1996-2017 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/>. */
26 # include <nscd/nscd_proto.h>
29 # include <resolv/resolv_context.h>
31 /*******************************************************************\
32 |* Here we assume several symbols to be defined: *|
34 |* LOOKUP_TYPE - the return type of the function *|
36 |* FUNCTION_NAME - name of the non-reentrant function *|
38 |* DATABASE_NAME - name of the database the function accesses *|
39 |* (e.g., host, services, ...) *|
41 |* ADD_PARAMS - additional parameters, can vary in number *|
43 |* ADD_VARIABLES - names of additional parameters *|
45 |* Optionally the following vars can be defined: *|
47 |* EXTRA_PARAMS - optional parameters, can vary in number *|
49 |* EXTRA_VARIABLES - names of optional parameter *|
51 |* FUNCTION2_NAME - alternative name of the non-reentrant function *|
53 |* NEED_H_ERRNO - an extra parameter will be passed to point to *|
54 |* the global `h_errno' variable. *|
56 |* NEED__RES - obtain a struct resolv_context resolver context *|
58 |* PREPROCESS - code run before anything else *|
60 |* POSTPROCESS - code run after the lookup *|
62 \*******************************************************************/
64 /* To make the real sources a bit prettier. */
65 #define REENTRANT_NAME APPEND_R (FUNCTION_NAME)
67 # define REENTRANT2_NAME APPEND_R (FUNCTION2_NAME)
69 # define REENTRANT2_NAME NULL
71 #define APPEND_R(name) APPEND_R1 (name)
72 #define APPEND_R1(name) name##_r
73 #define INTERNAL(name) INTERNAL1 (name)
74 #define INTERNAL1(name) __##name
75 #define NEW(name) NEW1 (name)
76 #define NEW1(name) __new_##name
79 # define NSCD_NAME ADD_NSCD (REENTRANT_NAME)
80 # define ADD_NSCD(name) ADD_NSCD1 (name)
81 # define ADD_NSCD1(name) __nscd_##name
82 # define NOT_USENSCD_NAME ADD_NOT_NSCDUSE (DATABASE_NAME)
83 # define ADD_NOT_NSCDUSE(name) ADD_NOT_NSCDUSE1 (name)
84 # define ADD_NOT_NSCDUSE1(name) __nss_not_use_nscd_##name
85 # define CONCAT2(arg1, arg2) CONCAT2_2 (arg1, arg2)
86 # define CONCAT2_2(arg1, arg2) arg1##arg2
89 #define FUNCTION_NAME_STRING STRINGIZE (FUNCTION_NAME)
90 #define REENTRANT_NAME_STRING STRINGIZE (REENTRANT_NAME)
92 # define REENTRANT2_NAME_STRING STRINGIZE (REENTRANT2_NAME)
94 # define REENTRANT2_NAME_STRING NULL
96 #define DATABASE_NAME_STRING STRINGIZE (DATABASE_NAME)
97 #define STRINGIZE(name) STRINGIZE1 (name)
98 #define STRINGIZE1(name) #name
100 #ifndef DB_LOOKUP_FCT
101 # define DB_LOOKUP_FCT CONCAT3_1 (__nss_, DATABASE_NAME, _lookup2)
102 # define CONCAT3_1(Pre, Name, Post) CONCAT3_2 (Pre, Name, Post)
103 # define CONCAT3_2(Pre, Name, Post) Pre##Name##Post
106 /* Sometimes we need to store error codes in the `h_errno' variable. */
108 # define H_ERRNO_PARM , int *h_errnop
109 # define H_ERRNO_VAR , h_errnop
110 # define H_ERRNO_VAR_P h_errnop
112 # define H_ERRNO_PARM
114 # define H_ERRNO_VAR_P NULL
118 # define EXTRA_PARAMS
120 #ifndef EXTRA_VARIABLES
121 # define EXTRA_VARIABLES
127 # define AF_VAL AF_INET
131 /* Set defaults for merge functions that haven't been defined. */
134 __copy_einval (LOOKUP_TYPE a
,
142 # define DEEPCOPY_FN __copy_einval
147 __merge_einval (LOOKUP_TYPE
*a
,
156 # define MERGE_FN __merge_einval
159 #define CHECK_MERGE(err, status) \
167 status = NSS_STATUS_TRYAGAIN; \
169 status = NSS_STATUS_UNAVAIL; \
176 /* Type of the lookup function we need here. */
177 typedef enum nss_status (*lookup_function
) (ADD_PARAMS
, LOOKUP_TYPE
*, char *,
178 size_t, int * H_ERRNO_PARM
181 /* The lookup function for the first entry of this service. */
182 extern int DB_LOOKUP_FCT (service_user
**nip
, const char *name
,
183 const char *name2
, void **fctp
);
184 libc_hidden_proto (DB_LOOKUP_FCT
)
188 INTERNAL (REENTRANT_NAME
) (ADD_PARAMS
, LOOKUP_TYPE
*resbuf
, char *buffer
,
189 size_t buflen
, LOOKUP_TYPE
**result H_ERRNO_PARM
192 static bool startp_initialized
;
193 static service_user
*startp
;
194 static lookup_function start_fct
;
197 LOOKUP_TYPE mergegrp
;
198 char *mergebuf
= NULL
;
206 enum nss_status status
= NSS_STATUS_UNAVAIL
;
211 bool any_service
= false;
215 /* The HANDLE_DIGITS_DOTS case below already needs the resolver
216 configuration, so this has to happen early. */
217 struct resolv_context
*res_ctx
= __resolv_context_get ();
220 *h_errnop
= NETDB_INTERNAL
;
224 #endif /* NEED__RES */
230 #ifdef HANDLE_DIGITS_DOTS
231 switch (__nss_hostname_digits_dots (name
, resbuf
, &buffer
, NULL
,
232 buflen
, result
, &status
, AF_VAL
,
237 __resolv_context_put (res_ctx
);
249 if (NOT_USENSCD_NAME
> 0 && ++NOT_USENSCD_NAME
> NSS_NSCD_RETRY
)
250 NOT_USENSCD_NAME
= 0;
252 if (!NOT_USENSCD_NAME
253 && !__nss_database_custom
[CONCAT2 (NSS_DBSIDX_
, DATABASE_NAME
)])
255 nscd_status
= NSCD_NAME (ADD_VARIABLES
, resbuf
, buffer
, buflen
, result
257 if (nscd_status
>= 0)
260 __resolv_context_put (res_ctx
);
267 if (! startp_initialized
)
269 no_more
= DB_LOOKUP_FCT (&nip
, REENTRANT_NAME_STRING
,
270 REENTRANT2_NAME_STRING
, &fct
.ptr
);
273 void *tmp_ptr
= (service_user
*) -1l;
275 PTR_MANGLE (tmp_ptr
);
281 void *tmp_ptr
= fct
.l
;
283 PTR_MANGLE (tmp_ptr
);
288 PTR_MANGLE (tmp_ptr
);
293 /* Make sure start_fct and startp are written before
294 startp_initialized. */
295 atomic_write_barrier ();
296 startp_initialized
= true;
303 PTR_DEMANGLE (fct
.l
);
306 no_more
= nip
== (service_user
*) -1l;
315 status
= DL_CALL_FCT (fct
.l
, (ADD_VARIABLES
, resbuf
, buffer
, buflen
,
316 &errno H_ERRNO_VAR EXTRA_VARIABLES
));
318 /* The status is NSS_STATUS_TRYAGAIN and errno is ERANGE the
319 provided buffer is too small. In this case we should give
320 the user the possibility to enlarge the buffer and we should
321 not simply go on with the next service (even if the TRYAGAIN
322 action tells us so). */
323 if (status
== NSS_STATUS_TRYAGAIN
325 && *h_errnop
== NETDB_INTERNAL
333 if (status
== NSS_STATUS_SUCCESS
)
335 /* The previous loop saved a buffer for merging.
336 Perform the merge now. */
337 err
= MERGE_FN (&mergegrp
, mergebuf
, endptr
, buflen
, resbuf
,
339 CHECK_MERGE (err
,status
);
344 /* If the result wasn't SUCCESS, copy the saved buffer back
345 into the result buffer and set the status back to
346 NSS_STATUS_SUCCESS to match the previous pass through the
348 * If the next action is CONTINUE, it will overwrite the value
349 currently in the buffer and return the new value.
350 * If the next action is RETURN, we'll return the previously-
352 * If the next action is MERGE, then it will be added to the
353 buffer saved from the previous source. */
354 err
= DEEPCOPY_FN (mergegrp
, buflen
, resbuf
, buffer
, NULL
);
355 CHECK_MERGE (err
, status
);
356 status
= NSS_STATUS_SUCCESS
;
360 /* If we were are configured to merge this value with the next one,
361 save the current value of the group struct. */
362 if (nss_next_action (nip
, status
) == NSS_ACTION_MERGE
363 && status
== NSS_STATUS_SUCCESS
)
365 /* Copy the current values into a buffer to be merged with the next
366 set of retrieved values. */
367 if (mergebuf
== NULL
)
369 /* Only allocate once and reuse it for as many merges as we need
371 mergebuf
= malloc (buflen
);
372 if (mergebuf
== NULL
)
374 __set_errno (ENOMEM
);
375 status
= NSS_STATUS_UNAVAIL
;
380 err
= DEEPCOPY_FN (*resbuf
, buflen
, &mergegrp
, mergebuf
, &endptr
);
381 CHECK_MERGE (err
, status
);
385 no_more
= __nss_next2 (&nip
, REENTRANT_NAME_STRING
,
386 REENTRANT2_NAME_STRING
, &fct
.ptr
, status
, 0);
391 #ifdef HANDLE_DIGITS_DOTS
394 *result
= status
== NSS_STATUS_SUCCESS
? resbuf
: NULL
;
396 if (status
== NSS_STATUS_UNAVAIL
&& !any_service
&& errno
!= ENOENT
)
397 /* This happens when we weren't able to use a service for reasons other
398 than the module not being found. In such a case, we'd want to tell the
399 caller that errno has the real reason for failure. */
400 *h_errnop
= NETDB_INTERNAL
;
401 else if (status
!= NSS_STATUS_SUCCESS
&& !any_service
)
402 /* We were not able to use any service. */
403 *h_errnop
= NO_RECOVERY
;
410 /* This has to happen late because the POSTPROCESS stage above might
411 need the resolver context. */
412 __resolv_context_put (res_ctx
);
413 #endif /* NEED__RES */
416 if (status
== NSS_STATUS_SUCCESS
|| status
== NSS_STATUS_NOTFOUND
)
418 /* Don't pass back ERANGE if this is not for a too-small buffer. */
419 else if (errno
== ERANGE
&& status
!= NSS_STATUS_TRYAGAIN
)
422 /* These functions only set errno if h_errno is NETDB_INTERNAL. */
423 else if (status
== NSS_STATUS_TRYAGAIN
&& *h_errnop
!= NETDB_INTERNAL
)
434 #ifdef NO_COMPAT_NEEDED
435 strong_alias (INTERNAL (REENTRANT_NAME
), REENTRANT_NAME
);
436 #elif !defined FUNCTION2_NAME
437 # include <shlib-compat.h>
438 # if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1_2)
439 # define OLD(name) OLD1 (name)
440 # define OLD1(name) __old_##name
443 attribute_compat_text_section
444 OLD (REENTRANT_NAME
) (ADD_PARAMS
, LOOKUP_TYPE
*resbuf
, char *buffer
,
445 size_t buflen
, LOOKUP_TYPE
**result H_ERRNO_PARM
)
447 int ret
= INTERNAL (REENTRANT_NAME
) (ADD_VARIABLES
, resbuf
, buffer
,
448 buflen
, result H_ERRNO_VAR
);
450 if (ret
!= 0 || result
== NULL
)
456 # define do_symbol_version(real, name, version) \
457 compat_symbol (libc, real, name, version)
458 do_symbol_version (OLD (REENTRANT_NAME
), REENTRANT_NAME
, GLIBC_2_0
);
461 /* As INTERNAL (REENTRANT_NAME) may be hidden, we need an alias
462 in between so that the REENTRANT_NAME@@GLIBC_2.1.2 is not
464 strong_alias (INTERNAL (REENTRANT_NAME
), NEW (REENTRANT_NAME
));
466 # define do_default_symbol_version(real, name, version) \
467 versioned_symbol (libc, real, name, version)
468 do_default_symbol_version (NEW (REENTRANT_NAME
),
469 REENTRANT_NAME
, GLIBC_2_1_2
);
472 nss_interface_function (REENTRANT_NAME
)