1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
/* $OpenBSD: tls13_server.c,v 1.7 2020/01/22 15:47:22 jsing Exp $ */
/*
* Copyright (c) 2019 Joel Sing <jsing@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "ssl_locl.h"
#include "ssl_tlsext.h"
#include "tls13_handshake.h"
#include "tls13_internal.h"
static int
tls13_accept(struct tls13_ctx *ctx)
{
if (ctx->mode != TLS13_HS_SERVER)
return TLS13_IO_FAILURE;
return tls13_handshake_perform(ctx);
}
static int
tls13_server_init(struct tls13_ctx *ctx)
{
SSL *s = ctx->ssl;
if (!ssl_supported_version_range(s, &ctx->hs->min_version,
&ctx->hs->max_version)) {
SSLerror(s, SSL_R_NO_PROTOCOLS_AVAILABLE);
return 0;
}
if (!tls1_transcript_init(s))
return 0;
return 1;
}
int
tls13_legacy_accept(SSL *ssl)
{
struct tls13_ctx *ctx = ssl->internal->tls13;
int ret;
if (ctx == NULL) {
if ((ctx = tls13_ctx_new(TLS13_HS_SERVER)) == NULL) {
SSLerror(ssl, ERR_R_INTERNAL_ERROR); /* XXX */
return -1;
}
ssl->internal->tls13 = ctx;
ctx->ssl = ssl;
ctx->hs = &S3I(ssl)->hs_tls13;
if (!tls13_server_init(ctx)) {
if (ERR_peek_error() == 0)
SSLerror(ssl, ERR_R_INTERNAL_ERROR); /* XXX */
return -1;
}
}
S3I(ssl)->hs.state = SSL_ST_ACCEPT;
ret = tls13_accept(ctx);
if (ret == TLS13_IO_USE_LEGACY)
return ssl->method->internal->ssl_accept(ssl);
if (ret == TLS13_IO_SUCCESS)
S3I(ssl)->hs.state = SSL_ST_OK;
return tls13_legacy_return_code(ssl, ret);
}
int
tls13_use_legacy_server(struct tls13_ctx *ctx)
{
SSL *s = ctx->ssl;
CBS cbs;
s->method = tls_legacy_server_method();
s->client_version = s->version = s->method->internal->max_version;
s->server = 1;
if (!ssl3_setup_init_buffer(s))
goto err;
if (!ssl3_setup_buffers(s))
goto err;
if (!ssl_init_wbio_buffer(s, 0))
goto err;
if (s->bbio != s->wbio)
s->wbio = BIO_push(s->bbio, s->wbio);
/* Stash any unprocessed data from the last record. */
tls13_record_layer_rbuf(ctx->rl, &cbs);
if (CBS_len(&cbs) > 0) {
if (!CBS_write_bytes(&cbs,
S3I(s)->rbuf.buf + SSL3_RT_HEADER_LENGTH,
S3I(s)->rbuf.len - SSL3_RT_HEADER_LENGTH, NULL))
goto err;
S3I(s)->rbuf.offset = SSL3_RT_HEADER_LENGTH;
S3I(s)->rbuf.left = CBS_len(&cbs);
S3I(s)->rrec.type = SSL3_RT_HANDSHAKE;
S3I(s)->rrec.length = CBS_len(&cbs);
s->internal->rstate = SSL_ST_READ_BODY;
s->internal->packet = S3I(s)->rbuf.buf;
s->internal->packet_length = SSL3_RT_HEADER_LENGTH;
s->internal->mac_packet = 1;
}
/* Stash the current handshake message. */
tls13_handshake_msg_data(ctx->hs_msg, &cbs);
if (!CBS_write_bytes(&cbs, s->internal->init_buf->data,
s->internal->init_buf->length, NULL))
goto err;
S3I(s)->tmp.reuse_message = 1;
S3I(s)->tmp.message_type = tls13_handshake_msg_type(ctx->hs_msg);
S3I(s)->tmp.message_size = CBS_len(&cbs);
S3I(s)->hs.state = SSL3_ST_SR_CLNT_HELLO_A;
return 1;
err:
return 0;
}
static int
tls13_client_hello_is_legacy(CBS *cbs)
{
CBS extensions_block, extensions, extension_data;
uint16_t selected_version = 0;
uint16_t type;
CBS_dup(cbs, &extensions_block);
if (!CBS_get_u16_length_prefixed(&extensions_block, &extensions))
return 1;
while (CBS_len(&extensions) > 0) {
if (!CBS_get_u16(&extensions, &type))
return 1;
if (!CBS_get_u16_length_prefixed(&extensions, &extension_data))
return 1;
if (type != TLSEXT_TYPE_supported_versions)
continue;
if (!CBS_get_u16(&extension_data, &selected_version))
return 1;
if (CBS_len(&extension_data) != 0)
return 1;
}
return (selected_version < TLS1_3_VERSION);
}
static int
tls13_client_hello_process(struct tls13_ctx *ctx, CBS *cbs)
{
CBS cipher_suites, client_random, compression_methods, session_id;
uint16_t legacy_version;
SSL *s = ctx->ssl;
int alert;
if (!CBS_get_u16(cbs, &legacy_version))
goto err;
if (!CBS_get_bytes(cbs, &client_random, SSL3_RANDOM_SIZE))
goto err;
if (!CBS_get_u8_length_prefixed(cbs, &session_id))
goto err;
if (!CBS_get_u8_length_prefixed(cbs, &cipher_suites))
goto err;
if (!CBS_get_u8_length_prefixed(cbs, &compression_methods))
goto err;
if (tls13_client_hello_is_legacy(cbs)) {
if (!CBS_skip(cbs, CBS_len(cbs)))
goto err;
return tls13_use_legacy_server(ctx);
}
if (!tlsext_server_parse(s, cbs, &alert, SSL_TLSEXT_MSG_CH))
goto err;
/* XXX - implement. */
err:
return 0;
}
int
tls13_client_hello_recv(struct tls13_ctx *ctx, CBS *cbs)
{
SSL *s = ctx->ssl;
if (!tls13_client_hello_process(ctx, cbs))
goto err;
/* See if we switched back to the legacy client method. */
if (s->method->internal->version < TLS1_3_VERSION)
return 1;
tls13_record_layer_allow_ccs(ctx->rl, 1);
return 1;
err:
return 0;
}
int
tls13_client_hello_retry_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_server_hello_retry_recv(struct tls13_ctx *ctx, CBS *cbs)
{
return 0;
}
int
tls13_client_end_of_early_data_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_client_end_of_early_data_recv(struct tls13_ctx *ctx, CBS *cbs)
{
return 0;
}
int
tls13_client_certificate_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_client_certificate_recv(struct tls13_ctx *ctx, CBS *cbs)
{
return 0;
}
int
tls13_client_certificate_verify_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_client_certificate_verify_recv(struct tls13_ctx *ctx, CBS *cbs)
{
return 0;
}
int
tls13_client_finished_recv(struct tls13_ctx *ctx, CBS *cbs)
{
tls13_record_layer_allow_ccs(ctx->rl, 0);
return 0;
}
int
tls13_client_key_update_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_client_key_update_recv(struct tls13_ctx *ctx, CBS *cbs)
{
return 0;
}
int
tls13_server_hello_send(struct tls13_ctx *ctx)
{
ctx->handshake_stage.hs_type |= NEGOTIATED;
return 0;
}
int
tls13_server_hello_retry_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_server_encrypted_extensions_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_server_certificate_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_server_certificate_request_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_server_certificate_verify_send(struct tls13_ctx *ctx)
{
return 0;
}
int
tls13_server_finished_send(struct tls13_ctx *ctx)
{
return 0;
}
|