urldata.h 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908
  1. #ifndef HEADER_CURL_URLDATA_H
  2. #define HEADER_CURL_URLDATA_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at https://curl.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. * SPDX-License-Identifier: curl
  24. *
  25. ***************************************************************************/
  26. /* This file is for lib internal stuff */
  27. #include "curl_setup.h"
  28. #define PORT_FTP 21
  29. #define PORT_FTPS 990
  30. #define PORT_TELNET 23
  31. #define PORT_HTTP 80
  32. #define PORT_HTTPS 443
  33. #define PORT_DICT 2628
  34. #define PORT_LDAP 389
  35. #define PORT_LDAPS 636
  36. #define PORT_TFTP 69
  37. #define PORT_SSH 22
  38. #define PORT_IMAP 143
  39. #define PORT_IMAPS 993
  40. #define PORT_POP3 110
  41. #define PORT_POP3S 995
  42. #define PORT_SMB 445
  43. #define PORT_SMBS 445
  44. #define PORT_SMTP 25
  45. #define PORT_SMTPS 465 /* sometimes called SSMTP */
  46. #define PORT_RTSP 554
  47. #define PORT_RTMP 1935
  48. #define PORT_RTMPT PORT_HTTP
  49. #define PORT_RTMPS PORT_HTTPS
  50. #define PORT_GOPHER 70
  51. #define PORT_MQTT 1883
  52. struct curl_trc_featt;
  53. #ifdef USE_WEBSOCKETS
  54. /* CURLPROTO_GOPHERS (29) is the highest publicly used protocol bit number,
  55. * the rest are internal information. If we use higher bits we only do this on
  56. * platforms that have a >= 64 bit type and then we use such a type for the
  57. * protocol fields in the protocol handler.
  58. */
  59. #define CURLPROTO_WS (1<<30)
  60. #define CURLPROTO_WSS ((curl_prot_t)1<<31)
  61. #else
  62. #define CURLPROTO_WS 0
  63. #define CURLPROTO_WSS 0
  64. #endif
  65. /* This should be undefined once we need bit 32 or higher */
  66. #define PROTO_TYPE_SMALL
  67. #ifndef PROTO_TYPE_SMALL
  68. typedef curl_off_t curl_prot_t;
  69. #else
  70. typedef unsigned int curl_prot_t;
  71. #endif
  72. /* This mask is for all the old protocols that are provided and defined in the
  73. public header and shall exclude protocols added since which are not exposed
  74. in the API */
  75. #define CURLPROTO_MASK (0x3ffffff)
  76. #define DICT_MATCH "/MATCH:"
  77. #define DICT_MATCH2 "/M:"
  78. #define DICT_MATCH3 "/FIND:"
  79. #define DICT_DEFINE "/DEFINE:"
  80. #define DICT_DEFINE2 "/D:"
  81. #define DICT_DEFINE3 "/LOOKUP:"
  82. #define CURL_DEFAULT_USER "anonymous"
  83. #define CURL_DEFAULT_PASSWORD "ftp@example.com"
  84. /* Convenience defines for checking protocols or their SSL based version. Each
  85. protocol handler should only ever have a single CURLPROTO_ in its protocol
  86. field. */
  87. #define PROTO_FAMILY_HTTP (CURLPROTO_HTTP|CURLPROTO_HTTPS|CURLPROTO_WS| \
  88. CURLPROTO_WSS)
  89. #define PROTO_FAMILY_FTP (CURLPROTO_FTP|CURLPROTO_FTPS)
  90. #define PROTO_FAMILY_POP3 (CURLPROTO_POP3|CURLPROTO_POP3S)
  91. #define PROTO_FAMILY_SMB (CURLPROTO_SMB|CURLPROTO_SMBS)
  92. #define PROTO_FAMILY_SMTP (CURLPROTO_SMTP|CURLPROTO_SMTPS)
  93. #define PROTO_FAMILY_SSH (CURLPROTO_SCP|CURLPROTO_SFTP)
  94. #if !defined(CURL_DISABLE_FTP) || defined(USE_SSH) || \
  95. !defined(CURL_DISABLE_POP3)
  96. /* these protocols support CURLOPT_DIRLISTONLY */
  97. #define CURL_LIST_ONLY_PROTOCOL 1
  98. #endif
  99. #define DEFAULT_CONNCACHE_SIZE 5
  100. /* length of longest IPv6 address string including the trailing null */
  101. #define MAX_IPADR_LEN sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")
  102. /* Default FTP/IMAP etc response timeout in milliseconds */
  103. #define RESP_TIMEOUT (120*1000)
  104. /* Max string input length is a precaution against abuse and to detect junk
  105. input easier and better. */
  106. #define CURL_MAX_INPUT_LENGTH 8000000
  107. #include "cookie.h"
  108. #include "psl.h"
  109. #include "formdata.h"
  110. #ifdef HAVE_NETINET_IN_H
  111. #include <netinet/in.h>
  112. #endif
  113. #ifdef HAVE_NETINET_IN6_H
  114. #include <netinet/in6.h>
  115. #endif
  116. #include "timeval.h"
  117. #include <curl/curl.h>
  118. #include "http_chunks.h" /* for the structs and enum stuff */
  119. #include "hostip.h"
  120. #include "hash.h"
  121. #include "splay.h"
  122. #include "dynbuf.h"
  123. #include "dynhds.h"
  124. #include "request.h"
  125. /* return the count of bytes sent, or -1 on error */
  126. typedef ssize_t (Curl_send)(struct Curl_easy *data, /* transfer */
  127. int sockindex, /* socketindex */
  128. const void *buf, /* data to write */
  129. size_t len, /* max amount to write */
  130. CURLcode *err); /* error to return */
  131. /* return the count of bytes read, or -1 on error */
  132. typedef ssize_t (Curl_recv)(struct Curl_easy *data, /* transfer */
  133. int sockindex, /* socketindex */
  134. char *buf, /* store data here */
  135. size_t len, /* max amount to read */
  136. CURLcode *err); /* error to return */
  137. #ifdef USE_HYPER
  138. typedef CURLcode (*Curl_datastream)(struct Curl_easy *data,
  139. struct connectdata *conn,
  140. int *didwhat,
  141. bool *done,
  142. int select_res);
  143. #endif
  144. #include "mime.h"
  145. #include "imap.h"
  146. #include "pop3.h"
  147. #include "smtp.h"
  148. #include "ftp.h"
  149. #include "file.h"
  150. #include "vssh/ssh.h"
  151. #include "http.h"
  152. #include "rtsp.h"
  153. #include "smb.h"
  154. #include "mqtt.h"
  155. #include "ftplistparser.h"
  156. #include "multihandle.h"
  157. #include "c-hyper.h"
  158. #include "cf-socket.h"
  159. #ifdef HAVE_GSSAPI
  160. # ifdef HAVE_GSSGNU
  161. # include <gss.h>
  162. # elif defined HAVE_GSSAPI_GSSAPI_H
  163. # include <gssapi/gssapi.h>
  164. # else
  165. # include <gssapi.h>
  166. # endif
  167. # ifdef HAVE_GSSAPI_GSSAPI_GENERIC_H
  168. # include <gssapi/gssapi_generic.h>
  169. # endif
  170. #endif
  171. #ifdef USE_LIBSSH2
  172. #include <libssh2.h>
  173. #include <libssh2_sftp.h>
  174. #endif /* USE_LIBSSH2 */
  175. #define READBUFFER_SIZE CURL_MAX_WRITE_SIZE
  176. #define READBUFFER_MAX CURL_MAX_READ_SIZE
  177. #define READBUFFER_MIN 1024
  178. /* The default upload buffer size, should not be smaller than
  179. CURL_MAX_WRITE_SIZE, as it needs to hold a full buffer as could be sent in
  180. a write callback.
  181. The size was 16KB for many years but was bumped to 64KB because it makes
  182. libcurl able to do significantly faster uploads in some circumstances. Even
  183. larger buffers can help further, but this is deemed a fair memory/speed
  184. compromise. */
  185. #define UPLOADBUFFER_DEFAULT 65536
  186. #define UPLOADBUFFER_MAX (2*1024*1024)
  187. #define UPLOADBUFFER_MIN CURL_MAX_WRITE_SIZE
  188. #define CURLEASY_MAGIC_NUMBER 0xc0dedbadU
  189. #ifdef DEBUGBUILD
  190. /* On a debug build, we want to fail hard on easy handles that
  191. * are not NULL, but no longer have the MAGIC touch. This gives
  192. * us early warning on things only discovered by valgrind otherwise. */
  193. #define GOOD_EASY_HANDLE(x) \
  194. (((x) && ((x)->magic == CURLEASY_MAGIC_NUMBER))? TRUE: \
  195. (DEBUGASSERT(!(x)), FALSE))
  196. #else
  197. #define GOOD_EASY_HANDLE(x) \
  198. ((x) && ((x)->magic == CURLEASY_MAGIC_NUMBER))
  199. #endif
  200. #ifdef HAVE_GSSAPI
  201. /* Types needed for krb5-ftp connections */
  202. struct krb5buffer {
  203. void *data;
  204. size_t size;
  205. size_t index;
  206. BIT(eof_flag);
  207. };
  208. enum protection_level {
  209. PROT_NONE, /* first in list */
  210. PROT_CLEAR,
  211. PROT_SAFE,
  212. PROT_CONFIDENTIAL,
  213. PROT_PRIVATE,
  214. PROT_CMD,
  215. PROT_LAST /* last in list */
  216. };
  217. #endif
  218. /* enum for the nonblocking SSL connection state machine */
  219. typedef enum {
  220. ssl_connect_1,
  221. ssl_connect_2,
  222. ssl_connect_2_reading,
  223. ssl_connect_2_writing,
  224. ssl_connect_3,
  225. ssl_connect_done
  226. } ssl_connect_state;
  227. typedef enum {
  228. ssl_connection_none,
  229. ssl_connection_negotiating,
  230. ssl_connection_complete
  231. } ssl_connection_state;
  232. /* SSL backend-specific data; declared differently by each SSL backend */
  233. struct ssl_backend_data;
  234. typedef enum {
  235. CURL_SSL_PEER_DNS,
  236. CURL_SSL_PEER_IPV4,
  237. CURL_SSL_PEER_IPV6
  238. } ssl_peer_type;
  239. struct ssl_peer {
  240. char *hostname; /* hostname for verification */
  241. char *dispname; /* display version of hostname */
  242. char *sni; /* SNI version of hostname or NULL if not usable */
  243. ssl_peer_type type; /* type of the peer information */
  244. };
  245. struct ssl_primary_config {
  246. char *CApath; /* certificate dir (doesn't work on windows) */
  247. char *CAfile; /* certificate to verify peer against */
  248. char *issuercert; /* optional issuer certificate filename */
  249. char *clientcert;
  250. char *cipher_list; /* list of ciphers to use */
  251. char *cipher_list13; /* list of TLS 1.3 cipher suites to use */
  252. char *pinned_key;
  253. char *CRLfile; /* CRL to check certificate revocation */
  254. struct curl_blob *cert_blob;
  255. struct curl_blob *ca_info_blob;
  256. struct curl_blob *issuercert_blob;
  257. #ifdef USE_TLS_SRP
  258. char *username; /* TLS username (for, e.g., SRP) */
  259. char *password; /* TLS password (for, e.g., SRP) */
  260. #endif
  261. char *curves; /* list of curves to use */
  262. unsigned char ssl_options; /* the CURLOPT_SSL_OPTIONS bitmask */
  263. unsigned int version_max; /* max supported version the client wants to use */
  264. unsigned char version; /* what version the client wants to use */
  265. BIT(verifypeer); /* set TRUE if this is desired */
  266. BIT(verifyhost); /* set TRUE if CN/SAN must match hostname */
  267. BIT(verifystatus); /* set TRUE if certificate status must be checked */
  268. BIT(sessionid); /* cache session IDs or not */
  269. };
  270. struct ssl_config_data {
  271. struct ssl_primary_config primary;
  272. long certverifyresult; /* result from the certificate verification */
  273. curl_ssl_ctx_callback fsslctx; /* function to initialize ssl ctx */
  274. void *fsslctxp; /* parameter for call back */
  275. char *cert_type; /* format for certificate (default: PEM)*/
  276. char *key; /* private key file name */
  277. struct curl_blob *key_blob;
  278. char *key_type; /* format for private key (default: PEM) */
  279. char *key_passwd; /* plain text private key password */
  280. BIT(certinfo); /* gather lots of certificate info */
  281. BIT(falsestart);
  282. BIT(enable_beast); /* allow this flaw for interoperability's sake */
  283. BIT(no_revoke); /* disable SSL certificate revocation checks */
  284. BIT(no_partialchain); /* don't accept partial certificate chains */
  285. BIT(revoke_best_effort); /* ignore SSL revocation offline/missing revocation
  286. list errors */
  287. BIT(native_ca_store); /* use the native ca store of operating system */
  288. BIT(auto_client_cert); /* automatically locate and use a client
  289. certificate for authentication (Schannel) */
  290. };
  291. struct ssl_general_config {
  292. size_t max_ssl_sessions; /* SSL session id cache size */
  293. int ca_cache_timeout; /* Certificate store cache timeout (seconds) */
  294. };
  295. /* information stored about one single SSL session */
  296. struct Curl_ssl_session {
  297. char *name; /* host name for which this ID was used */
  298. char *conn_to_host; /* host name for the connection (may be NULL) */
  299. const char *scheme; /* protocol scheme used */
  300. void *sessionid; /* as returned from the SSL layer */
  301. size_t idsize; /* if known, otherwise 0 */
  302. long age; /* just a number, the higher the more recent */
  303. int remote_port; /* remote port */
  304. int conn_to_port; /* remote port for the connection (may be -1) */
  305. struct ssl_primary_config ssl_config; /* setup for this session */
  306. };
  307. #ifdef USE_WINDOWS_SSPI
  308. #include "curl_sspi.h"
  309. #endif
  310. #ifndef CURL_DISABLE_DIGEST_AUTH
  311. /* Struct used for Digest challenge-response authentication */
  312. struct digestdata {
  313. #if defined(USE_WINDOWS_SSPI)
  314. BYTE *input_token;
  315. size_t input_token_len;
  316. CtxtHandle *http_context;
  317. /* copy of user/passwd used to make the identity for http_context.
  318. either may be NULL. */
  319. char *user;
  320. char *passwd;
  321. #else
  322. char *nonce;
  323. char *cnonce;
  324. char *realm;
  325. char *opaque;
  326. char *qop;
  327. char *algorithm;
  328. int nc; /* nonce count */
  329. unsigned char algo;
  330. BIT(stale); /* set true for re-negotiation */
  331. BIT(userhash);
  332. #endif
  333. };
  334. #endif
  335. typedef enum {
  336. NTLMSTATE_NONE,
  337. NTLMSTATE_TYPE1,
  338. NTLMSTATE_TYPE2,
  339. NTLMSTATE_TYPE3,
  340. NTLMSTATE_LAST
  341. } curlntlm;
  342. typedef enum {
  343. GSS_AUTHNONE,
  344. GSS_AUTHRECV,
  345. GSS_AUTHSENT,
  346. GSS_AUTHDONE,
  347. GSS_AUTHSUCC
  348. } curlnegotiate;
  349. /* Struct used for GSSAPI (Kerberos V5) authentication */
  350. #if defined(USE_KERBEROS5)
  351. struct kerberos5data {
  352. #if defined(USE_WINDOWS_SSPI)
  353. CredHandle *credentials;
  354. CtxtHandle *context;
  355. TCHAR *spn;
  356. SEC_WINNT_AUTH_IDENTITY identity;
  357. SEC_WINNT_AUTH_IDENTITY *p_identity;
  358. size_t token_max;
  359. BYTE *output_token;
  360. #else
  361. gss_ctx_id_t context;
  362. gss_name_t spn;
  363. #endif
  364. };
  365. #endif
  366. /* Struct used for SCRAM-SHA-1 authentication */
  367. #ifdef USE_GSASL
  368. #include <gsasl.h>
  369. struct gsasldata {
  370. Gsasl *ctx;
  371. Gsasl_session *client;
  372. };
  373. #endif
  374. /* Struct used for NTLM challenge-response authentication */
  375. #if defined(USE_NTLM)
  376. struct ntlmdata {
  377. #ifdef USE_WINDOWS_SSPI
  378. /* The sslContext is used for the Schannel bindings. The
  379. * api is available on the Windows 7 SDK and later.
  380. */
  381. #ifdef SECPKG_ATTR_ENDPOINT_BINDINGS
  382. CtxtHandle *sslContext;
  383. #endif
  384. CredHandle *credentials;
  385. CtxtHandle *context;
  386. SEC_WINNT_AUTH_IDENTITY identity;
  387. SEC_WINNT_AUTH_IDENTITY *p_identity;
  388. size_t token_max;
  389. BYTE *output_token;
  390. BYTE *input_token;
  391. size_t input_token_len;
  392. TCHAR *spn;
  393. #else
  394. unsigned int flags;
  395. unsigned char nonce[8];
  396. unsigned int target_info_len;
  397. void *target_info; /* TargetInfo received in the ntlm type-2 message */
  398. #if defined(NTLM_WB_ENABLED)
  399. /* used for communication with Samba's winbind daemon helper ntlm_auth */
  400. curl_socket_t ntlm_auth_hlpr_socket;
  401. pid_t ntlm_auth_hlpr_pid;
  402. char *challenge; /* The received base64 encoded ntlm type-2 message */
  403. char *response; /* The generated base64 ntlm type-1/type-3 message */
  404. #endif
  405. #endif
  406. };
  407. #endif
  408. /* Struct used for Negotiate (SPNEGO) authentication */
  409. #ifdef USE_SPNEGO
  410. struct negotiatedata {
  411. #ifdef HAVE_GSSAPI
  412. OM_uint32 status;
  413. gss_ctx_id_t context;
  414. gss_name_t spn;
  415. gss_buffer_desc output_token;
  416. #else
  417. #ifdef USE_WINDOWS_SSPI
  418. #ifdef SECPKG_ATTR_ENDPOINT_BINDINGS
  419. CtxtHandle *sslContext;
  420. #endif
  421. DWORD status;
  422. CredHandle *credentials;
  423. CtxtHandle *context;
  424. SEC_WINNT_AUTH_IDENTITY identity;
  425. SEC_WINNT_AUTH_IDENTITY *p_identity;
  426. TCHAR *spn;
  427. size_t token_max;
  428. BYTE *output_token;
  429. size_t output_token_length;
  430. #endif
  431. #endif
  432. BIT(noauthpersist);
  433. BIT(havenoauthpersist);
  434. BIT(havenegdata);
  435. BIT(havemultiplerequests);
  436. };
  437. #endif
  438. #ifdef CURL_DISABLE_PROXY
  439. #define CONN_IS_PROXIED(x) 0
  440. #else
  441. #define CONN_IS_PROXIED(x) x->bits.proxy
  442. #endif
  443. /*
  444. * Boolean values that concerns this connection.
  445. */
  446. struct ConnectBits {
  447. #ifndef CURL_DISABLE_PROXY
  448. BIT(httpproxy); /* if set, this transfer is done through an HTTP proxy */
  449. BIT(socksproxy); /* if set, this transfer is done through a socks proxy */
  450. BIT(proxy_user_passwd); /* user+password for the proxy? */
  451. BIT(tunnel_proxy); /* if CONNECT is used to "tunnel" through the proxy.
  452. This is implicit when SSL-protocols are used through
  453. proxies, but can also be enabled explicitly by
  454. apps */
  455. BIT(proxy_connect_closed); /* TRUE if a proxy disconnected the connection
  456. in a CONNECT request with auth, so that
  457. libcurl should reconnect and continue. */
  458. BIT(proxy); /* if set, this transfer is done through a proxy - any type */
  459. #endif
  460. /* always modify bits.close with the connclose() and connkeep() macros! */
  461. BIT(close); /* if set, we close the connection after this request */
  462. BIT(reuse); /* if set, this is a reused connection */
  463. BIT(altused); /* this is an alt-svc "redirect" */
  464. BIT(conn_to_host); /* if set, this connection has a "connect to host"
  465. that overrides the host in the URL */
  466. BIT(conn_to_port); /* if set, this connection has a "connect to port"
  467. that overrides the port in the URL (remote port) */
  468. BIT(ipv6_ip); /* we communicate with a remote site specified with pure IPv6
  469. IP address */
  470. BIT(ipv6); /* we communicate with a site using an IPv6 address */
  471. BIT(do_more); /* this is set TRUE if the ->curl_do_more() function is
  472. supposed to be called, after ->curl_do() */
  473. BIT(protoconnstart);/* the protocol layer has STARTED its operation after
  474. the TCP layer connect */
  475. BIT(retry); /* this connection is about to get closed and then
  476. re-attempted at another connection. */
  477. #ifndef CURL_DISABLE_FTP
  478. BIT(ftp_use_epsv); /* As set with CURLOPT_FTP_USE_EPSV, but if we find out
  479. EPSV doesn't work we disable it for the forthcoming
  480. requests */
  481. BIT(ftp_use_eprt); /* As set with CURLOPT_FTP_USE_EPRT, but if we find out
  482. EPRT doesn't work we disable it for the forthcoming
  483. requests */
  484. BIT(ftp_use_data_ssl); /* Enabled SSL for the data connection */
  485. BIT(ftp_use_control_ssl); /* Enabled SSL for the control connection */
  486. #endif
  487. #ifndef CURL_DISABLE_NETRC
  488. BIT(netrc); /* name+password provided by netrc */
  489. #endif
  490. BIT(bound); /* set true if bind() has already been done on this socket/
  491. connection */
  492. BIT(multiplex); /* connection is multiplexed */
  493. BIT(tcp_fastopen); /* use TCP Fast Open */
  494. BIT(tls_enable_alpn); /* TLS ALPN extension? */
  495. #ifndef CURL_DISABLE_DOH
  496. BIT(doh);
  497. #endif
  498. #ifdef USE_UNIX_SOCKETS
  499. BIT(abstract_unix_socket);
  500. #endif
  501. BIT(tls_upgraded);
  502. BIT(sock_accepted); /* TRUE if the SECONDARYSOCKET was created with
  503. accept() */
  504. BIT(parallel_connect); /* set TRUE when a parallel connect attempt has
  505. started (happy eyeballs) */
  506. };
  507. struct hostname {
  508. char *rawalloc; /* allocated "raw" version of the name */
  509. char *encalloc; /* allocated IDN-encoded version of the name */
  510. char *name; /* name to use internally, might be encoded, might be raw */
  511. const char *dispname; /* name to display, as 'name' might be encoded */
  512. };
  513. /*
  514. * Flags on the keepon member of the Curl_transfer_keeper
  515. */
  516. #define KEEP_NONE 0
  517. #define KEEP_RECV (1<<0) /* there is or may be data to read */
  518. #define KEEP_SEND (1<<1) /* there is or may be data to write */
  519. #define KEEP_RECV_HOLD (1<<2) /* when set, no reading should be done but there
  520. might still be data to read */
  521. #define KEEP_SEND_HOLD (1<<3) /* when set, no writing should be done but there
  522. might still be data to write */
  523. #define KEEP_RECV_PAUSE (1<<4) /* reading is paused */
  524. #define KEEP_SEND_PAUSE (1<<5) /* writing is paused */
  525. #define KEEP_RECVBITS (KEEP_RECV | KEEP_RECV_HOLD | KEEP_RECV_PAUSE)
  526. #define KEEP_SENDBITS (KEEP_SEND | KEEP_SEND_HOLD | KEEP_SEND_PAUSE)
  527. /* transfer wants to send is not PAUSE or HOLD */
  528. #define CURL_WANT_SEND(data) \
  529. (((data)->req.keepon & KEEP_SENDBITS) == KEEP_SEND)
  530. /* transfer receive is not on PAUSE or HOLD */
  531. #define CURL_WANT_RECV(data) \
  532. (((data)->req.keepon & KEEP_RECVBITS) == KEEP_RECV)
  533. #if defined(CURLRES_ASYNCH) || !defined(CURL_DISABLE_DOH)
  534. #define USE_CURL_ASYNC
  535. struct Curl_async {
  536. char *hostname;
  537. struct Curl_dns_entry *dns;
  538. struct thread_data *tdata;
  539. void *resolver; /* resolver state, if it is used in the URL state -
  540. ares_channel e.g. */
  541. int port;
  542. int status; /* if done is TRUE, this is the status from the callback */
  543. BIT(done); /* set TRUE when the lookup is complete */
  544. };
  545. #endif
  546. #define FIRSTSOCKET 0
  547. #define SECONDARYSOCKET 1
  548. /* Polling requested by an easy handle.
  549. * `action` is CURL_POLL_IN, CURL_POLL_OUT or CURL_POLL_INOUT.
  550. */
  551. struct easy_pollset {
  552. curl_socket_t sockets[MAX_SOCKSPEREASYHANDLE];
  553. unsigned int num;
  554. unsigned char actions[MAX_SOCKSPEREASYHANDLE];
  555. };
  556. enum doh_slots {
  557. /* Explicit values for first two symbols so as to match hard-coded
  558. * constants in existing code
  559. */
  560. DOH_PROBE_SLOT_IPADDR_V4 = 0, /* make 'V4' stand out for readability */
  561. DOH_PROBE_SLOT_IPADDR_V6 = 1, /* 'V6' likewise */
  562. /* Space here for (possibly build-specific) additional slot definitions */
  563. /* for example */
  564. /* #ifdef WANT_DOH_FOOBAR_TXT */
  565. /* DOH_PROBE_SLOT_FOOBAR_TXT, */
  566. /* #endif */
  567. /* AFTER all slot definitions, establish how many we have */
  568. DOH_PROBE_SLOTS
  569. };
  570. /*
  571. * Specific protocol handler.
  572. */
  573. struct Curl_handler {
  574. const char *scheme; /* URL scheme name. */
  575. /* Complement to setup_connection_internals(). This is done before the
  576. transfer "owns" the connection. */
  577. CURLcode (*setup_connection)(struct Curl_easy *data,
  578. struct connectdata *conn);
  579. /* These two functions MUST be set to be protocol dependent */
  580. CURLcode (*do_it)(struct Curl_easy *data, bool *done);
  581. CURLcode (*done)(struct Curl_easy *, CURLcode, bool);
  582. /* If the curl_do() function is better made in two halves, this
  583. * curl_do_more() function will be called afterwards, if set. For example
  584. * for doing the FTP stuff after the PASV/PORT command.
  585. */
  586. CURLcode (*do_more)(struct Curl_easy *, int *);
  587. /* This function *MAY* be set to a protocol-dependent function that is run
  588. * after the connect() and everything is done, as a step in the connection.
  589. * The 'done' pointer points to a bool that should be set to TRUE if the
  590. * function completes before return. If it doesn't complete, the caller
  591. * should call the ->connecting() function until it is.
  592. */
  593. CURLcode (*connect_it)(struct Curl_easy *data, bool *done);
  594. /* See above. */
  595. CURLcode (*connecting)(struct Curl_easy *data, bool *done);
  596. CURLcode (*doing)(struct Curl_easy *data, bool *done);
  597. /* Called from the multi interface during the PROTOCONNECT phase, and it
  598. should then return a proper fd set */
  599. int (*proto_getsock)(struct Curl_easy *data,
  600. struct connectdata *conn, curl_socket_t *socks);
  601. /* Called from the multi interface during the DOING phase, and it should
  602. then return a proper fd set */
  603. int (*doing_getsock)(struct Curl_easy *data,
  604. struct connectdata *conn, curl_socket_t *socks);
  605. /* Called from the multi interface during the DO_MORE phase, and it should
  606. then return a proper fd set */
  607. int (*domore_getsock)(struct Curl_easy *data,
  608. struct connectdata *conn, curl_socket_t *socks);
  609. /* Called from the multi interface during the DO_DONE, PERFORM and
  610. WAITPERFORM phases, and it should then return a proper fd set. Not setting
  611. this will make libcurl use the generic default one. */
  612. int (*perform_getsock)(struct Curl_easy *data,
  613. struct connectdata *conn, curl_socket_t *socks);
  614. /* This function *MAY* be set to a protocol-dependent function that is run
  615. * by the curl_disconnect(), as a step in the disconnection. If the handler
  616. * is called because the connection has been considered dead,
  617. * dead_connection is set to TRUE. The connection is (again) associated with
  618. * the transfer here.
  619. */
  620. CURLcode (*disconnect)(struct Curl_easy *, struct connectdata *,
  621. bool dead_connection);
  622. /* If used, this function gets called from transfer.c:readwrite_data() to
  623. allow the protocol to do extra handling in writing response to
  624. the client. */
  625. CURLcode (*write_resp)(struct Curl_easy *data, const char *buf, size_t blen,
  626. bool is_eos, bool *done);
  627. /* This function can perform various checks on the connection. See
  628. CONNCHECK_* for more information about the checks that can be performed,
  629. and CONNRESULT_* for the results that can be returned. */
  630. unsigned int (*connection_check)(struct Curl_easy *data,
  631. struct connectdata *conn,
  632. unsigned int checks_to_perform);
  633. /* attach() attaches this transfer to this connection */
  634. void (*attach)(struct Curl_easy *data, struct connectdata *conn);
  635. int defport; /* Default port. */
  636. curl_prot_t protocol; /* See CURLPROTO_* - this needs to be the single
  637. specific protocol bit */
  638. curl_prot_t family; /* single bit for protocol family; basically the
  639. non-TLS name of the protocol this is */
  640. unsigned int flags; /* Extra particular characteristics, see PROTOPT_* */
  641. };
  642. #define PROTOPT_NONE 0 /* nothing extra */
  643. #define PROTOPT_SSL (1<<0) /* uses SSL */
  644. #define PROTOPT_DUAL (1<<1) /* this protocol uses two connections */
  645. #define PROTOPT_CLOSEACTION (1<<2) /* need action before socket close */
  646. /* some protocols will have to call the underlying functions without regard to
  647. what exact state the socket signals. IE even if the socket says "readable",
  648. the send function might need to be called while uploading, or vice versa.
  649. */
  650. #define PROTOPT_DIRLOCK (1<<3)
  651. #define PROTOPT_NONETWORK (1<<4) /* protocol doesn't use the network! */
  652. #define PROTOPT_NEEDSPWD (1<<5) /* needs a password, and if none is set it
  653. gets a default */
  654. #define PROTOPT_NOURLQUERY (1<<6) /* protocol can't handle
  655. url query strings (?foo=bar) ! */
  656. #define PROTOPT_CREDSPERREQUEST (1<<7) /* requires login credentials per
  657. request instead of per connection */
  658. #define PROTOPT_ALPN (1<<8) /* set ALPN for this */
  659. /* (1<<9) was PROTOPT_STREAM, now free */
  660. #define PROTOPT_URLOPTIONS (1<<10) /* allow options part in the userinfo field
  661. of the URL */
  662. #define PROTOPT_PROXY_AS_HTTP (1<<11) /* allow this non-HTTP scheme over a
  663. HTTP proxy as HTTP proxies may know
  664. this protocol and act as a gateway */
  665. #define PROTOPT_WILDCARD (1<<12) /* protocol supports wildcard matching */
  666. #define PROTOPT_USERPWDCTRL (1<<13) /* Allow "control bytes" (< 32 ascii) in
  667. user name and password */
  668. #define PROTOPT_NOTCPPROXY (1<<14) /* this protocol can't proxy over TCP */
  669. #define CONNCHECK_NONE 0 /* No checks */
  670. #define CONNCHECK_ISDEAD (1<<0) /* Check if the connection is dead. */
  671. #define CONNCHECK_KEEPALIVE (1<<1) /* Perform any keepalive function. */
  672. #define CONNRESULT_NONE 0 /* No extra information. */
  673. #define CONNRESULT_DEAD (1<<0) /* The connection is dead. */
  674. struct ip_quadruple {
  675. char remote_ip[MAX_IPADR_LEN];
  676. char local_ip[MAX_IPADR_LEN];
  677. int remote_port;
  678. int local_port;
  679. };
  680. struct proxy_info {
  681. struct hostname host;
  682. int port;
  683. unsigned char proxytype; /* curl_proxytype: what kind of proxy that is in
  684. use */
  685. char *user; /* proxy user name string, allocated */
  686. char *passwd; /* proxy password string, allocated */
  687. };
  688. struct ldapconninfo;
  689. #define TRNSPRT_TCP 3
  690. #define TRNSPRT_UDP 4
  691. #define TRNSPRT_QUIC 5
  692. #define TRNSPRT_UNIX 6
  693. /*
  694. * The connectdata struct contains all fields and variables that should be
  695. * unique for an entire connection.
  696. */
  697. struct connectdata {
  698. struct Curl_llist_element bundle_node; /* conncache */
  699. curl_closesocket_callback fclosesocket; /* function closing the socket(s) */
  700. void *closesocket_client;
  701. /* This is used by the connection cache logic. If this returns TRUE, this
  702. handle is still used by one or more easy handles and can only used by any
  703. other easy handle without careful consideration (== only for
  704. multiplexing) and it cannot be used by another multi handle! */
  705. #define CONN_INUSE(c) ((c)->easyq.size)
  706. /**** Fields set when inited and not modified again */
  707. curl_off_t connection_id; /* Contains a unique number to make it easier to
  708. track the connections in the log output */
  709. /* 'dns_entry' is the particular host we use. This points to an entry in the
  710. DNS cache and it will not get pruned while locked. It gets unlocked in
  711. multi_done(). This entry will be NULL if the connection is reused as then
  712. there is no name resolve done. */
  713. struct Curl_dns_entry *dns_entry;
  714. /* 'remote_addr' is the particular IP we connected to. it is owned, set
  715. * and NULLed by the connected socket filter (if there is one). */
  716. const struct Curl_sockaddr_ex *remote_addr;
  717. struct hostname host;
  718. char *hostname_resolve; /* host name to resolve to address, allocated */
  719. char *secondaryhostname; /* secondary socket host name (ftp) */
  720. struct hostname conn_to_host; /* the host to connect to. valid only if
  721. bits.conn_to_host is set */
  722. #ifndef CURL_DISABLE_PROXY
  723. struct proxy_info socks_proxy;
  724. struct proxy_info http_proxy;
  725. #endif
  726. /* 'primary' and 'secondary' get filled with IP quadruple
  727. (local/remote numerical ip address and port) whenever a is *attempted*.
  728. When more than one address is tried for a connection these will hold data
  729. for the last attempt. When the connection is actually established
  730. these are updated with data which comes directly from the socket. */
  731. struct ip_quadruple primary;
  732. struct ip_quadruple secondary;
  733. char *user; /* user name string, allocated */
  734. char *passwd; /* password string, allocated */
  735. char *options; /* options string, allocated */
  736. char *sasl_authzid; /* authorization identity string, allocated */
  737. char *oauth_bearer; /* OAUTH2 bearer, allocated */
  738. struct curltime now; /* "current" time */
  739. struct curltime created; /* creation time */
  740. struct curltime lastused; /* when returned to the connection cache */
  741. curl_socket_t sock[2]; /* two sockets, the second is used for the data
  742. transfer when doing FTP */
  743. Curl_recv *recv[2];
  744. Curl_send *send[2];
  745. struct Curl_cfilter *cfilter[2]; /* connection filters */
  746. struct ssl_primary_config ssl_config;
  747. #ifndef CURL_DISABLE_PROXY
  748. struct ssl_primary_config proxy_ssl_config;
  749. #endif
  750. struct ConnectBits bits; /* various state-flags for this connection */
  751. const struct Curl_handler *handler; /* Connection's protocol handler */
  752. const struct Curl_handler *given; /* The protocol first given */
  753. /* Protocols can use a custom keepalive mechanism to keep connections alive.
  754. This allows those protocols to track the last time the keepalive mechanism
  755. was used on this connection. */
  756. struct curltime keepalive;
  757. /**** curl_get() phase fields */
  758. curl_socket_t sockfd; /* socket to read from or CURL_SOCKET_BAD */
  759. curl_socket_t writesockfd; /* socket to write to, it may very
  760. well be the same we read from.
  761. CURL_SOCKET_BAD disables */
  762. #ifdef HAVE_GSSAPI
  763. BIT(sec_complete); /* if Kerberos is enabled for this connection */
  764. unsigned char command_prot; /* enum protection_level */
  765. unsigned char data_prot; /* enum protection_level */
  766. unsigned char request_data_prot; /* enum protection_level */
  767. size_t buffer_size;
  768. struct krb5buffer in_buffer;
  769. void *app_data;
  770. const struct Curl_sec_client_mech *mech;
  771. struct sockaddr_in local_addr;
  772. #endif
  773. #if defined(USE_KERBEROS5) /* Consider moving some of the above GSS-API */
  774. struct kerberos5data krb5; /* variables into the structure definition, */
  775. #endif /* however, some of them are ftp specific. */
  776. struct Curl_llist easyq; /* List of easy handles using this connection */
  777. /*************** Request - specific items ************/
  778. #if defined(USE_WINDOWS_SSPI) && defined(SECPKG_ATTR_ENDPOINT_BINDINGS)
  779. CtxtHandle *sslContext;
  780. #endif
  781. #if defined(_WIN32) && defined(USE_WINSOCK)
  782. struct curltime last_sndbuf_update; /* last time readwrite_upload called
  783. win_update_buffer_size */
  784. #endif
  785. #ifdef USE_GSASL
  786. struct gsasldata gsasl;
  787. #endif
  788. #if defined(USE_NTLM)
  789. curlntlm http_ntlm_state;
  790. curlntlm proxy_ntlm_state;
  791. struct ntlmdata ntlm; /* NTLM differs from other authentication schemes
  792. because it authenticates connections, not
  793. single requests! */
  794. struct ntlmdata proxyntlm; /* NTLM data for proxy */
  795. #endif
  796. #ifdef USE_SPNEGO
  797. curlnegotiate http_negotiate_state;
  798. curlnegotiate proxy_negotiate_state;
  799. struct negotiatedata negotiate; /* state data for host Negotiate auth */
  800. struct negotiatedata proxyneg; /* state data for proxy Negotiate auth */
  801. #endif
  802. union {
  803. #ifndef CURL_DISABLE_FTP
  804. struct ftp_conn ftpc;
  805. #endif
  806. #ifdef USE_SSH
  807. struct ssh_conn sshc;
  808. #endif
  809. #ifndef CURL_DISABLE_TFTP
  810. struct tftp_state_data *tftpc;
  811. #endif
  812. #ifndef CURL_DISABLE_IMAP
  813. struct imap_conn imapc;
  814. #endif
  815. #ifndef CURL_DISABLE_POP3
  816. struct pop3_conn pop3c;
  817. #endif
  818. #ifndef CURL_DISABLE_SMTP
  819. struct smtp_conn smtpc;
  820. #endif
  821. #ifndef CURL_DISABLE_RTSP
  822. struct rtsp_conn rtspc;
  823. #endif
  824. #ifndef CURL_DISABLE_SMB
  825. struct smb_conn smbc;
  826. #endif
  827. #ifdef USE_LIBRTMP
  828. void *rtmp;
  829. #endif
  830. #ifdef USE_OPENLDAP
  831. struct ldapconninfo *ldapc;
  832. #endif
  833. #ifndef CURL_DISABLE_MQTT
  834. struct mqtt_conn mqtt;
  835. #endif
  836. #ifdef USE_WEBSOCKETS
  837. struct websocket *ws;
  838. #endif
  839. unsigned int unused:1; /* avoids empty union */
  840. } proto;
  841. struct connectbundle *bundle; /* The bundle we are member of */
  842. #ifdef USE_UNIX_SOCKETS
  843. char *unix_domain_socket;
  844. #endif
  845. #ifdef USE_HYPER
  846. /* if set, an alternative data transfer function */
  847. Curl_datastream datastream;
  848. #endif
  849. /* When this connection is created, store the conditions for the local end
  850. bind. This is stored before the actual bind and before any connection is
  851. made and will serve the purpose of being used for comparison reasons so
  852. that subsequent bound-requested connections aren't accidentally reusing
  853. wrong connections. */
  854. char *localdev;
  855. unsigned short localportrange;
  856. int waitfor; /* current READ/WRITE bits to wait for */
  857. #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
  858. int socks5_gssapi_enctype;
  859. #endif
  860. /* The field below gets set in connect.c:connecthost() */
  861. int remote_port; /* the remote port, not the proxy port! */
  862. int conn_to_port; /* the remote port to connect to. valid only if
  863. bits.conn_to_port is set */
  864. #ifdef ENABLE_IPV6
  865. unsigned int scope_id; /* Scope id for IPv6 */
  866. #endif
  867. unsigned short localport;
  868. unsigned short secondary_port; /* secondary socket remote port to connect to
  869. (ftp) */
  870. unsigned char alpn; /* APLN TLS negotiated protocol, a CURL_HTTP_VERSION*
  871. value */
  872. #ifndef CURL_DISABLE_PROXY
  873. unsigned char proxy_alpn; /* APLN of proxy tunnel, CURL_HTTP_VERSION* */
  874. #endif
  875. unsigned char transport; /* one of the TRNSPRT_* defines */
  876. unsigned char ip_version; /* copied from the Curl_easy at creation time */
  877. unsigned char httpversion; /* the HTTP version*10 reported by the server */
  878. unsigned char connect_only;
  879. unsigned char gssapi_delegation; /* inherited from set.gssapi_delegation */
  880. };
  881. #ifndef CURL_DISABLE_PROXY
  882. #define CURL_CONN_HOST_DISPNAME(c) \
  883. ((c)->bits.socksproxy ? (c)->socks_proxy.host.dispname : \
  884. (c)->bits.httpproxy ? (c)->http_proxy.host.dispname : \
  885. (c)->bits.conn_to_host ? (c)->conn_to_host.dispname : \
  886. (c)->host.dispname)
  887. #else
  888. #define CURL_CONN_HOST_DISPNAME(c) \
  889. (c)->bits.conn_to_host ? (c)->conn_to_host.dispname : \
  890. (c)->host.dispname
  891. #endif
  892. /* The end of connectdata. */
  893. /*
  894. * Struct to keep statistical and informational data.
  895. * All variables in this struct must be initialized/reset in Curl_initinfo().
  896. */
  897. struct PureInfo {
  898. int httpcode; /* Recent HTTP, FTP, RTSP or SMTP response code */
  899. int httpproxycode; /* response code from proxy when received separate */
  900. int httpversion; /* the http version number X.Y = X*10+Y */
  901. time_t filetime; /* If requested, this is might get set. Set to -1 if the
  902. time was unretrievable. */
  903. curl_off_t request_size; /* the amount of bytes sent in the request(s) */
  904. unsigned long proxyauthavail; /* what proxy auth types were announced */
  905. unsigned long httpauthavail; /* what host auth types were announced */
  906. long numconnects; /* how many new connection did libcurl created */
  907. char *contenttype; /* the content type of the object */
  908. char *wouldredirect; /* URL this would've been redirected to if asked to */
  909. curl_off_t retry_after; /* info from Retry-After: header */
  910. unsigned int header_size; /* size of read header(s) in bytes */
  911. /* PureInfo primary ip_quadruple is copied over from the connectdata
  912. struct in order to allow curl_easy_getinfo() to return this information
  913. even when the session handle is no longer associated with a connection,
  914. and also allow curl_easy_reset() to clear this information from the
  915. session handle without disturbing information which is still alive, and
  916. that might be reused, in the connection cache. */
  917. struct ip_quadruple primary;
  918. int conn_remote_port; /* this is the "remote port", which is the port
  919. number of the used URL, independent of proxy or
  920. not */
  921. const char *conn_scheme;
  922. unsigned int conn_protocol;
  923. struct curl_certinfo certs; /* info about the certs. Asked for with
  924. CURLOPT_CERTINFO / CURLINFO_CERTINFO */
  925. CURLproxycode pxcode;
  926. BIT(timecond); /* set to TRUE if the time condition didn't match, which
  927. thus made the document NOT get fetched */
  928. BIT(used_proxy); /* the transfer used a proxy */
  929. };
  930. struct Progress {
  931. time_t lastshow; /* time() of the last displayed progress meter or NULL to
  932. force redraw at next call */
  933. curl_off_t size_dl; /* total expected size */
  934. curl_off_t size_ul; /* total expected size */
  935. curl_off_t downloaded; /* transferred so far */
  936. curl_off_t uploaded; /* transferred so far */
  937. curl_off_t current_speed; /* uses the currently fastest transfer */
  938. int width; /* screen width at download start */
  939. int flags; /* see progress.h */
  940. timediff_t timespent;
  941. curl_off_t dlspeed;
  942. curl_off_t ulspeed;
  943. timediff_t t_postqueue;
  944. timediff_t t_nslookup;
  945. timediff_t t_connect;
  946. timediff_t t_appconnect;
  947. timediff_t t_pretransfer;
  948. timediff_t t_starttransfer;
  949. timediff_t t_redirect;
  950. struct curltime start;
  951. struct curltime t_startsingle;
  952. struct curltime t_startop;
  953. struct curltime t_acceptdata;
  954. /* upload speed limit */
  955. struct curltime ul_limit_start;
  956. curl_off_t ul_limit_size;
  957. /* download speed limit */
  958. struct curltime dl_limit_start;
  959. curl_off_t dl_limit_size;
  960. #define CURR_TIME (5 + 1) /* 6 entries for 5 seconds */
  961. curl_off_t speeder[ CURR_TIME ];
  962. struct curltime speeder_time[ CURR_TIME ];
  963. int speeder_c;
  964. BIT(callback); /* set when progress callback is used */
  965. BIT(is_t_startransfer_set);
  966. };
  967. typedef enum {
  968. RTSPREQ_NONE, /* first in list */
  969. RTSPREQ_OPTIONS,
  970. RTSPREQ_DESCRIBE,
  971. RTSPREQ_ANNOUNCE,
  972. RTSPREQ_SETUP,
  973. RTSPREQ_PLAY,
  974. RTSPREQ_PAUSE,
  975. RTSPREQ_TEARDOWN,
  976. RTSPREQ_GET_PARAMETER,
  977. RTSPREQ_SET_PARAMETER,
  978. RTSPREQ_RECORD,
  979. RTSPREQ_RECEIVE,
  980. RTSPREQ_LAST /* last in list */
  981. } Curl_RtspReq;
  982. struct auth {
  983. unsigned long want; /* Bitmask set to the authentication methods wanted by
  984. app (with CURLOPT_HTTPAUTH or CURLOPT_PROXYAUTH). */
  985. unsigned long picked;
  986. unsigned long avail; /* Bitmask for what the server reports to support for
  987. this resource */
  988. BIT(done); /* TRUE when the auth phase is done and ready to do the
  989. actual request */
  990. BIT(multipass); /* TRUE if this is not yet authenticated but within the
  991. auth multipass negotiation */
  992. BIT(iestyle); /* TRUE if digest should be done IE-style or FALSE if it
  993. should be RFC compliant */
  994. };
  995. #ifdef USE_NGHTTP2
  996. struct Curl_data_prio_node {
  997. struct Curl_data_prio_node *next;
  998. struct Curl_easy *data;
  999. };
  1000. #endif
  1001. /**
  1002. * Priority information for an easy handle in relation to others
  1003. * on the same connection.
  1004. * TODO: we need to adapt it to the new priority scheme as defined in RFC 9218
  1005. */
  1006. struct Curl_data_priority {
  1007. #ifdef USE_NGHTTP2
  1008. /* tree like dependencies only implemented in nghttp2 */
  1009. struct Curl_easy *parent;
  1010. struct Curl_data_prio_node *children;
  1011. #endif
  1012. int weight;
  1013. #ifdef USE_NGHTTP2
  1014. BIT(exclusive);
  1015. #endif
  1016. };
  1017. /* Timers */
  1018. typedef enum {
  1019. EXPIRE_100_TIMEOUT,
  1020. EXPIRE_ASYNC_NAME,
  1021. EXPIRE_CONNECTTIMEOUT,
  1022. EXPIRE_DNS_PER_NAME, /* family1 */
  1023. EXPIRE_DNS_PER_NAME2, /* family2 */
  1024. EXPIRE_HAPPY_EYEBALLS_DNS, /* See asyn-ares.c */
  1025. EXPIRE_HAPPY_EYEBALLS,
  1026. EXPIRE_MULTI_PENDING,
  1027. EXPIRE_RUN_NOW,
  1028. EXPIRE_SPEEDCHECK,
  1029. EXPIRE_TIMEOUT,
  1030. EXPIRE_TOOFAST,
  1031. EXPIRE_QUIC,
  1032. EXPIRE_FTP_ACCEPT,
  1033. EXPIRE_ALPN_EYEBALLS,
  1034. EXPIRE_LAST /* not an actual timer, used as a marker only */
  1035. } expire_id;
  1036. typedef enum {
  1037. TRAILERS_NONE,
  1038. TRAILERS_INITIALIZED,
  1039. TRAILERS_SENDING,
  1040. TRAILERS_DONE
  1041. } trailers_state;
  1042. /*
  1043. * One instance for each timeout an easy handle can set.
  1044. */
  1045. struct time_node {
  1046. struct Curl_llist_element list;
  1047. struct curltime time;
  1048. expire_id eid;
  1049. };
  1050. /* individual pieces of the URL */
  1051. struct urlpieces {
  1052. char *scheme;
  1053. char *hostname;
  1054. char *port;
  1055. char *user;
  1056. char *password;
  1057. char *options;
  1058. char *path;
  1059. char *query;
  1060. };
  1061. struct UrlState {
  1062. /* Points to the connection cache */
  1063. struct conncache *conn_cache;
  1064. /* buffers to store authentication data in, as parsed from input options */
  1065. struct curltime keeps_speed; /* for the progress meter really */
  1066. curl_off_t lastconnect_id; /* The last connection, -1 if undefined */
  1067. curl_off_t recent_conn_id; /* The most recent connection used, might no
  1068. * longer exist */
  1069. struct dynbuf headerb; /* buffer to store headers in */
  1070. struct curl_slist *hstslist; /* list of HSTS files set by
  1071. curl_easy_setopt(HSTS) calls */
  1072. curl_off_t current_speed; /* the ProgressShow() function sets this,
  1073. bytes / second */
  1074. /* host name, port number and protocol of the first (not followed) request.
  1075. if set, this should be the host name that we will sent authorization to,
  1076. no else. Used to make Location: following not keep sending user+password.
  1077. This is strdup()ed data. */
  1078. char *first_host;
  1079. int first_remote_port;
  1080. curl_prot_t first_remote_protocol;
  1081. int retrycount; /* number of retries on a new connection */
  1082. struct Curl_ssl_session *session; /* array of 'max_ssl_sessions' size */
  1083. long sessionage; /* number of the most recent session */
  1084. int os_errno; /* filled in with errno whenever an error occurs */
  1085. char *scratch; /* huge buffer[set.buffer_size*2] for upload CRLF replacing */
  1086. long followlocation; /* redirect counter */
  1087. int requests; /* request counter: redirects + authentication retakes */
  1088. #ifdef HAVE_SIGNAL
  1089. /* storage for the previous bag^H^H^HSIGPIPE signal handler :-) */
  1090. void (*prev_signal)(int sig);
  1091. #endif
  1092. #ifndef CURL_DISABLE_DIGEST_AUTH
  1093. struct digestdata digest; /* state data for host Digest auth */
  1094. struct digestdata proxydigest; /* state data for proxy Digest auth */
  1095. #endif
  1096. struct auth authhost; /* auth details for host */
  1097. struct auth authproxy; /* auth details for proxy */
  1098. #ifdef USE_CURL_ASYNC
  1099. struct Curl_async async; /* asynchronous name resolver data */
  1100. #endif
  1101. #if defined(USE_OPENSSL)
  1102. /* void instead of ENGINE to avoid bleeding OpenSSL into this header */
  1103. void *engine;
  1104. #endif /* USE_OPENSSL */
  1105. struct curltime expiretime; /* set this with Curl_expire() only */
  1106. struct Curl_tree timenode; /* for the splay stuff */
  1107. struct Curl_llist timeoutlist; /* list of pending timeouts */
  1108. struct time_node expires[EXPIRE_LAST]; /* nodes for each expire type */
  1109. /* a place to store the most recently set (S)FTP entrypath */
  1110. char *most_recent_ftp_entrypath;
  1111. #if !defined(_WIN32) && !defined(MSDOS) && !defined(__EMX__)
  1112. /* do FTP line-end conversions on most platforms */
  1113. #define CURL_DO_LINEEND_CONV
  1114. /* for FTP downloads: how many CRLFs did we converted to LFs? */
  1115. curl_off_t crlf_conversions;
  1116. #endif
  1117. char *range; /* range, if used. See README for detailed specification on
  1118. this syntax. */
  1119. curl_off_t resume_from; /* continue [ftp] transfer from here */
  1120. #ifndef CURL_DISABLE_RTSP
  1121. /* This RTSP state information survives requests and connections */
  1122. long rtsp_next_client_CSeq; /* the session's next client CSeq */
  1123. long rtsp_next_server_CSeq; /* the session's next server CSeq */
  1124. long rtsp_CSeq_recv; /* most recent CSeq received */
  1125. unsigned char rtp_channel_mask[32]; /* for the correctness checking of the
  1126. interleaved data */
  1127. #endif
  1128. curl_off_t infilesize; /* size of file to upload, -1 means unknown.
  1129. Copied from set.filesize at start of operation */
  1130. #if defined(USE_HTTP2) || defined(USE_HTTP3)
  1131. struct Curl_data_priority priority; /* shallow copy of data->set */
  1132. #endif
  1133. curl_read_callback fread_func; /* read callback/function */
  1134. void *in; /* CURLOPT_READDATA */
  1135. CURLU *uh; /* URL handle for the current parsed URL */
  1136. struct urlpieces up;
  1137. char *url; /* work URL, copied from UserDefined */
  1138. char *referer; /* referer string */
  1139. struct curl_slist *resolve; /* set to point to the set.resolve list when
  1140. this should be dealt with in pretransfer */
  1141. #ifndef CURL_DISABLE_HTTP
  1142. curl_mimepart *mimepost;
  1143. #ifndef CURL_DISABLE_FORM_API
  1144. curl_mimepart *formp; /* storage for old API form-posting, allocated on
  1145. demand */
  1146. #endif
  1147. size_t trailers_bytes_sent;
  1148. struct dynbuf trailers_buf; /* a buffer containing the compiled trailing
  1149. headers */
  1150. struct Curl_llist httphdrs; /* received headers */
  1151. struct curl_header headerout[2]; /* for external purposes */
  1152. struct Curl_header_store *prevhead; /* the latest added header */
  1153. trailers_state trailers_state; /* whether we are sending trailers
  1154. and what stage are we at */
  1155. #endif
  1156. #ifndef CURL_DISABLE_COOKIES
  1157. struct curl_slist *cookielist; /* list of cookie files set by
  1158. curl_easy_setopt(COOKIEFILE) calls */
  1159. #endif
  1160. #ifdef USE_HYPER
  1161. bool hconnect; /* set if a CONNECT request */
  1162. CURLcode hresult; /* used to pass return codes back from hyper callbacks */
  1163. #endif
  1164. #ifndef CURL_DISABLE_VERBOSE_STRINGS
  1165. struct curl_trc_feat *feat; /* opt. trace feature transfer is part of */
  1166. #endif
  1167. /* Dynamically allocated strings, MUST be freed before this struct is
  1168. killed. */
  1169. struct dynamically_allocated_data {
  1170. char *proxyuserpwd;
  1171. char *uagent;
  1172. char *accept_encoding;
  1173. char *userpwd;
  1174. char *rangeline;
  1175. char *ref;
  1176. char *host;
  1177. char *cookiehost;
  1178. char *rtsp_transport;
  1179. char *te; /* TE: request header */
  1180. /* transfer credentials */
  1181. char *user;
  1182. char *passwd;
  1183. char *proxyuser;
  1184. char *proxypasswd;
  1185. } aptr;
  1186. unsigned char httpwant; /* when non-zero, a specific HTTP version requested
  1187. to be used in the library's request(s) */
  1188. unsigned char httpversion; /* the lowest HTTP version*10 reported by any
  1189. server involved in this request */
  1190. unsigned char httpreq; /* Curl_HttpReq; what kind of HTTP request (if any)
  1191. is this */
  1192. unsigned char select_bits; /* != 0 -> bitmask of socket events for this
  1193. transfer overriding anything the socket may
  1194. report */
  1195. #ifdef CURLDEBUG
  1196. BIT(conncache_lock);
  1197. #endif
  1198. /* when curl_easy_perform() is called, the multi handle is "owned" by
  1199. the easy handle so curl_easy_cleanup() on such an easy handle will
  1200. also close the multi handle! */
  1201. BIT(multi_owned_by_easy);
  1202. BIT(this_is_a_follow); /* this is a followed Location: request */
  1203. BIT(refused_stream); /* this was refused, try again */
  1204. BIT(errorbuf); /* Set to TRUE if the error buffer is already filled in.
  1205. This must be set to FALSE every time _easy_perform() is
  1206. called. */
  1207. BIT(allow_port); /* Is set.use_port allowed to take effect or not. This
  1208. is always set TRUE when curl_easy_perform() is called. */
  1209. BIT(authproblem); /* TRUE if there's some problem authenticating */
  1210. /* set after initial USER failure, to prevent an authentication loop */
  1211. BIT(wildcardmatch); /* enable wildcard matching */
  1212. BIT(expect100header); /* TRUE if we added Expect: 100-continue */
  1213. BIT(disableexpect); /* TRUE if Expect: is disabled due to a previous
  1214. 417 response */
  1215. BIT(use_range);
  1216. BIT(rangestringalloc); /* the range string is malloc()'ed */
  1217. BIT(done); /* set to FALSE when Curl_init_do() is called and set to TRUE
  1218. when multi_done() is called, to prevent multi_done() to get
  1219. invoked twice when the multi interface is used. */
  1220. BIT(previouslypending); /* this transfer WAS in the multi->pending queue */
  1221. #ifndef CURL_DISABLE_COOKIES
  1222. BIT(cookie_engine);
  1223. #endif
  1224. BIT(prefer_ascii); /* ASCII rather than binary */
  1225. #ifdef CURL_LIST_ONLY_PROTOCOL
  1226. BIT(list_only); /* list directory contents */
  1227. #endif
  1228. BIT(url_alloc); /* URL string is malloc()'ed */
  1229. BIT(referer_alloc); /* referer string is malloc()ed */
  1230. BIT(wildcard_resolve); /* Set to true if any resolve change is a wildcard */
  1231. BIT(upload); /* upload request */
  1232. BIT(internal); /* internal: true if this easy handle was created for
  1233. internal use and the user does not have ownership of the
  1234. handle. */
  1235. };
  1236. /*
  1237. * This 'UserDefined' struct must only contain data that is set once to go
  1238. * for many (perhaps) independent connections. Values that are generated or
  1239. * calculated internally for the "session handle" MUST be defined within the
  1240. * 'struct UrlState' instead. The only exceptions MUST note the changes in
  1241. * the 'DynamicStatic' struct.
  1242. * Character pointer fields point to dynamic storage, unless otherwise stated.
  1243. */
  1244. struct Curl_multi; /* declared in multihandle.c */
  1245. /*
  1246. * This enumeration MUST not use conditional directives (#ifdefs), new
  1247. * null terminated strings MUST be added to the enumeration immediately
  1248. * before STRING_LASTZEROTERMINATED, binary fields immediately before
  1249. * STRING_LAST. When doing so, ensure that the packages/OS400/chkstring.c
  1250. * test is updated and applicable changes for EBCDIC to ASCII conversion
  1251. * are catered for in curl_easy_setopt_ccsid()
  1252. */
  1253. enum dupstring {
  1254. STRING_CERT, /* client certificate file name */
  1255. STRING_CERT_PROXY, /* client certificate file name */
  1256. STRING_CERT_TYPE, /* format for certificate (default: PEM)*/
  1257. STRING_CERT_TYPE_PROXY, /* format for certificate (default: PEM)*/
  1258. STRING_COOKIE, /* HTTP cookie string to send */
  1259. STRING_COOKIEJAR, /* dump all cookies to this file */
  1260. STRING_CUSTOMREQUEST, /* HTTP/FTP/RTSP request/method to use */
  1261. STRING_DEFAULT_PROTOCOL, /* Protocol to use when the URL doesn't specify */
  1262. STRING_DEVICE, /* local network interface/address to use */
  1263. STRING_ENCODING, /* Accept-Encoding string */
  1264. STRING_FTP_ACCOUNT, /* ftp account data */
  1265. STRING_FTP_ALTERNATIVE_TO_USER, /* command to send if USER/PASS fails */
  1266. STRING_FTPPORT, /* port to send with the FTP PORT command */
  1267. STRING_KEY, /* private key file name */
  1268. STRING_KEY_PROXY, /* private key file name */
  1269. STRING_KEY_PASSWD, /* plain text private key password */
  1270. STRING_KEY_PASSWD_PROXY, /* plain text private key password */
  1271. STRING_KEY_TYPE, /* format for private key (default: PEM) */
  1272. STRING_KEY_TYPE_PROXY, /* format for private key (default: PEM) */
  1273. STRING_KRB_LEVEL, /* krb security level */
  1274. STRING_NETRC_FILE, /* if not NULL, use this instead of trying to find
  1275. $HOME/.netrc */
  1276. STRING_PROXY, /* proxy to use */
  1277. STRING_PRE_PROXY, /* pre socks proxy to use */
  1278. STRING_SET_RANGE, /* range, if used */
  1279. STRING_SET_REFERER, /* custom string for the HTTP referer field */
  1280. STRING_SET_URL, /* what original URL to work on */
  1281. STRING_SSL_CAPATH, /* CA directory name (doesn't work on windows) */
  1282. STRING_SSL_CAPATH_PROXY, /* CA directory name (doesn't work on windows) */
  1283. STRING_SSL_CAFILE, /* certificate file to verify peer against */
  1284. STRING_SSL_CAFILE_PROXY, /* certificate file to verify peer against */
  1285. STRING_SSL_PINNEDPUBLICKEY, /* public key file to verify peer against */
  1286. STRING_SSL_PINNEDPUBLICKEY_PROXY, /* public key file to verify proxy */
  1287. STRING_SSL_CIPHER_LIST, /* list of ciphers to use */
  1288. STRING_SSL_CIPHER_LIST_PROXY, /* list of ciphers to use */
  1289. STRING_SSL_CIPHER13_LIST, /* list of TLS 1.3 ciphers to use */
  1290. STRING_SSL_CIPHER13_LIST_PROXY, /* list of TLS 1.3 ciphers to use */
  1291. STRING_USERAGENT, /* User-Agent string */
  1292. STRING_SSL_CRLFILE, /* crl file to check certificate */
  1293. STRING_SSL_CRLFILE_PROXY, /* crl file to check certificate */
  1294. STRING_SSL_ISSUERCERT, /* issuer cert file to check certificate */
  1295. STRING_SSL_ISSUERCERT_PROXY, /* issuer cert file to check certificate */
  1296. STRING_SSL_ENGINE, /* name of ssl engine */
  1297. STRING_USERNAME, /* <username>, if used */
  1298. STRING_PASSWORD, /* <password>, if used */
  1299. STRING_OPTIONS, /* <options>, if used */
  1300. STRING_PROXYUSERNAME, /* Proxy <username>, if used */
  1301. STRING_PROXYPASSWORD, /* Proxy <password>, if used */
  1302. STRING_NOPROXY, /* List of hosts which should not use the proxy, if
  1303. used */
  1304. STRING_RTSP_SESSION_ID, /* Session ID to use */
  1305. STRING_RTSP_STREAM_URI, /* Stream URI for this request */
  1306. STRING_RTSP_TRANSPORT, /* Transport for this session */
  1307. STRING_SSH_PRIVATE_KEY, /* path to the private key file for auth */
  1308. STRING_SSH_PUBLIC_KEY, /* path to the public key file for auth */
  1309. STRING_SSH_HOST_PUBLIC_KEY_MD5, /* md5 of host public key in ascii hex */
  1310. STRING_SSH_HOST_PUBLIC_KEY_SHA256, /* sha256 of host public key in base64 */
  1311. STRING_SSH_KNOWNHOSTS, /* file name of knownhosts file */
  1312. STRING_PROXY_SERVICE_NAME, /* Proxy service name */
  1313. STRING_SERVICE_NAME, /* Service name */
  1314. STRING_MAIL_FROM,
  1315. STRING_MAIL_AUTH,
  1316. STRING_TLSAUTH_USERNAME, /* TLS auth <username> */
  1317. STRING_TLSAUTH_USERNAME_PROXY, /* TLS auth <username> */
  1318. STRING_TLSAUTH_PASSWORD, /* TLS auth <password> */
  1319. STRING_TLSAUTH_PASSWORD_PROXY, /* TLS auth <password> */
  1320. STRING_BEARER, /* <bearer>, if used */
  1321. STRING_UNIX_SOCKET_PATH, /* path to Unix socket, if used */
  1322. STRING_TARGET, /* CURLOPT_REQUEST_TARGET */
  1323. STRING_DOH, /* CURLOPT_DOH_URL */
  1324. STRING_ALTSVC, /* CURLOPT_ALTSVC */
  1325. STRING_HSTS, /* CURLOPT_HSTS */
  1326. STRING_SASL_AUTHZID, /* CURLOPT_SASL_AUTHZID */
  1327. STRING_DNS_SERVERS,
  1328. STRING_DNS_INTERFACE,
  1329. STRING_DNS_LOCAL_IP4,
  1330. STRING_DNS_LOCAL_IP6,
  1331. STRING_SSL_EC_CURVES,
  1332. STRING_AWS_SIGV4, /* Parameters for V4 signature */
  1333. STRING_HAPROXY_CLIENT_IP, /* CURLOPT_HAPROXY_CLIENT_IP */
  1334. /* -- end of null-terminated strings -- */
  1335. STRING_LASTZEROTERMINATED,
  1336. /* -- below this are pointers to binary data that cannot be strdup'ed. --- */
  1337. STRING_COPYPOSTFIELDS, /* if POST, set the fields' values here */
  1338. STRING_LAST /* not used, just an end-of-list marker */
  1339. };
  1340. enum dupblob {
  1341. BLOB_CERT,
  1342. BLOB_CERT_PROXY,
  1343. BLOB_KEY,
  1344. BLOB_KEY_PROXY,
  1345. BLOB_SSL_ISSUERCERT,
  1346. BLOB_SSL_ISSUERCERT_PROXY,
  1347. BLOB_CAINFO,
  1348. BLOB_CAINFO_PROXY,
  1349. BLOB_LAST
  1350. };
  1351. /* callback that gets called when this easy handle is completed within a multi
  1352. handle. Only used for internally created transfers, like for example
  1353. DoH. */
  1354. typedef int (*multidone_func)(struct Curl_easy *easy, CURLcode result);
  1355. struct UserDefined {
  1356. FILE *err; /* the stderr user data goes here */
  1357. void *debugdata; /* the data that will be passed to fdebug */
  1358. char *errorbuffer; /* (Static) store failure messages in here */
  1359. void *out; /* CURLOPT_WRITEDATA */
  1360. void *in_set; /* CURLOPT_READDATA */
  1361. void *writeheader; /* write the header to this if non-NULL */
  1362. unsigned short use_port; /* which port to use (when not using default) */
  1363. unsigned long httpauth; /* kind of HTTP authentication to use (bitmask) */
  1364. unsigned long proxyauth; /* kind of proxy authentication to use (bitmask) */
  1365. long maxredirs; /* maximum no. of http(s) redirects to follow, set to -1
  1366. for infinity */
  1367. void *postfields; /* if POST, set the fields' values here */
  1368. curl_seek_callback seek_func; /* function that seeks the input */
  1369. curl_off_t postfieldsize; /* if POST, this might have a size to use instead
  1370. of strlen(), and then the data *may* be binary
  1371. (contain zero bytes) */
  1372. #ifndef CURL_DISABLE_BINDLOCAL
  1373. unsigned short localport; /* local port number to bind to */
  1374. unsigned short localportrange; /* number of additional port numbers to test
  1375. in case the 'localport' one can't be
  1376. bind()ed */
  1377. #endif
  1378. curl_write_callback fwrite_func; /* function that stores the output */
  1379. curl_write_callback fwrite_header; /* function that stores headers */
  1380. curl_write_callback fwrite_rtp; /* function that stores interleaved RTP */
  1381. curl_read_callback fread_func_set; /* function that reads the input */
  1382. curl_progress_callback fprogress; /* OLD and deprecated progress callback */
  1383. curl_xferinfo_callback fxferinfo; /* progress callback */
  1384. curl_debug_callback fdebug; /* function that write informational data */
  1385. curl_ioctl_callback ioctl_func; /* function for I/O control */
  1386. curl_sockopt_callback fsockopt; /* function for setting socket options */
  1387. void *sockopt_client; /* pointer to pass to the socket options callback */
  1388. curl_opensocket_callback fopensocket; /* function for checking/translating
  1389. the address and opening the
  1390. socket */
  1391. void *opensocket_client;
  1392. curl_closesocket_callback fclosesocket; /* function for closing the
  1393. socket */
  1394. void *closesocket_client;
  1395. curl_prereq_callback fprereq; /* pre-initial request callback */
  1396. void *prereq_userp; /* pre-initial request user data */
  1397. void *seek_client; /* pointer to pass to the seek callback */
  1398. #ifndef CURL_DISABLE_HSTS
  1399. curl_hstsread_callback hsts_read;
  1400. void *hsts_read_userp;
  1401. curl_hstswrite_callback hsts_write;
  1402. void *hsts_write_userp;
  1403. #endif
  1404. void *progress_client; /* pointer to pass to the progress callback */
  1405. void *ioctl_client; /* pointer to pass to the ioctl callback */
  1406. unsigned int timeout; /* ms, 0 means no timeout */
  1407. unsigned int connecttimeout; /* ms, 0 means no timeout */
  1408. unsigned int happy_eyeballs_timeout; /* ms, 0 is a valid value */
  1409. unsigned int server_response_timeout; /* ms, 0 means no timeout */
  1410. long maxage_conn; /* in seconds, max idle time to allow a connection that
  1411. is to be reused */
  1412. long maxlifetime_conn; /* in seconds, max time since creation to allow a
  1413. connection that is to be reused */
  1414. #ifndef CURL_DISABLE_TFTP
  1415. long tftp_blksize; /* in bytes, 0 means use default */
  1416. #endif
  1417. curl_off_t filesize; /* size of file to upload, -1 means unknown */
  1418. long low_speed_limit; /* bytes/second */
  1419. long low_speed_time; /* number of seconds */
  1420. curl_off_t max_send_speed; /* high speed limit in bytes/second for upload */
  1421. curl_off_t max_recv_speed; /* high speed limit in bytes/second for
  1422. download */
  1423. curl_off_t set_resume_from; /* continue [ftp] transfer from here */
  1424. struct curl_slist *headers; /* linked list of extra headers */
  1425. struct curl_httppost *httppost; /* linked list of old POST data */
  1426. #if !defined(CURL_DISABLE_MIME) || !defined(CURL_DISABLE_FORM_API)
  1427. curl_mimepart mimepost; /* MIME/POST data. */
  1428. #endif
  1429. #ifndef CURL_DISABLE_TELNET
  1430. struct curl_slist *telnet_options; /* linked list of telnet options */
  1431. #endif
  1432. struct curl_slist *resolve; /* list of names to add/remove from
  1433. DNS cache */
  1434. struct curl_slist *connect_to; /* list of host:port mappings to override
  1435. the hostname and port to connect to */
  1436. time_t timevalue; /* what time to compare with */
  1437. unsigned char timecondition; /* kind of time comparison: curl_TimeCond */
  1438. unsigned char method; /* what kind of HTTP request: Curl_HttpReq */
  1439. unsigned char httpwant; /* when non-zero, a specific HTTP version requested
  1440. to be used in the library's request(s) */
  1441. struct ssl_config_data ssl; /* user defined SSL stuff */
  1442. #ifndef CURL_DISABLE_PROXY
  1443. struct ssl_config_data proxy_ssl; /* user defined SSL stuff for proxy */
  1444. struct curl_slist *proxyheaders; /* linked list of extra CONNECT headers */
  1445. unsigned short proxyport; /* If non-zero, use this port number by
  1446. default. If the proxy string features a
  1447. ":[port]" that one will override this. */
  1448. unsigned char proxytype; /* what kind of proxy: curl_proxytype */
  1449. unsigned char socks5auth;/* kind of SOCKS5 authentication to use (bitmask) */
  1450. #endif
  1451. struct ssl_general_config general_ssl; /* general user defined SSL stuff */
  1452. int dns_cache_timeout; /* DNS cache timeout (seconds) */
  1453. unsigned int buffer_size; /* size of receive buffer to use */
  1454. unsigned int upload_buffer_size; /* size of upload buffer to use,
  1455. keep it >= CURL_MAX_WRITE_SIZE */
  1456. void *private_data; /* application-private data */
  1457. #ifndef CURL_DISABLE_HTTP
  1458. struct curl_slist *http200aliases; /* linked list of aliases for http200 */
  1459. #endif
  1460. unsigned char ipver; /* the CURL_IPRESOLVE_* defines in the public header
  1461. file 0 - whatever, 1 - v2, 2 - v6 */
  1462. curl_off_t max_filesize; /* Maximum file size to download */
  1463. #ifndef CURL_DISABLE_FTP
  1464. unsigned char ftp_filemethod; /* how to get to a file: curl_ftpfile */
  1465. unsigned char ftpsslauth; /* what AUTH XXX to try: curl_ftpauth */
  1466. unsigned char ftp_ccc; /* FTP CCC options: curl_ftpccc */
  1467. unsigned int accepttimeout; /* in milliseconds, 0 means no timeout */
  1468. #endif
  1469. #if !defined(CURL_DISABLE_FTP) || defined(USE_SSH)
  1470. struct curl_slist *quote; /* after connection is established */
  1471. struct curl_slist *postquote; /* after the transfer */
  1472. struct curl_slist *prequote; /* before the transfer, after type */
  1473. /* Despite the name, ftp_create_missing_dirs is for FTP(S) and SFTP
  1474. 1 - create directories that don't exist
  1475. 2 - the same but also allow MKD to fail once
  1476. */
  1477. unsigned char ftp_create_missing_dirs;
  1478. #endif
  1479. #ifdef USE_LIBSSH2
  1480. curl_sshhostkeycallback ssh_hostkeyfunc; /* hostkey check callback */
  1481. void *ssh_hostkeyfunc_userp; /* custom pointer to callback */
  1482. #endif
  1483. #ifdef USE_SSH
  1484. curl_sshkeycallback ssh_keyfunc; /* key matching callback */
  1485. void *ssh_keyfunc_userp; /* custom pointer to callback */
  1486. int ssh_auth_types; /* allowed SSH auth types */
  1487. unsigned int new_directory_perms; /* when creating remote dirs */
  1488. #endif
  1489. #ifndef CURL_DISABLE_NETRC
  1490. unsigned char use_netrc; /* enum CURL_NETRC_OPTION values */
  1491. #endif
  1492. unsigned int new_file_perms; /* when creating remote files */
  1493. char *str[STRING_LAST]; /* array of strings, pointing to allocated memory */
  1494. struct curl_blob *blobs[BLOB_LAST];
  1495. #ifdef ENABLE_IPV6
  1496. unsigned int scope_id; /* Scope id for IPv6 */
  1497. #endif
  1498. curl_prot_t allowed_protocols;
  1499. curl_prot_t redir_protocols;
  1500. #ifndef CURL_DISABLE_RTSP
  1501. void *rtp_out; /* write RTP to this if non-NULL */
  1502. /* Common RTSP header options */
  1503. Curl_RtspReq rtspreq; /* RTSP request type */
  1504. #endif
  1505. #ifndef CURL_DISABLE_FTP
  1506. curl_chunk_bgn_callback chunk_bgn; /* called before part of transfer
  1507. starts */
  1508. curl_chunk_end_callback chunk_end; /* called after part transferring
  1509. stopped */
  1510. curl_fnmatch_callback fnmatch; /* callback to decide which file corresponds
  1511. to pattern (e.g. if WILDCARDMATCH is on) */
  1512. void *fnmatch_data;
  1513. void *wildcardptr;
  1514. #endif
  1515. /* GSS-API credential delegation, see the documentation of
  1516. CURLOPT_GSSAPI_DELEGATION */
  1517. unsigned char gssapi_delegation;
  1518. int tcp_keepidle; /* seconds in idle before sending keepalive probe */
  1519. int tcp_keepintvl; /* seconds between TCP keepalive probes */
  1520. long expect_100_timeout; /* in milliseconds */
  1521. #if defined(USE_HTTP2) || defined(USE_HTTP3)
  1522. struct Curl_data_priority priority;
  1523. #endif
  1524. curl_resolver_start_callback resolver_start; /* optional callback called
  1525. before resolver start */
  1526. void *resolver_start_client; /* pointer to pass to resolver start callback */
  1527. long upkeep_interval_ms; /* Time between calls for connection upkeep. */
  1528. multidone_func fmultidone;
  1529. #ifndef CURL_DISABLE_DOH
  1530. struct Curl_easy *dohfor; /* this is a DoH request for that transfer */
  1531. #endif
  1532. CURLU *uh; /* URL handle for the current parsed URL */
  1533. #ifndef CURL_DISABLE_HTTP
  1534. void *trailer_data; /* pointer to pass to trailer data callback */
  1535. curl_trailer_callback trailer_callback; /* trailing data callback */
  1536. #endif
  1537. char keep_post; /* keep POSTs as POSTs after a 30x request; each
  1538. bit represents a request, from 301 to 303 */
  1539. #ifndef CURL_DISABLE_SMTP
  1540. struct curl_slist *mail_rcpt; /* linked list of mail recipients */
  1541. BIT(mail_rcpt_allowfails); /* allow RCPT TO command to fail for some
  1542. recipients */
  1543. #endif
  1544. unsigned int maxconnects; /* Max idle connections in the connection cache */
  1545. unsigned char use_ssl; /* if AUTH TLS is to be attempted etc, for FTP or
  1546. IMAP or POP3 or others! (type: curl_usessl)*/
  1547. unsigned char connect_only; /* make connection/request, then let
  1548. application use the socket */
  1549. #ifndef CURL_DISABLE_MIME
  1550. BIT(mime_formescape);
  1551. #endif
  1552. BIT(is_fread_set); /* has read callback been set to non-NULL? */
  1553. #ifndef CURL_DISABLE_TFTP
  1554. BIT(tftp_no_options); /* do not send TFTP options requests */
  1555. #endif
  1556. BIT(sep_headers); /* handle host and proxy headers separately */
  1557. #ifndef CURL_DISABLE_COOKIES
  1558. BIT(cookiesession); /* new cookie session? */
  1559. #endif
  1560. BIT(crlf); /* convert crlf on ftp upload(?) */
  1561. BIT(ssh_compression); /* enable SSH compression */
  1562. /* Here follows boolean settings that define how to behave during
  1563. this session. They are STATIC, set by libcurl users or at least initially
  1564. and they don't change during operations. */
  1565. BIT(quick_exit); /* set 1L when it is okay to leak things (like
  1566. threads), as we're about to exit() anyway and
  1567. don't want lengthy cleanups to delay termination,
  1568. e.g. after a DNS timeout */
  1569. BIT(get_filetime); /* get the time and get of the remote file */
  1570. BIT(tunnel_thru_httpproxy); /* use CONNECT through an HTTP proxy */
  1571. BIT(prefer_ascii); /* ASCII rather than binary */
  1572. BIT(remote_append); /* append, not overwrite, on upload */
  1573. #ifdef CURL_LIST_ONLY_PROTOCOL
  1574. BIT(list_only); /* list directory */
  1575. #endif
  1576. #ifndef CURL_DISABLE_FTP
  1577. BIT(ftp_use_port); /* use the FTP PORT command */
  1578. BIT(ftp_use_epsv); /* if EPSV is to be attempted or not */
  1579. BIT(ftp_use_eprt); /* if EPRT is to be attempted or not */
  1580. BIT(ftp_use_pret); /* if PRET is to be used before PASV or not */
  1581. BIT(ftp_skip_ip); /* skip the IP address the FTP server passes on to
  1582. us */
  1583. BIT(wildcard_enabled); /* enable wildcard matching */
  1584. #endif
  1585. BIT(hide_progress); /* don't use the progress meter */
  1586. BIT(http_fail_on_error); /* fail on HTTP error codes >= 400 */
  1587. BIT(http_keep_sending_on_error); /* for HTTP status codes >= 300 */
  1588. BIT(http_follow_location); /* follow HTTP redirects */
  1589. BIT(http_transfer_encoding); /* request compressed HTTP transfer-encoding */
  1590. BIT(allow_auth_to_other_hosts);
  1591. BIT(include_header); /* include received protocol headers in data output */
  1592. BIT(http_set_referer); /* is a custom referer used */
  1593. BIT(http_auto_referer); /* set "correct" referer when following
  1594. location: */
  1595. BIT(opt_no_body); /* as set with CURLOPT_NOBODY */
  1596. BIT(verbose); /* output verbosity */
  1597. BIT(krb); /* Kerberos connection requested */
  1598. BIT(reuse_forbid); /* forbidden to be reused, close after use */
  1599. BIT(reuse_fresh); /* do not reuse an existing connection */
  1600. BIT(no_signal); /* do not use any signal/alarm handler */
  1601. BIT(tcp_nodelay); /* whether to enable TCP_NODELAY or not */
  1602. BIT(ignorecl); /* ignore content length */
  1603. BIT(http_te_skip); /* pass the raw body data to the user, even when
  1604. transfer-encoded (chunked, compressed) */
  1605. BIT(http_ce_skip); /* pass the raw body data to the user, even when
  1606. content-encoded (chunked, compressed) */
  1607. BIT(proxy_transfer_mode); /* set transfer mode (;type=<a|i>) when doing
  1608. FTP via an HTTP proxy */
  1609. #if defined(HAVE_GSSAPI) || defined(USE_WINDOWS_SSPI)
  1610. BIT(socks5_gssapi_nec); /* Flag to support NEC SOCKS5 server */
  1611. #endif
  1612. BIT(sasl_ir); /* Enable/disable SASL initial response */
  1613. BIT(tcp_keepalive); /* use TCP keepalives */
  1614. BIT(tcp_fastopen); /* use TCP Fast Open */
  1615. BIT(ssl_enable_alpn);/* TLS ALPN extension? */
  1616. BIT(path_as_is); /* allow dotdots? */
  1617. BIT(pipewait); /* wait for multiplex status before starting a new
  1618. connection */
  1619. BIT(suppress_connect_headers); /* suppress proxy CONNECT response headers
  1620. from user callbacks */
  1621. BIT(dns_shuffle_addresses); /* whether to shuffle addresses before use */
  1622. BIT(haproxyprotocol); /* whether to send HAProxy PROXY protocol v1
  1623. header */
  1624. BIT(abstract_unix_socket);
  1625. BIT(disallow_username_in_url); /* disallow username in url */
  1626. #ifndef CURL_DISABLE_DOH
  1627. BIT(doh); /* DNS-over-HTTPS enabled */
  1628. BIT(doh_verifypeer); /* DoH certificate peer verification */
  1629. BIT(doh_verifyhost); /* DoH certificate hostname verification */
  1630. BIT(doh_verifystatus); /* DoH certificate status verification */
  1631. #endif
  1632. BIT(http09_allowed); /* allow HTTP/0.9 responses */
  1633. #ifdef USE_WEBSOCKETS
  1634. BIT(ws_raw_mode);
  1635. #endif
  1636. };
  1637. #ifndef CURL_DISABLE_MIME
  1638. #define IS_MIME_POST(a) ((a)->set.mimepost.kind != MIMEKIND_NONE)
  1639. #else
  1640. #define IS_MIME_POST(a) FALSE
  1641. #endif
  1642. struct Names {
  1643. struct Curl_hash *hostcache;
  1644. enum {
  1645. HCACHE_NONE, /* not pointing to anything */
  1646. HCACHE_MULTI, /* points to a shared one in the multi handle */
  1647. HCACHE_SHARED /* points to a shared one in a shared object */
  1648. } hostcachetype;
  1649. };
  1650. /*
  1651. * The 'connectdata' struct MUST have all the connection oriented stuff as we
  1652. * may have several simultaneous connections and connection structs in memory.
  1653. *
  1654. * The 'struct UserDefined' must only contain data that is set once to go for
  1655. * many (perhaps) independent connections. Values that are generated or
  1656. * calculated internally for the "session handle" must be defined within the
  1657. * 'struct UrlState' instead.
  1658. */
  1659. struct Curl_easy {
  1660. /* First a simple identifier to easier detect if a user mix up this easy
  1661. handle with a multi handle. Set this to CURLEASY_MAGIC_NUMBER */
  1662. unsigned int magic;
  1663. /* once an easy handle is tied to a connection cache
  1664. a non-negative number to distinguish this transfer from
  1665. other using the same cache. For easier tracking
  1666. in log output.
  1667. This may wrap around after LONG_MAX to 0 again, so it
  1668. has no uniqueness guarantee for very large processings. */
  1669. curl_off_t id;
  1670. /* first, two fields for the linked list of these */
  1671. struct Curl_easy *next;
  1672. struct Curl_easy *prev;
  1673. struct connectdata *conn;
  1674. struct Curl_llist_element connect_queue; /* for the pending and msgsent
  1675. lists */
  1676. struct Curl_llist_element conn_queue; /* list per connectdata */
  1677. CURLMstate mstate; /* the handle's state */
  1678. CURLcode result; /* previous result */
  1679. struct Curl_message msg; /* A single posted message. */
  1680. /* Array with the plain socket numbers this handle takes care of, in no
  1681. particular order. Note that all sockets are added to the sockhash, where
  1682. the state etc are also kept. This array is mostly used to detect when a
  1683. socket is to be removed from the hash. See singlesocket(). */
  1684. struct easy_pollset last_poll;
  1685. struct Names dns;
  1686. struct Curl_multi *multi; /* if non-NULL, points to the multi handle
  1687. struct to which this "belongs" when used by
  1688. the multi interface */
  1689. struct Curl_multi *multi_easy; /* if non-NULL, points to the multi handle
  1690. struct to which this "belongs" when used
  1691. by the easy interface */
  1692. struct Curl_share *share; /* Share, handles global variable mutexing */
  1693. #ifdef USE_LIBPSL
  1694. struct PslCache *psl; /* The associated PSL cache. */
  1695. #endif
  1696. struct SingleRequest req; /* Request-specific data */
  1697. struct UserDefined set; /* values set by the libcurl user */
  1698. #ifndef CURL_DISABLE_COOKIES
  1699. struct CookieInfo *cookies; /* the cookies, read from files and servers.
  1700. NOTE that the 'cookie' field in the
  1701. UserDefined struct defines if the "engine"
  1702. is to be used or not. */
  1703. #endif
  1704. #ifndef CURL_DISABLE_HSTS
  1705. struct hsts *hsts;
  1706. #endif
  1707. #ifndef CURL_DISABLE_ALTSVC
  1708. struct altsvcinfo *asi; /* the alt-svc cache */
  1709. #endif
  1710. struct Progress progress; /* for all the progress meter data */
  1711. struct UrlState state; /* struct for fields used for state info and
  1712. other dynamic purposes */
  1713. #ifndef CURL_DISABLE_FTP
  1714. struct WildcardData *wildcard; /* wildcard download state info */
  1715. #endif
  1716. struct PureInfo info; /* stats, reports and info data */
  1717. struct curl_tlssessioninfo tsi; /* Information about the TLS session, only
  1718. valid after a client has asked for it */
  1719. #ifdef USE_HYPER
  1720. struct hyptransfer hyp;
  1721. #endif
  1722. };
  1723. #define LIBCURL_NAME "libcurl"
  1724. #endif /* HEADER_CURL_URLDATA_H */