1 .\" $KAME: getaddrinfo.3,v 1.36 2005/01/05 03:23:05 itojun Exp $
2 .\" $OpenBSD: getaddrinfo.3,v 1.35 2004/12/21 03:40:31 jaredy Exp $
4 .\" Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
5 .\" Copyright (C) 2000, 2001 Internet Software Consortium.
7 .\" Permission to use, copy, modify, and distribute this software for any
8 .\" purpose with or without fee is hereby granted, provided that the above
9 .\" copyright notice and this permission notice appear in all copies.
11 .\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 .\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 .\" AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 .\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 .\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 .\" PERFORMANCE OF THIS SOFTWARE.
19 .\" $FreeBSD: src/lib/libc/net/getaddrinfo.3,v 1.34 2008/07/01 22:59:20 danger Exp $
27 .Nd socket address structure to host and service name
29 .Fd #include <sys/types.h>
30 .Fd #include <sys/socket.h>
31 .Fd #include <netdb.h>
34 .Fa "const char *hostname" "const char *servname"
35 .Fa "const struct addrinfo *hints" "struct addrinfo **res"
38 .Fn freeaddrinfo "struct addrinfo *ai"
42 function is used to get a list of
44 addresses and port numbers for host
48 It is a replacement for and provides more flexibility than the
58 arguments are either pointers to NUL-terminated strings or the null pointer.
59 An acceptable value for
61 is either a valid host name or a numeric host address string consisting
62 of a dotted decimal IPv4 address or an IPv6 address.
65 is either a decimal port number or a service name listed in
74 is an optional pointer to a
80 int ai_flags; /* input flags */
81 int ai_family; /* protocol family for socket */
82 int ai_socktype; /* socket type */
83 int ai_protocol; /* protocol for socket */
84 socklen_t ai_addrlen; /* length of socket-address */
85 struct sockaddr *ai_addr; /* socket-address for socket */
86 char *ai_canonname; /* canonical name for service location */
87 struct addrinfo *ai_next; /* pointer to next in list */
91 This structure can be used to provide hints concerning the type of socket
92 that the caller supports or wishes to use.
93 The caller can supply the following structure elements in
95 .Bl -tag -width "ai_socktypeXX"
97 The protocol family that should be used.
102 it means the caller will accept any protocol family supported by the
105 Denotes the type of socket that is wanted:
112 is zero the caller will accept any socket type.
114 Indicates which transport protocol is desired,
120 is zero the caller will accept any protocol.
126 parameter points shall be set to zero
127 or be the bitwise-inclusive OR of one or more of the values
136 .Bl -tag -width "AI_CANONNAMEXX"
140 bit is set, IPv4 addresses shall be returned only if
141 an IPv4 address is configured on the local system,
142 and IPv6 addresses shall be returned only if
143 an IPv6 address is configured on the local system.
151 shall return all matching IPv6 and IPv4 addresses.
160 bit is set, a successful call to
162 will return a NUL-terminated string containing the canonical name
163 of the specified hostname in the
168 .It Dv AI_NUMERICHOST
171 bit is set, it indicates that
173 should be treated as a numeric string defining an IPv4 or IPv6 address
174 and no name resolution should be attempted.
175 .It Dv AI_NUMERICSERV
181 string supplied shall be a numeric port string.
184 error shall be returned.
185 This bit shall prevent any type of name resolution service
186 (for example, NIS+) from being invoked.
190 bit is set it indicates that the returned socket address structure
191 is intended for use in a call to
195 argument is the null pointer, then the IP address portion of the
196 socket address structure will be set to
198 for an IPv4 address or
204 bit is not set, the returned socket address structure will be ready
207 for a connection-oriented protocol or
212 if a connectionless protocol was chosen.
215 address portion of the socket address structure will be set to the
218 is the null pointer and
224 flag is specified along with an
230 shall return IPv4-mapped IPv6 addresses
231 on finding no matching IPv6 addresses (
236 flag shall be ignored unless
243 All other elements of the
247 must be zero or the null pointer.
253 behaves as if the caller provided a
259 and all other elements set to zero or
262 After a successful call to
265 is a pointer to a linked list of one or more
268 The list can be traversed by following the
272 structure until a null pointer is encountered.
280 structure are suitable for a call to
284 structure in the list, the
286 member points to a filled-in socket address structure of length
289 This implementation of
291 allows numeric IPv6 address notation with scope identifier,
292 as documented in chapter 11 of draft-ietf-ipv6-scoping-arch-02.txt.
293 By appending the percent character and scope identifier to addresses,
297 This would make management of scoped addresses easier
298 and allows cut-and-paste input of scoped addresses.
300 At this moment the code supports only link-local addresses with the format.
301 The scope identifier is hardcoded to the name of the hardware interface
313 on the link associated with the
318 The current implementation assumes a one-to-one relationship between
319 the interface and link, which is not necessarily true from the specification.
321 All of the information returned by
323 is dynamically allocated: the
325 structures themselves as well as the socket address structures and
326 the canonical host name strings included in the
330 Memory allocated for the dynamically allocated structures created by
340 structure created by a call to
344 returns zero on success or one of the error codes listed in
348 The following code tries to connect to
353 It loops through all the addresses available, regardless of address family.
354 If the destination resolves to an IPv4 address, it will use an
357 Similarly, if it resolves to IPv6, an
360 Observe that there is no hardcoded reference to a particular address family.
361 The code works even if
363 returns addresses that are not IPv4/v6.
364 .Bd -literal -offset indent
365 struct addrinfo hints, *res, *res0;
368 const char *cause = NULL;
370 memset(&hints, 0, sizeof(hints));
371 hints.ai_family = PF_UNSPEC;
372 hints.ai_socktype = SOCK_STREAM;
373 error = getaddrinfo("www.kame.net", "http", &hints, &res0);
375 errx(1, "%s", gai_strerror(error));
379 for (res = res0; res; res = res->ai_next) {
380 s = socket(res->ai_family, res->ai_socktype,
387 if (connect(s, res->ai_addr, res->ai_addrlen) < 0) {
394 break; /* okay we got one */
403 The following example tries to open a wildcard listening socket onto service
405 for all the address families available.
406 .Bd -literal -offset indent
407 struct addrinfo hints, *res, *res0;
411 const char *cause = NULL;
413 memset(&hints, 0, sizeof(hints));
414 hints.ai_family = PF_UNSPEC;
415 hints.ai_socktype = SOCK_STREAM;
416 hints.ai_flags = AI_PASSIVE;
417 error = getaddrinfo(NULL, "http", &hints, &res0);
419 errx(1, "%s", gai_strerror(error));
423 for (res = res0; res && nsock < MAXSOCK; res = res->ai_next) {
424 s[nsock] = socket(res->ai_family, res->ai_socktype,
431 if (bind(s[nsock], res->ai_addr, res->ai_addrlen) < 0) {
436 (void) listen(s[nsock], 5);
452 .Xr gethostbyname 3 ,
454 .Xr getservbyname 3 ,
467 .%T Basic Socket Interface Extensions for IPv6
477 .%T "IPv6 Scoped Address Architecture"
479 .%N draft-ietf-ipv6-scoping-arch-02.txt
480 .%O work in progress material
484 .%T Protocol Independence Using the Sockets API
485 .%B "Proceedings of the freenix track: 2000 USENIX annual technical conference"
491 .\"function as implemented in
493 .\"currently does not support
499 .\"if one of them is specified.
503 function is defined by the
505 specification and documented in
507 .Dq Basic Socket Interface Extensions for IPv6 .