1 .\" $OpenBSD: SSL_shutdown.3,v 1.3 2016/12/06 12:24:33 schwarze Exp $
2 .\" OpenSSL b97fdb57 Nov 11 09:33:09 2016 +0100
4 .\" This file was written by Lutz Jaenicke <jaenicke@openssl.org>.
5 .\" Copyright (c) 2000, 2001, 2004, 2014 The OpenSSL Project.
6 .\" All rights reserved.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\" notice, this list of conditions and the following disclaimer.
15 .\" 2. Redistributions in binary form must reproduce the above copyright
16 .\" notice, this list of conditions and the following disclaimer in
17 .\" the documentation and/or other materials provided with the
20 .\" 3. All advertising materials mentioning features or use of this
21 .\" software must display the following acknowledgment:
22 .\" "This product includes software developed by the OpenSSL Project
23 .\" for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
25 .\" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 .\" endorse or promote products derived from this software without
27 .\" prior written permission. For written permission, please contact
28 .\" openssl-core@openssl.org.
30 .\" 5. Products derived from this software may not be called "OpenSSL"
31 .\" nor may "OpenSSL" appear in their names without prior written
32 .\" permission of the OpenSSL Project.
34 .\" 6. Redistributions of any form whatsoever must retain the following
36 .\" "This product includes software developed by the OpenSSL Project
37 .\" for use in the OpenSSL Toolkit (http://www.openssl.org/)"
39 .\" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 .\" EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 .\" ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 .\" OF THE POSSIBILITY OF SUCH DAMAGE.
52 .Dd $Mdocdate: December 6 2016 $
57 .Nd shut down a TLS/SSL connection
61 .Fn SSL_shutdown "SSL *ssl"
64 shuts down an active TLS/SSL connection.
67 shutdown alert to the peer.
72 shutdown alert to the peer.
73 Whether the operation succeeds or not, the
75 flag is set and a currently open session is considered closed and good and will
76 be kept in the session cache for further reuse.
78 The shutdown procedure consists of 2 steps: the sending of the
80 shutdown alert and the reception of the peer's
83 According to the TLS standard, it is acceptable for an application to only send
84 its shutdown alert and then close the underlying connection without waiting for
85 the peer's response (this way resources can be saved, as the process can
86 already terminate or serve another connection).
87 When the underlying connection shall be used for more communications,
88 the complete shutdown procedure (bidirectional
90 alerts) must be performed, so that the peers stay synchronized.
93 supports both uni- and bidirectional shutdown by its 2 step behavior.
95 When the application is the first party to send the
99 will only send the alert and then set the
100 .Dv SSL_SENT_SHUTDOWN
101 flag (so that the session is considered good and will be kept in cache).
104 If a unidirectional shutdown is enough
105 (the underlying connection shall be closed anyway), this first call to
108 In order to complete the bidirectional shutdown handshake,
110 must be called again.
111 The second call will make
116 On success, the second call to
120 If the peer already sent the
122 alert and it was already processed implicitly inside another function
125 .Dv SSL_RECEIVED_SHUTDOWN
131 .Dv SSL_SENT_SHUTDOWN
132 flag and will immediately return with 1.
134 .Dv SSL_RECEIVED_SHUTDOWN
135 is already set can be checked using the
138 .Xr SSL_set_shutdown 3
141 It is therefore recommended to check the return value of
145 again, if the bidirectional shutdown is not yet complete (return value of the
150 additionally depends on the underlying
158 will only return once the
159 handshake step has been finished or an error occurred.
166 will also return when the underlying
168 could not satisfy the needs of
170 to continue the handshake.
171 In this case a call to
177 .Dv SSL_ERROR_WANT_READ
179 .Dv SSL_ERROR_WANT_WRITE .
180 The calling process then must repeat the call after taking appropriate action
181 to satisfy the needs of
183 The action depends on the underlying
185 When using a non-blocking socket, nothing is to be done, but
187 can be used to check for the required condition.
188 When using a buffering
192 pair, data must be written into or retrieved out of the
194 before being able to continue.
197 can be modified to only set the connection to
199 state but not actually send the
202 .Xr SSL_CTX_set_quiet_shutdown 3 .
207 will always succeed and return 1.
209 The following return values can occur:
212 The shutdown is not yet finished.
215 for a second time, if a bidirectional shutdown shall be performed.
218 may be misleading, as an erroneous
219 .Dv SSL_ERROR_SYSCALL
220 may be flagged even though no error occurred.
222 The shutdown was successfully completed.
225 alert was sent and the peer's
229 The shutdown was not successful because a fatal error occurred either
230 at the protocol level or a connection failure occurred.
231 It can also occur if action is need to continue the operation for non-blocking
236 with the return value
238 to find out the reason.
246 .Xr SSL_CTX_set_quiet_shutdown 3 ,
248 .Xr SSL_get_error 3 ,
249 .Xr SSL_set_shutdown 3