1 /* Cache handling for host lookup.
2 Copyright (C) 2004-2013 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published
8 by the Free Software Foundation; version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, see <http://www.gnu.org/licenses/>. */
28 #include <resolv/res_hconf.h>
33 # include <kernel-features.h>
37 typedef enum nss_status (*nss_gethostbyname4_r
)
38 (const char *name
, struct gaih_addrtuple
**pat
,
39 char *buffer
, size_t buflen
, int *errnop
,
40 int *h_errnop
, int32_t *ttlp
);
41 typedef enum nss_status (*nss_gethostbyname3_r
)
42 (const char *name
, int af
, struct hostent
*host
,
43 char *buffer
, size_t buflen
, int *errnop
,
44 int *h_errnop
, int32_t *, char **);
45 typedef enum nss_status (*nss_getcanonname_r
)
46 (const char *name
, char *buffer
, size_t buflen
, char **result
,
47 int *errnop
, int *h_errnop
);
50 static const ai_response_header notfound
=
52 .version
= NSCD_VERSION
,
62 addhstaiX (struct database_dyn
*db
, int fd
, request_header
*req
,
63 void *key
, uid_t uid
, struct hashentry
*const he
,
66 /* Search for the entry matching the key. Please note that we don't
67 look again in the table whether the dataset is now available. We
68 simply insert it. It does not matter if it is in there twice. The
69 pruning function only will look at the timestamp. */
71 /* We allocate all data in one memory block: the iov vector,
72 the response header and the dataset itself. */
76 ai_response_header resp
;
80 if (__builtin_expect (debug_level
> 0, 0))
83 dbg_log (_("Haven't found \"%s\" in hosts cache!"), (char *) key
);
85 dbg_log (_("Reloading \"%s\" in hosts cache!"), (char *) key
);
88 static service_user
*hosts_database
;
95 if (hosts_database
== NULL
)
96 no_more
= __nss_database_lookup ("hosts", NULL
,
97 "dns [!UNAVAIL=return] files",
101 nip
= hosts_database
;
103 /* Initialize configurations. */
104 if (__glibc_unlikely (!_res_hconf
.initialized
))
106 if (__res_maybe_init (&_res
, 0) == -1)
109 /* If we are looking for both IPv4 and IPv6 address we don't want
110 the lookup functions to automatically promote IPv4 addresses to
111 IPv6 addresses. Currently this is decided by setting the
112 RES_USE_INET6 bit in _res.options. */
113 int old_res_options
= _res
.options
;
114 _res
.options
&= ~RES_USE_INET6
;
116 size_t tmpbuf6len
= 1024;
117 char *tmpbuf6
= alloca (tmpbuf6len
);
118 size_t tmpbuf4len
= 0;
119 char *tmpbuf4
= NULL
;
120 int32_t ttl
= INT32_MAX
;
122 char *key_copy
= NULL
;
123 bool alloca_used
= false;
124 time_t timeout
= MAX_TIMEOUT_VALUE
;
129 int status
[2] = { NSS_STATUS_UNAVAIL
, NSS_STATUS_UNAVAIL
};
135 nss_gethostbyname4_r fct4
= __nss_lookup_function (nip
,
139 struct gaih_addrtuple atmem
;
140 struct gaih_addrtuple
*at
;
146 status
[1] = DL_CALL_FCT (fct4
, (key
, &at
, tmpbuf6
, tmpbuf6len
,
147 &rc6
, &herrno
, &ttl
));
148 if (rc6
!= ERANGE
|| (herrno
!= NETDB_INTERNAL
149 && herrno
!= TRY_AGAIN
))
151 tmpbuf6
= extend_alloca (tmpbuf6
, tmpbuf6len
, 2 * tmpbuf6len
);
154 if (rc6
!= 0 && herrno
== NETDB_INTERNAL
)
157 if (status
[1] != NSS_STATUS_SUCCESS
)
160 /* We found the data. Count the addresses and the size. */
161 for (const struct gaih_addrtuple
*at2
= at
= &atmem
; at2
!= NULL
;
165 /* We do not handle anything other than IPv4 and IPv6
166 addresses. The getaddrinfo implementation does not
167 either so it is not worth trying to do more. */
168 if (at2
->family
== AF_INET
)
169 addrslen
+= INADDRSZ
;
170 else if (at2
->family
== AF_INET6
)
171 addrslen
+= IN6ADDRSZ
;
174 canonlen
= strlen (canon
) + 1;
176 total
= sizeof (*dataset
) + naddrs
+ addrslen
+ canonlen
;
178 /* Now we can allocate the data structure. If the TTL of the
179 entry is reported as zero do not cache the entry at all. */
180 if (ttl
!= 0 && he
== NULL
)
181 dataset
= (struct dataset
*) mempool_alloc (db
, total
186 /* We cannot permanently add the result in the moment. But
187 we can provide the result as is. Store the data in some
189 dataset
= (struct dataset
*) alloca (total
+ req
->key_len
);
191 /* We cannot add this record to the permanent database. */
195 /* Fill in the address and address families. */
196 char *addrs
= dataset
->strdata
;
197 uint8_t *family
= (uint8_t *) (addrs
+ addrslen
);
199 for (const struct gaih_addrtuple
*at2
= at
; at2
!= NULL
;
202 *family
++ = at2
->family
;
203 if (at2
->family
== AF_INET
)
204 addrs
= mempcpy (addrs
, at2
->addr
, INADDRSZ
);
205 else if (at2
->family
== AF_INET6
)
206 addrs
= mempcpy (addrs
, at2
->addr
, IN6ADDRSZ
);
213 /* Prefer the function which also returns the TTL and
215 nss_gethostbyname3_r fct
= __nss_lookup_function (nip
,
218 fct
= __nss_lookup_function (nip
, "gethostbyname2_r");
223 struct hostent th
[2];
225 /* Collect IPv6 information first. */
229 status
[0] = DL_CALL_FCT (fct
, (key
, AF_INET6
, &th
[0], tmpbuf6
,
230 tmpbuf6len
, &rc6
, &herrno
, &ttl
,
232 if (rc6
!= ERANGE
|| herrno
!= NETDB_INTERNAL
)
234 tmpbuf6
= extend_alloca (tmpbuf6
, tmpbuf6len
, 2 * tmpbuf6len
);
237 if (rc6
!= 0 && herrno
== NETDB_INTERNAL
)
240 /* If the IPv6 lookup has been successful do not use the
241 buffer used in that lookup, use a new one. */
242 if (status
[0] == NSS_STATUS_SUCCESS
&& rc6
== 0)
245 tmpbuf4
= alloca (tmpbuf4len
);
249 tmpbuf4len
= tmpbuf6len
;
253 /* Next collect IPv4 information. */
257 status
[1] = DL_CALL_FCT (fct
, (key
, AF_INET
, &th
[1], tmpbuf4
,
258 tmpbuf4len
, &rc4
, &herrno
,
259 ttl
== INT32_MAX
? &ttl
: NULL
,
260 canon
== NULL
? &canon
: NULL
));
261 if (rc4
!= ERANGE
|| herrno
!= NETDB_INTERNAL
)
263 tmpbuf4
= extend_alloca (tmpbuf4
, tmpbuf4len
, 2 * tmpbuf4len
);
266 if (rc4
!= 0 && herrno
== NETDB_INTERNAL
)
269 if (status
[0] != NSS_STATUS_SUCCESS
270 && status
[1] != NSS_STATUS_SUCCESS
)
273 /* We found the data. Count the addresses and the size. */
274 for (int j
= 0; j
< 2; ++j
)
275 if (status
[j
] == NSS_STATUS_SUCCESS
)
276 for (int i
= 0; th
[j
].h_addr_list
[i
] != NULL
; ++i
)
279 addrslen
+= th
[j
].h_length
;
284 /* Determine the canonical name. */
285 nss_getcanonname_r cfct
;
286 cfct
= __nss_lookup_function (nip
, "getcanonname_r");
289 const size_t max_fqdn_len
= 256;
290 char *buf
= alloca (max_fqdn_len
);
294 if (DL_CALL_FCT (cfct
, (key
, buf
, max_fqdn_len
, &s
,
296 == NSS_STATUS_SUCCESS
)
299 /* Set to name now to avoid using gethostbyaddr. */
304 struct hostent
*hstent
= NULL
;
306 struct hostent hstent_mem
;
311 if (status
[1] == NSS_STATUS_SUCCESS
)
313 addr
= th
[1].h_addr_list
[0];
314 addrlen
= sizeof (struct in_addr
);
315 addrfamily
= AF_INET
;
319 addr
= th
[0].h_addr_list
[0];
320 addrlen
= sizeof (struct in6_addr
);
321 addrfamily
= AF_INET6
;
324 size_t tmpbuflen
= 512;
325 char *tmpbuf
= alloca (tmpbuflen
);
329 rc
= __gethostbyaddr2_r (addr
, addrlen
, addrfamily
,
330 &hstent_mem
, tmpbuf
, tmpbuflen
,
331 &hstent
, &herrno
, NULL
);
332 if (rc
!= ERANGE
|| herrno
!= NETDB_INTERNAL
)
334 tmpbuf
= extend_alloca (tmpbuf
, tmpbuflen
,
341 canon
= hstent
->h_name
;
348 canonlen
= canon
== NULL
? 0 : (strlen (canon
) + 1);
350 total
= sizeof (*dataset
) + naddrs
+ addrslen
+ canonlen
;
353 /* Now we can allocate the data structure. If the TTL of the
354 entry is reported as zero do not cache the entry at all. */
355 if (ttl
!= 0 && he
== NULL
)
356 dataset
= (struct dataset
*) mempool_alloc (db
, total
361 /* We cannot permanently add the result in the moment. But
362 we can provide the result as is. Store the data in some
364 dataset
= (struct dataset
*) alloca (total
+ req
->key_len
);
366 /* We cannot add this record to the permanent database. */
370 /* Fill in the address and address families. */
371 char *addrs
= dataset
->strdata
;
372 uint8_t *family
= (uint8_t *) (addrs
+ addrslen
);
374 for (int j
= 0; j
< 2; ++j
)
375 if (status
[j
] == NSS_STATUS_SUCCESS
)
376 for (int i
= 0; th
[j
].h_addr_list
[i
] != NULL
; ++i
)
378 addrs
= mempcpy (addrs
, th
[j
].h_addr_list
[i
],
380 *family
++ = th
[j
].h_addrtype
;
386 /* Fill in the rest of the dataset. */
387 dataset
->head
.allocsize
= total
+ req
->key_len
;
388 dataset
->head
.recsize
= total
- offsetof (struct dataset
, resp
);
389 dataset
->head
.notfound
= false;
390 dataset
->head
.nreloads
= he
== NULL
? 0 : (dh
->nreloads
+ 1);
391 dataset
->head
.usable
= true;
393 /* Compute the timeout time. */
394 dataset
->head
.ttl
= ttl
== INT32_MAX
? db
->postimeout
: ttl
;
395 timeout
= dataset
->head
.timeout
= time (NULL
) + dataset
->head
.ttl
;
397 dataset
->resp
.version
= NSCD_VERSION
;
398 dataset
->resp
.found
= 1;
399 dataset
->resp
.naddrs
= naddrs
;
400 dataset
->resp
.addrslen
= addrslen
;
401 dataset
->resp
.canonlen
= canonlen
;
402 dataset
->resp
.error
= NETDB_SUCCESS
;
405 cp
= mempcpy (cp
, canon
, canonlen
);
407 key_copy
= memcpy (cp
, key
, req
->key_len
);
409 assert (cp
== (char *) dataset
+ total
);
411 /* Now we can determine whether on refill we have to create a
412 new record or not. */
417 if (total
+ req
->key_len
== dh
->allocsize
418 && total
- offsetof (struct dataset
, resp
) == dh
->recsize
419 && memcmp (&dataset
->resp
, dh
->data
,
420 dh
->allocsize
- offsetof (struct dataset
,
423 /* The data has not changed. We will just bump the
424 timeout value. Note that the new record has been
425 allocated on the stack and need not be freed. */
426 dh
->timeout
= dataset
->head
.timeout
;
427 dh
->ttl
= dataset
->head
.ttl
;
432 /* We have to create a new record. Just allocate
433 appropriate memory and copy it. */
435 = (struct dataset
*) mempool_alloc (db
, total
+ req
->key_len
,
437 if (__builtin_expect (newp
!= NULL
, 1))
439 /* Adjust pointer into the memory block. */
440 key_copy
= (char *) newp
+ (key_copy
- (char *) dataset
);
442 dataset
= memcpy (newp
, dataset
, total
+ req
->key_len
);
446 /* Mark the old record as obsolete. */
452 /* We write the dataset before inserting it to the database
453 since while inserting this thread might block and so
454 would unnecessarily let the receiver wait. */
458 if (__builtin_expect (db
->mmap_used
, 1) && !alloca_used
)
460 assert (db
->wr_fd
!= -1);
461 assert ((char *) &dataset
->resp
> (char *) db
->data
);
462 assert ((char *) dataset
- (char *) db
->head
+ total
463 <= (sizeof (struct database_pers_head
)
464 + db
->head
->module
* sizeof (ref_t
)
465 + db
->head
->data_size
));
466 # ifndef __ASSUME_SENDFILE
470 sendfileall (fd
, db
->wr_fd
, (char *) &dataset
->resp
471 - (char *) db
->head
, dataset
->head
.recsize
);
472 # ifndef __ASSUME_SENDFILE
473 if (written
== -1 && errno
== ENOSYS
)
478 # ifndef __ASSUME_SENDFILE
482 writeall (fd
, &dataset
->resp
, dataset
->head
.recsize
);
488 if (nss_next_action (nip
, status
[1]) == NSS_ACTION_RETURN
)
491 if (nip
->next
== NULL
)
497 /* No result found. Create a negative result record. */
498 if (he
!= NULL
&& rc4
== EAGAIN
)
500 /* If we have an old record available but cannot find one now
501 because the service is not available we keep the old record
502 and make sure it does not get removed. */
503 if (reload_count
!= UINT_MAX
&& dh
->nreloads
== reload_count
)
504 /* Do not reset the value if we never not reload the record. */
505 dh
->nreloads
= reload_count
- 1;
507 /* Reload with the same time-to-live value. */
508 timeout
= dh
->timeout
= time (NULL
) + dh
->ttl
;
512 /* We have no data. This means we send the standard reply for
514 total
= sizeof (notfound
);
517 TEMP_FAILURE_RETRY (send (fd
, ¬found
, total
, MSG_NOSIGNAL
));
519 /* If we have a transient error or cannot permanently store the
521 if (rc4
== EAGAIN
|| __builtin_expect (db
->negtimeout
== 0, 0))
523 /* Mark the old entry as obsolete. */
528 else if ((dataset
= mempool_alloc (db
, (sizeof (struct dataset
)
529 + req
->key_len
), 1)) != NULL
)
531 dataset
->head
.allocsize
= sizeof (struct dataset
) + req
->key_len
;
532 dataset
->head
.recsize
= total
;
533 dataset
->head
.notfound
= true;
534 dataset
->head
.nreloads
= 0;
535 dataset
->head
.usable
= true;
537 /* Compute the timeout time. */
538 timeout
= dataset
->head
.timeout
= time (NULL
) + db
->negtimeout
;
539 dataset
->head
.ttl
= db
->negtimeout
;
541 /* This is the reply. */
542 memcpy (&dataset
->resp
, ¬found
, total
);
544 /* Copy the key data. */
545 key_copy
= memcpy (dataset
->strdata
, key
, req
->key_len
);
550 _res
.options
|= old_res_options
& RES_USE_INET6
;
552 if (dataset
!= NULL
&& !alloca_used
)
554 /* If necessary, we also propagate the data to disk. */
558 uintptr_t pval
= (uintptr_t) dataset
& ~pagesize_m1
;
559 msync ((void *) pval
,
560 ((uintptr_t) dataset
& pagesize_m1
) + total
+ req
->key_len
,
564 (void) cache_add (req
->type
, key_copy
, req
->key_len
, &dataset
->head
,
565 true, db
, uid
, he
== NULL
);
567 pthread_rwlock_unlock (&db
->lock
);
569 /* Mark the old entry as obsolete. */
579 addhstai (struct database_dyn
*db
, int fd
, request_header
*req
, void *key
,
582 addhstaiX (db
, fd
, req
, key
, uid
, NULL
, NULL
);
587 readdhstai (struct database_dyn
*db
, struct hashentry
*he
, struct datahead
*dh
)
595 return addhstaiX (db
, -1, &req
, db
->data
+ he
->key
, he
->owner
, he
, dh
);