hostip.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2013, 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. #ifdef HAVE_SETJMP_H
  37. #include <setjmp.h>
  38. #endif
  39. #ifdef HAVE_SIGNAL_H
  40. #include <signal.h>
  41. #endif
  42. #ifdef HAVE_PROCESS_H
  43. #include <process.h>
  44. #endif
  45. #include "urldata.h"
  46. #include "sendf.h"
  47. #include "hostip.h"
  48. #include "hash.h"
  49. #include "share.h"
  50. #include "strerror.h"
  51. #include "url.h"
  52. #include "inet_ntop.h"
  53. #include "warnless.h"
  54. #define _MPRINTF_REPLACE /* use our functions only */
  55. #include <curl/mprintf.h>
  56. #include "curl_memory.h"
  57. /* The last #include file should be: */
  58. #include "memdebug.h"
  59. #if defined(CURLRES_SYNCH) && \
  60. defined(HAVE_ALARM) && defined(SIGALRM) && defined(HAVE_SIGSETJMP)
  61. /* alarm-based timeouts can only be used with all the dependencies satisfied */
  62. #define USE_ALARM_TIMEOUT
  63. #endif
  64. /*
  65. * hostip.c explained
  66. * ==================
  67. *
  68. * The main COMPILE-TIME DEFINES to keep in mind when reading the host*.c
  69. * source file are these:
  70. *
  71. * CURLRES_IPV6 - this host has getaddrinfo() and family, and thus we use
  72. * that. The host may not be able to resolve IPv6, but we don't really have to
  73. * take that into account. Hosts that aren't IPv6-enabled have CURLRES_IPV4
  74. * defined.
  75. *
  76. * CURLRES_ARES - is defined if libcurl is built to use c-ares for
  77. * asynchronous name resolves. This can be Windows or *nix.
  78. *
  79. * CURLRES_THREADED - is defined if libcurl is built to run under (native)
  80. * Windows, and then the name resolve will be done in a new thread, and the
  81. * supported API will be the same as for ares-builds.
  82. *
  83. * If any of the two previous are defined, CURLRES_ASYNCH is defined too. If
  84. * libcurl is not built to use an asynchronous resolver, CURLRES_SYNCH is
  85. * defined.
  86. *
  87. * The host*.c sources files are split up like this:
  88. *
  89. * hostip.c - method-independent resolver functions and utility functions
  90. * hostasyn.c - functions for asynchronous name resolves
  91. * hostsyn.c - functions for synchronous name resolves
  92. * hostip4.c - ipv4-specific functions
  93. * hostip6.c - ipv6-specific functions
  94. *
  95. * The two asynchronous name resolver backends are implemented in:
  96. * asyn-ares.c - functions for ares-using name resolves
  97. * asyn-thread.c - functions for threaded name resolves
  98. * The hostip.h is the united header file for all this. It defines the
  99. * CURLRES_* defines based on the config*.h and curl_setup.h defines.
  100. */
  101. /* These two symbols are for the global DNS cache */
  102. static struct curl_hash hostname_cache;
  103. static int host_cache_initialized;
  104. static void freednsentry(void *freethis);
  105. /*
  106. * Curl_global_host_cache_init() initializes and sets up a global DNS cache.
  107. * Global DNS cache is general badness. Do not use. This will be removed in
  108. * a future version. Use the share interface instead!
  109. *
  110. * Returns a struct curl_hash pointer on success, NULL on failure.
  111. */
  112. struct curl_hash *Curl_global_host_cache_init(void)
  113. {
  114. int rc = 0;
  115. if(!host_cache_initialized) {
  116. rc = Curl_hash_init(&hostname_cache, 7, Curl_hash_str,
  117. Curl_str_key_compare, freednsentry);
  118. if(!rc)
  119. host_cache_initialized = 1;
  120. }
  121. return rc?NULL:&hostname_cache;
  122. }
  123. /*
  124. * Destroy and cleanup the global DNS cache
  125. */
  126. void Curl_global_host_cache_dtor(void)
  127. {
  128. if(host_cache_initialized) {
  129. /* first make sure that any custom "CURLOPT_RESOLVE" names are
  130. cleared off */
  131. Curl_hostcache_clean(NULL, &hostname_cache);
  132. /* then free the remaining hash completely */
  133. Curl_hash_clean(&hostname_cache);
  134. host_cache_initialized = 0;
  135. }
  136. }
  137. /*
  138. * Return # of adresses in a Curl_addrinfo struct
  139. */
  140. int Curl_num_addresses(const Curl_addrinfo *addr)
  141. {
  142. int i = 0;
  143. while(addr) {
  144. addr = addr->ai_next;
  145. i++;
  146. }
  147. return i;
  148. }
  149. /*
  150. * Curl_printable_address() returns a printable version of the 1st address
  151. * given in the 'ai' argument. The result will be stored in the buf that is
  152. * bufsize bytes big.
  153. *
  154. * If the conversion fails, it returns NULL.
  155. */
  156. const char *
  157. Curl_printable_address(const Curl_addrinfo *ai, char *buf, size_t bufsize)
  158. {
  159. const struct sockaddr_in *sa4;
  160. const struct in_addr *ipaddr4;
  161. #ifdef ENABLE_IPV6
  162. const struct sockaddr_in6 *sa6;
  163. const struct in6_addr *ipaddr6;
  164. #endif
  165. switch (ai->ai_family) {
  166. case AF_INET:
  167. sa4 = (const void *)ai->ai_addr;
  168. ipaddr4 = &sa4->sin_addr;
  169. return Curl_inet_ntop(ai->ai_family, (const void *)ipaddr4, buf,
  170. bufsize);
  171. #ifdef ENABLE_IPV6
  172. case AF_INET6:
  173. sa6 = (const void *)ai->ai_addr;
  174. ipaddr6 = &sa6->sin6_addr;
  175. return Curl_inet_ntop(ai->ai_family, (const void *)ipaddr6, buf,
  176. bufsize);
  177. #endif
  178. default:
  179. break;
  180. }
  181. return NULL;
  182. }
  183. /*
  184. * Return a hostcache id string for the provided host + port, to be used by
  185. * the DNS caching.
  186. */
  187. static char *
  188. create_hostcache_id(const char *name, int port)
  189. {
  190. /* create and return the new allocated entry */
  191. char *id = aprintf("%s:%d", name, port);
  192. char *ptr = id;
  193. if(ptr) {
  194. /* lower case the name part */
  195. while(*ptr && (*ptr != ':')) {
  196. *ptr = (char)TOLOWER(*ptr);
  197. ptr++;
  198. }
  199. }
  200. return id;
  201. }
  202. struct hostcache_prune_data {
  203. long cache_timeout;
  204. time_t now;
  205. };
  206. /*
  207. * This function is set as a callback to be called for every entry in the DNS
  208. * cache when we want to prune old unused entries.
  209. *
  210. * Returning non-zero means remove the entry, return 0 to keep it in the
  211. * cache.
  212. */
  213. static int
  214. hostcache_timestamp_remove(void *datap, void *hc)
  215. {
  216. struct hostcache_prune_data *data =
  217. (struct hostcache_prune_data *) datap;
  218. struct Curl_dns_entry *c = (struct Curl_dns_entry *) hc;
  219. return !c->inuse && (data->now - c->timestamp >= data->cache_timeout);
  220. }
  221. /*
  222. * Prune the DNS cache. This assumes that a lock has already been taken.
  223. */
  224. static void
  225. hostcache_prune(struct curl_hash *hostcache, long cache_timeout, time_t now)
  226. {
  227. struct hostcache_prune_data user;
  228. user.cache_timeout = cache_timeout;
  229. user.now = now;
  230. Curl_hash_clean_with_criterium(hostcache,
  231. (void *) &user,
  232. hostcache_timestamp_remove);
  233. }
  234. /*
  235. * Library-wide function for pruning the DNS cache. This function takes and
  236. * returns the appropriate locks.
  237. */
  238. void Curl_hostcache_prune(struct SessionHandle *data)
  239. {
  240. time_t now;
  241. if((data->set.dns_cache_timeout == -1) || !data->dns.hostcache)
  242. /* cache forever means never prune, and NULL hostcache means
  243. we can't do it */
  244. return;
  245. if(data->share)
  246. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  247. time(&now);
  248. /* Remove outdated and unused entries from the hostcache */
  249. hostcache_prune(data->dns.hostcache,
  250. data->set.dns_cache_timeout,
  251. now);
  252. if(data->share)
  253. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  254. }
  255. /*
  256. * Check if the entry should be pruned. Assumes a locked cache.
  257. */
  258. static int
  259. remove_entry_if_stale(struct SessionHandle *data, struct Curl_dns_entry *dns)
  260. {
  261. struct hostcache_prune_data user;
  262. if(!dns || (data->set.dns_cache_timeout == -1) || !data->dns.hostcache ||
  263. dns->inuse)
  264. /* cache forever means never prune, and NULL hostcache means we can't do
  265. it, if it still is in use then we leave it */
  266. return 0;
  267. time(&user.now);
  268. user.cache_timeout = data->set.dns_cache_timeout;
  269. if(!hostcache_timestamp_remove(&user,dns) )
  270. return 0;
  271. Curl_hash_clean_with_criterium(data->dns.hostcache,
  272. (void *) &user,
  273. hostcache_timestamp_remove);
  274. return 1;
  275. }
  276. #ifdef HAVE_SIGSETJMP
  277. /* Beware this is a global and unique instance. This is used to store the
  278. return address that we can jump back to from inside a signal handler. This
  279. is not thread-safe stuff. */
  280. sigjmp_buf curl_jmpenv;
  281. #endif
  282. /*
  283. * Curl_cache_addr() stores a 'Curl_addrinfo' struct in the DNS cache.
  284. *
  285. * When calling Curl_resolv() has resulted in a response with a returned
  286. * address, we call this function to store the information in the dns
  287. * cache etc
  288. *
  289. * Returns the Curl_dns_entry entry pointer or NULL if the storage failed.
  290. */
  291. struct Curl_dns_entry *
  292. Curl_cache_addr(struct SessionHandle *data,
  293. Curl_addrinfo *addr,
  294. const char *hostname,
  295. int port)
  296. {
  297. char *entry_id;
  298. size_t entry_len;
  299. struct Curl_dns_entry *dns;
  300. struct Curl_dns_entry *dns2;
  301. /* Create an entry id, based upon the hostname and port */
  302. entry_id = create_hostcache_id(hostname, port);
  303. /* If we can't create the entry id, fail */
  304. if(!entry_id)
  305. return NULL;
  306. entry_len = strlen(entry_id);
  307. /* Create a new cache entry */
  308. dns = calloc(1, sizeof(struct Curl_dns_entry));
  309. if(!dns) {
  310. free(entry_id);
  311. return NULL;
  312. }
  313. dns->inuse = 0; /* init to not used */
  314. dns->addr = addr; /* this is the address(es) */
  315. time(&dns->timestamp);
  316. if(dns->timestamp == 0)
  317. dns->timestamp = 1; /* zero indicates that entry isn't in hash table */
  318. /* Store the resolved data in our DNS cache. */
  319. dns2 = Curl_hash_add(data->dns.hostcache, entry_id, entry_len+1,
  320. (void *)dns);
  321. if(!dns2) {
  322. free(dns);
  323. free(entry_id);
  324. return NULL;
  325. }
  326. dns = dns2;
  327. dns->inuse++; /* mark entry as in-use */
  328. /* free the allocated entry_id */
  329. free(entry_id);
  330. return dns;
  331. }
  332. /*
  333. * Curl_resolv() is the main name resolve function within libcurl. It resolves
  334. * a name and returns a pointer to the entry in the 'entry' argument (if one
  335. * is provided). This function might return immediately if we're using asynch
  336. * resolves. See the return codes.
  337. *
  338. * The cache entry we return will get its 'inuse' counter increased when this
  339. * function is used. You MUST call Curl_resolv_unlock() later (when you're
  340. * done using this struct) to decrease the counter again.
  341. *
  342. * In debug mode, we specifically test for an interface name "LocalHost"
  343. * and resolve "localhost" instead as a means to permit test cases
  344. * to connect to a local test server with any host name.
  345. *
  346. * Return codes:
  347. *
  348. * CURLRESOLV_ERROR (-1) = error, no pointer
  349. * CURLRESOLV_RESOLVED (0) = OK, pointer provided
  350. * CURLRESOLV_PENDING (1) = waiting for response, no pointer
  351. */
  352. int Curl_resolv(struct connectdata *conn,
  353. const char *hostname,
  354. int port,
  355. struct Curl_dns_entry **entry)
  356. {
  357. char *entry_id = NULL;
  358. struct Curl_dns_entry *dns = NULL;
  359. size_t entry_len;
  360. struct SessionHandle *data = conn->data;
  361. CURLcode result;
  362. int rc = CURLRESOLV_ERROR; /* default to failure */
  363. *entry = NULL;
  364. /* Create an entry id, based upon the hostname and port */
  365. entry_id = create_hostcache_id(hostname, port);
  366. /* If we can't create the entry id, fail */
  367. if(!entry_id)
  368. return rc;
  369. entry_len = strlen(entry_id);
  370. if(data->share)
  371. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  372. /* See if its already in our dns cache */
  373. dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len+1);
  374. /* free the allocated entry_id again */
  375. free(entry_id);
  376. infof(data, "Hostname was %sfound in DNS cache\n", dns?"":"NOT ");
  377. /* See whether the returned entry is stale. Done before we release lock */
  378. if(remove_entry_if_stale(data, dns)) {
  379. infof(data, "Hostname in DNS cache was stale, zapped\n");
  380. dns = NULL; /* the memory deallocation is being handled by the hash */
  381. }
  382. if(dns) {
  383. dns->inuse++; /* we use it! */
  384. rc = CURLRESOLV_RESOLVED;
  385. }
  386. if(data->share)
  387. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  388. if(!dns) {
  389. /* The entry was not in the cache. Resolve it to IP address */
  390. Curl_addrinfo *addr;
  391. int respwait;
  392. /* Check what IP specifics the app has requested and if we can provide it.
  393. * If not, bail out. */
  394. if(!Curl_ipvalid(conn))
  395. return CURLRESOLV_ERROR;
  396. /* If Curl_getaddrinfo() returns NULL, 'respwait' might be set to a
  397. non-zero value indicating that we need to wait for the response to the
  398. resolve call */
  399. addr = Curl_getaddrinfo(conn,
  400. #ifdef DEBUGBUILD
  401. (data->set.str[STRING_DEVICE]
  402. && !strcmp(data->set.str[STRING_DEVICE],
  403. "LocalHost"))?"localhost":
  404. #endif
  405. hostname, port, &respwait);
  406. if(!addr) {
  407. if(respwait) {
  408. /* the response to our resolve call will come asynchronously at
  409. a later time, good or bad */
  410. /* First, check that we haven't received the info by now */
  411. result = Curl_resolver_is_resolved(conn, &dns);
  412. if(result) /* error detected */
  413. return CURLRESOLV_ERROR;
  414. if(dns)
  415. rc = CURLRESOLV_RESOLVED; /* pointer provided */
  416. else
  417. rc = CURLRESOLV_PENDING; /* no info yet */
  418. }
  419. }
  420. else {
  421. if(data->share)
  422. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  423. /* we got a response, store it in the cache */
  424. dns = Curl_cache_addr(data, addr, hostname, port);
  425. if(data->share)
  426. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  427. if(!dns)
  428. /* returned failure, bail out nicely */
  429. Curl_freeaddrinfo(addr);
  430. else
  431. rc = CURLRESOLV_RESOLVED;
  432. }
  433. }
  434. *entry = dns;
  435. return rc;
  436. }
  437. #ifdef USE_ALARM_TIMEOUT
  438. /*
  439. * This signal handler jumps back into the main libcurl code and continues
  440. * execution. This effectively causes the remainder of the application to run
  441. * within a signal handler which is nonportable and could lead to problems.
  442. */
  443. static
  444. RETSIGTYPE alarmfunc(int sig)
  445. {
  446. /* this is for "-ansi -Wall -pedantic" to stop complaining! (rabe) */
  447. (void)sig;
  448. siglongjmp(curl_jmpenv, 1);
  449. return;
  450. }
  451. #endif /* USE_ALARM_TIMEOUT */
  452. /*
  453. * Curl_resolv_timeout() is the same as Curl_resolv() but specifies a
  454. * timeout. This function might return immediately if we're using asynch
  455. * resolves. See the return codes.
  456. *
  457. * The cache entry we return will get its 'inuse' counter increased when this
  458. * function is used. You MUST call Curl_resolv_unlock() later (when you're
  459. * done using this struct) to decrease the counter again.
  460. *
  461. * If built with a synchronous resolver and use of signals is not
  462. * disabled by the application, then a nonzero timeout will cause a
  463. * timeout after the specified number of milliseconds. Otherwise, timeout
  464. * is ignored.
  465. *
  466. * Return codes:
  467. *
  468. * CURLRESOLV_TIMEDOUT(-2) = warning, time too short or previous alarm expired
  469. * CURLRESOLV_ERROR (-1) = error, no pointer
  470. * CURLRESOLV_RESOLVED (0) = OK, pointer provided
  471. * CURLRESOLV_PENDING (1) = waiting for response, no pointer
  472. */
  473. int Curl_resolv_timeout(struct connectdata *conn,
  474. const char *hostname,
  475. int port,
  476. struct Curl_dns_entry **entry,
  477. long timeoutms)
  478. {
  479. #ifdef USE_ALARM_TIMEOUT
  480. #ifdef HAVE_SIGACTION
  481. struct sigaction keep_sigact; /* store the old struct here */
  482. volatile bool keep_copysig = FALSE; /* wether old sigact has been saved */
  483. struct sigaction sigact;
  484. #else
  485. #ifdef HAVE_SIGNAL
  486. void (*keep_sigact)(int); /* store the old handler here */
  487. #endif /* HAVE_SIGNAL */
  488. #endif /* HAVE_SIGACTION */
  489. volatile long timeout;
  490. volatile unsigned int prev_alarm = 0;
  491. struct SessionHandle *data = conn->data;
  492. #endif /* USE_ALARM_TIMEOUT */
  493. int rc;
  494. *entry = NULL;
  495. if(timeoutms < 0)
  496. /* got an already expired timeout */
  497. return CURLRESOLV_TIMEDOUT;
  498. #ifdef USE_ALARM_TIMEOUT
  499. if(data->set.no_signal)
  500. /* Ignore the timeout when signals are disabled */
  501. timeout = 0;
  502. else
  503. timeout = timeoutms;
  504. if(!timeout)
  505. /* USE_ALARM_TIMEOUT defined, but no timeout actually requested */
  506. return Curl_resolv(conn, hostname, port, entry);
  507. if(timeout < 1000)
  508. /* The alarm() function only provides integer second resolution, so if
  509. we want to wait less than one second we must bail out already now. */
  510. return CURLRESOLV_TIMEDOUT;
  511. /*************************************************************
  512. * Set signal handler to catch SIGALRM
  513. * Store the old value to be able to set it back later!
  514. *************************************************************/
  515. #ifdef HAVE_SIGACTION
  516. sigaction(SIGALRM, NULL, &sigact);
  517. keep_sigact = sigact;
  518. keep_copysig = TRUE; /* yes, we have a copy */
  519. sigact.sa_handler = alarmfunc;
  520. #ifdef SA_RESTART
  521. /* HPUX doesn't have SA_RESTART but defaults to that behaviour! */
  522. sigact.sa_flags &= ~SA_RESTART;
  523. #endif
  524. /* now set the new struct */
  525. sigaction(SIGALRM, &sigact, NULL);
  526. #else /* HAVE_SIGACTION */
  527. /* no sigaction(), revert to the much lamer signal() */
  528. #ifdef HAVE_SIGNAL
  529. keep_sigact = signal(SIGALRM, alarmfunc);
  530. #endif
  531. #endif /* HAVE_SIGACTION */
  532. /* alarm() makes a signal get sent when the timeout fires off, and that
  533. will abort system calls */
  534. prev_alarm = alarm(curlx_sltoui(timeout/1000L));
  535. /* This allows us to time-out from the name resolver, as the timeout
  536. will generate a signal and we will siglongjmp() from that here.
  537. This technique has problems (see alarmfunc).
  538. This should be the last thing we do before calling Curl_resolv(),
  539. as otherwise we'd have to worry about variables that get modified
  540. before we invoke Curl_resolv() (and thus use "volatile"). */
  541. if(sigsetjmp(curl_jmpenv, 1)) {
  542. /* this is coming from a siglongjmp() after an alarm signal */
  543. failf(data, "name lookup timed out");
  544. rc = CURLRESOLV_ERROR;
  545. goto clean_up;
  546. }
  547. #else
  548. #ifndef CURLRES_ASYNCH
  549. if(timeoutms)
  550. infof(conn->data, "timeout on name lookup is not supported\n");
  551. #else
  552. (void)timeoutms; /* timeoutms not used with an async resolver */
  553. #endif
  554. #endif /* USE_ALARM_TIMEOUT */
  555. /* Perform the actual name resolution. This might be interrupted by an
  556. * alarm if it takes too long.
  557. */
  558. rc = Curl_resolv(conn, hostname, port, entry);
  559. #ifdef USE_ALARM_TIMEOUT
  560. clean_up:
  561. if(!prev_alarm)
  562. /* deactivate a possibly active alarm before uninstalling the handler */
  563. alarm(0);
  564. #ifdef HAVE_SIGACTION
  565. if(keep_copysig) {
  566. /* we got a struct as it looked before, now put that one back nice
  567. and clean */
  568. sigaction(SIGALRM, &keep_sigact, NULL); /* put it back */
  569. }
  570. #else
  571. #ifdef HAVE_SIGNAL
  572. /* restore the previous SIGALRM handler */
  573. signal(SIGALRM, keep_sigact);
  574. #endif
  575. #endif /* HAVE_SIGACTION */
  576. /* switch back the alarm() to either zero or to what it was before minus
  577. the time we spent until now! */
  578. if(prev_alarm) {
  579. /* there was an alarm() set before us, now put it back */
  580. unsigned long elapsed_ms = Curl_tvdiff(Curl_tvnow(), conn->created);
  581. /* the alarm period is counted in even number of seconds */
  582. unsigned long alarm_set = prev_alarm - elapsed_ms/1000;
  583. if(!alarm_set ||
  584. ((alarm_set >= 0x80000000) && (prev_alarm < 0x80000000)) ) {
  585. /* if the alarm time-left reached zero or turned "negative" (counted
  586. with unsigned values), we should fire off a SIGALRM here, but we
  587. won't, and zero would be to switch it off so we never set it to
  588. less than 1! */
  589. alarm(1);
  590. rc = CURLRESOLV_TIMEDOUT;
  591. failf(data, "Previous alarm fired off!");
  592. }
  593. else
  594. alarm((unsigned int)alarm_set);
  595. }
  596. #endif /* USE_ALARM_TIMEOUT */
  597. return rc;
  598. }
  599. /*
  600. * Curl_resolv_unlock() unlocks the given cached DNS entry. When this has been
  601. * made, the struct may be destroyed due to pruning. It is important that only
  602. * one unlock is made for each Curl_resolv() call.
  603. *
  604. * May be called with 'data' == NULL for global cache.
  605. */
  606. void Curl_resolv_unlock(struct SessionHandle *data, struct Curl_dns_entry *dns)
  607. {
  608. DEBUGASSERT(dns && (dns->inuse>0));
  609. if(data && data->share)
  610. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  611. dns->inuse--;
  612. /* only free if nobody is using AND it is not in hostcache (timestamp ==
  613. 0) */
  614. if(dns->inuse == 0 && dns->timestamp == 0) {
  615. Curl_freeaddrinfo(dns->addr);
  616. free(dns);
  617. }
  618. if(data && data->share)
  619. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  620. }
  621. /*
  622. * File-internal: free a cache dns entry.
  623. */
  624. static void freednsentry(void *freethis)
  625. {
  626. struct Curl_dns_entry *p = (struct Curl_dns_entry *) freethis;
  627. /* mark the entry as not in hostcache */
  628. p->timestamp = 0;
  629. if(p->inuse == 0) {
  630. Curl_freeaddrinfo(p->addr);
  631. free(p);
  632. }
  633. }
  634. /*
  635. * Curl_mk_dnscache() creates a new DNS cache and returns the handle for it.
  636. */
  637. struct curl_hash *Curl_mk_dnscache(void)
  638. {
  639. return Curl_hash_alloc(7, Curl_hash_str, Curl_str_key_compare, freednsentry);
  640. }
  641. static int hostcache_inuse(void *data, void *hc)
  642. {
  643. struct Curl_dns_entry *c = (struct Curl_dns_entry *) hc;
  644. if(c->inuse == 1)
  645. Curl_resolv_unlock(data, c);
  646. return 1; /* free all entries */
  647. }
  648. /*
  649. * Curl_hostcache_clean()
  650. *
  651. * This _can_ be called with 'data' == NULL but then of course no locking
  652. * can be done!
  653. */
  654. void Curl_hostcache_clean(struct SessionHandle *data,
  655. struct curl_hash *hash)
  656. {
  657. /* Entries added to the hostcache with the CURLOPT_RESOLVE function are
  658. * still present in the cache with the inuse counter set to 1. Detect them
  659. * and cleanup!
  660. */
  661. Curl_hash_clean_with_criterium(hash, data, hostcache_inuse);
  662. }
  663. CURLcode Curl_loadhostpairs(struct SessionHandle *data)
  664. {
  665. struct curl_slist *hostp;
  666. char hostname[256];
  667. char address[256];
  668. int port;
  669. for(hostp = data->change.resolve; hostp; hostp = hostp->next ) {
  670. if(!hostp->data)
  671. continue;
  672. if(hostp->data[0] == '-') {
  673. /* TODO: mark an entry for removal */
  674. }
  675. else if(3 == sscanf(hostp->data, "%255[^:]:%d:%255s", hostname, &port,
  676. address)) {
  677. struct Curl_dns_entry *dns;
  678. Curl_addrinfo *addr;
  679. char *entry_id;
  680. size_t entry_len;
  681. addr = Curl_str2addr(address, port);
  682. if(!addr) {
  683. infof(data, "Resolve %s found illegal!\n", hostp->data);
  684. continue;
  685. }
  686. /* Create an entry id, based upon the hostname and port */
  687. entry_id = create_hostcache_id(hostname, port);
  688. /* If we can't create the entry id, fail */
  689. if(!entry_id) {
  690. Curl_freeaddrinfo(addr);
  691. return CURLE_OUT_OF_MEMORY;
  692. }
  693. entry_len = strlen(entry_id);
  694. if(data->share)
  695. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  696. /* See if its already in our dns cache */
  697. dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len+1);
  698. /* free the allocated entry_id again */
  699. free(entry_id);
  700. if(!dns)
  701. /* if not in the cache already, put this host in the cache */
  702. dns = Curl_cache_addr(data, addr, hostname, port);
  703. else
  704. /* this is a duplicate, free it again */
  705. Curl_freeaddrinfo(addr);
  706. if(data->share)
  707. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  708. if(!dns) {
  709. Curl_freeaddrinfo(addr);
  710. return CURLE_OUT_OF_MEMORY;
  711. }
  712. infof(data, "Added %s:%d:%s to DNS cache\n",
  713. hostname, port, address);
  714. }
  715. }
  716. data->change.resolve = NULL; /* dealt with now */
  717. return CURLE_OK;
  718. }