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