bufferevent_ssl.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * Copyright (c) 2009-2012 Niels Provos and Nick Mathewson
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * 3. The name of the author may not be used to endorse or promote products
  13. * derived from this software without specific prior written permission.
  14. *
  15. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  16. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  17. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  18. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  19. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  20. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  21. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  22. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  23. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  24. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. #ifndef EVENT2_BUFFEREVENT_SSL_H_INCLUDED_
  27. #define EVENT2_BUFFEREVENT_SSL_H_INCLUDED_
  28. /** @file event2/bufferevent_ssl.h
  29. OpenSSL support for bufferevents.
  30. */
  31. #include <event2/visibility.h>
  32. #include <event2/event-config.h>
  33. #include <event2/bufferevent.h>
  34. #include <event2/util.h>
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38. /* This is what openssl's SSL objects are underneath. */
  39. struct ssl_st;
  40. /**
  41. The state of an SSL object to be used when creating a new
  42. SSL bufferevent.
  43. */
  44. enum bufferevent_ssl_state {
  45. BUFFEREVENT_SSL_OPEN = 0,
  46. BUFFEREVENT_SSL_CONNECTING = 1,
  47. BUFFEREVENT_SSL_ACCEPTING = 2
  48. };
  49. #if defined(EVENT__HAVE_OPENSSL) || defined(EVENT_IN_DOXYGEN_)
  50. /**
  51. Create a new SSL bufferevent to send its data over another bufferevent.
  52. @param base An event_base to use to detect reading and writing. It
  53. must also be the base for the underlying bufferevent.
  54. @param underlying A socket to use for this SSL
  55. @param ssl A SSL* object from openssl.
  56. @param state The current state of the SSL connection
  57. @param options One or more bufferevent_options
  58. @return A new bufferevent on success, or NULL on failure
  59. */
  60. EVENT2_EXPORT_SYMBOL
  61. struct bufferevent *
  62. bufferevent_openssl_filter_new(struct event_base *base,
  63. struct bufferevent *underlying,
  64. struct ssl_st *ssl,
  65. enum bufferevent_ssl_state state,
  66. int options);
  67. /**
  68. Create a new SSL bufferevent to send its data over an SSL * on a socket.
  69. @param base An event_base to use to detect reading and writing
  70. @param fd A socket to use for this SSL
  71. @param ssl A SSL* object from openssl.
  72. @param state The current state of the SSL connection
  73. @param options One or more bufferevent_options
  74. @return A new bufferevent on success, or NULL on failure.
  75. */
  76. EVENT2_EXPORT_SYMBOL
  77. struct bufferevent *
  78. bufferevent_openssl_socket_new(struct event_base *base,
  79. evutil_socket_t fd,
  80. struct ssl_st *ssl,
  81. enum bufferevent_ssl_state state,
  82. int options);
  83. /** Control how to report dirty SSL shutdowns.
  84. If the peer (or the network, or an attacker) closes the TCP
  85. connection before closing the SSL channel, and the protocol is SSL >= v3,
  86. this is a "dirty" shutdown. If allow_dirty_shutdown is 0 (default),
  87. this is reported as BEV_EVENT_ERROR.
  88. If instead allow_dirty_shutdown=1, a dirty shutdown is reported as
  89. BEV_EVENT_EOF.
  90. (Note that if the protocol is < SSLv3, you will always receive
  91. BEV_EVENT_EOF, since SSL 2 and earlier cannot distinguish a secure
  92. connection close from a dirty one. This is one reason (among many)
  93. not to use SSL 2.)
  94. */
  95. EVENT2_EXPORT_SYMBOL
  96. int bufferevent_openssl_get_allow_dirty_shutdown(struct bufferevent *bev);
  97. EVENT2_EXPORT_SYMBOL
  98. void bufferevent_openssl_set_allow_dirty_shutdown(struct bufferevent *bev,
  99. int allow_dirty_shutdown);
  100. /** Return the underlying openssl SSL * object for an SSL bufferevent. */
  101. EVENT2_EXPORT_SYMBOL
  102. struct ssl_st *
  103. bufferevent_openssl_get_ssl(struct bufferevent *bufev);
  104. /** Tells a bufferevent to begin SSL renegotiation. */
  105. EVENT2_EXPORT_SYMBOL
  106. int bufferevent_ssl_renegotiate(struct bufferevent *bev);
  107. /** Return the most recent OpenSSL error reported on an SSL bufferevent. */
  108. EVENT2_EXPORT_SYMBOL
  109. unsigned long bufferevent_get_openssl_error(struct bufferevent *bev);
  110. #endif
  111. #ifdef __cplusplus
  112. }
  113. #endif
  114. #endif /* EVENT2_BUFFEREVENT_SSL_H_INCLUDED_ */