blob: 4ebfc2dcfa2e3711b8085cba0638c140506d9294 [file] [log] [blame]
9487f7f2011-08-03 07:05:30 -07001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
Dirk Vogta7d7f962016-12-01 10:50:48 +01008 * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
9487f7f2011-08-03 07:05:30 -07009 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
Dirk Vogta7d7f962016-12-01 10:50:48 +010012 * are also available at https://curl.haxx.se/docs/copyright.html.
9487f7f2011-08-03 07:05:30 -070013 *
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.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
Dirk Vogta7d7f962016-12-01 10:50:48 +010023#include "curl_setup.h"
9487f7f2011-08-03 07:05:30 -070024
9487f7f2011-08-03 07:05:30 -070025#ifdef HAVE_NETINET_IN_H
26#include <netinet/in.h>
27#endif
28#ifdef HAVE_NETDB_H
29#include <netdb.h>
30#endif
31#ifdef HAVE_ARPA_INET_H
32#include <arpa/inet.h>
33#endif
9487f7f2011-08-03 07:05:30 -070034#ifdef __VMS
35#include <in.h>
36#include <inet.h>
9487f7f2011-08-03 07:05:30 -070037#endif
38
39#ifdef HAVE_PROCESS_H
40#include <process.h>
41#endif
42
43#include "urldata.h"
44#include "sendf.h"
45#include "hostip.h"
46#include "hash.h"
47#include "share.h"
48#include "strerror.h"
49#include "url.h"
50#include "inet_pton.h"
51#include "connect.h"
Dirk Vogta7d7f962016-12-01 10:50:48 +010052/* The last 3 #include files should be in this order */
53#include "curl_printf.h"
9487f7f2011-08-03 07:05:30 -070054#include "curl_memory.h"
9487f7f2011-08-03 07:05:30 -070055#include "memdebug.h"
56
57/***********************************************************************
Dirk Vogta7d7f962016-12-01 10:50:48 +010058 * Only for IPv6-enabled builds
9487f7f2011-08-03 07:05:30 -070059 **********************************************************************/
60#ifdef CURLRES_IPV6
61
9487f7f2011-08-03 07:05:30 -070062#if defined(CURLDEBUG) && defined(HAVE_GETNAMEINFO)
63/* These are strictly for memory tracing and are using the same style as the
64 * family otherwise present in memdebug.c. I put these ones here since they
Dirk Vogta7d7f962016-12-01 10:50:48 +010065 * require a bunch of structs I didn't want to include in memdebug.c
9487f7f2011-08-03 07:05:30 -070066 */
67
68/*
69 * For CURLRES_ARS, this should be written using ares_gethostbyaddr()
70 * (ignoring the fact c-ares doesn't return 'serv').
71 */
72
73int curl_dogetnameinfo(GETNAMEINFO_QUAL_ARG1 GETNAMEINFO_TYPE_ARG1 sa,
74 GETNAMEINFO_TYPE_ARG2 salen,
75 char *host, GETNAMEINFO_TYPE_ARG46 hostlen,
76 char *serv, GETNAMEINFO_TYPE_ARG46 servlen,
77 GETNAMEINFO_TYPE_ARG7 flags,
78 int line, const char *source)
79{
80 int res = (getnameinfo)(sa, salen,
81 host, hostlen,
82 serv, servlen,
83 flags);
84 if(0 == res)
85 /* success */
86 curl_memlog("GETNAME %s:%d getnameinfo()\n",
87 source, line);
88 else
89 curl_memlog("GETNAME %s:%d getnameinfo() failed = %d\n",
90 source, line, res);
91 return res;
92}
93#endif /* defined(CURLDEBUG) && defined(HAVE_GETNAMEINFO) */
94
95/*
Dirk Vogta7d7f962016-12-01 10:50:48 +010096 * Curl_ipv6works() returns TRUE if IPv6 seems to work.
97 */
98bool Curl_ipv6works(void)
99{
100 /* the nature of most system is that IPv6 status doesn't come and go
101 during a program's lifetime so we only probe the first time and then we
102 have the info kept for fast re-use */
103 static int ipv6_works = -1;
104 if(-1 == ipv6_works) {
105 /* probe to see if we have a working IPv6 stack */
106 curl_socket_t s = socket(PF_INET6, SOCK_DGRAM, 0);
107 if(s == CURL_SOCKET_BAD)
108 /* an IPv6 address was requested but we can't get/use one */
109 ipv6_works = 0;
110 else {
111 ipv6_works = 1;
112 Curl_closesocket(NULL, s);
113 }
114 }
115 return (ipv6_works>0)?TRUE:FALSE;
116}
117
118/*
9487f7f2011-08-03 07:05:30 -0700119 * Curl_ipvalid() checks what CURL_IPRESOLVE_* requirements that might've
120 * been set and returns TRUE if they are OK.
121 */
122bool Curl_ipvalid(struct connectdata *conn)
123{
Dirk Vogta7d7f962016-12-01 10:50:48 +0100124 if(conn->ip_version == CURL_IPRESOLVE_V6)
125 return Curl_ipv6works();
126
9487f7f2011-08-03 07:05:30 -0700127 return TRUE;
128}
129
130#if defined(CURLRES_SYNCH)
131
132#ifdef DEBUG_ADDRINFO
133static void dump_addrinfo(struct connectdata *conn, const Curl_addrinfo *ai)
134{
135 printf("dump_addrinfo:\n");
Dirk Vogta7d7f962016-12-01 10:50:48 +0100136 for(; ai; ai = ai->ai_next) {
9487f7f2011-08-03 07:05:30 -0700137 char buf[INET6_ADDRSTRLEN];
138
139 printf(" fam %2d, CNAME %s, ",
140 ai->ai_family, ai->ai_canonname ? ai->ai_canonname : "<none>");
141 if(Curl_printable_address(ai, buf, sizeof(buf)))
142 printf("%s\n", buf);
143 else
144 printf("failed; %s\n", Curl_strerror(conn, SOCKERRNO));
145 }
146}
147#else
Dirk Vogta7d7f962016-12-01 10:50:48 +0100148#define dump_addrinfo(x,y) Curl_nop_stmt
9487f7f2011-08-03 07:05:30 -0700149#endif
150
151/*
Dirk Vogta7d7f962016-12-01 10:50:48 +0100152 * Curl_getaddrinfo() when built IPv6-enabled (non-threading and
9487f7f2011-08-03 07:05:30 -0700153 * non-ares version).
154 *
155 * Returns name information about the given hostname and port number. If
156 * successful, the 'addrinfo' is returned and the forth argument will point to
157 * memory we need to free after use. That memory *MUST* be freed with
158 * Curl_freeaddrinfo(), nothing else.
159 */
160Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn,
161 const char *hostname,
162 int port,
163 int *waitp)
164{
165 struct addrinfo hints;
166 Curl_addrinfo *res;
167 int error;
Dirk Vogta7d7f962016-12-01 10:50:48 +0100168 char sbuf[12];
9487f7f2011-08-03 07:05:30 -0700169 char *sbufptr = NULL;
Dirk Vogta7d7f962016-12-01 10:50:48 +0100170#ifndef USE_RESOLVE_ON_IPS
9487f7f2011-08-03 07:05:30 -0700171 char addrbuf[128];
Dirk Vogta7d7f962016-12-01 10:50:48 +0100172#endif
9487f7f2011-08-03 07:05:30 -0700173 int pf;
Dirk Vogta7d7f962016-12-01 10:50:48 +0100174#if !defined(CURL_DISABLE_VERBOSE_STRINGS)
175 struct Curl_easy *data = conn->data;
176#endif
9487f7f2011-08-03 07:05:30 -0700177
178 *waitp = 0; /* synchronous response only */
179
Dirk Vogta7d7f962016-12-01 10:50:48 +0100180 /* Check if a limited name resolve has been requested */
9487f7f2011-08-03 07:05:30 -0700181 switch(conn->ip_version) {
182 case CURL_IPRESOLVE_V4:
183 pf = PF_INET;
184 break;
185 case CURL_IPRESOLVE_V6:
186 pf = PF_INET6;
187 break;
188 default:
189 pf = PF_UNSPEC;
190 break;
191 }
192
Dirk Vogta7d7f962016-12-01 10:50:48 +0100193 if((pf != PF_INET) && !Curl_ipv6works())
194 /* The stack seems to be a non-IPv6 one */
195 pf = PF_INET;
9487f7f2011-08-03 07:05:30 -0700196
197 memset(&hints, 0, sizeof(hints));
198 hints.ai_family = pf;
199 hints.ai_socktype = conn->socktype;
200
Dirk Vogta7d7f962016-12-01 10:50:48 +0100201#ifndef USE_RESOLVE_ON_IPS
202 /*
203 * The AI_NUMERICHOST must not be set to get synthesized IPv6 address from
204 * an IPv4 address on iOS and Mac OS X.
205 */
9487f7f2011-08-03 07:05:30 -0700206 if((1 == Curl_inet_pton(AF_INET, hostname, addrbuf)) ||
207 (1 == Curl_inet_pton(AF_INET6, hostname, addrbuf))) {
208 /* the given address is numerical only, prevent a reverse lookup */
209 hints.ai_flags = AI_NUMERICHOST;
210 }
Dirk Vogta7d7f962016-12-01 10:50:48 +0100211#endif
9487f7f2011-08-03 07:05:30 -0700212
213 if(port) {
214 snprintf(sbuf, sizeof(sbuf), "%d", port);
215 sbufptr=sbuf;
216 }
Dirk Vogta7d7f962016-12-01 10:50:48 +0100217
9487f7f2011-08-03 07:05:30 -0700218 error = Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &res);
219 if(error) {
220 infof(data, "getaddrinfo(3) failed for %s:%d\n", hostname, port);
221 return NULL;
222 }
223
Dirk Vogta7d7f962016-12-01 10:50:48 +0100224 if(port) {
225 Curl_addrinfo_set_port(res, port);
226 }
227
9487f7f2011-08-03 07:05:30 -0700228 dump_addrinfo(conn, res);
229
230 return res;
231}
232#endif /* CURLRES_SYNCH */
9487f7f2011-08-03 07:05:30 -0700233
Dirk Vogta7d7f962016-12-01 10:50:48 +0100234#endif /* CURLRES_IPV6 */