multihandle.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. #ifndef HEADER_CURL_MULTIHANDLE_H
  2. #define HEADER_CURL_MULTIHANDLE_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) Daniel Stenberg, <[email protected]>, 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. #include "llist.h"
  27. #include "hash.h"
  28. #include "conncache.h"
  29. #include "cshutdn.h"
  30. #include "hostip.h"
  31. #include "multi_ev.h"
  32. #include "multi_ntfy.h"
  33. #include "psl.h"
  34. #include "socketpair.h"
  35. #include "uint-bset.h"
  36. #include "uint-spbset.h"
  37. #include "uint-table.h"
  38. struct connectdata;
  39. struct Curl_easy;
  40. struct Curl_message {
  41. struct Curl_llist_node list;
  42. /* the 'CURLMsg' is the part that is visible to the external user */
  43. struct CURLMsg extmsg;
  44. };
  45. /* NOTE: if you add a state here, add the name to the statenames[] array
  46. * in curl_trc.c as well!
  47. */
  48. typedef enum {
  49. MSTATE_INIT, /* 0 - start in this state */
  50. MSTATE_PENDING, /* 1 - no connections, waiting for one */
  51. MSTATE_SETUP, /* 2 - start a new transfer */
  52. MSTATE_CONNECT, /* 3 - resolve/connect has been sent off */
  53. MSTATE_RESOLVING, /* 4 - awaiting the resolve to finalize */
  54. MSTATE_CONNECTING, /* 5 - awaiting the TCP connect to finalize */
  55. MSTATE_TUNNELING, /* 6 - awaiting HTTPS proxy SSL initialization to
  56. complete and/or proxy CONNECT to finalize */
  57. MSTATE_PROTOCONNECT, /* 7 - initiate protocol connect procedure */
  58. MSTATE_PROTOCONNECTING, /* 8 - completing the protocol-specific connect
  59. phase */
  60. MSTATE_DO, /* 9 - start send off the request (part 1) */
  61. MSTATE_DOING, /* 10 - sending off the request (part 1) */
  62. MSTATE_DOING_MORE, /* 11 - send off the request (part 2) */
  63. MSTATE_DID, /* 12 - done sending off request */
  64. MSTATE_PERFORMING, /* 13 - transfer data */
  65. MSTATE_RATELIMITING, /* 14 - wait because limit-rate exceeded */
  66. MSTATE_DONE, /* 15 - post data transfer operation */
  67. MSTATE_COMPLETED, /* 16 - operation complete */
  68. MSTATE_MSGSENT, /* 17 - the operation complete message is sent */
  69. MSTATE_LAST /* 18 - not a true state, never use this */
  70. } CURLMstate;
  71. #define CURLPIPE_ANY (CURLPIPE_MULTIPLEX)
  72. #ifndef CURL_DISABLE_SOCKETPAIR
  73. #define ENABLE_WAKEUP
  74. #endif
  75. /* value for MAXIMUM CONCURRENT STREAMS upper limit */
  76. #define INITIAL_MAX_CONCURRENT_STREAMS ((1U << 31) - 1)
  77. /* This is the struct known as CURLM on the outside */
  78. struct Curl_multi {
  79. /* First a simple identifier to easier detect if a user mix up
  80. this multi handle with an easy handle. Set this to CURL_MULTI_HANDLE. */
  81. unsigned int magic;
  82. unsigned int xfers_alive; /* amount of added transfers that have
  83. not yet reached COMPLETE state */
  84. curl_off_t xfers_total_ever; /* total of added transfers, ever. */
  85. struct uint_tbl xfers; /* transfers added to this multi */
  86. /* Each transfer's mid may be present in at most one of these */
  87. struct uint_bset process; /* transfer being processed */
  88. struct uint_bset dirty; /* transfer to be run NOW, e.g. ASAP. */
  89. struct uint_bset pending; /* transfers in waiting (conn limit etc.) */
  90. struct uint_bset msgsent; /* transfers done with message for application */
  91. struct Curl_llist msglist; /* a list of messages from completed transfers */
  92. struct Curl_easy *admin; /* internal easy handle for admin operations.
  93. gets assigned `mid` 0 on multi init */
  94. /* callback function and user data pointer for the *socket() API */
  95. curl_socket_callback socket_cb;
  96. void *socket_userp;
  97. /* callback function and user data pointer for server push */
  98. curl_push_callback push_cb;
  99. void *push_userp;
  100. struct Curl_dnscache dnscache; /* DNS cache */
  101. struct Curl_ssl_scache *ssl_scache; /* TLS session pool */
  102. #ifdef USE_LIBPSL
  103. /* PSL cache. */
  104. struct PslCache psl;
  105. #endif
  106. /* timetree points to the splay-tree of time nodes to figure out expire
  107. times of all currently set timers */
  108. struct Curl_tree *timetree;
  109. /* buffer used for transfer data, lazy initialized */
  110. char *xfer_buf; /* the actual buffer */
  111. size_t xfer_buf_len; /* the allocated length */
  112. /* buffer used for upload data, lazy initialized */
  113. char *xfer_ulbuf; /* the actual buffer */
  114. size_t xfer_ulbuf_len; /* the allocated length */
  115. /* buffer used for socket I/O operations, lazy initialized */
  116. char *xfer_sockbuf; /* the actual buffer */
  117. size_t xfer_sockbuf_len; /* the allocated length */
  118. /* multi event related things */
  119. struct curl_multi_ev ev;
  120. /* multi notification related things */
  121. struct curl_multi_ntfy ntfy;
  122. /* `proto_hash` is a general key-value store for protocol implementations
  123. * with the lifetime of the multi handle. The number of elements kept here
  124. * should be in the order of supported protocols (and sub-protocols like
  125. * TLS), *not* in the order of connections or current transfers!
  126. * Elements need to be added with their own destructor to be invoked when
  127. * the multi handle is cleaned up (see Curl_hash_add2()).*/
  128. struct Curl_hash proto_hash;
  129. struct cshutdn cshutdn; /* connection shutdown handling */
  130. struct cpool cpool; /* connection pool (bundles) */
  131. long max_host_connections; /* if >0, a fixed limit of the maximum number
  132. of connections per host */
  133. long max_total_connections; /* if >0, a fixed limit of the maximum number
  134. of connections in total */
  135. /* timer callback and user data pointer for the *socket() API */
  136. curl_multi_timer_callback timer_cb;
  137. void *timer_userp;
  138. long last_timeout_ms; /* the last timeout value set via timer_cb */
  139. struct curltime last_expire_ts; /* timestamp of last expiry */
  140. #ifdef USE_WINSOCK
  141. WSAEVENT wsa_event; /* Winsock event used for waits */
  142. #else
  143. #ifdef ENABLE_WAKEUP
  144. curl_socket_t wakeup_pair[2]; /* eventfd()/pipe()/socketpair() used for
  145. wakeup 0 is used for read, 1 is used
  146. for write */
  147. #endif
  148. #endif
  149. unsigned int max_concurrent_streams;
  150. unsigned int maxconnects; /* if >0, a fixed limit of the maximum number of
  151. entries we are allowed to grow the connection
  152. cache to */
  153. #define IPV6_UNKNOWN 0
  154. #define IPV6_DEAD 1
  155. #define IPV6_WORKS 2
  156. unsigned char ipv6_up; /* IPV6_* defined */
  157. BIT(multiplexing); /* multiplexing wanted */
  158. BIT(recheckstate); /* see Curl_multi_connchanged */
  159. BIT(in_callback); /* true while executing a callback */
  160. BIT(in_ntfy_callback); /* true while dispatching notifications */
  161. #ifdef USE_OPENSSL
  162. BIT(ssl_seeded);
  163. #endif
  164. BIT(dead); /* a callback returned error, everything needs to crash and
  165. burn */
  166. BIT(xfer_buf_borrowed); /* xfer_buf is currently being borrowed */
  167. BIT(xfer_ulbuf_borrowed); /* xfer_ulbuf is currently being borrowed */
  168. BIT(xfer_sockbuf_borrowed); /* xfer_sockbuf is currently being borrowed */
  169. #ifdef DEBUGBUILD
  170. BIT(warned); /* true after user warned of DEBUGBUILD */
  171. #endif
  172. };
  173. #endif /* HEADER_CURL_MULTIHANDLE_H */