]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - crypto/openssl/doc/man3/OCSP_sendreq_new.pod
MFC: r359060, r359061, r359066
[FreeBSD/FreeBSD.git] / crypto / openssl / doc / man3 / OCSP_sendreq_new.pod
1 =pod
2
3 =head1 NAME
4
5 OCSP_sendreq_new, OCSP_sendreq_nbio, OCSP_REQ_CTX_free,
6 OCSP_set_max_response_length, OCSP_REQ_CTX_add1_header,
7 OCSP_REQ_CTX_set1_req, OCSP_sendreq_bio - OCSP responder query functions
8
9 =head1 SYNOPSIS
10
11  #include <openssl/ocsp.h>
12
13  OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path, OCSP_REQUEST *req,
14                                 int maxline);
15
16  int OCSP_sendreq_nbio(OCSP_RESPONSE **presp, OCSP_REQ_CTX *rctx);
17
18  void OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx);
19
20  void OCSP_set_max_response_length(OCSP_REQ_CTX *rctx, unsigned long len);
21
22  int OCSP_REQ_CTX_add1_header(OCSP_REQ_CTX *rctx,
23                               const char *name, const char *value);
24
25  int OCSP_REQ_CTX_set1_req(OCSP_REQ_CTX *rctx, OCSP_REQUEST *req);
26
27  OCSP_RESPONSE *OCSP_sendreq_bio(BIO *io, const char *path, OCSP_REQUEST *req);
28
29 =head1 DESCRIPTION
30
31 The function OCSP_sendreq_new() returns an B<OCSP_CTX> structure using the
32 responder B<io>, the URL path B<path>, the OCSP request B<req> and with a
33 response header maximum line length of B<maxline>. If B<maxline> is zero a
34 default value of 4k is used. The OCSP request B<req> may be set to B<NULL>
35 and provided later if required.
36
37 OCSP_sendreq_nbio() performs non-blocking I/O on the OCSP request context
38 B<rctx>. When the operation is complete it returns the response in B<*presp>.
39
40 OCSP_REQ_CTX_free() frees up the OCSP context B<rctx>.
41
42 OCSP_set_max_response_length() sets the maximum response length for B<rctx>
43 to B<len>. If the response exceeds this length an error occurs. If not
44 set a default value of 100k is used.
45
46 OCSP_REQ_CTX_add1_header() adds header B<name> with value B<value> to the
47 context B<rctx>. It can be called more than once to add multiple headers.
48 It B<MUST> be called before any calls to OCSP_sendreq_nbio(). The B<req>
49 parameter in the initial to OCSP_sendreq_new() call MUST be set to B<NULL> if
50 additional headers are set.
51
52 OCSP_REQ_CTX_set1_req() sets the OCSP request in B<rctx> to B<req>. This
53 function should be called after any calls to OCSP_REQ_CTX_add1_header().
54
55 OCSP_sendreq_bio() performs an OCSP request using the responder B<io>, the URL
56 path B<path>, and the OCSP request B<req> with a response header maximum line
57 length 4k. It waits indefinitely on a response.
58
59 =head1 RETURN VALUES
60
61 OCSP_sendreq_new() returns a valid B<OCSP_REQ_CTX> structure or B<NULL> if
62 an error occurred.
63
64 OCSP_sendreq_nbio() returns B<1> if the operation was completed successfully,
65 B<-1> if the operation should be retried and B<0> if an error occurred.
66
67 OCSP_REQ_CTX_add1_header() and OCSP_REQ_CTX_set1_req() return B<1> for success
68 and B<0> for failure.
69
70 OCSP_sendreq_bio() returns the B<OCSP_RESPONSE> structure sent by the
71 responder or B<NULL> if an error occurred.
72
73 OCSP_REQ_CTX_free() and OCSP_set_max_response_length() do not return values.
74
75 =head1 NOTES
76
77 These functions only perform a minimal HTTP query to a responder. If an
78 application wishes to support more advanced features it should use an
79 alternative more complete HTTP library.
80
81 Currently only HTTP POST queries to responders are supported.
82
83 The arguments to OCSP_sendreq_new() correspond to the components of the URL.
84 For example if the responder URL is B<http://ocsp.com/ocspreq> the BIO
85 B<io> should be connected to host B<ocsp.com> on port 80 and B<path>
86 should be set to B<"/ocspreq">
87
88 The headers added with OCSP_REQ_CTX_add1_header() are of the form
89 "B<name>: B<value>" or just "B<name>" if B<value> is B<NULL>. So to add
90 a Host header for B<ocsp.com> you would call:
91
92  OCSP_REQ_CTX_add1_header(ctx, "Host", "ocsp.com");
93
94 If OCSP_sendreq_nbio() indicates an operation should be retried the
95 corresponding BIO can be examined to determine which operation (read or
96 write) should be retried and appropriate action taken (for example a select()
97 call on the underlying socket).
98
99 OCSP_sendreq_bio() does not support retries and so cannot handle non-blocking
100 I/O efficiently. It is retained for compatibility and its use in new
101 applications is not recommended.
102
103 =head1 SEE ALSO
104
105 L<crypto(7)>,
106 L<OCSP_cert_to_id(3)>,
107 L<OCSP_request_add1_nonce(3)>,
108 L<OCSP_REQUEST_new(3)>,
109 L<OCSP_resp_find_status(3)>,
110 L<OCSP_response_status(3)>
111
112 =head1 COPYRIGHT
113
114 Copyright 2015-2020 The OpenSSL Project Authors. All Rights Reserved.
115
116 Licensed under the OpenSSL license (the "License").  You may not use
117 this file except in compliance with the License.  You can obtain a copy
118 in the file LICENSE in the source distribution or at
119 L<https://www.openssl.org/source/license.html>.
120
121 =cut