easy.c 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361
  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_NETDB_H
  29. #include <netdb.h>
  30. #endif
  31. #ifdef HAVE_ARPA_INET_H
  32. #include <arpa/inet.h>
  33. #endif
  34. #ifdef HAVE_NET_IF_H
  35. #include <net/if.h>
  36. #endif
  37. #ifdef HAVE_SYS_IOCTL_H
  38. #include <sys/ioctl.h>
  39. #endif
  40. #ifdef HAVE_SYS_PARAM_H
  41. #include <sys/param.h>
  42. #endif
  43. #include "urldata.h"
  44. #include <curl/curl.h>
  45. #include "transfer.h"
  46. #include "vtls/vtls.h"
  47. #include "url.h"
  48. #include "getinfo.h"
  49. #include "hostip.h"
  50. #include "share.h"
  51. #include "strdup.h"
  52. #include "progress.h"
  53. #include "easyif.h"
  54. #include "multiif.h"
  55. #include "select.h"
  56. #include "cfilters.h"
  57. #include "sendf.h" /* for failf function prototype */
  58. #include "connect.h" /* for Curl_getconnectinfo */
  59. #include "slist.h"
  60. #include "mime.h"
  61. #include "amigaos.h"
  62. #include "macos.h"
  63. #include "warnless.h"
  64. #include "sigpipe.h"
  65. #include "vssh/ssh.h"
  66. #include "setopt.h"
  67. #include "http_digest.h"
  68. #include "system_win32.h"
  69. #include "http2.h"
  70. #include "dynbuf.h"
  71. #include "altsvc.h"
  72. #include "hsts.h"
  73. #include "easy_lock.h"
  74. /* The last 3 #include files should be in this order */
  75. #include "curl_printf.h"
  76. #include "curl_memory.h"
  77. #include "memdebug.h"
  78. /* true globals -- for curl_global_init() and curl_global_cleanup() */
  79. static unsigned int initialized;
  80. static long easy_init_flags;
  81. #ifdef GLOBAL_INIT_IS_THREADSAFE
  82. static curl_simple_lock s_lock = CURL_SIMPLE_LOCK_INIT;
  83. #define global_init_lock() curl_simple_lock_lock(&s_lock)
  84. #define global_init_unlock() curl_simple_lock_unlock(&s_lock)
  85. #else
  86. #define global_init_lock()
  87. #define global_init_unlock()
  88. #endif
  89. /*
  90. * strdup (and other memory functions) is redefined in complicated
  91. * ways, but at this point it must be defined as the system-supplied strdup
  92. * so the callback pointer is initialized correctly.
  93. */
  94. #if defined(_WIN32_WCE)
  95. #define system_strdup _strdup
  96. #elif !defined(HAVE_STRDUP)
  97. #define system_strdup Curl_strdup
  98. #else
  99. #define system_strdup strdup
  100. #endif
  101. #if defined(_MSC_VER) && defined(_DLL) && !defined(__POCC__)
  102. # pragma warning(disable:4232) /* MSVC extension, dllimport identity */
  103. #endif
  104. /*
  105. * If a memory-using function (like curl_getenv) is used before
  106. * curl_global_init() is called, we need to have these pointers set already.
  107. */
  108. curl_malloc_callback Curl_cmalloc = (curl_malloc_callback)malloc;
  109. curl_free_callback Curl_cfree = (curl_free_callback)free;
  110. curl_realloc_callback Curl_crealloc = (curl_realloc_callback)realloc;
  111. curl_strdup_callback Curl_cstrdup = (curl_strdup_callback)system_strdup;
  112. curl_calloc_callback Curl_ccalloc = (curl_calloc_callback)calloc;
  113. #if defined(WIN32) && defined(UNICODE)
  114. curl_wcsdup_callback Curl_cwcsdup = Curl_wcsdup;
  115. #endif
  116. #if defined(_MSC_VER) && defined(_DLL) && !defined(__POCC__)
  117. # pragma warning(default:4232) /* MSVC extension, dllimport identity */
  118. #endif
  119. #ifdef DEBUGBUILD
  120. static char *leakpointer;
  121. #endif
  122. /**
  123. * curl_global_init() globally initializes curl given a bitwise set of the
  124. * different features of what to initialize.
  125. */
  126. static CURLcode global_init(long flags, bool memoryfuncs)
  127. {
  128. if(initialized++)
  129. return CURLE_OK;
  130. if(memoryfuncs) {
  131. /* Setup the default memory functions here (again) */
  132. Curl_cmalloc = (curl_malloc_callback)malloc;
  133. Curl_cfree = (curl_free_callback)free;
  134. Curl_crealloc = (curl_realloc_callback)realloc;
  135. Curl_cstrdup = (curl_strdup_callback)system_strdup;
  136. Curl_ccalloc = (curl_calloc_callback)calloc;
  137. #if defined(WIN32) && defined(UNICODE)
  138. Curl_cwcsdup = (curl_wcsdup_callback)_wcsdup;
  139. #endif
  140. }
  141. if(Curl_trc_init()) {
  142. DEBUGF(fprintf(stderr, "Error: Curl_trc_init failed\n"));
  143. goto fail;
  144. }
  145. if(!Curl_ssl_init()) {
  146. DEBUGF(fprintf(stderr, "Error: Curl_ssl_init failed\n"));
  147. goto fail;
  148. }
  149. if(Curl_win32_init(flags)) {
  150. DEBUGF(fprintf(stderr, "Error: win32_init failed\n"));
  151. goto fail;
  152. }
  153. if(Curl_amiga_init()) {
  154. DEBUGF(fprintf(stderr, "Error: Curl_amiga_init failed\n"));
  155. goto fail;
  156. }
  157. if(Curl_macos_init()) {
  158. DEBUGF(fprintf(stderr, "Error: Curl_macos_init failed\n"));
  159. goto fail;
  160. }
  161. if(Curl_resolver_global_init()) {
  162. DEBUGF(fprintf(stderr, "Error: resolver_global_init failed\n"));
  163. goto fail;
  164. }
  165. #if defined(USE_SSH)
  166. if(Curl_ssh_init()) {
  167. goto fail;
  168. }
  169. #endif
  170. #ifdef USE_WOLFSSH
  171. if(WS_SUCCESS != wolfSSH_Init()) {
  172. DEBUGF(fprintf(stderr, "Error: wolfSSH_Init failed\n"));
  173. return CURLE_FAILED_INIT;
  174. }
  175. #endif
  176. easy_init_flags = flags;
  177. #ifdef DEBUGBUILD
  178. if(getenv("CURL_GLOBAL_INIT"))
  179. /* alloc data that will leak if *cleanup() is not called! */
  180. leakpointer = malloc(1);
  181. #endif
  182. return CURLE_OK;
  183. fail:
  184. initialized--; /* undo the increase */
  185. return CURLE_FAILED_INIT;
  186. }
  187. /**
  188. * curl_global_init() globally initializes curl given a bitwise set of the
  189. * different features of what to initialize.
  190. */
  191. CURLcode curl_global_init(long flags)
  192. {
  193. CURLcode result;
  194. global_init_lock();
  195. result = global_init(flags, TRUE);
  196. global_init_unlock();
  197. return result;
  198. }
  199. /*
  200. * curl_global_init_mem() globally initializes curl and also registers the
  201. * user provided callback routines.
  202. */
  203. CURLcode curl_global_init_mem(long flags, curl_malloc_callback m,
  204. curl_free_callback f, curl_realloc_callback r,
  205. curl_strdup_callback s, curl_calloc_callback c)
  206. {
  207. CURLcode result;
  208. /* Invalid input, return immediately */
  209. if(!m || !f || !r || !s || !c)
  210. return CURLE_FAILED_INIT;
  211. global_init_lock();
  212. if(initialized) {
  213. /* Already initialized, don't do it again, but bump the variable anyway to
  214. work like curl_global_init() and require the same amount of cleanup
  215. calls. */
  216. initialized++;
  217. global_init_unlock();
  218. return CURLE_OK;
  219. }
  220. /* set memory functions before global_init() in case it wants memory
  221. functions */
  222. Curl_cmalloc = m;
  223. Curl_cfree = f;
  224. Curl_cstrdup = s;
  225. Curl_crealloc = r;
  226. Curl_ccalloc = c;
  227. /* Call the actual init function, but without setting */
  228. result = global_init(flags, FALSE);
  229. global_init_unlock();
  230. return result;
  231. }
  232. /**
  233. * curl_global_cleanup() globally cleanups curl, uses the value of
  234. * "easy_init_flags" to determine what needs to be cleaned up and what doesn't.
  235. */
  236. void curl_global_cleanup(void)
  237. {
  238. global_init_lock();
  239. if(!initialized) {
  240. global_init_unlock();
  241. return;
  242. }
  243. if(--initialized) {
  244. global_init_unlock();
  245. return;
  246. }
  247. Curl_ssl_cleanup();
  248. Curl_resolver_global_cleanup();
  249. #ifdef WIN32
  250. Curl_win32_cleanup(easy_init_flags);
  251. #endif
  252. Curl_amiga_cleanup();
  253. Curl_ssh_cleanup();
  254. #ifdef DEBUGBUILD
  255. free(leakpointer);
  256. #endif
  257. easy_init_flags = 0;
  258. global_init_unlock();
  259. }
  260. /**
  261. * curl_global_trace() globally initializes curl logging.
  262. */
  263. CURLcode curl_global_trace(const char *config)
  264. {
  265. #ifndef CURL_DISABLE_VERBOSE_STRINGS
  266. CURLcode result;
  267. global_init_lock();
  268. result = Curl_trc_opt(config);
  269. global_init_unlock();
  270. return result;
  271. #else
  272. (void)config;
  273. return CURLE_OK;
  274. #endif
  275. }
  276. /*
  277. * curl_global_sslset() globally initializes the SSL backend to use.
  278. */
  279. CURLsslset curl_global_sslset(curl_sslbackend id, const char *name,
  280. const curl_ssl_backend ***avail)
  281. {
  282. CURLsslset rc;
  283. global_init_lock();
  284. rc = Curl_init_sslset_nolock(id, name, avail);
  285. global_init_unlock();
  286. return rc;
  287. }
  288. /*
  289. * curl_easy_init() is the external interface to alloc, setup and init an
  290. * easy handle that is returned. If anything goes wrong, NULL is returned.
  291. */
  292. struct Curl_easy *curl_easy_init(void)
  293. {
  294. CURLcode result;
  295. struct Curl_easy *data;
  296. /* Make sure we inited the global SSL stuff */
  297. global_init_lock();
  298. if(!initialized) {
  299. result = global_init(CURL_GLOBAL_DEFAULT, TRUE);
  300. if(result) {
  301. /* something in the global init failed, return nothing */
  302. DEBUGF(fprintf(stderr, "Error: curl_global_init failed\n"));
  303. global_init_unlock();
  304. return NULL;
  305. }
  306. }
  307. global_init_unlock();
  308. /* We use curl_open() with undefined URL so far */
  309. result = Curl_open(&data);
  310. if(result) {
  311. DEBUGF(fprintf(stderr, "Error: Curl_open failed\n"));
  312. return NULL;
  313. }
  314. return data;
  315. }
  316. #ifdef CURLDEBUG
  317. struct socketmonitor {
  318. struct socketmonitor *next; /* the next node in the list or NULL */
  319. struct pollfd socket; /* socket info of what to monitor */
  320. };
  321. struct events {
  322. long ms; /* timeout, run the timeout function when reached */
  323. bool msbump; /* set TRUE when timeout is set by callback */
  324. int num_sockets; /* number of nodes in the monitor list */
  325. struct socketmonitor *list; /* list of sockets to monitor */
  326. int running_handles; /* store the returned number */
  327. };
  328. /* events_timer
  329. *
  330. * Callback that gets called with a new value when the timeout should be
  331. * updated.
  332. */
  333. static int events_timer(struct Curl_multi *multi, /* multi handle */
  334. long timeout_ms, /* see above */
  335. void *userp) /* private callback pointer */
  336. {
  337. struct events *ev = userp;
  338. (void)multi;
  339. if(timeout_ms == -1)
  340. /* timeout removed */
  341. timeout_ms = 0;
  342. else if(timeout_ms == 0)
  343. /* timeout is already reached! */
  344. timeout_ms = 1; /* trigger asap */
  345. ev->ms = timeout_ms;
  346. ev->msbump = TRUE;
  347. return 0;
  348. }
  349. /* poll2cselect
  350. *
  351. * convert from poll() bit definitions to libcurl's CURL_CSELECT_* ones
  352. */
  353. static int poll2cselect(int pollmask)
  354. {
  355. int omask = 0;
  356. if(pollmask & POLLIN)
  357. omask |= CURL_CSELECT_IN;
  358. if(pollmask & POLLOUT)
  359. omask |= CURL_CSELECT_OUT;
  360. if(pollmask & POLLERR)
  361. omask |= CURL_CSELECT_ERR;
  362. return omask;
  363. }
  364. /* socketcb2poll
  365. *
  366. * convert from libcurl' CURL_POLL_* bit definitions to poll()'s
  367. */
  368. static short socketcb2poll(int pollmask)
  369. {
  370. short omask = 0;
  371. if(pollmask & CURL_POLL_IN)
  372. omask |= POLLIN;
  373. if(pollmask & CURL_POLL_OUT)
  374. omask |= POLLOUT;
  375. return omask;
  376. }
  377. /* events_socket
  378. *
  379. * Callback that gets called with information about socket activity to
  380. * monitor.
  381. */
  382. static int events_socket(struct Curl_easy *easy, /* easy handle */
  383. curl_socket_t s, /* socket */
  384. int what, /* see above */
  385. void *userp, /* private callback
  386. pointer */
  387. void *socketp) /* private socket
  388. pointer */
  389. {
  390. struct events *ev = userp;
  391. struct socketmonitor *m;
  392. struct socketmonitor *prev = NULL;
  393. #if defined(CURL_DISABLE_VERBOSE_STRINGS)
  394. (void) easy;
  395. #endif
  396. (void)socketp;
  397. m = ev->list;
  398. while(m) {
  399. if(m->socket.fd == s) {
  400. if(what == CURL_POLL_REMOVE) {
  401. struct socketmonitor *nxt = m->next;
  402. /* remove this node from the list of monitored sockets */
  403. if(prev)
  404. prev->next = nxt;
  405. else
  406. ev->list = nxt;
  407. free(m);
  408. m = nxt;
  409. infof(easy, "socket cb: socket %d REMOVED", s);
  410. }
  411. else {
  412. /* The socket 's' is already being monitored, update the activity
  413. mask. Convert from libcurl bitmask to the poll one. */
  414. m->socket.events = socketcb2poll(what);
  415. infof(easy, "socket cb: socket %d UPDATED as %s%s", s,
  416. (what&CURL_POLL_IN)?"IN":"",
  417. (what&CURL_POLL_OUT)?"OUT":"");
  418. }
  419. break;
  420. }
  421. prev = m;
  422. m = m->next; /* move to next node */
  423. }
  424. if(!m) {
  425. if(what == CURL_POLL_REMOVE) {
  426. /* this happens a bit too often, libcurl fix perhaps? */
  427. /* fprintf(stderr,
  428. "%s: socket %d asked to be REMOVED but not present!\n",
  429. __func__, s); */
  430. }
  431. else {
  432. m = malloc(sizeof(struct socketmonitor));
  433. if(m) {
  434. m->next = ev->list;
  435. m->socket.fd = s;
  436. m->socket.events = socketcb2poll(what);
  437. m->socket.revents = 0;
  438. ev->list = m;
  439. infof(easy, "socket cb: socket %d ADDED as %s%s", s,
  440. (what&CURL_POLL_IN)?"IN":"",
  441. (what&CURL_POLL_OUT)?"OUT":"");
  442. }
  443. else
  444. return CURLE_OUT_OF_MEMORY;
  445. }
  446. }
  447. return 0;
  448. }
  449. /*
  450. * events_setup()
  451. *
  452. * Do the multi handle setups that only event-based transfers need.
  453. */
  454. static void events_setup(struct Curl_multi *multi, struct events *ev)
  455. {
  456. /* timer callback */
  457. curl_multi_setopt(multi, CURLMOPT_TIMERFUNCTION, events_timer);
  458. curl_multi_setopt(multi, CURLMOPT_TIMERDATA, ev);
  459. /* socket callback */
  460. curl_multi_setopt(multi, CURLMOPT_SOCKETFUNCTION, events_socket);
  461. curl_multi_setopt(multi, CURLMOPT_SOCKETDATA, ev);
  462. }
  463. /* wait_or_timeout()
  464. *
  465. * waits for activity on any of the given sockets, or the timeout to trigger.
  466. */
  467. static CURLcode wait_or_timeout(struct Curl_multi *multi, struct events *ev)
  468. {
  469. bool done = FALSE;
  470. CURLMcode mcode = CURLM_OK;
  471. CURLcode result = CURLE_OK;
  472. while(!done) {
  473. CURLMsg *msg;
  474. struct socketmonitor *m;
  475. struct pollfd *f;
  476. struct pollfd fds[4];
  477. int numfds = 0;
  478. int pollrc;
  479. int i;
  480. struct curltime before;
  481. struct curltime after;
  482. /* populate the fds[] array */
  483. for(m = ev->list, f = &fds[0]; m; m = m->next) {
  484. f->fd = m->socket.fd;
  485. f->events = m->socket.events;
  486. f->revents = 0;
  487. /* fprintf(stderr, "poll() %d check socket %d\n", numfds, f->fd); */
  488. f++;
  489. numfds++;
  490. }
  491. /* get the time stamp to use to figure out how long poll takes */
  492. before = Curl_now();
  493. /* wait for activity or timeout */
  494. pollrc = Curl_poll(fds, numfds, ev->ms);
  495. if(pollrc < 0)
  496. return CURLE_UNRECOVERABLE_POLL;
  497. after = Curl_now();
  498. ev->msbump = FALSE; /* reset here */
  499. if(!pollrc) {
  500. /* timeout! */
  501. ev->ms = 0;
  502. /* fprintf(stderr, "call curl_multi_socket_action(TIMEOUT)\n"); */
  503. mcode = curl_multi_socket_action(multi, CURL_SOCKET_TIMEOUT, 0,
  504. &ev->running_handles);
  505. }
  506. else {
  507. /* here pollrc is > 0 */
  508. /* loop over the monitored sockets to see which ones had activity */
  509. for(i = 0; i< numfds; i++) {
  510. if(fds[i].revents) {
  511. /* socket activity, tell libcurl */
  512. int act = poll2cselect(fds[i].revents); /* convert */
  513. infof(multi->easyp, "call curl_multi_socket_action(socket %d)",
  514. fds[i].fd);
  515. mcode = curl_multi_socket_action(multi, fds[i].fd, act,
  516. &ev->running_handles);
  517. }
  518. }
  519. if(!ev->msbump) {
  520. /* If nothing updated the timeout, we decrease it by the spent time.
  521. * If it was updated, it has the new timeout time stored already.
  522. */
  523. timediff_t timediff = Curl_timediff(after, before);
  524. if(timediff > 0) {
  525. if(timediff > ev->ms)
  526. ev->ms = 0;
  527. else
  528. ev->ms -= (long)timediff;
  529. }
  530. }
  531. }
  532. if(mcode)
  533. return CURLE_URL_MALFORMAT;
  534. /* we don't really care about the "msgs_in_queue" value returned in the
  535. second argument */
  536. msg = curl_multi_info_read(multi, &pollrc);
  537. if(msg) {
  538. result = msg->data.result;
  539. done = TRUE;
  540. }
  541. }
  542. return result;
  543. }
  544. /* easy_events()
  545. *
  546. * Runs a transfer in a blocking manner using the events-based API
  547. */
  548. static CURLcode easy_events(struct Curl_multi *multi)
  549. {
  550. /* this struct is made static to allow it to be used after this function
  551. returns and curl_multi_remove_handle() is called */
  552. static struct events evs = {2, FALSE, 0, NULL, 0};
  553. /* if running event-based, do some further multi inits */
  554. events_setup(multi, &evs);
  555. return wait_or_timeout(multi, &evs);
  556. }
  557. #else /* CURLDEBUG */
  558. /* when not built with debug, this function doesn't exist */
  559. #define easy_events(x) CURLE_NOT_BUILT_IN
  560. #endif
  561. static CURLcode easy_transfer(struct Curl_multi *multi)
  562. {
  563. bool done = FALSE;
  564. CURLMcode mcode = CURLM_OK;
  565. CURLcode result = CURLE_OK;
  566. while(!done && !mcode) {
  567. int still_running = 0;
  568. mcode = curl_multi_poll(multi, NULL, 0, 1000, NULL);
  569. if(!mcode)
  570. mcode = curl_multi_perform(multi, &still_running);
  571. /* only read 'still_running' if curl_multi_perform() return OK */
  572. if(!mcode && !still_running) {
  573. int rc;
  574. CURLMsg *msg = curl_multi_info_read(multi, &rc);
  575. if(msg) {
  576. result = msg->data.result;
  577. done = TRUE;
  578. }
  579. }
  580. }
  581. /* Make sure to return some kind of error if there was a multi problem */
  582. if(mcode) {
  583. result = (mcode == CURLM_OUT_OF_MEMORY) ? CURLE_OUT_OF_MEMORY :
  584. /* The other multi errors should never happen, so return
  585. something suitably generic */
  586. CURLE_BAD_FUNCTION_ARGUMENT;
  587. }
  588. return result;
  589. }
  590. /*
  591. * easy_perform() is the external interface that performs a blocking
  592. * transfer as previously setup.
  593. *
  594. * CONCEPT: This function creates a multi handle, adds the easy handle to it,
  595. * runs curl_multi_perform() until the transfer is done, then detaches the
  596. * easy handle, destroys the multi handle and returns the easy handle's return
  597. * code.
  598. *
  599. * REALITY: it can't just create and destroy the multi handle that easily. It
  600. * needs to keep it around since if this easy handle is used again by this
  601. * function, the same multi handle must be reused so that the same pools and
  602. * caches can be used.
  603. *
  604. * DEBUG: if 'events' is set TRUE, this function will use a replacement engine
  605. * instead of curl_multi_perform() and use curl_multi_socket_action().
  606. */
  607. static CURLcode easy_perform(struct Curl_easy *data, bool events)
  608. {
  609. struct Curl_multi *multi;
  610. CURLMcode mcode;
  611. CURLcode result = CURLE_OK;
  612. SIGPIPE_VARIABLE(pipe_st);
  613. if(!data)
  614. return CURLE_BAD_FUNCTION_ARGUMENT;
  615. if(data->set.errorbuffer)
  616. /* clear this as early as possible */
  617. data->set.errorbuffer[0] = 0;
  618. if(data->multi) {
  619. failf(data, "easy handle already used in multi handle");
  620. return CURLE_FAILED_INIT;
  621. }
  622. if(data->multi_easy)
  623. multi = data->multi_easy;
  624. else {
  625. /* this multi handle will only ever have a single easy handled attached
  626. to it, so make it use minimal hashes */
  627. multi = Curl_multi_handle(1, 3, 7);
  628. if(!multi)
  629. return CURLE_OUT_OF_MEMORY;
  630. data->multi_easy = multi;
  631. }
  632. if(multi->in_callback)
  633. return CURLE_RECURSIVE_API_CALL;
  634. /* Copy the MAXCONNECTS option to the multi handle */
  635. curl_multi_setopt(multi, CURLMOPT_MAXCONNECTS, data->set.maxconnects);
  636. mcode = curl_multi_add_handle(multi, data);
  637. if(mcode) {
  638. curl_multi_cleanup(multi);
  639. data->multi_easy = NULL;
  640. if(mcode == CURLM_OUT_OF_MEMORY)
  641. return CURLE_OUT_OF_MEMORY;
  642. return CURLE_FAILED_INIT;
  643. }
  644. sigpipe_ignore(data, &pipe_st);
  645. /* run the transfer */
  646. result = events ? easy_events(multi) : easy_transfer(multi);
  647. /* ignoring the return code isn't nice, but atm we can't really handle
  648. a failure here, room for future improvement! */
  649. (void)curl_multi_remove_handle(multi, data);
  650. sigpipe_restore(&pipe_st);
  651. /* The multi handle is kept alive, owned by the easy handle */
  652. return result;
  653. }
  654. /*
  655. * curl_easy_perform() is the external interface that performs a blocking
  656. * transfer as previously setup.
  657. */
  658. CURLcode curl_easy_perform(struct Curl_easy *data)
  659. {
  660. return easy_perform(data, FALSE);
  661. }
  662. #ifdef CURLDEBUG
  663. /*
  664. * curl_easy_perform_ev() is the external interface that performs a blocking
  665. * transfer using the event-based API internally.
  666. */
  667. CURLcode curl_easy_perform_ev(struct Curl_easy *data)
  668. {
  669. return easy_perform(data, TRUE);
  670. }
  671. #endif
  672. /*
  673. * curl_easy_cleanup() is the external interface to cleaning/freeing the given
  674. * easy handle.
  675. */
  676. void curl_easy_cleanup(struct Curl_easy *data)
  677. {
  678. if(GOOD_EASY_HANDLE(data)) {
  679. SIGPIPE_VARIABLE(pipe_st);
  680. sigpipe_ignore(data, &pipe_st);
  681. Curl_close(&data);
  682. sigpipe_restore(&pipe_st);
  683. }
  684. }
  685. /*
  686. * curl_easy_getinfo() is an external interface that allows an app to retrieve
  687. * information from a performed transfer and similar.
  688. */
  689. #undef curl_easy_getinfo
  690. CURLcode curl_easy_getinfo(struct Curl_easy *data, CURLINFO info, ...)
  691. {
  692. va_list arg;
  693. void *paramp;
  694. CURLcode result;
  695. va_start(arg, info);
  696. paramp = va_arg(arg, void *);
  697. result = Curl_getinfo(data, info, paramp);
  698. va_end(arg);
  699. return result;
  700. }
  701. static CURLcode dupset(struct Curl_easy *dst, struct Curl_easy *src)
  702. {
  703. CURLcode result = CURLE_OK;
  704. enum dupstring i;
  705. enum dupblob j;
  706. /* Copy src->set into dst->set first, then deal with the strings
  707. afterwards */
  708. dst->set = src->set;
  709. Curl_mime_initpart(&dst->set.mimepost);
  710. /* clear all string pointers first */
  711. memset(dst->set.str, 0, STRING_LAST * sizeof(char *));
  712. /* duplicate all strings */
  713. for(i = (enum dupstring)0; i< STRING_LASTZEROTERMINATED; i++) {
  714. result = Curl_setstropt(&dst->set.str[i], src->set.str[i]);
  715. if(result)
  716. return result;
  717. }
  718. /* clear all blob pointers first */
  719. memset(dst->set.blobs, 0, BLOB_LAST * sizeof(struct curl_blob *));
  720. /* duplicate all blobs */
  721. for(j = (enum dupblob)0; j < BLOB_LAST; j++) {
  722. result = Curl_setblobopt(&dst->set.blobs[j], src->set.blobs[j]);
  723. if(result)
  724. return result;
  725. }
  726. /* duplicate memory areas pointed to */
  727. i = STRING_COPYPOSTFIELDS;
  728. if(src->set.postfieldsize && src->set.str[i]) {
  729. /* postfieldsize is curl_off_t, Curl_memdup() takes a size_t ... */
  730. dst->set.str[i] = Curl_memdup(src->set.str[i],
  731. curlx_sotouz(src->set.postfieldsize));
  732. if(!dst->set.str[i])
  733. return CURLE_OUT_OF_MEMORY;
  734. /* point to the new copy */
  735. dst->set.postfields = dst->set.str[i];
  736. }
  737. /* Duplicate mime data. */
  738. result = Curl_mime_duppart(dst, &dst->set.mimepost, &src->set.mimepost);
  739. if(src->set.resolve)
  740. dst->state.resolve = dst->set.resolve;
  741. return result;
  742. }
  743. /*
  744. * curl_easy_duphandle() is an external interface to allow duplication of a
  745. * given input easy handle. The returned handle will be a new working handle
  746. * with all options set exactly as the input source handle.
  747. */
  748. struct Curl_easy *curl_easy_duphandle(struct Curl_easy *data)
  749. {
  750. struct Curl_easy *outcurl = calloc(1, sizeof(struct Curl_easy));
  751. if(!outcurl)
  752. goto fail;
  753. /*
  754. * We setup a few buffers we need. We should probably make them
  755. * get setup on-demand in the code, as that would probably decrease
  756. * the likeliness of us forgetting to init a buffer here in the future.
  757. */
  758. outcurl->set.buffer_size = data->set.buffer_size;
  759. /* copy all userdefined values */
  760. if(dupset(outcurl, data))
  761. goto fail;
  762. Curl_dyn_init(&outcurl->state.headerb, CURL_MAX_HTTP_HEADER);
  763. /* the connection cache is setup on demand */
  764. outcurl->state.conn_cache = NULL;
  765. outcurl->state.lastconnect_id = -1;
  766. outcurl->state.recent_conn_id = -1;
  767. outcurl->id = -1;
  768. outcurl->progress.flags = data->progress.flags;
  769. outcurl->progress.callback = data->progress.callback;
  770. #ifndef CURL_DISABLE_COOKIES
  771. if(data->cookies) {
  772. /* If cookies are enabled in the parent handle, we enable them
  773. in the clone as well! */
  774. outcurl->cookies = Curl_cookie_init(data, NULL, outcurl->cookies,
  775. data->set.cookiesession);
  776. if(!outcurl->cookies)
  777. goto fail;
  778. }
  779. if(data->set.cookielist) {
  780. outcurl->set.cookielist = Curl_slist_duplicate(data->set.cookielist);
  781. if(!outcurl->set.cookielist)
  782. goto fail;
  783. }
  784. #endif
  785. if(data->state.url) {
  786. outcurl->state.url = strdup(data->state.url);
  787. if(!outcurl->state.url)
  788. goto fail;
  789. outcurl->state.url_alloc = TRUE;
  790. }
  791. if(data->state.referer) {
  792. outcurl->state.referer = strdup(data->state.referer);
  793. if(!outcurl->state.referer)
  794. goto fail;
  795. outcurl->state.referer_alloc = TRUE;
  796. }
  797. /* Reinitialize an SSL engine for the new handle
  798. * note: the engine name has already been copied by dupset */
  799. if(outcurl->set.str[STRING_SSL_ENGINE]) {
  800. if(Curl_ssl_set_engine(outcurl, outcurl->set.str[STRING_SSL_ENGINE]))
  801. goto fail;
  802. }
  803. #ifndef CURL_DISABLE_ALTSVC
  804. if(data->asi) {
  805. outcurl->asi = Curl_altsvc_init();
  806. if(!outcurl->asi)
  807. goto fail;
  808. if(outcurl->set.str[STRING_ALTSVC])
  809. (void)Curl_altsvc_load(outcurl->asi, outcurl->set.str[STRING_ALTSVC]);
  810. }
  811. #endif
  812. #ifndef CURL_DISABLE_HSTS
  813. if(data->hsts) {
  814. outcurl->hsts = Curl_hsts_init();
  815. if(!outcurl->hsts)
  816. goto fail;
  817. if(outcurl->set.str[STRING_HSTS])
  818. (void)Curl_hsts_loadfile(outcurl,
  819. outcurl->hsts, outcurl->set.str[STRING_HSTS]);
  820. (void)Curl_hsts_loadcb(outcurl, outcurl->hsts);
  821. }
  822. #endif
  823. /* Clone the resolver handle, if present, for the new handle */
  824. if(Curl_resolver_duphandle(outcurl,
  825. &outcurl->state.async.resolver,
  826. data->state.async.resolver))
  827. goto fail;
  828. #ifdef USE_ARES
  829. {
  830. CURLcode rc;
  831. rc = Curl_set_dns_servers(outcurl, data->set.str[STRING_DNS_SERVERS]);
  832. if(rc && rc != CURLE_NOT_BUILT_IN)
  833. goto fail;
  834. rc = Curl_set_dns_interface(outcurl, data->set.str[STRING_DNS_INTERFACE]);
  835. if(rc && rc != CURLE_NOT_BUILT_IN)
  836. goto fail;
  837. rc = Curl_set_dns_local_ip4(outcurl, data->set.str[STRING_DNS_LOCAL_IP4]);
  838. if(rc && rc != CURLE_NOT_BUILT_IN)
  839. goto fail;
  840. rc = Curl_set_dns_local_ip6(outcurl, data->set.str[STRING_DNS_LOCAL_IP6]);
  841. if(rc && rc != CURLE_NOT_BUILT_IN)
  842. goto fail;
  843. }
  844. #endif /* USE_ARES */
  845. Curl_initinfo(outcurl);
  846. outcurl->magic = CURLEASY_MAGIC_NUMBER;
  847. /* we reach this point and thus we are OK */
  848. return outcurl;
  849. fail:
  850. if(outcurl) {
  851. #ifndef CURL_DISABLE_COOKIES
  852. curl_slist_free_all(outcurl->set.cookielist);
  853. outcurl->set.cookielist = NULL;
  854. #endif
  855. Curl_safefree(outcurl->state.buffer);
  856. Curl_dyn_free(&outcurl->state.headerb);
  857. Curl_safefree(outcurl->state.url);
  858. Curl_safefree(outcurl->state.referer);
  859. Curl_altsvc_cleanup(&outcurl->asi);
  860. Curl_hsts_cleanup(&outcurl->hsts);
  861. Curl_freeset(outcurl);
  862. free(outcurl);
  863. }
  864. return NULL;
  865. }
  866. /*
  867. * curl_easy_reset() is an external interface that allows an app to re-
  868. * initialize a session handle to the default values.
  869. */
  870. void curl_easy_reset(struct Curl_easy *data)
  871. {
  872. Curl_free_request_state(data);
  873. /* zero out UserDefined data: */
  874. Curl_freeset(data);
  875. memset(&data->set, 0, sizeof(struct UserDefined));
  876. (void)Curl_init_userdefined(data);
  877. /* zero out Progress data: */
  878. memset(&data->progress, 0, sizeof(struct Progress));
  879. /* zero out PureInfo data: */
  880. Curl_initinfo(data);
  881. data->progress.flags |= PGRS_HIDE;
  882. data->state.current_speed = -1; /* init to negative == impossible */
  883. data->state.retrycount = 0; /* reset the retry counter */
  884. /* zero out authentication data: */
  885. memset(&data->state.authhost, 0, sizeof(struct auth));
  886. memset(&data->state.authproxy, 0, sizeof(struct auth));
  887. #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_DIGEST_AUTH)
  888. Curl_http_auth_cleanup_digest(data);
  889. #endif
  890. }
  891. /*
  892. * curl_easy_pause() allows an application to pause or unpause a specific
  893. * transfer and direction. This function sets the full new state for the
  894. * current connection this easy handle operates on.
  895. *
  896. * NOTE: if you have the receiving paused and you call this function to remove
  897. * the pausing, you may get your write callback called at this point.
  898. *
  899. * Action is a bitmask consisting of CURLPAUSE_* bits in curl/curl.h
  900. *
  901. * NOTE: This is one of few API functions that are allowed to be called from
  902. * within a callback.
  903. */
  904. CURLcode curl_easy_pause(struct Curl_easy *data, int action)
  905. {
  906. struct SingleRequest *k;
  907. CURLcode result = CURLE_OK;
  908. int oldstate;
  909. int newstate;
  910. bool recursive = FALSE;
  911. if(!GOOD_EASY_HANDLE(data) || !data->conn)
  912. /* crazy input, don't continue */
  913. return CURLE_BAD_FUNCTION_ARGUMENT;
  914. if(Curl_is_in_callback(data))
  915. recursive = TRUE;
  916. k = &data->req;
  917. oldstate = k->keepon & (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE);
  918. /* first switch off both pause bits then set the new pause bits */
  919. newstate = (k->keepon &~ (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE)) |
  920. ((action & CURLPAUSE_RECV)?KEEP_RECV_PAUSE:0) |
  921. ((action & CURLPAUSE_SEND)?KEEP_SEND_PAUSE:0);
  922. if((newstate & (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE)) == oldstate) {
  923. /* Not changing any pause state, return */
  924. DEBUGF(infof(data, "pause: no change, early return"));
  925. return CURLE_OK;
  926. }
  927. /* Unpause parts in active mime tree. */
  928. if((k->keepon & ~newstate & KEEP_SEND_PAUSE) &&
  929. (data->mstate == MSTATE_PERFORMING ||
  930. data->mstate == MSTATE_RATELIMITING) &&
  931. data->state.fread_func == (curl_read_callback) Curl_mime_read) {
  932. Curl_mime_unpause(data->state.in);
  933. }
  934. /* put it back in the keepon */
  935. k->keepon = newstate;
  936. if(!(newstate & KEEP_RECV_PAUSE)) {
  937. Curl_conn_ev_data_pause(data, FALSE);
  938. result = Curl_client_unpause(data);
  939. if(result)
  940. return result;
  941. }
  942. #ifdef USE_HYPER
  943. if(!(newstate & KEEP_SEND_PAUSE)) {
  944. /* need to wake the send body waker */
  945. if(data->hyp.send_body_waker) {
  946. hyper_waker_wake(data->hyp.send_body_waker);
  947. data->hyp.send_body_waker = NULL;
  948. }
  949. }
  950. #endif
  951. /* if there's no error and we're not pausing both directions, we want
  952. to have this handle checked soon */
  953. if((newstate & (KEEP_RECV_PAUSE|KEEP_SEND_PAUSE)) !=
  954. (KEEP_RECV_PAUSE|KEEP_SEND_PAUSE)) {
  955. Curl_expire(data, 0, EXPIRE_RUN_NOW); /* get this handle going again */
  956. /* reset the too-slow time keeper */
  957. data->state.keeps_speed.tv_sec = 0;
  958. if(!data->state.tempcount)
  959. /* if not pausing again, force a recv/send check of this connection as
  960. the data might've been read off the socket already */
  961. data->conn->cselect_bits = CURL_CSELECT_IN | CURL_CSELECT_OUT;
  962. if(data->multi) {
  963. if(Curl_update_timer(data->multi))
  964. return CURLE_ABORTED_BY_CALLBACK;
  965. }
  966. }
  967. if(!data->state.done)
  968. /* This transfer may have been moved in or out of the bundle, update the
  969. corresponding socket callback, if used */
  970. result = Curl_updatesocket(data);
  971. if(recursive)
  972. /* this might have called a callback recursively which might have set this
  973. to false again on exit */
  974. Curl_set_in_callback(data, TRUE);
  975. return result;
  976. }
  977. static CURLcode easy_connection(struct Curl_easy *data, curl_socket_t *sfd,
  978. struct connectdata **connp)
  979. {
  980. if(!data)
  981. return CURLE_BAD_FUNCTION_ARGUMENT;
  982. /* only allow these to be called on handles with CURLOPT_CONNECT_ONLY */
  983. if(!data->set.connect_only) {
  984. failf(data, "CONNECT_ONLY is required");
  985. return CURLE_UNSUPPORTED_PROTOCOL;
  986. }
  987. *sfd = Curl_getconnectinfo(data, connp);
  988. if(*sfd == CURL_SOCKET_BAD) {
  989. failf(data, "Failed to get recent socket");
  990. return CURLE_UNSUPPORTED_PROTOCOL;
  991. }
  992. return CURLE_OK;
  993. }
  994. /*
  995. * Receives data from the connected socket. Use after successful
  996. * curl_easy_perform() with CURLOPT_CONNECT_ONLY option.
  997. * Returns CURLE_OK on success, error code on error.
  998. */
  999. CURLcode curl_easy_recv(struct Curl_easy *data, void *buffer, size_t buflen,
  1000. size_t *n)
  1001. {
  1002. curl_socket_t sfd;
  1003. CURLcode result;
  1004. ssize_t n1;
  1005. struct connectdata *c;
  1006. if(Curl_is_in_callback(data))
  1007. return CURLE_RECURSIVE_API_CALL;
  1008. result = easy_connection(data, &sfd, &c);
  1009. if(result)
  1010. return result;
  1011. if(!data->conn)
  1012. /* on first invoke, the transfer has been detached from the connection and
  1013. needs to be reattached */
  1014. Curl_attach_connection(data, c);
  1015. *n = 0;
  1016. result = Curl_read(data, sfd, buffer, buflen, &n1);
  1017. if(result)
  1018. return result;
  1019. *n = (size_t)n1;
  1020. return CURLE_OK;
  1021. }
  1022. #ifdef USE_WEBSOCKETS
  1023. CURLcode Curl_connect_only_attach(struct Curl_easy *data)
  1024. {
  1025. curl_socket_t sfd;
  1026. CURLcode result;
  1027. struct connectdata *c = NULL;
  1028. result = easy_connection(data, &sfd, &c);
  1029. if(result)
  1030. return result;
  1031. if(!data->conn)
  1032. /* on first invoke, the transfer has been detached from the connection and
  1033. needs to be reattached */
  1034. Curl_attach_connection(data, c);
  1035. return CURLE_OK;
  1036. }
  1037. #endif /* USE_WEBSOCKETS */
  1038. /*
  1039. * Sends data over the connected socket.
  1040. *
  1041. * This is the private internal version of curl_easy_send()
  1042. */
  1043. CURLcode Curl_senddata(struct Curl_easy *data, const void *buffer,
  1044. size_t buflen, ssize_t *n)
  1045. {
  1046. curl_socket_t sfd;
  1047. CURLcode result;
  1048. ssize_t n1;
  1049. struct connectdata *c = NULL;
  1050. SIGPIPE_VARIABLE(pipe_st);
  1051. result = easy_connection(data, &sfd, &c);
  1052. if(result)
  1053. return result;
  1054. if(!data->conn)
  1055. /* on first invoke, the transfer has been detached from the connection and
  1056. needs to be reattached */
  1057. Curl_attach_connection(data, c);
  1058. *n = 0;
  1059. sigpipe_ignore(data, &pipe_st);
  1060. result = Curl_write(data, sfd, buffer, buflen, &n1);
  1061. sigpipe_restore(&pipe_st);
  1062. if(n1 == -1)
  1063. return CURLE_SEND_ERROR;
  1064. /* detect EAGAIN */
  1065. if(!result && !n1)
  1066. return CURLE_AGAIN;
  1067. *n = n1;
  1068. return result;
  1069. }
  1070. /*
  1071. * Sends data over the connected socket. Use after successful
  1072. * curl_easy_perform() with CURLOPT_CONNECT_ONLY option.
  1073. */
  1074. CURLcode curl_easy_send(struct Curl_easy *data, const void *buffer,
  1075. size_t buflen, size_t *n)
  1076. {
  1077. ssize_t written = 0;
  1078. CURLcode result;
  1079. if(Curl_is_in_callback(data))
  1080. return CURLE_RECURSIVE_API_CALL;
  1081. result = Curl_senddata(data, buffer, buflen, &written);
  1082. *n = (size_t)written;
  1083. return result;
  1084. }
  1085. /*
  1086. * Wrapper to call functions in Curl_conncache_foreach()
  1087. *
  1088. * Returns always 0.
  1089. */
  1090. static int conn_upkeep(struct Curl_easy *data,
  1091. struct connectdata *conn,
  1092. void *param)
  1093. {
  1094. struct curltime *now = param;
  1095. if(Curl_timediff(*now, conn->keepalive) <= data->set.upkeep_interval_ms)
  1096. return 0;
  1097. /* briefly attach for action */
  1098. Curl_attach_connection(data, conn);
  1099. if(conn->handler->connection_check) {
  1100. /* Do a protocol-specific keepalive check on the connection. */
  1101. conn->handler->connection_check(data, conn, CONNCHECK_KEEPALIVE);
  1102. }
  1103. else {
  1104. /* Do the generic action on the FIRSTSOCKE filter chain */
  1105. Curl_conn_keep_alive(data, conn, FIRSTSOCKET);
  1106. }
  1107. Curl_detach_connection(data);
  1108. conn->keepalive = *now;
  1109. return 0; /* continue iteration */
  1110. }
  1111. static CURLcode upkeep(struct conncache *conn_cache, void *data)
  1112. {
  1113. struct curltime now = Curl_now();
  1114. /* Loop over every connection and make connection alive. */
  1115. Curl_conncache_foreach(data,
  1116. conn_cache,
  1117. &now,
  1118. conn_upkeep);
  1119. return CURLE_OK;
  1120. }
  1121. /*
  1122. * Performs connection upkeep for the given session handle.
  1123. */
  1124. CURLcode curl_easy_upkeep(struct Curl_easy *data)
  1125. {
  1126. /* Verify that we got an easy handle we can work with. */
  1127. if(!GOOD_EASY_HANDLE(data))
  1128. return CURLE_BAD_FUNCTION_ARGUMENT;
  1129. if(data->multi_easy) {
  1130. /* Use the common function to keep connections alive. */
  1131. return upkeep(&data->multi_easy->conn_cache, data);
  1132. }
  1133. else {
  1134. /* No connections, so just return success */
  1135. return CURLE_OK;
  1136. }
  1137. }