]> git.ipfire.org Git - thirdparty/openssl.git/blame - ssl/statem/statem.h
Use an enum for the return value from a construction function
[thirdparty/openssl.git] / ssl / statem / statem.h
CommitLineData
846e33c7 1/*
4333b89f 2 * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
8ba708e5 3 *
2c18d164 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
846e33c7
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8ba708e5
MC
8 */
9
10/*****************************************************************************
11 * *
8483a003 12 * These enums should be considered PRIVATE to the state machine. No *
8ba708e5
MC
13 * non-state machine code should need to use these *
14 * *
15 *****************************************************************************/
16/*
17 * Valid return codes used for functions performing work prior to or after
18 * sending or receiving a message
19 */
be3583fa 20typedef enum {
8ba708e5
MC
21 /* Something went wrong */
22 WORK_ERROR,
23 /* We're done working and there shouldn't be anything else to do after */
24 WORK_FINISHED_STOP,
25 /* We're done working move onto the next thing */
26 WORK_FINISHED_CONTINUE,
27 /* We're working on phase A */
28 WORK_MORE_A,
29 /* We're working on phase B */
ddf97258
BK
30 WORK_MORE_B,
31 /* We're working on phase C */
32 WORK_MORE_C
be3583fa 33} WORK_STATE;
8ba708e5
MC
34
35/* Write transition return codes */
be3583fa 36typedef enum {
8ba708e5
MC
37 /* Something went wrong */
38 WRITE_TRAN_ERROR,
39 /* A transition was successfully completed and we should continue */
40 WRITE_TRAN_CONTINUE,
41 /* There is no more write work to be done */
42 WRITE_TRAN_FINISHED
be3583fa 43} WRITE_TRAN;
8ba708e5 44
8ba708e5 45/* Message flow states */
be3583fa 46typedef enum {
8ba708e5
MC
47 /* No handshake in progress */
48 MSG_FLOW_UNINITED,
49 /* A permanent error with this connection */
50 MSG_FLOW_ERROR,
8ba708e5
MC
51 /* We are reading messages */
52 MSG_FLOW_READING,
53 /* We are writing messages */
54 MSG_FLOW_WRITING,
55 /* Handshake has finished */
56 MSG_FLOW_FINISHED
be3583fa 57} MSG_FLOW_STATE;
8ba708e5
MC
58
59/* Read states */
be3583fa 60typedef enum {
8ba708e5
MC
61 READ_STATE_HEADER,
62 READ_STATE_BODY,
63 READ_STATE_POST_PROCESS
be3583fa 64} READ_STATE;
8ba708e5
MC
65
66/* Write states */
be3583fa 67typedef enum {
8ba708e5
MC
68 WRITE_STATE_TRANSITION,
69 WRITE_STATE_PRE_WORK,
70 WRITE_STATE_SEND,
71 WRITE_STATE_POST_WORK
be3583fa 72} WRITE_STATE;
8ba708e5 73
7426cd34
MC
74typedef enum {
75 /* The enc_write_ctx can be used normally */
76 ENC_WRITE_STATE_VALID,
77 /* The enc_write_ctx cannot be used */
78 ENC_WRITE_STATE_INVALID,
79 /* Write alerts in plaintext, but otherwise use the enc_write_ctx */
80 ENC_WRITE_STATE_WRITE_PLAIN_ALERTS
81} ENC_WRITE_STATES;
82
67ec6d2b
MC
83typedef enum {
84 CON_FUNC_ERROR = 0,
85 CON_FUNC_SUCCESS,
86 CON_FUNC_DONT_SEND
87} CON_FUNC_RETURN;
88
8ba708e5
MC
89/*****************************************************************************
90 * *
91 * This structure should be considered "opaque" to anything outside of the *
92 * state machine. No non-state machine code should be accessing the members *
93 * of this structure. *
94 * *
95 *****************************************************************************/
96
d6f1a6e9 97struct ossl_statem_st {
be3583fa
MC
98 MSG_FLOW_STATE state;
99 WRITE_STATE write_state;
100 WORK_STATE write_state_work;
101 READ_STATE read_state;
102 WORK_STATE read_state_work;
35bf6e05 103 OSSL_HANDSHAKE_STATE hand_state;
0386aad1
MC
104 /* The handshake state requested by an API call (e.g. HelloRequest) */
105 OSSL_HANDSHAKE_STATE request_state;
8ba708e5
MC
106 int in_init;
107 int read_state_first_init;
024f543c
MC
108 /* true when we are actually in SSL_accept() or SSL_connect() */
109 int in_handshake;
c7f47786
MC
110 /*
111 * True when are processing a "real" handshake that needs cleaning up (not
112 * just a HelloRequest or similar).
113 */
114 int cleanuphand;
a71a4966
MC
115 /* Should we skip the CertificateVerify message? */
116 unsigned int no_cert_verify;
8ba708e5 117 int use_timer;
7426cd34 118 ENC_WRITE_STATES enc_write_state;
8ba708e5 119};
d6f1a6e9 120typedef struct ossl_statem_st OSSL_STATEM;
8ba708e5 121
8ba708e5
MC
122/*****************************************************************************
123 * *
124 * The following macros/functions represent the libssl internal API to the *
125 * state machine. Any libssl code may call these functions/macros *
126 * *
127 *****************************************************************************/
128
fe3a3291
MC
129__owur int ossl_statem_accept(SSL *s);
130__owur int ossl_statem_connect(SSL *s);
38b051a1
TM
131void ossl_statem_clear(SSL_CONNECTION *s);
132void ossl_statem_set_renegotiate(SSL_CONNECTION *s);
133void ossl_statem_send_fatal(SSL_CONNECTION *s, int al);
134void ossl_statem_fatal(SSL_CONNECTION *s, int al, int reason,
135 const char *fmt, ...);
5a2d0ef3 136# define SSLfatal_alert(s, al) ossl_statem_send_fatal((s), (al))
e92519b5
RL
137# define SSLfatal(s, al, r) SSLfatal_data((s), (al), (r), NULL)
138# define SSLfatal_data \
139 (ERR_new(), \
140 ERR_set_debug(OPENSSL_FILE, OPENSSL_LINE, OPENSSL_FUNC), \
141 ossl_statem_fatal)
1f359471 142
38b051a1
TM
143int ossl_statem_in_error(const SSL_CONNECTION *s);
144void ossl_statem_set_in_init(SSL_CONNECTION *s, int init);
145int ossl_statem_get_in_handshake(SSL_CONNECTION *s);
146void ossl_statem_set_in_handshake(SSL_CONNECTION *s, int inhand);
147__owur int ossl_statem_skip_early_data(SSL_CONNECTION *s);
148void ossl_statem_check_finish_init(SSL_CONNECTION *s, int send);
149void ossl_statem_set_hello_verify_done(SSL_CONNECTION *s);
150__owur int ossl_statem_app_data_allowed(SSL_CONNECTION *s);
151__owur int ossl_statem_export_allowed(SSL_CONNECTION *s);
152__owur int ossl_statem_export_early_allowed(SSL_CONNECTION *s);
2a8db717
MC
153
154/* Flush the write BIO */
38b051a1 155int statem_flush(SSL_CONNECTION *s);