SSL_shutdown.pod 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. =pod
  2. =head1 NAME
  3. SSL_shutdown - shut down a TLS/SSL connection
  4. =head1 SYNOPSIS
  5. #include <openssl/ssl.h>
  6. int SSL_shutdown(SSL *ssl);
  7. =head1 DESCRIPTION
  8. SSL_shutdown() shuts down an active TLS/SSL connection. It sends the
  9. close_notify shutdown alert to the peer.
  10. =head1 NOTES
  11. SSL_shutdown() tries to send the close_notify shutdown alert to the peer.
  12. Whether the operation succeeds or not, the SSL_SENT_SHUTDOWN flag is set and
  13. a currently open session is considered closed and good and will be kept in the
  14. session cache for further reuse.
  15. Note that SSL_shutdown() must not be called if a previous fatal error has
  16. occurred on a connection i.e. if SSL_get_error() has returned SSL_ERROR_SYSCALL
  17. or SSL_ERROR_SSL.
  18. The shutdown procedure consists of two steps: sending of the close_notify
  19. shutdown alert, and reception of the peer's close_notify shutdown alert.
  20. The order of those two steps depends on the application.
  21. It is acceptable for an application to only send its shutdown alert and
  22. then close the underlying connection without waiting for the peer's response.
  23. This way resources can be saved, as the process can already terminate or
  24. serve another connection.
  25. This should only be done when it is known that the other side will not send more
  26. data, otherwise there is a risk of a truncation attack.
  27. When a client only writes and never reads from the connection, and the server
  28. has sent a session ticket to establish a session, the client might not be able
  29. to resume the session because it did not received and process the session ticket
  30. from the server.
  31. In case the application wants to be able to resume the session, it is recommended to
  32. do a complete shutdown procedure (bidirectional close_notify alerts).
  33. When the underlying connection shall be used for more communications, the
  34. complete shutdown procedure must be performed, so that the peers stay
  35. synchronized.
  36. SSL_shutdown() only closes the write direction.
  37. It is not possible to call SSL_write() after calling SSL_shutdown().
  38. The read direction is closed by the peer.
  39. =head2 First to close the connection
  40. When the application is the first party to send the close_notify
  41. alert, SSL_shutdown() will only send the alert and then set the
  42. SSL_SENT_SHUTDOWN flag (so that the session is considered good and will
  43. be kept in the cache).
  44. If successful, SSL_shutdown() will return 0.
  45. If a unidirectional shutdown is enough (the underlying connection shall be
  46. closed anyway), this first successful call to SSL_shutdown() is sufficient.
  47. In order to complete the bidirectional shutdown handshake, the peer needs
  48. to send back a close_notify alert.
  49. The SSL_RECEIVED_SHUTDOWN flag will be set after receiving and processing
  50. it.
  51. The peer is still allowed to send data after receiving the close_notify
  52. event.
  53. When it is done sending data, it will send the close_notify alert.
  54. SSL_read() should be called until all data is received.
  55. SSL_read() will indicate the end of the peer data by returning <= 0
  56. and SSL_get_error() returning SSL_ERROR_ZERO_RETURN.
  57. =head2 Peer closes the connection
  58. If the peer already sent the close_notify alert B<and> it was
  59. already processed implicitly inside another function
  60. (L<SSL_read(3)>), the SSL_RECEIVED_SHUTDOWN flag is set.
  61. SSL_read() will return <= 0 in that case, and SSL_get_error() will return
  62. SSL_ERROR_ZERO_RETURN.
  63. SSL_shutdown() will send the close_notify alert, set the SSL_SENT_SHUTDOWN
  64. flag.
  65. If successful, SSL_shutdown() will return 1.
  66. Whether SSL_RECEIVED_SHUTDOWN is already set can be checked using the
  67. SSL_get_shutdown() (see also L<SSL_set_shutdown(3)> call.
  68. =head1 NOTES
  69. The behaviour of SSL_shutdown() additionally depends on the underlying BIO.
  70. If the underlying BIO is B<blocking>, SSL_shutdown() will only return once the
  71. handshake step has been finished or an error occurred.
  72. If the underlying BIO is B<non-blocking>, SSL_shutdown() will also return
  73. when the underlying BIO could not satisfy the needs of SSL_shutdown()
  74. to continue the handshake. In this case a call to SSL_get_error() with the
  75. return value of SSL_shutdown() will yield B<SSL_ERROR_WANT_READ> or
  76. B<SSL_ERROR_WANT_WRITE>. The calling process then must repeat the call after
  77. taking appropriate action to satisfy the needs of SSL_shutdown().
  78. The action depends on the underlying BIO. When using a non-blocking socket,
  79. nothing is to be done, but select() can be used to check for the required
  80. condition. When using a buffering BIO, like a BIO pair, data must be written
  81. into or retrieved out of the BIO before being able to continue.
  82. After SSL_shutdown() returned 0, it is possible to call SSL_shutdown() again
  83. to wait for the peer's close_notify alert.
  84. SSL_shutdown() will return 1 in that case.
  85. However, it is recommended to wait for it using SSL_read() instead.
  86. SSL_shutdown() can be modified to only set the connection to "shutdown"
  87. state but not actually send the close_notify alert messages,
  88. see L<SSL_CTX_set_quiet_shutdown(3)>.
  89. When "quiet shutdown" is enabled, SSL_shutdown() will always succeed
  90. and return 1.
  91. =head1 RETURN VALUES
  92. The following return values can occur:
  93. =over 4
  94. =item Z<>0
  95. The shutdown is not yet finished: the close_notify was sent but the peer
  96. did not send it back yet.
  97. Call SSL_read() to do a bidirectional shutdown.
  98. The output of L<SSL_get_error(3)> may be misleading, as an
  99. erroneous SSL_ERROR_SYSCALL may be flagged even though no error occurred.
  100. =item Z<>1
  101. The shutdown was successfully completed. The close_notify alert was sent
  102. and the peer's close_notify alert was received.
  103. =item E<lt>0
  104. The shutdown was not successful.
  105. Call L<SSL_get_error(3)> with the return value B<ret> to find out the reason.
  106. It can occur if an action is needed to continue the operation for non-blocking
  107. BIOs.
  108. It can also occur when not all data was read using SSL_read().
  109. =back
  110. =head1 SEE ALSO
  111. L<SSL_get_error(3)>, L<SSL_connect(3)>,
  112. L<SSL_accept(3)>, L<SSL_set_shutdown(3)>,
  113. L<SSL_CTX_set_quiet_shutdown(3)>,
  114. L<SSL_clear(3)>, L<SSL_free(3)>,
  115. L<ssl(7)>, L<bio(7)>
  116. =head1 COPYRIGHT
  117. Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
  118. Licensed under the Apache License 2.0 (the "License"). You may not use
  119. this file except in compliance with the License. You can obtain a copy
  120. in the file LICENSE in the source distribution or at
  121. L<https://www.openssl.org/source/license.html>.
  122. =cut