hostip.c 42 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 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 https://curl.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. * SPDX-License-Identifier: curl
  22. *
  23. ***************************************************************************/
  24. #include "curl_setup.h"
  25. #ifdef HAVE_NETINET_IN_H
  26. #include <netinet/in.h>
  27. #endif
  28. #ifdef HAVE_NETINET_IN6_H
  29. #include <netinet/in6.h>
  30. #endif
  31. #ifdef HAVE_NETDB_H
  32. #include <netdb.h>
  33. #endif
  34. #ifdef HAVE_ARPA_INET_H
  35. #include <arpa/inet.h>
  36. #endif
  37. #ifdef __VMS
  38. #include <in.h>
  39. #include <inet.h>
  40. #endif
  41. #include <setjmp.h>
  42. #include <signal.h>
  43. #include "urldata.h"
  44. #include "sendf.h"
  45. #include "hostip.h"
  46. #include "hash.h"
  47. #include "rand.h"
  48. #include "share.h"
  49. #include "url.h"
  50. #include "inet_ntop.h"
  51. #include "inet_pton.h"
  52. #include "multiif.h"
  53. #include "doh.h"
  54. #include "warnless.h"
  55. #include "strcase.h"
  56. #include "easy_lock.h"
  57. /* The last 3 #include files should be in this order */
  58. #include "curl_printf.h"
  59. #include "curl_memory.h"
  60. #include "memdebug.h"
  61. #if defined(CURLRES_SYNCH) && \
  62. defined(HAVE_ALARM) && \
  63. defined(SIGALRM) && \
  64. defined(HAVE_SIGSETJMP) && \
  65. defined(GLOBAL_INIT_IS_THREADSAFE)
  66. /* alarm-based timeouts can only be used with all the dependencies satisfied */
  67. #define USE_ALARM_TIMEOUT
  68. #endif
  69. #define MAX_HOSTCACHE_LEN (255 + 7) /* max FQDN + colon + port number + zero */
  70. #define MAX_DNS_CACHE_SIZE 29999
  71. /*
  72. * hostip.c explained
  73. * ==================
  74. *
  75. * The main COMPILE-TIME DEFINES to keep in mind when reading the host*.c
  76. * source file are these:
  77. *
  78. * CURLRES_IPV6 - this host has getaddrinfo() and family, and thus we use
  79. * that. The host may not be able to resolve IPv6, but we don't really have to
  80. * take that into account. Hosts that aren't IPv6-enabled have CURLRES_IPV4
  81. * defined.
  82. *
  83. * CURLRES_ARES - is defined if libcurl is built to use c-ares for
  84. * asynchronous name resolves. This can be Windows or *nix.
  85. *
  86. * CURLRES_THREADED - is defined if libcurl is built to run under (native)
  87. * Windows, and then the name resolve will be done in a new thread, and the
  88. * supported API will be the same as for ares-builds.
  89. *
  90. * If any of the two previous are defined, CURLRES_ASYNCH is defined too. If
  91. * libcurl is not built to use an asynchronous resolver, CURLRES_SYNCH is
  92. * defined.
  93. *
  94. * The host*.c sources files are split up like this:
  95. *
  96. * hostip.c - method-independent resolver functions and utility functions
  97. * hostasyn.c - functions for asynchronous name resolves
  98. * hostsyn.c - functions for synchronous name resolves
  99. * hostip4.c - IPv4 specific functions
  100. * hostip6.c - IPv6 specific functions
  101. *
  102. * The two asynchronous name resolver backends are implemented in:
  103. * asyn-ares.c - functions for ares-using name resolves
  104. * asyn-thread.c - functions for threaded name resolves
  105. * The hostip.h is the united header file for all this. It defines the
  106. * CURLRES_* defines based on the config*.h and curl_setup.h defines.
  107. */
  108. static void freednsentry(void *freethis);
  109. #ifndef CURL_DISABLE_VERBOSE_STRINGS
  110. static void show_resolve_info(struct Curl_easy *data,
  111. struct Curl_dns_entry *dns);
  112. #else
  113. #define show_resolve_info(x,y) Curl_nop_stmt
  114. #endif
  115. /*
  116. * Curl_printable_address() stores a printable version of the 1st address
  117. * given in the 'ai' argument. The result will be stored in the buf that is
  118. * bufsize bytes big.
  119. *
  120. * If the conversion fails, the target buffer is empty.
  121. */
  122. void Curl_printable_address(const struct Curl_addrinfo *ai, char *buf,
  123. size_t bufsize)
  124. {
  125. DEBUGASSERT(bufsize);
  126. buf[0] = 0;
  127. switch(ai->ai_family) {
  128. case AF_INET: {
  129. const struct sockaddr_in *sa4 = (const void *)ai->ai_addr;
  130. const struct in_addr *ipaddr4 = &sa4->sin_addr;
  131. (void)Curl_inet_ntop(ai->ai_family, (const void *)ipaddr4, buf, bufsize);
  132. break;
  133. }
  134. #ifdef USE_IPV6
  135. case AF_INET6: {
  136. const struct sockaddr_in6 *sa6 = (const void *)ai->ai_addr;
  137. const struct in6_addr *ipaddr6 = &sa6->sin6_addr;
  138. (void)Curl_inet_ntop(ai->ai_family, (const void *)ipaddr6, buf, bufsize);
  139. break;
  140. }
  141. #endif
  142. default:
  143. break;
  144. }
  145. }
  146. /*
  147. * Create a hostcache id string for the provided host + port, to be used by
  148. * the DNS caching. Without alloc. Return length of the id string.
  149. */
  150. static size_t
  151. create_hostcache_id(const char *name,
  152. size_t nlen, /* 0 or actual name length */
  153. int port, char *ptr, size_t buflen)
  154. {
  155. size_t len = nlen ? nlen : strlen(name);
  156. size_t olen = 0;
  157. DEBUGASSERT(buflen >= MAX_HOSTCACHE_LEN);
  158. if(len > (buflen - 7))
  159. len = buflen - 7;
  160. /* store and lower case the name */
  161. while(len--) {
  162. *ptr++ = Curl_raw_tolower(*name++);
  163. olen++;
  164. }
  165. olen += msnprintf(ptr, 7, ":%u", port);
  166. return olen;
  167. }
  168. struct hostcache_prune_data {
  169. time_t now;
  170. time_t oldest; /* oldest time in cache not pruned. */
  171. int cache_timeout;
  172. };
  173. /*
  174. * This function is set as a callback to be called for every entry in the DNS
  175. * cache when we want to prune old unused entries.
  176. *
  177. * Returning non-zero means remove the entry, return 0 to keep it in the
  178. * cache.
  179. */
  180. static int
  181. hostcache_timestamp_remove(void *datap, void *hc)
  182. {
  183. struct hostcache_prune_data *prune =
  184. (struct hostcache_prune_data *) datap;
  185. struct Curl_dns_entry *c = (struct Curl_dns_entry *) hc;
  186. if(c->timestamp) {
  187. /* age in seconds */
  188. time_t age = prune->now - c->timestamp;
  189. if(age >= prune->cache_timeout)
  190. return TRUE;
  191. if(age > prune->oldest)
  192. prune->oldest = age;
  193. }
  194. return FALSE;
  195. }
  196. /*
  197. * Prune the DNS cache. This assumes that a lock has already been taken.
  198. * Returns the 'age' of the oldest still kept entry.
  199. */
  200. static time_t
  201. hostcache_prune(struct Curl_hash *hostcache, int cache_timeout,
  202. time_t now)
  203. {
  204. struct hostcache_prune_data user;
  205. user.cache_timeout = cache_timeout;
  206. user.now = now;
  207. user.oldest = 0;
  208. Curl_hash_clean_with_criterium(hostcache,
  209. (void *) &user,
  210. hostcache_timestamp_remove);
  211. return user.oldest;
  212. }
  213. /*
  214. * Library-wide function for pruning the DNS cache. This function takes and
  215. * returns the appropriate locks.
  216. */
  217. void Curl_hostcache_prune(struct Curl_easy *data)
  218. {
  219. time_t now;
  220. /* the timeout may be set -1 (forever) */
  221. int timeout = data->set.dns_cache_timeout;
  222. if(!data->dns.hostcache)
  223. /* NULL hostcache means we can't do it */
  224. return;
  225. if(data->share)
  226. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  227. time(&now);
  228. do {
  229. /* Remove outdated and unused entries from the hostcache */
  230. time_t oldest = hostcache_prune(data->dns.hostcache, timeout, now);
  231. if(oldest < INT_MAX)
  232. timeout = (int)oldest; /* we know it fits */
  233. else
  234. timeout = INT_MAX - 1;
  235. /* if the cache size is still too big, use the oldest age as new
  236. prune limit */
  237. } while(timeout && (data->dns.hostcache->size > MAX_DNS_CACHE_SIZE));
  238. if(data->share)
  239. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  240. }
  241. #ifdef USE_ALARM_TIMEOUT
  242. /* Beware this is a global and unique instance. This is used to store the
  243. return address that we can jump back to from inside a signal handler. This
  244. is not thread-safe stuff. */
  245. static sigjmp_buf curl_jmpenv;
  246. static curl_simple_lock curl_jmpenv_lock;
  247. #endif
  248. /* lookup address, returns entry if found and not stale */
  249. static struct Curl_dns_entry *fetch_addr(struct Curl_easy *data,
  250. const char *hostname,
  251. int port)
  252. {
  253. struct Curl_dns_entry *dns = NULL;
  254. char entry_id[MAX_HOSTCACHE_LEN];
  255. /* Create an entry id, based upon the hostname and port */
  256. size_t entry_len = create_hostcache_id(hostname, 0, port,
  257. entry_id, sizeof(entry_id));
  258. /* See if it's already in our dns cache */
  259. dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1);
  260. /* No entry found in cache, check if we might have a wildcard entry */
  261. if(!dns && data->state.wildcard_resolve) {
  262. entry_len = create_hostcache_id("*", 1, port, entry_id, sizeof(entry_id));
  263. /* See if it's already in our dns cache */
  264. dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1);
  265. }
  266. if(dns && (data->set.dns_cache_timeout != -1)) {
  267. /* See whether the returned entry is stale. Done before we release lock */
  268. struct hostcache_prune_data user;
  269. time(&user.now);
  270. user.cache_timeout = data->set.dns_cache_timeout;
  271. user.oldest = 0;
  272. if(hostcache_timestamp_remove(&user, dns)) {
  273. infof(data, "Hostname in DNS cache was stale, zapped");
  274. dns = NULL; /* the memory deallocation is being handled by the hash */
  275. Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1);
  276. }
  277. }
  278. /* See if the returned entry matches the required resolve mode */
  279. if(dns && data->conn->ip_version != CURL_IPRESOLVE_WHATEVER) {
  280. int pf = PF_INET;
  281. bool found = false;
  282. struct Curl_addrinfo *addr = dns->addr;
  283. #ifdef PF_INET6
  284. if(data->conn->ip_version == CURL_IPRESOLVE_V6)
  285. pf = PF_INET6;
  286. #endif
  287. while(addr) {
  288. if(addr->ai_family == pf) {
  289. found = true;
  290. break;
  291. }
  292. addr = addr->ai_next;
  293. }
  294. if(!found) {
  295. infof(data, "Hostname in DNS cache doesn't have needed family, zapped");
  296. dns = NULL; /* the memory deallocation is being handled by the hash */
  297. Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1);
  298. }
  299. }
  300. return dns;
  301. }
  302. /*
  303. * Curl_fetch_addr() fetches a 'Curl_dns_entry' already in the DNS cache.
  304. *
  305. * Curl_resolv() checks initially and multi_runsingle() checks each time
  306. * it discovers the handle in the state WAITRESOLVE whether the hostname
  307. * has already been resolved and the address has already been stored in
  308. * the DNS cache. This short circuits waiting for a lot of pending
  309. * lookups for the same hostname requested by different handles.
  310. *
  311. * Returns the Curl_dns_entry entry pointer or NULL if not in the cache.
  312. *
  313. * The returned data *MUST* be "unlocked" with Curl_resolv_unlock() after
  314. * use, or we'll leak memory!
  315. */
  316. struct Curl_dns_entry *
  317. Curl_fetch_addr(struct Curl_easy *data,
  318. const char *hostname,
  319. int port)
  320. {
  321. struct Curl_dns_entry *dns = NULL;
  322. if(data->share)
  323. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  324. dns = fetch_addr(data, hostname, port);
  325. if(dns)
  326. dns->inuse++; /* we use it! */
  327. if(data->share)
  328. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  329. return dns;
  330. }
  331. #ifndef CURL_DISABLE_SHUFFLE_DNS
  332. /*
  333. * Return # of addresses in a Curl_addrinfo struct
  334. */
  335. static int num_addresses(const struct Curl_addrinfo *addr)
  336. {
  337. int i = 0;
  338. while(addr) {
  339. addr = addr->ai_next;
  340. i++;
  341. }
  342. return i;
  343. }
  344. UNITTEST CURLcode Curl_shuffle_addr(struct Curl_easy *data,
  345. struct Curl_addrinfo **addr);
  346. /*
  347. * Curl_shuffle_addr() shuffles the order of addresses in a 'Curl_addrinfo'
  348. * struct by re-linking its linked list.
  349. *
  350. * The addr argument should be the address of a pointer to the head node of a
  351. * `Curl_addrinfo` list and it will be modified to point to the new head after
  352. * shuffling.
  353. *
  354. * Not declared static only to make it easy to use in a unit test!
  355. *
  356. * @unittest: 1608
  357. */
  358. UNITTEST CURLcode Curl_shuffle_addr(struct Curl_easy *data,
  359. struct Curl_addrinfo **addr)
  360. {
  361. CURLcode result = CURLE_OK;
  362. const int num_addrs = num_addresses(*addr);
  363. if(num_addrs > 1) {
  364. struct Curl_addrinfo **nodes;
  365. infof(data, "Shuffling %i addresses", num_addrs);
  366. nodes = malloc(num_addrs*sizeof(*nodes));
  367. if(nodes) {
  368. int i;
  369. unsigned int *rnd;
  370. const size_t rnd_size = num_addrs * sizeof(*rnd);
  371. /* build a plain array of Curl_addrinfo pointers */
  372. nodes[0] = *addr;
  373. for(i = 1; i < num_addrs; i++) {
  374. nodes[i] = nodes[i-1]->ai_next;
  375. }
  376. rnd = malloc(rnd_size);
  377. if(rnd) {
  378. /* Fisher-Yates shuffle */
  379. if(Curl_rand(data, (unsigned char *)rnd, rnd_size) == CURLE_OK) {
  380. struct Curl_addrinfo *swap_tmp;
  381. for(i = num_addrs - 1; i > 0; i--) {
  382. swap_tmp = nodes[rnd[i] % (i + 1)];
  383. nodes[rnd[i] % (i + 1)] = nodes[i];
  384. nodes[i] = swap_tmp;
  385. }
  386. /* relink list in the new order */
  387. for(i = 1; i < num_addrs; i++) {
  388. nodes[i-1]->ai_next = nodes[i];
  389. }
  390. nodes[num_addrs-1]->ai_next = NULL;
  391. *addr = nodes[0];
  392. }
  393. free(rnd);
  394. }
  395. else
  396. result = CURLE_OUT_OF_MEMORY;
  397. free(nodes);
  398. }
  399. else
  400. result = CURLE_OUT_OF_MEMORY;
  401. }
  402. return result;
  403. }
  404. #endif
  405. /*
  406. * Curl_cache_addr() stores a 'Curl_addrinfo' struct in the DNS cache.
  407. *
  408. * When calling Curl_resolv() has resulted in a response with a returned
  409. * address, we call this function to store the information in the dns
  410. * cache etc
  411. *
  412. * Returns the Curl_dns_entry entry pointer or NULL if the storage failed.
  413. */
  414. struct Curl_dns_entry *
  415. Curl_cache_addr(struct Curl_easy *data,
  416. struct Curl_addrinfo *addr,
  417. const char *hostname,
  418. size_t hostlen, /* length or zero */
  419. int port)
  420. {
  421. char entry_id[MAX_HOSTCACHE_LEN];
  422. size_t entry_len;
  423. struct Curl_dns_entry *dns;
  424. struct Curl_dns_entry *dns2;
  425. #ifndef CURL_DISABLE_SHUFFLE_DNS
  426. /* shuffle addresses if requested */
  427. if(data->set.dns_shuffle_addresses) {
  428. CURLcode result = Curl_shuffle_addr(data, &addr);
  429. if(result)
  430. return NULL;
  431. }
  432. #endif
  433. if(!hostlen)
  434. hostlen = strlen(hostname);
  435. /* Create a new cache entry */
  436. dns = calloc(1, sizeof(struct Curl_dns_entry) + hostlen);
  437. if(!dns) {
  438. return NULL;
  439. }
  440. /* Create an entry id, based upon the hostname and port */
  441. entry_len = create_hostcache_id(hostname, hostlen, port,
  442. entry_id, sizeof(entry_id));
  443. dns->inuse = 1; /* the cache has the first reference */
  444. dns->addr = addr; /* this is the address(es) */
  445. time(&dns->timestamp);
  446. if(dns->timestamp == 0)
  447. dns->timestamp = 1; /* zero indicates permanent CURLOPT_RESOLVE entry */
  448. dns->hostport = port;
  449. if(hostlen)
  450. memcpy(dns->hostname, hostname, hostlen);
  451. /* Store the resolved data in our DNS cache. */
  452. dns2 = Curl_hash_add(data->dns.hostcache, entry_id, entry_len + 1,
  453. (void *)dns);
  454. if(!dns2) {
  455. free(dns);
  456. return NULL;
  457. }
  458. dns = dns2;
  459. dns->inuse++; /* mark entry as in-use */
  460. return dns;
  461. }
  462. #ifdef USE_IPV6
  463. /* return a static IPv6 ::1 for the name */
  464. static struct Curl_addrinfo *get_localhost6(int port, const char *name)
  465. {
  466. struct Curl_addrinfo *ca;
  467. const size_t ss_size = sizeof(struct sockaddr_in6);
  468. const size_t hostlen = strlen(name);
  469. struct sockaddr_in6 sa6;
  470. unsigned char ipv6[16];
  471. unsigned short port16 = (unsigned short)(port & 0xffff);
  472. ca = calloc(1, sizeof(struct Curl_addrinfo) + ss_size + hostlen + 1);
  473. if(!ca)
  474. return NULL;
  475. sa6.sin6_family = AF_INET6;
  476. sa6.sin6_port = htons(port16);
  477. sa6.sin6_flowinfo = 0;
  478. sa6.sin6_scope_id = 0;
  479. if(Curl_inet_pton(AF_INET6, "::1", ipv6) < 1)
  480. return NULL;
  481. memcpy(&sa6.sin6_addr, ipv6, sizeof(ipv6));
  482. ca->ai_flags = 0;
  483. ca->ai_family = AF_INET6;
  484. ca->ai_socktype = SOCK_STREAM;
  485. ca->ai_protocol = IPPROTO_TCP;
  486. ca->ai_addrlen = (curl_socklen_t)ss_size;
  487. ca->ai_next = NULL;
  488. ca->ai_addr = (void *)((char *)ca + sizeof(struct Curl_addrinfo));
  489. memcpy(ca->ai_addr, &sa6, ss_size);
  490. ca->ai_canonname = (char *)ca->ai_addr + ss_size;
  491. strcpy(ca->ai_canonname, name);
  492. return ca;
  493. }
  494. #else
  495. #define get_localhost6(x,y) NULL
  496. #endif
  497. /* return a static IPv4 127.0.0.1 for the given name */
  498. static struct Curl_addrinfo *get_localhost(int port, const char *name)
  499. {
  500. struct Curl_addrinfo *ca;
  501. struct Curl_addrinfo *ca6;
  502. const size_t ss_size = sizeof(struct sockaddr_in);
  503. const size_t hostlen = strlen(name);
  504. struct sockaddr_in sa;
  505. unsigned int ipv4;
  506. unsigned short port16 = (unsigned short)(port & 0xffff);
  507. /* memset to clear the sa.sin_zero field */
  508. memset(&sa, 0, sizeof(sa));
  509. sa.sin_family = AF_INET;
  510. sa.sin_port = htons(port16);
  511. if(Curl_inet_pton(AF_INET, "127.0.0.1", (char *)&ipv4) < 1)
  512. return NULL;
  513. memcpy(&sa.sin_addr, &ipv4, sizeof(ipv4));
  514. ca = calloc(1, sizeof(struct Curl_addrinfo) + ss_size + hostlen + 1);
  515. if(!ca)
  516. return NULL;
  517. ca->ai_flags = 0;
  518. ca->ai_family = AF_INET;
  519. ca->ai_socktype = SOCK_STREAM;
  520. ca->ai_protocol = IPPROTO_TCP;
  521. ca->ai_addrlen = (curl_socklen_t)ss_size;
  522. ca->ai_addr = (void *)((char *)ca + sizeof(struct Curl_addrinfo));
  523. memcpy(ca->ai_addr, &sa, ss_size);
  524. ca->ai_canonname = (char *)ca->ai_addr + ss_size;
  525. strcpy(ca->ai_canonname, name);
  526. ca6 = get_localhost6(port, name);
  527. if(!ca6)
  528. return ca;
  529. ca6->ai_next = ca;
  530. return ca6;
  531. }
  532. #ifdef USE_IPV6
  533. /*
  534. * Curl_ipv6works() returns TRUE if IPv6 seems to work.
  535. */
  536. bool Curl_ipv6works(struct Curl_easy *data)
  537. {
  538. if(data) {
  539. /* the nature of most system is that IPv6 status doesn't come and go
  540. during a program's lifetime so we only probe the first time and then we
  541. have the info kept for fast reuse */
  542. DEBUGASSERT(data);
  543. DEBUGASSERT(data->multi);
  544. if(data->multi->ipv6_up == IPV6_UNKNOWN) {
  545. bool works = Curl_ipv6works(NULL);
  546. data->multi->ipv6_up = works ? IPV6_WORKS : IPV6_DEAD;
  547. }
  548. return data->multi->ipv6_up == IPV6_WORKS;
  549. }
  550. else {
  551. int ipv6_works = -1;
  552. /* probe to see if we have a working IPv6 stack */
  553. curl_socket_t s = socket(PF_INET6, SOCK_DGRAM, 0);
  554. if(s == CURL_SOCKET_BAD)
  555. /* an IPv6 address was requested but we can't get/use one */
  556. ipv6_works = 0;
  557. else {
  558. ipv6_works = 1;
  559. sclose(s);
  560. }
  561. return (ipv6_works>0)?TRUE:FALSE;
  562. }
  563. }
  564. #endif /* USE_IPV6 */
  565. /*
  566. * Curl_host_is_ipnum() returns TRUE if the given string is a numerical IPv4
  567. * (or IPv6 if supported) address.
  568. */
  569. bool Curl_host_is_ipnum(const char *hostname)
  570. {
  571. struct in_addr in;
  572. #ifdef USE_IPV6
  573. struct in6_addr in6;
  574. #endif
  575. if(Curl_inet_pton(AF_INET, hostname, &in) > 0
  576. #ifdef USE_IPV6
  577. || Curl_inet_pton(AF_INET6, hostname, &in6) > 0
  578. #endif
  579. )
  580. return TRUE;
  581. return FALSE;
  582. }
  583. /* return TRUE if 'part' is a case insensitive tail of 'full' */
  584. static bool tailmatch(const char *full, const char *part)
  585. {
  586. size_t plen = strlen(part);
  587. size_t flen = strlen(full);
  588. if(plen > flen)
  589. return FALSE;
  590. return strncasecompare(part, &full[flen - plen], plen);
  591. }
  592. /*
  593. * Curl_resolv() is the main name resolve function within libcurl. It resolves
  594. * a name and returns a pointer to the entry in the 'entry' argument (if one
  595. * is provided). This function might return immediately if we're using asynch
  596. * resolves. See the return codes.
  597. *
  598. * The cache entry we return will get its 'inuse' counter increased when this
  599. * function is used. You MUST call Curl_resolv_unlock() later (when you're
  600. * done using this struct) to decrease the counter again.
  601. *
  602. * Return codes:
  603. *
  604. * CURLRESOLV_ERROR (-1) = error, no pointer
  605. * CURLRESOLV_RESOLVED (0) = OK, pointer provided
  606. * CURLRESOLV_PENDING (1) = waiting for response, no pointer
  607. */
  608. enum resolve_t Curl_resolv(struct Curl_easy *data,
  609. const char *hostname,
  610. int port,
  611. bool allowDOH,
  612. struct Curl_dns_entry **entry)
  613. {
  614. struct Curl_dns_entry *dns = NULL;
  615. CURLcode result;
  616. enum resolve_t rc = CURLRESOLV_ERROR; /* default to failure */
  617. struct connectdata *conn = data->conn;
  618. /* We should intentionally error and not resolve .onion TLDs */
  619. size_t hostname_len = strlen(hostname);
  620. if(hostname_len >= 7 &&
  621. (curl_strequal(&hostname[hostname_len - 6], ".onion") ||
  622. curl_strequal(&hostname[hostname_len - 7], ".onion."))) {
  623. failf(data, "Not resolving .onion address (RFC 7686)");
  624. return CURLRESOLV_ERROR;
  625. }
  626. *entry = NULL;
  627. #ifndef CURL_DISABLE_DOH
  628. conn->bits.doh = FALSE; /* default is not */
  629. #else
  630. (void)allowDOH;
  631. #endif
  632. if(data->share)
  633. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  634. dns = fetch_addr(data, hostname, port);
  635. if(dns) {
  636. infof(data, "Hostname %s was found in DNS cache", hostname);
  637. dns->inuse++; /* we use it! */
  638. rc = CURLRESOLV_RESOLVED;
  639. }
  640. if(data->share)
  641. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  642. if(!dns) {
  643. /* The entry was not in the cache. Resolve it to IP address */
  644. struct Curl_addrinfo *addr = NULL;
  645. int respwait = 0;
  646. #if !defined(CURL_DISABLE_DOH) || !defined(USE_RESOLVE_ON_IPS)
  647. struct in_addr in;
  648. #endif
  649. #ifndef CURL_DISABLE_DOH
  650. #ifndef USE_RESOLVE_ON_IPS
  651. const
  652. #endif
  653. bool ipnum = FALSE;
  654. #endif
  655. /* notify the resolver start callback */
  656. if(data->set.resolver_start) {
  657. int st;
  658. Curl_set_in_callback(data, true);
  659. st = data->set.resolver_start(
  660. #ifdef USE_CURL_ASYNC
  661. data->state.async.resolver,
  662. #else
  663. NULL,
  664. #endif
  665. NULL,
  666. data->set.resolver_start_client);
  667. Curl_set_in_callback(data, false);
  668. if(st)
  669. return CURLRESOLV_ERROR;
  670. }
  671. #ifndef USE_RESOLVE_ON_IPS
  672. /* First check if this is an IPv4 address string */
  673. if(Curl_inet_pton(AF_INET, hostname, &in) > 0) {
  674. /* This is a dotted IP address 123.123.123.123-style */
  675. addr = Curl_ip2addr(AF_INET, &in, hostname, port);
  676. if(!addr)
  677. return CURLRESOLV_ERROR;
  678. }
  679. #ifdef USE_IPV6
  680. else {
  681. struct in6_addr in6;
  682. /* check if this is an IPv6 address string */
  683. if(Curl_inet_pton(AF_INET6, hostname, &in6) > 0) {
  684. /* This is an IPv6 address literal */
  685. addr = Curl_ip2addr(AF_INET6, &in6, hostname, port);
  686. if(!addr)
  687. return CURLRESOLV_ERROR;
  688. }
  689. }
  690. #endif /* USE_IPV6 */
  691. #else /* if USE_RESOLVE_ON_IPS */
  692. #ifndef CURL_DISABLE_DOH
  693. /* First check if this is an IPv4 address string */
  694. if(Curl_inet_pton(AF_INET, hostname, &in) > 0)
  695. /* This is a dotted IP address 123.123.123.123-style */
  696. ipnum = TRUE;
  697. #ifdef USE_IPV6
  698. else {
  699. struct in6_addr in6;
  700. /* check if this is an IPv6 address string */
  701. if(Curl_inet_pton(AF_INET6, hostname, &in6) > 0)
  702. /* This is an IPv6 address literal */
  703. ipnum = TRUE;
  704. }
  705. #endif /* USE_IPV6 */
  706. #endif /* CURL_DISABLE_DOH */
  707. #endif /* !USE_RESOLVE_ON_IPS */
  708. if(!addr) {
  709. if(conn->ip_version == CURL_IPRESOLVE_V6 && !Curl_ipv6works(data))
  710. return CURLRESOLV_ERROR;
  711. if(strcasecompare(hostname, "localhost") ||
  712. tailmatch(hostname, ".localhost"))
  713. addr = get_localhost(port, hostname);
  714. #ifndef CURL_DISABLE_DOH
  715. else if(allowDOH && data->set.doh && !ipnum)
  716. addr = Curl_doh(data, hostname, port, &respwait);
  717. #endif
  718. else {
  719. /* Check what IP specifics the app has requested and if we can provide
  720. * it. If not, bail out. */
  721. if(!Curl_ipvalid(data, conn))
  722. return CURLRESOLV_ERROR;
  723. /* If Curl_getaddrinfo() returns NULL, 'respwait' might be set to a
  724. non-zero value indicating that we need to wait for the response to
  725. the resolve call */
  726. addr = Curl_getaddrinfo(data, hostname, port, &respwait);
  727. }
  728. }
  729. if(!addr) {
  730. if(respwait) {
  731. /* the response to our resolve call will come asynchronously at
  732. a later time, good or bad */
  733. /* First, check that we haven't received the info by now */
  734. result = Curl_resolv_check(data, &dns);
  735. if(result) /* error detected */
  736. return CURLRESOLV_ERROR;
  737. if(dns)
  738. rc = CURLRESOLV_RESOLVED; /* pointer provided */
  739. else
  740. rc = CURLRESOLV_PENDING; /* no info yet */
  741. }
  742. }
  743. else {
  744. if(data->share)
  745. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  746. /* we got a response, store it in the cache */
  747. dns = Curl_cache_addr(data, addr, hostname, 0, port);
  748. if(data->share)
  749. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  750. if(!dns)
  751. /* returned failure, bail out nicely */
  752. Curl_freeaddrinfo(addr);
  753. else {
  754. rc = CURLRESOLV_RESOLVED;
  755. show_resolve_info(data, dns);
  756. }
  757. }
  758. }
  759. *entry = dns;
  760. return rc;
  761. }
  762. #ifdef USE_ALARM_TIMEOUT
  763. /*
  764. * This signal handler jumps back into the main libcurl code and continues
  765. * execution. This effectively causes the remainder of the application to run
  766. * within a signal handler which is nonportable and could lead to problems.
  767. */
  768. CURL_NORETURN static
  769. void alarmfunc(int sig)
  770. {
  771. (void)sig;
  772. siglongjmp(curl_jmpenv, 1);
  773. }
  774. #endif /* USE_ALARM_TIMEOUT */
  775. /*
  776. * Curl_resolv_timeout() is the same as Curl_resolv() but specifies a
  777. * timeout. This function might return immediately if we're using asynch
  778. * resolves. See the return codes.
  779. *
  780. * The cache entry we return will get its 'inuse' counter increased when this
  781. * function is used. You MUST call Curl_resolv_unlock() later (when you're
  782. * done using this struct) to decrease the counter again.
  783. *
  784. * If built with a synchronous resolver and use of signals is not
  785. * disabled by the application, then a nonzero timeout will cause a
  786. * timeout after the specified number of milliseconds. Otherwise, timeout
  787. * is ignored.
  788. *
  789. * Return codes:
  790. *
  791. * CURLRESOLV_TIMEDOUT(-2) = warning, time too short or previous alarm expired
  792. * CURLRESOLV_ERROR (-1) = error, no pointer
  793. * CURLRESOLV_RESOLVED (0) = OK, pointer provided
  794. * CURLRESOLV_PENDING (1) = waiting for response, no pointer
  795. */
  796. enum resolve_t Curl_resolv_timeout(struct Curl_easy *data,
  797. const char *hostname,
  798. int port,
  799. struct Curl_dns_entry **entry,
  800. timediff_t timeoutms)
  801. {
  802. #ifdef USE_ALARM_TIMEOUT
  803. #ifdef HAVE_SIGACTION
  804. struct sigaction keep_sigact; /* store the old struct here */
  805. volatile bool keep_copysig = FALSE; /* whether old sigact has been saved */
  806. struct sigaction sigact;
  807. #else
  808. #ifdef HAVE_SIGNAL
  809. void (*keep_sigact)(int); /* store the old handler here */
  810. #endif /* HAVE_SIGNAL */
  811. #endif /* HAVE_SIGACTION */
  812. volatile long timeout;
  813. volatile unsigned int prev_alarm = 0;
  814. #endif /* USE_ALARM_TIMEOUT */
  815. enum resolve_t rc;
  816. *entry = NULL;
  817. if(timeoutms < 0)
  818. /* got an already expired timeout */
  819. return CURLRESOLV_TIMEDOUT;
  820. #ifdef USE_ALARM_TIMEOUT
  821. if(data->set.no_signal)
  822. /* Ignore the timeout when signals are disabled */
  823. timeout = 0;
  824. else
  825. timeout = (timeoutms > LONG_MAX) ? LONG_MAX : (long)timeoutms;
  826. if(!timeout)
  827. /* USE_ALARM_TIMEOUT defined, but no timeout actually requested */
  828. return Curl_resolv(data, hostname, port, TRUE, entry);
  829. if(timeout < 1000) {
  830. /* The alarm() function only provides integer second resolution, so if
  831. we want to wait less than one second we must bail out already now. */
  832. failf(data,
  833. "remaining timeout of %ld too small to resolve via SIGALRM method",
  834. timeout);
  835. return CURLRESOLV_TIMEDOUT;
  836. }
  837. /* This allows us to time-out from the name resolver, as the timeout
  838. will generate a signal and we will siglongjmp() from that here.
  839. This technique has problems (see alarmfunc).
  840. This should be the last thing we do before calling Curl_resolv(),
  841. as otherwise we'd have to worry about variables that get modified
  842. before we invoke Curl_resolv() (and thus use "volatile"). */
  843. curl_simple_lock_lock(&curl_jmpenv_lock);
  844. if(sigsetjmp(curl_jmpenv, 1)) {
  845. /* this is coming from a siglongjmp() after an alarm signal */
  846. failf(data, "name lookup timed out");
  847. rc = CURLRESOLV_ERROR;
  848. goto clean_up;
  849. }
  850. else {
  851. /*************************************************************
  852. * Set signal handler to catch SIGALRM
  853. * Store the old value to be able to set it back later!
  854. *************************************************************/
  855. #ifdef HAVE_SIGACTION
  856. sigaction(SIGALRM, NULL, &sigact);
  857. keep_sigact = sigact;
  858. keep_copysig = TRUE; /* yes, we have a copy */
  859. sigact.sa_handler = alarmfunc;
  860. #ifdef SA_RESTART
  861. /* HPUX doesn't have SA_RESTART but defaults to that behavior! */
  862. sigact.sa_flags &= ~SA_RESTART;
  863. #endif
  864. /* now set the new struct */
  865. sigaction(SIGALRM, &sigact, NULL);
  866. #else /* HAVE_SIGACTION */
  867. /* no sigaction(), revert to the much lamer signal() */
  868. #ifdef HAVE_SIGNAL
  869. keep_sigact = signal(SIGALRM, alarmfunc);
  870. #endif
  871. #endif /* HAVE_SIGACTION */
  872. /* alarm() makes a signal get sent when the timeout fires off, and that
  873. will abort system calls */
  874. prev_alarm = alarm(curlx_sltoui(timeout/1000L));
  875. }
  876. #else
  877. #ifndef CURLRES_ASYNCH
  878. if(timeoutms)
  879. infof(data, "timeout on name lookup is not supported");
  880. #else
  881. (void)timeoutms; /* timeoutms not used with an async resolver */
  882. #endif
  883. #endif /* USE_ALARM_TIMEOUT */
  884. /* Perform the actual name resolution. This might be interrupted by an
  885. * alarm if it takes too long.
  886. */
  887. rc = Curl_resolv(data, hostname, port, TRUE, entry);
  888. #ifdef USE_ALARM_TIMEOUT
  889. clean_up:
  890. if(!prev_alarm)
  891. /* deactivate a possibly active alarm before uninstalling the handler */
  892. alarm(0);
  893. #ifdef HAVE_SIGACTION
  894. if(keep_copysig) {
  895. /* we got a struct as it looked before, now put that one back nice
  896. and clean */
  897. sigaction(SIGALRM, &keep_sigact, NULL); /* put it back */
  898. }
  899. #else
  900. #ifdef HAVE_SIGNAL
  901. /* restore the previous SIGALRM handler */
  902. signal(SIGALRM, keep_sigact);
  903. #endif
  904. #endif /* HAVE_SIGACTION */
  905. curl_simple_lock_unlock(&curl_jmpenv_lock);
  906. /* switch back the alarm() to either zero or to what it was before minus
  907. the time we spent until now! */
  908. if(prev_alarm) {
  909. /* there was an alarm() set before us, now put it back */
  910. timediff_t elapsed_secs = Curl_timediff(Curl_now(),
  911. data->conn->created) / 1000;
  912. /* the alarm period is counted in even number of seconds */
  913. unsigned long alarm_set = (unsigned long)(prev_alarm - elapsed_secs);
  914. if(!alarm_set ||
  915. ((alarm_set >= 0x80000000) && (prev_alarm < 0x80000000)) ) {
  916. /* if the alarm time-left reached zero or turned "negative" (counted
  917. with unsigned values), we should fire off a SIGALRM here, but we
  918. won't, and zero would be to switch it off so we never set it to
  919. less than 1! */
  920. alarm(1);
  921. rc = CURLRESOLV_TIMEDOUT;
  922. failf(data, "Previous alarm fired off");
  923. }
  924. else
  925. alarm((unsigned int)alarm_set);
  926. }
  927. #endif /* USE_ALARM_TIMEOUT */
  928. return rc;
  929. }
  930. /*
  931. * Curl_resolv_unlock() unlocks the given cached DNS entry. When this has been
  932. * made, the struct may be destroyed due to pruning. It is important that only
  933. * one unlock is made for each Curl_resolv() call.
  934. *
  935. * May be called with 'data' == NULL for global cache.
  936. */
  937. void Curl_resolv_unlock(struct Curl_easy *data, struct Curl_dns_entry *dns)
  938. {
  939. if(data && data->share)
  940. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  941. freednsentry(dns);
  942. if(data && data->share)
  943. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  944. }
  945. /*
  946. * File-internal: release cache dns entry reference, free if inuse drops to 0
  947. */
  948. static void freednsentry(void *freethis)
  949. {
  950. struct Curl_dns_entry *dns = (struct Curl_dns_entry *) freethis;
  951. DEBUGASSERT(dns && (dns->inuse>0));
  952. dns->inuse--;
  953. if(dns->inuse == 0) {
  954. Curl_freeaddrinfo(dns->addr);
  955. #ifdef USE_HTTPSRR
  956. if(dns->hinfo) {
  957. if(dns->hinfo->target)
  958. free(dns->hinfo->target);
  959. if(dns->hinfo->alpns)
  960. free(dns->hinfo->alpns);
  961. if(dns->hinfo->ipv4hints)
  962. free(dns->hinfo->ipv4hints);
  963. if(dns->hinfo->echconfiglist)
  964. free(dns->hinfo->echconfiglist);
  965. if(dns->hinfo->ipv6hints)
  966. free(dns->hinfo->ipv6hints);
  967. if(dns->hinfo->val)
  968. free(dns->hinfo->val);
  969. free(dns->hinfo);
  970. }
  971. #endif
  972. free(dns);
  973. }
  974. }
  975. /*
  976. * Curl_init_dnscache() inits a new DNS cache.
  977. */
  978. void Curl_init_dnscache(struct Curl_hash *hash, int size)
  979. {
  980. Curl_hash_init(hash, size, Curl_hash_str, Curl_str_key_compare,
  981. freednsentry);
  982. }
  983. /*
  984. * Curl_hostcache_clean()
  985. *
  986. * This _can_ be called with 'data' == NULL but then of course no locking
  987. * can be done!
  988. */
  989. void Curl_hostcache_clean(struct Curl_easy *data,
  990. struct Curl_hash *hash)
  991. {
  992. if(data && data->share)
  993. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  994. Curl_hash_clean(hash);
  995. if(data && data->share)
  996. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  997. }
  998. CURLcode Curl_loadhostpairs(struct Curl_easy *data)
  999. {
  1000. struct curl_slist *hostp;
  1001. char *host_end;
  1002. /* Default is no wildcard found */
  1003. data->state.wildcard_resolve = false;
  1004. for(hostp = data->state.resolve; hostp; hostp = hostp->next) {
  1005. char entry_id[MAX_HOSTCACHE_LEN];
  1006. if(!hostp->data)
  1007. continue;
  1008. if(hostp->data[0] == '-') {
  1009. unsigned long num = 0;
  1010. size_t entry_len;
  1011. size_t hlen = 0;
  1012. host_end = strchr(&hostp->data[1], ':');
  1013. if(host_end) {
  1014. hlen = host_end - &hostp->data[1];
  1015. num = strtoul(++host_end, NULL, 10);
  1016. if(!hlen || (num > 0xffff))
  1017. host_end = NULL;
  1018. }
  1019. if(!host_end) {
  1020. infof(data, "Bad syntax CURLOPT_RESOLVE removal entry '%s'",
  1021. hostp->data);
  1022. continue;
  1023. }
  1024. /* Create an entry id, based upon the hostname and port */
  1025. entry_len = create_hostcache_id(&hostp->data[1], hlen, (int)num,
  1026. entry_id, sizeof(entry_id));
  1027. if(data->share)
  1028. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  1029. /* delete entry, ignore if it didn't exist */
  1030. Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1);
  1031. if(data->share)
  1032. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  1033. }
  1034. else {
  1035. struct Curl_dns_entry *dns;
  1036. struct Curl_addrinfo *head = NULL, *tail = NULL;
  1037. size_t entry_len;
  1038. char address[64];
  1039. #if !defined(CURL_DISABLE_VERBOSE_STRINGS)
  1040. char *addresses = NULL;
  1041. #endif
  1042. char *addr_begin;
  1043. char *addr_end;
  1044. char *port_ptr;
  1045. int port = 0;
  1046. char *end_ptr;
  1047. bool permanent = TRUE;
  1048. unsigned long tmp_port;
  1049. bool error = true;
  1050. char *host_begin = hostp->data;
  1051. size_t hlen = 0;
  1052. if(host_begin[0] == '+') {
  1053. host_begin++;
  1054. permanent = FALSE;
  1055. }
  1056. host_end = strchr(host_begin, ':');
  1057. if(!host_end)
  1058. goto err;
  1059. hlen = host_end - host_begin;
  1060. port_ptr = host_end + 1;
  1061. tmp_port = strtoul(port_ptr, &end_ptr, 10);
  1062. if(tmp_port > USHRT_MAX || end_ptr == port_ptr || *end_ptr != ':')
  1063. goto err;
  1064. port = (int)tmp_port;
  1065. #if !defined(CURL_DISABLE_VERBOSE_STRINGS)
  1066. addresses = end_ptr + 1;
  1067. #endif
  1068. while(*end_ptr) {
  1069. size_t alen;
  1070. struct Curl_addrinfo *ai;
  1071. addr_begin = end_ptr + 1;
  1072. addr_end = strchr(addr_begin, ',');
  1073. if(!addr_end)
  1074. addr_end = addr_begin + strlen(addr_begin);
  1075. end_ptr = addr_end;
  1076. /* allow IP(v6) address within [brackets] */
  1077. if(*addr_begin == '[') {
  1078. if(addr_end == addr_begin || *(addr_end - 1) != ']')
  1079. goto err;
  1080. ++addr_begin;
  1081. --addr_end;
  1082. }
  1083. alen = addr_end - addr_begin;
  1084. if(!alen)
  1085. continue;
  1086. if(alen >= sizeof(address))
  1087. goto err;
  1088. memcpy(address, addr_begin, alen);
  1089. address[alen] = '\0';
  1090. #ifndef USE_IPV6
  1091. if(strchr(address, ':')) {
  1092. infof(data, "Ignoring resolve address '%s', missing IPv6 support.",
  1093. address);
  1094. continue;
  1095. }
  1096. #endif
  1097. ai = Curl_str2addr(address, port);
  1098. if(!ai) {
  1099. infof(data, "Resolve address '%s' found illegal", address);
  1100. goto err;
  1101. }
  1102. if(tail) {
  1103. tail->ai_next = ai;
  1104. tail = tail->ai_next;
  1105. }
  1106. else {
  1107. head = tail = ai;
  1108. }
  1109. }
  1110. if(!head)
  1111. goto err;
  1112. error = false;
  1113. err:
  1114. if(error) {
  1115. failf(data, "Couldn't parse CURLOPT_RESOLVE entry '%s'",
  1116. hostp->data);
  1117. Curl_freeaddrinfo(head);
  1118. return CURLE_SETOPT_OPTION_SYNTAX;
  1119. }
  1120. /* Create an entry id, based upon the hostname and port */
  1121. entry_len = create_hostcache_id(host_begin, hlen, port,
  1122. entry_id, sizeof(entry_id));
  1123. if(data->share)
  1124. Curl_share_lock(data, CURL_LOCK_DATA_DNS, CURL_LOCK_ACCESS_SINGLE);
  1125. /* See if it's already in our dns cache */
  1126. dns = Curl_hash_pick(data->dns.hostcache, entry_id, entry_len + 1);
  1127. if(dns) {
  1128. infof(data, "RESOLVE %.*s:%d - old addresses discarded",
  1129. (int)hlen, host_begin, port);
  1130. /* delete old entry, there are two reasons for this
  1131. 1. old entry may have different addresses.
  1132. 2. even if entry with correct addresses is already in the cache,
  1133. but if it is close to expire, then by the time next http
  1134. request is made, it can get expired and pruned because old
  1135. entry is not necessarily marked as permanent.
  1136. 3. when adding a non-permanent entry, we want it to remove and
  1137. replace an existing permanent entry.
  1138. 4. when adding a non-permanent entry, we want it to get a "fresh"
  1139. timeout that starts _now_. */
  1140. Curl_hash_delete(data->dns.hostcache, entry_id, entry_len + 1);
  1141. }
  1142. /* put this new host in the cache */
  1143. dns = Curl_cache_addr(data, head, host_begin, hlen, port);
  1144. if(dns) {
  1145. if(permanent)
  1146. dns->timestamp = 0; /* mark as permanent */
  1147. /* release the returned reference; the cache itself will keep the
  1148. * entry alive: */
  1149. dns->inuse--;
  1150. }
  1151. if(data->share)
  1152. Curl_share_unlock(data, CURL_LOCK_DATA_DNS);
  1153. if(!dns) {
  1154. Curl_freeaddrinfo(head);
  1155. return CURLE_OUT_OF_MEMORY;
  1156. }
  1157. #ifndef CURL_DISABLE_VERBOSE_STRINGS
  1158. infof(data, "Added %.*s:%d:%s to DNS cache%s",
  1159. (int)hlen, host_begin, port, addresses,
  1160. permanent ? "" : " (non-permanent)");
  1161. #endif
  1162. /* Wildcard hostname */
  1163. if((hlen == 1) && (host_begin[0] == '*')) {
  1164. infof(data, "RESOLVE *:%d using wildcard", port);
  1165. data->state.wildcard_resolve = true;
  1166. }
  1167. }
  1168. }
  1169. data->state.resolve = NULL; /* dealt with now */
  1170. return CURLE_OK;
  1171. }
  1172. #ifndef CURL_DISABLE_VERBOSE_STRINGS
  1173. static void show_resolve_info(struct Curl_easy *data,
  1174. struct Curl_dns_entry *dns)
  1175. {
  1176. struct Curl_addrinfo *a;
  1177. CURLcode result = CURLE_OK;
  1178. #ifdef CURLRES_IPV6
  1179. struct dynbuf out[2];
  1180. #else
  1181. struct dynbuf out[1];
  1182. #endif
  1183. DEBUGASSERT(data);
  1184. DEBUGASSERT(dns);
  1185. if(!data->set.verbose ||
  1186. /* ignore no name or numerical IP addresses */
  1187. !dns->hostname[0] || Curl_host_is_ipnum(dns->hostname))
  1188. return;
  1189. a = dns->addr;
  1190. infof(data, "Host %s:%d was resolved.",
  1191. (dns->hostname[0] ? dns->hostname : "(none)"), dns->hostport);
  1192. Curl_dyn_init(&out[0], 1024);
  1193. #ifdef CURLRES_IPV6
  1194. Curl_dyn_init(&out[1], 1024);
  1195. #endif
  1196. while(a) {
  1197. if(
  1198. #ifdef CURLRES_IPV6
  1199. a->ai_family == PF_INET6 ||
  1200. #endif
  1201. a->ai_family == PF_INET) {
  1202. char buf[MAX_IPADR_LEN];
  1203. struct dynbuf *d = &out[(a->ai_family != PF_INET)];
  1204. Curl_printable_address(a, buf, sizeof(buf));
  1205. if(Curl_dyn_len(d))
  1206. result = Curl_dyn_addn(d, ", ", 2);
  1207. if(!result)
  1208. result = Curl_dyn_add(d, buf);
  1209. if(result) {
  1210. infof(data, "too many IP, can't show");
  1211. goto fail;
  1212. }
  1213. }
  1214. a = a->ai_next;
  1215. }
  1216. #ifdef CURLRES_IPV6
  1217. infof(data, "IPv6: %s",
  1218. (Curl_dyn_len(&out[1]) ? Curl_dyn_ptr(&out[1]) : "(none)"));
  1219. #endif
  1220. infof(data, "IPv4: %s",
  1221. (Curl_dyn_len(&out[0]) ? Curl_dyn_ptr(&out[0]) : "(none)"));
  1222. fail:
  1223. Curl_dyn_free(&out[0]);
  1224. #ifdef CURLRES_IPV6
  1225. Curl_dyn_free(&out[1]);
  1226. #endif
  1227. }
  1228. #endif
  1229. CURLcode Curl_resolv_check(struct Curl_easy *data,
  1230. struct Curl_dns_entry **dns)
  1231. {
  1232. CURLcode result;
  1233. #if defined(CURL_DISABLE_DOH) && !defined(CURLRES_ASYNCH)
  1234. (void)data;
  1235. (void)dns;
  1236. #endif
  1237. #ifndef CURL_DISABLE_DOH
  1238. if(data->conn->bits.doh) {
  1239. result = Curl_doh_is_resolved(data, dns);
  1240. }
  1241. else
  1242. #endif
  1243. result = Curl_resolver_is_resolved(data, dns);
  1244. if(*dns)
  1245. show_resolve_info(data, *dns);
  1246. return result;
  1247. }
  1248. int Curl_resolv_getsock(struct Curl_easy *data,
  1249. curl_socket_t *socks)
  1250. {
  1251. #ifdef CURLRES_ASYNCH
  1252. #ifndef CURL_DISABLE_DOH
  1253. if(data->conn->bits.doh)
  1254. /* nothing to wait for during DoH resolve, those handles have their own
  1255. sockets */
  1256. return GETSOCK_BLANK;
  1257. #endif
  1258. return Curl_resolver_getsock(data, socks);
  1259. #else
  1260. (void)data;
  1261. (void)socks;
  1262. return GETSOCK_BLANK;
  1263. #endif
  1264. }
  1265. /* Call this function after Curl_connect() has returned async=TRUE and
  1266. then a successful name resolve has been received.
  1267. Note: this function disconnects and frees the conn data in case of
  1268. resolve failure */
  1269. CURLcode Curl_once_resolved(struct Curl_easy *data, bool *protocol_done)
  1270. {
  1271. CURLcode result;
  1272. struct connectdata *conn = data->conn;
  1273. #ifdef USE_CURL_ASYNC
  1274. if(data->state.async.dns) {
  1275. conn->dns_entry = data->state.async.dns;
  1276. data->state.async.dns = NULL;
  1277. }
  1278. #endif
  1279. result = Curl_setup_conn(data, protocol_done);
  1280. if(result) {
  1281. Curl_detach_connection(data);
  1282. Curl_conncache_remove_conn(data, conn, TRUE);
  1283. Curl_disconnect(data, conn, TRUE);
  1284. }
  1285. return result;
  1286. }
  1287. /*
  1288. * Curl_resolver_error() calls failf() with the appropriate message after a
  1289. * resolve error
  1290. */
  1291. #ifdef USE_CURL_ASYNC
  1292. CURLcode Curl_resolver_error(struct Curl_easy *data)
  1293. {
  1294. const char *host_or_proxy;
  1295. CURLcode result;
  1296. #ifndef CURL_DISABLE_PROXY
  1297. struct connectdata *conn = data->conn;
  1298. if(conn->bits.httpproxy) {
  1299. host_or_proxy = "proxy";
  1300. result = CURLE_COULDNT_RESOLVE_PROXY;
  1301. }
  1302. else
  1303. #endif
  1304. {
  1305. host_or_proxy = "host";
  1306. result = CURLE_COULDNT_RESOLVE_HOST;
  1307. }
  1308. failf(data, "Could not resolve %s: %s", host_or_proxy,
  1309. data->state.async.hostname);
  1310. return result;
  1311. }
  1312. #endif /* USE_CURL_ASYNC */