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_should_retry 3"
137 .TH BIO_should_retry 3 "2000-09-16" "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_should_retry, BIO_should_read, BIO_should_write,
144 BIO_should_io_special, BIO_retry_type, BIO_should_retry,
145 BIO_get_retry_BIO, BIO_get_retry_reason \- BIO retry functions
149 .IX Header "SYNOPSIS"
151 \& #include <openssl/bio.h>
153 \& #define BIO_should_read(a) ((a)\->flags & BIO_FLAGS_READ)
154 \& #define BIO_should_write(a) ((a)\->flags & BIO_FLAGS_WRITE)
155 \& #define BIO_should_io_special(a) ((a)\->flags & BIO_FLAGS_IO_SPECIAL)
156 \& #define BIO_retry_type(a) ((a)\->flags & BIO_FLAGS_RWS)
157 \& #define BIO_should_retry(a) ((a)\->flags & BIO_FLAGS_SHOULD_RETRY)
159 \& #define BIO_FLAGS_READ 0x01
160 \& #define BIO_FLAGS_WRITE 0x02
161 \& #define BIO_FLAGS_IO_SPECIAL 0x04
162 \& #define BIO_FLAGS_RWS (BIO_FLAGS_READ|BIO_FLAGS_WRITE|BIO_FLAGS_IO_SPECIAL)
163 \& #define BIO_FLAGS_SHOULD_RETRY 0x08
165 \& BIO * BIO_get_retry_BIO(BIO *bio, int *reason);
166 \& int BIO_get_retry_reason(BIO *bio);
169 .IX Header "DESCRIPTION"
170 These functions determine why a \s-1BIO\s0 is not able to read or write data.
171 They will typically be called after a failed \fIBIO_read()\fR or \fIBIO_write()\fR
174 \&\fIBIO_should_retry()\fR is true if the call that produced this condition
175 should then be retried at a later time.
177 If \fIBIO_should_retry()\fR is false then the cause is an error condition.
179 \&\fIBIO_should_read()\fR is true if the cause of the condition is that a \s-1BIO\s0
182 \&\fIBIO_should_write()\fR is true if the cause of the condition is that a \s-1BIO\s0
185 \&\fIBIO_should_io_special()\fR is true if some \*(L"special\*(R" condition, that is a
186 reason other than reading or writing is the cause of the condition.
188 \&\fIBIO_get_retry_reason()\fR returns a mask of the cause of a retry condition
189 consisting of the values \fB\s-1BIO_FLAGS_READ\s0\fR, \fB\s-1BIO_FLAGS_WRITE\s0\fR,
190 \&\fB\s-1BIO_FLAGS_IO_SPECIAL\s0\fR though current \s-1BIO\s0 types will only set one of
193 \&\fIBIO_get_retry_BIO()\fR determines the precise reason for the special
194 condition, it returns the \s-1BIO\s0 that caused this condition and if
195 \&\fBreason\fR is not \s-1NULL\s0 it contains the reason code. The meaning of
196 the reason code and the action that should be taken depends on
197 the type of \s-1BIO\s0 that resulted in this condition.
199 \&\fIBIO_get_retry_reason()\fR returns the reason for a special condition if
200 passed the relevant \s-1BIO\s0, for example as returned by \fIBIO_get_retry_BIO()\fR.
203 If \fIBIO_should_retry()\fR returns false then the precise \*(L"error condition\*(R"
204 depends on the \s-1BIO\s0 type that caused it and the return code of the \s-1BIO\s0
205 operation. For example if a call to \fIBIO_read()\fR on a socket \s-1BIO\s0 returns
206 0 and \fIBIO_should_retry()\fR is false then the cause will be that the
207 connection closed. A similar condition on a file \s-1BIO\s0 will mean that it
208 has reached \s-1EOF\s0. Some \s-1BIO\s0 types may place additional information on
209 the error queue. For more details see the individual \s-1BIO\s0 type manual
212 If the underlying I/O structure is in a blocking mode almost all current
213 \&\s-1BIO\s0 types will not request a retry, because the underlying I/O
214 calls will not. If the application knows that the \s-1BIO\s0 type will never
215 signal a retry then it need not call \fIBIO_should_retry()\fR after a failed
216 \&\s-1BIO\s0 I/O call. This is typically done with file BIOs.
218 \&\s-1SSL\s0 BIOs are the only current exception to this rule: they can request a
219 retry even if the underlying I/O structure is blocking, if a handshake
220 occurs during a call to \fIBIO_read()\fR. An application can retry the failed
221 call immediately or avoid this situation by setting \s-1SSL_MODE_AUTO_RETRY\s0
222 on the underlying \s-1SSL\s0 structure.
224 While an application may retry a failed non blocking call immediately
225 this is likely to be very inefficient because the call will fail
226 repeatedly until data can be processed or is available. An application
227 will normally wait until the necessary condition is satisfied. How
228 this is done depends on the underlying I/O structure.
230 For example if the cause is ultimately a socket and \fIBIO_should_read()\fR
231 is true then a call to \fIselect()\fR may be made to wait until data is
232 available and then retry the \s-1BIO\s0 operation. By combining the retry
233 conditions of several non blocking BIOs in a single \fIselect()\fR call
234 it is possible to service several BIOs in a single thread, though
235 the performance may be poor if \s-1SSL\s0 BIOs are present because long delays
236 can occur during the initial handshake process.
238 It is possible for a \s-1BIO\s0 to block indefinitely if the underlying I/O
239 structure cannot process or return any data. This depends on the behaviour of
240 the platforms I/O functions. This is often not desirable: one solution
241 is to use non blocking I/O and use a timeout on the \fIselect()\fR (or
245 The OpenSSL \s-1ASN1\s0 functions cannot gracefully deal with non blocking I/O:
246 that is they cannot retry after a partial read or write. This is usually
247 worked around by only passing the relevant data to \s-1ASN1\s0 functions when
248 the entire structure can be read or written.
250 .IX Header "SEE ALSO"