SSL_CTX_set_msg_callback.pod 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. =pod
  2. =head1 NAME
  3. SSL_CTX_set_msg_callback,
  4. SSL_CTX_set_msg_callback_arg,
  5. SSL_set_msg_callback,
  6. SSL_set_msg_callback_arg,
  7. SSL_trace
  8. - install callback for observing protocol messages
  9. =head1 SYNOPSIS
  10. #include <openssl/ssl.h>
  11. void SSL_CTX_set_msg_callback(SSL_CTX *ctx,
  12. void (*cb)(int write_p, int version,
  13. int content_type, const void *buf,
  14. size_t len, SSL *ssl, void *arg));
  15. void SSL_CTX_set_msg_callback_arg(SSL_CTX *ctx, void *arg);
  16. void SSL_set_msg_callback(SSL *ssl,
  17. void (*cb)(int write_p, int version,
  18. int content_type, const void *buf,
  19. size_t len, SSL *ssl, void *arg));
  20. void SSL_set_msg_callback_arg(SSL *ssl, void *arg);
  21. void SSL_trace(int write_p, int version, int content_type,
  22. const void *buf, size_t len, SSL *ssl, void *arg);
  23. =head1 DESCRIPTION
  24. SSL_CTX_set_msg_callback() or SSL_set_msg_callback() can be used to
  25. define a message callback function I<cb> for observing all SSL/TLS/QUIC
  26. protocol messages (such as handshake messages) that are received or
  27. sent, as well as other events that occur during processing.
  28. SSL_CTX_set_msg_callback_arg() and SSL_set_msg_callback_arg()
  29. can be used to set argument I<arg> to the callback function, which is
  30. available for arbitrary application use.
  31. SSL_CTX_set_msg_callback() and SSL_CTX_set_msg_callback_arg() specify
  32. default settings that will be copied to new B<SSL> objects by
  33. L<SSL_new(3)>. SSL_set_msg_callback() and
  34. SSL_set_msg_callback_arg() modify the actual settings of an B<SSL>
  35. object. Using a B<NULL> pointer for I<cb> disables the message callback.
  36. When I<cb> is called by the SSL/TLS/QUIC library the function arguments have the
  37. following meaning:
  38. =over 4
  39. =item I<write_p>
  40. This flag is B<0> when a protocol message has been received and B<1>
  41. when a protocol message has been sent.
  42. =item I<version>
  43. The protocol version according to which the protocol message is
  44. interpreted by the library such as B<TLS1_3_VERSION>, B<TLS1_2_VERSION>,
  45. B<OSSL_QUIC1_VERSION> etc. For the SSL3_RT_HEADER pseudo
  46. content type (see NOTES below) this value will be the decoded
  47. version/legacy_version field of the record header.
  48. =item I<content_type>
  49. This is one of the content type values defined in the protocol specification
  50. (B<SSL3_RT_CHANGE_CIPHER_SPEC>, B<SSL3_RT_ALERT>, B<SSL3_RT_HANDSHAKE>; but never
  51. B<SSL3_RT_APPLICATION_DATA> because the callback will only be called for protocol
  52. messages). Alternatively it may be a "pseudo" content type. These pseudo
  53. content types are used to signal some other event in the processing of data (see
  54. NOTES below).
  55. =item I<buf>, I<len>
  56. I<buf> points to a buffer containing the protocol message or other data (in the
  57. case of pseudo content types), which consists of I<len> bytes. The buffer is no
  58. longer valid after the callback function has returned.
  59. =item I<ssl>
  60. The B<SSL> object that received or sent the message.
  61. =item I<arg>
  62. The user-defined argument optionally defined by
  63. SSL_CTX_set_msg_callback_arg() or SSL_set_msg_callback_arg().
  64. =back
  65. The SSL_trace() function can be used as a pre-written callback in a call to
  66. SSL_CTX_set_msg_callback() or SSL_set_msg_callback(). It requires a BIO to be
  67. set as the callback argument via SSL_CTX_set_msg_callback_arg() or
  68. SSL_set_msg_callback_arg(). Setting this callback will cause human readable
  69. diagostic tracing information about an SSL/TLS/QUIC connection to be written to
  70. the BIO.
  71. =head1 NOTES
  72. Protocol messages are passed to the callback function after decryption
  73. and fragment collection where applicable. (Thus record boundaries are
  74. not visible.)
  75. If processing a received protocol message results in an error,
  76. the callback function may not be called. For example, the callback
  77. function will never see messages that are considered too large to be
  78. processed.
  79. Due to automatic protocol version negotiation, I<version> is not
  80. necessarily the protocol version used by the sender of the message: If
  81. a TLS 1.0 ClientHello message is received by an SSL 3.0-only server,
  82. I<version> will be B<SSL3_VERSION>.
  83. Pseudo content type values may be sent at various points during the processing
  84. of data. The following pseudo content types are currently defined:
  85. =over 4
  86. =item B<SSL3_RT_HEADER>
  87. Used when a TLS record is sent or received. The B<buf> contains the record header
  88. bytes only.
  89. =item B<SSL3_RT_INNER_CONTENT_TYPE>
  90. Used when an encrypted TLSv1.3 record is sent or received. In encrypted TLSv1.3
  91. records the content type in the record header is always
  92. SSL3_RT_APPLICATION_DATA. The real content type for the record is contained in
  93. an "inner" content type. B<buf> contains the encoded "inner" content type byte.
  94. =item B<SSL3_RT_QUIC_DATAGRAM>
  95. Used when a QUIC datagram is sent or received.
  96. =item B<SSL3_RT_QUIC_PACKET>
  97. Used when a QUIC packet is sent or received.
  98. =item B<SSL3_RT_QUIC_FRAME_FULL>
  99. Used when a QUIC frame is sent or received. This is only used for non-crypto
  100. and stream data related frames. The full QUIC frame data is supplied.
  101. =item B<SSL3_RT_QUIC_FRAME_HEADER>
  102. Used when a QUIC stream data or crypto frame is sent or received. Only the QUIC
  103. frame header data is supplied.
  104. =item B<SSL3_RT_QUIC_FRAME_PADDING>
  105. Used when a sequence of one or more QUIC padding frames is sent or received.
  106. A padding frame consists of a single byte and it is common to have multiple
  107. such frames in a sequence. Rather than supplying each frame individually the
  108. callback will supply all the padding frames in one go via this pseudo content
  109. type.
  110. =back
  111. =head1 RETURN VALUES
  112. SSL_CTX_set_msg_callback(), SSL_CTX_set_msg_callback_arg(), SSL_set_msg_callback()
  113. and SSL_set_msg_callback_arg() do not return values.
  114. =head1 SEE ALSO
  115. L<ssl(7)>, L<SSL_new(3)>
  116. =head1 HISTORY
  117. The pseudo content type B<SSL3_RT_INNER_CONTENT_TYPE> was added in OpenSSL 1.1.1.
  118. The pseudo content types B<SSL3_RT_QUIC_DATAGRAM>, B<SSL3_RT_QUIC_PACKET>,
  119. B<SSL3_RT_QUIC_FRAME_FULL>, B<SSL3_RT_QUIC_FRAME_HEADER> and
  120. B<SSL3_RT_QUIC_FRAME_PADDING> were added in OpenSSL 3.2.
  121. In versions previous to OpenSSL 3.0 I<cb> was called with 0 as I<version> for
  122. the pseudo content type B<SSL3_RT_HEADER> for TLS records.
  123. In versions previous to OpenSSL 3.2 I<cb> was called with 0 as I<version> for
  124. the pseudo content type B<SSL3_RT_HEADER> for DTLS records.
  125. =head1 COPYRIGHT
  126. Copyright 2001-2023 The OpenSSL Project Authors. All Rights Reserved.
  127. Licensed under the Apache License 2.0 (the "License"). You may not use
  128. this file except in compliance with the License. You can obtain a copy
  129. in the file LICENSE in the source distribution or at
  130. L<https://www.openssl.org/source/license.html>.
  131. =cut