1 /* Convert socket address to string using Name Service Switch modules.
2 Copyright (C) 1997-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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 <https://www.gnu.org/licenses/>. */
19 /* The Inner Net License, Version 2.00
21 The author(s) grant permission for redistribution and use in source and
22 binary forms, with or without modification, of the software and documentation
23 provided that the following conditions are met:
25 0. If you receive a version of the software that is specifically labelled
26 as not being for redistribution (check the version message and/or README),
27 you are not permitted to redistribute that version of the software in any
29 1. All terms of the all other applicable copyrights and licenses must be
31 2. Redistributions of source code must retain the authors' copyright
32 notice(s), this list of conditions, and the following disclaimer.
33 3. Redistributions in binary form must reproduce the authors' copyright
34 notice(s), this list of conditions, and the following disclaimer in the
35 documentation and/or other materials provided with the distribution.
36 4. [The copyright holder has authorized the removal of this clause.]
37 5. Neither the name(s) of the author(s) 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.
41 THIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY
42 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
43 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
44 DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY
45 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
46 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
48 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
49 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
50 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52 If these license terms cause you a real problem, contact the author. */
54 /* This software is Copyright 1996 by Craig Metz, All Rights Reserved. */
64 #include <arpa/inet.h>
66 #include <netinet/in.h>
67 #include <sys/param.h>
68 #include <sys/socket.h>
69 #include <sys/types.h>
71 #include <sys/utsname.h>
72 #include <libc-lock.h>
73 #include <scratch_buffer.h>
74 #include <net-internal.h>
75 #include <set-freeres.h>
78 # define min(x,y) (((x) > (y)) ? (y) : (x))
83 /* Former NI_IDN_ALLOW_UNASSIGNED, NI_IDN_USE_STD3_ASCII_RULES flags,
85 #define DEPRECATED_NI_IDN 192
87 /* Return true if no memory allocation failure happened (even if domain
88 name could not be obtained) or false otherwise. */
90 nrl_domainname_core (struct scratch_buffer
*tmpbuf
)
93 struct hostent
*h
, th
;
96 while (__gethostbyname_r ("localhost", &th
, tmpbuf
->data
, tmpbuf
->length
,
99 if (herror
== NETDB_INTERNAL
&& errno
== ERANGE
)
101 if (!scratch_buffer_grow (tmpbuf
))
108 if (h
!= NULL
&& (c
= strchr (h
->h_name
, '.')) != NULL
)
110 domain
= __strdup (++c
);
111 return domain
!= NULL
;
114 /* The name contains no domain information. Use the name
115 now to get more information. */
116 while (__gethostname (tmpbuf
->data
, tmpbuf
->length
))
117 if (!scratch_buffer_grow (tmpbuf
))
120 if ((c
= strchr (tmpbuf
->data
, '.')) != NULL
)
122 domain
= __strdup (++c
);
123 return domain
!= NULL
;
126 /* We need to preserve the hostname. */
127 size_t hstnamelen
= strlen (tmpbuf
->data
) + 1;
128 while (__gethostbyname_r (tmpbuf
->data
, &th
, tmpbuf
->data
+ hstnamelen
,
129 tmpbuf
->length
- hstnamelen
, &h
, &herror
))
131 if (herror
== NETDB_INTERNAL
&& errno
== ERANGE
)
133 if (!scratch_buffer_grow_preserve (tmpbuf
))
140 if (h
!= NULL
&& (c
= strchr(h
->h_name
, '.')) != NULL
)
142 domain
= __strdup (++c
);
143 return domain
!= NULL
;
146 struct in_addr in_addr
= { .s_addr
= htonl (INADDR_LOOPBACK
) };
148 while (__gethostbyaddr_r ((const char *) &in_addr
, sizeof (struct in_addr
),
149 AF_INET
, &th
, tmpbuf
->data
, tmpbuf
->length
, &h
,
152 if (herror
== NETDB_INTERNAL
&& errno
== ERANGE
)
154 if (!scratch_buffer_grow (tmpbuf
))
161 if (h
!= NULL
&& (c
= strchr (h
->h_name
, '.')) != NULL
)
163 domain
= __strdup (++c
);
164 return domain
!= NULL
;
170 nrl_domainname (void)
172 static int not_first
;
174 if (__glibc_likely (atomic_load_acquire (¬_first
) != 0))
179 __libc_lock_define_initialized (static, lock
);
180 __libc_lock_lock (lock
);
182 if (atomic_load_relaxed (¬_first
) == 0)
184 struct scratch_buffer tmpbuf
;
185 scratch_buffer_init (&tmpbuf
);
187 if ((r
= nrl_domainname_core (&tmpbuf
)))
188 atomic_store_release (¬_first
, 1);
190 scratch_buffer_free (&tmpbuf
);
193 __libc_lock_unlock (lock
);
198 /* Copy a string to a destination buffer with length checking. Return
199 EAI_OVERFLOW if the buffer is not large enough, and 0 on
202 checked_copy (char *dest
, size_t destlen
, const char *source
)
204 size_t source_length
= strlen (source
);
205 if (source_length
+ 1 > destlen
)
207 memcpy (dest
, source
, source_length
+ 1);
211 /* Helper function for CHECKED_SNPRINTF below. */
213 check_sprintf_result (int result
, size_t destlen
)
217 if ((size_t) result
>= destlen
)
218 /* If ret == destlen, there was no room for the terminating NUL
224 /* Format a string in the destination buffer. Return 0 on success,
225 EAI_OVERFLOW in case the buffer is too small, or EAI_SYSTEM on any
227 #define CHECKED_SNPRINTF(dest, destlen, format, ...) \
228 check_sprintf_result \
229 (__snprintf (dest, destlen, format, __VA_ARGS__), destlen)
231 /* Convert host name, AF_INET/AF_INET6 case, name only. */
233 gni_host_inet_name (struct scratch_buffer
*tmpbuf
,
234 const struct sockaddr
*sa
, socklen_t addrlen
,
235 char *host
, socklen_t hostlen
, int flags
)
239 struct hostent
*h
= NULL
;
240 if (sa
->sa_family
== AF_INET6
)
242 const struct sockaddr_in6
*sin6p
= (const struct sockaddr_in6
*) sa
;
243 while (__gethostbyaddr_r (&sin6p
->sin6_addr
, sizeof(struct in6_addr
),
244 AF_INET6
, &th
, tmpbuf
->data
, tmpbuf
->length
,
246 if (herrno
== NETDB_INTERNAL
&& errno
== ERANGE
)
248 if (!scratch_buffer_grow (tmpbuf
))
250 __set_h_errno (herrno
);
259 const struct sockaddr_in
*sinp
= (const struct sockaddr_in
*) sa
;
260 while (__gethostbyaddr_r (&sinp
->sin_addr
, sizeof(struct in_addr
),
261 AF_INET
, &th
, tmpbuf
->data
, tmpbuf
->length
,
263 if (herrno
== NETDB_INTERNAL
&& errno
== ERANGE
)
265 if (!scratch_buffer_grow (tmpbuf
))
267 __set_h_errno (herrno
);
277 if (herrno
== NETDB_INTERNAL
)
279 __set_h_errno (herrno
);
282 if (herrno
== TRY_AGAIN
)
284 __set_h_errno (herrno
);
291 if (flags
& NI_NOFQDN
)
293 if (!nrl_domainname ())
297 if (c
!= NULL
&& (c
= strstr (h
->h_name
, c
))
298 && (c
!= h
->h_name
) && (*(--c
) == '.'))
299 /* Terminate the string after the prefix. */
303 /* If requested, convert from the IDN format. */
304 bool do_idn
= flags
& NI_IDN
;
308 int rc
= __idna_from_dns_encoding (h
->h_name
, &h_name
);
309 if (rc
== EAI_IDN_ENCODE
)
310 /* Use the punycode name as a fallback. */
318 size_t len
= strlen (h_name
) + 1;
321 memcpy (host
, h_name
, len
);
332 /* Convert host name, AF_INET/AF_INET6 case, numeric conversion. */
334 gni_host_inet_numeric (struct scratch_buffer
*tmpbuf
,
335 const struct sockaddr
*sa
, socklen_t addrlen
,
336 char *host
, socklen_t hostlen
, int flags
)
338 if (sa
->sa_family
== AF_INET6
)
340 const struct sockaddr_in6
*sin6p
= (const struct sockaddr_in6
*) sa
;
341 if (inet_ntop (AF_INET6
, &sin6p
->sin6_addr
, host
, hostlen
) == NULL
)
344 uint32_t scopeid
= sin6p
->sin6_scope_id
;
347 size_t used_hostlen
= __strnlen (host
, hostlen
);
348 /* Location of the scope string in the host buffer. */
349 char *scope_start
= host
+ used_hostlen
;
350 size_t scope_length
= hostlen
- used_hostlen
;
352 if (IN6_IS_ADDR_LINKLOCAL (&sin6p
->sin6_addr
)
353 || IN6_IS_ADDR_MC_LINKLOCAL (&sin6p
->sin6_addr
))
355 char scopebuf
[IFNAMSIZ
];
356 if (if_indextoname (scopeid
, scopebuf
) != NULL
)
357 return CHECKED_SNPRINTF
358 (scope_start
, scope_length
,
359 "%c%s", SCOPE_DELIMITER
, scopebuf
);
361 return CHECKED_SNPRINTF
362 (scope_start
, scope_length
, "%c%u", SCOPE_DELIMITER
, scopeid
);
367 const struct sockaddr_in
*sinp
= (const struct sockaddr_in
*) sa
;
368 if (inet_ntop (AF_INET
, &sinp
->sin_addr
, host
, hostlen
) == NULL
)
374 /* Convert AF_INET or AF_INET6 socket address, host part. */
376 gni_host_inet (struct scratch_buffer
*tmpbuf
,
377 const struct sockaddr
*sa
, socklen_t addrlen
,
378 char *host
, socklen_t hostlen
, int flags
)
380 if (!(flags
& NI_NUMERICHOST
))
382 int result
= gni_host_inet_name
383 (tmpbuf
, sa
, addrlen
, host
, hostlen
, flags
);
384 if (result
!= EAI_NONAME
)
388 if (flags
& NI_NAMEREQD
)
391 return gni_host_inet_numeric
392 (tmpbuf
, sa
, addrlen
, host
, hostlen
, flags
);
395 /* Convert AF_LOCAL socket address, host part. */
397 gni_host_local (struct scratch_buffer
*tmpbuf
,
398 const struct sockaddr
*sa
, socklen_t addrlen
,
399 char *host
, socklen_t hostlen
, int flags
)
401 if (!(flags
& NI_NUMERICHOST
))
403 struct utsname utsname
;
404 if (uname (&utsname
) == 0)
405 return checked_copy (host
, hostlen
, utsname
.nodename
);
408 if (flags
& NI_NAMEREQD
)
411 return checked_copy (host
, hostlen
, "localhost");
414 /* Convert the host part of an AF_LOCAK socket address. */
416 gni_host (struct scratch_buffer
*tmpbuf
,
417 const struct sockaddr
*sa
, socklen_t addrlen
,
418 char *host
, socklen_t hostlen
, int flags
)
420 switch (sa
->sa_family
)
424 return gni_host_inet (tmpbuf
, sa
, addrlen
, host
, hostlen
, flags
);
427 return gni_host_local (tmpbuf
, sa
, addrlen
, host
, hostlen
, flags
);
434 /* Convert service to string, AF_INET and AF_INET6 variant. */
436 gni_serv_inet (struct scratch_buffer
*tmpbuf
,
437 const struct sockaddr
*sa
, socklen_t addrlen
,
438 char *serv
, socklen_t servlen
, int flags
)
441 (offsetof (struct sockaddr_in
, sin_port
)
442 == offsetof (struct sockaddr_in6
, sin6_port
)
443 && sizeof (((struct sockaddr_in
) {}).sin_port
) == sizeof (in_port_t
)
444 && sizeof (((struct sockaddr_in6
) {}).sin6_port
) == sizeof (in_port_t
),
445 "AF_INET and AF_INET6 port consistency");
446 const struct sockaddr_in
*sinp
= (const struct sockaddr_in
*) sa
;
447 if (!(flags
& NI_NUMERICSERV
))
449 struct servent
*s
, ts
;
451 while ((e
= __getservbyport_r (sinp
->sin_port
,
453 ? "udp" : "tcp"), &ts
,
454 tmpbuf
->data
, tmpbuf
->length
, &s
)))
458 if (!scratch_buffer_grow (tmpbuf
))
465 return checked_copy (serv
, servlen
, s
->s_name
);
466 /* Fall through to numeric conversion. */
468 return CHECKED_SNPRINTF (serv
, servlen
, "%d", ntohs (sinp
->sin_port
));
471 /* Convert service to string, AF_LOCAL variant. */
473 gni_serv_local (struct scratch_buffer
*tmpbuf
,
474 const struct sockaddr
*sa
, socklen_t addrlen
,
475 char *serv
, socklen_t servlen
, int flags
)
478 (serv
, servlen
, ((const struct sockaddr_un
*) sa
)->sun_path
);
481 /* Convert service to string, dispatching to the implementations
484 gni_serv (struct scratch_buffer
*tmpbuf
,
485 const struct sockaddr
*sa
, socklen_t addrlen
,
486 char *serv
, socklen_t servlen
, int flags
)
488 switch (sa
->sa_family
)
492 return gni_serv_inet (tmpbuf
, sa
, addrlen
, serv
, servlen
, flags
);
494 return gni_serv_local (tmpbuf
, sa
, addrlen
, serv
, servlen
, flags
);
501 getnameinfo (const struct sockaddr
*sa
, socklen_t addrlen
, char *host
,
502 socklen_t hostlen
, char *serv
, socklen_t servlen
,
505 if (flags
& ~(NI_NUMERICHOST
|NI_NUMERICSERV
|NI_NOFQDN
|NI_NAMEREQD
|NI_DGRAM
506 |NI_IDN
|DEPRECATED_NI_IDN
))
509 if (sa
== NULL
|| addrlen
< sizeof (sa_family_t
))
512 if ((flags
& NI_NAMEREQD
) && host
== NULL
&& serv
== NULL
)
515 switch (sa
->sa_family
)
518 if (addrlen
< (socklen_t
) offsetof (struct sockaddr_un
, sun_path
))
522 if (addrlen
< sizeof (struct sockaddr_in
))
526 if (addrlen
< sizeof (struct sockaddr_in6
))
533 struct scratch_buffer tmpbuf
;
534 scratch_buffer_init (&tmpbuf
);
536 if (host
!= NULL
&& hostlen
> 0)
538 int result
= gni_host (&tmpbuf
, sa
, addrlen
, host
, hostlen
, flags
);
541 scratch_buffer_free (&tmpbuf
);
546 if (serv
&& (servlen
> 0))
548 int result
= gni_serv (&tmpbuf
, sa
, addrlen
, serv
, servlen
, flags
);
551 scratch_buffer_free (&tmpbuf
);
556 scratch_buffer_free (&tmpbuf
);
559 libc_hidden_def (getnameinfo
)
561 weak_alias (domain
, __libc_getnameinfo_freemem_ptr
)