2
0

http.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. #ifndef HEADER_CURL_HTTP_H
  2. #define HEADER_CURL_HTTP_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. #include "curl_setup.h"
  27. #if defined(USE_MSH3) && !defined(_WIN32)
  28. #include <pthread.h>
  29. #endif
  30. #include "bufq.h"
  31. #include "dynhds.h"
  32. #include "ws.h"
  33. typedef enum {
  34. HTTPREQ_GET,
  35. HTTPREQ_POST,
  36. HTTPREQ_POST_FORM, /* we make a difference internally */
  37. HTTPREQ_POST_MIME, /* we make a difference internally */
  38. HTTPREQ_PUT,
  39. HTTPREQ_HEAD
  40. } Curl_HttpReq;
  41. #ifndef CURL_DISABLE_HTTP
  42. #if defined(USE_HTTP3)
  43. #include <stdint.h>
  44. #endif
  45. extern const struct Curl_handler Curl_handler_http;
  46. #ifdef USE_SSL
  47. extern const struct Curl_handler Curl_handler_https;
  48. #endif
  49. struct dynhds;
  50. CURLcode Curl_bump_headersize(struct Curl_easy *data,
  51. size_t delta,
  52. bool connect_only);
  53. /* Header specific functions */
  54. bool Curl_compareheader(const char *headerline, /* line to check */
  55. const char *header, /* header keyword _with_ colon */
  56. const size_t hlen, /* len of the keyword in bytes */
  57. const char *content, /* content string to find */
  58. const size_t clen); /* len of the content in bytes */
  59. char *Curl_copy_header_value(const char *header);
  60. char *Curl_checkProxyheaders(struct Curl_easy *data,
  61. const struct connectdata *conn,
  62. const char *thisheader,
  63. const size_t thislen);
  64. CURLcode Curl_add_timecondition(struct Curl_easy *data, struct dynbuf *req);
  65. CURLcode Curl_add_custom_headers(struct Curl_easy *data, bool is_connect,
  66. struct dynbuf *req);
  67. CURLcode Curl_dynhds_add_custom(struct Curl_easy *data, bool is_connect,
  68. struct dynhds *hds);
  69. void Curl_http_method(struct Curl_easy *data, struct connectdata *conn,
  70. const char **method, Curl_HttpReq *);
  71. #ifndef CURL_DISABLE_COOKIES
  72. CURLcode Curl_http_cookies(struct Curl_easy *data,
  73. struct connectdata *conn,
  74. struct dynbuf *r);
  75. #else
  76. #define Curl_http_cookies(a,b,c) CURLE_OK
  77. #endif
  78. /* protocol-specific functions set up to be called by the main engine */
  79. CURLcode Curl_http_setup_conn(struct Curl_easy *data,
  80. struct connectdata *conn);
  81. CURLcode Curl_http(struct Curl_easy *data, bool *done);
  82. CURLcode Curl_http_done(struct Curl_easy *data, CURLcode, bool premature);
  83. CURLcode Curl_http_connect(struct Curl_easy *data, bool *done);
  84. int Curl_http_getsock_do(struct Curl_easy *data, struct connectdata *conn,
  85. curl_socket_t *socks);
  86. CURLcode Curl_http_write_resp(struct Curl_easy *data,
  87. const char *buf, size_t blen,
  88. bool is_eos);
  89. CURLcode Curl_http_write_resp_hd(struct Curl_easy *data,
  90. const char *hd, size_t hdlen,
  91. bool is_eos);
  92. /* These functions are in http.c */
  93. CURLcode Curl_http_input_auth(struct Curl_easy *data, bool proxy,
  94. const char *auth);
  95. CURLcode Curl_http_auth_act(struct Curl_easy *data);
  96. /* If only the PICKNONE bit is set, there has been a round-trip and we
  97. selected to use no auth at all. Ie, we actively select no auth, as opposed
  98. to not having one selected. The other CURLAUTH_* defines are present in the
  99. public curl/curl.h header. */
  100. #define CURLAUTH_PICKNONE (1<<30) /* do not use auth */
  101. /* MAX_INITIAL_POST_SIZE indicates the number of bytes that will make the POST
  102. data get included in the initial data chunk sent to the server. If the
  103. data is larger than this, it will automatically get split up in multiple
  104. system calls.
  105. This value used to be fairly big (100K), but we must take into account that
  106. if the server rejects the POST due for authentication reasons, this data
  107. will always be unconditionally sent and thus it may not be larger than can
  108. always be afforded to send twice.
  109. It must not be greater than 64K to work on VMS.
  110. */
  111. #ifndef MAX_INITIAL_POST_SIZE
  112. #define MAX_INITIAL_POST_SIZE (64*1024)
  113. #endif
  114. /* EXPECT_100_THRESHOLD is the request body size limit for when libcurl will
  115. * automatically add an "Expect: 100-continue" header in HTTP requests. When
  116. * the size is unknown, it will always add it.
  117. *
  118. */
  119. #ifndef EXPECT_100_THRESHOLD
  120. #define EXPECT_100_THRESHOLD (1024*1024)
  121. #endif
  122. /* MAX_HTTP_RESP_HEADER_SIZE is the maximum size of all response headers
  123. combined that libcurl allows for a single HTTP response, any HTTP
  124. version. This count includes CONNECT response headers. */
  125. #define MAX_HTTP_RESP_HEADER_SIZE (300*1024)
  126. #endif /* CURL_DISABLE_HTTP */
  127. /****************************************************************************
  128. * HTTP unique setup
  129. ***************************************************************************/
  130. CURLcode Curl_http_write_resp_hds(struct Curl_easy *data,
  131. const char *buf, size_t blen,
  132. size_t *pconsumed);
  133. /**
  134. * Curl_http_output_auth() setups the authentication headers for the
  135. * host/proxy and the correct authentication
  136. * method. data->state.authdone is set to TRUE when authentication is
  137. * done.
  138. *
  139. * @param data all information about the current transfer
  140. * @param conn all information about the current connection
  141. * @param request pointer to the request keyword
  142. * @param httpreq is the request type
  143. * @param path pointer to the requested path
  144. * @param proxytunnel boolean if this is the request setting up a "proxy
  145. * tunnel"
  146. *
  147. * @returns CURLcode
  148. */
  149. CURLcode
  150. Curl_http_output_auth(struct Curl_easy *data,
  151. struct connectdata *conn,
  152. const char *request,
  153. Curl_HttpReq httpreq,
  154. const char *path,
  155. bool proxytunnel); /* TRUE if this is the request setting
  156. up the proxy tunnel */
  157. /* Decode HTTP status code string. */
  158. CURLcode Curl_http_decode_status(int *pstatus, const char *s, size_t len);
  159. /**
  160. * All about a core HTTP request, excluding body and trailers
  161. */
  162. struct httpreq {
  163. char method[24];
  164. char *scheme;
  165. char *authority;
  166. char *path;
  167. struct dynhds headers;
  168. struct dynhds trailers;
  169. };
  170. /**
  171. * Create an HTTP request struct.
  172. */
  173. CURLcode Curl_http_req_make(struct httpreq **preq,
  174. const char *method, size_t m_len,
  175. const char *scheme, size_t s_len,
  176. const char *authority, size_t a_len,
  177. const char *path, size_t p_len);
  178. CURLcode Curl_http_req_make2(struct httpreq **preq,
  179. const char *method, size_t m_len,
  180. CURLU *url, const char *scheme_default);
  181. void Curl_http_req_free(struct httpreq *req);
  182. #define HTTP_PSEUDO_METHOD ":method"
  183. #define HTTP_PSEUDO_SCHEME ":scheme"
  184. #define HTTP_PSEUDO_AUTHORITY ":authority"
  185. #define HTTP_PSEUDO_PATH ":path"
  186. #define HTTP_PSEUDO_STATUS ":status"
  187. /**
  188. * Create the list of HTTP/2 headers which represent the request,
  189. * using HTTP/2 pseudo headers preceding the `req->headers`.
  190. *
  191. * Applies the following transformations:
  192. * - if `authority` is set, any "Host" header is removed.
  193. * - if `authority` is unset and a "Host" header is present, use
  194. * that as `authority` and remove "Host"
  195. * - removes and Connection header fields as defined in rfc9113 ch. 8.2.2
  196. * - lower-cases the header field names
  197. *
  198. * @param h2_headers will contain the HTTP/2 headers on success
  199. * @param req the request to transform
  200. * @param data the handle to lookup defaults like ' :scheme' from
  201. */
  202. CURLcode Curl_http_req_to_h2(struct dynhds *h2_headers,
  203. struct httpreq *req, struct Curl_easy *data);
  204. /**
  205. * All about a core HTTP response, excluding body and trailers
  206. */
  207. struct http_resp {
  208. int status;
  209. char *description;
  210. struct dynhds headers;
  211. struct dynhds trailers;
  212. struct http_resp *prev;
  213. };
  214. /**
  215. * Create an HTTP response struct.
  216. */
  217. CURLcode Curl_http_resp_make(struct http_resp **presp,
  218. int status,
  219. const char *description);
  220. void Curl_http_resp_free(struct http_resp *resp);
  221. #endif /* HEADER_CURL_HTTP_H */