2004-04-26 07:20:11 +00:00
|
|
|
/***************************************************************************
|
2004-08-19 06:44:19 +00:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2004-04-26 07:20:11 +00:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-02-25 18:12:51 +01:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-04-26 07:20:11 +00:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-03 00:19:02 +01:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-08-19 06:44:19 +00:00
|
|
|
*
|
2004-04-26 07:20:11 +00:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-06 19:06:49 +01:00
|
|
|
#include "curl_setup.h"
|
2004-04-26 07:20:11 +00:00
|
|
|
|
2017-10-26 20:52:22 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* Only for IPv6-enabled builds
|
|
|
|
**********************************************************************/
|
|
|
|
#ifdef CURLRES_IPV6
|
|
|
|
|
2004-04-26 07:20:11 +00:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
#include <netdb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
2009-12-30 17:59:56 +00:00
|
|
|
#ifdef __VMS
|
2004-04-26 07:20:11 +00:00
|
|
|
#include <in.h>
|
|
|
|
#include <inet.h>
|
|
|
|
#endif
|
|
|
|
|
2006-04-26 17:23:28 +00:00
|
|
|
#ifdef HAVE_PROCESS_H
|
2004-04-26 07:20:11 +00:00
|
|
|
#include <process.h>
|
|
|
|
#endif
|
|
|
|
|
2013-01-04 02:50:28 +01:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "hostip.h"
|
|
|
|
#include "hash.h"
|
|
|
|
#include "share.h"
|
|
|
|
#include "strerror.h"
|
|
|
|
#include "url.h"
|
|
|
|
#include "inet_pton.h"
|
|
|
|
#include "connect.h"
|
2016-04-29 15:46:40 +02:00
|
|
|
/* The last 3 #include files should be in this order */
|
2015-03-03 12:36:18 +01:00
|
|
|
#include "curl_printf.h"
|
2009-04-21 11:46:16 +00:00
|
|
|
#include "curl_memory.h"
|
2013-01-04 02:50:28 +01:00
|
|
|
#include "memdebug.h"
|
2004-04-26 07:20:11 +00:00
|
|
|
|
|
|
|
/*
|
2014-12-27 11:09:01 +00:00
|
|
|
* Curl_ipv6works() returns TRUE if IPv6 seems to work.
|
2004-04-26 07:20:11 +00:00
|
|
|
*/
|
2011-03-23 11:10:55 +01:00
|
|
|
bool Curl_ipv6works(void)
|
2004-04-26 07:20:11 +00:00
|
|
|
{
|
2011-03-23 11:10:55 +01:00
|
|
|
/* the nature of most system is that IPv6 status doesn't come and go
|
|
|
|
during a program's lifetime so we only probe the first time and then we
|
|
|
|
have the info kept for fast re-use */
|
|
|
|
static int ipv6_works = -1;
|
|
|
|
if(-1 == ipv6_works) {
|
|
|
|
/* probe to see if we have a working IPv6 stack */
|
2004-04-26 07:20:11 +00:00
|
|
|
curl_socket_t s = socket(PF_INET6, SOCK_DGRAM, 0);
|
2007-11-07 09:21:35 +00:00
|
|
|
if(s == CURL_SOCKET_BAD)
|
2014-12-27 11:09:01 +00:00
|
|
|
/* an IPv6 address was requested but we can't get/use one */
|
2011-03-23 11:10:55 +01:00
|
|
|
ipv6_works = 0;
|
|
|
|
else {
|
|
|
|
ipv6_works = 1;
|
2011-05-16 23:46:43 +02:00
|
|
|
Curl_closesocket(NULL, s);
|
2011-03-23 11:10:55 +01:00
|
|
|
}
|
2004-04-26 07:20:11 +00:00
|
|
|
}
|
2011-03-23 11:10:55 +01:00
|
|
|
return (ipv6_works>0)?TRUE:FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Curl_ipvalid() checks what CURL_IPRESOLVE_* requirements that might've
|
|
|
|
* been set and returns TRUE if they are OK.
|
|
|
|
*/
|
|
|
|
bool Curl_ipvalid(struct connectdata *conn)
|
|
|
|
{
|
|
|
|
if(conn->ip_version == CURL_IPRESOLVE_V6)
|
|
|
|
return Curl_ipv6works();
|
2016-03-22 06:16:06 +00:00
|
|
|
|
2004-04-26 07:20:11 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-01-25 23:50:13 +00:00
|
|
|
#if defined(CURLRES_SYNCH)
|
2005-10-20 19:40:02 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_ADDRINFO
|
2008-10-30 13:45:25 +00:00
|
|
|
static void dump_addrinfo(struct connectdata *conn, const Curl_addrinfo *ai)
|
2005-10-20 19:40:02 +00:00
|
|
|
{
|
|
|
|
printf("dump_addrinfo:\n");
|
2011-04-20 15:17:42 +02:00
|
|
|
for(; ai; ai = ai->ai_next) {
|
2019-02-25 18:12:51 +01:00
|
|
|
char buf[INET6_ADDRSTRLEN];
|
|
|
|
char buffer[STRERROR_LEN];
|
2005-10-20 19:40:02 +00:00
|
|
|
printf(" fam %2d, CNAME %s, ",
|
|
|
|
ai->ai_family, ai->ai_canonname ? ai->ai_canonname : "<none>");
|
2007-11-07 09:21:35 +00:00
|
|
|
if(Curl_printable_address(ai, buf, sizeof(buf)))
|
2005-10-20 19:40:02 +00:00
|
|
|
printf("%s\n", buf);
|
|
|
|
else
|
2019-02-25 18:12:51 +01:00
|
|
|
printf("failed; %s\n",
|
|
|
|
Curl_strerror(SOCKERRNO, buffer, sizeof(buffer)));
|
2005-10-20 19:40:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2011-09-03 16:06:10 +02:00
|
|
|
#define dump_addrinfo(x,y) Curl_nop_stmt
|
2005-10-20 19:40:02 +00:00
|
|
|
#endif
|
|
|
|
|
2004-04-26 07:20:11 +00:00
|
|
|
/*
|
2014-12-27 11:09:01 +00:00
|
|
|
* Curl_getaddrinfo() when built IPv6-enabled (non-threading and
|
2006-07-21 04:22:44 +00:00
|
|
|
* non-ares version).
|
2004-04-26 07:20:11 +00:00
|
|
|
*
|
|
|
|
* Returns name information about the given hostname and port number. If
|
|
|
|
* successful, the 'addrinfo' is returned and the forth argument will point to
|
|
|
|
* memory we need to free after use. That memory *MUST* be freed with
|
|
|
|
* Curl_freeaddrinfo(), nothing else.
|
|
|
|
*/
|
|
|
|
Curl_addrinfo *Curl_getaddrinfo(struct connectdata *conn,
|
2006-07-21 05:51:12 +00:00
|
|
|
const char *hostname,
|
2004-04-26 07:20:11 +00:00
|
|
|
int port,
|
|
|
|
int *waitp)
|
|
|
|
{
|
2008-10-30 13:45:25 +00:00
|
|
|
struct addrinfo hints;
|
|
|
|
Curl_addrinfo *res;
|
2004-04-26 07:20:11 +00:00
|
|
|
int error;
|
2013-09-10 23:18:43 +02:00
|
|
|
char sbuf[12];
|
2005-10-10 18:28:05 +00:00
|
|
|
char *sbufptr = NULL;
|
2016-06-07 18:11:37 +08:00
|
|
|
#ifndef USE_RESOLVE_ON_IPS
|
2004-08-19 06:44:19 +00:00
|
|
|
char addrbuf[128];
|
2016-06-07 18:11:37 +08:00
|
|
|
#endif
|
2004-04-26 07:20:11 +00:00
|
|
|
int pf;
|
2016-03-22 06:16:06 +00:00
|
|
|
#if !defined(CURL_DISABLE_VERBOSE_STRINGS)
|
2016-06-21 15:47:12 +02:00
|
|
|
struct Curl_easy *data = conn->data;
|
2016-03-22 06:16:06 +00:00
|
|
|
#endif
|
2004-04-26 07:20:11 +00:00
|
|
|
|
2010-01-25 23:50:13 +00:00
|
|
|
*waitp = 0; /* synchronous response only */
|
2004-04-26 07:20:11 +00:00
|
|
|
|
2016-03-22 06:16:06 +00:00
|
|
|
/* Check if a limited name resolve has been requested */
|
2010-11-11 14:51:39 +01:00
|
|
|
switch(conn->ip_version) {
|
2008-07-27 02:20:34 +00:00
|
|
|
case CURL_IPRESOLVE_V4:
|
2004-04-26 07:20:11 +00:00
|
|
|
pf = PF_INET;
|
2008-07-27 02:20:34 +00:00
|
|
|
break;
|
|
|
|
case CURL_IPRESOLVE_V6:
|
|
|
|
pf = PF_INET6;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pf = PF_UNSPEC;
|
|
|
|
break;
|
2004-04-26 07:20:11 +00:00
|
|
|
}
|
|
|
|
|
2011-03-23 11:10:55 +01:00
|
|
|
if((pf != PF_INET) && !Curl_ipv6works())
|
2014-12-27 11:09:01 +00:00
|
|
|
/* The stack seems to be a non-IPv6 one */
|
2011-03-23 11:10:55 +01:00
|
|
|
pf = PF_INET;
|
2004-08-19 06:44:19 +00:00
|
|
|
|
2005-11-08 14:45:58 +00:00
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
hints.ai_family = pf;
|
|
|
|
hints.ai_socktype = conn->socktype;
|
|
|
|
|
2016-06-07 18:11:37 +08:00
|
|
|
#ifndef USE_RESOLVE_ON_IPS
|
|
|
|
/*
|
|
|
|
* The AI_NUMERICHOST must not be set to get synthesized IPv6 address from
|
|
|
|
* an IPv4 address on iOS and Mac OS X.
|
|
|
|
*/
|
2005-03-17 07:40:15 +00:00
|
|
|
if((1 == Curl_inet_pton(AF_INET, hostname, addrbuf)) ||
|
|
|
|
(1 == Curl_inet_pton(AF_INET6, hostname, addrbuf))) {
|
2004-08-19 06:44:19 +00:00
|
|
|
/* the given address is numerical only, prevent a reverse lookup */
|
2005-11-08 14:45:58 +00:00
|
|
|
hints.ai_flags = AI_NUMERICHOST;
|
2004-08-19 06:44:19 +00:00
|
|
|
}
|
2016-06-07 18:11:37 +08:00
|
|
|
#endif
|
2005-09-02 15:11:08 +00:00
|
|
|
|
2005-10-10 18:28:05 +00:00
|
|
|
if(port) {
|
2018-11-22 09:01:24 +01:00
|
|
|
msnprintf(sbuf, sizeof(sbuf), "%d", port);
|
2017-09-09 23:09:06 +02:00
|
|
|
sbufptr = sbuf;
|
2005-10-10 18:28:05 +00:00
|
|
|
}
|
2016-03-22 06:16:06 +00:00
|
|
|
|
2008-10-30 13:45:25 +00:00
|
|
|
error = Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &res);
|
2007-11-07 09:21:35 +00:00
|
|
|
if(error) {
|
2004-08-19 06:44:19 +00:00
|
|
|
infof(data, "getaddrinfo(3) failed for %s:%d\n", hostname, port);
|
2004-04-26 07:20:11 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-07 18:11:37 +08:00
|
|
|
if(port) {
|
|
|
|
Curl_addrinfo_set_port(res, port);
|
|
|
|
}
|
|
|
|
|
2005-10-20 19:40:02 +00:00
|
|
|
dump_addrinfo(conn, res);
|
|
|
|
|
2004-04-26 07:20:11 +00:00
|
|
|
return res;
|
|
|
|
}
|
2010-01-25 23:50:13 +00:00
|
|
|
#endif /* CURLRES_SYNCH */
|
2004-04-26 07:20:11 +00:00
|
|
|
|
2016-03-22 06:16:06 +00:00
|
|
|
#endif /* CURLRES_IPV6 */
|