1 .\" $NetBSD: libcrypto.pl,v 1.3 2007/11/27 22:16:03 christos Exp $
3 .\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
6 .\" ========================================================================
7 .de Sh \" Subsection heading
15 .de Sp \" Vertical space (when we can't use .PP)
19 .de Vb \" Begin verbatim text
24 .de Ve \" End verbatim text
28 .\" Set up some character translations and predefined strings. \*(-- will
29 .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
30 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
31 .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
32 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
33 .\" nothing in troff, for use with C<>.
35 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
39 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
40 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
53 .\" Escape single quotes in literal strings from groff's Unicode transform.
57 .\" If the F register is turned on, we'll generate index entries on stderr for
58 .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
59 .\" entries marked with X<> in POD. Of course, you'll have to process the
60 .\" output yourself in some meaningful fashion.
63 . tm Index:\\$1\t\\n%\t"\\$2"
73 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
74 .\" Fear. Run. Save yourself. No user-serviceable parts.
75 . \" fudge factors for nroff and troff
84 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
90 . \" simple accents for nroff and troff
100 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
101 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
102 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
103 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
104 . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
105 . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
107 . \" troff and (daisy-wheel) nroff accents
108 .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
109 .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
110 .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
111 .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
112 .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
113 .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
114 .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
115 .ds ae a\h'-(\w'a'u*4/10)'e
116 .ds Ae A\h'-(\w'A'u*4/10)'E
117 . \" corrections for vroff
118 .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
119 .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
120 . \" for low resolution devices (crt and lpr)
121 .if \n(.H>23 .if \n(.V>19 \
134 .\" ========================================================================
136 .IX Title "BIO_s_bio 3"
137 .TH BIO_s_bio 3 "2003-05-23" "1.1.0-dev" "OpenSSL"
138 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
139 .\" way too many mistakes in technical documents.
143 BIO_s_bio, BIO_make_bio_pair, BIO_destroy_bio_pair, BIO_shutdown_wr,
144 BIO_set_write_buf_size, BIO_get_write_buf_size, BIO_new_bio_pair,
145 BIO_get_write_guarantee, BIO_ctrl_get_write_guarantee, BIO_get_read_request,
146 BIO_ctrl_get_read_request, BIO_ctrl_reset_read_request \- BIO pair BIO
150 .IX Header "SYNOPSIS"
152 \& #include <openssl/bio.h>
154 \& BIO_METHOD *BIO_s_bio(void);
156 \& #define BIO_make_bio_pair(b1,b2) (int)BIO_ctrl(b1,BIO_C_MAKE_BIO_PAIR,0,b2)
157 \& #define BIO_destroy_bio_pair(b) (int)BIO_ctrl(b,BIO_C_DESTROY_BIO_PAIR,0,NULL)
159 \& #define BIO_shutdown_wr(b) (int)BIO_ctrl(b, BIO_C_SHUTDOWN_WR, 0, NULL)
161 \& #define BIO_set_write_buf_size(b,size) (int)BIO_ctrl(b,BIO_C_SET_WRITE_BUF_SIZE,size,NULL)
162 \& #define BIO_get_write_buf_size(b,size) (size_t)BIO_ctrl(b,BIO_C_GET_WRITE_BUF_SIZE,size,NULL)
164 \& int BIO_new_bio_pair(BIO **bio1, size_t writebuf1, BIO **bio2, size_t writebuf2);
166 \& #define BIO_get_write_guarantee(b) (int)BIO_ctrl(b,BIO_C_GET_WRITE_GUARANTEE,0,NULL)
167 \& size_t BIO_ctrl_get_write_guarantee(BIO *b);
169 \& #define BIO_get_read_request(b) (int)BIO_ctrl(b,BIO_C_GET_READ_REQUEST,0,NULL)
170 \& size_t BIO_ctrl_get_read_request(BIO *b);
172 \& int BIO_ctrl_reset_read_request(BIO *b);
175 .IX Header "DESCRIPTION"
176 \&\fIBIO_s_bio()\fR returns the method for a \s-1BIO\s0 pair. A \s-1BIO\s0 pair is a pair of source/sink
177 BIOs where data written to either half of the pair is buffered and can be read from
178 the other half. Both halves must usually by handled by the same application thread
179 since no locking is done on the internal data structures.
181 Since \s-1BIO\s0 chains typically end in a source/sink \s-1BIO\s0 it is possible to make this
182 one half of a \s-1BIO\s0 pair and have all the data processed by the chain under application
185 One typical use of \s-1BIO\s0 pairs is to place \s-1TLS/SSL\s0 I/O under application control, this
186 can be used when the application wishes to use a non standard transport for
187 \&\s-1TLS/SSL\s0 or the normal socket routines are inappropriate.
189 Calls to \fIBIO_read()\fR will read data from the buffer or request a retry if no
192 Calls to \fIBIO_write()\fR will place data in the buffer or request a retry if the
195 The standard calls \fIBIO_ctrl_pending()\fR and \fIBIO_ctrl_wpending()\fR can be used to
196 determine the amount of pending data in the read or write buffer.
198 \&\fIBIO_reset()\fR clears any data in the write buffer.
200 \&\fIBIO_make_bio_pair()\fR joins two separate BIOs into a connected pair.
202 \&\fIBIO_destroy_pair()\fR destroys the association between two connected BIOs. Freeing
203 up any half of the pair will automatically destroy the association.
205 \&\fIBIO_shutdown_wr()\fR is used to close down a \s-1BIO\s0 \fBb\fR. After this call no further
206 writes on \s-1BIO\s0 \fBb\fR are allowed (they will return an error). Reads on the other
207 half of the pair will return any pending data or \s-1EOF\s0 when all pending data has
210 \&\fIBIO_set_write_buf_size()\fR sets the write buffer size of \s-1BIO\s0 \fBb\fR to \fBsize\fR.
211 If the size is not initialized a default value is used. This is currently
212 17K, sufficient for a maximum size \s-1TLS\s0 record.
214 \&\fIBIO_get_write_buf_size()\fR returns the size of the write buffer.
216 \&\fIBIO_new_bio_pair()\fR combines the calls to \fIBIO_new()\fR, \fIBIO_make_bio_pair()\fR and
217 \&\fIBIO_set_write_buf_size()\fR to create a connected pair of BIOs \fBbio1\fR, \fBbio2\fR
218 with write buffer sizes \fBwritebuf1\fR and \fBwritebuf2\fR. If either size is
219 zero then the default size is used. \fIBIO_new_bio_pair()\fR does not check whether
220 \&\fBbio1\fR or \fBbio2\fR do point to some other \s-1BIO\s0, the values are overwritten,
221 \&\fIBIO_free()\fR is not called.
223 \&\fIBIO_get_write_guarantee()\fR and \fIBIO_ctrl_get_write_guarantee()\fR return the maximum
224 length of data that can be currently written to the \s-1BIO\s0. Writes larger than this
225 value will return a value from \fIBIO_write()\fR less than the amount requested or if the
226 buffer is full request a retry. \fIBIO_ctrl_get_write_guarantee()\fR is a function
227 whereas \fIBIO_get_write_guarantee()\fR is a macro.
229 \&\fIBIO_get_read_request()\fR and \fIBIO_ctrl_get_read_request()\fR return the
230 amount of data requested, or the buffer size if it is less, if the
231 last read attempt at the other half of the \s-1BIO\s0 pair failed due to an
232 empty buffer. This can be used to determine how much data should be
233 written to the \s-1BIO\s0 so the next read will succeed: this is most useful
234 in \s-1TLS/SSL\s0 applications where the amount of data read is usually
235 meaningful rather than just a buffer size. After a successful read
236 this call will return zero. It also will return zero once new data
237 has been written satisfying the read request or part of it.
238 Note that \fIBIO_get_read_request()\fR never returns an amount larger
239 than that returned by \fIBIO_get_write_guarantee()\fR.
241 \&\fIBIO_ctrl_reset_read_request()\fR can also be used to reset the value returned by
242 \&\fIBIO_get_read_request()\fR to zero.
245 Both halves of a \s-1BIO\s0 pair should be freed. That is even if one half is implicit
246 freed due to a \fIBIO_free_all()\fR or \fISSL_free()\fR call the other half needs to be freed.
248 When used in bidirectional applications (such as \s-1TLS/SSL\s0) care should be taken to
249 flush any data in the write buffer. This can be done by calling \fIBIO_pending()\fR
250 on the other half of the pair and, if any data is pending, reading it and sending
251 it to the underlying transport. This must be done before any normal processing
252 (such as calling \fIselect()\fR ) due to a request and \fIBIO_should_read()\fR being true.
254 To see why this is important consider a case where a request is sent using
255 \&\fIBIO_write()\fR and a response read with \fIBIO_read()\fR, this can occur during an
256 \&\s-1TLS/SSL\s0 handshake for example. \fIBIO_write()\fR will succeed and place data in the write
257 buffer. \fIBIO_read()\fR will initially fail and \fIBIO_should_read()\fR will be true. If
258 the application then waits for data to be available on the underlying transport
259 before flushing the write buffer it will never succeed because the request was
262 .IX Header "RETURN VALUES"
263 \&\fIBIO_new_bio_pair()\fR returns 1 on success, with the new BIOs available in
264 \&\fBbio1\fR and \fBbio2\fR, or 0 on failure, with \s-1NULL\s0 pointers stored into the
265 locations for \fBbio1\fR and \fBbio2\fR. Check the error stack for more information.
267 [\s-1XXXXX:\s0 More return values need to be added here]
270 The \s-1BIO\s0 pair can be used to have full control over the network access of an
271 application. The application can call \fIselect()\fR on the socket as required
272 without having to go through the SSL-interface.
275 \& BIO *internal_bio, *network_bio;
277 \& BIO_new_bio_pair(internal_bio, 0, network_bio, 0);
278 \& SSL_set_bio(ssl, internal_bio, internal_bio);
282 \& application | TLS\-engine
284 \& +\-\-\-\-\-\-\-\-\-\-> SSL_operations()
287 \& | BIO\-pair (internal_bio)
288 \& +\-\-\-\-\-\-\-\-\-\-< BIO\-pair (network_bio)
293 \& SSL_free(ssl); /* implicitly frees internal_bio */
294 \& BIO_free(network_bio);
298 As the \s-1BIO\s0 pair will only buffer the data and never directly access the
299 connection, it behaves non-blocking and will return as soon as the write
300 buffer is full or the read buffer is drained. Then the application has to
301 flush the write buffer and/or fill the read buffer.
303 Use the \fIBIO_ctrl_pending()\fR, to find out whether data is buffered in the \s-1BIO\s0
304 and must be transfered to the network. Use \fIBIO_ctrl_get_read_request()\fR to
305 find out, how many bytes must be written into the buffer before the
306 \&\fISSL_operation()\fR can successfully be continued.
309 As the data is buffered, \fISSL_operation()\fR may return with a \s-1ERROR_SSL_WANT_READ\s0
310 condition, but there is still data in the write buffer. An application must
311 not rely on the error value of \fISSL_operation()\fR but must assure that the
312 write buffer is always flushed first. Otherwise a deadlock may occur as
313 the peer might be waiting for the data before being able to continue.
315 .IX Header "SEE ALSO"
316 \&\fISSL_set_bio\fR\|(3), \fIssl\fR\|(3), \fIopenssl_bio\fR\|(3),
317 \&\fIBIO_should_retry\fR\|(3), \fIBIO_read\fR\|(3)