]> git.ipfire.org Git - thirdparty/glibc.git/blame - resolv/nss_dns/dns-host.c
ldbl-128 fmal compile fix
[thirdparty/glibc.git] / resolv / nss_dns / dns-host.c
CommitLineData
4535680d 1/* Copyright (C) 1996-2004, 2007-2009, 2010 Free Software Foundation, Inc.
84384f5b
UD
2 This file is part of the GNU C Library.
3 Extended from original form by Ulrich Drepper <drepper@cygnus.com>, 1996.
5f0e6fc7 4
84384f5b 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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.
5f0e6fc7 9
84384f5b
UD
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
41bdb6e2 13 Lesser General Public License for more details.
5f0e6fc7 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
5f0e6fc7 19
df21c858 20/* Parts of this file are plain copies of the file `gethtnamadr.c' from
5f0e6fc7
RM
21 the bind package and it has the following copyright. */
22
5f0e6fc7 23/*
df21c858
UD
24 * ++Copyright++ 1985, 1988, 1993
25 * -
26 * Copyright (c) 1985, 1988, 1993
27 * The Regents of the University of California. All rights reserved.
5f0e6fc7
RM
28 *
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
5f0e6fc7
RM
37 * 4. Neither the name of the University nor the names of its contributors
38 * may be used to endorse or promote products derived from this software
39 * without specific prior written permission.
40 *
41 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
df21c858
UD
52 * -
53 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
54 *
55 * Permission to use, copy, modify, and distribute this software for any
56 * purpose with or without fee is hereby granted, provided that the above
57 * copyright notice and this permission notice appear in all copies, and that
58 * the name of Digital Equipment Corporation not be used in advertising or
59 * publicity pertaining to distribution of the document or software without
60 * specific, written prior permission.
61 *
62 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
63 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
64 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
65 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
66 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
67 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
68 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
69 * SOFTWARE.
70 * -
71 * --Copyright--
5f0e6fc7
RM
72 */
73
1eb946b9 74#include <assert.h>
5f0e6fc7
RM
75#include <ctype.h>
76#include <errno.h>
77#include <netdb.h>
78#include <stdio.h>
79#include <stdlib.h>
80#include <stddef.h>
81#include <string.h>
82#include <sys/syslog.h>
83
5f0e6fc7
RM
84#include "nsswitch.h"
85
86/* Get implementation for some internal functions. */
da2d1bc5
UD
87#include <resolv/mapv4v6addr.h>
88#include <resolv/mapv4v6hostent.h>
5f0e6fc7 89
5db91571
UD
90#define RESOLVSORT
91
5f0e6fc7
RM
92/* Maximum number of aliases we allow. */
93#define MAX_NR_ALIASES 48
94#define MAX_NR_ADDRS 48
95
e2dced82 96#if PACKETSZ > 65536
5f0e6fc7
RM
97# define MAXPACKET PACKETSZ
98#else
e2dced82 99# define MAXPACKET 65536
5f0e6fc7 100#endif
1522c368
UD
101/* As per RFC 1034 and 1035 a host name cannot exceed 255 octets in length. */
102#ifdef MAXHOSTNAMELEN
103# undef MAXHOSTNAMELEN
104#endif
105#define MAXHOSTNAMELEN 256
5f0e6fc7
RM
106
107static const char AskedForGot[] = "\
108gethostby*.getanswer: asked for \"%s\", got \"%s\"";
109
110
111/* We need this time later. */
112typedef union querybuf
113{
114 HEADER hdr;
115 u_char buf[MAXPACKET];
116} querybuf;
117
8d8c6efa
UD
118/* These functions are defined in res_comp.c. */
119#define NS_MAXCDNAME 255 /* maximum compressed domain name */
b455972f
UD
120extern int __ns_name_ntop (const u_char *, char *, size_t);
121extern int __ns_name_unpack (const u_char *, const u_char *,
122 const u_char *, u_char *, size_t);
8d8c6efa 123
5f0e6fc7
RM
124
125static enum nss_status getanswer_r (const querybuf *answer, int anslen,
126 const char *qname, int qtype,
df4ef2ab 127 struct hostent *result, char *buffer,
b455972f 128 size_t buflen, int *errnop, int *h_errnop,
d1fe1f22 129 int map, int32_t *ttlp, char **canonp);
5f0e6fc7 130
1eb946b9
UD
131static enum nss_status gaih_getanswer (const querybuf *answer1, int anslen1,
132 const querybuf *answer2, int anslen2,
133 const char *qname,
134 struct gaih_addrtuple **pat,
135 char *buffer, size_t buflen,
136 int *errnop, int *h_errnop,
137 int32_t *ttlp);
138
78d8d211
UD
139extern enum nss_status _nss_dns_gethostbyname3_r (const char *name, int af,
140 struct hostent *result,
141 char *buffer, size_t buflen,
142 int *errnop, int *h_errnop,
143 int32_t *ttlp,
144 char **canonp);
145hidden_proto (_nss_dns_gethostbyname3_r)
146
5f0e6fc7 147enum nss_status
d1fe1f22 148_nss_dns_gethostbyname3_r (const char *name, int af, struct hostent *result,
67479a70 149 char *buffer, size_t buflen, int *errnop,
d1fe1f22 150 int *h_errnop, int32_t *ttlp, char **canonp)
5f0e6fc7 151{
16b66062
AJ
152 union
153 {
154 querybuf *buf;
155 u_char *ptr;
156 } host_buffer;
157 querybuf *orig_host_buffer;
f80f1a4a 158 char tmp[NS_MAXDNAME];
5f0e6fc7
RM
159 int size, type, n;
160 const char *cp;
0420d888 161 int map = 0;
34816665 162 int olderr = errno;
6166815d 163 enum nss_status status;
5f0e6fc7 164
87bb6b6c 165 if (__res_maybe_init (&_res, 0) == -1)
b43b13ac
UD
166 return NSS_STATUS_UNAVAIL;
167
5f0e6fc7
RM
168 switch (af) {
169 case AF_INET:
170 size = INADDRSZ;
171 type = T_A;
172 break;
173 case AF_INET6:
174 size = IN6ADDRSZ;
175 type = T_AAAA;
176 break;
177 default:
0cc70fcf 178 *h_errnop = NO_DATA;
67479a70 179 *errnop = EAFNOSUPPORT;
5f0e6fc7
RM
180 return NSS_STATUS_UNAVAIL;
181 }
182
183 result->h_addrtype = af;
184 result->h_length = size;
185
186 /*
187 * if there aren't any dots, it could be a user-level alias.
188 * this is also done in res_query() since we are not the only
189 * function that looks up host names.
190 */
f80f1a4a
UD
191 if (strchr (name, '.') == NULL
192 && (cp = res_hostalias (&_res, name, tmp, sizeof (tmp))) != NULL)
5f0e6fc7
RM
193 name = cp;
194
16b66062 195 host_buffer.buf = orig_host_buffer = (querybuf *) alloca (1024);
6166815d 196
16b66062 197 n = __libc_res_nsearch (&_res, name, C_IN, type, host_buffer.buf->buf,
b7da31a1 198 1024, &host_buffer.ptr, NULL, NULL, NULL);
5f0e6fc7 199 if (n < 0)
dd7d45e8 200 {
4535680d 201 switch (errno)
da5ac135 202 {
4535680d 203 case ESRCH:
da5ac135
UD
204 status = NSS_STATUS_TRYAGAIN;
205 h_errno = TRY_AGAIN;
4535680d
UD
206 break;
207 case ECONNREFUSED:
208 case ETIMEDOUT:
209 status = NSS_STATUS_UNAVAIL;
210 break;
211 default:
212 status = NSS_STATUS_NOTFOUND;
213 break;
da5ac135 214 }
dd7d45e8 215 *h_errnop = h_errno;
34816665
UD
216 if (h_errno == TRY_AGAIN)
217 *errnop = EAGAIN;
218 else
219 __set_errno (olderr);
b455972f 220
4535680d 221 /* If we are looking for an IPv6 address and mapping is enabled
b455972f
UD
222 by having the RES_USE_INET6 bit in _res.options set, we try
223 another lookup. */
224 if (af == AF_INET6 && (_res.options & RES_USE_INET6))
16b66062
AJ
225 n = __libc_res_nsearch (&_res, name, C_IN, T_A, host_buffer.buf->buf,
226 host_buffer.buf != orig_host_buffer
1eb946b9 227 ? MAXPACKET : 1024, &host_buffer.ptr,
b7da31a1 228 NULL, NULL, NULL);
b455972f
UD
229
230 if (n < 0)
6166815d 231 {
16b66062
AJ
232 if (host_buffer.buf != orig_host_buffer)
233 free (host_buffer.buf);
6166815d
UD
234 return status;
235 }
b455972f
UD
236
237 map = 1;
238
239 result->h_addrtype = AF_INET;
2884dad4 240 result->h_length = INADDRSZ;
dd7d45e8 241 }
5f0e6fc7 242
16b66062 243 status = getanswer_r (host_buffer.buf, n, name, type, result, buffer, buflen,
d1fe1f22 244 errnop, h_errnop, map, ttlp, canonp);
16b66062
AJ
245 if (host_buffer.buf != orig_host_buffer)
246 free (host_buffer.buf);
6166815d 247 return status;
5f0e6fc7 248}
78d8d211 249hidden_def (_nss_dns_gethostbyname3_r)
5f0e6fc7
RM
250
251
d1fe1f22
UD
252enum nss_status
253_nss_dns_gethostbyname2_r (const char *name, int af, struct hostent *result,
254 char *buffer, size_t buflen, int *errnop,
255 int *h_errnop)
256{
257 return _nss_dns_gethostbyname3_r (name, af, result, buffer, buflen, errnop,
258 h_errnop, NULL, NULL);
259}
260
261
5f0e6fc7
RM
262enum nss_status
263_nss_dns_gethostbyname_r (const char *name, struct hostent *result,
67479a70
UD
264 char *buffer, size_t buflen, int *errnop,
265 int *h_errnop)
5f0e6fc7
RM
266{
267 enum nss_status status = NSS_STATUS_NOTFOUND;
268
269 if (_res.options & RES_USE_INET6)
78d8d211
UD
270 status = _nss_dns_gethostbyname3_r (name, AF_INET6, result, buffer,
271 buflen, errnop, h_errnop, NULL, NULL);
5f0e6fc7 272 if (status == NSS_STATUS_NOTFOUND)
78d8d211
UD
273 status = _nss_dns_gethostbyname3_r (name, AF_INET, result, buffer,
274 buflen, errnop, h_errnop, NULL, NULL);
5f0e6fc7
RM
275
276 return status;
277}
278
279
1eb946b9
UD
280enum nss_status
281_nss_dns_gethostbyname4_r (const char *name, struct gaih_addrtuple **pat,
282 char *buffer, size_t buflen, int *errnop,
283 int *herrnop, int32_t *ttlp)
284{
285 if (__res_maybe_init (&_res, 0) == -1)
286 return NSS_STATUS_UNAVAIL;
287
1eb946b9
UD
288 /*
289 * if there aren't any dots, it could be a user-level alias.
290 * this is also done in res_query() since we are not the only
291 * function that looks up host names.
292 */
293 if (strchr (name, '.') == NULL)
294 {
b7da31a1
UD
295 char *tmp = alloca (NS_MAXDNAME);
296 const char *cp = res_hostalias (&_res, name, tmp, NS_MAXDNAME);
1eb946b9
UD
297 if (cp != NULL)
298 name = cp;
299 }
300
301 union
302 {
303 querybuf *buf;
304 u_char *ptr;
305 } host_buffer;
306 querybuf *orig_host_buffer;
307 host_buffer.buf = orig_host_buffer = (querybuf *) alloca (2048);
308 u_char *ans2p = NULL;
309 int nans2p = 0;
b7da31a1 310 int resplen2 = 0;
1eb946b9
UD
311
312 int olderr = errno;
313 enum nss_status status;
314 int n = __libc_res_nsearch (&_res, name, C_IN, T_UNSPEC,
315 host_buffer.buf->buf, 2048, &host_buffer.ptr,
b7da31a1 316 &ans2p, &nans2p, &resplen2);
1eb946b9
UD
317 if (n < 0)
318 {
da5ac135
UD
319 if (errno == ESRCH)
320 {
321 status = NSS_STATUS_TRYAGAIN;
322 h_errno = TRY_AGAIN;
323 }
324 else
325 status = (errno == ECONNREFUSED
326 ? NSS_STATUS_UNAVAIL : NSS_STATUS_NOTFOUND);
1eb946b9
UD
327 *herrnop = h_errno;
328 if (h_errno == TRY_AGAIN)
329 *errnop = EAGAIN;
330 else
331 __set_errno (olderr);
332
333 if (host_buffer.buf != orig_host_buffer)
334 free (host_buffer.buf);
335
336 return status;
337 }
338
339 status = gaih_getanswer(host_buffer.buf, n, (const querybuf *) ans2p,
b7da31a1 340 resplen2, name, pat, buffer, buflen,
1eb946b9
UD
341 errnop, herrnop, ttlp);
342
343 if (host_buffer.buf != orig_host_buffer)
344 free (host_buffer.buf);
345
346 return status;
347}
348
349
31e2791c
UD
350extern enum nss_status _nss_dns_gethostbyaddr2_r (const void *addr,
351 socklen_t len, int af,
352 struct hostent *result,
353 char *buffer, size_t buflen,
354 int *errnop, int *h_errnop,
355 int32_t *ttlp);
356hidden_proto (_nss_dns_gethostbyaddr2_r)
357
5f0e6fc7 358enum nss_status
31e2791c
UD
359_nss_dns_gethostbyaddr2_r (const void *addr, socklen_t len, int af,
360 struct hostent *result, char *buffer, size_t buflen,
361 int *errnop, int *h_errnop, int32_t *ttlp)
5f0e6fc7
RM
362{
363 static const u_char mapped[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0xff,0xff };
364 static const u_char tunnelled[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0,0 };
20cc4c87 365 static const u_char v6local[] = { 0,0, 0,1 };
5f0e6fc7
RM
366 const u_char *uaddr = (const u_char *)addr;
367 struct host_data
368 {
369 char *aliases[MAX_NR_ALIASES];
370 unsigned char host_addr[16]; /* IPv4 or IPv6 */
371 char *h_addr_ptrs[MAX_NR_ADDRS + 1];
372 char linebuffer[0];
373 } *host_data = (struct host_data *) buffer;
16b66062
AJ
374 union
375 {
376 querybuf *buf;
377 u_char *ptr;
378 } host_buffer;
379 querybuf *orig_host_buffer;
1f3f143e 380 char qbuf[MAXDNAME+1], *qp = NULL;
30f22ab1 381 size_t size;
0420d888 382 int n, status;
34816665 383 int olderr = errno;
5f0e6fc7 384
df9293cb
UD
385 uintptr_t pad = -(uintptr_t) buffer % __alignof__ (struct host_data);
386 buffer += pad;
387 buflen = buflen > pad ? buflen - pad : 0;
388
389 if (__builtin_expect (buflen < sizeof (struct host_data), 0))
390 {
391 *errnop = ERANGE;
392 *h_errnop = NETDB_INTERNAL;
393 return NSS_STATUS_TRYAGAIN;
394 }
395
396 host_data = (struct host_data *) buffer;
397
87bb6b6c 398 if (__res_maybe_init (&_res, 0) == -1)
b43b13ac
UD
399 return NSS_STATUS_UNAVAIL;
400
20cc4c87
UD
401 if (af == AF_INET6 && len == IN6ADDRSZ
402 && (memcmp (uaddr, mapped, sizeof mapped) == 0
403 || (memcmp (uaddr, tunnelled, sizeof tunnelled) == 0
404 && memcmp (&uaddr[sizeof tunnelled], v6local, sizeof v6local))))
5f0e6fc7
RM
405 {
406 /* Unmap. */
407 addr += sizeof mapped;
408 uaddr += sizeof mapped;
409 af = AF_INET;
410 len = INADDRSZ;
411 }
412
413 switch (af)
414 {
415 case AF_INET:
416 size = INADDRSZ;
417 break;
418 case AF_INET6:
419 size = IN6ADDRSZ;
420 break;
421 default:
67479a70 422 *errnop = EAFNOSUPPORT;
5f0e6fc7
RM
423 *h_errnop = NETDB_INTERNAL;
424 return NSS_STATUS_UNAVAIL;
425 }
20cc4c87 426 if (size > len)
5f0e6fc7 427 {
67479a70 428 *errnop = EAFNOSUPPORT;
5f0e6fc7
RM
429 *h_errnop = NETDB_INTERNAL;
430 return NSS_STATUS_UNAVAIL;
431 }
432
ee778b56
UD
433 host_buffer.buf = orig_host_buffer = (querybuf *) alloca (1024);
434
5f0e6fc7
RM
435 switch (af)
436 {
437 case AF_INET:
438 sprintf (qbuf, "%u.%u.%u.%u.in-addr.arpa", (uaddr[3] & 0xff),
439 (uaddr[2] & 0xff), (uaddr[1] & 0xff), (uaddr[0] & 0xff));
440 break;
441 case AF_INET6:
ee778b56
UD
442 /* Only lookup with the byte string format if the user wants it. */
443 if (__builtin_expect (_res.options & RES_USEBSTRING, 0))
444 {
445 qp = stpcpy (qbuf, "\\[x");
446 for (n = 0; n < IN6ADDRSZ; ++n)
447 qp += sprintf (qp, "%02hhx", uaddr[n]);
448 strcpy (qp, "].ip6.arpa");
449 n = __libc_res_nquery (&_res, qbuf, C_IN, T_PTR,
1eb946b9 450 host_buffer.buf->buf, 1024, &host_buffer.ptr,
b7da31a1 451 NULL, NULL, NULL);
ee778b56
UD
452 if (n >= 0)
453 goto got_it_already;
454 }
5f0e6fc7 455 qp = qbuf;
ee778b56
UD
456 for (n = IN6ADDRSZ - 1; n >= 0; n--)
457 {
458 static const char nibblechar[16] = "0123456789abcdef";
459 *qp++ = nibblechar[uaddr[n] & 0xf];
460 *qp++ = '.';
461 *qp++ = nibblechar[(uaddr[n] >> 4) & 0xf];
462 *qp++ = '.';
463 }
464 strcpy(qp, "ip6.arpa");
5f0e6fc7
RM
465 break;
466 default:
467 /* Cannot happen. */
9fea9ed6 468 break;
5f0e6fc7
RM
469 }
470
16b66062 471 n = __libc_res_nquery (&_res, qbuf, C_IN, T_PTR, host_buffer.buf->buf,
b7da31a1 472 1024, &host_buffer.ptr, NULL, NULL, NULL);
340ef046 473 if (n < 0 && af == AF_INET6 && (_res.options & RES_NOIP6DOTINT) == 0)
62a08e44
UD
474 {
475 strcpy (qp, "ip6.int");
16b66062
AJ
476 n = __libc_res_nquery (&_res, qbuf, C_IN, T_PTR, host_buffer.buf->buf,
477 host_buffer.buf != orig_host_buffer
1eb946b9 478 ? MAXPACKET : 1024, &host_buffer.ptr,
b7da31a1 479 NULL, NULL, NULL);
62a08e44 480 }
5f0e6fc7 481 if (n < 0)
dd7d45e8
UD
482 {
483 *h_errnop = h_errno;
34816665 484 __set_errno (olderr);
16b66062
AJ
485 if (host_buffer.buf != orig_host_buffer)
486 free (host_buffer.buf);
dd7d45e8
UD
487 return errno == ECONNREFUSED ? NSS_STATUS_UNAVAIL : NSS_STATUS_NOTFOUND;
488 }
5f0e6fc7 489
ee778b56 490 got_it_already:
16b66062 491 status = getanswer_r (host_buffer.buf, n, qbuf, T_PTR, result, buffer, buflen,
31e2791c 492 errnop, h_errnop, 0 /* XXX */, ttlp, NULL);
16b66062
AJ
493 if (host_buffer.buf != orig_host_buffer)
494 free (host_buffer.buf);
5f0e6fc7 495 if (status != NSS_STATUS_SUCCESS)
65b4743a 496 return status;
5f0e6fc7
RM
497
498#ifdef SUNSECURITY
499 This is not implemented because it is not possible to use the current
500 source from bind in a multi-threaded program.
501#endif
502
503 result->h_addrtype = af;
504 result->h_length = len;
63551311 505 memcpy (host_data->host_addr, addr, len);
5f0e6fc7
RM
506 host_data->h_addr_ptrs[0] = (char *) host_data->host_addr;
507 host_data->h_addr_ptrs[1] = NULL;
b455972f
UD
508#if 0
509 /* XXX I think this is wrong. Why should an IPv4 address be
510 converted to IPv6 if the user explicitly asked for IPv4? */
5f0e6fc7
RM
511 if (af == AF_INET && (_res.options & RES_USE_INET6))
512 {
513 map_v4v6_address ((char *) host_data->host_addr,
514 (char *) host_data->host_addr);
515 result->h_addrtype = AF_INET6;
516 result->h_length = IN6ADDRSZ;
517 }
b455972f 518#endif
5f0e6fc7
RM
519 *h_errnop = NETDB_SUCCESS;
520 return NSS_STATUS_SUCCESS;
521}
31e2791c
UD
522hidden_def (_nss_dns_gethostbyaddr2_r)
523
524
525enum nss_status
526_nss_dns_gethostbyaddr_r (const void *addr, socklen_t len, int af,
527 struct hostent *result, char *buffer, size_t buflen,
528 int *errnop, int *h_errnop)
529{
530 return _nss_dns_gethostbyaddr2_r (addr, len, af, result, buffer, buflen,
531 errnop, h_errnop, NULL);
532}
5f0e6fc7 533
5db91571
UD
534#ifdef RESOLVSORT
535static void addrsort (char **ap, int num);
536
537static void
538addrsort (char **ap, int num)
539{
540 int i, j;
541 char **p;
542 short aval[MAX_NR_ADDRS];
543 int needsort = 0;
544
545 p = ap;
546 if (num > MAX_NR_ADDRS)
547 num = MAX_NR_ADDRS;
548 for (i = 0; i < num; i++, p++)
549 {
550 for (j = 0 ; (unsigned)j < _res.nsort; j++)
551 if (_res.sort_list[j].addr.s_addr ==
552 (((struct in_addr *)(*p))->s_addr & _res.sort_list[j].mask))
553 break;
554 aval[i] = j;
555 if (needsort == 0 && i > 0 && j < aval[i-1])
556 needsort = i;
557 }
558 if (!needsort)
559 return;
560
561 while (needsort++ < num)
562 for (j = needsort - 2; j >= 0; j--)
563 if (aval[j] > aval[j+1])
564 {
565 char *hp;
566
567 i = aval[j];
568 aval[j] = aval[j+1];
569 aval[j+1] = i;
570
571 hp = ap[j];
572 ap[j] = ap[j+1];
573 ap[j+1] = hp;
574 }
575 else
576 break;
577}
578#endif
5f0e6fc7
RM
579
580static enum nss_status
581getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype,
df4ef2ab 582 struct hostent *result, char *buffer, size_t buflen,
d1fe1f22 583 int *errnop, int *h_errnop, int map, int32_t *ttlp, char **canonp)
5f0e6fc7
RM
584{
585 struct host_data
586 {
587 char *aliases[MAX_NR_ALIASES];
588 unsigned char host_addr[16]; /* IPv4 or IPv6 */
88a96b81 589 char *h_addr_ptrs[0];
2f1687b9
UD
590 } *host_data;
591 int linebuflen;
5f0e6fc7
RM
592 register const HEADER *hp;
593 const u_char *end_of_message, *cp;
594 int n, ancount, qdcount;
595 int haveanswer, had_error;
596 char *bp, **ap, **hap;
845dcb57 597 char tbuf[MAXDNAME];
5f0e6fc7 598 const char *tname;
b455972f 599 int (*name_ok) (const char *);
8d8c6efa 600 u_char packtmp[NS_MAXCDNAME];
b455972f 601 int have_to_map = 0;
d1fe1f22 602 int32_t ttl = 0;
2f1687b9
UD
603 uintptr_t pad = -(uintptr_t) buffer % __alignof__ (struct host_data);
604 buffer += pad;
605 if (__builtin_expect (buflen < sizeof (struct host_data) + pad, 0))
560d3b76
UD
606 {
607 /* The buffer is too small. */
608 too_small:
609 *errnop = ERANGE;
610 *h_errnop = NETDB_INTERNAL;
611 return NSS_STATUS_TRYAGAIN;
612 }
2f1687b9
UD
613 host_data = (struct host_data *) buffer;
614 linebuflen = buflen - sizeof (struct host_data);
615 if (buflen - sizeof (struct host_data) != linebuflen)
616 linebuflen = INT_MAX;
560d3b76 617
5f0e6fc7
RM
618 tname = qname;
619 result->h_name = NULL;
620 end_of_message = answer->buf + anslen;
621 switch (qtype)
622 {
623 case T_A:
624 case T_AAAA:
625 name_ok = res_hnok;
626 break;
627 case T_PTR:
628 name_ok = res_dnok;
629 break;
630 default:
a0bf6ac7 631 *errnop = ENOENT;
5f0e6fc7
RM
632 return NSS_STATUS_UNAVAIL; /* XXX should be abort(); */
633 }
634
635 /*
636 * find first satisfactory answer
637 */
638 hp = &answer->hdr;
5f0e6fc7
RM
639 ancount = ntohs (hp->ancount);
640 qdcount = ntohs (hp->qdcount);
641 cp = answer->buf + HFIXEDSZ;
b455972f 642 if (__builtin_expect (qdcount, 1) != 1)
5f0e6fc7
RM
643 {
644 *h_errnop = NO_RECOVERY;
645 return NSS_STATUS_UNAVAIL;
646 }
88a96b81
UD
647 if (sizeof (struct host_data) + (ancount + 1) * sizeof (char *) >= buflen)
648 goto too_small;
649 bp = (char *) &host_data->h_addr_ptrs[ancount + 1];
650 linebuflen -= (ancount + 1) * sizeof (char *);
5f0e6fc7 651
8d8c6efa
UD
652 n = __ns_name_unpack (answer->buf, end_of_message, cp,
653 packtmp, sizeof packtmp);
654 if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1)
5f0e6fc7 655 {
b455972f 656 if (__builtin_expect (errno, 0) == EMSGSIZE)
560d3b76 657 goto too_small;
8d8c6efa
UD
658
659 n = -1;
660 }
661
662 if (n > 0 && bp[0] == '.')
663 bp[0] = '\0';
664
1eb946b9
UD
665 if (__builtin_expect (n < 0 || ((*name_ok) (bp) == 0 && (errno = EBADMSG)),
666 0))
8d8c6efa
UD
667 {
668 *errnop = errno;
669 *h_errnop = NO_RECOVERY;
5f0e6fc7
RM
670 return NSS_STATUS_UNAVAIL;
671 }
672 cp += n + QFIXEDSZ;
673
674 if (qtype == T_A || qtype == T_AAAA)
675 {
676 /* res_send() has already verified that the query name is the
677 * same as the one we sent; this just gets the expanded name
678 * (i.e., with the succeeding search-domain tacked on).
679 */
680 n = strlen (bp) + 1; /* for the \0 */
76b87c03
UD
681 if (n >= MAXHOSTNAMELEN)
682 {
67479a70 683 *h_errnop = NO_RECOVERY;
a0bf6ac7 684 *errnop = ENOENT;
76b87c03
UD
685 return NSS_STATUS_TRYAGAIN;
686 }
5f0e6fc7
RM
687 result->h_name = bp;
688 bp += n;
689 linebuflen -= n;
560d3b76
UD
690 if (linebuflen < 0)
691 goto too_small;
5f0e6fc7
RM
692 /* The qname can be abbreviated, but h_name is now absolute. */
693 qname = result->h_name;
694 }
695
696 ap = host_data->aliases;
697 *ap = NULL;
698 result->h_aliases = host_data->aliases;
699 hap = host_data->h_addr_ptrs;
700 *hap = NULL;
701 result->h_addr_list = host_data->h_addr_ptrs;
702 haveanswer = 0;
703 had_error = 0;
704
705 while (ancount-- > 0 && cp < end_of_message && had_error == 0)
706 {
707 int type, class;
708
8d8c6efa
UD
709 n = __ns_name_unpack (answer->buf, end_of_message, cp,
710 packtmp, sizeof packtmp);
711 if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1)
712 {
b455972f 713 if (__builtin_expect (errno, 0) == EMSGSIZE)
0cc70fcf 714 goto too_small;
8d8c6efa
UD
715
716 n = -1;
717 }
718
b7da31a1 719 if (__builtin_expect (n < 0 || (*name_ok) (bp) == 0, 0))
5f0e6fc7
RM
720 {
721 ++had_error;
722 continue;
723 }
724 cp += n; /* name */
b7da31a1
UD
725
726 if (__builtin_expect (cp + 10 > end_of_message, 0))
727 {
728 ++had_error;
729 continue;
730 }
731
cd5743fd 732 type = __ns_get16 (cp);
5f0e6fc7 733 cp += INT16SZ; /* type */
cd5743fd 734 class = __ns_get16 (cp);
d1fe1f22 735 cp += INT16SZ; /* class */
cd5743fd 736 ttl = __ns_get32 (cp);
d1fe1f22 737 cp += INT32SZ; /* TTL */
cd5743fd 738 n = __ns_get16 (cp);
5f0e6fc7 739 cp += INT16SZ; /* len */
b7da31a1 740 if (__builtin_expect (class != C_IN, 0))
5f0e6fc7
RM
741 {
742 /* XXX - debug? syslog? */
743 cp += n;
744 continue; /* XXX - had_error++ ? */
745 }
746
1eb946b9 747 if ((qtype == T_A || qtype == T_AAAA) && type == T_CNAME)
5f0e6fc7
RM
748 {
749 if (ap >= &host_data->aliases[MAX_NR_ALIASES - 1])
750 continue;
751 n = dn_expand (answer->buf, end_of_message, cp, tbuf, sizeof tbuf);
b7da31a1 752 if (__builtin_expect (n < 0 || (*name_ok) (tbuf) == 0, 0))
5f0e6fc7
RM
753 {
754 ++had_error;
755 continue;
756 }
757 cp += n;
758 /* Store alias. */
759 *ap++ = bp;
760 n = strlen (bp) + 1; /* For the \0. */
b455972f 761 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
76b87c03
UD
762 {
763 ++had_error;
764 continue;
765 }
5f0e6fc7
RM
766 bp += n;
767 linebuflen -= n;
768 /* Get canonical name. */
769 n = strlen (tbuf) + 1; /* For the \0. */
b455972f 770 if (__builtin_expect (n > linebuflen, 0))
0cc70fcf 771 goto too_small;
b455972f 772 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
5f0e6fc7
RM
773 {
774 ++had_error;
775 continue;
776 }
8d8c6efa
UD
777 result->h_name = bp;
778 bp = __mempcpy (bp, tbuf, n); /* Cannot overflow. */
5f0e6fc7
RM
779 linebuflen -= n;
780 continue;
781 }
782
783 if (qtype == T_PTR && type == T_CNAME)
784 {
785 n = dn_expand (answer->buf, end_of_message, cp, tbuf, sizeof tbuf);
b7da31a1 786 if (__builtin_expect (n < 0 || res_dnok (tbuf) == 0, 0))
5f0e6fc7
RM
787 {
788 ++had_error;
789 continue;
790 }
791 cp += n;
da2d1bc5 792 /* Get canonical name. */
5f0e6fc7 793 n = strlen (tbuf) + 1; /* For the \0. */
b455972f 794 if (__builtin_expect (n > linebuflen, 0))
0cc70fcf 795 goto too_small;
b455972f 796 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
5f0e6fc7
RM
797 {
798 ++had_error;
799 continue;
800 }
8d8c6efa
UD
801 tname = bp;
802 bp = __mempcpy (bp, tbuf, n); /* Cannot overflow. */
5f0e6fc7
RM
803 linebuflen -= n;
804 continue;
805 }
b455972f
UD
806 if (__builtin_expect (type == T_SIG, 0)
807 || __builtin_expect (type == T_KEY, 0)
808 || __builtin_expect (type == T_NXT, 0))
1bc21e7a
UD
809 {
810 /* We don't support DNSSEC yet. For now, ignore the record
811 and send a low priority message to syslog. */
812 syslog (LOG_DEBUG | LOG_AUTH,
813 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
814 qname, p_class (C_IN), p_type(qtype), p_type (type));
815 cp += n;
816 continue;
817 }
b455972f
UD
818
819 if (type == T_A && qtype == T_AAAA && map)
820 have_to_map = 1;
821 else if (__builtin_expect (type != qtype, 0))
5f0e6fc7
RM
822 {
823 syslog (LOG_NOTICE | LOG_AUTH,
824 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
825 qname, p_class (C_IN), p_type (qtype), p_type (type));
826 cp += n;
827 continue; /* XXX - had_error++ ? */
828 }
829
830 switch (type)
831 {
832 case T_PTR:
c6807d38 833 if (__builtin_expect (strcasecmp (tname, bp) != 0, 0))
5f0e6fc7
RM
834 {
835 syslog (LOG_NOTICE | LOG_AUTH, AskedForGot, qname, bp);
836 cp += n;
837 continue; /* XXX - had_error++ ? */
838 }
8d8c6efa
UD
839
840 n = __ns_name_unpack (answer->buf, end_of_message, cp,
841 packtmp, sizeof packtmp);
842 if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1)
843 {
b455972f 844 if (__builtin_expect (errno, 0) == EMSGSIZE)
0cc70fcf 845 goto too_small;
8d8c6efa
UD
846
847 n = -1;
848 }
849
b7da31a1 850 if (__builtin_expect (n < 0 || res_hnok (bp) == 0, 0))
5f0e6fc7
RM
851 {
852 ++had_error;
853 break;
854 }
855#if MULTI_PTRS_ARE_ALIASES
856 cp += n;
857 if (haveanswer == 0)
858 result->h_name = bp;
859 else if (ap < &host_data->aliases[MAXALIASES-1])
860 *ap++ = bp;
861 else
862 n = -1;
863 if (n != -1)
864 {
865 n = strlen (bp) + 1; /* for the \0 */
b455972f 866 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
76b87c03
UD
867 {
868 ++had_error;
869 break;
870 }
5f0e6fc7
RM
871 bp += n;
872 linebuflen -= n;
873 }
874 break;
875#else
876 result->h_name = bp;
b455972f 877 if (have_to_map)
5f0e6fc7
RM
878 {
879 n = strlen (bp) + 1; /* for the \0 */
b7da31a1 880 if (__builtin_expect (n >= MAXHOSTNAMELEN, 0))
76b87c03
UD
881 {
882 ++had_error;
883 break;
884 }
5f0e6fc7
RM
885 bp += n;
886 linebuflen -= n;
51e4196f
AS
887 if (map_v4v6_hostent (result, &bp, &linebuflen))
888 goto too_small;
5f0e6fc7
RM
889 }
890 *h_errnop = NETDB_SUCCESS;
891 return NSS_STATUS_SUCCESS;
892#endif
893 case T_A:
894 case T_AAAA:
b455972f 895 if (__builtin_expect (strcasecmp (result->h_name, bp), 0) != 0)
5f0e6fc7
RM
896 {
897 syslog (LOG_NOTICE | LOG_AUTH, AskedForGot, result->h_name, bp);
898 cp += n;
899 continue; /* XXX - had_error++ ? */
900 }
1f64ac13 901 if (n != result->h_length)
5f0e6fc7 902 {
1f64ac13
UD
903 cp += n;
904 continue;
5f0e6fc7 905 }
1f64ac13 906 if (!haveanswer)
5f0e6fc7
RM
907 {
908 register int nn;
909
d1fe1f22
UD
910 if (ttlp != NULL && ttl != 0)
911 *ttlp = ttl;
912 if (canonp != NULL)
913 *canonp = bp;
5f0e6fc7
RM
914 result->h_name = bp;
915 nn = strlen (bp) + 1; /* for the \0 */
916 bp += nn;
917 linebuflen -= nn;
918 }
919
560d3b76 920 linebuflen -= sizeof (align) - ((u_long) bp % sizeof (align));
5f0e6fc7
RM
921 bp += sizeof (align) - ((u_long) bp % sizeof (align));
922
b455972f 923 if (__builtin_expect (n > linebuflen, 0))
0cc70fcf 924 goto too_small;
8d8c6efa 925 bp = __mempcpy (*hap++ = bp, cp, n);
5f0e6fc7
RM
926 cp += n;
927 linebuflen -= n;
928 break;
929 default:
930 abort ();
931 }
932 if (had_error == 0)
933 ++haveanswer;
934 }
935
936 if (haveanswer > 0)
937 {
938 *ap = NULL;
939 *hap = NULL;
da2d1bc5 940#if defined RESOLVSORT
5f0e6fc7
RM
941 /*
942 * Note: we sort even if host can take only one address
943 * in its return structures - should give it the "best"
944 * address in that case, not some random one
945 */
946 if (_res.nsort && haveanswer > 1 && qtype == T_A)
947 addrsort (host_data->h_addr_ptrs, haveanswer);
948#endif /*RESOLVSORT*/
949
950 if (result->h_name == NULL)
951 {
952 n = strlen (qname) + 1; /* For the \0. */
8d8c6efa 953 if (n > linebuflen)
0cc70fcf 954 goto too_small;
8d8c6efa 955 if (n >= MAXHOSTNAMELEN)
76b87c03 956 goto no_recovery;
8d8c6efa
UD
957 result->h_name = bp;
958 bp = __mempcpy (bp, qname, n); /* Cannot overflow. */
5f0e6fc7
RM
959 linebuflen -= n;
960 }
961
b455972f 962 if (have_to_map)
51e4196f
AS
963 if (map_v4v6_hostent (result, &bp, &linebuflen))
964 goto too_small;
5f0e6fc7
RM
965 *h_errnop = NETDB_SUCCESS;
966 return NSS_STATUS_SUCCESS;
967 }
76b87c03
UD
968 no_recovery:
969 *h_errnop = NO_RECOVERY;
a0bf6ac7 970 *errnop = ENOENT;
2884dad4
UD
971 /* Special case here: if the resolver sent a result but it only
972 contains a CNAME while we are looking for a T_A or T_AAAA record,
973 we fail with NOTFOUND instead of TRYAGAIN. */
974 return ((qtype == T_A || qtype == T_AAAA) && ap != host_data->aliases
975 ? NSS_STATUS_NOTFOUND : NSS_STATUS_TRYAGAIN);
5f0e6fc7 976}
1eb946b9
UD
977
978
979static enum nss_status
980gaih_getanswer_slice (const querybuf *answer, int anslen, const char *qname,
981 struct gaih_addrtuple ***patp,
982 char **bufferp, size_t *buflenp,
983 int *errnop, int *h_errnop, int32_t *ttlp, int *firstp)
984{
985 char *buffer = *bufferp;
986 size_t buflen = *buflenp;
987
988 struct gaih_addrtuple **pat = *patp;
989 const HEADER *hp = &answer->hdr;
990 int ancount = ntohs (hp->ancount);
991 int qdcount = ntohs (hp->qdcount);
992 const u_char *cp = answer->buf + HFIXEDSZ;
993 const u_char *end_of_message = answer->buf + anslen;
994 if (__builtin_expect (qdcount != 1, 0))
995 {
996 *h_errnop = NO_RECOVERY;
997 return NSS_STATUS_UNAVAIL;
998 }
999
b7da31a1 1000 u_char packtmp[NS_MAXCDNAME];
1eb946b9
UD
1001 int n = __ns_name_unpack (answer->buf, end_of_message, cp,
1002 packtmp, sizeof packtmp);
1003 /* We unpack the name to check it for validity. But we do not need
1004 it later. */
1005 if (n != -1 && __ns_name_ntop (packtmp, buffer, buflen) == -1)
1006 {
1007 if (__builtin_expect (errno, 0) == EMSGSIZE)
1008 {
1009 too_small:
1010 *errnop = ERANGE;
1011 *h_errnop = NETDB_INTERNAL;
1012 return NSS_STATUS_TRYAGAIN;
1013 }
1014
1015 n = -1;
1016 }
1017
1018 if (__builtin_expect (n < 0 || (res_hnok (buffer) == 0
1019 && (errno = EBADMSG)), 0))
1020 {
1021 *errnop = errno;
1022 *h_errnop = NO_RECOVERY;
1023 return NSS_STATUS_UNAVAIL;
1024 }
1025 cp += n + QFIXEDSZ;
1026
1027 int haveanswer = 0;
1028 int had_error = 0;
1029 char *canon = NULL;
1030 char *h_name = NULL;
1031 int h_namelen = 0;
1032
343996c4
UD
1033 if (ancount == 0)
1034 return NSS_STATUS_NOTFOUND;
1035
1eb946b9
UD
1036 while (ancount-- > 0 && cp < end_of_message && had_error == 0)
1037 {
1038 n = __ns_name_unpack (answer->buf, end_of_message, cp,
1039 packtmp, sizeof packtmp);
1040 if (n != -1 &&
1041 (h_namelen = __ns_name_ntop (packtmp, buffer, buflen)) == -1)
1042 {
1043 if (__builtin_expect (errno, 0) == EMSGSIZE)
1044 goto too_small;
1045
1046 n = -1;
1047 }
b7da31a1 1048 if (__builtin_expect (n < 0 || res_hnok (buffer) == 0, 0))
1eb946b9
UD
1049 {
1050 ++had_error;
1051 continue;
1052 }
ea42a20c 1053 if (*firstp && canon == NULL)
1eb946b9
UD
1054 {
1055 h_name = buffer;
1056 buffer += h_namelen;
1057 buflen -= h_namelen;
1058 }
1059
1060 cp += n; /* name */
b7da31a1
UD
1061
1062 if (__builtin_expect (cp + 10 > end_of_message, 0))
1063 {
1064 ++had_error;
1065 continue;
1066 }
1067
cd5743fd 1068 int type = __ns_get16 (cp);
1eb946b9 1069 cp += INT16SZ; /* type */
cd5743fd 1070 int class = __ns_get16 (cp);
1eb946b9 1071 cp += INT16SZ; /* class */
cd5743fd 1072 int32_t ttl = __ns_get32 (cp);
1eb946b9 1073 cp += INT32SZ; /* TTL */
cd5743fd 1074 n = __ns_get16 (cp);
1eb946b9
UD
1075 cp += INT16SZ; /* len */
1076
1077 if (class != C_IN)
1078 {
1079 cp += n;
1080 continue;
1081 }
1082
1083 if (type == T_CNAME)
1084 {
1085 char tbuf[MAXDNAME];
1086 n = dn_expand (answer->buf, end_of_message, cp, tbuf, sizeof tbuf);
b7da31a1 1087 if (__builtin_expect (n < 0 || res_hnok (tbuf) == 0, 0))
1eb946b9
UD
1088 {
1089 ++had_error;
1090 continue;
1091 }
1092 cp += n;
1093
1094 if (*firstp)
1095 {
1096 /* Reclaim buffer space. */
1097 if (h_name + h_namelen == buffer)
1098 {
1099 buffer = h_name;
1100 buflen += h_namelen;
1101 }
1102
1103 n = strlen (tbuf) + 1;
1104 if (__builtin_expect (n > buflen, 0))
1105 goto too_small;
1106 if (__builtin_expect (n >= MAXHOSTNAMELEN, 0))
1107 {
1108 ++had_error;
1109 continue;
1110 }
1111
1112 canon = buffer;
1113 buffer = __mempcpy (buffer, tbuf, n);
1114 buflen -= n;
1115 h_namelen = 0;
1116 }
1117 continue;
1118 }
9ba27474
UD
1119#if 1
1120 // We should not see any types other than those explicitly listed
1121 // below. Some types sent by server seem missing, though. Just
1122 // collect the data for now.
1123 if (__builtin_expect (type != T_A && type != T_AAAA, 0))
1124#else
1eb946b9
UD
1125 if (__builtin_expect (type == T_SIG, 0)
1126 || __builtin_expect (type == T_KEY, 0)
1127 || __builtin_expect (type == T_NXT, 0)
c1283552
UD
1128 || __builtin_expect (type == T_PTR, 0)
1129 || __builtin_expect (type == T_DNAME, 0))
9ba27474 1130#endif
1eb946b9
UD
1131 {
1132 /* We don't support DNSSEC yet. For now, ignore the record
1133 and send a low priority message to syslog.
1134
c1283552 1135 We also don't expect T_PTR or T_DNAME messages. */
1eb946b9
UD
1136 syslog (LOG_DEBUG | LOG_AUTH,
1137 "getaddrinfo*.gaih_getanswer: got type \"%s\"",
1138 p_type (type));
1139 cp += n;
1140 continue;
1141 }
1142 if (type != T_A && type != T_AAAA)
1143 abort ();
1144
1145 if (*pat == NULL)
1146 {
1147 uintptr_t pad = (-(uintptr_t) buffer
1148 % __alignof__ (struct gaih_addrtuple));
1149 buffer += pad;
1150 buflen = buflen > pad ? buflen - pad : 0;
1151
1152 if (__builtin_expect (buflen < sizeof (struct gaih_addrtuple),
1153 0))
f854efd7 1154 goto too_small;
1eb946b9
UD
1155
1156 *pat = (struct gaih_addrtuple *) buffer;
1157 buffer += sizeof (struct gaih_addrtuple);
1158 buflen -= sizeof (struct gaih_addrtuple);
1159 }
1160
1161 (*pat)->name = NULL;
1162 (*pat)->next = NULL;
1163
1164 if (*firstp)
1165 {
1166 if (ttl != 0 && ttlp != NULL)
1167 *ttlp = ttl;
1168
ea42a20c 1169 (*pat)->name = canon ?: h_name;
1eb946b9
UD
1170
1171 *firstp = 0;
1172 }
1173
1174 (*pat)->family = type == T_A ? AF_INET : AF_INET6;
b7da31a1
UD
1175 if (__builtin_expect ((type == T_A && n != INADDRSZ)
1176 || (type == T_AAAA && n != IN6ADDRSZ), 0))
1177 {
1178 ++had_error;
1179 continue;
1180 }
1eb946b9
UD
1181 memcpy ((*pat)->addr, cp, n);
1182 cp += n;
1183 (*pat)->scopeid = 0;
1184
1185 pat = &((*pat)->next);
1186
1187 haveanswer = 1;
1188 }
1189
1190 if (haveanswer)
1191 {
1192 *patp = pat;
1193 *bufferp = buffer;
1194 *buflenp = buflen;
1195
1196 *h_errnop = NETDB_SUCCESS;
1197 return NSS_STATUS_SUCCESS;
1198 }
1199
1200 /* Special case here: if the resolver sent a result but it only
1201 contains a CNAME while we are looking for a T_A or T_AAAA record,
1202 we fail with NOTFOUND instead of TRYAGAIN. */
1203 return canon == NULL ? NSS_STATUS_TRYAGAIN : NSS_STATUS_NOTFOUND;
1204}
1205
1206
1207static enum nss_status
1208gaih_getanswer (const querybuf *answer1, int anslen1, const querybuf *answer2,
1209 int anslen2, const char *qname,
1210 struct gaih_addrtuple **pat, char *buffer, size_t buflen,
1211 int *errnop, int *h_errnop, int32_t *ttlp)
1212{
1213 int first = 1;
1214
343996c4
UD
1215 enum nss_status status = NSS_STATUS_NOTFOUND;
1216
1217 if (anslen1 > 0)
1218 status = gaih_getanswer_slice(answer1, anslen1, qname,
1219 &pat, &buffer, &buflen,
1220 errnop, h_errnop, ttlp,
1221 &first);
f854efd7 1222 if ((status == NSS_STATUS_SUCCESS || status == NSS_STATUS_NOTFOUND
b7da31a1
UD
1223 || (status == NSS_STATUS_TRYAGAIN
1224 && (errno != ERANGE || *h_errnop != NO_RECOVERY)))
343996c4 1225 && answer2 != NULL && anslen2 > 0)
f854efd7
UD
1226 {
1227 enum nss_status status2 = gaih_getanswer_slice(answer2, anslen2, qname,
1228 &pat, &buffer, &buflen,
1229 errnop, h_errnop, ttlp,
1230 &first);
b7da31a1 1231 if (status != NSS_STATUS_SUCCESS && status2 != NSS_STATUS_NOTFOUND)
f854efd7
UD
1232 status = status2;
1233 }
1eb946b9
UD
1234
1235 return status;
1236}