statem.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /* ssl/statem/statem.h */
  2. /* ====================================================================
  3. * Copyright (c) 1998-2015 The OpenSSL Project. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in
  14. * the documentation and/or other materials provided with the
  15. * distribution.
  16. *
  17. * 3. All advertising materials mentioning features or use of this
  18. * software must display the following acknowledgment:
  19. * "This product includes software developed by the OpenSSL Project
  20. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  21. *
  22. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  23. * endorse or promote products derived from this software without
  24. * prior written permission. For written permission, please contact
  25. * openssl-core@openssl.org.
  26. *
  27. * 5. Products derived from this software may not be called "OpenSSL"
  28. * nor may "OpenSSL" appear in their names without prior written
  29. * permission of the OpenSSL Project.
  30. *
  31. * 6. Redistributions of any form whatsoever must retain the following
  32. * acknowledgment:
  33. * "This product includes software developed by the OpenSSL Project
  34. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  37. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  39. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  40. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  42. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  43. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  44. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  45. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  46. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  47. * OF THE POSSIBILITY OF SUCH DAMAGE.
  48. * ====================================================================
  49. *
  50. * This product includes cryptographic software written by Eric Young
  51. * (eay@cryptsoft.com). This product includes software written by Tim
  52. * Hudson (tjh@cryptsoft.com).
  53. *
  54. */
  55. /*****************************************************************************
  56. * *
  57. * These emums should be considered PRIVATE to the state machine. No *
  58. * non-state machine code should need to use these *
  59. * *
  60. *****************************************************************************/
  61. /*
  62. * Valid return codes used for functions performing work prior to or after
  63. * sending or receiving a message
  64. */
  65. typedef enum {
  66. /* Something went wrong */
  67. WORK_ERROR,
  68. /* We're done working and there shouldn't be anything else to do after */
  69. WORK_FINISHED_STOP,
  70. /* We're done working move onto the next thing */
  71. WORK_FINISHED_CONTINUE,
  72. /* We're working on phase A */
  73. WORK_MORE_A,
  74. /* We're working on phase B */
  75. WORK_MORE_B
  76. } WORK_STATE;
  77. /* Write transition return codes */
  78. typedef enum {
  79. /* Something went wrong */
  80. WRITE_TRAN_ERROR,
  81. /* A transition was successfully completed and we should continue */
  82. WRITE_TRAN_CONTINUE,
  83. /* There is no more write work to be done */
  84. WRITE_TRAN_FINISHED
  85. } WRITE_TRAN;
  86. /* Message flow states */
  87. typedef enum {
  88. /* No handshake in progress */
  89. MSG_FLOW_UNINITED,
  90. /* A permanent error with this connection */
  91. MSG_FLOW_ERROR,
  92. /* We are about to renegotiate */
  93. MSG_FLOW_RENEGOTIATE,
  94. /* We are reading messages */
  95. MSG_FLOW_READING,
  96. /* We are writing messages */
  97. MSG_FLOW_WRITING,
  98. /* Handshake has finished */
  99. MSG_FLOW_FINISHED
  100. } MSG_FLOW_STATE;
  101. /* Read states */
  102. typedef enum {
  103. READ_STATE_HEADER,
  104. READ_STATE_BODY,
  105. READ_STATE_POST_PROCESS
  106. } READ_STATE;
  107. /* Write states */
  108. typedef enum {
  109. WRITE_STATE_TRANSITION,
  110. WRITE_STATE_PRE_WORK,
  111. WRITE_STATE_SEND,
  112. WRITE_STATE_POST_WORK
  113. } WRITE_STATE;
  114. /*****************************************************************************
  115. * *
  116. * This structure should be considered "opaque" to anything outside of the *
  117. * state machine. No non-state machine code should be accessing the members *
  118. * of this structure. *
  119. * *
  120. *****************************************************************************/
  121. struct ossl_statem_st {
  122. MSG_FLOW_STATE state;
  123. WRITE_STATE write_state;
  124. WORK_STATE write_state_work;
  125. READ_STATE read_state;
  126. WORK_STATE read_state_work;
  127. OSSL_HANDSHAKE_STATE hand_state;
  128. int in_init;
  129. int read_state_first_init;
  130. /* true when we are actually in SSL_accept() or SSL_connect() */
  131. int in_handshake;
  132. /* Should we skip the CertificateVerify message? */
  133. unsigned int no_cert_verify;
  134. int use_timer;
  135. #ifndef OPENSSL_NO_SCTP
  136. int in_sctp_read_sock;
  137. #endif
  138. };
  139. typedef struct ossl_statem_st OSSL_STATEM;
  140. /*****************************************************************************
  141. * *
  142. * The following macros/functions represent the libssl internal API to the *
  143. * state machine. Any libssl code may call these functions/macros *
  144. * *
  145. *****************************************************************************/
  146. __owur int ossl_statem_accept(SSL *s);
  147. __owur int ossl_statem_connect(SSL *s);
  148. void ossl_statem_clear(SSL *s);
  149. void ossl_statem_set_renegotiate(SSL *s);
  150. void ossl_statem_set_error(SSL *s);
  151. int ossl_statem_in_error(const SSL *s);
  152. void ossl_statem_set_in_init(SSL *s, int init);
  153. int ossl_statem_get_in_handshake(SSL *s);
  154. void ossl_statem_set_in_handshake(SSL *s, int inhand);
  155. void ossl_statem_set_hello_verify_done(SSL *s);
  156. __owur int ossl_statem_app_data_allowed(SSL *s);
  157. #ifndef OPENSSL_NO_SCTP
  158. void ossl_statem_set_sctp_read_sock(SSL *s, int read_sock);
  159. __owur int ossl_statem_in_sctp_read_sock(SSL *s);
  160. #endif