1 /* Copyright (C) 1996-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Extended from original form 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/>. */
19 /* Parts of this file are plain copies of the file `getnetnamadr.c' from
20 the bind package and it has the following copyright. */
22 /* Copyright (c) 1993 Carlos Leandro and Rui Salgueiro
23 * Dep. Matematica Universidade de Coimbra, Portugal, Europe
25 * Permission to use, copy, modify, and distribute this software for any
26 * purpose with or without fee is hereby granted, provided that the above
27 * copyright notice and this permission notice appear in all copies.
30 * Copyright (c) 1983, 1993
31 * The Regents of the University of California. All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
41 * 4. Neither the name of the University nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
67 #include <arpa/inet.h>
69 /* Maximum number of aliases we allow. */
70 #define MAX_NR_ALIASES 48
74 # define MAXPACKET PACKETSZ
76 # define MAXPACKET 65536
87 /* We need this time later. */
88 typedef union querybuf
91 u_char buf
[MAXPACKET
];
94 /* These functions are defined in res_comp.c. */
95 #define NS_MAXCDNAME 255 /* maximum compressed domain name */
96 extern int __ns_name_ntop (const u_char
*, char *, size_t) __THROW
;
97 extern int __ns_name_unpack (const u_char
*, const u_char
*,
98 const u_char
*, u_char
*, size_t) __THROW
;
101 /* Prototypes for local functions. */
102 static enum nss_status
getanswer_r (const querybuf
*answer
, int anslen
,
103 struct netent
*result
, char *buffer
,
104 size_t buflen
, int *errnop
, int *h_errnop
,
105 lookup_method net_i
);
109 _nss_dns_getnetbyname_r (const char *name
, struct netent
*result
,
110 char *buffer
, size_t buflen
, int *errnop
,
113 /* Return entry for network with NAME. */
119 querybuf
*orig_net_buffer
;
122 enum nss_status status
;
124 if (__res_maybe_init (&_res
, 0) == -1)
125 return NSS_STATUS_UNAVAIL
;
127 qbuf
= strdupa (name
);
129 net_buffer
.buf
= orig_net_buffer
= (querybuf
*) alloca (1024);
131 anslen
= __libc_res_nsearch (&_res
, qbuf
, C_IN
, T_PTR
, net_buffer
.buf
->buf
,
132 1024, &net_buffer
.ptr
, NULL
, NULL
, NULL
, NULL
);
137 if (net_buffer
.buf
!= orig_net_buffer
)
138 free (net_buffer
.buf
);
139 return (errno
== ECONNREFUSED
140 || errno
== EPFNOSUPPORT
141 || errno
== EAFNOSUPPORT
)
142 ? NSS_STATUS_UNAVAIL
: NSS_STATUS_NOTFOUND
;
145 status
= getanswer_r (net_buffer
.buf
, anslen
, result
, buffer
, buflen
,
146 errnop
, herrnop
, BYNAME
);
147 if (net_buffer
.buf
!= orig_net_buffer
)
148 free (net_buffer
.buf
);
154 _nss_dns_getnetbyaddr_r (uint32_t net
, int type
, struct netent
*result
,
155 char *buffer
, size_t buflen
, int *errnop
,
158 /* Return entry for network with NAME. */
159 enum nss_status status
;
165 querybuf
*orig_net_buffer
;
166 unsigned int net_bytes
[4];
172 /* No net address lookup for IPv6 yet. */
174 return NSS_STATUS_UNAVAIL
;
176 if (__res_maybe_init (&_res
, 0) == -1)
177 return NSS_STATUS_UNAVAIL
;
179 net2
= (u_int32_t
) net
;
180 for (cnt
= 4; net2
!= 0; net2
>>= 8)
181 net_bytes
[--cnt
] = net2
& 0xff;
186 /* Class A network. */
187 sprintf (qbuf
, "0.0.0.%u.in-addr.arpa", net_bytes
[3]);
190 /* Class B network. */
191 sprintf (qbuf
, "0.0.%u.%u.in-addr.arpa", net_bytes
[3], net_bytes
[2]);
194 /* Class C network. */
195 sprintf (qbuf
, "0.%u.%u.%u.in-addr.arpa", net_bytes
[3], net_bytes
[2],
199 /* Class D - E network. */
200 sprintf (qbuf
, "%u.%u.%u.%u.in-addr.arpa", net_bytes
[3], net_bytes
[2],
201 net_bytes
[1], net_bytes
[0]);
205 net_buffer
.buf
= orig_net_buffer
= (querybuf
*) alloca (1024);
207 anslen
= __libc_res_nquery (&_res
, qbuf
, C_IN
, T_PTR
, net_buffer
.buf
->buf
,
208 1024, &net_buffer
.ptr
, NULL
, NULL
, NULL
, NULL
);
213 __set_errno (olderr
);
214 if (net_buffer
.buf
!= orig_net_buffer
)
215 free (net_buffer
.buf
);
216 return (err
== ECONNREFUSED
217 || err
== EPFNOSUPPORT
218 || err
== EAFNOSUPPORT
)
219 ? NSS_STATUS_UNAVAIL
: NSS_STATUS_NOTFOUND
;
222 status
= getanswer_r (net_buffer
.buf
, anslen
, result
, buffer
, buflen
,
223 errnop
, herrnop
, BYADDR
);
224 if (net_buffer
.buf
!= orig_net_buffer
)
225 free (net_buffer
.buf
);
226 if (status
== NSS_STATUS_SUCCESS
)
228 /* Strip trailing zeros. */
229 unsigned int u_net
= net
; /* Maybe net should be unsigned? */
231 while ((u_net
& 0xff) == 0 && u_net
!= 0)
233 result
->n_net
= u_net
;
241 #define offsetof(Type, Member) ((size_t) &((Type *) NULL)->Member)
243 static enum nss_status
244 getanswer_r (const querybuf
*answer
, int anslen
, struct netent
*result
,
245 char *buffer
, size_t buflen
, int *errnop
, int *h_errnop
,
249 * Find first satisfactory answer
251 * answer --> +------------+ ( MESSAGE )
254 * | Question | the question for the name server
256 * | Answer | RRs answering the question
258 * | Authority | RRs pointing toward an authority
259 * | Additional | RRs holding additional information
264 char *aliases
[MAX_NR_ALIASES
];
268 uintptr_t pad
= -(uintptr_t) buffer
% __alignof__ (struct net_data
);
271 if (__glibc_unlikely (buflen
< sizeof (*net_data
) + pad
))
273 /* The buffer is too small. */
276 *h_errnop
= NETDB_INTERNAL
;
277 return NSS_STATUS_TRYAGAIN
;
281 net_data
= (struct net_data
*) buffer
;
282 int linebuflen
= buflen
- offsetof (struct net_data
, linebuffer
);
283 if (buflen
- offsetof (struct net_data
, linebuffer
) != linebuflen
)
284 linebuflen
= INT_MAX
;
285 const unsigned char *end_of_message
= &answer
->buf
[anslen
];
286 const HEADER
*header_pointer
= &answer
->hdr
;
287 /* #/records in the answer section. */
288 int answer_count
= ntohs (header_pointer
->ancount
);
289 /* #/entries in the question section. */
290 int question_count
= ntohs (header_pointer
->qdcount
);
291 char *bp
= net_data
->linebuffer
;
292 const unsigned char *cp
= &answer
->buf
[HFIXEDSZ
];
293 char **alias_pointer
;
295 u_char packtmp
[NS_MAXCDNAME
];
297 if (question_count
== 0)
299 /* FIXME: the Sun version uses for host name lookup an additional
300 parameter for pointing to h_errno. this is missing here.
301 OSF/1 has a per-thread h_errno variable. */
302 if (header_pointer
->aa
!= 0)
304 __set_h_errno (HOST_NOT_FOUND
);
305 return NSS_STATUS_NOTFOUND
;
309 __set_h_errno (TRY_AGAIN
);
310 return NSS_STATUS_TRYAGAIN
;
314 /* Skip the question part. */
315 while (question_count
-- > 0)
317 int n
= __dn_skipname (cp
, end_of_message
);
318 if (n
< 0 || end_of_message
- (cp
+ n
) < QFIXEDSZ
)
320 __set_h_errno (NO_RECOVERY
);
321 return NSS_STATUS_UNAVAIL
;
326 alias_pointer
= result
->n_aliases
= &net_data
->aliases
[0];
327 *alias_pointer
= NULL
;
330 while (--answer_count
>= 0 && cp
< end_of_message
)
332 int n
= dn_expand (answer
->buf
, end_of_message
, cp
, bp
, linebuflen
);
335 n
= __ns_name_unpack (answer
->buf
, end_of_message
, cp
,
336 packtmp
, sizeof packtmp
);
337 if (n
!= -1 && __ns_name_ntop (packtmp
, bp
, linebuflen
) == -1)
339 if (errno
== EMSGSIZE
)
345 if (n
> 0 && bp
[0] == '.')
348 if (n
< 0 || res_dnok (bp
) == 0)
352 GETSHORT (class, cp
);
353 cp
+= INT32SZ
; /* TTL */
356 if (class == C_IN
&& type
== T_PTR
)
358 n
= __ns_name_unpack (answer
->buf
, end_of_message
, cp
,
359 packtmp
, sizeof packtmp
);
360 if (n
!= -1 && __ns_name_ntop (packtmp
, bp
, linebuflen
) == -1)
362 if (errno
== EMSGSIZE
)
368 if (n
< 0 || !res_hnok (bp
))
370 /* XXX What does this mean? The original form from bind
371 returns NULL. Incrementing cp has no effect in any case.
372 What should I return here. ??? */
374 return NSS_STATUS_UNAVAIL
;
377 if (alias_pointer
+ 2 < &net_data
->aliases
[MAX_NR_ALIASES
])
379 *alias_pointer
++ = bp
;
383 result
->n_addrtype
= class == C_IN
? AF_INET
: AF_UNSPEC
;
391 *alias_pointer
= NULL
;
395 result
->n_name
= *result
->n_aliases
++;
397 return NSS_STATUS_SUCCESS
;
402 for (ap
= result
->n_aliases
; *ap
!= NULL
; ++ap
)
404 /* Check each alias name for being of the forms:
405 4.3.2.1.in-addr.arpa = net 1.2.3.4
406 3.2.1.in-addr.arpa = net 0.1.2.3
407 2.1.in-addr.arpa = net 0.0.1.2
408 1.in-addr.arpa = net 0.0.0.1
410 uint32_t val
= 0; /* Accumulator for n_net value. */
411 unsigned int shift
= 0; /* Which part we are parsing now. */
412 const char *p
= *ap
; /* Consuming the string. */
415 /* Match the leading 0 or 0[xX] base indicator. */
416 unsigned int base
= 10;
417 if (*p
== '0' && p
[1] != '.')
421 if (*p
== 'x' || *p
== 'X')
426 break; /* No digit here. Give up on alias. */
432 uint32_t part
= 0; /* Accumulates this part's number. */
435 if (isdigit (*p
) && (*p
- '0' < base
))
436 part
= (part
* base
) + (*p
- '0');
437 else if (base
== 16 && isxdigit (*p
))
438 part
= (part
<< 4) + 10 + (tolower (*p
) - 'a');
440 } while (*p
!= '\0' && *p
!= '.');
443 break; /* Bad form. Give up on this name. */
445 /* Install this as the next more significant byte. */
446 val
|= part
<< shift
;
450 /* If we are out of digits now, there are two cases:
451 1. We are done with digits and now see "in-addr.arpa".
452 2. This is not the droid we are looking for. */
453 if (!isdigit (*p
) && !strcasecmp (p
, "in-addr.arpa"))
456 return NSS_STATUS_SUCCESS
;
459 /* Keep going when we have seen fewer than 4 parts. */
460 } while (shift
< 32);
467 __set_h_errno (TRY_AGAIN
);
468 return NSS_STATUS_TRYAGAIN
;