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.36 2009/01/06 13:10:15 danger Exp $
27 .Nd socket address structure to host and service name
36 .Fa "const char * restrict hostname" "const char * restrict servname"
37 .Fa "const struct addrinfo * restrict hints" "struct addrinfo ** restrict res"
40 .Fn freeaddrinfo "struct addrinfo *ai"
44 function is used to get a list of
46 addresses and port numbers for host
50 It is a replacement for and provides more flexibility than the
60 arguments are either pointers to NUL-terminated strings or the null pointer.
61 An acceptable value for
63 is either a valid host name or a numeric host address string consisting
64 of a dotted decimal IPv4 address or an IPv6 address.
67 is either a decimal port number or a service name listed in
76 is an optional pointer to a
82 int ai_flags; /* input flags */
83 int ai_family; /* protocol family for socket */
84 int ai_socktype; /* socket type */
85 int ai_protocol; /* protocol for socket */
86 socklen_t ai_addrlen; /* length of socket-address */
87 struct sockaddr *ai_addr; /* socket-address for socket */
88 char *ai_canonname; /* canonical name for service location */
89 struct addrinfo *ai_next; /* pointer to next in list */
93 This structure can be used to provide hints concerning the type of socket
94 that the caller supports or wishes to use.
95 The caller can supply the following structure elements in
97 .Bl -tag -width "ai_socktypeXX"
99 The protocol family that should be used.
104 it means the caller will accept any protocol family supported by the
107 Denotes the type of socket that is wanted:
114 is zero the caller will accept any socket type.
116 Indicates which transport protocol is desired,
122 is zero the caller will accept any protocol.
128 parameter points shall be set to zero
129 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.
147 bit is set, a successful call to
149 will return a NUL-terminated string containing the canonical name
150 of the specified hostname in the
155 .It Dv AI_NUMERICHOST
158 bit is set, it indicates that
160 should be treated as a numeric string defining an IPv4 or IPv6 address
161 and no name resolution should be attempted.
162 .It Dv AI_NUMERICSERV
168 string supplied shall be a numeric port string.
171 error shall be returned.
172 This bit shall prevent any type of name resolution service
173 (for example, NIS+) from being invoked.
177 bit is set it indicates that the returned socket address structure
178 is intended for use in a call to
182 argument is the null pointer, then the IP address portion of the
183 socket address structure will be set to
185 for an IPv4 address or
191 bit is not set, the returned socket address structure will be ready
194 for a connection-oriented protocol or
199 if a connectionless protocol was chosen.
202 address portion of the socket address structure will be set to the
205 is the null pointer and
211 All other elements of the
215 must be zero or the null pointer.
221 behaves as if the caller provided a
227 and all other elements set to zero or
230 After a successful call to
233 is a pointer to a linked list of one or more
236 The list can be traversed by following the
240 structure until a null pointer is encountered.
248 structure are suitable for a call to
252 structure in the list, the
254 member points to a filled-in socket address structure of length
257 This implementation of
259 allows numeric IPv6 address notation with scope identifier,
260 as documented in chapter 11 of draft-ietf-ipv6-scoping-arch-02.txt.
261 By appending the percent character and scope identifier to addresses,
265 This would make management of scoped addresses easier
266 and allows cut-and-paste input of scoped addresses.
268 At this moment the code supports only link-local addresses with the format.
269 The scope identifier is hardcoded to the name of the hardware interface
281 on the link associated with the
286 The current implementation assumes a one-to-one relationship between
287 the interface and link, which is not necessarily true from the specification.
289 All of the information returned by
291 is dynamically allocated: the
293 structures themselves as well as the socket address structures and
294 the canonical host name strings included in the
298 Memory allocated for the dynamically allocated structures created by
308 structure created by a call to
312 returns zero on success or one of the error codes listed in
316 The following code tries to connect to
321 It loops through all the addresses available, regardless of address family.
322 If the destination resolves to an IPv4 address, it will use an
325 Similarly, if it resolves to IPv6, an
328 Observe that there is no hardcoded reference to a particular address family.
329 The code works even if
331 returns addresses that are not IPv4/v6.
332 .Bd -literal -offset indent
333 struct addrinfo hints, *res, *res0;
336 const char *cause = NULL;
338 memset(&hints, 0, sizeof(hints));
339 hints.ai_family = PF_UNSPEC;
340 hints.ai_socktype = SOCK_STREAM;
341 error = getaddrinfo("www.kame.net", "http", &hints, &res0);
343 errx(1, "%s", gai_strerror(error));
347 for (res = res0; res; res = res->ai_next) {
348 s = socket(res->ai_family, res->ai_socktype,
355 if (connect(s, res->ai_addr, res->ai_addrlen) < 0) {
362 break; /* okay we got one */
371 The following example tries to open a wildcard listening socket onto service
373 for all the address families available.
374 .Bd -literal -offset indent
375 struct addrinfo hints, *res, *res0;
379 const char *cause = NULL;
381 memset(&hints, 0, sizeof(hints));
382 hints.ai_family = PF_UNSPEC;
383 hints.ai_socktype = SOCK_STREAM;
384 hints.ai_flags = AI_PASSIVE;
385 error = getaddrinfo(NULL, "http", &hints, &res0);
387 errx(1, "%s", gai_strerror(error));
391 for (res = res0; res && nsock < MAXSOCK; res = res->ai_next) {
392 s[nsock] = socket(res->ai_family, res->ai_socktype,
399 if (bind(s[nsock], res->ai_addr, res->ai_addrlen) < 0) {
404 (void) listen(s[nsock], 5);
420 .Xr gethostbyname 3 ,
422 .Xr getservbyname 3 ,
435 .%T Basic Socket Interface Extensions for IPv6
445 .%T "IPv6 Scoped Address Architecture"
447 .%N draft-ietf-ipv6-scoping-arch-02.txt
448 .%O work in progress material
452 .%T Protocol Independence Using the Sockets API
453 .%B "Proceedings of the freenix track: 2000 USENIX annual technical conference"
459 function is defined by the
461 specification and documented in
463 .Dq Basic Socket Interface Extensions for IPv6 .