/src/openssl30/ssl/statem/extensions_clnt.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
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 |
8 | | */ |
9 | | |
10 | | #include <openssl/ocsp.h> |
11 | | #include "../ssl_local.h" |
12 | | #include "internal/cryptlib.h" |
13 | | #include "statem_local.h" |
14 | | |
15 | | EXT_RETURN tls_construct_ctos_renegotiate(SSL *s, WPACKET *pkt, |
16 | | unsigned int context, X509 *x, |
17 | | size_t chainidx) |
18 | 0 | { |
19 | | /* Add RI if renegotiating */ |
20 | 0 | if (!s->renegotiate) |
21 | 0 | return EXT_RETURN_NOT_SENT; |
22 | | |
23 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_renegotiate) |
24 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
25 | 0 | || !WPACKET_sub_memcpy_u8(pkt, s->s3.previous_client_finished, |
26 | 0 | s->s3.previous_client_finished_len) |
27 | 0 | || !WPACKET_close(pkt)) { |
28 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
29 | 0 | return EXT_RETURN_FAIL; |
30 | 0 | } |
31 | | |
32 | 0 | return EXT_RETURN_SENT; |
33 | 0 | } |
34 | | |
35 | | EXT_RETURN tls_construct_ctos_server_name(SSL *s, WPACKET *pkt, |
36 | | unsigned int context, X509 *x, |
37 | | size_t chainidx) |
38 | 0 | { |
39 | 0 | if (s->ext.hostname == NULL) |
40 | 0 | return EXT_RETURN_NOT_SENT; |
41 | | |
42 | | /* Add TLS extension servername to the Client Hello message */ |
43 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_server_name) |
44 | | /* Sub-packet for server_name extension */ |
45 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
46 | | /* Sub-packet for servername list (always 1 hostname)*/ |
47 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
48 | 0 | || !WPACKET_put_bytes_u8(pkt, TLSEXT_NAMETYPE_host_name) |
49 | 0 | || !WPACKET_sub_memcpy_u16(pkt, s->ext.hostname, |
50 | 0 | strlen(s->ext.hostname)) |
51 | 0 | || !WPACKET_close(pkt) |
52 | 0 | || !WPACKET_close(pkt)) { |
53 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
54 | 0 | return EXT_RETURN_FAIL; |
55 | 0 | } |
56 | | |
57 | 0 | return EXT_RETURN_SENT; |
58 | 0 | } |
59 | | |
60 | | /* Push a Max Fragment Len extension into ClientHello */ |
61 | | EXT_RETURN tls_construct_ctos_maxfragmentlen(SSL *s, WPACKET *pkt, |
62 | | unsigned int context, X509 *x, |
63 | | size_t chainidx) |
64 | 0 | { |
65 | 0 | if (s->ext.max_fragment_len_mode == TLSEXT_max_fragment_length_DISABLED) |
66 | 0 | return EXT_RETURN_NOT_SENT; |
67 | | |
68 | | /* Add Max Fragment Length extension if client enabled it. */ |
69 | | /*- |
70 | | * 4 bytes for this extension type and extension length |
71 | | * 1 byte for the Max Fragment Length code value. |
72 | | */ |
73 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_max_fragment_length) |
74 | | /* Sub-packet for Max Fragment Length extension (1 byte) */ |
75 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
76 | 0 | || !WPACKET_put_bytes_u8(pkt, s->ext.max_fragment_len_mode) |
77 | 0 | || !WPACKET_close(pkt)) { |
78 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
79 | 0 | return EXT_RETURN_FAIL; |
80 | 0 | } |
81 | | |
82 | 0 | return EXT_RETURN_SENT; |
83 | 0 | } |
84 | | |
85 | | #ifndef OPENSSL_NO_SRP |
86 | | EXT_RETURN tls_construct_ctos_srp(SSL *s, WPACKET *pkt, unsigned int context, |
87 | | X509 *x, size_t chainidx) |
88 | 0 | { |
89 | | /* Add SRP username if there is one */ |
90 | 0 | if (s->srp_ctx.login == NULL) |
91 | 0 | return EXT_RETURN_NOT_SENT; |
92 | | |
93 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_srp) |
94 | | /* Sub-packet for SRP extension */ |
95 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
96 | 0 | || !WPACKET_start_sub_packet_u8(pkt) |
97 | | /* login must not be zero...internal error if so */ |
98 | 0 | || !WPACKET_set_flags(pkt, WPACKET_FLAGS_NON_ZERO_LENGTH) |
99 | 0 | || !WPACKET_memcpy(pkt, s->srp_ctx.login, |
100 | 0 | strlen(s->srp_ctx.login)) |
101 | 0 | || !WPACKET_close(pkt) |
102 | 0 | || !WPACKET_close(pkt)) { |
103 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
104 | 0 | return EXT_RETURN_FAIL; |
105 | 0 | } |
106 | | |
107 | 0 | return EXT_RETURN_SENT; |
108 | 0 | } |
109 | | #endif |
110 | | |
111 | | static int use_ecc(SSL *s, int min_version, int max_version) |
112 | 0 | { |
113 | 0 | int i, end, ret = 0; |
114 | 0 | unsigned long alg_k, alg_a; |
115 | 0 | STACK_OF(SSL_CIPHER) *cipher_stack = NULL; |
116 | 0 | const uint16_t *pgroups = NULL; |
117 | 0 | size_t num_groups, j; |
118 | | |
119 | | /* See if we support any ECC ciphersuites */ |
120 | 0 | if (s->version == SSL3_VERSION) |
121 | 0 | return 0; |
122 | | |
123 | 0 | cipher_stack = SSL_get1_supported_ciphers(s); |
124 | 0 | end = sk_SSL_CIPHER_num(cipher_stack); |
125 | 0 | for (i = 0; i < end; i++) { |
126 | 0 | const SSL_CIPHER *c = sk_SSL_CIPHER_value(cipher_stack, i); |
127 | |
|
128 | 0 | alg_k = c->algorithm_mkey; |
129 | 0 | alg_a = c->algorithm_auth; |
130 | 0 | if ((alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) |
131 | 0 | || (alg_a & SSL_aECDSA) |
132 | 0 | || c->min_tls >= TLS1_3_VERSION) { |
133 | 0 | ret = 1; |
134 | 0 | break; |
135 | 0 | } |
136 | 0 | } |
137 | 0 | sk_SSL_CIPHER_free(cipher_stack); |
138 | 0 | if (!ret) |
139 | 0 | return 0; |
140 | | |
141 | | /* Check we have at least one EC supported group */ |
142 | 0 | tls1_get_supported_groups(s, &pgroups, &num_groups); |
143 | 0 | for (j = 0; j < num_groups; j++) { |
144 | 0 | uint16_t ctmp = pgroups[j]; |
145 | |
|
146 | 0 | if (tls_valid_group(s, ctmp, min_version, max_version, 1, NULL) |
147 | 0 | && tls_group_allowed(s, ctmp, SSL_SECOP_CURVE_SUPPORTED)) |
148 | 0 | return 1; |
149 | 0 | } |
150 | | |
151 | 0 | return 0; |
152 | 0 | } |
153 | | |
154 | | EXT_RETURN tls_construct_ctos_ec_pt_formats(SSL *s, WPACKET *pkt, |
155 | | unsigned int context, X509 *x, |
156 | | size_t chainidx) |
157 | 0 | { |
158 | 0 | const unsigned char *pformats; |
159 | 0 | size_t num_formats; |
160 | 0 | int reason, min_version, max_version; |
161 | |
|
162 | 0 | reason = ssl_get_min_max_version(s, &min_version, &max_version, NULL); |
163 | 0 | if (reason != 0) { |
164 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, reason); |
165 | 0 | return EXT_RETURN_FAIL; |
166 | 0 | } |
167 | 0 | if (!use_ecc(s, min_version, max_version)) |
168 | 0 | return EXT_RETURN_NOT_SENT; |
169 | | |
170 | | /* Add TLS extension ECPointFormats to the ClientHello message */ |
171 | 0 | tls1_get_formatlist(s, &pformats, &num_formats); |
172 | |
|
173 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_ec_point_formats) |
174 | | /* Sub-packet for formats extension */ |
175 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
176 | 0 | || !WPACKET_sub_memcpy_u8(pkt, pformats, num_formats) |
177 | 0 | || !WPACKET_close(pkt)) { |
178 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
179 | 0 | return EXT_RETURN_FAIL; |
180 | 0 | } |
181 | | |
182 | 0 | return EXT_RETURN_SENT; |
183 | 0 | } |
184 | | |
185 | | EXT_RETURN tls_construct_ctos_supported_groups(SSL *s, WPACKET *pkt, |
186 | | unsigned int context, X509 *x, |
187 | | size_t chainidx) |
188 | 0 | { |
189 | 0 | const uint16_t *pgroups = NULL; |
190 | 0 | size_t num_groups = 0, i, tls13added = 0, added = 0; |
191 | 0 | int min_version, max_version, reason; |
192 | |
|
193 | 0 | reason = ssl_get_min_max_version(s, &min_version, &max_version, NULL); |
194 | 0 | if (reason != 0) { |
195 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, reason); |
196 | 0 | return EXT_RETURN_FAIL; |
197 | 0 | } |
198 | | |
199 | | /* |
200 | | * We only support EC groups in TLSv1.2 or below, and in DTLS. Therefore |
201 | | * if we don't have EC support then we don't send this extension. |
202 | | */ |
203 | 0 | if (!use_ecc(s, min_version, max_version) |
204 | 0 | && (SSL_IS_DTLS(s) || max_version < TLS1_3_VERSION)) |
205 | 0 | return EXT_RETURN_NOT_SENT; |
206 | | |
207 | | /* |
208 | | * Add TLS extension supported_groups to the ClientHello message |
209 | | */ |
210 | 0 | tls1_get_supported_groups(s, &pgroups, &num_groups); |
211 | |
|
212 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_supported_groups) |
213 | | /* Sub-packet for supported_groups extension */ |
214 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
215 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
216 | 0 | || !WPACKET_set_flags(pkt, WPACKET_FLAGS_NON_ZERO_LENGTH)) { |
217 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
218 | 0 | return EXT_RETURN_FAIL; |
219 | 0 | } |
220 | | /* Copy group ID if supported */ |
221 | 0 | for (i = 0; i < num_groups; i++) { |
222 | 0 | uint16_t ctmp = pgroups[i]; |
223 | 0 | int okfortls13; |
224 | |
|
225 | 0 | if (tls_valid_group(s, ctmp, min_version, max_version, 0, &okfortls13) |
226 | 0 | && tls_group_allowed(s, ctmp, SSL_SECOP_CURVE_SUPPORTED)) { |
227 | 0 | if (!WPACKET_put_bytes_u16(pkt, ctmp)) { |
228 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
229 | 0 | return EXT_RETURN_FAIL; |
230 | 0 | } |
231 | 0 | if (okfortls13 && max_version == TLS1_3_VERSION) |
232 | 0 | tls13added++; |
233 | 0 | added++; |
234 | 0 | } |
235 | 0 | } |
236 | 0 | if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { |
237 | 0 | if (added == 0) |
238 | 0 | SSLfatal_data(s, SSL_AD_INTERNAL_ERROR, SSL_R_NO_SUITABLE_GROUPS, |
239 | 0 | "No groups enabled for max supported SSL/TLS version"); |
240 | 0 | else |
241 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
242 | 0 | return EXT_RETURN_FAIL; |
243 | 0 | } |
244 | | |
245 | 0 | if (tls13added == 0 && max_version == TLS1_3_VERSION) { |
246 | 0 | SSLfatal_data(s, SSL_AD_INTERNAL_ERROR, SSL_R_NO_SUITABLE_GROUPS, |
247 | 0 | "No groups enabled for max supported SSL/TLS version"); |
248 | 0 | return EXT_RETURN_FAIL; |
249 | 0 | } |
250 | | |
251 | 0 | return EXT_RETURN_SENT; |
252 | 0 | } |
253 | | |
254 | | EXT_RETURN tls_construct_ctos_session_ticket(SSL *s, WPACKET *pkt, |
255 | | unsigned int context, X509 *x, |
256 | | size_t chainidx) |
257 | 0 | { |
258 | 0 | size_t ticklen; |
259 | |
|
260 | 0 | if (!tls_use_ticket(s)) |
261 | 0 | return EXT_RETURN_NOT_SENT; |
262 | | |
263 | 0 | if (!s->new_session && s->session != NULL |
264 | 0 | && s->session->ext.tick != NULL |
265 | 0 | && s->session->ssl_version != TLS1_3_VERSION) { |
266 | 0 | ticklen = s->session->ext.ticklen; |
267 | 0 | } else if (s->session && s->ext.session_ticket != NULL |
268 | 0 | && s->ext.session_ticket->data != NULL) { |
269 | 0 | ticklen = s->ext.session_ticket->length; |
270 | 0 | s->session->ext.tick = OPENSSL_malloc(ticklen); |
271 | 0 | if (s->session->ext.tick == NULL) { |
272 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
273 | 0 | return EXT_RETURN_FAIL; |
274 | 0 | } |
275 | 0 | memcpy(s->session->ext.tick, |
276 | 0 | s->ext.session_ticket->data, ticklen); |
277 | 0 | s->session->ext.ticklen = ticklen; |
278 | 0 | } else { |
279 | 0 | ticklen = 0; |
280 | 0 | } |
281 | | |
282 | 0 | if (ticklen == 0 && s->ext.session_ticket != NULL && |
283 | 0 | s->ext.session_ticket->data == NULL) |
284 | 0 | return EXT_RETURN_NOT_SENT; |
285 | | |
286 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_session_ticket) |
287 | 0 | || !WPACKET_sub_memcpy_u16(pkt, s->session->ext.tick, ticklen)) { |
288 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
289 | 0 | return EXT_RETURN_FAIL; |
290 | 0 | } |
291 | | |
292 | 0 | return EXT_RETURN_SENT; |
293 | 0 | } |
294 | | |
295 | | EXT_RETURN tls_construct_ctos_sig_algs(SSL *s, WPACKET *pkt, |
296 | | unsigned int context, X509 *x, |
297 | | size_t chainidx) |
298 | 0 | { |
299 | 0 | size_t salglen; |
300 | 0 | const uint16_t *salg; |
301 | |
|
302 | 0 | if (!SSL_CLIENT_USE_SIGALGS(s)) |
303 | 0 | return EXT_RETURN_NOT_SENT; |
304 | | |
305 | 0 | salglen = tls12_get_psigalgs(s, 1, &salg); |
306 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_signature_algorithms) |
307 | | /* Sub-packet for sig-algs extension */ |
308 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
309 | | /* Sub-packet for the actual list */ |
310 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
311 | 0 | || !tls12_copy_sigalgs(s, pkt, salg, salglen) |
312 | 0 | || !WPACKET_close(pkt) |
313 | 0 | || !WPACKET_close(pkt)) { |
314 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
315 | 0 | return EXT_RETURN_FAIL; |
316 | 0 | } |
317 | | |
318 | 0 | return EXT_RETURN_SENT; |
319 | 0 | } |
320 | | |
321 | | #ifndef OPENSSL_NO_OCSP |
322 | | EXT_RETURN tls_construct_ctos_status_request(SSL *s, WPACKET *pkt, |
323 | | unsigned int context, X509 *x, |
324 | | size_t chainidx) |
325 | 0 | { |
326 | 0 | int i; |
327 | | |
328 | | /* This extension isn't defined for client Certificates */ |
329 | 0 | if (x != NULL) |
330 | 0 | return EXT_RETURN_NOT_SENT; |
331 | | |
332 | 0 | if (s->ext.status_type != TLSEXT_STATUSTYPE_ocsp) |
333 | 0 | return EXT_RETURN_NOT_SENT; |
334 | | |
335 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_status_request) |
336 | | /* Sub-packet for status request extension */ |
337 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
338 | 0 | || !WPACKET_put_bytes_u8(pkt, TLSEXT_STATUSTYPE_ocsp) |
339 | | /* Sub-packet for the ids */ |
340 | 0 | || !WPACKET_start_sub_packet_u16(pkt)) { |
341 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
342 | 0 | return EXT_RETURN_FAIL; |
343 | 0 | } |
344 | 0 | for (i = 0; i < sk_OCSP_RESPID_num(s->ext.ocsp.ids); i++) { |
345 | 0 | unsigned char *idbytes; |
346 | 0 | OCSP_RESPID *id = sk_OCSP_RESPID_value(s->ext.ocsp.ids, i); |
347 | 0 | int idlen = i2d_OCSP_RESPID(id, NULL); |
348 | |
|
349 | 0 | if (idlen <= 0 |
350 | | /* Sub-packet for an individual id */ |
351 | 0 | || !WPACKET_sub_allocate_bytes_u16(pkt, idlen, &idbytes) |
352 | 0 | || i2d_OCSP_RESPID(id, &idbytes) != idlen) { |
353 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
354 | 0 | return EXT_RETURN_FAIL; |
355 | 0 | } |
356 | 0 | } |
357 | 0 | if (!WPACKET_close(pkt) |
358 | 0 | || !WPACKET_start_sub_packet_u16(pkt)) { |
359 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
360 | 0 | return EXT_RETURN_FAIL; |
361 | 0 | } |
362 | 0 | if (s->ext.ocsp.exts) { |
363 | 0 | unsigned char *extbytes; |
364 | 0 | int extlen = i2d_X509_EXTENSIONS(s->ext.ocsp.exts, NULL); |
365 | |
|
366 | 0 | if (extlen < 0) { |
367 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
368 | 0 | return EXT_RETURN_FAIL; |
369 | 0 | } |
370 | 0 | if (!WPACKET_allocate_bytes(pkt, extlen, &extbytes) |
371 | 0 | || i2d_X509_EXTENSIONS(s->ext.ocsp.exts, &extbytes) |
372 | 0 | != extlen) { |
373 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
374 | 0 | return EXT_RETURN_FAIL; |
375 | 0 | } |
376 | 0 | } |
377 | 0 | if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { |
378 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
379 | 0 | return EXT_RETURN_FAIL; |
380 | 0 | } |
381 | | |
382 | 0 | return EXT_RETURN_SENT; |
383 | 0 | } |
384 | | #endif |
385 | | |
386 | | #ifndef OPENSSL_NO_NEXTPROTONEG |
387 | | EXT_RETURN tls_construct_ctos_npn(SSL *s, WPACKET *pkt, unsigned int context, |
388 | | X509 *x, size_t chainidx) |
389 | 0 | { |
390 | 0 | if (s->ctx->ext.npn_select_cb == NULL || !SSL_IS_FIRST_HANDSHAKE(s)) |
391 | 0 | return EXT_RETURN_NOT_SENT; |
392 | | |
393 | | /* |
394 | | * The client advertises an empty extension to indicate its support |
395 | | * for Next Protocol Negotiation |
396 | | */ |
397 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_next_proto_neg) |
398 | 0 | || !WPACKET_put_bytes_u16(pkt, 0)) { |
399 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
400 | 0 | return EXT_RETURN_FAIL; |
401 | 0 | } |
402 | | |
403 | 0 | return EXT_RETURN_SENT; |
404 | 0 | } |
405 | | #endif |
406 | | |
407 | | EXT_RETURN tls_construct_ctos_alpn(SSL *s, WPACKET *pkt, unsigned int context, |
408 | | X509 *x, size_t chainidx) |
409 | 0 | { |
410 | 0 | s->s3.alpn_sent = 0; |
411 | |
|
412 | 0 | if (s->ext.alpn == NULL || !SSL_IS_FIRST_HANDSHAKE(s)) |
413 | 0 | return EXT_RETURN_NOT_SENT; |
414 | | |
415 | 0 | if (!WPACKET_put_bytes_u16(pkt, |
416 | 0 | TLSEXT_TYPE_application_layer_protocol_negotiation) |
417 | | /* Sub-packet ALPN extension */ |
418 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
419 | 0 | || !WPACKET_sub_memcpy_u16(pkt, s->ext.alpn, s->ext.alpn_len) |
420 | 0 | || !WPACKET_close(pkt)) { |
421 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
422 | 0 | return EXT_RETURN_FAIL; |
423 | 0 | } |
424 | 0 | s->s3.alpn_sent = 1; |
425 | |
|
426 | 0 | return EXT_RETURN_SENT; |
427 | 0 | } |
428 | | |
429 | | |
430 | | #ifndef OPENSSL_NO_SRTP |
431 | | EXT_RETURN tls_construct_ctos_use_srtp(SSL *s, WPACKET *pkt, |
432 | | unsigned int context, X509 *x, |
433 | | size_t chainidx) |
434 | 0 | { |
435 | 0 | STACK_OF(SRTP_PROTECTION_PROFILE) *clnt = SSL_get_srtp_profiles(s); |
436 | 0 | int i, end; |
437 | |
|
438 | 0 | if (clnt == NULL) |
439 | 0 | return EXT_RETURN_NOT_SENT; |
440 | | |
441 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_use_srtp) |
442 | | /* Sub-packet for SRTP extension */ |
443 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
444 | | /* Sub-packet for the protection profile list */ |
445 | 0 | || !WPACKET_start_sub_packet_u16(pkt)) { |
446 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
447 | 0 | return EXT_RETURN_FAIL; |
448 | 0 | } |
449 | | |
450 | 0 | end = sk_SRTP_PROTECTION_PROFILE_num(clnt); |
451 | 0 | for (i = 0; i < end; i++) { |
452 | 0 | const SRTP_PROTECTION_PROFILE *prof = |
453 | 0 | sk_SRTP_PROTECTION_PROFILE_value(clnt, i); |
454 | |
|
455 | 0 | if (prof == NULL || !WPACKET_put_bytes_u16(pkt, prof->id)) { |
456 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
457 | 0 | return EXT_RETURN_FAIL; |
458 | 0 | } |
459 | 0 | } |
460 | 0 | if (!WPACKET_close(pkt) |
461 | | /* Add an empty use_mki value */ |
462 | 0 | || !WPACKET_put_bytes_u8(pkt, 0) |
463 | 0 | || !WPACKET_close(pkt)) { |
464 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
465 | 0 | return EXT_RETURN_FAIL; |
466 | 0 | } |
467 | | |
468 | 0 | return EXT_RETURN_SENT; |
469 | 0 | } |
470 | | #endif |
471 | | |
472 | | EXT_RETURN tls_construct_ctos_etm(SSL *s, WPACKET *pkt, unsigned int context, |
473 | | X509 *x, size_t chainidx) |
474 | 0 | { |
475 | 0 | if (s->options & SSL_OP_NO_ENCRYPT_THEN_MAC) |
476 | 0 | return EXT_RETURN_NOT_SENT; |
477 | | |
478 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_encrypt_then_mac) |
479 | 0 | || !WPACKET_put_bytes_u16(pkt, 0)) { |
480 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
481 | 0 | return EXT_RETURN_FAIL; |
482 | 0 | } |
483 | | |
484 | 0 | return EXT_RETURN_SENT; |
485 | 0 | } |
486 | | |
487 | | #ifndef OPENSSL_NO_CT |
488 | | EXT_RETURN tls_construct_ctos_sct(SSL *s, WPACKET *pkt, unsigned int context, |
489 | | X509 *x, size_t chainidx) |
490 | 0 | { |
491 | 0 | if (s->ct_validation_callback == NULL) |
492 | 0 | return EXT_RETURN_NOT_SENT; |
493 | | |
494 | | /* Not defined for client Certificates */ |
495 | 0 | if (x != NULL) |
496 | 0 | return EXT_RETURN_NOT_SENT; |
497 | | |
498 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_signed_certificate_timestamp) |
499 | 0 | || !WPACKET_put_bytes_u16(pkt, 0)) { |
500 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
501 | 0 | return EXT_RETURN_FAIL; |
502 | 0 | } |
503 | | |
504 | 0 | return EXT_RETURN_SENT; |
505 | 0 | } |
506 | | #endif |
507 | | |
508 | | EXT_RETURN tls_construct_ctos_ems(SSL *s, WPACKET *pkt, unsigned int context, |
509 | | X509 *x, size_t chainidx) |
510 | 0 | { |
511 | 0 | if (s->options & SSL_OP_NO_EXTENDED_MASTER_SECRET) |
512 | 0 | return EXT_RETURN_NOT_SENT; |
513 | | |
514 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_extended_master_secret) |
515 | 0 | || !WPACKET_put_bytes_u16(pkt, 0)) { |
516 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
517 | 0 | return EXT_RETURN_FAIL; |
518 | 0 | } |
519 | | |
520 | 0 | return EXT_RETURN_SENT; |
521 | 0 | } |
522 | | |
523 | | EXT_RETURN tls_construct_ctos_supported_versions(SSL *s, WPACKET *pkt, |
524 | | unsigned int context, X509 *x, |
525 | | size_t chainidx) |
526 | 0 | { |
527 | 0 | int currv, min_version, max_version, reason; |
528 | |
|
529 | 0 | reason = ssl_get_min_max_version(s, &min_version, &max_version, NULL); |
530 | 0 | if (reason != 0) { |
531 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, reason); |
532 | 0 | return EXT_RETURN_FAIL; |
533 | 0 | } |
534 | | |
535 | | /* |
536 | | * Don't include this if we can't negotiate TLSv1.3. We can do a straight |
537 | | * comparison here because we will never be called in DTLS. |
538 | | */ |
539 | 0 | if (max_version < TLS1_3_VERSION) |
540 | 0 | return EXT_RETURN_NOT_SENT; |
541 | | |
542 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_supported_versions) |
543 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
544 | 0 | || !WPACKET_start_sub_packet_u8(pkt)) { |
545 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
546 | 0 | return EXT_RETURN_FAIL; |
547 | 0 | } |
548 | | |
549 | 0 | for (currv = max_version; currv >= min_version; currv--) { |
550 | 0 | if (!WPACKET_put_bytes_u16(pkt, currv)) { |
551 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
552 | 0 | return EXT_RETURN_FAIL; |
553 | 0 | } |
554 | 0 | } |
555 | 0 | if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { |
556 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
557 | 0 | return EXT_RETURN_FAIL; |
558 | 0 | } |
559 | | |
560 | 0 | return EXT_RETURN_SENT; |
561 | 0 | } |
562 | | |
563 | | /* |
564 | | * Construct a psk_kex_modes extension. |
565 | | */ |
566 | | EXT_RETURN tls_construct_ctos_psk_kex_modes(SSL *s, WPACKET *pkt, |
567 | | unsigned int context, X509 *x, |
568 | | size_t chainidx) |
569 | 0 | { |
570 | 0 | #ifndef OPENSSL_NO_TLS1_3 |
571 | 0 | int nodhe = s->options & SSL_OP_ALLOW_NO_DHE_KEX; |
572 | |
|
573 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_psk_kex_modes) |
574 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
575 | 0 | || !WPACKET_start_sub_packet_u8(pkt) |
576 | 0 | || !WPACKET_put_bytes_u8(pkt, TLSEXT_KEX_MODE_KE_DHE) |
577 | 0 | || (nodhe && !WPACKET_put_bytes_u8(pkt, TLSEXT_KEX_MODE_KE)) |
578 | 0 | || !WPACKET_close(pkt) |
579 | 0 | || !WPACKET_close(pkt)) { |
580 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
581 | 0 | return EXT_RETURN_FAIL; |
582 | 0 | } |
583 | | |
584 | 0 | s->ext.psk_kex_mode = TLSEXT_KEX_MODE_FLAG_KE_DHE; |
585 | 0 | if (nodhe) |
586 | 0 | s->ext.psk_kex_mode |= TLSEXT_KEX_MODE_FLAG_KE; |
587 | 0 | #endif |
588 | |
|
589 | 0 | return EXT_RETURN_SENT; |
590 | 0 | } |
591 | | |
592 | | #ifndef OPENSSL_NO_TLS1_3 |
593 | | static int add_key_share(SSL *s, WPACKET *pkt, unsigned int curve_id) |
594 | 0 | { |
595 | 0 | unsigned char *encoded_point = NULL; |
596 | 0 | EVP_PKEY *key_share_key = NULL; |
597 | 0 | size_t encodedlen; |
598 | |
|
599 | 0 | if (s->s3.tmp.pkey != NULL) { |
600 | 0 | if (!ossl_assert(s->hello_retry_request == SSL_HRR_PENDING)) { |
601 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
602 | 0 | return 0; |
603 | 0 | } |
604 | | /* |
605 | | * Could happen if we got an HRR that wasn't requesting a new key_share |
606 | | */ |
607 | 0 | key_share_key = s->s3.tmp.pkey; |
608 | 0 | } else { |
609 | 0 | key_share_key = ssl_generate_pkey_group(s, curve_id); |
610 | 0 | if (key_share_key == NULL) { |
611 | | /* SSLfatal() already called */ |
612 | 0 | return 0; |
613 | 0 | } |
614 | 0 | } |
615 | | |
616 | | /* Encode the public key. */ |
617 | 0 | encodedlen = EVP_PKEY_get1_encoded_public_key(key_share_key, |
618 | 0 | &encoded_point); |
619 | 0 | if (encodedlen == 0) { |
620 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_EC_LIB); |
621 | 0 | goto err; |
622 | 0 | } |
623 | | |
624 | | /* Create KeyShareEntry */ |
625 | 0 | if (!WPACKET_put_bytes_u16(pkt, curve_id) |
626 | 0 | || !WPACKET_sub_memcpy_u16(pkt, encoded_point, encodedlen)) { |
627 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
628 | 0 | goto err; |
629 | 0 | } |
630 | | |
631 | | /* |
632 | | * When changing to send more than one key_share we're |
633 | | * going to need to be able to save more than one EVP_PKEY. For now |
634 | | * we reuse the existing tmp.pkey |
635 | | */ |
636 | 0 | s->s3.tmp.pkey = key_share_key; |
637 | 0 | s->s3.group_id = curve_id; |
638 | 0 | OPENSSL_free(encoded_point); |
639 | |
|
640 | 0 | return 1; |
641 | 0 | err: |
642 | 0 | if (s->s3.tmp.pkey == NULL) |
643 | 0 | EVP_PKEY_free(key_share_key); |
644 | 0 | OPENSSL_free(encoded_point); |
645 | 0 | return 0; |
646 | 0 | } |
647 | | #endif |
648 | | |
649 | | EXT_RETURN tls_construct_ctos_key_share(SSL *s, WPACKET *pkt, |
650 | | unsigned int context, X509 *x, |
651 | | size_t chainidx) |
652 | 0 | { |
653 | 0 | #ifndef OPENSSL_NO_TLS1_3 |
654 | 0 | size_t i, num_groups = 0; |
655 | 0 | const uint16_t *pgroups = NULL; |
656 | 0 | uint16_t curve_id = 0; |
657 | | |
658 | | /* key_share extension */ |
659 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_key_share) |
660 | | /* Extension data sub-packet */ |
661 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
662 | | /* KeyShare list sub-packet */ |
663 | 0 | || !WPACKET_start_sub_packet_u16(pkt)) { |
664 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
665 | 0 | return EXT_RETURN_FAIL; |
666 | 0 | } |
667 | | |
668 | 0 | tls1_get_supported_groups(s, &pgroups, &num_groups); |
669 | | |
670 | | /* |
671 | | * Make the number of key_shares sent configurable. For |
672 | | * now, we just send one |
673 | | */ |
674 | 0 | if (s->s3.group_id != 0) { |
675 | 0 | curve_id = s->s3.group_id; |
676 | 0 | } else { |
677 | 0 | for (i = 0; i < num_groups; i++) { |
678 | |
|
679 | 0 | if (!tls_group_allowed(s, pgroups[i], SSL_SECOP_CURVE_SUPPORTED)) |
680 | 0 | continue; |
681 | | |
682 | 0 | if (!tls_valid_group(s, pgroups[i], TLS1_3_VERSION, TLS1_3_VERSION, |
683 | 0 | 0, NULL)) |
684 | 0 | continue; |
685 | | |
686 | 0 | curve_id = pgroups[i]; |
687 | 0 | break; |
688 | 0 | } |
689 | 0 | } |
690 | |
|
691 | 0 | if (curve_id == 0) { |
692 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_NO_SUITABLE_KEY_SHARE); |
693 | 0 | return EXT_RETURN_FAIL; |
694 | 0 | } |
695 | | |
696 | 0 | if (!add_key_share(s, pkt, curve_id)) { |
697 | | /* SSLfatal() already called */ |
698 | 0 | return EXT_RETURN_FAIL; |
699 | 0 | } |
700 | | |
701 | 0 | if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { |
702 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
703 | 0 | return EXT_RETURN_FAIL; |
704 | 0 | } |
705 | 0 | return EXT_RETURN_SENT; |
706 | | #else |
707 | | return EXT_RETURN_NOT_SENT; |
708 | | #endif |
709 | 0 | } |
710 | | |
711 | | EXT_RETURN tls_construct_ctos_cookie(SSL *s, WPACKET *pkt, unsigned int context, |
712 | | X509 *x, size_t chainidx) |
713 | 0 | { |
714 | 0 | EXT_RETURN ret = EXT_RETURN_FAIL; |
715 | | |
716 | | /* Should only be set if we've had an HRR */ |
717 | 0 | if (s->ext.tls13_cookie_len == 0) |
718 | 0 | return EXT_RETURN_NOT_SENT; |
719 | | |
720 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_cookie) |
721 | | /* Extension data sub-packet */ |
722 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
723 | 0 | || !WPACKET_sub_memcpy_u16(pkt, s->ext.tls13_cookie, |
724 | 0 | s->ext.tls13_cookie_len) |
725 | 0 | || !WPACKET_close(pkt)) { |
726 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
727 | 0 | goto end; |
728 | 0 | } |
729 | | |
730 | 0 | ret = EXT_RETURN_SENT; |
731 | 0 | end: |
732 | 0 | OPENSSL_free(s->ext.tls13_cookie); |
733 | 0 | s->ext.tls13_cookie = NULL; |
734 | 0 | s->ext.tls13_cookie_len = 0; |
735 | |
|
736 | 0 | return ret; |
737 | 0 | } |
738 | | |
739 | | EXT_RETURN tls_construct_ctos_early_data(SSL *s, WPACKET *pkt, |
740 | | unsigned int context, X509 *x, |
741 | | size_t chainidx) |
742 | 0 | { |
743 | 0 | #ifndef OPENSSL_NO_PSK |
744 | 0 | char identity[PSK_MAX_IDENTITY_LEN + 1]; |
745 | 0 | #endif /* OPENSSL_NO_PSK */ |
746 | 0 | const unsigned char *id = NULL; |
747 | 0 | size_t idlen = 0; |
748 | 0 | SSL_SESSION *psksess = NULL; |
749 | 0 | SSL_SESSION *edsess = NULL; |
750 | 0 | const EVP_MD *handmd = NULL; |
751 | |
|
752 | 0 | if (s->hello_retry_request == SSL_HRR_PENDING) |
753 | 0 | handmd = ssl_handshake_md(s); |
754 | |
|
755 | 0 | if (s->psk_use_session_cb != NULL |
756 | 0 | && (!s->psk_use_session_cb(s, handmd, &id, &idlen, &psksess) |
757 | 0 | || (psksess != NULL |
758 | 0 | && psksess->ssl_version != TLS1_3_VERSION))) { |
759 | 0 | SSL_SESSION_free(psksess); |
760 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_BAD_PSK); |
761 | 0 | return EXT_RETURN_FAIL; |
762 | 0 | } |
763 | | |
764 | 0 | #ifndef OPENSSL_NO_PSK |
765 | 0 | if (psksess == NULL && s->psk_client_callback != NULL) { |
766 | 0 | unsigned char psk[PSK_MAX_PSK_LEN]; |
767 | 0 | size_t psklen = 0; |
768 | |
|
769 | 0 | memset(identity, 0, sizeof(identity)); |
770 | 0 | psklen = s->psk_client_callback(s, NULL, identity, sizeof(identity) - 1, |
771 | 0 | psk, sizeof(psk)); |
772 | |
|
773 | 0 | if (psklen > PSK_MAX_PSK_LEN) { |
774 | 0 | SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, ERR_R_INTERNAL_ERROR); |
775 | 0 | return EXT_RETURN_FAIL; |
776 | 0 | } else if (psklen > 0) { |
777 | 0 | const unsigned char tls13_aes128gcmsha256_id[] = { 0x13, 0x01 }; |
778 | 0 | const SSL_CIPHER *cipher; |
779 | |
|
780 | 0 | idlen = strlen(identity); |
781 | 0 | if (idlen > PSK_MAX_IDENTITY_LEN) { |
782 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
783 | 0 | return EXT_RETURN_FAIL; |
784 | 0 | } |
785 | 0 | id = (unsigned char *)identity; |
786 | | |
787 | | /* |
788 | | * We found a PSK using an old style callback. We don't know |
789 | | * the digest so we default to SHA256 as per the TLSv1.3 spec |
790 | | */ |
791 | 0 | cipher = SSL_CIPHER_find(s, tls13_aes128gcmsha256_id); |
792 | 0 | if (cipher == NULL) { |
793 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
794 | 0 | return EXT_RETURN_FAIL; |
795 | 0 | } |
796 | | |
797 | 0 | psksess = SSL_SESSION_new(); |
798 | 0 | if (psksess == NULL |
799 | 0 | || !SSL_SESSION_set1_master_key(psksess, psk, psklen) |
800 | 0 | || !SSL_SESSION_set_cipher(psksess, cipher) |
801 | 0 | || !SSL_SESSION_set_protocol_version(psksess, TLS1_3_VERSION)) { |
802 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
803 | 0 | OPENSSL_cleanse(psk, psklen); |
804 | 0 | return EXT_RETURN_FAIL; |
805 | 0 | } |
806 | 0 | OPENSSL_cleanse(psk, psklen); |
807 | 0 | } |
808 | 0 | } |
809 | 0 | #endif /* OPENSSL_NO_PSK */ |
810 | | |
811 | 0 | SSL_SESSION_free(s->psksession); |
812 | 0 | s->psksession = psksess; |
813 | 0 | if (psksess != NULL) { |
814 | 0 | OPENSSL_free(s->psksession_id); |
815 | 0 | s->psksession_id = OPENSSL_memdup(id, idlen); |
816 | 0 | if (s->psksession_id == NULL) { |
817 | 0 | s->psksession_id_len = 0; |
818 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
819 | 0 | return EXT_RETURN_FAIL; |
820 | 0 | } |
821 | 0 | s->psksession_id_len = idlen; |
822 | 0 | } |
823 | | |
824 | 0 | if (s->early_data_state != SSL_EARLY_DATA_CONNECTING |
825 | 0 | || (s->session->ext.max_early_data == 0 |
826 | 0 | && (psksess == NULL || psksess->ext.max_early_data == 0))) { |
827 | 0 | s->max_early_data = 0; |
828 | 0 | return EXT_RETURN_NOT_SENT; |
829 | 0 | } |
830 | 0 | edsess = s->session->ext.max_early_data != 0 ? s->session : psksess; |
831 | 0 | s->max_early_data = edsess->ext.max_early_data; |
832 | |
|
833 | 0 | if (edsess->ext.hostname != NULL) { |
834 | 0 | if (s->ext.hostname == NULL |
835 | 0 | || (s->ext.hostname != NULL |
836 | 0 | && strcmp(s->ext.hostname, edsess->ext.hostname) != 0)) { |
837 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, |
838 | 0 | SSL_R_INCONSISTENT_EARLY_DATA_SNI); |
839 | 0 | return EXT_RETURN_FAIL; |
840 | 0 | } |
841 | 0 | } |
842 | | |
843 | 0 | if ((s->ext.alpn == NULL && edsess->ext.alpn_selected != NULL)) { |
844 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_INCONSISTENT_EARLY_DATA_ALPN); |
845 | 0 | return EXT_RETURN_FAIL; |
846 | 0 | } |
847 | | |
848 | | /* |
849 | | * Verify that we are offering an ALPN protocol consistent with the early |
850 | | * data. |
851 | | */ |
852 | 0 | if (edsess->ext.alpn_selected != NULL) { |
853 | 0 | PACKET prots, alpnpkt; |
854 | 0 | int found = 0; |
855 | |
|
856 | 0 | if (!PACKET_buf_init(&prots, s->ext.alpn, s->ext.alpn_len)) { |
857 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
858 | 0 | return EXT_RETURN_FAIL; |
859 | 0 | } |
860 | 0 | while (PACKET_get_length_prefixed_1(&prots, &alpnpkt)) { |
861 | 0 | if (PACKET_equal(&alpnpkt, edsess->ext.alpn_selected, |
862 | 0 | edsess->ext.alpn_selected_len)) { |
863 | 0 | found = 1; |
864 | 0 | break; |
865 | 0 | } |
866 | 0 | } |
867 | 0 | if (!found) { |
868 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, |
869 | 0 | SSL_R_INCONSISTENT_EARLY_DATA_ALPN); |
870 | 0 | return EXT_RETURN_FAIL; |
871 | 0 | } |
872 | 0 | } |
873 | | |
874 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_early_data) |
875 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
876 | 0 | || !WPACKET_close(pkt)) { |
877 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
878 | 0 | return EXT_RETURN_FAIL; |
879 | 0 | } |
880 | | |
881 | | /* |
882 | | * We set this to rejected here. Later, if the server acknowledges the |
883 | | * extension, we set it to accepted. |
884 | | */ |
885 | 0 | s->ext.early_data = SSL_EARLY_DATA_REJECTED; |
886 | 0 | s->ext.early_data_ok = 1; |
887 | |
|
888 | 0 | return EXT_RETURN_SENT; |
889 | 0 | } |
890 | | |
891 | 0 | #define F5_WORKAROUND_MIN_MSG_LEN 0xff |
892 | 0 | #define F5_WORKAROUND_MAX_MSG_LEN 0x200 |
893 | | |
894 | | /* |
895 | | * PSK pre binder overhead = |
896 | | * 2 bytes for TLSEXT_TYPE_psk |
897 | | * 2 bytes for extension length |
898 | | * 2 bytes for identities list length |
899 | | * 2 bytes for identity length |
900 | | * 4 bytes for obfuscated_ticket_age |
901 | | * 2 bytes for binder list length |
902 | | * 1 byte for binder length |
903 | | * The above excludes the number of bytes for the identity itself and the |
904 | | * subsequent binder bytes |
905 | | */ |
906 | 0 | #define PSK_PRE_BINDER_OVERHEAD (2 + 2 + 2 + 2 + 4 + 2 + 1) |
907 | | |
908 | | EXT_RETURN tls_construct_ctos_padding(SSL *s, WPACKET *pkt, |
909 | | unsigned int context, X509 *x, |
910 | | size_t chainidx) |
911 | 0 | { |
912 | 0 | unsigned char *padbytes; |
913 | 0 | size_t hlen; |
914 | |
|
915 | 0 | if ((s->options & SSL_OP_TLSEXT_PADDING) == 0) |
916 | 0 | return EXT_RETURN_NOT_SENT; |
917 | | |
918 | | /* |
919 | | * Add padding to workaround bugs in F5 terminators. See RFC7685. |
920 | | * This code calculates the length of all extensions added so far but |
921 | | * excludes the PSK extension (because that MUST be written last). Therefore |
922 | | * this extension MUST always appear second to last. |
923 | | */ |
924 | 0 | if (!WPACKET_get_total_written(pkt, &hlen)) { |
925 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
926 | 0 | return EXT_RETURN_FAIL; |
927 | 0 | } |
928 | | |
929 | | /* |
930 | | * If we're going to send a PSK then that will be written out after this |
931 | | * extension, so we need to calculate how long it is going to be. |
932 | | */ |
933 | 0 | if (s->session->ssl_version == TLS1_3_VERSION |
934 | 0 | && s->session->ext.ticklen != 0 |
935 | 0 | && s->session->cipher != NULL) { |
936 | 0 | const EVP_MD *md = ssl_md(s->ctx, s->session->cipher->algorithm2); |
937 | |
|
938 | 0 | if (md != NULL) { |
939 | | /* |
940 | | * Add the fixed PSK overhead, the identity length and the binder |
941 | | * length. |
942 | | */ |
943 | 0 | hlen += PSK_PRE_BINDER_OVERHEAD + s->session->ext.ticklen |
944 | 0 | + EVP_MD_get_size(md); |
945 | 0 | } |
946 | 0 | } |
947 | |
|
948 | 0 | if (hlen > F5_WORKAROUND_MIN_MSG_LEN && hlen < F5_WORKAROUND_MAX_MSG_LEN) { |
949 | | /* Calculate the amount of padding we need to add */ |
950 | 0 | hlen = F5_WORKAROUND_MAX_MSG_LEN - hlen; |
951 | | |
952 | | /* |
953 | | * Take off the size of extension header itself (2 bytes for type and |
954 | | * 2 bytes for length bytes), but ensure that the extension is at least |
955 | | * 1 byte long so as not to have an empty extension last (WebSphere 7.x, |
956 | | * 8.x are intolerant of that condition) |
957 | | */ |
958 | 0 | if (hlen > 4) |
959 | 0 | hlen -= 4; |
960 | 0 | else |
961 | 0 | hlen = 1; |
962 | |
|
963 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_padding) |
964 | 0 | || !WPACKET_sub_allocate_bytes_u16(pkt, hlen, &padbytes)) { |
965 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
966 | 0 | return EXT_RETURN_FAIL; |
967 | 0 | } |
968 | 0 | memset(padbytes, 0, hlen); |
969 | 0 | } |
970 | | |
971 | 0 | return EXT_RETURN_SENT; |
972 | 0 | } |
973 | | |
974 | | /* |
975 | | * Construct the pre_shared_key extension |
976 | | */ |
977 | | EXT_RETURN tls_construct_ctos_psk(SSL *s, WPACKET *pkt, unsigned int context, |
978 | | X509 *x, size_t chainidx) |
979 | 0 | { |
980 | 0 | #ifndef OPENSSL_NO_TLS1_3 |
981 | 0 | uint32_t agesec, agems = 0; |
982 | 0 | size_t reshashsize = 0, pskhashsize = 0, binderoffset, msglen; |
983 | 0 | unsigned char *resbinder = NULL, *pskbinder = NULL, *msgstart = NULL; |
984 | 0 | const EVP_MD *handmd = NULL, *mdres = NULL, *mdpsk = NULL; |
985 | 0 | int dores = 0; |
986 | |
|
987 | 0 | s->ext.tick_identity = 0; |
988 | | |
989 | | /* |
990 | | * Note: At this stage of the code we only support adding a single |
991 | | * resumption PSK. If we add support for multiple PSKs then the length |
992 | | * calculations in the padding extension will need to be adjusted. |
993 | | */ |
994 | | |
995 | | /* |
996 | | * If this is an incompatible or new session then we have nothing to resume |
997 | | * so don't add this extension. |
998 | | */ |
999 | 0 | if (s->session->ssl_version != TLS1_3_VERSION |
1000 | 0 | || (s->session->ext.ticklen == 0 && s->psksession == NULL)) |
1001 | 0 | return EXT_RETURN_NOT_SENT; |
1002 | | |
1003 | 0 | if (s->hello_retry_request == SSL_HRR_PENDING) |
1004 | 0 | handmd = ssl_handshake_md(s); |
1005 | |
|
1006 | 0 | if (s->session->ext.ticklen != 0) { |
1007 | | /* Get the digest associated with the ciphersuite in the session */ |
1008 | 0 | if (s->session->cipher == NULL) { |
1009 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1010 | 0 | return EXT_RETURN_FAIL; |
1011 | 0 | } |
1012 | 0 | mdres = ssl_md(s->ctx, s->session->cipher->algorithm2); |
1013 | 0 | if (mdres == NULL) { |
1014 | | /* |
1015 | | * Don't recognize this cipher so we can't use the session. |
1016 | | * Ignore it |
1017 | | */ |
1018 | 0 | goto dopsksess; |
1019 | 0 | } |
1020 | | |
1021 | 0 | if (s->hello_retry_request == SSL_HRR_PENDING && mdres != handmd) { |
1022 | | /* |
1023 | | * Selected ciphersuite hash does not match the hash for the session |
1024 | | * so we can't use it. |
1025 | | */ |
1026 | 0 | goto dopsksess; |
1027 | 0 | } |
1028 | | |
1029 | | /* |
1030 | | * Technically the C standard just says time() returns a time_t and says |
1031 | | * nothing about the encoding of that type. In practice most |
1032 | | * implementations follow POSIX which holds it as an integral type in |
1033 | | * seconds since epoch. We've already made the assumption that we can do |
1034 | | * this in multiple places in the code, so portability shouldn't be an |
1035 | | * issue. |
1036 | | */ |
1037 | 0 | agesec = (uint32_t)(time(NULL) - s->session->time); |
1038 | | /* |
1039 | | * We calculate the age in seconds but the server may work in ms. Due to |
1040 | | * rounding errors we could overestimate the age by up to 1s. It is |
1041 | | * better to underestimate it. Otherwise, if the RTT is very short, when |
1042 | | * the server calculates the age reported by the client it could be |
1043 | | * bigger than the age calculated on the server - which should never |
1044 | | * happen. |
1045 | | */ |
1046 | 0 | if (agesec > 0) |
1047 | 0 | agesec--; |
1048 | |
|
1049 | 0 | if (s->session->ext.tick_lifetime_hint < agesec) { |
1050 | | /* Ticket is too old. Ignore it. */ |
1051 | 0 | goto dopsksess; |
1052 | 0 | } |
1053 | | |
1054 | | /* |
1055 | | * Calculate age in ms. We're just doing it to nearest second. Should be |
1056 | | * good enough. |
1057 | | */ |
1058 | 0 | agems = agesec * (uint32_t)1000; |
1059 | |
|
1060 | 0 | if (agesec != 0 && agems / (uint32_t)1000 != agesec) { |
1061 | | /* |
1062 | | * Overflow. Shouldn't happen unless this is a *really* old session. |
1063 | | * If so we just ignore it. |
1064 | | */ |
1065 | 0 | goto dopsksess; |
1066 | 0 | } |
1067 | | |
1068 | | /* |
1069 | | * Obfuscate the age. Overflow here is fine, this addition is supposed |
1070 | | * to be mod 2^32. |
1071 | | */ |
1072 | 0 | agems += s->session->ext.tick_age_add; |
1073 | |
|
1074 | 0 | reshashsize = EVP_MD_get_size(mdres); |
1075 | 0 | s->ext.tick_identity++; |
1076 | 0 | dores = 1; |
1077 | 0 | } |
1078 | | |
1079 | 0 | dopsksess: |
1080 | 0 | if (!dores && s->psksession == NULL) |
1081 | 0 | return EXT_RETURN_NOT_SENT; |
1082 | | |
1083 | 0 | if (s->psksession != NULL) { |
1084 | 0 | mdpsk = ssl_md(s->ctx, s->psksession->cipher->algorithm2); |
1085 | 0 | if (mdpsk == NULL) { |
1086 | | /* |
1087 | | * Don't recognize this cipher so we can't use the session. |
1088 | | * If this happens it's an application bug. |
1089 | | */ |
1090 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_BAD_PSK); |
1091 | 0 | return EXT_RETURN_FAIL; |
1092 | 0 | } |
1093 | | |
1094 | 0 | if (s->hello_retry_request == SSL_HRR_PENDING && mdpsk != handmd) { |
1095 | | /* |
1096 | | * Selected ciphersuite hash does not match the hash for the PSK |
1097 | | * session. This is an application bug. |
1098 | | */ |
1099 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_BAD_PSK); |
1100 | 0 | return EXT_RETURN_FAIL; |
1101 | 0 | } |
1102 | | |
1103 | 0 | pskhashsize = EVP_MD_get_size(mdpsk); |
1104 | 0 | } |
1105 | | |
1106 | | /* Create the extension, but skip over the binder for now */ |
1107 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_psk) |
1108 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
1109 | 0 | || !WPACKET_start_sub_packet_u16(pkt)) { |
1110 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1111 | 0 | return EXT_RETURN_FAIL; |
1112 | 0 | } |
1113 | | |
1114 | 0 | if (dores) { |
1115 | 0 | if (!WPACKET_sub_memcpy_u16(pkt, s->session->ext.tick, |
1116 | 0 | s->session->ext.ticklen) |
1117 | 0 | || !WPACKET_put_bytes_u32(pkt, agems)) { |
1118 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1119 | 0 | return EXT_RETURN_FAIL; |
1120 | 0 | } |
1121 | 0 | } |
1122 | | |
1123 | 0 | if (s->psksession != NULL) { |
1124 | 0 | if (!WPACKET_sub_memcpy_u16(pkt, s->psksession_id, |
1125 | 0 | s->psksession_id_len) |
1126 | 0 | || !WPACKET_put_bytes_u32(pkt, 0)) { |
1127 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1128 | 0 | return EXT_RETURN_FAIL; |
1129 | 0 | } |
1130 | 0 | s->ext.tick_identity++; |
1131 | 0 | } |
1132 | | |
1133 | 0 | if (!WPACKET_close(pkt) |
1134 | 0 | || !WPACKET_get_total_written(pkt, &binderoffset) |
1135 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
1136 | 0 | || (dores |
1137 | 0 | && !WPACKET_sub_allocate_bytes_u8(pkt, reshashsize, &resbinder)) |
1138 | 0 | || (s->psksession != NULL |
1139 | 0 | && !WPACKET_sub_allocate_bytes_u8(pkt, pskhashsize, &pskbinder)) |
1140 | 0 | || !WPACKET_close(pkt) |
1141 | 0 | || !WPACKET_close(pkt) |
1142 | 0 | || !WPACKET_get_total_written(pkt, &msglen) |
1143 | | /* |
1144 | | * We need to fill in all the sub-packet lengths now so we can |
1145 | | * calculate the HMAC of the message up to the binders |
1146 | | */ |
1147 | 0 | || !WPACKET_fill_lengths(pkt)) { |
1148 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1149 | 0 | return EXT_RETURN_FAIL; |
1150 | 0 | } |
1151 | | |
1152 | 0 | msgstart = WPACKET_get_curr(pkt) - msglen; |
1153 | |
|
1154 | 0 | if (dores |
1155 | 0 | && tls_psk_do_binder(s, mdres, msgstart, binderoffset, NULL, |
1156 | 0 | resbinder, s->session, 1, 0) != 1) { |
1157 | | /* SSLfatal() already called */ |
1158 | 0 | return EXT_RETURN_FAIL; |
1159 | 0 | } |
1160 | | |
1161 | 0 | if (s->psksession != NULL |
1162 | 0 | && tls_psk_do_binder(s, mdpsk, msgstart, binderoffset, NULL, |
1163 | 0 | pskbinder, s->psksession, 1, 1) != 1) { |
1164 | | /* SSLfatal() already called */ |
1165 | 0 | return EXT_RETURN_FAIL; |
1166 | 0 | } |
1167 | | |
1168 | 0 | return EXT_RETURN_SENT; |
1169 | | #else |
1170 | | return EXT_RETURN_NOT_SENT; |
1171 | | #endif |
1172 | 0 | } |
1173 | | |
1174 | | EXT_RETURN tls_construct_ctos_post_handshake_auth(SSL *s, WPACKET *pkt, |
1175 | | ossl_unused unsigned int context, |
1176 | | ossl_unused X509 *x, |
1177 | | ossl_unused size_t chainidx) |
1178 | 0 | { |
1179 | 0 | #ifndef OPENSSL_NO_TLS1_3 |
1180 | 0 | if (!s->pha_enabled) |
1181 | 0 | return EXT_RETURN_NOT_SENT; |
1182 | | |
1183 | | /* construct extension - 0 length, no contents */ |
1184 | 0 | if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_post_handshake_auth) |
1185 | 0 | || !WPACKET_start_sub_packet_u16(pkt) |
1186 | 0 | || !WPACKET_close(pkt)) { |
1187 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1188 | 0 | return EXT_RETURN_FAIL; |
1189 | 0 | } |
1190 | | |
1191 | 0 | s->post_handshake_auth = SSL_PHA_EXT_SENT; |
1192 | |
|
1193 | 0 | return EXT_RETURN_SENT; |
1194 | | #else |
1195 | | return EXT_RETURN_NOT_SENT; |
1196 | | #endif |
1197 | 0 | } |
1198 | | |
1199 | | |
1200 | | /* |
1201 | | * Parse the server's renegotiation binding and abort if it's not right |
1202 | | */ |
1203 | | int tls_parse_stoc_renegotiate(SSL *s, PACKET *pkt, unsigned int context, |
1204 | | X509 *x, size_t chainidx) |
1205 | 0 | { |
1206 | 0 | size_t expected_len = s->s3.previous_client_finished_len |
1207 | 0 | + s->s3.previous_server_finished_len; |
1208 | 0 | size_t ilen; |
1209 | 0 | const unsigned char *data; |
1210 | | |
1211 | | /* Check for logic errors */ |
1212 | 0 | if (!ossl_assert(expected_len == 0 |
1213 | 0 | || s->s3.previous_client_finished_len != 0) |
1214 | 0 | || !ossl_assert(expected_len == 0 |
1215 | 0 | || s->s3.previous_server_finished_len != 0)) { |
1216 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1217 | 0 | return 0; |
1218 | 0 | } |
1219 | | |
1220 | | /* Parse the length byte */ |
1221 | 0 | if (!PACKET_get_1_len(pkt, &ilen)) { |
1222 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_RENEGOTIATION_ENCODING_ERR); |
1223 | 0 | return 0; |
1224 | 0 | } |
1225 | | |
1226 | | /* Consistency check */ |
1227 | 0 | if (PACKET_remaining(pkt) != ilen) { |
1228 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_RENEGOTIATION_ENCODING_ERR); |
1229 | 0 | return 0; |
1230 | 0 | } |
1231 | | |
1232 | | /* Check that the extension matches */ |
1233 | 0 | if (ilen != expected_len) { |
1234 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_RENEGOTIATION_MISMATCH); |
1235 | 0 | return 0; |
1236 | 0 | } |
1237 | | |
1238 | 0 | if (!PACKET_get_bytes(pkt, &data, s->s3.previous_client_finished_len) |
1239 | 0 | || memcmp(data, s->s3.previous_client_finished, |
1240 | 0 | s->s3.previous_client_finished_len) != 0) { |
1241 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_RENEGOTIATION_MISMATCH); |
1242 | 0 | return 0; |
1243 | 0 | } |
1244 | | |
1245 | 0 | if (!PACKET_get_bytes(pkt, &data, s->s3.previous_server_finished_len) |
1246 | 0 | || memcmp(data, s->s3.previous_server_finished, |
1247 | 0 | s->s3.previous_server_finished_len) != 0) { |
1248 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_RENEGOTIATION_MISMATCH); |
1249 | 0 | return 0; |
1250 | 0 | } |
1251 | 0 | s->s3.send_connection_binding = 1; |
1252 | |
|
1253 | 0 | return 1; |
1254 | 0 | } |
1255 | | |
1256 | | /* Parse the server's max fragment len extension packet */ |
1257 | | int tls_parse_stoc_maxfragmentlen(SSL *s, PACKET *pkt, unsigned int context, |
1258 | | X509 *x, size_t chainidx) |
1259 | 0 | { |
1260 | 0 | unsigned int value; |
1261 | |
|
1262 | 0 | if (PACKET_remaining(pkt) != 1 || !PACKET_get_1(pkt, &value)) { |
1263 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1264 | 0 | return 0; |
1265 | 0 | } |
1266 | | |
1267 | | /* |value| should contains a valid max-fragment-length code. */ |
1268 | 0 | if (!IS_MAX_FRAGMENT_LENGTH_EXT_VALID(value)) { |
1269 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, |
1270 | 0 | SSL_R_SSL3_EXT_INVALID_MAX_FRAGMENT_LENGTH); |
1271 | 0 | return 0; |
1272 | 0 | } |
1273 | | |
1274 | | /* Must be the same value as client-configured one who was sent to server */ |
1275 | | /*- |
1276 | | * RFC 6066: if a client receives a maximum fragment length negotiation |
1277 | | * response that differs from the length it requested, ... |
1278 | | * It must abort with SSL_AD_ILLEGAL_PARAMETER alert |
1279 | | */ |
1280 | 0 | if (value != s->ext.max_fragment_len_mode) { |
1281 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, |
1282 | 0 | SSL_R_SSL3_EXT_INVALID_MAX_FRAGMENT_LENGTH); |
1283 | 0 | return 0; |
1284 | 0 | } |
1285 | | |
1286 | | /* |
1287 | | * Maximum Fragment Length Negotiation succeeded. |
1288 | | * The negotiated Maximum Fragment Length is binding now. |
1289 | | */ |
1290 | 0 | s->session->ext.max_fragment_len_mode = value; |
1291 | |
|
1292 | 0 | return 1; |
1293 | 0 | } |
1294 | | |
1295 | | int tls_parse_stoc_server_name(SSL *s, PACKET *pkt, unsigned int context, |
1296 | | X509 *x, size_t chainidx) |
1297 | 0 | { |
1298 | 0 | if (s->ext.hostname == NULL) { |
1299 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1300 | 0 | return 0; |
1301 | 0 | } |
1302 | | |
1303 | 0 | if (PACKET_remaining(pkt) > 0) { |
1304 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1305 | 0 | return 0; |
1306 | 0 | } |
1307 | | |
1308 | 0 | if (!s->hit) { |
1309 | 0 | if (s->session->ext.hostname != NULL) { |
1310 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1311 | 0 | return 0; |
1312 | 0 | } |
1313 | 0 | s->session->ext.hostname = OPENSSL_strdup(s->ext.hostname); |
1314 | 0 | if (s->session->ext.hostname == NULL) { |
1315 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1316 | 0 | return 0; |
1317 | 0 | } |
1318 | 0 | } |
1319 | | |
1320 | 0 | return 1; |
1321 | 0 | } |
1322 | | |
1323 | | int tls_parse_stoc_ec_pt_formats(SSL *s, PACKET *pkt, unsigned int context, |
1324 | | X509 *x, size_t chainidx) |
1325 | 0 | { |
1326 | 0 | size_t ecpointformats_len; |
1327 | 0 | PACKET ecptformatlist; |
1328 | |
|
1329 | 0 | if (!PACKET_as_length_prefixed_1(pkt, &ecptformatlist)) { |
1330 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1331 | 0 | return 0; |
1332 | 0 | } |
1333 | 0 | if (!s->hit) { |
1334 | 0 | ecpointformats_len = PACKET_remaining(&ecptformatlist); |
1335 | 0 | if (ecpointformats_len == 0) { |
1336 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_LENGTH); |
1337 | 0 | return 0; |
1338 | 0 | } |
1339 | | |
1340 | 0 | s->ext.peer_ecpointformats_len = 0; |
1341 | 0 | OPENSSL_free(s->ext.peer_ecpointformats); |
1342 | 0 | s->ext.peer_ecpointformats = OPENSSL_malloc(ecpointformats_len); |
1343 | 0 | if (s->ext.peer_ecpointformats == NULL) { |
1344 | 0 | s->ext.peer_ecpointformats_len = 0; |
1345 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1346 | 0 | return 0; |
1347 | 0 | } |
1348 | | |
1349 | 0 | s->ext.peer_ecpointformats_len = ecpointformats_len; |
1350 | |
|
1351 | 0 | if (!PACKET_copy_bytes(&ecptformatlist, |
1352 | 0 | s->ext.peer_ecpointformats, |
1353 | 0 | ecpointformats_len)) { |
1354 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1355 | 0 | return 0; |
1356 | 0 | } |
1357 | 0 | } |
1358 | | |
1359 | 0 | return 1; |
1360 | 0 | } |
1361 | | |
1362 | | int tls_parse_stoc_session_ticket(SSL *s, PACKET *pkt, unsigned int context, |
1363 | | X509 *x, size_t chainidx) |
1364 | 0 | { |
1365 | 0 | if (s->ext.session_ticket_cb != NULL && |
1366 | 0 | !s->ext.session_ticket_cb(s, PACKET_data(pkt), |
1367 | 0 | PACKET_remaining(pkt), |
1368 | 0 | s->ext.session_ticket_cb_arg)) { |
1369 | 0 | SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_BAD_EXTENSION); |
1370 | 0 | return 0; |
1371 | 0 | } |
1372 | | |
1373 | 0 | if (!tls_use_ticket(s)) { |
1374 | 0 | SSLfatal(s, SSL_AD_UNSUPPORTED_EXTENSION, SSL_R_BAD_EXTENSION); |
1375 | 0 | return 0; |
1376 | 0 | } |
1377 | 0 | if (PACKET_remaining(pkt) > 0) { |
1378 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1379 | 0 | return 0; |
1380 | 0 | } |
1381 | | |
1382 | 0 | s->ext.ticket_expected = 1; |
1383 | |
|
1384 | 0 | return 1; |
1385 | 0 | } |
1386 | | |
1387 | | #ifndef OPENSSL_NO_OCSP |
1388 | | int tls_parse_stoc_status_request(SSL *s, PACKET *pkt, unsigned int context, |
1389 | | X509 *x, size_t chainidx) |
1390 | 0 | { |
1391 | 0 | if (context == SSL_EXT_TLS1_3_CERTIFICATE_REQUEST) { |
1392 | | /* We ignore this if the server sends a CertificateRequest */ |
1393 | 0 | return 1; |
1394 | 0 | } |
1395 | | |
1396 | | /* |
1397 | | * MUST only be sent if we've requested a status |
1398 | | * request message. In TLS <= 1.2 it must also be empty. |
1399 | | */ |
1400 | 0 | if (s->ext.status_type != TLSEXT_STATUSTYPE_ocsp) { |
1401 | 0 | SSLfatal(s, SSL_AD_UNSUPPORTED_EXTENSION, SSL_R_BAD_EXTENSION); |
1402 | 0 | return 0; |
1403 | 0 | } |
1404 | 0 | if (!SSL_IS_TLS13(s) && PACKET_remaining(pkt) > 0) { |
1405 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1406 | 0 | return 0; |
1407 | 0 | } |
1408 | | |
1409 | 0 | if (SSL_IS_TLS13(s)) { |
1410 | | /* We only know how to handle this if it's for the first Certificate in |
1411 | | * the chain. We ignore any other responses. |
1412 | | */ |
1413 | 0 | if (chainidx != 0) |
1414 | 0 | return 1; |
1415 | | |
1416 | | /* SSLfatal() already called */ |
1417 | 0 | return tls_process_cert_status_body(s, pkt); |
1418 | 0 | } |
1419 | | |
1420 | | /* Set flag to expect CertificateStatus message */ |
1421 | 0 | s->ext.status_expected = 1; |
1422 | |
|
1423 | 0 | return 1; |
1424 | 0 | } |
1425 | | #endif |
1426 | | |
1427 | | |
1428 | | #ifndef OPENSSL_NO_CT |
1429 | | int tls_parse_stoc_sct(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1430 | | size_t chainidx) |
1431 | 0 | { |
1432 | 0 | if (context == SSL_EXT_TLS1_3_CERTIFICATE_REQUEST) { |
1433 | | /* We ignore this if the server sends it in a CertificateRequest */ |
1434 | 0 | return 1; |
1435 | 0 | } |
1436 | | |
1437 | | /* |
1438 | | * Only take it if we asked for it - i.e if there is no CT validation |
1439 | | * callback set, then a custom extension MAY be processing it, so we |
1440 | | * need to let control continue to flow to that. |
1441 | | */ |
1442 | 0 | if (s->ct_validation_callback != NULL) { |
1443 | 0 | size_t size = PACKET_remaining(pkt); |
1444 | | |
1445 | | /* Simply copy it off for later processing */ |
1446 | 0 | OPENSSL_free(s->ext.scts); |
1447 | 0 | s->ext.scts = NULL; |
1448 | |
|
1449 | 0 | s->ext.scts_len = (uint16_t)size; |
1450 | 0 | if (size > 0) { |
1451 | 0 | s->ext.scts = OPENSSL_malloc(size); |
1452 | 0 | if (s->ext.scts == NULL) { |
1453 | 0 | s->ext.scts_len = 0; |
1454 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE); |
1455 | 0 | return 0; |
1456 | 0 | } |
1457 | 0 | if (!PACKET_copy_bytes(pkt, s->ext.scts, size)) { |
1458 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1459 | 0 | return 0; |
1460 | 0 | } |
1461 | 0 | } |
1462 | 0 | } else { |
1463 | 0 | ENDPOINT role = (context & SSL_EXT_TLS1_2_SERVER_HELLO) != 0 |
1464 | 0 | ? ENDPOINT_CLIENT : ENDPOINT_BOTH; |
1465 | | |
1466 | | /* |
1467 | | * If we didn't ask for it then there must be a custom extension, |
1468 | | * otherwise this is unsolicited. |
1469 | | */ |
1470 | 0 | if (custom_ext_find(&s->cert->custext, role, |
1471 | 0 | TLSEXT_TYPE_signed_certificate_timestamp, |
1472 | 0 | NULL) == NULL) { |
1473 | 0 | SSLfatal(s, TLS1_AD_UNSUPPORTED_EXTENSION, SSL_R_BAD_EXTENSION); |
1474 | 0 | return 0; |
1475 | 0 | } |
1476 | | |
1477 | 0 | if (!custom_ext_parse(s, context, |
1478 | 0 | TLSEXT_TYPE_signed_certificate_timestamp, |
1479 | 0 | PACKET_data(pkt), PACKET_remaining(pkt), |
1480 | 0 | x, chainidx)) { |
1481 | | /* SSLfatal already called */ |
1482 | 0 | return 0; |
1483 | 0 | } |
1484 | 0 | } |
1485 | | |
1486 | 0 | return 1; |
1487 | 0 | } |
1488 | | #endif |
1489 | | |
1490 | | |
1491 | | #ifndef OPENSSL_NO_NEXTPROTONEG |
1492 | | /* |
1493 | | * ssl_next_proto_validate validates a Next Protocol Negotiation block. No |
1494 | | * elements of zero length are allowed and the set of elements must exactly |
1495 | | * fill the length of the block. Returns 1 on success or 0 on failure. |
1496 | | */ |
1497 | | static int ssl_next_proto_validate(SSL *s, PACKET *pkt) |
1498 | 0 | { |
1499 | 0 | PACKET tmp_protocol; |
1500 | |
|
1501 | 0 | while (PACKET_remaining(pkt)) { |
1502 | 0 | if (!PACKET_get_length_prefixed_1(pkt, &tmp_protocol) |
1503 | 0 | || PACKET_remaining(&tmp_protocol) == 0) { |
1504 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1505 | 0 | return 0; |
1506 | 0 | } |
1507 | 0 | } |
1508 | | |
1509 | 0 | return 1; |
1510 | 0 | } |
1511 | | |
1512 | | int tls_parse_stoc_npn(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1513 | | size_t chainidx) |
1514 | 0 | { |
1515 | 0 | unsigned char *selected; |
1516 | 0 | unsigned char selected_len; |
1517 | 0 | PACKET tmppkt; |
1518 | | |
1519 | | /* Check if we are in a renegotiation. If so ignore this extension */ |
1520 | 0 | if (!SSL_IS_FIRST_HANDSHAKE(s)) |
1521 | 0 | return 1; |
1522 | | |
1523 | | /* We must have requested it. */ |
1524 | 0 | if (s->ctx->ext.npn_select_cb == NULL) { |
1525 | 0 | SSLfatal(s, SSL_AD_UNSUPPORTED_EXTENSION, SSL_R_BAD_EXTENSION); |
1526 | 0 | return 0; |
1527 | 0 | } |
1528 | | |
1529 | | /* The data must be valid */ |
1530 | 0 | tmppkt = *pkt; |
1531 | 0 | if (!ssl_next_proto_validate(s, &tmppkt)) { |
1532 | | /* SSLfatal() already called */ |
1533 | 0 | return 0; |
1534 | 0 | } |
1535 | 0 | if (s->ctx->ext.npn_select_cb(s, &selected, &selected_len, |
1536 | 0 | PACKET_data(pkt), |
1537 | 0 | PACKET_remaining(pkt), |
1538 | 0 | s->ctx->ext.npn_select_cb_arg) != |
1539 | 0 | SSL_TLSEXT_ERR_OK) { |
1540 | 0 | SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_R_BAD_EXTENSION); |
1541 | 0 | return 0; |
1542 | 0 | } |
1543 | | |
1544 | | /* |
1545 | | * Could be non-NULL if server has sent multiple NPN extensions in |
1546 | | * a single Serverhello |
1547 | | */ |
1548 | 0 | OPENSSL_free(s->ext.npn); |
1549 | 0 | s->ext.npn = OPENSSL_malloc(selected_len); |
1550 | 0 | if (s->ext.npn == NULL) { |
1551 | 0 | s->ext.npn_len = 0; |
1552 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1553 | 0 | return 0; |
1554 | 0 | } |
1555 | | |
1556 | 0 | memcpy(s->ext.npn, selected, selected_len); |
1557 | 0 | s->ext.npn_len = selected_len; |
1558 | 0 | s->s3.npn_seen = 1; |
1559 | |
|
1560 | 0 | return 1; |
1561 | 0 | } |
1562 | | #endif |
1563 | | |
1564 | | int tls_parse_stoc_alpn(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1565 | | size_t chainidx) |
1566 | 0 | { |
1567 | 0 | size_t len; |
1568 | | |
1569 | | /* We must have requested it. */ |
1570 | 0 | if (!s->s3.alpn_sent) { |
1571 | 0 | SSLfatal(s, SSL_AD_UNSUPPORTED_EXTENSION, SSL_R_BAD_EXTENSION); |
1572 | 0 | return 0; |
1573 | 0 | } |
1574 | | /*- |
1575 | | * The extension data consists of: |
1576 | | * uint16 list_length |
1577 | | * uint8 proto_length; |
1578 | | * uint8 proto[proto_length]; |
1579 | | */ |
1580 | 0 | if (!PACKET_get_net_2_len(pkt, &len) |
1581 | 0 | || PACKET_remaining(pkt) != len || !PACKET_get_1_len(pkt, &len) |
1582 | 0 | || PACKET_remaining(pkt) != len) { |
1583 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1584 | 0 | return 0; |
1585 | 0 | } |
1586 | 0 | OPENSSL_free(s->s3.alpn_selected); |
1587 | 0 | s->s3.alpn_selected = OPENSSL_malloc(len); |
1588 | 0 | if (s->s3.alpn_selected == NULL) { |
1589 | 0 | s->s3.alpn_selected_len = 0; |
1590 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1591 | 0 | return 0; |
1592 | 0 | } |
1593 | 0 | if (!PACKET_copy_bytes(pkt, s->s3.alpn_selected, len)) { |
1594 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1595 | 0 | return 0; |
1596 | 0 | } |
1597 | 0 | s->s3.alpn_selected_len = len; |
1598 | |
|
1599 | 0 | if (s->session->ext.alpn_selected == NULL |
1600 | 0 | || s->session->ext.alpn_selected_len != len |
1601 | 0 | || memcmp(s->session->ext.alpn_selected, s->s3.alpn_selected, len) |
1602 | 0 | != 0) { |
1603 | | /* ALPN not consistent with the old session so cannot use early_data */ |
1604 | 0 | s->ext.early_data_ok = 0; |
1605 | 0 | } |
1606 | 0 | if (!s->hit) { |
1607 | | /* |
1608 | | * This is a new session and so alpn_selected should have been |
1609 | | * initialised to NULL. We should update it with the selected ALPN. |
1610 | | */ |
1611 | 0 | if (!ossl_assert(s->session->ext.alpn_selected == NULL)) { |
1612 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1613 | 0 | return 0; |
1614 | 0 | } |
1615 | 0 | s->session->ext.alpn_selected = |
1616 | 0 | OPENSSL_memdup(s->s3.alpn_selected, s->s3.alpn_selected_len); |
1617 | 0 | if (s->session->ext.alpn_selected == NULL) { |
1618 | 0 | s->session->ext.alpn_selected_len = 0; |
1619 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1620 | 0 | return 0; |
1621 | 0 | } |
1622 | 0 | s->session->ext.alpn_selected_len = s->s3.alpn_selected_len; |
1623 | 0 | } |
1624 | | |
1625 | 0 | return 1; |
1626 | 0 | } |
1627 | | |
1628 | | #ifndef OPENSSL_NO_SRTP |
1629 | | int tls_parse_stoc_use_srtp(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1630 | | size_t chainidx) |
1631 | 0 | { |
1632 | 0 | unsigned int id, ct, mki; |
1633 | 0 | int i; |
1634 | 0 | STACK_OF(SRTP_PROTECTION_PROFILE) *clnt; |
1635 | 0 | SRTP_PROTECTION_PROFILE *prof; |
1636 | |
|
1637 | 0 | if (!PACKET_get_net_2(pkt, &ct) || ct != 2 |
1638 | 0 | || !PACKET_get_net_2(pkt, &id) |
1639 | 0 | || !PACKET_get_1(pkt, &mki) |
1640 | 0 | || PACKET_remaining(pkt) != 0) { |
1641 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, |
1642 | 0 | SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST); |
1643 | 0 | return 0; |
1644 | 0 | } |
1645 | | |
1646 | 0 | if (mki != 0) { |
1647 | | /* Must be no MKI, since we never offer one */ |
1648 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_SRTP_MKI_VALUE); |
1649 | 0 | return 0; |
1650 | 0 | } |
1651 | | |
1652 | | /* Throw an error if the server gave us an unsolicited extension */ |
1653 | 0 | clnt = SSL_get_srtp_profiles(s); |
1654 | 0 | if (clnt == NULL) { |
1655 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_NO_SRTP_PROFILES); |
1656 | 0 | return 0; |
1657 | 0 | } |
1658 | | |
1659 | | /* |
1660 | | * Check to see if the server gave us something we support (and |
1661 | | * presumably offered) |
1662 | | */ |
1663 | 0 | for (i = 0; i < sk_SRTP_PROTECTION_PROFILE_num(clnt); i++) { |
1664 | 0 | prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i); |
1665 | |
|
1666 | 0 | if (prof->id == id) { |
1667 | 0 | s->srtp_profile = prof; |
1668 | 0 | return 1; |
1669 | 0 | } |
1670 | 0 | } |
1671 | | |
1672 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, |
1673 | 0 | SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST); |
1674 | 0 | return 0; |
1675 | 0 | } |
1676 | | #endif |
1677 | | |
1678 | | int tls_parse_stoc_etm(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1679 | | size_t chainidx) |
1680 | 0 | { |
1681 | | /* Ignore if inappropriate ciphersuite */ |
1682 | 0 | if (!(s->options & SSL_OP_NO_ENCRYPT_THEN_MAC) |
1683 | 0 | && s->s3.tmp.new_cipher->algorithm_mac != SSL_AEAD |
1684 | 0 | && s->s3.tmp.new_cipher->algorithm_enc != SSL_RC4 |
1685 | 0 | && s->s3.tmp.new_cipher->algorithm_enc != SSL_eGOST2814789CNT |
1686 | 0 | && s->s3.tmp.new_cipher->algorithm_enc != SSL_eGOST2814789CNT12 |
1687 | 0 | && s->s3.tmp.new_cipher->algorithm_enc != SSL_MAGMA |
1688 | 0 | && s->s3.tmp.new_cipher->algorithm_enc != SSL_KUZNYECHIK) |
1689 | 0 | s->ext.use_etm = 1; |
1690 | |
|
1691 | 0 | return 1; |
1692 | 0 | } |
1693 | | |
1694 | | int tls_parse_stoc_ems(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1695 | | size_t chainidx) |
1696 | 0 | { |
1697 | 0 | if (s->options & SSL_OP_NO_EXTENDED_MASTER_SECRET) |
1698 | 0 | return 1; |
1699 | 0 | s->s3.flags |= TLS1_FLAGS_RECEIVED_EXTMS; |
1700 | 0 | if (!s->hit) |
1701 | 0 | s->session->flags |= SSL_SESS_FLAG_EXTMS; |
1702 | |
|
1703 | 0 | return 1; |
1704 | 0 | } |
1705 | | |
1706 | | int tls_parse_stoc_supported_versions(SSL *s, PACKET *pkt, unsigned int context, |
1707 | | X509 *x, size_t chainidx) |
1708 | 0 | { |
1709 | 0 | unsigned int version; |
1710 | |
|
1711 | 0 | if (!PACKET_get_net_2(pkt, &version) |
1712 | 0 | || PACKET_remaining(pkt) != 0) { |
1713 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH); |
1714 | 0 | return 0; |
1715 | 0 | } |
1716 | | |
1717 | | /* |
1718 | | * The only protocol version we support which is valid in this extension in |
1719 | | * a ServerHello is TLSv1.3 therefore we shouldn't be getting anything else. |
1720 | | */ |
1721 | 0 | if (version != TLS1_3_VERSION) { |
1722 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, |
1723 | 0 | SSL_R_BAD_PROTOCOL_VERSION_NUMBER); |
1724 | 0 | return 0; |
1725 | 0 | } |
1726 | | |
1727 | | /* We ignore this extension for HRRs except to sanity check it */ |
1728 | 0 | if (context == SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST) |
1729 | 0 | return 1; |
1730 | | |
1731 | | /* We just set it here. We validate it in ssl_choose_client_version */ |
1732 | 0 | s->version = version; |
1733 | |
|
1734 | 0 | return 1; |
1735 | 0 | } |
1736 | | |
1737 | | int tls_parse_stoc_key_share(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1738 | | size_t chainidx) |
1739 | 0 | { |
1740 | 0 | #ifndef OPENSSL_NO_TLS1_3 |
1741 | 0 | unsigned int group_id; |
1742 | 0 | PACKET encoded_pt; |
1743 | 0 | EVP_PKEY *ckey = s->s3.tmp.pkey, *skey = NULL; |
1744 | 0 | const TLS_GROUP_INFO *ginf = NULL; |
1745 | | |
1746 | | /* Sanity check */ |
1747 | 0 | if (ckey == NULL || s->s3.peer_tmp != NULL) { |
1748 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1749 | 0 | return 0; |
1750 | 0 | } |
1751 | | |
1752 | 0 | if (!PACKET_get_net_2(pkt, &group_id)) { |
1753 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH); |
1754 | 0 | return 0; |
1755 | 0 | } |
1756 | | |
1757 | 0 | if ((context & SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST) != 0) { |
1758 | 0 | const uint16_t *pgroups = NULL; |
1759 | 0 | size_t i, num_groups; |
1760 | |
|
1761 | 0 | if (PACKET_remaining(pkt) != 0) { |
1762 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH); |
1763 | 0 | return 0; |
1764 | 0 | } |
1765 | | |
1766 | | /* |
1767 | | * It is an error if the HelloRetryRequest wants a key_share that we |
1768 | | * already sent in the first ClientHello |
1769 | | */ |
1770 | 0 | if (group_id == s->s3.group_id) { |
1771 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_KEY_SHARE); |
1772 | 0 | return 0; |
1773 | 0 | } |
1774 | | |
1775 | | /* Validate the selected group is one we support */ |
1776 | 0 | tls1_get_supported_groups(s, &pgroups, &num_groups); |
1777 | 0 | for (i = 0; i < num_groups; i++) { |
1778 | 0 | if (group_id == pgroups[i]) |
1779 | 0 | break; |
1780 | 0 | } |
1781 | 0 | if (i >= num_groups |
1782 | 0 | || !tls_group_allowed(s, group_id, SSL_SECOP_CURVE_SUPPORTED) |
1783 | 0 | || !tls_valid_group(s, group_id, TLS1_3_VERSION, TLS1_3_VERSION, |
1784 | 0 | 0, NULL)) { |
1785 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_KEY_SHARE); |
1786 | 0 | return 0; |
1787 | 0 | } |
1788 | | |
1789 | 0 | s->s3.group_id = group_id; |
1790 | 0 | EVP_PKEY_free(s->s3.tmp.pkey); |
1791 | 0 | s->s3.tmp.pkey = NULL; |
1792 | 0 | return 1; |
1793 | 0 | } |
1794 | | |
1795 | 0 | if (group_id != s->s3.group_id) { |
1796 | | /* |
1797 | | * This isn't for the group that we sent in the original |
1798 | | * key_share! |
1799 | | */ |
1800 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_KEY_SHARE); |
1801 | 0 | return 0; |
1802 | 0 | } |
1803 | | /* Retain this group in the SSL_SESSION */ |
1804 | 0 | if (!s->hit) { |
1805 | 0 | s->session->kex_group = group_id; |
1806 | 0 | } else if (group_id != s->session->kex_group) { |
1807 | | /* |
1808 | | * If this is a resumption but changed what group was used, we need |
1809 | | * to record the new group in the session, but the session is not |
1810 | | * a new session and could be in use by other threads. So, make |
1811 | | * a copy of the session to record the new information so that it's |
1812 | | * useful for any sessions resumed from tickets issued on this |
1813 | | * connection. |
1814 | | */ |
1815 | 0 | SSL_SESSION *new_sess; |
1816 | |
|
1817 | 0 | if ((new_sess = ssl_session_dup(s->session, 0)) == NULL) { |
1818 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_MALLOC_FAILURE); |
1819 | 0 | return 0; |
1820 | 0 | } |
1821 | 0 | SSL_SESSION_free(s->session); |
1822 | 0 | s->session = new_sess; |
1823 | 0 | s->session->kex_group = group_id; |
1824 | 0 | } |
1825 | | |
1826 | 0 | if ((ginf = tls1_group_id_lookup(s->ctx, group_id)) == NULL) { |
1827 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_KEY_SHARE); |
1828 | 0 | return 0; |
1829 | 0 | } |
1830 | | |
1831 | 0 | if (!PACKET_as_length_prefixed_2(pkt, &encoded_pt) |
1832 | 0 | || PACKET_remaining(&encoded_pt) == 0) { |
1833 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH); |
1834 | 0 | return 0; |
1835 | 0 | } |
1836 | | |
1837 | 0 | if (!ginf->is_kem) { |
1838 | | /* Regular KEX */ |
1839 | 0 | skey = EVP_PKEY_new(); |
1840 | 0 | if (skey == NULL || EVP_PKEY_copy_parameters(skey, ckey) <= 0) { |
1841 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_R_COPY_PARAMETERS_FAILED); |
1842 | 0 | EVP_PKEY_free(skey); |
1843 | 0 | return 0; |
1844 | 0 | } |
1845 | | |
1846 | 0 | if (tls13_set_encoded_pub_key(skey, PACKET_data(&encoded_pt), |
1847 | 0 | PACKET_remaining(&encoded_pt)) <= 0) { |
1848 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_ECPOINT); |
1849 | 0 | EVP_PKEY_free(skey); |
1850 | 0 | return 0; |
1851 | 0 | } |
1852 | | |
1853 | 0 | if (ssl_derive(s, ckey, skey, 1) == 0) { |
1854 | | /* SSLfatal() already called */ |
1855 | 0 | EVP_PKEY_free(skey); |
1856 | 0 | return 0; |
1857 | 0 | } |
1858 | 0 | s->s3.peer_tmp = skey; |
1859 | 0 | } else { |
1860 | | /* KEM Mode */ |
1861 | 0 | const unsigned char *ct = PACKET_data(&encoded_pt); |
1862 | 0 | size_t ctlen = PACKET_remaining(&encoded_pt); |
1863 | |
|
1864 | 0 | if (ssl_decapsulate(s, ckey, ct, ctlen, 1) == 0) { |
1865 | | /* SSLfatal() already called */ |
1866 | 0 | return 0; |
1867 | 0 | } |
1868 | 0 | } |
1869 | 0 | s->s3.did_kex = 1; |
1870 | 0 | #endif |
1871 | |
|
1872 | 0 | return 1; |
1873 | 0 | } |
1874 | | |
1875 | | int tls_parse_stoc_cookie(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1876 | | size_t chainidx) |
1877 | 0 | { |
1878 | 0 | PACKET cookie; |
1879 | |
|
1880 | 0 | if (!PACKET_as_length_prefixed_2(pkt, &cookie) |
1881 | 0 | || !PACKET_memdup(&cookie, &s->ext.tls13_cookie, |
1882 | 0 | &s->ext.tls13_cookie_len)) { |
1883 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH); |
1884 | 0 | return 0; |
1885 | 0 | } |
1886 | | |
1887 | 0 | return 1; |
1888 | 0 | } |
1889 | | |
1890 | | int tls_parse_stoc_early_data(SSL *s, PACKET *pkt, unsigned int context, |
1891 | | X509 *x, size_t chainidx) |
1892 | 0 | { |
1893 | 0 | if (context == SSL_EXT_TLS1_3_NEW_SESSION_TICKET) { |
1894 | 0 | unsigned long max_early_data; |
1895 | |
|
1896 | 0 | if (!PACKET_get_net_4(pkt, &max_early_data) |
1897 | 0 | || PACKET_remaining(pkt) != 0) { |
1898 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_INVALID_MAX_EARLY_DATA); |
1899 | 0 | return 0; |
1900 | 0 | } |
1901 | | |
1902 | 0 | s->session->ext.max_early_data = max_early_data; |
1903 | |
|
1904 | 0 | return 1; |
1905 | 0 | } |
1906 | | |
1907 | 0 | if (PACKET_remaining(pkt) != 0) { |
1908 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_BAD_EXTENSION); |
1909 | 0 | return 0; |
1910 | 0 | } |
1911 | | |
1912 | 0 | if (!s->ext.early_data_ok |
1913 | 0 | || !s->hit) { |
1914 | | /* |
1915 | | * If we get here then we didn't send early data, or we didn't resume |
1916 | | * using the first identity, or the SNI/ALPN is not consistent so the |
1917 | | * server should not be accepting it. |
1918 | | */ |
1919 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_EXTENSION); |
1920 | 0 | return 0; |
1921 | 0 | } |
1922 | | |
1923 | 0 | s->ext.early_data = SSL_EARLY_DATA_ACCEPTED; |
1924 | |
|
1925 | 0 | return 1; |
1926 | 0 | } |
1927 | | |
1928 | | int tls_parse_stoc_psk(SSL *s, PACKET *pkt, unsigned int context, X509 *x, |
1929 | | size_t chainidx) |
1930 | 0 | { |
1931 | 0 | #ifndef OPENSSL_NO_TLS1_3 |
1932 | 0 | unsigned int identity; |
1933 | |
|
1934 | 0 | if (!PACKET_get_net_2(pkt, &identity) || PACKET_remaining(pkt) != 0) { |
1935 | 0 | SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_R_LENGTH_MISMATCH); |
1936 | 0 | return 0; |
1937 | 0 | } |
1938 | | |
1939 | 0 | if (identity >= (unsigned int)s->ext.tick_identity) { |
1940 | 0 | SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_R_BAD_PSK_IDENTITY); |
1941 | 0 | return 0; |
1942 | 0 | } |
1943 | | |
1944 | | /* |
1945 | | * Session resumption tickets are always sent before PSK tickets. If the |
1946 | | * ticket index is 0 then it must be for a session resumption ticket if we |
1947 | | * sent two tickets, or if we didn't send a PSK ticket. |
1948 | | */ |
1949 | 0 | if (identity == 0 && (s->psksession == NULL || s->ext.tick_identity == 2)) { |
1950 | 0 | s->hit = 1; |
1951 | 0 | SSL_SESSION_free(s->psksession); |
1952 | 0 | s->psksession = NULL; |
1953 | 0 | return 1; |
1954 | 0 | } |
1955 | | |
1956 | 0 | if (s->psksession == NULL) { |
1957 | | /* Should never happen */ |
1958 | 0 | SSLfatal(s, SSL_AD_INTERNAL_ERROR, ERR_R_INTERNAL_ERROR); |
1959 | 0 | return 0; |
1960 | 0 | } |
1961 | | |
1962 | | /* |
1963 | | * If we used the external PSK for sending early_data then s->early_secret |
1964 | | * is already set up, so don't overwrite it. Otherwise we copy the |
1965 | | * early_secret across that we generated earlier. |
1966 | | */ |
1967 | 0 | if ((s->early_data_state != SSL_EARLY_DATA_WRITE_RETRY |
1968 | 0 | && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING) |
1969 | 0 | || s->session->ext.max_early_data > 0 |
1970 | 0 | || s->psksession->ext.max_early_data == 0) |
1971 | 0 | memcpy(s->early_secret, s->psksession->early_secret, EVP_MAX_MD_SIZE); |
1972 | |
|
1973 | 0 | SSL_SESSION_free(s->session); |
1974 | 0 | s->session = s->psksession; |
1975 | 0 | s->psksession = NULL; |
1976 | 0 | s->hit = 1; |
1977 | | /* Early data is only allowed if we used the first ticket */ |
1978 | 0 | if (identity != 0) |
1979 | 0 | s->ext.early_data_ok = 0; |
1980 | 0 | #endif |
1981 | |
|
1982 | 0 | return 1; |
1983 | 0 | } |