1 /***************************************************************************
3 * Project ___| | | | _ \| |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
8 * Copyright (C) 1998 - 2007, Daniel Stenberg, <daniel@haxx.se>, et al.
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 * $Id: hostip6.c,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
22 ***************************************************************************/
31 #ifdef HAVE_SYS_SOCKET_H
32 #include <sys/socket.h>
34 #ifdef HAVE_NETINET_IN_H
35 #include <netinet/in.h>
40 #ifdef HAVE_ARPA_INET_H
41 #include <arpa/inet.h>
44 #include <stdlib.h> /* required for free() prototypes */
47 #include <unistd.h> /* for the close() proto */
70 #include "inet_pton.h"
73 #define _MPRINTF_REPLACE /* use our functions only */
74 #include <curl/mprintf.h>
76 #if defined(HAVE_INET_NTOA_R) && !defined(HAVE_INET_NTOA_R_DECL)
77 #include "inet_ntoa_r.h"
81 /* The last #include file should be: */
84 /***********************************************************************
85 * Only for ipv6-enabled builds
86 **********************************************************************/
90 * This is a wrapper function for freeing name information in a protocol
91 * independent way. This takes care of using the appropriate underlaying
94 void Curl_freeaddrinfo(Curl_addrinfo
*p
)
101 * Curl_addrinfo_copy() is used by the asynch callback to copy a given
102 * address. But this is an ipv6 build and then we don't copy the address, we
103 * just return the same pointer!
105 Curl_addrinfo
*Curl_addrinfo_copy(const void *orig
, int port
)
108 return (Curl_addrinfo
*)orig
;
110 #endif /* CURLRES_ASYNCH */
111 #endif /* CURLRES_ARES */
114 /* These are strictly for memory tracing and are using the same style as the
115 * family otherwise present in memdebug.c. I put these ones here since they
116 * require a bunch of structs I didn't wanna include in memdebug.c
118 int curl_dogetaddrinfo(const char *hostname
, const char *service
,
119 struct addrinfo
*hints
,
120 struct addrinfo
**result
,
121 int line
, const char *source
)
123 int res
=(getaddrinfo
)(hostname
, service
, hints
, result
);
127 fprintf(logfile
, "ADDR %s:%d getaddrinfo() = %p\n",
128 source
, line
, (void *)*result
);
132 fprintf(logfile
, "ADDR %s:%d getaddrinfo() failed\n",
139 * For CURLRES_ARS, this should be written using ares_gethostbyaddr()
140 * (ignoring the fact c-ares doesn't return 'serv').
142 #ifdef HAVE_GETNAMEINFO
143 int curl_dogetnameinfo(GETNAMEINFO_QUAL_ARG1 GETNAMEINFO_TYPE_ARG1 sa
,
144 GETNAMEINFO_TYPE_ARG2 salen
,
145 char *host
, GETNAMEINFO_TYPE_ARG46 hostlen
,
146 char *serv
, GETNAMEINFO_TYPE_ARG46 servlen
,
147 GETNAMEINFO_TYPE_ARG7 flags
,
148 int line
, const char *source
)
150 int res
= (getnameinfo
)(sa
, salen
,
157 fprintf(logfile
, "GETNAME %s:%d getnameinfo()\n",
162 fprintf(logfile
, "GETNAME %s:%d getnameinfo() failed = %d\n",
169 void curl_dofreeaddrinfo(struct addrinfo
*freethis
,
170 int line
, const char *source
)
172 (freeaddrinfo
)(freethis
);
174 fprintf(logfile
, "ADDR %s:%d freeaddrinfo(%p)\n",
175 source
, line
, (void *)freethis
);
177 #endif /* CURLDEBUG */
180 * Curl_ipvalid() checks what CURL_IPRESOLVE_* requirements that might've
181 * been set and returns TRUE if they are OK.
183 bool Curl_ipvalid(struct SessionHandle
*data
)
185 if(data
->set
.ip_version
== CURL_IPRESOLVE_V6
) {
186 /* see if we have an IPv6 stack */
187 curl_socket_t s
= socket(PF_INET6
, SOCK_DGRAM
, 0);
188 if(s
== CURL_SOCKET_BAD
)
189 /* an ipv6 address was requested and we can't get/use one */
196 #if !defined(USE_THREADING_GETADDRINFO) && !defined(CURLRES_ARES)
198 #ifdef DEBUG_ADDRINFO
199 static void dump_addrinfo(struct connectdata
*conn
, const struct addrinfo
*ai
)
201 printf("dump_addrinfo:\n");
202 for ( ; ai
; ai
= ai
->ai_next
) {
203 char buf
[INET6_ADDRSTRLEN
];
205 printf(" fam %2d, CNAME %s, ",
206 ai
->ai_family
, ai
->ai_canonname
? ai
->ai_canonname
: "<none>");
207 if(Curl_printable_address(ai
, buf
, sizeof(buf
)))
210 printf("failed; %s\n", Curl_strerror(conn
, SOCKERRNO
));
214 #define dump_addrinfo(x,y)
218 * Curl_getaddrinfo() when built ipv6-enabled (non-threading and
221 * Returns name information about the given hostname and port number. If
222 * successful, the 'addrinfo' is returned and the forth argument will point to
223 * memory we need to free after use. That memory *MUST* be freed with
224 * Curl_freeaddrinfo(), nothing else.
226 Curl_addrinfo
*Curl_getaddrinfo(struct connectdata
*conn
,
227 const char *hostname
,
231 struct addrinfo hints
, *res
;
233 char sbuf
[NI_MAXSERV
];
234 char *sbufptr
= NULL
;
237 struct SessionHandle
*data
= conn
->data
;
239 *waitp
=0; /* don't wait, we have the response now */
242 * Check if a limited name resolve has been requested.
244 switch(data
->set
.ip_version
) {
245 case CURL_IPRESOLVE_V4
:
248 case CURL_IPRESOLVE_V6
:
257 /* see if we have an IPv6 stack */
258 curl_socket_t s
= socket(PF_INET6
, SOCK_DGRAM
, 0);
259 if(s
== CURL_SOCKET_BAD
) {
260 /* Some non-IPv6 stacks have been found to make very slow name resolves
261 * when PF_UNSPEC is used, so thus we switch to a mere PF_INET lookup if
262 * the stack seems to be a non-ipv6 one. */
267 /* This seems to be an IPv6-capable stack, use PF_UNSPEC for the widest
268 * possible checks. And close the socket again.
274 memset(&hints
, 0, sizeof(hints
));
275 hints
.ai_family
= pf
;
276 hints
.ai_socktype
= conn
->socktype
;
278 if((1 == Curl_inet_pton(AF_INET
, hostname
, addrbuf
)) ||
279 (1 == Curl_inet_pton(AF_INET6
, hostname
, addrbuf
))) {
280 /* the given address is numerical only, prevent a reverse lookup */
281 hints
.ai_flags
= AI_NUMERICHOST
;
284 if(conn
->data
->set
.krb
)
285 /* if krb is used, we (might) need the canonical host name */
286 hints
.ai_flags
|= AI_CANONNAME
;
290 snprintf(sbuf
, sizeof(sbuf
), "%d", port
);
293 error
= getaddrinfo(hostname
, sbufptr
, &hints
, &res
);
295 infof(data
, "getaddrinfo(3) failed for %s:%d\n", hostname
, port
);
299 dump_addrinfo(conn
, res
);
303 #endif /* !USE_THREADING_GETADDRINFO && !CURLRES_ARES */