2004-04-26 03:20:11 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 03:43:48 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2004-04-26 03:20:11 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-03-06 03:21:01 -05:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-04-26 03:20:11 -04: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-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-24 03:43:48 -04:00
|
|
|
*
|
2004-04-26 03:20:11 -04: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 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2009-04-14 09:50:32 -04:00
|
|
|
#ifdef HAVE_LIMITS_H
|
|
|
|
#include <limits.h>
|
|
|
|
#endif
|
2004-04-26 03:20:11 -04: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 12:59:56 -05:00
|
|
|
#ifdef __VMS
|
2004-04-26 03:20:11 -04:00
|
|
|
#include <in.h>
|
|
|
|
#include <inet.h>
|
|
|
|
#endif
|
|
|
|
|
2006-04-26 13:23:28 -04:00
|
|
|
#ifdef HAVE_PROCESS_H
|
2004-04-26 03:20:11 -04:00
|
|
|
#include <process.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (defined(NETWARE) && defined(__NOVELL_LIBC__))
|
|
|
|
#undef in_addr_t
|
|
|
|
#define in_addr_t unsigned long
|
|
|
|
#endif
|
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
/***********************************************************************
|
|
|
|
* Only for ares-enabled builds
|
2011-01-30 18:10:35 -05:00
|
|
|
* And only for functions that fulfill the asynch resolver backend API
|
2013-01-03 20:50:28 -05:00
|
|
|
* as defined in asyn.h, nothing else belongs in this file!
|
2011-01-29 14:12:10 -05:00
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
#ifdef CURLRES_ARES
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "hostip.h"
|
|
|
|
#include "hash.h"
|
|
|
|
#include "share.h"
|
|
|
|
#include "strerror.h"
|
|
|
|
#include "url.h"
|
|
|
|
#include "multiif.h"
|
|
|
|
#include "inet_pton.h"
|
|
|
|
#include "connect.h"
|
|
|
|
#include "select.h"
|
|
|
|
#include "progress.h"
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
# if defined(CURL_STATICLIB) && !defined(CARES_STATICLIB) && \
|
|
|
|
(defined(WIN32) || defined(_WIN32) || defined(__SYMBIAN32__))
|
|
|
|
# define CARES_STATICLIB
|
|
|
|
# endif
|
|
|
|
# include <ares.h>
|
2012-10-23 17:06:38 -04:00
|
|
|
# include <ares_version.h> /* really old c-ares didn't include this by
|
|
|
|
itself */
|
2011-01-29 14:12:10 -05:00
|
|
|
|
|
|
|
#if ARES_VERSION >= 0x010500
|
|
|
|
/* c-ares 1.5.0 or later, the callback proto is modified */
|
|
|
|
#define HAVE_CARES_CALLBACK_TIMEOUTS 1
|
|
|
|
#endif
|
|
|
|
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
|
|
|
#include "curl_printf.h"
|
2009-04-21 07:46:16 -04:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
struct ResolverResults {
|
|
|
|
int num_pending; /* number of ares_gethostbyname() requests */
|
|
|
|
Curl_addrinfo *temp_ai; /* intermediary result while fetching c-ares parts */
|
|
|
|
int last_status;
|
|
|
|
};
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
/*
|
2011-01-29 19:00:52 -05:00
|
|
|
* Curl_resolver_global_init() - the generic low-level asynchronous name
|
|
|
|
* resolve API. Called from curl_global_init() to initialize global resolver
|
|
|
|
* environment. Initializes ares library.
|
2011-01-29 14:12:10 -05:00
|
|
|
*/
|
2011-01-29 19:00:52 -05:00
|
|
|
int Curl_resolver_global_init(void)
|
2011-01-29 14:12:10 -05:00
|
|
|
{
|
|
|
|
#ifdef CARES_HAVE_ARES_LIBRARY_INIT
|
|
|
|
if(ares_library_init(ARES_LIB_INIT_ALL)) {
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-29 19:00:52 -05:00
|
|
|
* Curl_resolver_global_cleanup()
|
|
|
|
*
|
2011-01-29 14:12:10 -05:00
|
|
|
* Called from curl_global_cleanup() to destroy global resolver environment.
|
|
|
|
* Deinitializes ares library.
|
|
|
|
*/
|
2011-01-29 19:00:52 -05:00
|
|
|
void Curl_resolver_global_cleanup(void)
|
2011-01-29 14:12:10 -05:00
|
|
|
{
|
|
|
|
#ifdef CARES_HAVE_ARES_LIBRARY_CLEANUP
|
|
|
|
ares_library_cleanup();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-29 19:00:52 -05:00
|
|
|
* Curl_resolver_init()
|
|
|
|
*
|
|
|
|
* Called from curl_easy_init() -> Curl_open() to initialize resolver
|
|
|
|
* URL-state specific environment ('resolver' member of the UrlState
|
|
|
|
* structure). Fills the passed pointer by the initialized ares_channel.
|
2011-01-29 14:12:10 -05:00
|
|
|
*/
|
2011-05-21 08:10:17 -04:00
|
|
|
CURLcode Curl_resolver_init(void **resolver)
|
2011-01-29 14:12:10 -05:00
|
|
|
{
|
|
|
|
int status = ares_init((ares_channel*)resolver);
|
|
|
|
if(status != ARES_SUCCESS) {
|
|
|
|
if(status == ARES_ENOMEM)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
else
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
}
|
|
|
|
return CURLE_OK;
|
|
|
|
/* make sure that all other returns from this function should destroy the
|
|
|
|
ares channel before returning error! */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-29 19:00:52 -05:00
|
|
|
* Curl_resolver_cleanup()
|
|
|
|
*
|
|
|
|
* Called from curl_easy_cleanup() -> Curl_close() to cleanup resolver
|
|
|
|
* URL-state specific environment ('resolver' member of the UrlState
|
|
|
|
* structure). Destroys the ares channel.
|
2011-01-29 14:12:10 -05:00
|
|
|
*/
|
|
|
|
void Curl_resolver_cleanup(void *resolver)
|
|
|
|
{
|
|
|
|
ares_destroy((ares_channel)resolver);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-29 19:00:52 -05:00
|
|
|
* Curl_resolver_duphandle()
|
|
|
|
*
|
|
|
|
* Called from curl_easy_duphandle() to duplicate resolver URL-state specific
|
|
|
|
* environment ('resolver' member of the UrlState structure). Duplicates the
|
|
|
|
* 'from' ares channel and passes the resulting channel to the 'to' pointer.
|
2011-01-29 14:12:10 -05:00
|
|
|
*/
|
|
|
|
int Curl_resolver_duphandle(void **to, void *from)
|
|
|
|
{
|
|
|
|
/* Clone the ares channel for the new handle */
|
2015-03-17 08:41:49 -04:00
|
|
|
if(ARES_SUCCESS != ares_dup((ares_channel*)to, (ares_channel)from))
|
2011-01-29 14:12:10 -05:00
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
static void destroy_async_data(struct Curl_async *async);
|
2011-01-30 18:10:35 -05:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
/*
|
|
|
|
* Cancel all possibly still on-going resolves for this connection.
|
|
|
|
*/
|
2011-01-30 18:10:35 -05:00
|
|
|
void Curl_resolver_cancel(struct connectdata *conn)
|
2011-01-29 14:12:10 -05:00
|
|
|
{
|
2014-10-07 07:33:43 -04:00
|
|
|
if(conn->data && conn->data->state.resolver)
|
2011-01-29 14:12:10 -05:00
|
|
|
ares_cancel((ares_channel)conn->data->state.resolver);
|
|
|
|
destroy_async_data(&conn->async);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* destroy_async_data() cleans up async resolver data.
|
|
|
|
*/
|
2016-12-13 17:34:59 -05:00
|
|
|
static void destroy_async_data(struct Curl_async *async)
|
2011-01-29 14:12:10 -05:00
|
|
|
{
|
2015-03-11 12:41:01 -04:00
|
|
|
free(async->hostname);
|
2011-01-29 14:12:10 -05:00
|
|
|
|
|
|
|
if(async->os_specific) {
|
|
|
|
struct ResolverResults *res = (struct ResolverResults *)async->os_specific;
|
2011-04-22 17:01:30 -04:00
|
|
|
if(res) {
|
|
|
|
if(res->temp_ai) {
|
2011-01-29 19:00:52 -05:00
|
|
|
Curl_freeaddrinfo(res->temp_ai);
|
|
|
|
res->temp_ai = NULL;
|
|
|
|
}
|
|
|
|
free(res);
|
2011-01-29 14:12:10 -05:00
|
|
|
}
|
|
|
|
async->os_specific = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
async->hostname = NULL;
|
|
|
|
}
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
/*
|
2013-01-12 16:33:38 -05:00
|
|
|
* Curl_resolver_getsock() is called when someone from the outside world
|
|
|
|
* (using curl_multi_fdset()) wants to get our fd_set setup and we're talking
|
|
|
|
* with ares. The caller must make sure that this function is only called when
|
|
|
|
* we have a working ares channel.
|
2004-04-26 03:20:11 -04:00
|
|
|
*
|
2013-01-12 16:33:38 -05:00
|
|
|
* Returns: sockets-in-use-bitmap
|
2004-04-26 03:20:11 -04:00
|
|
|
*/
|
|
|
|
|
2011-01-30 18:10:35 -05:00
|
|
|
int Curl_resolver_getsock(struct connectdata *conn,
|
|
|
|
curl_socket_t *socks,
|
|
|
|
int numsocks)
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
{
|
2006-10-17 04:06:27 -04:00
|
|
|
struct timeval maxtime;
|
2007-10-03 09:19:34 -04:00
|
|
|
struct timeval timebuf;
|
|
|
|
struct timeval *timeout;
|
2011-11-30 15:23:44 -05:00
|
|
|
long milli;
|
2011-01-29 14:12:10 -05:00
|
|
|
int max = ares_getsock((ares_channel)conn->data->state.resolver,
|
2010-03-11 13:53:42 -05:00
|
|
|
(ares_socket_t *)socks, numsocks);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2006-10-17 04:06:27 -04:00
|
|
|
maxtime.tv_sec = CURL_TIMEOUT_RESOLVE;
|
|
|
|
maxtime.tv_usec = 0;
|
|
|
|
|
2011-01-29 19:00:52 -05:00
|
|
|
timeout = ares_timeout((ares_channel)conn->data->state.resolver, &maxtime,
|
|
|
|
&timebuf);
|
2011-11-30 15:23:44 -05:00
|
|
|
milli = (timeout->tv_sec * 1000) + (timeout->tv_usec/1000);
|
|
|
|
if(milli == 0)
|
|
|
|
milli += 10;
|
2017-06-08 05:06:19 -04:00
|
|
|
Curl_expire(conn->data, milli, EXPIRE_ASYNC_NAME);
|
2006-10-17 04:06:27 -04:00
|
|
|
|
2006-04-10 11:00:53 -04:00
|
|
|
return max;
|
2004-04-26 03:20:11 -04:00
|
|
|
}
|
|
|
|
|
2007-05-31 07:34:32 -04:00
|
|
|
/*
|
2010-01-06 18:04:17 -05:00
|
|
|
* waitperform()
|
2007-05-31 07:34:32 -04:00
|
|
|
*
|
|
|
|
* 1) Ask ares what sockets it currently plays with, then
|
|
|
|
* 2) wait for the timeout period to check for action on ares' sockets.
|
|
|
|
* 3) tell ares to act on all the sockets marked as "with action"
|
|
|
|
*
|
|
|
|
* return number of sockets it worked on
|
|
|
|
*/
|
|
|
|
|
2010-01-06 18:04:17 -05:00
|
|
|
static int waitperform(struct connectdata *conn, int timeout_ms)
|
2007-05-31 07:34:32 -04:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2007-05-31 07:34:32 -04:00
|
|
|
int nfds;
|
|
|
|
int bitmask;
|
2010-03-11 13:53:42 -05:00
|
|
|
ares_socket_t socks[ARES_GETSOCK_MAXNUM];
|
2007-05-31 07:34:32 -04:00
|
|
|
struct pollfd pfd[ARES_GETSOCK_MAXNUM];
|
|
|
|
int i;
|
2008-04-29 00:18:02 -04:00
|
|
|
int num = 0;
|
2007-05-31 07:34:32 -04:00
|
|
|
|
2011-01-29 19:00:52 -05:00
|
|
|
bitmask = ares_getsock((ares_channel)data->state.resolver, socks,
|
|
|
|
ARES_GETSOCK_MAXNUM);
|
2007-05-31 07:34:32 -04:00
|
|
|
|
|
|
|
for(i=0; i < ARES_GETSOCK_MAXNUM; i++) {
|
|
|
|
pfd[i].events = 0;
|
2008-04-29 00:18:02 -04:00
|
|
|
pfd[i].revents = 0;
|
2007-05-31 07:34:32 -04:00
|
|
|
if(ARES_GETSOCK_READABLE(bitmask, i)) {
|
|
|
|
pfd[i].fd = socks[i];
|
|
|
|
pfd[i].events |= POLLRDNORM|POLLIN;
|
|
|
|
}
|
|
|
|
if(ARES_GETSOCK_WRITABLE(bitmask, i)) {
|
|
|
|
pfd[i].fd = socks[i];
|
|
|
|
pfd[i].events |= POLLWRNORM|POLLOUT;
|
|
|
|
}
|
2008-04-29 00:18:02 -04:00
|
|
|
if(pfd[i].events != 0)
|
|
|
|
num++;
|
|
|
|
else
|
2007-05-31 07:34:32 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(num)
|
|
|
|
nfds = Curl_poll(pfd, num, timeout_ms);
|
|
|
|
else
|
|
|
|
nfds = 0;
|
|
|
|
|
|
|
|
if(!nfds)
|
|
|
|
/* Call ares_process() unconditonally here, even if we simply timed out
|
|
|
|
above, as otherwise the ares name resolve won't timeout! */
|
2011-01-29 19:00:52 -05:00
|
|
|
ares_process_fd((ares_channel)data->state.resolver, ARES_SOCKET_BAD,
|
|
|
|
ARES_SOCKET_BAD);
|
2007-05-31 07:34:32 -04:00
|
|
|
else {
|
|
|
|
/* move through the descriptors and ask for processing on them */
|
|
|
|
for(i=0; i < num; i++)
|
2011-01-29 14:12:10 -05:00
|
|
|
ares_process_fd((ares_channel)data->state.resolver,
|
2009-09-14 20:07:25 -04:00
|
|
|
pfd[i].revents & (POLLRDNORM|POLLIN)?
|
2007-05-31 07:34:32 -04:00
|
|
|
pfd[i].fd:ARES_SOCKET_BAD,
|
2009-09-14 20:07:25 -04:00
|
|
|
pfd[i].revents & (POLLWRNORM|POLLOUT)?
|
2007-05-31 07:34:32 -04:00
|
|
|
pfd[i].fd:ARES_SOCKET_BAD);
|
|
|
|
}
|
|
|
|
return nfds;
|
|
|
|
}
|
|
|
|
|
2004-04-26 03:20:11 -04:00
|
|
|
/*
|
2011-01-30 18:10:35 -05:00
|
|
|
* Curl_resolver_is_resolved() is called repeatedly to check if a previous
|
|
|
|
* name resolve request has completed. It should also make sure to time-out if
|
|
|
|
* the operation seems to take too long.
|
2004-04-26 03:20:11 -04:00
|
|
|
*
|
|
|
|
* Returns normal CURLcode errors.
|
|
|
|
*/
|
2011-01-30 18:10:35 -05:00
|
|
|
CURLcode Curl_resolver_is_resolved(struct connectdata *conn,
|
|
|
|
struct Curl_dns_entry **dns)
|
2004-04-26 03:20:11 -04:00
|
|
|
{
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2011-01-29 19:00:52 -05:00
|
|
|
struct ResolverResults *res = (struct ResolverResults *)
|
|
|
|
conn->async.os_specific;
|
2014-12-14 11:19:59 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
*dns = NULL;
|
|
|
|
|
2010-01-06 18:04:17 -05:00
|
|
|
waitperform(conn, 0);
|
2007-05-31 07:34:32 -04:00
|
|
|
|
2011-04-22 17:01:30 -04:00
|
|
|
if(res && !res->num_pending) {
|
2011-01-29 14:12:10 -05:00
|
|
|
(void)Curl_addrinfo_callback(conn, res->last_status, res->temp_ai);
|
2011-01-29 19:00:52 -05:00
|
|
|
/* temp_ai ownership is moved to the connection, so we need not free-up
|
|
|
|
them */
|
2011-01-29 14:12:10 -05:00
|
|
|
res->temp_ai = NULL;
|
2004-05-06 07:10:51 -04:00
|
|
|
if(!conn->async.dns) {
|
2013-06-23 14:25:38 -04:00
|
|
|
failf(data, "Could not resolve: %s (%s)",
|
|
|
|
conn->async.hostname, ares_strerror(conn->async.status));
|
2014-12-14 11:19:59 -05:00
|
|
|
result = conn->bits.proxy?CURLE_COULDNT_RESOLVE_PROXY:
|
2011-12-05 06:44:55 -05:00
|
|
|
CURLE_COULDNT_RESOLVE_HOST;
|
2004-05-06 07:10:51 -04:00
|
|
|
}
|
2013-06-23 14:25:38 -04:00
|
|
|
else
|
|
|
|
*dns = conn->async.dns;
|
|
|
|
|
|
|
|
destroy_async_data(&conn->async);
|
2004-04-26 03:20:11 -04:00
|
|
|
}
|
|
|
|
|
2014-12-14 11:19:59 -05:00
|
|
|
return result;
|
2004-04-26 03:20:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2011-01-30 18:10:35 -05:00
|
|
|
* Curl_resolver_wait_resolv()
|
|
|
|
*
|
|
|
|
* waits for a resolve to finish. This function should be avoided since using
|
|
|
|
* this risk getting the multi interface to "hang".
|
2004-04-26 03:20:11 -04:00
|
|
|
*
|
|
|
|
* If 'entry' is non-NULL, make it point to the resolved dns entry
|
|
|
|
*
|
|
|
|
* Returns CURLE_COULDNT_RESOLVE_HOST if the host was not resolved, and
|
|
|
|
* CURLE_OPERATION_TIMEDOUT if a time-out occurred.
|
|
|
|
*/
|
2011-01-30 18:10:35 -05:00
|
|
|
CURLcode Curl_resolver_wait_resolv(struct connectdata *conn,
|
|
|
|
struct Curl_dns_entry **entry)
|
2004-04-26 03:20:11 -04:00
|
|
|
{
|
2014-12-14 11:19:59 -05:00
|
|
|
CURLcode result = CURLE_OK;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2007-02-05 17:51:32 -05:00
|
|
|
long timeout;
|
2017-07-28 09:49:36 -04:00
|
|
|
struct curltime now = Curl_tvnow();
|
2011-01-29 14:12:10 -05:00
|
|
|
struct Curl_dns_entry *temp_entry;
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2017-03-07 02:08:55 -05:00
|
|
|
if(entry)
|
|
|
|
*entry = NULL; /* clear on entry */
|
|
|
|
|
2011-01-04 17:07:58 -05:00
|
|
|
timeout = Curl_timeleft(data, &now, TRUE);
|
2017-03-06 03:21:01 -05:00
|
|
|
if(timeout < 0) {
|
|
|
|
/* already expired! */
|
|
|
|
connclose(conn, "Timed out before name resolve started");
|
|
|
|
return CURLE_OPERATION_TIMEDOUT;
|
|
|
|
}
|
2010-12-05 17:39:41 -05:00
|
|
|
if(!timeout)
|
2007-02-05 17:51:32 -05:00
|
|
|
timeout = CURL_TIMEOUT_RESOLVE * 1000; /* default name resolve timeout */
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
/* Wait for the name resolve query to complete. */
|
2017-03-06 16:45:10 -05:00
|
|
|
while(!result) {
|
2004-04-26 03:20:11 -04:00
|
|
|
struct timeval *tvp, tv, store;
|
2008-04-29 00:18:02 -04:00
|
|
|
int itimeout;
|
2010-01-06 18:04:17 -05:00
|
|
|
int timeout_ms;
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2008-04-29 00:18:02 -04:00
|
|
|
itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout;
|
|
|
|
|
|
|
|
store.tv_sec = itimeout/1000;
|
|
|
|
store.tv_usec = (itimeout%1000)*1000;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
tvp = ares_timeout((ares_channel)data->state.resolver, &store, &tv);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2010-01-06 18:04:17 -05:00
|
|
|
/* use the timeout period ares returned to us above if less than one
|
|
|
|
second is left, otherwise just use 1000ms to make sure the progress
|
|
|
|
callback gets called frequent enough */
|
|
|
|
if(!tvp->tv_sec)
|
2010-05-20 14:15:52 -04:00
|
|
|
timeout_ms = (int)(tvp->tv_usec/1000);
|
2010-01-06 18:04:17 -05:00
|
|
|
else
|
|
|
|
timeout_ms = 1000;
|
|
|
|
|
|
|
|
waitperform(conn, timeout_ms);
|
2017-03-06 16:45:10 -05:00
|
|
|
result = Curl_resolver_is_resolved(conn, &temp_entry);
|
2007-06-11 09:32:49 -04:00
|
|
|
|
2017-03-06 16:45:10 -05:00
|
|
|
if(result || conn->async.done)
|
2007-05-31 07:34:32 -04:00
|
|
|
break;
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2017-03-06 16:45:10 -05:00
|
|
|
if(Curl_pgrsUpdate(conn))
|
2014-12-14 11:19:59 -05:00
|
|
|
result = CURLE_ABORTED_BY_CALLBACK;
|
2010-01-06 18:04:17 -05:00
|
|
|
else {
|
2017-07-28 09:49:36 -04:00
|
|
|
struct curltime now2 = Curl_tvnow();
|
2017-05-20 13:39:51 -04:00
|
|
|
time_t timediff = Curl_tvdiff(now2, now); /* spent time */
|
|
|
|
if(timediff <= 0)
|
|
|
|
timeout -= 1; /* always deduct at least 1 */
|
|
|
|
else if(timediff > timeout)
|
|
|
|
timeout = -1;
|
|
|
|
else
|
|
|
|
timeout -= (long)timediff;
|
2010-12-05 17:39:41 -05:00
|
|
|
now = now2; /* for next loop */
|
2010-01-06 18:04:17 -05:00
|
|
|
}
|
2017-03-06 16:45:10 -05:00
|
|
|
if(timeout < 0)
|
|
|
|
result = CURLE_OPERATION_TIMEDOUT;
|
2004-04-26 03:20:11 -04:00
|
|
|
}
|
2017-03-06 16:45:10 -05:00
|
|
|
if(result)
|
|
|
|
/* failure, so we cancel the ares operation */
|
|
|
|
ares_cancel((ares_channel)data->state.resolver);
|
2004-04-26 03:20:11 -04:00
|
|
|
|
|
|
|
/* Operation complete, if the lookup was successful we now have the entry
|
|
|
|
in the cache. */
|
|
|
|
if(entry)
|
|
|
|
*entry = conn->async.dns;
|
|
|
|
|
2014-12-14 11:19:59 -05:00
|
|
|
if(result)
|
2004-04-26 03:20:11 -04:00
|
|
|
/* close the connection, since we can't return failure here without
|
2013-06-23 14:25:38 -04:00
|
|
|
cleaning up this connection properly.
|
2015-11-24 03:32:42 -05:00
|
|
|
TODO: remove this action from here, it is not a name resolver decision.
|
2013-06-23 14:25:38 -04:00
|
|
|
*/
|
2014-05-20 04:32:23 -04:00
|
|
|
connclose(conn, "c-ares resolve failed");
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2014-12-14 11:19:59 -05:00
|
|
|
return result;
|
2004-04-26 03:20:11 -04:00
|
|
|
}
|
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
/* Connects results to the list */
|
2011-01-29 19:00:52 -05:00
|
|
|
static void compound_results(struct ResolverResults *res,
|
|
|
|
Curl_addrinfo *ai)
|
2011-01-29 14:12:10 -05:00
|
|
|
{
|
2011-01-29 19:00:52 -05:00
|
|
|
Curl_addrinfo *ai_tail;
|
|
|
|
if(!ai)
|
|
|
|
return;
|
|
|
|
ai_tail = ai;
|
2011-01-29 14:12:10 -05:00
|
|
|
|
2011-04-22 17:01:30 -04:00
|
|
|
while(ai_tail->ai_next)
|
2011-01-29 19:00:52 -05:00
|
|
|
ai_tail = ai_tail->ai_next;
|
2011-01-29 14:12:10 -05:00
|
|
|
|
2011-01-29 19:00:52 -05:00
|
|
|
/* Add the new results to the list of old results. */
|
|
|
|
ai_tail->ai_next = res->temp_ai;
|
|
|
|
res->temp_ai = ai;
|
2011-01-29 14:12:10 -05:00
|
|
|
}
|
|
|
|
|
2010-01-22 01:36:52 -05:00
|
|
|
/*
|
|
|
|
* ares_query_completed_cb() is the callback that ares will call when
|
|
|
|
* the host query initiated by ares_gethostbyname() from Curl_getaddrinfo(),
|
|
|
|
* when using ares, is completed either successfully or with failure.
|
|
|
|
*/
|
2011-01-29 19:00:52 -05:00
|
|
|
static void query_completed_cb(void *arg, /* (struct connectdata *) */
|
|
|
|
int status,
|
2010-01-22 01:36:52 -05:00
|
|
|
#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
|
2011-01-29 19:00:52 -05:00
|
|
|
int timeouts,
|
2010-01-22 01:36:52 -05:00
|
|
|
#endif
|
2011-01-29 19:00:52 -05:00
|
|
|
struct hostent *hostent)
|
2010-01-22 01:36:52 -05:00
|
|
|
{
|
|
|
|
struct connectdata *conn = (struct connectdata *)arg;
|
2011-01-29 19:00:52 -05:00
|
|
|
struct ResolverResults *res;
|
2010-01-26 17:59:43 -05:00
|
|
|
|
2010-01-22 01:36:52 -05:00
|
|
|
#ifdef HAVE_CARES_CALLBACK_TIMEOUTS
|
|
|
|
(void)timeouts; /* ignored */
|
|
|
|
#endif
|
|
|
|
|
2011-01-29 19:00:52 -05:00
|
|
|
if(ARES_EDESTRUCTION == status)
|
|
|
|
/* when this ares handle is getting destroyed, the 'arg' pointer may not
|
|
|
|
be valid so only defer it when we know the 'status' says its fine! */
|
|
|
|
return;
|
|
|
|
|
|
|
|
res = (struct ResolverResults *)conn->async.os_specific;
|
2011-01-29 14:12:10 -05:00
|
|
|
res->num_pending--;
|
|
|
|
|
2011-01-29 19:00:52 -05:00
|
|
|
if(CURL_ASYNC_SUCCESS == status) {
|
|
|
|
Curl_addrinfo *ai = Curl_he2ai(hostent, conn->async.port);
|
|
|
|
if(ai) {
|
|
|
|
compound_results(res, ai);
|
|
|
|
}
|
2010-01-22 01:36:52 -05:00
|
|
|
}
|
2011-01-29 19:00:52 -05:00
|
|
|
/* A successful result overwrites any previous error */
|
2011-04-22 17:01:30 -04:00
|
|
|
if(res->last_status != ARES_SUCCESS)
|
2011-01-29 14:12:10 -05:00
|
|
|
res->last_status = status;
|
2010-01-22 01:36:52 -05:00
|
|
|
}
|
2008-07-09 14:39:49 -04:00
|
|
|
|
2004-04-26 03:20:11 -04:00
|
|
|
/*
|
2011-01-30 18:10:35 -05:00
|
|
|
* Curl_resolver_getaddrinfo() - when using ares
|
2004-04-26 03:20:11 -04:00
|
|
|
*
|
|
|
|
* Returns name information about the given hostname and port number. If
|
|
|
|
* successful, the 'hostent' 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.
|
|
|
|
*/
|
2011-01-30 18:10:35 -05:00
|
|
|
Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
|
|
|
|
const char *hostname,
|
|
|
|
int port,
|
|
|
|
int *waitp)
|
2004-04-26 03:20:11 -04:00
|
|
|
{
|
|
|
|
char *bufp;
|
2016-06-21 09:47:12 -04:00
|
|
|
struct Curl_easy *data = conn->data;
|
2008-11-06 12:19:56 -05:00
|
|
|
struct in_addr in;
|
2008-07-09 14:39:49 -04:00
|
|
|
int family = PF_INET;
|
|
|
|
#ifdef ENABLE_IPV6 /* CURLRES_IPV6 */
|
|
|
|
struct in6_addr in6;
|
|
|
|
#endif /* CURLRES_IPV6 */
|
2010-01-25 18:50:13 -05:00
|
|
|
|
|
|
|
*waitp = 0; /* default to synchronous response */
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2008-11-06 12:19:56 -05:00
|
|
|
/* First check if this is an IPv4 address string */
|
|
|
|
if(Curl_inet_pton(AF_INET, hostname, &in) > 0) {
|
2004-04-26 03:20:11 -04:00
|
|
|
/* This is a dotted IP address 123.123.123.123-style */
|
2008-11-06 12:19:56 -05:00
|
|
|
return Curl_ip2addr(AF_INET, &in, hostname, port);
|
2004-06-24 03:43:48 -04:00
|
|
|
}
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2008-07-09 14:39:49 -04:00
|
|
|
#ifdef ENABLE_IPV6 /* CURLRES_IPV6 */
|
2008-11-06 12:19:56 -05:00
|
|
|
/* Otherwise, check if this is an IPv6 address string */
|
2011-04-20 09:17:42 -04:00
|
|
|
if(Curl_inet_pton (AF_INET6, hostname, &in6) > 0)
|
2008-07-09 14:39:49 -04:00
|
|
|
/* This must be an IPv6 address literal. */
|
2008-11-06 12:19:56 -05:00
|
|
|
return Curl_ip2addr(AF_INET6, &in6, hostname, port);
|
2008-07-09 14:39:49 -04:00
|
|
|
|
2010-11-11 08:51:39 -05:00
|
|
|
switch(conn->ip_version) {
|
2009-01-31 15:25:55 -05:00
|
|
|
default:
|
|
|
|
#if ARES_VERSION >= 0x010601
|
|
|
|
family = PF_UNSPEC; /* supported by c-ares since 1.6.1, so for older
|
|
|
|
c-ares versions this just falls through and defaults
|
|
|
|
to PF_INET */
|
|
|
|
break;
|
|
|
|
#endif
|
2008-07-09 14:39:49 -04:00
|
|
|
case CURL_IPRESOLVE_V4:
|
|
|
|
family = PF_INET;
|
|
|
|
break;
|
|
|
|
case CURL_IPRESOLVE_V6:
|
|
|
|
family = PF_INET6;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif /* CURLRES_IPV6 */
|
|
|
|
|
2004-04-26 03:20:11 -04:00
|
|
|
bufp = strdup(hostname);
|
|
|
|
if(bufp) {
|
2011-01-29 14:12:10 -05:00
|
|
|
struct ResolverResults *res = NULL;
|
2015-03-16 10:01:15 -04:00
|
|
|
free(conn->async.hostname);
|
2004-04-26 03:20:11 -04:00
|
|
|
conn->async.hostname = bufp;
|
|
|
|
conn->async.port = port;
|
2010-12-18 16:31:39 -05:00
|
|
|
conn->async.done = FALSE; /* not done */
|
|
|
|
conn->async.status = 0; /* clear */
|
|
|
|
conn->async.dns = NULL; /* clear */
|
2015-03-17 08:41:49 -04:00
|
|
|
res = calloc(sizeof(struct ResolverResults), 1);
|
2011-04-22 17:01:30 -04:00
|
|
|
if(!res) {
|
2015-03-16 10:01:15 -04:00
|
|
|
free(conn->async.hostname);
|
2011-01-29 14:12:10 -05:00
|
|
|
conn->async.hostname = NULL;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
conn->async.os_specific = res;
|
2004-04-26 03:20:11 -04:00
|
|
|
|
2011-01-29 14:12:10 -05:00
|
|
|
/* initial status - failed */
|
|
|
|
res->last_status = ARES_ENOTFOUND;
|
2010-12-18 16:31:39 -05:00
|
|
|
#ifdef ENABLE_IPV6 /* CURLRES_IPV6 */
|
|
|
|
if(family == PF_UNSPEC) {
|
2012-03-13 17:52:39 -04:00
|
|
|
if(Curl_ipv6works()) {
|
|
|
|
res->num_pending = 2;
|
|
|
|
|
|
|
|
/* areschannel is already setup in the Curl_open() function */
|
|
|
|
ares_gethostbyname((ares_channel)data->state.resolver, hostname,
|
|
|
|
PF_INET, query_completed_cb, conn);
|
|
|
|
ares_gethostbyname((ares_channel)data->state.resolver, hostname,
|
|
|
|
PF_INET6, query_completed_cb, conn);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
res->num_pending = 1;
|
2010-12-18 16:31:39 -05:00
|
|
|
|
2012-03-13 17:52:39 -04:00
|
|
|
/* areschannel is already setup in the Curl_open() function */
|
|
|
|
ares_gethostbyname((ares_channel)data->state.resolver, hostname,
|
|
|
|
PF_INET, query_completed_cb, conn);
|
|
|
|
}
|
2010-12-18 16:31:39 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* CURLRES_IPV6 */
|
|
|
|
{
|
2011-01-29 14:12:10 -05:00
|
|
|
res->num_pending = 1;
|
2010-12-18 16:31:39 -05:00
|
|
|
|
|
|
|
/* areschannel is already setup in the Curl_open() function */
|
2011-01-29 14:12:10 -05:00
|
|
|
ares_gethostbyname((ares_channel)data->state.resolver, hostname, family,
|
2011-01-29 19:00:52 -05:00
|
|
|
query_completed_cb, conn);
|
2010-12-18 16:31:39 -05:00
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
2010-01-25 18:50:13 -05:00
|
|
|
*waitp = 1; /* expect asynchronous response */
|
2004-04-26 03:20:11 -04:00
|
|
|
}
|
|
|
|
return NULL; /* no struct yet */
|
|
|
|
}
|
2011-04-12 11:34:28 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_servers(struct Curl_easy *data,
|
2011-04-12 11:34:28 -04:00
|
|
|
char *servers)
|
|
|
|
{
|
|
|
|
CURLcode result = CURLE_NOT_BUILT_IN;
|
2013-04-08 18:24:49 -04:00
|
|
|
int ares_result;
|
|
|
|
|
|
|
|
/* If server is NULL or empty, this would purge all DNS servers
|
|
|
|
* from ares library, which will cause any and all queries to fail.
|
|
|
|
* So, just return OK if none are configured and don't actually make
|
|
|
|
* any changes to c-ares. This lets c-ares use it's defaults, which
|
|
|
|
* it gets from the OS (for instance from /etc/resolv.conf on Linux).
|
|
|
|
*/
|
|
|
|
if(!(servers && servers[0]))
|
|
|
|
return CURLE_OK;
|
|
|
|
|
2011-04-12 11:34:28 -04:00
|
|
|
#if (ARES_VERSION >= 0x010704)
|
2013-04-08 18:24:49 -04:00
|
|
|
ares_result = ares_set_servers_csv(data->state.resolver, servers);
|
2011-04-12 11:34:28 -04:00
|
|
|
switch(ares_result) {
|
|
|
|
case ARES_SUCCESS:
|
2011-11-30 23:39:02 -05:00
|
|
|
result = CURLE_OK;
|
2011-04-12 11:34:28 -04:00
|
|
|
break;
|
|
|
|
case ARES_ENOMEM:
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
break;
|
|
|
|
case ARES_ENOTINITIALIZED:
|
|
|
|
case ARES_ENODATA:
|
|
|
|
case ARES_EBADSTR:
|
|
|
|
default:
|
|
|
|
result = CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#else /* too old c-ares version! */
|
|
|
|
(void)data;
|
2013-04-08 18:24:49 -04:00
|
|
|
(void)(ares_result);
|
2011-04-12 11:34:28 -04:00
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
2013-09-07 12:45:50 -04:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_interface(struct Curl_easy *data,
|
2013-09-17 15:59:43 -04:00
|
|
|
const char *interf)
|
2013-09-07 12:45:50 -04:00
|
|
|
{
|
|
|
|
#if (ARES_VERSION >= 0x010704)
|
2013-09-17 15:59:43 -04:00
|
|
|
if(!interf)
|
|
|
|
interf = "";
|
|
|
|
|
|
|
|
ares_set_local_dev((ares_channel)data->state.resolver, interf);
|
|
|
|
|
2013-09-07 12:45:50 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
#else /* c-ares version too old! */
|
|
|
|
(void)data;
|
2013-09-17 15:59:43 -04:00
|
|
|
(void)interf;
|
2013-09-07 12:45:50 -04:00
|
|
|
return CURLE_NOT_BUILT_IN;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_local_ip4(struct Curl_easy *data,
|
2013-09-07 12:45:50 -04:00
|
|
|
const char *local_ip4)
|
|
|
|
{
|
|
|
|
#if (ARES_VERSION >= 0x010704)
|
2013-11-10 12:08:57 -05:00
|
|
|
struct in_addr a4;
|
2013-09-07 12:45:50 -04:00
|
|
|
|
|
|
|
if((!local_ip4) || (local_ip4[0] == 0)) {
|
2013-11-10 12:08:57 -05:00
|
|
|
a4.s_addr = 0; /* disabled: do not bind to a specific address */
|
2013-09-07 12:45:50 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(Curl_inet_pton(AF_INET, local_ip4, &a4) != 1) {
|
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
}
|
|
|
|
}
|
2013-09-17 15:59:43 -04:00
|
|
|
|
2013-11-10 12:08:57 -05:00
|
|
|
ares_set_local_ip4((ares_channel)data->state.resolver, ntohl(a4.s_addr));
|
2013-09-17 15:59:43 -04:00
|
|
|
|
2013-09-07 12:45:50 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
#else /* c-ares version too old! */
|
|
|
|
(void)data;
|
|
|
|
(void)local_ip4;
|
|
|
|
return CURLE_NOT_BUILT_IN;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
CURLcode Curl_set_dns_local_ip6(struct Curl_easy *data,
|
2013-09-07 12:45:50 -04:00
|
|
|
const char *local_ip6)
|
|
|
|
{
|
2014-07-25 03:25:16 -04:00
|
|
|
#if (ARES_VERSION >= 0x010704) && defined(ENABLE_IPV6)
|
2013-09-07 12:45:50 -04:00
|
|
|
unsigned char a6[INET6_ADDRSTRLEN];
|
|
|
|
|
|
|
|
if((!local_ip6) || (local_ip6[0] == 0)) {
|
|
|
|
/* disabled: do not bind to a specific address */
|
|
|
|
memset(a6, 0, sizeof(a6));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(Curl_inet_pton(AF_INET6, local_ip6, a6) != 1) {
|
|
|
|
return CURLE_BAD_FUNCTION_ARGUMENT;
|
|
|
|
}
|
|
|
|
}
|
2013-09-17 15:59:43 -04:00
|
|
|
|
2013-09-07 12:45:50 -04:00
|
|
|
ares_set_local_ip6((ares_channel)data->state.resolver, a6);
|
2013-09-17 15:59:43 -04:00
|
|
|
|
2013-09-07 12:45:50 -04:00
|
|
|
return CURLE_OK;
|
|
|
|
#else /* c-ares version too old! */
|
|
|
|
(void)data;
|
|
|
|
(void)local_ip6;
|
|
|
|
return CURLE_NOT_BUILT_IN;
|
|
|
|
#endif
|
|
|
|
}
|
2004-04-26 03:20:11 -04:00
|
|
|
#endif /* CURLRES_ARES */
|