SSL_CTX_set_info_callback.pod 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. =pod
  2. =head1 NAME
  3. SSL_CTX_set_info_callback,
  4. SSL_CTX_get_info_callback,
  5. SSL_set_info_callback,
  6. SSL_get_info_callback
  7. - handle information callback for SSL connections
  8. =head1 SYNOPSIS
  9. #include <openssl/ssl.h>
  10. void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*callback)());
  11. void (*SSL_CTX_get_info_callback(const SSL_CTX *ctx))();
  12. void SSL_set_info_callback(SSL *ssl, void (*callback)());
  13. void (*SSL_get_info_callback(const SSL *ssl))();
  14. =head1 DESCRIPTION
  15. SSL_CTX_set_info_callback() sets the B<callback> function, that can be used to
  16. obtain state information for SSL objects created from B<ctx> during connection
  17. setup and use. The setting for B<ctx> is overridden from the setting for
  18. a specific SSL object, if specified.
  19. When B<callback> is NULL, no callback function is used.
  20. SSL_set_info_callback() sets the B<callback> function, that can be used to
  21. obtain state information for B<ssl> during connection setup and use.
  22. When B<callback> is NULL, the callback setting currently valid for
  23. B<ctx> is used.
  24. SSL_CTX_get_info_callback() returns a pointer to the currently set information
  25. callback function for B<ctx>.
  26. SSL_get_info_callback() returns a pointer to the currently set information
  27. callback function for B<ssl>.
  28. =head1 NOTES
  29. When setting up a connection and during use, it is possible to obtain state
  30. information from the SSL/TLS engine. When set, an information callback function
  31. is called whenever a significant event occurs such as: the state changes,
  32. an alert appears, or an error occurs.
  33. The callback function is called as B<callback(SSL *ssl, int where, int ret)>.
  34. The B<where> argument specifies information about where (in which context)
  35. the callback function was called. If B<ret> is 0, an error condition occurred.
  36. If an alert is handled, SSL_CB_ALERT is set and B<ret> specifies the alert
  37. information.
  38. B<where> is a bit-mask made up of the following bits:
  39. =over 4
  40. =item SSL_CB_LOOP
  41. Callback has been called to indicate state change or some other significant
  42. state machine event. This may mean that the callback gets invoked more than once
  43. per state in some situations.
  44. =item SSL_CB_EXIT
  45. Callback has been called to indicate exit of a handshake function. This will
  46. happen after the end of a handshake, but may happen at other times too such as
  47. on error or when IO might otherwise block and nonblocking is being used.
  48. =item SSL_CB_READ
  49. Callback has been called during read operation.
  50. =item SSL_CB_WRITE
  51. Callback has been called during write operation.
  52. =item SSL_CB_ALERT
  53. Callback has been called due to an alert being sent or received.
  54. =item SSL_CB_READ_ALERT (SSL_CB_ALERT|SSL_CB_READ)
  55. =item SSL_CB_WRITE_ALERT (SSL_CB_ALERT|SSL_CB_WRITE)
  56. =item SSL_CB_ACCEPT_LOOP (SSL_ST_ACCEPT|SSL_CB_LOOP)
  57. =item SSL_CB_ACCEPT_EXIT (SSL_ST_ACCEPT|SSL_CB_EXIT)
  58. =item SSL_CB_CONNECT_LOOP (SSL_ST_CONNECT|SSL_CB_LOOP)
  59. =item SSL_CB_CONNECT_EXIT (SSL_ST_CONNECT|SSL_CB_EXIT)
  60. =item SSL_CB_HANDSHAKE_START
  61. Callback has been called because a new handshake is started. It also occurs when
  62. resuming a handshake following a pause to handle early data.
  63. =item SSL_CB_HANDSHAKE_DONE
  64. Callback has been called because a handshake is finished. It also occurs if the
  65. handshake is paused to allow the exchange of early data.
  66. =back
  67. The current state information can be obtained using the
  68. L<SSL_state_string(3)> family of functions.
  69. The B<ret> information can be evaluated using the
  70. L<SSL_alert_type_string(3)> family of functions.
  71. =head1 RETURN VALUES
  72. SSL_set_info_callback() does not provide diagnostic information.
  73. SSL_get_info_callback() returns the current setting.
  74. =head1 EXAMPLES
  75. The following example callback function prints state strings, information
  76. about alerts being handled and error messages to the B<bio_err> BIO.
  77. void apps_ssl_info_callback(SSL *s, int where, int ret)
  78. {
  79. const char *str;
  80. int w = where & ~SSL_ST_MASK;
  81. if (w & SSL_ST_CONNECT)
  82. str = "SSL_connect";
  83. else if (w & SSL_ST_ACCEPT)
  84. str = "SSL_accept";
  85. else
  86. str = "undefined";
  87. if (where & SSL_CB_LOOP) {
  88. BIO_printf(bio_err, "%s:%s\n", str, SSL_state_string_long(s));
  89. } else if (where & SSL_CB_ALERT) {
  90. str = (where & SSL_CB_READ) ? "read" : "write";
  91. BIO_printf(bio_err, "SSL3 alert %s:%s:%s\n", str,
  92. SSL_alert_type_string_long(ret),
  93. SSL_alert_desc_string_long(ret));
  94. } else if (where & SSL_CB_EXIT) {
  95. if (ret == 0) {
  96. BIO_printf(bio_err, "%s:failed in %s\n",
  97. str, SSL_state_string_long(s));
  98. } else if (ret < 0) {
  99. BIO_printf(bio_err, "%s:error in %s\n",
  100. str, SSL_state_string_long(s));
  101. }
  102. }
  103. }
  104. =head1 SEE ALSO
  105. L<ssl(7)>, L<SSL_state_string(3)>,
  106. L<SSL_alert_type_string(3)>
  107. =head1 COPYRIGHT
  108. Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved.
  109. Licensed under the Apache License 2.0 (the "License"). You may not use
  110. this file except in compliance with the License. You can obtain a copy
  111. in the file LICENSE in the source distribution or at
  112. L<https://www.openssl.org/source/license.html>.
  113. =cut