update libressl to v2.7.4
[unleashed.git] / lib / libssl / man / SSL_want.3
blobf2ef1986b6f3b4aa99604ad0860b7306b6b95f9b
1 .\"     $OpenBSD: SSL_want.3,v 1.4 2018/03/21 05:07:04 schwarze Exp $
2 .\"     OpenSSL 9b86974e Aug 17 15:21:33 2015 -0400
3 .\"
4 .\" This file was written by Lutz Jaenicke <jaenicke@openssl.org>.
5 .\" Copyright (c) 2001, 2005 The OpenSSL Project.  All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\"
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\"
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in
16 .\"    the documentation and/or other materials provided with the
17 .\"    distribution.
18 .\"
19 .\" 3. All advertising materials mentioning features or use of this
20 .\"    software must display the following acknowledgment:
21 .\"    "This product includes software developed by the OpenSSL Project
22 .\"    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
23 .\"
24 .\" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25 .\"    endorse or promote products derived from this software without
26 .\"    prior written permission. For written permission, please contact
27 .\"    openssl-core@openssl.org.
28 .\"
29 .\" 5. Products derived from this software may not be called "OpenSSL"
30 .\"    nor may "OpenSSL" appear in their names without prior written
31 .\"    permission of the OpenSSL Project.
32 .\"
33 .\" 6. Redistributions of any form whatsoever must retain the following
34 .\"    acknowledgment:
35 .\"    "This product includes software developed by the OpenSSL Project
36 .\"    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
37 .\"
38 .\" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39 .\" EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
42 .\" ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49 .\" OF THE POSSIBILITY OF SUCH DAMAGE.
50 .\"
51 .Dd $Mdocdate: March 21 2018 $
52 .Dt SSL_WANT 3
53 .Os
54 .Sh NAME
55 .Nm SSL_want ,
56 .Nm SSL_want_nothing ,
57 .Nm SSL_want_read ,
58 .Nm SSL_want_write ,
59 .Nm SSL_want_x509_lookup
60 .Nd obtain state information TLS/SSL I/O operation
61 .Sh SYNOPSIS
62 .In openssl/ssl.h
63 .Ft int
64 .Fn SSL_want "const SSL *ssl"
65 .Ft int
66 .Fn SSL_want_nothing "const SSL *ssl"
67 .Ft int
68 .Fn SSL_want_read "const SSL *ssl"
69 .Ft int
70 .Fn SSL_want_write "const SSL *ssl"
71 .Ft int
72 .Fn SSL_want_x509_lookup "const SSL *ssl"
73 .Sh DESCRIPTION
74 .Fn SSL_want
75 returns state information for the
76 .Vt SSL
77 object
78 .Fa ssl .
79 .Pp
80 The other
81 .Fn SSL_want_*
82 calls are shortcuts for the possible states returned by
83 .Fn SSL_want .
84 .Pp
85 .Fn SSL_want
86 examines the internal state information of the
87 .Vt SSL
88 object.
89 Its return values are similar to those of
90 .Xr SSL_get_error 3 .
91 Unlike
92 .Xr SSL_get_error 3 ,
93 which also evaluates the error queue,
94 the results are obtained by examining an internal state flag only.
95 The information must therefore only be used for normal operation under
96 non-blocking I/O.
97 Error conditions are not handled and must be treated using
98 .Xr SSL_get_error 3 .
99 .Pp
100 The result returned by
101 .Fn SSL_want
102 should always be consistent with the result of
103 .Xr SSL_get_error 3 .
104 .Sh RETURN VALUES
105 The following return values can currently occur for
106 .Fn SSL_want :
107 .Bl -tag -width Ds
108 .It Dv SSL_NOTHING
109 There is no data to be written or to be read.
110 .It Dv SSL_WRITING
111 There are data in the SSL buffer that must be written to the underlying
112 .Vt BIO
113 layer in order to complete the actual
114 .Fn SSL_*
115 operation.
116 A call to
117 .Xr SSL_get_error 3
118 should return
119 .Dv SSL_ERROR_WANT_WRITE .
120 .It Dv SSL_READING
121 More data must be read from the underlying
122 .Vt BIO
123 layer in order to
124 complete the actual
125 .Fn SSL_*
126 operation.
127 A call to
128 .Xr SSL_get_error 3
129 should return
130 .Dv SSL_ERROR_WANT_READ .
131 .It Dv SSL_X509_LOOKUP
132 The operation did not complete because an application callback set by
133 .Xr SSL_CTX_set_client_cert_cb 3
134 has asked to be called again.
135 A call to
136 .Xr SSL_get_error 3
137 should return
138 .Dv SSL_ERROR_WANT_X509_LOOKUP .
141 .Fn SSL_want_nothing ,
142 .Fn SSL_want_read ,
143 .Fn SSL_want_write ,
145 .Fn SSL_want_x509_lookup
146 return 1 when the corresponding condition is true or 0 otherwise.
147 .Sh SEE ALSO
148 .Xr err 3 ,
149 .Xr ssl 3 ,
150 .Xr SSL_get_error 3
151 .Sh HISTORY
152 These functions appeared before SSLeay 0.8 and have been available since
153 .Ox 2.4 .