asyn-thread.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  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.
  13. *
  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. #include "curl_setup.h"
  23. #ifdef HAVE_NETINET_IN_H
  24. #include <netinet/in.h>
  25. #endif
  26. #ifdef HAVE_NETDB_H
  27. #include <netdb.h>
  28. #endif
  29. #ifdef HAVE_ARPA_INET_H
  30. #include <arpa/inet.h>
  31. #endif
  32. #ifdef __VMS
  33. #include <in.h>
  34. #include <inet.h>
  35. #endif
  36. #if defined(USE_THREADS_POSIX)
  37. # ifdef HAVE_PTHREAD_H
  38. # include <pthread.h>
  39. # endif
  40. #elif defined(USE_THREADS_WIN32)
  41. # ifdef HAVE_PROCESS_H
  42. # include <process.h>
  43. # endif
  44. #endif
  45. #if (defined(NETWARE) && defined(__NOVELL_LIBC__))
  46. #undef in_addr_t
  47. #define in_addr_t unsigned long
  48. #endif
  49. #ifdef HAVE_GETADDRINFO
  50. # define RESOLVER_ENOMEM EAI_MEMORY
  51. #else
  52. # define RESOLVER_ENOMEM ENOMEM
  53. #endif
  54. #include "urldata.h"
  55. #include "sendf.h"
  56. #include "hostip.h"
  57. #include "hash.h"
  58. #include "share.h"
  59. #include "strerror.h"
  60. #include "url.h"
  61. #include "multiif.h"
  62. #include "inet_pton.h"
  63. #include "inet_ntop.h"
  64. #include "curl_threads.h"
  65. #include "connect.h"
  66. #define _MPRINTF_REPLACE /* use our functions only */
  67. #include <curl/mprintf.h>
  68. #include "curl_memory.h"
  69. /* The last #include file should be: */
  70. #include "memdebug.h"
  71. /***********************************************************************
  72. * Only for threaded name resolves builds
  73. **********************************************************************/
  74. #ifdef CURLRES_THREADED
  75. /*
  76. * Curl_resolver_global_init()
  77. * Called from curl_global_init() to initialize global resolver environment.
  78. * Does nothing here.
  79. */
  80. int Curl_resolver_global_init(void)
  81. {
  82. return CURLE_OK;
  83. }
  84. /*
  85. * Curl_resolver_global_cleanup()
  86. * Called from curl_global_cleanup() to destroy global resolver environment.
  87. * Does nothing here.
  88. */
  89. void Curl_resolver_global_cleanup(void)
  90. {
  91. }
  92. /*
  93. * Curl_resolver_init()
  94. * Called from curl_easy_init() -> Curl_open() to initialize resolver
  95. * URL-state specific environment ('resolver' member of the UrlState
  96. * structure). Does nothing here.
  97. */
  98. CURLcode Curl_resolver_init(void **resolver)
  99. {
  100. (void)resolver;
  101. return CURLE_OK;
  102. }
  103. /*
  104. * Curl_resolver_cleanup()
  105. * Called from curl_easy_cleanup() -> Curl_close() to cleanup resolver
  106. * URL-state specific environment ('resolver' member of the UrlState
  107. * structure). Does nothing here.
  108. */
  109. void Curl_resolver_cleanup(void *resolver)
  110. {
  111. (void)resolver;
  112. }
  113. /*
  114. * Curl_resolver_duphandle()
  115. * Called from curl_easy_duphandle() to duplicate resolver URL state-specific
  116. * environment ('resolver' member of the UrlState structure). Does nothing
  117. * here.
  118. */
  119. int Curl_resolver_duphandle(void **to, void *from)
  120. {
  121. (void)to;
  122. (void)from;
  123. return CURLE_OK;
  124. }
  125. static void destroy_async_data(struct Curl_async *);
  126. /*
  127. * Cancel all possibly still on-going resolves for this connection.
  128. */
  129. void Curl_resolver_cancel(struct connectdata *conn)
  130. {
  131. destroy_async_data(&conn->async);
  132. }
  133. /* This function is used to init a threaded resolve */
  134. static bool init_resolve_thread(struct connectdata *conn,
  135. const char *hostname, int port,
  136. const struct addrinfo *hints);
  137. /* Data for synchronization between resolver thread and its parent */
  138. struct thread_sync_data {
  139. curl_mutex_t * mtx;
  140. int done;
  141. char * hostname; /* hostname to resolve, Curl_async.hostname
  142. duplicate */
  143. int port;
  144. int sock_error;
  145. Curl_addrinfo *res;
  146. #ifdef HAVE_GETADDRINFO
  147. struct addrinfo hints;
  148. #endif
  149. };
  150. struct thread_data {
  151. curl_thread_t thread_hnd;
  152. unsigned int poll_interval;
  153. long interval_end;
  154. struct thread_sync_data tsd;
  155. };
  156. static struct thread_sync_data *conn_thread_sync_data(struct connectdata *conn)
  157. {
  158. return &(((struct thread_data *)conn->async.os_specific)->tsd);
  159. }
  160. #define CONN_THREAD_SYNC_DATA(conn) &(((conn)->async.os_specific)->tsd);
  161. /* Destroy resolver thread synchronization data */
  162. static
  163. void destroy_thread_sync_data(struct thread_sync_data * tsd)
  164. {
  165. if(tsd->mtx) {
  166. Curl_mutex_destroy(tsd->mtx);
  167. free(tsd->mtx);
  168. }
  169. if(tsd->hostname)
  170. free(tsd->hostname);
  171. if(tsd->res)
  172. Curl_freeaddrinfo(tsd->res);
  173. memset(tsd,0,sizeof(*tsd));
  174. }
  175. /* Initialize resolver thread synchronization data */
  176. static
  177. int init_thread_sync_data(struct thread_sync_data * tsd,
  178. const char * hostname,
  179. int port,
  180. const struct addrinfo *hints)
  181. {
  182. memset(tsd, 0, sizeof(*tsd));
  183. tsd->port = port;
  184. #ifdef HAVE_GETADDRINFO
  185. DEBUGASSERT(hints);
  186. tsd->hints = *hints;
  187. #else
  188. (void) hints;
  189. #endif
  190. tsd->mtx = malloc(sizeof(curl_mutex_t));
  191. if(tsd->mtx == NULL)
  192. goto err_exit;
  193. Curl_mutex_init(tsd->mtx);
  194. tsd->sock_error = CURL_ASYNC_SUCCESS;
  195. /* Copying hostname string because original can be destroyed by parent
  196. * thread during gethostbyname execution.
  197. */
  198. tsd->hostname = strdup(hostname);
  199. if(!tsd->hostname)
  200. goto err_exit;
  201. return 1;
  202. err_exit:
  203. /* Memory allocation failed */
  204. destroy_thread_sync_data(tsd);
  205. return 0;
  206. }
  207. static int getaddrinfo_complete(struct connectdata *conn)
  208. {
  209. struct thread_sync_data *tsd = conn_thread_sync_data(conn);
  210. int rc;
  211. rc = Curl_addrinfo_callback(conn, tsd->sock_error, tsd->res);
  212. /* The tsd->res structure has been copied to async.dns and perhaps the DNS
  213. cache. Set our copy to NULL so destroy_thread_sync_data doesn't free it.
  214. */
  215. tsd->res = NULL;
  216. return rc;
  217. }
  218. #ifdef HAVE_GETADDRINFO
  219. /*
  220. * getaddrinfo_thread() resolves a name and then exits.
  221. *
  222. * For builds without ARES, but with ENABLE_IPV6, create a resolver thread
  223. * and wait on it.
  224. */
  225. static unsigned int CURL_STDCALL getaddrinfo_thread (void *arg)
  226. {
  227. struct thread_sync_data *tsd = (struct thread_sync_data*)arg;
  228. char service[12];
  229. int rc;
  230. snprintf(service, sizeof(service), "%d", tsd->port);
  231. rc = Curl_getaddrinfo_ex(tsd->hostname, service, &tsd->hints, &tsd->res);
  232. if(rc != 0) {
  233. tsd->sock_error = SOCKERRNO?SOCKERRNO:rc;
  234. if(tsd->sock_error == 0)
  235. tsd->sock_error = RESOLVER_ENOMEM;
  236. }
  237. Curl_mutex_acquire(tsd->mtx);
  238. tsd->done = 1;
  239. Curl_mutex_release(tsd->mtx);
  240. return 0;
  241. }
  242. #else /* HAVE_GETADDRINFO */
  243. /*
  244. * gethostbyname_thread() resolves a name and then exits.
  245. */
  246. static unsigned int CURL_STDCALL gethostbyname_thread (void *arg)
  247. {
  248. struct thread_sync_data *tsd = (struct thread_sync_data *)arg;
  249. tsd->res = Curl_ipv4_resolve_r(tsd->hostname, tsd->port);
  250. if(!tsd->res) {
  251. tsd->sock_error = SOCKERRNO;
  252. if(tsd->sock_error == 0)
  253. tsd->sock_error = RESOLVER_ENOMEM;
  254. }
  255. Curl_mutex_acquire(tsd->mtx);
  256. tsd->done = 1;
  257. Curl_mutex_release(tsd->mtx);
  258. return 0;
  259. }
  260. #endif /* HAVE_GETADDRINFO */
  261. /*
  262. * destroy_async_data() cleans up async resolver data and thread handle.
  263. */
  264. static void destroy_async_data (struct Curl_async *async)
  265. {
  266. if(async->hostname)
  267. free(async->hostname);
  268. if(async->os_specific) {
  269. struct thread_data *td = (struct thread_data*) async->os_specific;
  270. if(td->thread_hnd != curl_thread_t_null)
  271. Curl_thread_join(&td->thread_hnd);
  272. destroy_thread_sync_data(&td->tsd);
  273. free(async->os_specific);
  274. }
  275. async->hostname = NULL;
  276. async->os_specific = NULL;
  277. }
  278. /*
  279. * init_resolve_thread() starts a new thread that performs the actual
  280. * resolve. This function returns before the resolve is done.
  281. *
  282. * Returns FALSE in case of failure, otherwise TRUE.
  283. */
  284. static bool init_resolve_thread (struct connectdata *conn,
  285. const char *hostname, int port,
  286. const struct addrinfo *hints)
  287. {
  288. struct thread_data *td = calloc(1, sizeof(struct thread_data));
  289. int err = RESOLVER_ENOMEM;
  290. conn->async.os_specific = (void*) td;
  291. if(!td)
  292. goto err_exit;
  293. conn->async.port = port;
  294. conn->async.done = FALSE;
  295. conn->async.status = 0;
  296. conn->async.dns = NULL;
  297. td->thread_hnd = curl_thread_t_null;
  298. if(!init_thread_sync_data(&td->tsd, hostname, port, hints))
  299. goto err_exit;
  300. Curl_safefree(conn->async.hostname);
  301. conn->async.hostname = strdup(hostname);
  302. if(!conn->async.hostname)
  303. goto err_exit;
  304. #ifdef HAVE_GETADDRINFO
  305. td->thread_hnd = Curl_thread_create(getaddrinfo_thread, &td->tsd);
  306. #else
  307. td->thread_hnd = Curl_thread_create(gethostbyname_thread, &td->tsd);
  308. #endif
  309. if(!td->thread_hnd) {
  310. #ifndef _WIN32_WCE
  311. err = errno;
  312. #endif
  313. goto err_exit;
  314. }
  315. return TRUE;
  316. err_exit:
  317. destroy_async_data(&conn->async);
  318. SET_ERRNO(err);
  319. return FALSE;
  320. }
  321. /*
  322. * resolver_error() calls failf() with the appropriate message after a resolve
  323. * error
  324. */
  325. static CURLcode resolver_error(struct connectdata *conn)
  326. {
  327. const char *host_or_proxy;
  328. CURLcode rc;
  329. if(conn->bits.httpproxy) {
  330. host_or_proxy = "proxy";
  331. rc = CURLE_COULDNT_RESOLVE_PROXY;
  332. }
  333. else {
  334. host_or_proxy = "host";
  335. rc = CURLE_COULDNT_RESOLVE_HOST;
  336. }
  337. failf(conn->data, "Could not resolve %s: %s", host_or_proxy,
  338. conn->async.hostname);
  339. return rc;
  340. }
  341. /*
  342. * Curl_resolver_wait_resolv()
  343. *
  344. * waits for a resolve to finish. This function should be avoided since using
  345. * this risk getting the multi interface to "hang".
  346. *
  347. * If 'entry' is non-NULL, make it point to the resolved dns entry
  348. *
  349. * This is the version for resolves-in-a-thread.
  350. */
  351. CURLcode Curl_resolver_wait_resolv(struct connectdata *conn,
  352. struct Curl_dns_entry **entry)
  353. {
  354. struct thread_data *td = (struct thread_data*) conn->async.os_specific;
  355. CURLcode rc = CURLE_OK;
  356. DEBUGASSERT(conn && td);
  357. /* wait for the thread to resolve the name */
  358. if(Curl_thread_join(&td->thread_hnd))
  359. rc = getaddrinfo_complete(conn);
  360. else
  361. DEBUGASSERT(0);
  362. conn->async.done = TRUE;
  363. if(entry)
  364. *entry = conn->async.dns;
  365. if(!conn->async.dns)
  366. /* a name was not resolved, report error */
  367. rc = resolver_error(conn);
  368. destroy_async_data(&conn->async);
  369. if(!conn->async.dns)
  370. connclose(conn, "asynch resolve failed");
  371. return (rc);
  372. }
  373. /*
  374. * Curl_resolver_is_resolved() is called repeatedly to check if a previous
  375. * name resolve request has completed. It should also make sure to time-out if
  376. * the operation seems to take too long.
  377. */
  378. CURLcode Curl_resolver_is_resolved(struct connectdata *conn,
  379. struct Curl_dns_entry **entry)
  380. {
  381. struct SessionHandle *data = conn->data;
  382. struct thread_data *td = (struct thread_data*) conn->async.os_specific;
  383. int done = 0;
  384. *entry = NULL;
  385. if(!td) {
  386. DEBUGASSERT(td);
  387. return CURLE_COULDNT_RESOLVE_HOST;
  388. }
  389. Curl_mutex_acquire(td->tsd.mtx);
  390. done = td->tsd.done;
  391. Curl_mutex_release(td->tsd.mtx);
  392. if(done) {
  393. getaddrinfo_complete(conn);
  394. if(!conn->async.dns) {
  395. CURLcode rc = resolver_error(conn);
  396. destroy_async_data(&conn->async);
  397. return rc;
  398. }
  399. destroy_async_data(&conn->async);
  400. *entry = conn->async.dns;
  401. }
  402. else {
  403. /* poll for name lookup done with exponential backoff up to 250ms */
  404. long elapsed = Curl_tvdiff(Curl_tvnow(), data->progress.t_startsingle);
  405. if(elapsed < 0)
  406. elapsed = 0;
  407. if(td->poll_interval == 0)
  408. /* Start at 1ms poll interval */
  409. td->poll_interval = 1;
  410. else if(elapsed >= td->interval_end)
  411. /* Back-off exponentially if last interval expired */
  412. td->poll_interval *= 2;
  413. if(td->poll_interval > 250)
  414. td->poll_interval = 250;
  415. td->interval_end = elapsed + td->poll_interval;
  416. Curl_expire(conn->data, td->poll_interval);
  417. }
  418. return CURLE_OK;
  419. }
  420. int Curl_resolver_getsock(struct connectdata *conn,
  421. curl_socket_t *socks,
  422. int numsocks)
  423. {
  424. (void)conn;
  425. (void)socks;
  426. (void)numsocks;
  427. return 0;
  428. }
  429. #ifndef HAVE_GETADDRINFO
  430. /*
  431. * Curl_getaddrinfo() - for platforms without getaddrinfo
  432. */
  433. Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
  434. const char *hostname,
  435. int port,
  436. int *waitp)
  437. {
  438. struct in_addr in;
  439. *waitp = 0; /* default to synchronous response */
  440. if(Curl_inet_pton(AF_INET, hostname, &in) > 0)
  441. /* This is a dotted IP address 123.123.123.123-style */
  442. return Curl_ip2addr(AF_INET, &in, hostname, port);
  443. /* fire up a new resolver thread! */
  444. if(init_resolve_thread(conn, hostname, port, NULL)) {
  445. *waitp = 1; /* expect asynchronous response */
  446. return NULL;
  447. }
  448. /* fall-back to blocking version */
  449. return Curl_ipv4_resolve_r(hostname, port);
  450. }
  451. #else /* !HAVE_GETADDRINFO */
  452. /*
  453. * Curl_resolver_getaddrinfo() - for getaddrinfo
  454. */
  455. Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
  456. const char *hostname,
  457. int port,
  458. int *waitp)
  459. {
  460. struct addrinfo hints;
  461. struct in_addr in;
  462. Curl_addrinfo *res;
  463. int error;
  464. char sbuf[12];
  465. int pf = PF_INET;
  466. #ifdef CURLRES_IPV6
  467. struct in6_addr in6;
  468. #endif /* CURLRES_IPV6 */
  469. *waitp = 0; /* default to synchronous response */
  470. /* First check if this is an IPv4 address string */
  471. if(Curl_inet_pton(AF_INET, hostname, &in) > 0)
  472. /* This is a dotted IP address 123.123.123.123-style */
  473. return Curl_ip2addr(AF_INET, &in, hostname, port);
  474. #ifdef CURLRES_IPV6
  475. /* check if this is an IPv6 address string */
  476. if(Curl_inet_pton (AF_INET6, hostname, &in6) > 0)
  477. /* This is an IPv6 address literal */
  478. return Curl_ip2addr(AF_INET6, &in6, hostname, port);
  479. /*
  480. * Check if a limited name resolve has been requested.
  481. */
  482. switch(conn->ip_version) {
  483. case CURL_IPRESOLVE_V4:
  484. pf = PF_INET;
  485. break;
  486. case CURL_IPRESOLVE_V6:
  487. pf = PF_INET6;
  488. break;
  489. default:
  490. pf = PF_UNSPEC;
  491. break;
  492. }
  493. if((pf != PF_INET) && !Curl_ipv6works())
  494. /* the stack seems to be a non-ipv6 one */
  495. pf = PF_INET;
  496. #endif /* CURLRES_IPV6 */
  497. memset(&hints, 0, sizeof(hints));
  498. hints.ai_family = pf;
  499. hints.ai_socktype = conn->socktype;
  500. snprintf(sbuf, sizeof(sbuf), "%d", port);
  501. /* fire up a new resolver thread! */
  502. if(init_resolve_thread(conn, hostname, port, &hints)) {
  503. *waitp = 1; /* expect asynchronous response */
  504. return NULL;
  505. }
  506. /* fall-back to blocking version */
  507. infof(conn->data, "init_resolve_thread() failed for %s; %s\n",
  508. hostname, Curl_strerror(conn, ERRNO));
  509. error = Curl_getaddrinfo_ex(hostname, sbuf, &hints, &res);
  510. if(error) {
  511. infof(conn->data, "getaddrinfo() failed for %s:%d; %s\n",
  512. hostname, port, Curl_strerror(conn, SOCKERRNO));
  513. return NULL;
  514. }
  515. return res;
  516. }
  517. #endif /* !HAVE_GETADDRINFO */
  518. CURLcode Curl_set_dns_servers(struct SessionHandle *data,
  519. char *servers)
  520. {
  521. (void)data;
  522. (void)servers;
  523. return CURLE_NOT_BUILT_IN;
  524. }
  525. CURLcode Curl_set_dns_interface(struct SessionHandle *data,
  526. const char *interf)
  527. {
  528. (void)data;
  529. (void)interf;
  530. return CURLE_NOT_BUILT_IN;
  531. }
  532. CURLcode Curl_set_dns_local_ip4(struct SessionHandle *data,
  533. const char *local_ip4)
  534. {
  535. (void)data;
  536. (void)local_ip4;
  537. return CURLE_NOT_BUILT_IN;
  538. }
  539. CURLcode Curl_set_dns_local_ip6(struct SessionHandle *data,
  540. const char *local_ip6)
  541. {
  542. (void)data;
  543. (void)local_ip6;
  544. return CURLE_NOT_BUILT_IN;
  545. }
  546. #endif /* CURLRES_THREADED */