OSSL_HTTP_REQ_CTX.pod 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. =pod
  2. =head1 NAME
  3. OSSL_HTTP_REQ_CTX,
  4. OSSL_HTTP_REQ_CTX_new,
  5. OSSL_HTTP_REQ_CTX_free,
  6. OSSL_HTTP_REQ_CTX_set_request_line,
  7. OSSL_HTTP_REQ_CTX_add1_header,
  8. OSSL_HTTP_REQ_CTX_set_expected,
  9. OSSL_HTTP_REQ_CTX_set1_req,
  10. OSSL_HTTP_REQ_CTX_nbio,
  11. OSSL_HTTP_REQ_CTX_nbio_d2i,
  12. OSSL_HTTP_REQ_CTX_exchange,
  13. OSSL_HTTP_REQ_CTX_get0_mem_bio,
  14. OSSL_HTTP_REQ_CTX_get_resp_len,
  15. OSSL_HTTP_REQ_CTX_set_max_response_length,
  16. OSSL_HTTP_is_alive,
  17. OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines
  18. - HTTP client low-level functions
  19. =head1 SYNOPSIS
  20. #include <openssl/http.h>
  21. typedef struct ossl_http_req_ctx_st OSSL_HTTP_REQ_CTX;
  22. OSSL_HTTP_REQ_CTX *OSSL_HTTP_REQ_CTX_new(BIO *wbio, BIO *rbio, int buf_size);
  23. void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx);
  24. int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx, int method_POST,
  25. const char *server, const char *port,
  26. const char *path);
  27. int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx,
  28. const char *name, const char *value);
  29. int OSSL_HTTP_REQ_CTX_set_expected(OSSL_HTTP_REQ_CTX *rctx,
  30. const char *content_type, int asn1,
  31. int timeout, int keep_alive);
  32. int OSSL_HTTP_REQ_CTX_set1_req(OSSL_HTTP_REQ_CTX *rctx, const char *content_type,
  33. const ASN1_ITEM *it, const ASN1_VALUE *req);
  34. int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx);
  35. int OSSL_HTTP_REQ_CTX_nbio_d2i(OSSL_HTTP_REQ_CTX *rctx,
  36. ASN1_VALUE **pval, const ASN1_ITEM *it);
  37. BIO *OSSL_HTTP_REQ_CTX_exchange(OSSL_HTTP_REQ_CTX *rctx);
  38. BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(const OSSL_HTTP_REQ_CTX *rctx);
  39. size_t OSSL_HTTP_REQ_CTX_get_resp_len(const OSSL_HTTP_REQ_CTX *rctx);
  40. void OSSL_HTTP_REQ_CTX_set_max_response_length(OSSL_HTTP_REQ_CTX *rctx,
  41. unsigned long len);
  42. int OSSL_HTTP_is_alive(const OSSL_HTTP_REQ_CTX *rctx);
  43. void OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines(OSSL_HTTP_REQ_CTX *rctx,
  44. size_t count);
  45. =head1 DESCRIPTION
  46. B<OSSL_HTTP_REQ_CTX> is a context structure for an HTTP request and response,
  47. used to collect all the necessary data to perform that request.
  48. This file documents low-level HTTP functions rarely used directly. High-level
  49. HTTP client functions like L<OSSL_HTTP_get(3)> and L<OSSL_HTTP_transfer(3)>
  50. should be preferred.
  51. OSSL_HTTP_REQ_CTX_new() allocates a new HTTP request context structure,
  52. which gets populated with the B<BIO> to write/send the request to (I<wbio>),
  53. the B<BIO> to read/receive the response from (I<rbio>, which may be equal to
  54. I<wbio>), and the maximum expected response header line length I<buf_size>.
  55. A value <= 0 indicates that
  56. the B<OSSL_HTTP_DEFAULT_MAX_LINE_LEN> of 4KiB should be used.
  57. I<buf_size> is also used as the number of content bytes that are read at a time.
  58. The allocated context structure includes an internal memory B<BIO>,
  59. which collects the HTTP request header lines.
  60. OSSL_HTTP_REQ_CTX_free() frees up the HTTP request context I<rctx>.
  61. The I<rbio> is not free'd, I<wbio> will be free'd if I<free_wbio> is set.
  62. OSSL_HTTP_REQ_CTX_set_request_line() adds the 1st HTTP request line to I<rctx>.
  63. The HTTP method is determined by I<method_POST>,
  64. which should be 1 to indicate C<POST> or 0 to indicate C<GET>.
  65. I<server> and I<port> may be set to give the server and the optional port that
  66. an HTTP proxy shall forward the request to, otherwise they must be left NULL.
  67. I<path> provides the HTTP request path; if left NULL, C</> is used.
  68. For backward compatibility, I<path> may begin with C<http://> and thus convey
  69. an absoluteURI. In this case it indicates HTTP proxy use and provides also the
  70. server (and optionally the port) that the proxy shall forward the request to.
  71. In this case the I<server> and I<port> arguments must be NULL.
  72. OSSL_HTTP_REQ_CTX_add1_header() adds header I<name> with value I<value> to the
  73. context I<rctx>. It can be called more than once to add multiple header lines.
  74. For example, to add a C<Host> header for C<example.com> you would call:
  75. OSSL_HTTP_REQ_CTX_add1_header(ctx, "Host", "example.com");
  76. OSSL_HTTP_REQ_CTX_set_expected() optionally sets in I<rctx> some expectations
  77. of the HTTP client on the response.
  78. Due to the structure of an HTTP request, if the I<keep_alive> argument is
  79. nonzero the function must be used before calling OSSL_HTTP_REQ_CTX_set1_req().
  80. If the I<content_type> argument is not NULL,
  81. the client will check that the specified content-type string
  82. is included in the HTTP header of the response and return an error if not.
  83. In the content-type header line the specified string should be present either
  84. as a whole, or in case the specified string does not include a C<;> character,
  85. it is sufficient that the specified string appears as a prefix
  86. in the header line, followed by a C<;> character and any further text.
  87. For instance, if the I<content_type> argument specifies C<text/html>,
  88. this is matched by C<text/html>, C<text/html; charset=UTF-8>, etc.
  89. If the I<asn1> parameter is nonzero a structure in ASN.1 encoding will be
  90. expected as the response content and input streaming is disabled. This means
  91. that an ASN.1 sequence header is required, its length field is checked, and
  92. OSSL_HTTP_REQ_CTX_get0_mem_bio() should be used to get the buffered response.
  93. Otherwise (by default) any input format is allowed without length checks.
  94. In this case the BIO given as I<rbio> argument to OSSL_HTTP_REQ_CTX_new() should
  95. be used directly to read the response contents, which may support streaming.
  96. If the I<timeout> parameter is > 0 this indicates the maximum number of seconds
  97. the subsequent HTTP transfer (sending the request and receiving a response)
  98. is allowed to take.
  99. I<timeout> == 0 enables waiting indefinitely, i.e., no timeout can occur.
  100. This is the default.
  101. I<timeout> < 0 takes over any value set via the I<overall_timeout> argument of
  102. L<OSSL_HTTP_open(3)> with the default being 0, which means no timeout.
  103. If the I<keep_alive> parameter is 0, which is the default, the connection is not
  104. kept open after receiving a response. This is the default behavior for HTTP 1.0.
  105. If the value is 1 or 2 then a persistent connection is requested.
  106. If the value is 2 then a persistent connection is required,
  107. i.e., an error occurs in case the server does not grant it.
  108. OSSL_HTTP_REQ_CTX_set1_req() finalizes the HTTP request context.
  109. It is needed if the I<method_POST> parameter in the
  110. OSSL_HTTP_REQ_CTX_set_request_line() call was 1
  111. and an ASN.1-encoded request should be sent.
  112. It must also be used when requesting "keep-alive",
  113. even if a GET request is going to be sent, in which case I<req> must be NULL.
  114. Unless I<req> is NULL, the function adds the DER encoding of I<req> using
  115. the ASN.1 template I<it> to do the encoding (which does not support streaming).
  116. The HTTP header C<Content-Length> is filled out with the length of the request.
  117. I<content_type> must be NULL if I<req> is NULL.
  118. If I<content_type> isn't NULL,
  119. the HTTP header C<Content-Type> is also added with the given string value.
  120. The header lines are added to the internal memory B<BIO> for the request header.
  121. OSSL_HTTP_REQ_CTX_nbio() attempts to send the request prepared in I<rctx>
  122. and to gather the response via HTTP, using the I<wbio> and I<rbio>
  123. that were given when calling OSSL_HTTP_REQ_CTX_new().
  124. The function may need to be called again if its result is -1, which indicates
  125. L<BIO_should_retry(3)>. In such a case it is advisable to sleep a little in
  126. between, using L<BIO_wait(3)> on the read BIO to prevent a busy loop.
  127. OSSL_HTTP_REQ_CTX_nbio_d2i() is like OSSL_HTTP_REQ_CTX_nbio() but on success
  128. in addition parses the response, which must be a DER-encoded ASN.1 structure,
  129. using the ASN.1 template I<it> and places the result in I<*pval>.
  130. OSSL_HTTP_REQ_CTX_exchange() calls OSSL_HTTP_REQ_CTX_nbio() as often as needed
  131. in order to exchange a request and response or until a timeout is reached.
  132. On success it returns a pointer to the BIO that can be used to read the result.
  133. If an ASN.1-encoded response was expected, this is the BIO
  134. returned by OSSL_HTTP_REQ_CTX_get0_mem_bio() when called after the exchange.
  135. This memory BIO does not support streaming.
  136. Otherwise the returned BIO is the I<rbio> given to OSSL_HTTP_REQ_CTX_new(),
  137. which may support streaming.
  138. When this BIO is returned, it has been read past the end of the response header,
  139. such that the actual response body can be read from it.
  140. The returned BIO pointer MUST NOT be freed by the caller.
  141. OSSL_HTTP_REQ_CTX_get0_mem_bio() returns the internal memory B<BIO>.
  142. Before the HTTP request is sent, this could be used to adapt its header lines.
  143. I<Use with caution!>
  144. After receiving a response via HTTP, the BIO represents the current state of
  145. reading the response header. If the response was expected to be ASN.1 encoded,
  146. its contents can be read via this BIO, which does not support streaming.
  147. The returned BIO pointer must not be freed by the caller.
  148. OSSL_HTTP_REQ_CTX_get_resp_len() returns the size of the response contents
  149. in I<rctx> if provided by the server as <Content-Length> header field, else 0.
  150. OSSL_HTTP_REQ_CTX_set_max_response_length() sets the maximum allowed
  151. response content length for I<rctx> to I<len>. If not set or I<len> is 0
  152. then the B<OSSL_HTTP_DEFAULT_MAX_RESP_LEN> is used, which currently is 100 KiB.
  153. If the C<Content-Length> header is present and exceeds this value or
  154. the content is an ASN.1 encoded structure with a length exceeding this value
  155. or both length indications are present but disagree then an error occurs.
  156. OSSL_HTTP_is_alive() can be used to query if the HTTP connection
  157. given by I<rctx> is still alive, i.e., has not been closed.
  158. It returns 0 if I<rctx> is NULL.
  159. If the client application requested or required a persistent connection
  160. and this was granted by the server, it can keep I<rctx> as long as it wants
  161. to send further requests and OSSL_HTTP_is_alive() returns nonzero,
  162. else it should call I<OSSL_HTTP_REQ_CTX_free(rctx)> or L<OSSL_HTTP_close(3)>.
  163. In case the client application keeps I<rctx> but the connection then dies
  164. for any reason at the server side, it will notice this obtaining an
  165. I/O error when trying to send the next request via I<rctx>.
  166. The OSSL_HTTP_REQ_CTX_set_max_response_hdr_lines() function changes the limit
  167. for the number of HTTP headers which can be received in a response. The default
  168. value is 256. If the number of HTTP headers in a response exceeds the limit,
  169. then the HTTP_R_RESPONSE_TOO_MANY_HDRLINES error is indicated. Setting the
  170. limit to 0 disables the check.
  171. =head1 WARNINGS
  172. The server's response may be unexpected if the hostname that was used to
  173. create the I<wbio>, any C<Host> header, and the host specified in the
  174. request URL do not match.
  175. Many of these functions must be called in a certain order.
  176. First, the HTTP request context must be allocated:
  177. OSSL_HTTP_REQ_CTX_new().
  178. Then, the HTTP request must be prepared with request data:
  179. =over 4
  180. =item 1.
  181. Calling OSSL_HTTP_REQ_CTX_set_request_line().
  182. =item 2.
  183. Adding extra header lines with OSSL_HTTP_REQ_CTX_add1_header().
  184. This is optional and may be done multiple times with different names.
  185. =item 3.
  186. Finalize the request using OSSL_HTTP_REQ_CTX_set1_req().
  187. This may be omitted if the GET method is used and "keep-alive" is not requested.
  188. =back
  189. When the request context is fully prepared, the HTTP exchange may be performed
  190. with OSSL_HTTP_REQ_CTX_nbio() or OSSL_HTTP_REQ_CTX_exchange().
  191. =head1 NOTES
  192. When built with tracing enabled, OSSL_HTTP_REQ_CTX_nbio() and all functions
  193. using it, such as OSSL_HTTP_REQ_CTX_exchange() and L<OSSL_HTTP_transfer(3)>,
  194. may be traced using B<OSSL_TRACE_CATEGORY_HTTP>.
  195. See also L<OSSL_trace_enabled(3)> and L<openssl(1)/ENVIRONMENT>.
  196. =head1 RETURN VALUES
  197. OSSL_HTTP_REQ_CTX_new() returns a pointer to a B<OSSL_HTTP_REQ_CTX>, or NULL
  198. on error.
  199. OSSL_HTTP_REQ_CTX_free() and OSSL_HTTP_REQ_CTX_set_max_response_length()
  200. do not return values.
  201. OSSL_HTTP_REQ_CTX_set_request_line(), OSSL_HTTP_REQ_CTX_add1_header(),
  202. OSSL_HTTP_REQ_CTX_set1_req(), and OSSL_HTTP_REQ_CTX_set_expected()
  203. return 1 for success and 0 for failure.
  204. OSSL_HTTP_REQ_CTX_nbio() and OSSL_HTTP_REQ_CTX_nbio_d2i()
  205. return 1 for success, 0 on error or redirection, -1 if retry is needed.
  206. OSSL_HTTP_REQ_CTX_exchange() and OSSL_HTTP_REQ_CTX_get0_mem_bio()
  207. return a pointer to a B<BIO> on success as described above or NULL on failure.
  208. The returned BIO must not be freed by the caller.
  209. OSSL_HTTP_REQ_CTX_get_resp_len() returns the size of the response contents
  210. or 0 if not available or an error occurred.
  211. OSSL_HTTP_is_alive() returns 1 if its argument is non-NULL
  212. and the client requested a persistent connection
  213. and the server did not disagree on keeping the connection open, else 0.
  214. =head1 SEE ALSO
  215. L<BIO_should_retry(3)>,
  216. L<BIO_wait(3)>,
  217. L<ASN1_item_d2i_bio(3)>,
  218. L<ASN1_item_i2d_mem_bio(3)>,
  219. L<OSSL_HTTP_open(3)>,
  220. L<OSSL_HTTP_get(3)>,
  221. L<OSSL_HTTP_transfer(3)>,
  222. L<OSSL_HTTP_close(3)>,
  223. L<OSSL_trace_enabled(3)>
  224. =head1 HISTORY
  225. The functions described here were added in OpenSSL 3.0.
  226. =head1 COPYRIGHT
  227. Copyright 2015-2024 The OpenSSL Project Authors. All Rights Reserved.
  228. Licensed under the Apache License 2.0 (the "License"). You may not use
  229. this file except in compliance with the License. You can obtain a copy
  230. in the file LICENSE in the source distribution or at
  231. L<https://www.openssl.org/source/license.html>.
  232. =cut