Use EVP_md5_sha1() to generate client verify
[openssl.git] / ssl / statem / statem.h
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  *                                                                           *
58  * These emums should be considered PRIVATE to the state machine. No         *
59  * non-state machine code should need to use these                           *
60  *                                                                           *
61  *****************************************************************************/
62 /*
63  * Valid return codes used for functions performing work prior to or after
64  * sending or receiving a message
65  */
66 typedef enum {
67     /* Something went wrong */
68     WORK_ERROR,
69     /* We're done working and there shouldn't be anything else to do after */
70     WORK_FINISHED_STOP,
71     /* We're done working move onto the next thing */
72     WORK_FINISHED_CONTINUE,
73     /* We're working on phase A */
74     WORK_MORE_A,
75     /* We're working on phase B */
76     WORK_MORE_B
77 } WORK_STATE;
78
79 /* Write transition return codes */
80 typedef enum {
81     /* Something went wrong */
82     WRITE_TRAN_ERROR,
83     /* A transition was successfully completed and we should continue */
84     WRITE_TRAN_CONTINUE,
85     /* There is no more write work to be done */
86     WRITE_TRAN_FINISHED
87 } WRITE_TRAN;
88
89 /* Message flow states */
90 typedef enum {
91     /* No handshake in progress */
92     MSG_FLOW_UNINITED,
93     /* A permanent error with this connection */
94     MSG_FLOW_ERROR,
95     /* We are about to renegotiate */
96     MSG_FLOW_RENEGOTIATE,
97     /* We are reading messages */
98     MSG_FLOW_READING,
99     /* We are writing messages */
100     MSG_FLOW_WRITING,
101     /* Handshake has finished */
102     MSG_FLOW_FINISHED
103 } MSG_FLOW_STATE;
104
105 /* Read states */
106 typedef enum {
107     READ_STATE_HEADER,
108     READ_STATE_BODY,
109     READ_STATE_POST_PROCESS
110 } READ_STATE;
111
112 /* Write states */
113 typedef enum {
114     WRITE_STATE_TRANSITION,
115     WRITE_STATE_PRE_WORK,
116     WRITE_STATE_SEND,
117     WRITE_STATE_POST_WORK
118 } WRITE_STATE;
119
120
121 /*****************************************************************************
122  *                                                                           *
123  * This structure should be considered "opaque" to anything outside of the   *
124  * state machine. No non-state machine code should be accessing the members  *
125  * of this structure.                                                        *
126  *                                                                           *
127  *****************************************************************************/
128
129 struct ossl_statem_st {
130     MSG_FLOW_STATE state;
131     WRITE_STATE write_state;
132     WORK_STATE write_state_work;
133     READ_STATE read_state;
134     WORK_STATE read_state_work;
135     OSSL_HANDSHAKE_STATE hand_state;
136     int in_init;
137     int read_state_first_init;
138
139     /* true when we are actually in SSL_accept() or SSL_connect() */
140     int in_handshake;
141
142     /* Should we skip the CertificateVerify message? */
143     unsigned int no_cert_verify;
144
145     int use_timer;
146 #ifndef OPENSSL_NO_SCTP
147     int in_sctp_read_sock;
148 #endif
149 };
150 typedef struct ossl_statem_st OSSL_STATEM;
151
152
153 /*****************************************************************************
154  *                                                                           *
155  * The following macros/functions represent the libssl internal API to the   *
156  * state machine. Any libssl code may call these functions/macros            *
157  *                                                                           *
158  *****************************************************************************/
159
160 __owur int ossl_statem_accept(SSL *s);
161 __owur int ossl_statem_connect(SSL *s);
162 void ossl_statem_clear(SSL *s);
163 void ossl_statem_set_renegotiate(SSL *s);
164 void ossl_statem_set_error(SSL *s);
165 int ossl_statem_in_error(const SSL *s);
166 void ossl_statem_set_in_init(SSL *s, int init);
167 int ossl_statem_get_in_handshake(SSL *s);
168 void ossl_statem_set_in_handshake(SSL *s, int inhand);
169 void ossl_statem_set_hello_verify_done(SSL *s);
170 __owur int ossl_statem_app_data_allowed(SSL *s);
171 #ifndef OPENSSL_NO_SCTP
172 void ossl_statem_set_sctp_read_sock(SSL *s, int read_sock);
173 __owur int ossl_statem_in_sctp_read_sock(SSL *s);
174 #endif
175
176