1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
.\"
.\" $OpenBSD: SSL_get_error.3,v 1.1 2016/11/05 15:32:20 schwarze Exp $
.\"
.Dd $Mdocdate: November 5 2016 $
.Dt SSL_GET_ERROR 3
.Os
.Sh NAME
.Nm SSL_get_error
.Nd obtain result code for TLS/SSL I/O operation
.Sh SYNOPSIS
.In openssl/ssl.h
.Ft int
.Fn SSL_get_error "const SSL *ssl" "int ret"
.Sh DESCRIPTION
.Fn SSL_get_error
returns a result code (suitable for the C
.Dq switch
statement) for a preceding call to
.Xr SSL_connect 3 ,
.Xr SSL_accept 3 ,
.Xr SSL_do_handshake 3 ,
.Xr SSL_read 3 ,
.Xr SSL_peek 3 ,
or
.Xr SSL_write 3
on
.Fa ssl .
The value returned by that TLS/SSL I/O function must be passed to
.Fn SSL_get_error
in parameter
.Fa ret .
.Pp
In addition to
.Fa ssl
and
.Fa ret ,
.Fn SSL_get_error
inspects the current thread's OpenSSL error queue.
Thus,
.Fn SSL_get_error
must be used in the same thread that performed the TLS/SSL I/O operation,
and no other OpenSSL function calls should appear in between.
The current thread's error queue must be empty before the TLS/SSL I/O operation
is attempted, or
.Fn SSL_get_error
will not work reliably.
.Sh RETURN VALUES
The following return values can currently occur:
.Bl -tag -width Ds
.It Dv SSL_ERROR_NONE
The TLS/SSL I/O operation completed.
This result code is returned if and only if
.Fa ret
< 0.
.It Dv SSL_ERROR_ZERO_RETURN
The TLS/SSL connection has been closed.
If the protocol version is SSL 3.0 or TLS 1.0, this result code is returned
only if a closure alert has occurred in the protocol, i.e., if the connection
has been closed cleanly.
Note that in this case
.Dv SSL_ERROR_ZERO_RETURN
does not necessarily indicate that the underlying transport has been closed.
.It Dv SSL_ERROR_WANT_READ , Dv SSL_ERROR_WANT_WRITE
The operation did not complete;
the same TLS/SSL I/O function should be called again later.
If, by then, the underlying
.Vt BIO
has data available for reading (if the result code is
.Dv SSL_ERROR_WANT_READ )
or allows writing data
.Pq Dv SSL_ERROR_WANT_WRITE ,
then some TLS/SSL protocol progress will take place,
i.e., at least part of a TLS/SSL record will be read or written.
Note that the retry may again lead to a
.Dv SSL_ERROR_WANT_READ
or
.Dv SSL_ERROR_WANT_WRITE
condition.
There is no fixed upper limit for the number of iterations that may be
necessary until progress becomes visible at application protocol level.
.Pp
For socket
.Fa BIO Ns
s (e.g., when
.Fn SSL_set_fd
was used),
.Xr select 2
or
.Xr poll 2
on the underlying socket can be used to find out when the TLS/SSL I/O function
should be retried.
.Pp
Caveat: Any TLS/SSL I/O function can lead to either of
.Dv SSL_ERROR_WANT_READ
and
.Dv SSL_ERROR_WANT_WRITE .
In particular,
.Xr SSL_read 3
or
.Xr SSL_peek 3
may want to write data and
.Xr SSL_write 3
may want
to read data.
This is mainly because TLS/SSL handshakes may occur at any time during the
protocol (initiated by either the client or the server);
.Xr SSL_read 3 ,
.Xr SSL_peek 3 ,
and
.Xr SSL_write 3
will handle any pending handshakes.
.It Dv SSL_ERROR_WANT_CONNECT , Dv SSL_ERROR_WANT_ACCEPT
The operation did not complete; the same TLS/SSL I/O function should be
called again later.
The underlying BIO was not connected yet to the peer and the call would block
in
.Xr connect 2 Ns / Ns
.Xr accept 2 .
The SSL function should be
called again when the connection is established.
These messages can only appear with a
.Xr BIO_s_connect 3
or
.Xr BIO_s_accept 3
.Vt BIO ,
respectively.
In order to find out when the connection has been successfully established,
on many platforms
.Xr select 2
or
.Xr poll 2
for writing on the socket file descriptor can be used.
.It Dv SSL_ERROR_WANT_X509_LOOKUP
The operation did not complete because an application callback set by
.Xr SSL_CTX_set_client_cert_cb 3
has asked to be called again.
The TLS/SSL I/O function should be called again later.
Details depend on the application.
.It Dv SSL_ERROR_SYSCALL
Some I/O error occurred.
The OpenSSL error queue may contain more information on the error.
If the error queue is empty (i.e.,
.Fn ERR_get_error
returns 0),
.Fa ret
can be used to find out more about the error:
If
.Fa ret
== 0, an
.Dv EOF
was observed that violates the protocol.
If
.Fa ret
== \(mi1, the underlying
.Vt BIO
reported an
I/O error (for socket I/O on Unix systems, consult
.Dv errno
for details).
.It Dv SSL_ERROR_SSL
A failure in the SSL library occurred, usually a protocol error.
The OpenSSL error queue contains more information on the error.
.El
.Sh SEE ALSO
.Xr err 3 ,
.Xr ssl 3
.Sh HISTORY
.Fn SSL_get_error
was added in SSLeay 0.8.
|