hostip.c 42 KB

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