| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760 |
- /***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
- * \___|\___/|_| \_\_____|
- *
- * Copyright (C) Daniel Stenberg, <[email protected]>, et al.
- *
- * This software is licensed as described in the file COPYING, which
- * you should have received as part of this distribution. The terms
- * are also available at https://curl.se/docs/copyright.html.
- *
- * 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.
- *
- * SPDX-License-Identifier: curl
- *
- ***************************************************************************/
- #include "curl_setup.h"
- #include "socketpair.h"
- /***********************************************************************
- * Only for threaded name resolves builds
- **********************************************************************/
- #ifdef CURLRES_THREADED
- #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
- #ifdef __VMS
- #include <in.h>
- #include <inet.h>
- #endif
- #if defined(USE_THREADS_POSIX) && defined(HAVE_PTHREAD_H)
- # include <pthread.h>
- #endif
- #ifdef HAVE_GETADDRINFO
- # define RESOLVER_ENOMEM EAI_MEMORY /* = WSA_NOT_ENOUGH_MEMORY on Windows */
- #else
- # define RESOLVER_ENOMEM SOCKENOMEM
- #endif
- #include "urldata.h"
- #include "sendf.h"
- #include "hostip.h"
- #include "hash.h"
- #include "share.h"
- #include "url.h"
- #include "multiif.h"
- #include "inet_ntop.h"
- #include "curl_threads.h"
- #include "strdup.h"
- #ifdef USE_ARES
- #include <ares.h>
- #ifdef USE_HTTPSRR
- #define USE_HTTPSRR_ARES /* the combo */
- #endif
- #endif
- /* The last 3 #include files should be in this order */
- #include "curl_printf.h"
- #include "curl_memory.h"
- #include "memdebug.h"
- /*
- * Curl_async_global_init()
- * Called from curl_global_init() to initialize global resolver environment.
- * Does nothing here.
- */
- int Curl_async_global_init(void)
- {
- #if defined(USE_ARES) && defined(CARES_HAVE_ARES_LIBRARY_INIT)
- if(ares_library_init(ARES_LIB_INIT_ALL)) {
- return CURLE_FAILED_INIT;
- }
- #endif
- return CURLE_OK;
- }
- /*
- * Curl_async_global_cleanup()
- * Called from curl_global_cleanup() to destroy global resolver environment.
- * Does nothing here.
- */
- void Curl_async_global_cleanup(void)
- {
- #if defined(USE_ARES) && defined(CARES_HAVE_ARES_LIBRARY_INIT)
- ares_library_cleanup();
- #endif
- }
- static void async_thrdd_destroy(struct Curl_easy *);
- CURLcode Curl_async_get_impl(struct Curl_easy *data, void **impl)
- {
- (void)data;
- *impl = NULL;
- return CURLE_OK;
- }
- /* Destroy context of threaded resolver */
- static void addr_ctx_destroy(struct async_thrdd_addr_ctx *addr_ctx)
- {
- if(addr_ctx) {
- DEBUGASSERT(!addr_ctx->ref_count);
- Curl_mutex_destroy(&addr_ctx->mutx);
- free(addr_ctx->hostname);
- if(addr_ctx->res)
- Curl_freeaddrinfo(addr_ctx->res);
- #ifndef CURL_DISABLE_SOCKETPAIR
- /*
- * close one end of the socket pair (may be done in resolver thread);
- * the other end (for reading) is always closed in the parent thread.
- */
- #ifndef USE_EVENTFD
- if(addr_ctx->sock_pair[1] != CURL_SOCKET_BAD) {
- wakeup_close(addr_ctx->sock_pair[1]);
- }
- #endif
- #endif
- free(addr_ctx);
- }
- }
- /* Initialize context for threaded resolver */
- static struct async_thrdd_addr_ctx *
- addr_ctx_create(const char *hostname, int port,
- const struct addrinfo *hints)
- {
- struct async_thrdd_addr_ctx *addr_ctx = calloc(1, sizeof(*addr_ctx));
- if(!addr_ctx)
- return NULL;
- addr_ctx->thread_hnd = curl_thread_t_null;
- addr_ctx->port = port;
- #ifndef CURL_DISABLE_SOCKETPAIR
- addr_ctx->sock_pair[0] = CURL_SOCKET_BAD;
- addr_ctx->sock_pair[1] = CURL_SOCKET_BAD;
- #endif
- addr_ctx->ref_count = 0;
- #ifdef HAVE_GETADDRINFO
- DEBUGASSERT(hints);
- addr_ctx->hints = *hints;
- #else
- (void) hints;
- #endif
- Curl_mutex_init(&addr_ctx->mutx);
- #ifndef CURL_DISABLE_SOCKETPAIR
- /* create socket pair or pipe */
- if(wakeup_create(addr_ctx->sock_pair, FALSE) < 0) {
- addr_ctx->sock_pair[0] = CURL_SOCKET_BAD;
- addr_ctx->sock_pair[1] = CURL_SOCKET_BAD;
- goto err_exit;
- }
- #endif
- addr_ctx->sock_error = CURL_ASYNC_SUCCESS;
- /* Copying hostname string because original can be destroyed by parent
- * thread during gethostbyname execution.
- */
- addr_ctx->hostname = strdup(hostname);
- if(!addr_ctx->hostname)
- goto err_exit;
- addr_ctx->ref_count = 1;
- return addr_ctx;
- err_exit:
- #ifndef CURL_DISABLE_SOCKETPAIR
- if(addr_ctx->sock_pair[0] != CURL_SOCKET_BAD) {
- wakeup_close(addr_ctx->sock_pair[0]);
- addr_ctx->sock_pair[0] = CURL_SOCKET_BAD;
- }
- #endif
- addr_ctx_destroy(addr_ctx);
- return NULL;
- }
- #ifdef HAVE_GETADDRINFO
- /*
- * getaddrinfo_thread() resolves a name and then exits.
- *
- * For builds without ARES, but with USE_IPV6, create a resolver thread
- * and wait on it.
- */
- static
- #if defined(CURL_WINDOWS_UWP) || defined(UNDER_CE)
- DWORD
- #else
- unsigned int
- #endif
- CURL_STDCALL getaddrinfo_thread(void *arg)
- {
- struct async_thrdd_addr_ctx *addr_ctx = arg;
- char service[12];
- int rc;
- bool all_gone;
- msnprintf(service, sizeof(service), "%d", addr_ctx->port);
- rc = Curl_getaddrinfo_ex(addr_ctx->hostname, service,
- &addr_ctx->hints, &addr_ctx->res);
- if(rc) {
- addr_ctx->sock_error = SOCKERRNO ? SOCKERRNO : rc;
- if(addr_ctx->sock_error == 0)
- addr_ctx->sock_error = RESOLVER_ENOMEM;
- }
- else {
- Curl_addrinfo_set_port(addr_ctx->res, addr_ctx->port);
- }
- Curl_mutex_acquire(&addr_ctx->mutx);
- if(addr_ctx->ref_count > 1) {
- /* Someone still waiting on our results. */
- #ifndef CURL_DISABLE_SOCKETPAIR
- if(addr_ctx->sock_pair[1] != CURL_SOCKET_BAD) {
- #ifdef USE_EVENTFD
- const uint64_t buf[1] = { 1 };
- #else
- const char buf[1] = { 1 };
- #endif
- /* DNS has been resolved, signal client task */
- if(wakeup_write(addr_ctx->sock_pair[1], buf, sizeof(buf)) < 0) {
- /* update sock_erro to errno */
- addr_ctx->sock_error = SOCKERRNO;
- }
- }
- #endif
- }
- /* thread gives up its reference to the shared data now. */
- --addr_ctx->ref_count;
- all_gone = !addr_ctx->ref_count;
- Curl_mutex_release(&addr_ctx->mutx);
- if(all_gone)
- addr_ctx_destroy(addr_ctx);
- return 0;
- }
- #else /* HAVE_GETADDRINFO */
- /*
- * gethostbyname_thread() resolves a name and then exits.
- */
- static
- #if defined(CURL_WINDOWS_UWP) || defined(UNDER_CE)
- DWORD
- #else
- unsigned int
- #endif
- CURL_STDCALL gethostbyname_thread(void *arg)
- {
- struct async_thrdd_addr_ctx *addr_ctx = arg;
- bool all_gone;
- addr_ctx->res = Curl_ipv4_resolve_r(addr_ctx->hostname, addr_ctx->port);
- if(!addr_ctx->res) {
- addr_ctx->sock_error = SOCKERRNO;
- if(addr_ctx->sock_error == 0)
- addr_ctx->sock_error = RESOLVER_ENOMEM;
- }
- Curl_mutex_acquire(&addr_ctx->mutx);
- /* thread gives up its reference to the shared data now. */
- --addr_ctx->ref_count;
- all_gone = !addr_ctx->ref_count;;
- Curl_mutex_release(&addr_ctx->mutx);
- if(all_gone)
- addr_ctx_destroy(addr_ctx);
- return 0;
- }
- #endif /* HAVE_GETADDRINFO */
- /*
- * async_thrdd_destroy() cleans up async resolver data and thread handle.
- */
- static void async_thrdd_destroy(struct Curl_easy *data)
- {
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- struct async_thrdd_addr_ctx *addr = thrdd->addr;
- #ifdef USE_HTTPSRR_ARES
- if(thrdd->rr.channel) {
- ares_destroy(thrdd->rr.channel);
- thrdd->rr.channel = NULL;
- }
- Curl_httpsrr_cleanup(&thrdd->rr.hinfo);
- #endif
- if(addr) {
- #ifndef CURL_DISABLE_SOCKETPAIR
- curl_socket_t sock_rd = addr->sock_pair[0];
- #endif
- bool done;
- /* Release our reference to the data shared with the thread. */
- Curl_mutex_acquire(&addr->mutx);
- --addr->ref_count;
- CURL_TRC_DNS(data, "resolve, destroy async data, shared ref=%d",
- addr->ref_count);
- done = !addr->ref_count;
- /* we give up our reference to `addr`, so NULL our pointer.
- * coverity analyses this as being a potential unsynched write,
- * assuming two calls to this function could be invoked concurrently.
- * Which they never are, as the transfer's side runs single-threaded. */
- thrdd->addr = NULL;
- if(!done) {
- /* thread is still running. Detach the thread while mutexed, it will
- * trigger the cleanup when it releases its reference. */
- Curl_thread_destroy(&addr->thread_hnd);
- }
- Curl_mutex_release(&addr->mutx);
- if(done) {
- /* thread has released its reference, join it and
- * release the memory we shared with it. */
- if(addr->thread_hnd != curl_thread_t_null)
- Curl_thread_join(&addr->thread_hnd);
- addr_ctx_destroy(addr);
- }
- #ifndef CURL_DISABLE_SOCKETPAIR
- /*
- * ensure CURLMOPT_SOCKETFUNCTION fires CURL_POLL_REMOVE
- * before the FD is invalidated to avoid EBADF on EPOLL_CTL_DEL
- */
- Curl_multi_will_close(data, sock_rd);
- wakeup_close(sock_rd);
- #endif
- }
- }
- #ifdef USE_HTTPSRR_ARES
- static void async_thrdd_rr_done(void *user_data, ares_status_t status,
- size_t timeouts,
- const ares_dns_record_t *dnsrec)
- {
- struct Curl_easy *data = user_data;
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- (void)timeouts;
- thrdd->rr.done = TRUE;
- if((ARES_SUCCESS != status) || !dnsrec)
- return;
- thrdd->rr.result = Curl_httpsrr_from_ares(data, dnsrec, &thrdd->rr.hinfo);
- }
- static CURLcode async_rr_start(struct Curl_easy *data)
- {
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- int status;
- DEBUGASSERT(!thrdd->rr.channel);
- status = ares_init_options(&thrdd->rr.channel, NULL, 0);
- if(status != ARES_SUCCESS) {
- thrdd->rr.channel = NULL;
- return CURLE_FAILED_INIT;
- }
- memset(&thrdd->rr.hinfo, 0, sizeof(thrdd->rr.hinfo));
- thrdd->rr.hinfo.port = -1;
- ares_query_dnsrec(thrdd->rr.channel,
- data->conn->host.name, ARES_CLASS_IN,
- ARES_REC_TYPE_HTTPS,
- async_thrdd_rr_done, data, NULL);
- return CURLE_OK;
- }
- #endif
- /*
- * async_thrdd_init() starts a new thread that performs the actual
- * resolve. This function returns before the resolve is done.
- *
- * Returns FALSE in case of failure, otherwise TRUE.
- */
- static bool async_thrdd_init(struct Curl_easy *data,
- const char *hostname, int port, int ip_version,
- const struct addrinfo *hints)
- {
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- struct async_thrdd_addr_ctx *addr_ctx;
- /* !checksrc! disable ERRNOVAR 1 */
- int err = ENOMEM;
- if(thrdd->addr
- #ifdef USE_HTTPSRR_ARES
- || thrdd->rr.channel
- #endif
- ) {
- CURL_TRC_DNS(data, "starting new resolve, with previous not cleaned up");
- async_thrdd_destroy(data);
- DEBUGASSERT(!thrdd->addr);
- #ifdef USE_HTTPSRR_ARES
- DEBUGASSERT(!thrdd->rr.channel);
- #endif
- }
- data->state.async.dns = NULL;
- data->state.async.done = FALSE;
- data->state.async.port = port;
- data->state.async.ip_version = ip_version;
- data->state.async.hostname = strdup(hostname);
- if(!data->state.async.hostname)
- goto err_exit;
- addr_ctx = addr_ctx_create(hostname, port, hints);
- if(!addr_ctx)
- goto err_exit;
- thrdd->addr = addr_ctx;
- Curl_mutex_acquire(&addr_ctx->mutx);
- DEBUGASSERT(addr_ctx->ref_count == 1);
- /* passing addr_ctx to the thread adds a reference */
- addr_ctx->start = curlx_now();
- ++addr_ctx->ref_count;
- #ifdef HAVE_GETADDRINFO
- addr_ctx->thread_hnd = Curl_thread_create(getaddrinfo_thread, addr_ctx);
- #else
- addr_ctx->thread_hnd = Curl_thread_create(gethostbyname_thread, addr_ctx);
- #endif
- if(addr_ctx->thread_hnd == curl_thread_t_null) {
- /* The thread never started, remove its reference that never happened. */
- --addr_ctx->ref_count;
- err = errno;
- Curl_mutex_release(&addr_ctx->mutx);
- goto err_exit;
- }
- Curl_mutex_release(&addr_ctx->mutx);
- #ifdef USE_HTTPSRR_ARES
- if(async_rr_start(data))
- infof(data, "Failed HTTPS RR operation");
- #endif
- CURL_TRC_DNS(data, "resolve thread started for of %s:%d", hostname, port);
- return TRUE;
- err_exit:
- CURL_TRC_DNS(data, "resolve thread failed init: %d", err);
- async_thrdd_destroy(data);
- CURL_SETERRNO(err);
- return FALSE;
- }
- /*
- * 'entry' may be NULL and then no data is returned
- */
- static CURLcode asyn_thrdd_await(struct Curl_easy *data,
- struct async_thrdd_addr_ctx *addr_ctx,
- struct Curl_dns_entry **entry)
- {
- CURLcode result = CURLE_OK;
- DEBUGASSERT(addr_ctx->thread_hnd != curl_thread_t_null);
- CURL_TRC_DNS(data, "resolve, wait for thread to finish");
- /* wait for the thread to resolve the name */
- if(Curl_thread_join(&addr_ctx->thread_hnd)) {
- if(entry)
- result = Curl_async_is_resolved(data, entry);
- }
- else
- DEBUGASSERT(0);
- data->state.async.done = TRUE;
- if(entry)
- *entry = data->state.async.dns;
- async_thrdd_destroy(data);
- return result;
- }
- /*
- * Until we gain a way to signal the resolver threads to stop early, we must
- * simply wait for them and ignore their results.
- */
- void Curl_async_thrdd_shutdown(struct Curl_easy *data)
- {
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- /* If we are still resolving, we must wait for the threads to fully clean up,
- unfortunately. Otherwise, we can simply cancel to clean up any resolver
- data. */
- if(thrdd->addr && (thrdd->addr->thread_hnd != curl_thread_t_null) &&
- !data->set.quick_exit)
- (void)asyn_thrdd_await(data, thrdd->addr, NULL);
- else
- async_thrdd_destroy(data);
- }
- void Curl_async_thrdd_destroy(struct Curl_easy *data)
- {
- Curl_async_thrdd_shutdown(data);
- }
- /*
- * Curl_async_await()
- *
- * Waits for a resolve to finish. This function should be avoided since using
- * this risk getting the multi interface to "hang".
- *
- * If 'entry' is non-NULL, make it point to the resolved dns entry
- *
- * Returns CURLE_COULDNT_RESOLVE_HOST if the host was not resolved,
- * CURLE_OPERATION_TIMEDOUT if a time-out occurred, or other errors.
- *
- * This is the version for resolves-in-a-thread.
- */
- CURLcode Curl_async_await(struct Curl_easy *data,
- struct Curl_dns_entry **entry)
- {
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- if(thrdd->addr)
- return asyn_thrdd_await(data, thrdd->addr, entry);
- return CURLE_FAILED_INIT;
- }
- /*
- * Curl_async_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.
- */
- CURLcode Curl_async_is_resolved(struct Curl_easy *data,
- struct Curl_dns_entry **dns)
- {
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- bool done = FALSE;
- DEBUGASSERT(dns);
- *dns = NULL;
- if(data->state.async.done) {
- *dns = data->state.async.dns;
- CURL_TRC_DNS(data, "threaded: is_resolved(), already done, dns=%sfound",
- *dns ? "" : "not ");
- return CURLE_OK;
- }
- #ifdef USE_HTTPSRR_ARES
- /* best effort, ignore errors */
- if(thrdd->rr.channel)
- (void)Curl_ares_perform(thrdd->rr.channel, 0);
- #endif
- DEBUGASSERT(thrdd->addr);
- if(!thrdd->addr)
- return CURLE_FAILED_INIT;
- Curl_mutex_acquire(&thrdd->addr->mutx);
- done = (thrdd->addr->ref_count == 1);
- Curl_mutex_release(&thrdd->addr->mutx);
- if(done) {
- CURLcode result = CURLE_OK;
- data->state.async.done = TRUE;
- Curl_resolv_unlink(data, &data->state.async.dns);
- if(thrdd->addr->res) {
- data->state.async.dns =
- Curl_dnscache_mk_entry(data, thrdd->addr->res,
- data->state.async.hostname, 0,
- data->state.async.port, FALSE);
- thrdd->addr->res = NULL;
- if(!data->state.async.dns)
- result = CURLE_OUT_OF_MEMORY;
- #ifdef USE_HTTPSRR_ARES
- if(thrdd->rr.channel) {
- result = thrdd->rr.result;
- if(!result) {
- struct Curl_https_rrinfo *lhrr;
- lhrr = Curl_httpsrr_dup_move(&thrdd->rr.hinfo);
- if(!lhrr)
- result = CURLE_OUT_OF_MEMORY;
- else
- data->state.async.dns->hinfo = lhrr;
- }
- }
- #endif
- if(!result && data->state.async.dns)
- result = Curl_dnscache_add(data, data->state.async.dns);
- }
- if(!result && !data->state.async.dns)
- result = Curl_resolver_error(data);
- if(result)
- Curl_resolv_unlink(data, &data->state.async.dns);
- *dns = data->state.async.dns;
- CURL_TRC_DNS(data, "is_resolved() result=%d, dns=%sfound",
- result, *dns ? "" : "not ");
- async_thrdd_destroy(data);
- return result;
- }
- else {
- /* poll for name lookup done with exponential backoff up to 250ms */
- /* should be fine even if this converts to 32-bit */
- timediff_t elapsed = curlx_timediff(curlx_now(),
- data->progress.t_startsingle);
- if(elapsed < 0)
- elapsed = 0;
- if(thrdd->addr->poll_interval == 0)
- /* Start at 1ms poll interval */
- thrdd->addr->poll_interval = 1;
- else if(elapsed >= thrdd->addr->interval_end)
- /* Back-off exponentially if last interval expired */
- thrdd->addr->poll_interval *= 2;
- if(thrdd->addr->poll_interval > 250)
- thrdd->addr->poll_interval = 250;
- thrdd->addr->interval_end = elapsed + thrdd->addr->poll_interval;
- Curl_expire(data, thrdd->addr->poll_interval, EXPIRE_ASYNC_NAME);
- return CURLE_OK;
- }
- }
- int Curl_async_getsock(struct Curl_easy *data, curl_socket_t *socks)
- {
- struct async_thrdd_ctx *thrdd = &data->state.async.thrdd;
- int ret_val = 0;
- #if !defined(CURL_DISABLE_SOCKETPAIR) || defined(USE_HTTPSRR_ARES)
- int socketi = 0;
- #else
- (void)socks;
- #endif
- #ifdef USE_HTTPSRR_ARES
- if(thrdd->rr.channel) {
- ret_val = Curl_ares_getsock(data, thrdd->rr.channel, socks);
- for(socketi = 0; socketi < (MAX_SOCKSPEREASYHANDLE - 1); socketi++)
- if(!ARES_GETSOCK_READABLE(ret_val, socketi) &&
- !ARES_GETSOCK_WRITABLE(ret_val, socketi))
- break;
- }
- #endif
- if(!thrdd->addr)
- return ret_val;
- #ifndef CURL_DISABLE_SOCKETPAIR
- if(thrdd->addr) {
- /* return read fd to client for polling the DNS resolution status */
- socks[socketi] = thrdd->addr->sock_pair[0];
- ret_val |= GETSOCK_READSOCK(socketi);
- }
- else
- #endif
- {
- timediff_t milli;
- timediff_t ms = curlx_timediff(curlx_now(), thrdd->addr->start);
- if(ms < 3)
- milli = 0;
- else if(ms <= 50)
- milli = ms/3;
- else if(ms <= 250)
- milli = 50;
- else
- milli = 200;
- Curl_expire(data, milli, EXPIRE_ASYNC_NAME);
- }
- return ret_val;
- }
- #ifndef HAVE_GETADDRINFO
- /*
- * Curl_async_getaddrinfo() - for platforms without getaddrinfo
- */
- struct Curl_addrinfo *Curl_async_getaddrinfo(struct Curl_easy *data,
- const char *hostname,
- int port,
- int ip_version,
- int *waitp)
- {
- (void)ip_version;
- *waitp = 0; /* default to synchronous response */
- /* fire up a new resolver thread! */
- if(async_thrdd_init(data, hostname, port, ip_version, NULL)) {
- *waitp = 1; /* expect asynchronous response */
- return NULL;
- }
- failf(data, "getaddrinfo() thread failed");
- return NULL;
- }
- #else /* !HAVE_GETADDRINFO */
- /*
- * Curl_async_getaddrinfo() - for getaddrinfo
- */
- struct Curl_addrinfo *Curl_async_getaddrinfo(struct Curl_easy *data,
- const char *hostname,
- int port,
- int ip_version,
- int *waitp)
- {
- struct addrinfo hints;
- int pf = PF_INET;
- *waitp = 0; /* default to synchronous response */
- CURL_TRC_DNS(data, "init threaded resolve of %s:%d", hostname, port);
- #ifdef CURLRES_IPV6
- if((ip_version != CURL_IPRESOLVE_V4) && Curl_ipv6works(data)) {
- /* The stack seems to be IPv6-enabled */
- if(ip_version == CURL_IPRESOLVE_V6)
- pf = PF_INET6;
- else
- pf = PF_UNSPEC;
- }
- #else
- (void)ip_version;
- #endif /* CURLRES_IPV6 */
- memset(&hints, 0, sizeof(hints));
- hints.ai_family = pf;
- hints.ai_socktype = (data->conn->transport == TRNSPRT_TCP) ?
- SOCK_STREAM : SOCK_DGRAM;
- /* fire up a new resolver thread! */
- if(async_thrdd_init(data, hostname, port, ip_version, &hints)) {
- *waitp = 1; /* expect asynchronous response */
- return NULL;
- }
- failf(data, "getaddrinfo() thread failed to start");
- return NULL;
- }
- #endif /* !HAVE_GETADDRINFO */
- #endif /* CURLRES_THREADED */
|