DRBG: make locking api truly private
[openssl.git] / ssl / statem / extensions.c
1 /*
2  * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (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 <string.h>
11 #include "internal/nelem.h"
12 #include "internal/cryptlib.h"
13 #include "../ssl_locl.h"
14 #include "statem_locl.h"
15 #include "internal/cryptlib.h"
16
17 static int final_renegotiate(SSL *s, unsigned int context, int sent);
18 static int init_server_name(SSL *s, unsigned int context);
19 static int final_server_name(SSL *s, unsigned int context, int sent);
20 #ifndef OPENSSL_NO_EC
21 static int final_ec_pt_formats(SSL *s, unsigned int context, int sent);
22 #endif
23 static int init_session_ticket(SSL *s, unsigned int context);
24 #ifndef OPENSSL_NO_OCSP
25 static int init_status_request(SSL *s, unsigned int context);
26 #endif
27 #ifndef OPENSSL_NO_NEXTPROTONEG
28 static int init_npn(SSL *s, unsigned int context);
29 #endif
30 static int init_alpn(SSL *s, unsigned int context);
31 static int final_alpn(SSL *s, unsigned int context, int sent);
32 static int init_sig_algs_cert(SSL *s, unsigned int context);
33 static int init_sig_algs(SSL *s, unsigned int context);
34 static int init_certificate_authorities(SSL *s, unsigned int context);
35 static EXT_RETURN tls_construct_certificate_authorities(SSL *s, WPACKET *pkt,
36                                                         unsigned int context,
37                                                         X509 *x,
38                                                         size_t chainidx);
39 static int tls_parse_certificate_authorities(SSL *s, PACKET *pkt,
40                                              unsigned int context, X509 *x,
41                                              size_t chainidx);
42 #ifndef OPENSSL_NO_SRP
43 static int init_srp(SSL *s, unsigned int context);
44 #endif
45 static int init_etm(SSL *s, unsigned int context);
46 static int init_ems(SSL *s, unsigned int context);
47 static int final_ems(SSL *s, unsigned int context, int sent);
48 static int init_psk_kex_modes(SSL *s, unsigned int context);
49 #ifndef OPENSSL_NO_EC
50 static int final_key_share(SSL *s, unsigned int context, int sent);
51 #endif
52 #ifndef OPENSSL_NO_SRTP
53 static int init_srtp(SSL *s, unsigned int context);
54 #endif
55 static int final_sig_algs(SSL *s, unsigned int context, int sent);
56 static int final_early_data(SSL *s, unsigned int context, int sent);
57 static int final_maxfragmentlen(SSL *s, unsigned int context, int sent);
58 static int init_post_handshake_auth(SSL *s, unsigned int context);
59
60 /* Structure to define a built-in extension */
61 typedef struct extensions_definition_st {
62     /* The defined type for the extension */
63     unsigned int type;
64     /*
65      * The context that this extension applies to, e.g. what messages and
66      * protocol versions
67      */
68     unsigned int context;
69     /*
70      * Initialise extension before parsing. Always called for relevant contexts
71      * even if extension not present
72      */
73     int (*init)(SSL *s, unsigned int context);
74     /* Parse extension sent from client to server */
75     int (*parse_ctos)(SSL *s, PACKET *pkt, unsigned int context, X509 *x,
76                       size_t chainidx);
77     /* Parse extension send from server to client */
78     int (*parse_stoc)(SSL *s, PACKET *pkt, unsigned int context, X509 *x,
79                       size_t chainidx);
80     /* Construct extension sent from server to client */
81     EXT_RETURN (*construct_stoc)(SSL *s, WPACKET *pkt, unsigned int context,
82                                  X509 *x, size_t chainidx);
83     /* Construct extension sent from client to server */
84     EXT_RETURN (*construct_ctos)(SSL *s, WPACKET *pkt, unsigned int context,
85                                  X509 *x, size_t chainidx);
86     /*
87      * Finalise extension after parsing. Always called where an extensions was
88      * initialised even if the extension was not present. |sent| is set to 1 if
89      * the extension was seen, or 0 otherwise.
90      */
91     int (*final)(SSL *s, unsigned int context, int sent);
92 } EXTENSION_DEFINITION;
93
94 /*
95  * Definitions of all built-in extensions. NOTE: Changes in the number or order
96  * of these extensions should be mirrored with equivalent changes to the
97  * indexes ( TLSEXT_IDX_* ) defined in ssl_locl.h.
98  * Each extension has an initialiser, a client and
99  * server side parser and a finaliser. The initialiser is called (if the
100  * extension is relevant to the given context) even if we did not see the
101  * extension in the message that we received. The parser functions are only
102  * called if we see the extension in the message. The finalisers are always
103  * called if the initialiser was called.
104  * There are also server and client side constructor functions which are always
105  * called during message construction if the extension is relevant for the
106  * given context.
107  * The initialisation, parsing, finalisation and construction functions are
108  * always called in the order defined in this list. Some extensions may depend
109  * on others having been processed first, so the order of this list is
110  * significant.
111  * The extension context is defined by a series of flags which specify which
112  * messages the extension is relevant to. These flags also specify whether the
113  * extension is relevant to a particular protocol or protocol version.
114  *
115  * TODO(TLS1.3): Make sure we have a test to check the consistency of these
116  *
117  * NOTE: WebSphere Application Server 7+ cannot handle empty extensions at
118  * the end, keep these extensions before signature_algorithm.
119  */
120 #define INVALID_EXTENSION { 0x10000, 0, NULL, NULL, NULL, NULL, NULL, NULL }
121 static const EXTENSION_DEFINITION ext_defs[] = {
122     {
123         TLSEXT_TYPE_renegotiate,
124         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
125         | SSL_EXT_SSL3_ALLOWED | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
126         NULL, tls_parse_ctos_renegotiate, tls_parse_stoc_renegotiate,
127         tls_construct_stoc_renegotiate, tls_construct_ctos_renegotiate,
128         final_renegotiate
129     },
130     {
131         TLSEXT_TYPE_server_name,
132         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
133         | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
134         init_server_name,
135         tls_parse_ctos_server_name, tls_parse_stoc_server_name,
136         tls_construct_stoc_server_name, tls_construct_ctos_server_name,
137         final_server_name
138     },
139     {
140         TLSEXT_TYPE_max_fragment_length,
141         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
142         | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
143         NULL, tls_parse_ctos_maxfragmentlen, tls_parse_stoc_maxfragmentlen,
144         tls_construct_stoc_maxfragmentlen, tls_construct_ctos_maxfragmentlen,
145         final_maxfragmentlen
146     },
147 #ifndef OPENSSL_NO_SRP
148     {
149         TLSEXT_TYPE_srp,
150         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
151         init_srp, tls_parse_ctos_srp, NULL, NULL, tls_construct_ctos_srp, NULL
152     },
153 #else
154     INVALID_EXTENSION,
155 #endif
156 #ifndef OPENSSL_NO_EC
157     {
158         TLSEXT_TYPE_ec_point_formats,
159         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
160         | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
161         NULL, tls_parse_ctos_ec_pt_formats, tls_parse_stoc_ec_pt_formats,
162         tls_construct_stoc_ec_pt_formats, tls_construct_ctos_ec_pt_formats,
163         final_ec_pt_formats
164     },
165     {
166         /*
167          * "supported_groups" is spread across several specifications.
168          * It was originally specified as "elliptic_curves" in RFC 4492,
169          * and broadened to include named FFDH groups by RFC 7919.
170          * Both RFCs 4492 and 7919 do not include a provision for the server
171          * to indicate to the client the complete list of groups supported
172          * by the server, with the server instead just indicating the
173          * selected group for this connection in the ServerKeyExchange
174          * message.  TLS 1.3 adds a scheme for the server to indicate
175          * to the client its list of supported groups in the
176          * EncryptedExtensions message, but none of the relevant
177          * specifications permit sending supported_groups in the ServerHello.
178          * Nonetheless (possibly due to the close proximity to the
179          * "ec_point_formats" extension, which is allowed in the ServerHello),
180          * there are several servers that send this extension in the
181          * ServerHello anyway.  Up to and including the 1.1.0 release,
182          * we did not check for the presence of nonpermitted extensions,
183          * so to avoid a regression, we must permit this extension in the
184          * TLS 1.2 ServerHello as well.
185          *
186          * Note that there is no tls_parse_stoc_supported_groups function,
187          * so we do not perform any additional parsing, validation, or
188          * processing on the server's group list -- this is just a minimal
189          * change to preserve compatibility with these misbehaving servers.
190          */
191         TLSEXT_TYPE_supported_groups,
192         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS
193         | SSL_EXT_TLS1_2_SERVER_HELLO,
194         NULL, tls_parse_ctos_supported_groups, NULL,
195         tls_construct_stoc_supported_groups,
196         tls_construct_ctos_supported_groups, NULL
197     },
198 #else
199     INVALID_EXTENSION,
200     INVALID_EXTENSION,
201 #endif
202     {
203         TLSEXT_TYPE_session_ticket,
204         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
205         | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
206         init_session_ticket, tls_parse_ctos_session_ticket,
207         tls_parse_stoc_session_ticket, tls_construct_stoc_session_ticket,
208         tls_construct_ctos_session_ticket, NULL
209     },
210 #ifndef OPENSSL_NO_OCSP
211     {
212         TLSEXT_TYPE_status_request,
213         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
214         | SSL_EXT_TLS1_3_CERTIFICATE,
215         init_status_request, tls_parse_ctos_status_request,
216         tls_parse_stoc_status_request, tls_construct_stoc_status_request,
217         tls_construct_ctos_status_request, NULL
218     },
219 #else
220     INVALID_EXTENSION,
221 #endif
222 #ifndef OPENSSL_NO_NEXTPROTONEG
223     {
224         TLSEXT_TYPE_next_proto_neg,
225         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
226         | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
227         init_npn, tls_parse_ctos_npn, tls_parse_stoc_npn,
228         tls_construct_stoc_next_proto_neg, tls_construct_ctos_npn, NULL
229     },
230 #else
231     INVALID_EXTENSION,
232 #endif
233     {
234         /*
235          * Must appear in this list after server_name so that finalisation
236          * happens after server_name callbacks
237          */
238         TLSEXT_TYPE_application_layer_protocol_negotiation,
239         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
240         | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
241         init_alpn, tls_parse_ctos_alpn, tls_parse_stoc_alpn,
242         tls_construct_stoc_alpn, tls_construct_ctos_alpn, final_alpn
243     },
244 #ifndef OPENSSL_NO_SRTP
245     {
246         TLSEXT_TYPE_use_srtp,
247         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
248         | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS | SSL_EXT_DTLS_ONLY,
249         init_srtp, tls_parse_ctos_use_srtp, tls_parse_stoc_use_srtp,
250         tls_construct_stoc_use_srtp, tls_construct_ctos_use_srtp, NULL
251     },
252 #else
253     INVALID_EXTENSION,
254 #endif
255     {
256         TLSEXT_TYPE_encrypt_then_mac,
257         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
258         | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
259         init_etm, tls_parse_ctos_etm, tls_parse_stoc_etm,
260         tls_construct_stoc_etm, tls_construct_ctos_etm, NULL
261     },
262 #ifndef OPENSSL_NO_CT
263     {
264         TLSEXT_TYPE_signed_certificate_timestamp,
265         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
266         | SSL_EXT_TLS1_3_CERTIFICATE,
267         NULL,
268         /*
269          * No server side support for this, but can be provided by a custom
270          * extension. This is an exception to the rule that custom extensions
271          * cannot override built in ones.
272          */
273         NULL, tls_parse_stoc_sct, NULL, tls_construct_ctos_sct,  NULL
274     },
275 #else
276     INVALID_EXTENSION,
277 #endif
278     {
279         TLSEXT_TYPE_extended_master_secret,
280         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
281         | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
282         init_ems, tls_parse_ctos_ems, tls_parse_stoc_ems,
283         tls_construct_stoc_ems, tls_construct_ctos_ems, final_ems
284     },
285     {
286         TLSEXT_TYPE_signature_algorithms_cert,
287         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
288         init_sig_algs_cert, tls_parse_ctos_sig_algs_cert,
289         tls_parse_ctos_sig_algs_cert,
290         /* We do not generate signature_algorithms_cert at present. */
291         NULL, NULL, NULL
292     },
293     {
294         TLSEXT_TYPE_post_handshake_auth,
295         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_ONLY,
296         init_post_handshake_auth,
297         tls_parse_ctos_post_handshake_auth, NULL,
298         NULL, tls_construct_ctos_post_handshake_auth,
299         NULL,
300     },
301     {
302         TLSEXT_TYPE_signature_algorithms,
303         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_CERTIFICATE_REQUEST,
304         init_sig_algs, tls_parse_ctos_sig_algs,
305         tls_parse_ctos_sig_algs, tls_construct_ctos_sig_algs,
306         tls_construct_ctos_sig_algs, final_sig_algs
307     },
308     {
309         TLSEXT_TYPE_supported_versions,
310         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO
311         | SSL_EXT_TLS1_3_SERVER_HELLO | SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST
312         | SSL_EXT_TLS_IMPLEMENTATION_ONLY,
313         NULL,
314         /* Processed inline as part of version selection */
315         NULL, tls_parse_stoc_supported_versions,
316         tls_construct_stoc_supported_versions,
317         tls_construct_ctos_supported_versions, NULL
318     },
319     {
320         TLSEXT_TYPE_psk_kex_modes,
321         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS_IMPLEMENTATION_ONLY
322         | SSL_EXT_TLS1_3_ONLY,
323         init_psk_kex_modes, tls_parse_ctos_psk_kex_modes, NULL, NULL,
324         tls_construct_ctos_psk_kex_modes, NULL
325     },
326 #ifndef OPENSSL_NO_EC
327     {
328         /*
329          * Must be in this list after supported_groups. We need that to have
330          * been parsed before we do this one.
331          */
332         TLSEXT_TYPE_key_share,
333         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_SERVER_HELLO
334         | SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST | SSL_EXT_TLS_IMPLEMENTATION_ONLY
335         | SSL_EXT_TLS1_3_ONLY,
336         NULL, tls_parse_ctos_key_share, tls_parse_stoc_key_share,
337         tls_construct_stoc_key_share, tls_construct_ctos_key_share,
338         final_key_share
339     },
340 #endif
341     {
342         /* Must be after key_share */
343         TLSEXT_TYPE_cookie,
344         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST
345         | SSL_EXT_TLS_IMPLEMENTATION_ONLY | SSL_EXT_TLS1_3_ONLY,
346         NULL, tls_parse_ctos_cookie, tls_parse_stoc_cookie,
347         tls_construct_stoc_cookie, tls_construct_ctos_cookie, NULL
348     },
349     {
350         /*
351          * Special unsolicited ServerHello extension only used when
352          * SSL_OP_CRYPTOPRO_TLSEXT_BUG is set
353          */
354         TLSEXT_TYPE_cryptopro_bug,
355         SSL_EXT_TLS1_2_SERVER_HELLO | SSL_EXT_TLS1_2_AND_BELOW_ONLY,
356         NULL, NULL, NULL, tls_construct_stoc_cryptopro_bug, NULL, NULL
357     },
358     {
359         TLSEXT_TYPE_early_data,
360         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS
361         | SSL_EXT_TLS1_3_NEW_SESSION_TICKET | SSL_EXT_TLS1_3_ONLY,
362         NULL, tls_parse_ctos_early_data, tls_parse_stoc_early_data,
363         tls_construct_stoc_early_data, tls_construct_ctos_early_data,
364         final_early_data
365     },
366     {
367         TLSEXT_TYPE_certificate_authorities,
368         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_CERTIFICATE_REQUEST
369         | SSL_EXT_TLS1_3_ONLY,
370         init_certificate_authorities,
371         tls_parse_certificate_authorities, tls_parse_certificate_authorities,
372         tls_construct_certificate_authorities,
373         tls_construct_certificate_authorities, NULL,
374     },
375     {
376         /* Must be immediately before pre_shared_key */
377         TLSEXT_TYPE_padding,
378         SSL_EXT_CLIENT_HELLO,
379         NULL,
380         /* We send this, but don't read it */
381         NULL, NULL, NULL, tls_construct_ctos_padding, NULL
382     },
383     {
384         /* Required by the TLSv1.3 spec to always be the last extension */
385         TLSEXT_TYPE_psk,
386         SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_3_SERVER_HELLO
387         | SSL_EXT_TLS_IMPLEMENTATION_ONLY | SSL_EXT_TLS1_3_ONLY,
388         NULL, tls_parse_ctos_psk, tls_parse_stoc_psk, tls_construct_stoc_psk,
389         tls_construct_ctos_psk, NULL
390     }
391 };
392
393 /* Check whether an extension's context matches the current context */
394 static int validate_context(SSL *s, unsigned int extctx, unsigned int thisctx)
395 {
396     /* Check we're allowed to use this extension in this context */
397     if ((thisctx & extctx) == 0)
398         return 0;
399
400     if (SSL_IS_DTLS(s)) {
401         if ((extctx & SSL_EXT_TLS_ONLY) != 0)
402             return 0;
403     } else if ((extctx & SSL_EXT_DTLS_ONLY) != 0) {
404         return 0;
405     }
406
407     return 1;
408 }
409
410 int tls_validate_all_contexts(SSL *s, unsigned int thisctx, RAW_EXTENSION *exts)
411 {
412     size_t i, num_exts, builtin_num = OSSL_NELEM(ext_defs), offset;
413     RAW_EXTENSION *thisext;
414     unsigned int context;
415     ENDPOINT role = ENDPOINT_BOTH;
416
417     if ((thisctx & SSL_EXT_CLIENT_HELLO) != 0)
418         role = ENDPOINT_SERVER;
419     else if ((thisctx & SSL_EXT_TLS1_2_SERVER_HELLO) != 0)
420         role = ENDPOINT_CLIENT;
421
422     /* Calculate the number of extensions in the extensions list */
423     num_exts = builtin_num + s->cert->custext.meths_count;
424
425     for (thisext = exts, i = 0; i < num_exts; i++, thisext++) {
426         if (!thisext->present)
427             continue;
428
429         if (i < builtin_num) {
430             context = ext_defs[i].context;
431         } else {
432             custom_ext_method *meth = NULL;
433
434             meth = custom_ext_find(&s->cert->custext, role, thisext->type,
435                                    &offset);
436             if (!ossl_assert(meth != NULL))
437                 return 0;
438             context = meth->context;
439         }
440
441         if (!validate_context(s, context, thisctx))
442             return 0;
443     }
444
445     return 1;
446 }
447
448 /*
449  * Verify whether we are allowed to use the extension |type| in the current
450  * |context|. Returns 1 to indicate the extension is allowed or unknown or 0 to
451  * indicate the extension is not allowed. If returning 1 then |*found| is set to
452  * the definition for the extension we found.
453  */
454 static int verify_extension(SSL *s, unsigned int context, unsigned int type,
455                             custom_ext_methods *meths, RAW_EXTENSION *rawexlist,
456                             RAW_EXTENSION **found)
457 {
458     size_t i;
459     size_t builtin_num = OSSL_NELEM(ext_defs);
460     const EXTENSION_DEFINITION *thisext;
461
462     for (i = 0, thisext = ext_defs; i < builtin_num; i++, thisext++) {
463         if (type == thisext->type) {
464             if (!validate_context(s, thisext->context, context))
465                 return 0;
466
467             *found = &rawexlist[i];
468             return 1;
469         }
470     }
471
472     /* Check the custom extensions */
473     if (meths != NULL) {
474         size_t offset = 0;
475         ENDPOINT role = ENDPOINT_BOTH;
476         custom_ext_method *meth = NULL;
477
478         if ((context & SSL_EXT_CLIENT_HELLO) != 0)
479             role = ENDPOINT_SERVER;
480         else if ((context & SSL_EXT_TLS1_2_SERVER_HELLO) != 0)
481             role = ENDPOINT_CLIENT;
482
483         meth = custom_ext_find(meths, role, type, &offset);
484         if (meth != NULL) {
485             if (!validate_context(s, meth->context, context))
486                 return 0;
487             *found = &rawexlist[offset + builtin_num];
488             return 1;
489         }
490     }
491
492     /* Unknown extension. We allow it */
493     *found = NULL;
494     return 1;
495 }
496
497 /*
498  * Check whether the context defined for an extension |extctx| means whether
499  * the extension is relevant for the current context |thisctx| or not. Returns
500  * 1 if the extension is relevant for this context, and 0 otherwise
501  */
502 int extension_is_relevant(SSL *s, unsigned int extctx, unsigned int thisctx)
503 {
504     int is_tls13;
505
506     /*
507      * For HRR we haven't selected the version yet but we know it will be
508      * TLSv1.3
509      */
510     if ((thisctx & SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST) != 0)
511         is_tls13 = 1;
512     else
513         is_tls13 = SSL_IS_TLS13(s);
514
515     if ((SSL_IS_DTLS(s)
516                 && (extctx & SSL_EXT_TLS_IMPLEMENTATION_ONLY) != 0)
517             || (s->version == SSL3_VERSION
518                     && (extctx & SSL_EXT_SSL3_ALLOWED) == 0)
519             || (is_tls13 && (extctx & SSL_EXT_TLS1_2_AND_BELOW_ONLY) != 0)
520             || (!is_tls13 && (extctx & SSL_EXT_TLS1_3_ONLY) != 0)
521             || (s->hit && (extctx & SSL_EXT_IGNORE_ON_RESUMPTION) != 0))
522         return 0;
523
524     return 1;
525 }
526
527 /*
528  * Gather a list of all the extensions from the data in |packet]. |context|
529  * tells us which message this extension is for. The raw extension data is
530  * stored in |*res| on success. We don't actually process the content of the
531  * extensions yet, except to check their types. This function also runs the
532  * initialiser functions for all known extensions if |init| is nonzero (whether
533  * we have collected them or not). If successful the caller is responsible for
534  * freeing the contents of |*res|.
535  *
536  * Per http://tools.ietf.org/html/rfc5246#section-7.4.1.4, there may not be
537  * more than one extension of the same type in a ClientHello or ServerHello.
538  * This function returns 1 if all extensions are unique and we have parsed their
539  * types, and 0 if the extensions contain duplicates, could not be successfully
540  * found, or an internal error occurred. We only check duplicates for
541  * extensions that we know about. We ignore others.
542  */
543 int tls_collect_extensions(SSL *s, PACKET *packet, unsigned int context,
544                            RAW_EXTENSION **res, size_t *len, int init)
545 {
546     PACKET extensions = *packet;
547     size_t i = 0;
548     size_t num_exts;
549     custom_ext_methods *exts = &s->cert->custext;
550     RAW_EXTENSION *raw_extensions = NULL;
551     const EXTENSION_DEFINITION *thisexd;
552
553     *res = NULL;
554
555     /*
556      * Initialise server side custom extensions. Client side is done during
557      * construction of extensions for the ClientHello.
558      */
559     if ((context & SSL_EXT_CLIENT_HELLO) != 0)
560         custom_ext_init(&s->cert->custext);
561
562     num_exts = OSSL_NELEM(ext_defs) + (exts != NULL ? exts->meths_count : 0);
563     raw_extensions = OPENSSL_zalloc(num_exts * sizeof(*raw_extensions));
564     if (raw_extensions == NULL) {
565         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_COLLECT_EXTENSIONS,
566                  ERR_R_MALLOC_FAILURE);
567         return 0;
568     }
569
570     i = 0;
571     while (PACKET_remaining(&extensions) > 0) {
572         unsigned int type, idx;
573         PACKET extension;
574         RAW_EXTENSION *thisex;
575
576         if (!PACKET_get_net_2(&extensions, &type) ||
577             !PACKET_get_length_prefixed_2(&extensions, &extension)) {
578             SSLfatal(s, SSL_AD_DECODE_ERROR, SSL_F_TLS_COLLECT_EXTENSIONS,
579                      SSL_R_BAD_EXTENSION);
580             goto err;
581         }
582         /*
583          * Verify this extension is allowed. We only check duplicates for
584          * extensions that we recognise. We also have a special case for the
585          * PSK extension, which must be the last one in the ClientHello.
586          */
587         if (!verify_extension(s, context, type, exts, raw_extensions, &thisex)
588                 || (thisex != NULL && thisex->present == 1)
589                 || (type == TLSEXT_TYPE_psk
590                     && (context & SSL_EXT_CLIENT_HELLO) != 0
591                     && PACKET_remaining(&extensions) != 0)) {
592             SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_COLLECT_EXTENSIONS,
593                      SSL_R_BAD_EXTENSION);
594             goto err;
595         }
596         idx = thisex - raw_extensions;
597         /*-
598          * Check that we requested this extension (if appropriate). Requests can
599          * be sent in the ClientHello and CertificateRequest. Unsolicited
600          * extensions can be sent in the NewSessionTicket. We only do this for
601          * the built-in extensions. Custom extensions have a different but
602          * similar check elsewhere.
603          * Special cases:
604          * - The HRR cookie extension is unsolicited
605          * - The renegotiate extension is unsolicited (the client signals
606          *   support via an SCSV)
607          * - The signed_certificate_timestamp extension can be provided by a
608          * custom extension or by the built-in version. We let the extension
609          * itself handle unsolicited response checks.
610          */
611         if (idx < OSSL_NELEM(ext_defs)
612                 && (context & (SSL_EXT_CLIENT_HELLO
613                                | SSL_EXT_TLS1_3_CERTIFICATE_REQUEST
614                                | SSL_EXT_TLS1_3_NEW_SESSION_TICKET)) == 0
615                 && type != TLSEXT_TYPE_cookie
616                 && type != TLSEXT_TYPE_renegotiate
617                 && type != TLSEXT_TYPE_signed_certificate_timestamp
618                 && (s->ext.extflags[idx] & SSL_EXT_FLAG_SENT) == 0) {
619             SSLfatal(s, SSL_AD_UNSUPPORTED_EXTENSION,
620                      SSL_F_TLS_COLLECT_EXTENSIONS, SSL_R_UNSOLICITED_EXTENSION);
621             goto err;
622         }
623         if (thisex != NULL) {
624             thisex->data = extension;
625             thisex->present = 1;
626             thisex->type = type;
627             thisex->received_order = i++;
628             if (s->ext.debug_cb)
629                 s->ext.debug_cb(s, !s->server, thisex->type,
630                                 PACKET_data(&thisex->data),
631                                 PACKET_remaining(&thisex->data),
632                                 s->ext.debug_arg);
633         }
634     }
635
636     if (init) {
637         /*
638          * Initialise all known extensions relevant to this context,
639          * whether we have found them or not
640          */
641         for (thisexd = ext_defs, i = 0; i < OSSL_NELEM(ext_defs);
642              i++, thisexd++) {
643             if (thisexd->init != NULL && (thisexd->context & context) != 0
644                 && extension_is_relevant(s, thisexd->context, context)
645                 && !thisexd->init(s, context)) {
646                 /* SSLfatal() already called */
647                 goto err;
648             }
649         }
650     }
651
652     *res = raw_extensions;
653     if (len != NULL)
654         *len = num_exts;
655     return 1;
656
657  err:
658     OPENSSL_free(raw_extensions);
659     return 0;
660 }
661
662 /*
663  * Runs the parser for a given extension with index |idx|. |exts| contains the
664  * list of all parsed extensions previously collected by
665  * tls_collect_extensions(). The parser is only run if it is applicable for the
666  * given |context| and the parser has not already been run. If this is for a
667  * Certificate message, then we also provide the parser with the relevant
668  * Certificate |x| and its position in the |chainidx| with 0 being the first
669  * Certificate. Returns 1 on success or 0 on failure. If an extension is not
670  * present this counted as success.
671  */
672 int tls_parse_extension(SSL *s, TLSEXT_INDEX idx, int context,
673                         RAW_EXTENSION *exts, X509 *x, size_t chainidx)
674 {
675     RAW_EXTENSION *currext = &exts[idx];
676     int (*parser)(SSL *s, PACKET *pkt, unsigned int context, X509 *x,
677                   size_t chainidx) = NULL;
678
679     /* Skip if the extension is not present */
680     if (!currext->present)
681         return 1;
682
683     /* Skip if we've already parsed this extension */
684     if (currext->parsed)
685         return 1;
686
687     currext->parsed = 1;
688
689     if (idx < OSSL_NELEM(ext_defs)) {
690         /* We are handling a built-in extension */
691         const EXTENSION_DEFINITION *extdef = &ext_defs[idx];
692
693         /* Check if extension is defined for our protocol. If not, skip */
694         if (!extension_is_relevant(s, extdef->context, context))
695             return 1;
696
697         parser = s->server ? extdef->parse_ctos : extdef->parse_stoc;
698
699         if (parser != NULL)
700             return parser(s, &currext->data, context, x, chainidx);
701
702         /*
703          * If the parser is NULL we fall through to the custom extension
704          * processing
705          */
706     }
707
708     /* Parse custom extensions */
709     return custom_ext_parse(s, context, currext->type,
710                             PACKET_data(&currext->data),
711                             PACKET_remaining(&currext->data),
712                             x, chainidx);
713 }
714
715 /*
716  * Parse all remaining extensions that have not yet been parsed. Also calls the
717  * finalisation for all extensions at the end if |fin| is nonzero, whether we
718  * collected them or not. Returns 1 for success or 0 for failure. If we are
719  * working on a Certificate message then we also pass the Certificate |x| and
720  * its position in the |chainidx|, with 0 being the first certificate.
721  */
722 int tls_parse_all_extensions(SSL *s, int context, RAW_EXTENSION *exts, X509 *x,
723                              size_t chainidx, int fin)
724 {
725     size_t i, numexts = OSSL_NELEM(ext_defs);
726     const EXTENSION_DEFINITION *thisexd;
727
728     /* Calculate the number of extensions in the extensions list */
729     numexts += s->cert->custext.meths_count;
730
731     /* Parse each extension in turn */
732     for (i = 0; i < numexts; i++) {
733         if (!tls_parse_extension(s, i, context, exts, x, chainidx)) {
734             /* SSLfatal() already called */
735             return 0;
736         }
737     }
738
739     if (fin) {
740         /*
741          * Finalise all known extensions relevant to this context,
742          * whether we have found them or not
743          */
744         for (i = 0, thisexd = ext_defs; i < OSSL_NELEM(ext_defs);
745              i++, thisexd++) {
746             if (thisexd->final != NULL && (thisexd->context & context) != 0
747                 && !thisexd->final(s, context, exts[i].present)) {
748                 /* SSLfatal() already called */
749                 return 0;
750             }
751         }
752     }
753
754     return 1;
755 }
756
757 int should_add_extension(SSL *s, unsigned int extctx, unsigned int thisctx,
758                          int max_version)
759 {
760     /* Skip if not relevant for our context */
761     if ((extctx & thisctx) == 0)
762         return 0;
763
764     /* Check if this extension is defined for our protocol. If not, skip */
765     if ((SSL_IS_DTLS(s) && (extctx & SSL_EXT_TLS_IMPLEMENTATION_ONLY) != 0)
766             || (s->version == SSL3_VERSION
767                     && (extctx & SSL_EXT_SSL3_ALLOWED) == 0)
768             || (SSL_IS_TLS13(s)
769                 && (extctx & SSL_EXT_TLS1_2_AND_BELOW_ONLY) != 0)
770             || (!SSL_IS_TLS13(s)
771                 && (extctx & SSL_EXT_TLS1_3_ONLY) != 0
772                 && (thisctx & SSL_EXT_CLIENT_HELLO) == 0)
773             || ((extctx & SSL_EXT_TLS1_3_ONLY) != 0
774                 && (thisctx & SSL_EXT_CLIENT_HELLO) != 0
775                 && (SSL_IS_DTLS(s) || max_version < TLS1_3_VERSION)))
776         return 0;
777
778     return 1;
779 }
780
781 /*
782  * Construct all the extensions relevant to the current |context| and write
783  * them to |pkt|. If this is an extension for a Certificate in a Certificate
784  * message, then |x| will be set to the Certificate we are handling, and
785  * |chainidx| will indicate the position in the chainidx we are processing (with
786  * 0 being the first in the chain). Returns 1 on success or 0 on failure. On a
787  * failure construction stops at the first extension to fail to construct.
788  */
789 int tls_construct_extensions(SSL *s, WPACKET *pkt, unsigned int context,
790                              X509 *x, size_t chainidx)
791 {
792     size_t i;
793     int min_version, max_version = 0, reason;
794     const EXTENSION_DEFINITION *thisexd;
795
796     if (!WPACKET_start_sub_packet_u16(pkt)
797                /*
798                 * If extensions are of zero length then we don't even add the
799                 * extensions length bytes to a ClientHello/ServerHello
800                 * (for non-TLSv1.3).
801                 */
802             || ((context &
803                  (SSL_EXT_CLIENT_HELLO | SSL_EXT_TLS1_2_SERVER_HELLO)) != 0
804                 && !WPACKET_set_flags(pkt,
805                                      WPACKET_FLAGS_ABANDON_ON_ZERO_LENGTH))) {
806         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_EXTENSIONS,
807                  ERR_R_INTERNAL_ERROR);
808         return 0;
809     }
810
811     if ((context & SSL_EXT_CLIENT_HELLO) != 0) {
812         reason = ssl_get_min_max_version(s, &min_version, &max_version);
813         if (reason != 0) {
814             SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_EXTENSIONS,
815                      reason);
816             return 0;
817         }
818     }
819
820     /* Add custom extensions first */
821     if ((context & SSL_EXT_CLIENT_HELLO) != 0) {
822         /* On the server side with initialise during ClientHello parsing */
823         custom_ext_init(&s->cert->custext);
824     }
825     if (!custom_ext_add(s, context, pkt, x, chainidx, max_version)) {
826         /* SSLfatal() already called */
827         return 0;
828     }
829
830     for (i = 0, thisexd = ext_defs; i < OSSL_NELEM(ext_defs); i++, thisexd++) {
831         EXT_RETURN (*construct)(SSL *s, WPACKET *pkt, unsigned int context,
832                                 X509 *x, size_t chainidx);
833         EXT_RETURN ret;
834
835         /* Skip if not relevant for our context */
836         if (!should_add_extension(s, thisexd->context, context, max_version))
837             continue;
838
839         construct = s->server ? thisexd->construct_stoc
840                               : thisexd->construct_ctos;
841
842         if (construct == NULL)
843             continue;
844
845         ret = construct(s, pkt, context, x, chainidx);
846         if (ret == EXT_RETURN_FAIL) {
847             /* SSLfatal() already called */
848             return 0;
849         }
850         if (ret == EXT_RETURN_SENT
851                 && (context & (SSL_EXT_CLIENT_HELLO
852                                | SSL_EXT_TLS1_3_CERTIFICATE_REQUEST
853                                | SSL_EXT_TLS1_3_NEW_SESSION_TICKET)) != 0)
854             s->ext.extflags[i] |= SSL_EXT_FLAG_SENT;
855     }
856
857     if (!WPACKET_close(pkt)) {
858         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_CONSTRUCT_EXTENSIONS,
859                  ERR_R_INTERNAL_ERROR);
860         return 0;
861     }
862
863     return 1;
864 }
865
866 /*
867  * Built in extension finalisation and initialisation functions. All initialise
868  * or finalise the associated extension type for the given |context|. For
869  * finalisers |sent| is set to 1 if we saw the extension during parsing, and 0
870  * otherwise. These functions return 1 on success or 0 on failure.
871  */
872
873 static int final_renegotiate(SSL *s, unsigned int context, int sent)
874 {
875     if (!s->server) {
876         /*
877          * Check if we can connect to a server that doesn't support safe
878          * renegotiation
879          */
880         if (!(s->options & SSL_OP_LEGACY_SERVER_CONNECT)
881                 && !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)
882                 && !sent) {
883             SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_FINAL_RENEGOTIATE,
884                      SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
885             return 0;
886         }
887
888         return 1;
889     }
890
891     /* Need RI if renegotiating */
892     if (s->renegotiate
893             && !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)
894             && !sent) {
895         SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_FINAL_RENEGOTIATE,
896                  SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
897         return 0;
898     }
899
900
901     return 1;
902 }
903
904 static int init_server_name(SSL *s, unsigned int context)
905 {
906     if (s->server)
907         s->servername_done = 0;
908
909     return 1;
910 }
911
912 static int final_server_name(SSL *s, unsigned int context, int sent)
913 {
914     int ret = SSL_TLSEXT_ERR_NOACK, discard;
915     int altmp = SSL_AD_UNRECOGNIZED_NAME;
916     int was_ticket = (SSL_get_options(s) & SSL_OP_NO_TICKET) == 0;
917
918     if (s->ctx != NULL && s->ctx->ext.servername_cb != 0)
919         ret = s->ctx->ext.servername_cb(s, &altmp,
920                                         s->ctx->ext.servername_arg);
921     else if (s->session_ctx != NULL
922              && s->session_ctx->ext.servername_cb != 0)
923         ret = s->session_ctx->ext.servername_cb(s, &altmp,
924                                        s->session_ctx->ext.servername_arg);
925
926     if (!sent) {
927         OPENSSL_free(s->session->ext.hostname);
928         s->session->ext.hostname = NULL;
929     }
930
931     /*
932      * If we switched contexts (whether here or in the client_hello callback),
933      * move the sess_accept increment from the session_ctx to the new
934      * context, to avoid the confusing situation of having sess_accept_good
935      * exceed sess_accept (zero) for the new context.
936      */
937     if (SSL_IS_FIRST_HANDSHAKE(s) && s->ctx != s->session_ctx) {
938         CRYPTO_atomic_add(&s->ctx->stats.sess_accept, 1, &discard,
939                           s->ctx->lock);
940         CRYPTO_atomic_add(&s->session_ctx->stats.sess_accept, -1, &discard,
941                           s->session_ctx->lock);
942     }
943
944     /*
945      * If we're expecting to send a ticket, and tickets were previously enabled,
946      * and now tickets are disabled, then turn off expected ticket.
947      * Also, if this is not a resumption, create a new session ID
948      */
949     if (ret == SSL_TLSEXT_ERR_OK && s->ext.ticket_expected
950             && was_ticket && (SSL_get_options(s) & SSL_OP_NO_TICKET) != 0) {
951         s->ext.ticket_expected = 0;
952         if (!s->hit) {
953             SSL_SESSION* ss = SSL_get_session(s);
954
955             if (ss != NULL) {
956                 OPENSSL_free(ss->ext.tick);
957                 ss->ext.tick = NULL;
958                 ss->ext.ticklen = 0;
959                 ss->ext.tick_lifetime_hint = 0;
960                 ss->ext.tick_age_add = 0;
961                 ss->ext.tick_identity = 0;
962                 if (!ssl_generate_session_id(s, ss)) {
963                     SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_FINAL_SERVER_NAME,
964                              ERR_R_INTERNAL_ERROR);
965                     return 0;
966                 }
967             } else {
968                 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_FINAL_SERVER_NAME,
969                          ERR_R_INTERNAL_ERROR);
970                 return 0;
971             }
972         }
973     }
974
975     switch (ret) {
976     case SSL_TLSEXT_ERR_ALERT_FATAL:
977         SSLfatal(s, altmp, SSL_F_FINAL_SERVER_NAME, SSL_R_CALLBACK_FAILED);
978         return 0;
979
980     case SSL_TLSEXT_ERR_ALERT_WARNING:
981         ssl3_send_alert(s, SSL3_AL_WARNING, altmp);
982         return 1;
983
984     case SSL_TLSEXT_ERR_NOACK:
985         s->servername_done = 0;
986         return 1;
987
988     default:
989         return 1;
990     }
991 }
992
993 #ifndef OPENSSL_NO_EC
994 static int final_ec_pt_formats(SSL *s, unsigned int context, int sent)
995 {
996     unsigned long alg_k, alg_a;
997
998     if (s->server)
999         return 1;
1000
1001     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
1002     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
1003
1004     /*
1005      * If we are client and using an elliptic curve cryptography cipher
1006      * suite, then if server returns an EC point formats lists extension it
1007      * must contain uncompressed.
1008      */
1009     if (s->ext.ecpointformats != NULL
1010             && s->ext.ecpointformats_len > 0
1011             && s->session->ext.ecpointformats != NULL
1012             && s->session->ext.ecpointformats_len > 0
1013             && ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA))) {
1014         /* we are using an ECC cipher */
1015         size_t i;
1016         unsigned char *list = s->session->ext.ecpointformats;
1017
1018         for (i = 0; i < s->session->ext.ecpointformats_len; i++) {
1019             if (*list++ == TLSEXT_ECPOINTFORMAT_uncompressed)
1020                 break;
1021         }
1022         if (i == s->session->ext.ecpointformats_len) {
1023             SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_FINAL_EC_PT_FORMATS,
1024                      SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST);
1025             return 0;
1026         }
1027     }
1028
1029     return 1;
1030 }
1031 #endif
1032
1033 static int init_session_ticket(SSL *s, unsigned int context)
1034 {
1035     if (!s->server)
1036         s->ext.ticket_expected = 0;
1037
1038     return 1;
1039 }
1040
1041 #ifndef OPENSSL_NO_OCSP
1042 static int init_status_request(SSL *s, unsigned int context)
1043 {
1044     if (s->server) {
1045         s->ext.status_type = TLSEXT_STATUSTYPE_nothing;
1046     } else {
1047         /*
1048          * Ensure we get sensible values passed to tlsext_status_cb in the event
1049          * that we don't receive a status message
1050          */
1051         OPENSSL_free(s->ext.ocsp.resp);
1052         s->ext.ocsp.resp = NULL;
1053         s->ext.ocsp.resp_len = 0;
1054     }
1055
1056     return 1;
1057 }
1058 #endif
1059
1060 #ifndef OPENSSL_NO_NEXTPROTONEG
1061 static int init_npn(SSL *s, unsigned int context)
1062 {
1063     s->s3->npn_seen = 0;
1064
1065     return 1;
1066 }
1067 #endif
1068
1069 static int init_alpn(SSL *s, unsigned int context)
1070 {
1071     OPENSSL_free(s->s3->alpn_selected);
1072     s->s3->alpn_selected = NULL;
1073     s->s3->alpn_selected_len = 0;
1074     if (s->server) {
1075         OPENSSL_free(s->s3->alpn_proposed);
1076         s->s3->alpn_proposed = NULL;
1077         s->s3->alpn_proposed_len = 0;
1078     }
1079     return 1;
1080 }
1081
1082 static int final_alpn(SSL *s, unsigned int context, int sent)
1083 {
1084     if (!s->server && !sent && s->session->ext.alpn_selected != NULL)
1085             s->ext.early_data_ok = 0;
1086
1087     if (!s->server || !SSL_IS_TLS13(s))
1088         return 1;
1089
1090     /*
1091      * Call alpn_select callback if needed.  Has to be done after SNI and
1092      * cipher negotiation (HTTP/2 restricts permitted ciphers). In TLSv1.3
1093      * we also have to do this before we decide whether to accept early_data.
1094      * In TLSv1.3 we've already negotiated our cipher so we do this call now.
1095      * For < TLSv1.3 we defer it until after cipher negotiation.
1096      *
1097      * On failure SSLfatal() already called.
1098      */
1099     return tls_handle_alpn(s);
1100 }
1101
1102 static int init_sig_algs(SSL *s, unsigned int context)
1103 {
1104     /* Clear any signature algorithms extension received */
1105     OPENSSL_free(s->s3->tmp.peer_sigalgs);
1106     s->s3->tmp.peer_sigalgs = NULL;
1107
1108     return 1;
1109 }
1110
1111 static int init_sig_algs_cert(SSL *s, unsigned int context)
1112 {
1113     /* Clear any signature algorithms extension received */
1114     OPENSSL_free(s->s3->tmp.peer_cert_sigalgs);
1115     s->s3->tmp.peer_cert_sigalgs = NULL;
1116
1117     return 1;
1118 }
1119
1120 #ifndef OPENSSL_NO_SRP
1121 static int init_srp(SSL *s, unsigned int context)
1122 {
1123     OPENSSL_free(s->srp_ctx.login);
1124     s->srp_ctx.login = NULL;
1125
1126     return 1;
1127 }
1128 #endif
1129
1130 static int init_etm(SSL *s, unsigned int context)
1131 {
1132     s->ext.use_etm = 0;
1133
1134     return 1;
1135 }
1136
1137 static int init_ems(SSL *s, unsigned int context)
1138 {
1139     if (!s->server)
1140         s->s3->flags &= ~TLS1_FLAGS_RECEIVED_EXTMS;
1141
1142     return 1;
1143 }
1144
1145 static int final_ems(SSL *s, unsigned int context, int sent)
1146 {
1147     if (!s->server && s->hit) {
1148         /*
1149          * Check extended master secret extension is consistent with
1150          * original session.
1151          */
1152         if (!(s->s3->flags & TLS1_FLAGS_RECEIVED_EXTMS) !=
1153             !(s->session->flags & SSL_SESS_FLAG_EXTMS)) {
1154             SSLfatal(s, SSL_AD_HANDSHAKE_FAILURE, SSL_F_FINAL_EMS,
1155                      SSL_R_INCONSISTENT_EXTMS);
1156             return 0;
1157         }
1158     }
1159
1160     return 1;
1161 }
1162
1163 static int init_certificate_authorities(SSL *s, unsigned int context)
1164 {
1165     sk_X509_NAME_pop_free(s->s3->tmp.peer_ca_names, X509_NAME_free);
1166     s->s3->tmp.peer_ca_names = NULL;
1167     return 1;
1168 }
1169
1170 static EXT_RETURN tls_construct_certificate_authorities(SSL *s, WPACKET *pkt,
1171                                                         unsigned int context,
1172                                                         X509 *x,
1173                                                         size_t chainidx)
1174 {
1175     const STACK_OF(X509_NAME) *ca_sk = SSL_get0_CA_list(s);
1176
1177     if (ca_sk == NULL || sk_X509_NAME_num(ca_sk) == 0)
1178         return EXT_RETURN_NOT_SENT;
1179
1180     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_certificate_authorities)
1181         || !WPACKET_start_sub_packet_u16(pkt)) {
1182         SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1183                  SSL_F_TLS_CONSTRUCT_CERTIFICATE_AUTHORITIES,
1184                ERR_R_INTERNAL_ERROR);
1185         return EXT_RETURN_FAIL;
1186     }
1187
1188     if (!construct_ca_names(s, pkt)) {
1189         /* SSLfatal() already called */
1190         return EXT_RETURN_FAIL;
1191     }
1192
1193     if (!WPACKET_close(pkt)) {
1194         SSLfatal(s, SSL_AD_INTERNAL_ERROR,
1195                  SSL_F_TLS_CONSTRUCT_CERTIFICATE_AUTHORITIES,
1196                  ERR_R_INTERNAL_ERROR);
1197         return EXT_RETURN_FAIL;
1198     }
1199
1200     return EXT_RETURN_SENT;
1201 }
1202
1203 static int tls_parse_certificate_authorities(SSL *s, PACKET *pkt,
1204                                              unsigned int context, X509 *x,
1205                                              size_t chainidx)
1206 {
1207     if (!parse_ca_names(s, pkt))
1208         return 0;
1209     if (PACKET_remaining(pkt) != 0) {
1210         SSLfatal(s, SSL_AD_DECODE_ERROR,
1211                  SSL_F_TLS_PARSE_CERTIFICATE_AUTHORITIES, SSL_R_BAD_EXTENSION);
1212         return 0;
1213     }
1214     return 1;
1215 }
1216
1217 #ifndef OPENSSL_NO_SRTP
1218 static int init_srtp(SSL *s, unsigned int context)
1219 {
1220     if (s->server)
1221         s->srtp_profile = NULL;
1222
1223     return 1;
1224 }
1225 #endif
1226
1227 static int final_sig_algs(SSL *s, unsigned int context, int sent)
1228 {
1229     if (!sent && SSL_IS_TLS13(s) && !s->hit) {
1230         SSLfatal(s, TLS13_AD_MISSING_EXTENSION, SSL_F_FINAL_SIG_ALGS,
1231                  SSL_R_MISSING_SIGALGS_EXTENSION);
1232         return 0;
1233     }
1234
1235     return 1;
1236 }
1237
1238 #ifndef OPENSSL_NO_EC
1239 static int final_key_share(SSL *s, unsigned int context, int sent)
1240 {
1241     if (!SSL_IS_TLS13(s))
1242         return 1;
1243
1244     /* Nothing to do for key_share in an HRR */
1245     if ((context & SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST) != 0)
1246         return 1;
1247
1248     /*
1249      * If
1250      *     we are a client
1251      *     AND
1252      *     we have no key_share
1253      *     AND
1254      *     (we are not resuming
1255      *      OR the kex_mode doesn't allow non key_share resumes)
1256      * THEN
1257      *     fail;
1258      */
1259     if (!s->server
1260             && !sent
1261             && (!s->hit
1262                 || (s->ext.psk_kex_mode & TLSEXT_KEX_MODE_FLAG_KE) == 0)) {
1263         /* Nothing left we can do - just fail */
1264         SSLfatal(s, SSL_AD_MISSING_EXTENSION, SSL_F_FINAL_KEY_SHARE,
1265                  SSL_R_NO_SUITABLE_KEY_SHARE);
1266         return 0;
1267     }
1268     /*
1269      * IF
1270      *     we are a server
1271      * THEN
1272      *     IF
1273      *         we have a suitable key_share
1274      *     THEN
1275      *         IF
1276      *             we are stateless AND we have no cookie
1277      *         THEN
1278      *             send a HelloRetryRequest
1279      *     ELSE
1280      *         IF
1281      *             we didn't already send a HelloRetryRequest
1282      *             AND
1283      *             the client sent a key_share extension
1284      *             AND
1285      *             (we are not resuming
1286      *              OR the kex_mode allows key_share resumes)
1287      *             AND
1288      *             a shared group exists
1289      *         THEN
1290      *             send a HelloRetryRequest
1291      *         ELSE IF
1292      *             we are not resuming
1293      *             OR
1294      *             the kex_mode doesn't allow non key_share resumes
1295      *         THEN
1296      *             fail
1297      *         ELSE IF
1298      *             we are stateless AND we have no cookie
1299      *         THEN
1300      *             send a HelloRetryRequest
1301      */
1302     if (s->server) {
1303         if (s->s3->peer_tmp != NULL) {
1304             /* We have a suitable key_share */
1305             if ((s->s3->flags & TLS1_FLAGS_STATELESS) != 0
1306                     && !s->ext.cookieok) {
1307                 if (!ossl_assert(s->hello_retry_request == SSL_HRR_NONE)) {
1308                     /*
1309                      * If we are stateless then we wouldn't know about any
1310                      * previously sent HRR - so how can this be anything other
1311                      * than 0?
1312                      */
1313                     SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_FINAL_KEY_SHARE,
1314                              ERR_R_INTERNAL_ERROR);
1315                     return 0;
1316                 }
1317                 s->hello_retry_request = SSL_HRR_PENDING;
1318                 return 1;
1319             }
1320         } else {
1321             /* No suitable key_share */
1322             if (s->hello_retry_request == SSL_HRR_NONE && sent
1323                     && (!s->hit
1324                         || (s->ext.psk_kex_mode & TLSEXT_KEX_MODE_FLAG_KE_DHE)
1325                            != 0)) {
1326                 const uint16_t *pgroups, *clntgroups;
1327                 size_t num_groups, clnt_num_groups, i;
1328                 unsigned int group_id = 0;
1329
1330                 /* Check if a shared group exists */
1331
1332                 /* Get the clients list of supported groups. */
1333                 tls1_get_peer_groups(s, &clntgroups, &clnt_num_groups);
1334                 tls1_get_supported_groups(s, &pgroups, &num_groups);
1335
1336                 /*
1337                  * Find the first group we allow that is also in client's list
1338                  */
1339                 for (i = 0; i < num_groups; i++) {
1340                     group_id = pgroups[i];
1341
1342                     if (check_in_list(s, group_id, clntgroups, clnt_num_groups,
1343                                       1))
1344                         break;
1345                 }
1346
1347                 if (i < num_groups) {
1348                     /* A shared group exists so send a HelloRetryRequest */
1349                     s->s3->group_id = group_id;
1350                     s->hello_retry_request = SSL_HRR_PENDING;
1351                     return 1;
1352                 }
1353             }
1354             if (!s->hit
1355                     || (s->ext.psk_kex_mode & TLSEXT_KEX_MODE_FLAG_KE) == 0) {
1356                 /* Nothing left we can do - just fail */
1357                 SSLfatal(s, sent ? SSL_AD_HANDSHAKE_FAILURE
1358                                  : SSL_AD_MISSING_EXTENSION,
1359                          SSL_F_FINAL_KEY_SHARE, SSL_R_NO_SUITABLE_KEY_SHARE);
1360                 return 0;
1361             }
1362
1363             if ((s->s3->flags & TLS1_FLAGS_STATELESS) != 0
1364                     && !s->ext.cookieok) {
1365                 if (!ossl_assert(s->hello_retry_request == SSL_HRR_NONE)) {
1366                     /*
1367                      * If we are stateless then we wouldn't know about any
1368                      * previously sent HRR - so how can this be anything other
1369                      * than 0?
1370                      */
1371                     SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_FINAL_KEY_SHARE,
1372                              ERR_R_INTERNAL_ERROR);
1373                     return 0;
1374                 }
1375                 s->hello_retry_request = SSL_HRR_PENDING;
1376                 return 1;
1377             }
1378         }
1379
1380         /*
1381          * We have a key_share so don't send any more HelloRetryRequest
1382          * messages
1383          */
1384         if (s->hello_retry_request == SSL_HRR_PENDING)
1385             s->hello_retry_request = SSL_HRR_COMPLETE;
1386     } else {
1387         /*
1388          * For a client side resumption with no key_share we need to generate
1389          * the handshake secret (otherwise this is done during key_share
1390          * processing).
1391          */
1392         if (!sent && !tls13_generate_handshake_secret(s, NULL, 0)) {
1393             SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_FINAL_KEY_SHARE,
1394                      ERR_R_INTERNAL_ERROR);
1395             return 0;
1396         }
1397     }
1398
1399     return 1;
1400 }
1401 #endif
1402
1403 static int init_psk_kex_modes(SSL *s, unsigned int context)
1404 {
1405     s->ext.psk_kex_mode = TLSEXT_KEX_MODE_FLAG_NONE;
1406     return 1;
1407 }
1408
1409 int tls_psk_do_binder(SSL *s, const EVP_MD *md, const unsigned char *msgstart,
1410                       size_t binderoffset, const unsigned char *binderin,
1411                       unsigned char *binderout, SSL_SESSION *sess, int sign,
1412                       int external)
1413 {
1414     EVP_PKEY *mackey = NULL;
1415     EVP_MD_CTX *mctx = NULL;
1416     unsigned char hash[EVP_MAX_MD_SIZE], binderkey[EVP_MAX_MD_SIZE];
1417     unsigned char finishedkey[EVP_MAX_MD_SIZE], tmpbinder[EVP_MAX_MD_SIZE];
1418     unsigned char tmppsk[EVP_MAX_MD_SIZE];
1419     unsigned char *early_secret, *psk;
1420     const char resumption_label[] = "res binder";
1421     const char external_label[] = "ext binder";
1422     const char nonce_label[] = "resumption";
1423     const char *label;
1424     size_t bindersize, labelsize, hashsize = EVP_MD_size(md);
1425     int ret = -1;
1426     int usepskfored = 0;
1427
1428     if (external
1429             && s->early_data_state == SSL_EARLY_DATA_CONNECTING
1430             && s->session->ext.max_early_data == 0
1431             && sess->ext.max_early_data > 0)
1432         usepskfored = 1;
1433
1434     if (external) {
1435         label = external_label;
1436         labelsize = sizeof(external_label) - 1;
1437     } else {
1438         label = resumption_label;
1439         labelsize = sizeof(resumption_label) - 1;
1440     }
1441
1442     if (sess->master_key_length != hashsize) {
1443         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1444                  SSL_R_BAD_PSK);
1445         goto err;
1446     }
1447
1448     if (external) {
1449         psk = sess->master_key;
1450     } else {
1451         psk = tmppsk;
1452         if (!tls13_hkdf_expand(s, md, sess->master_key,
1453                                (const unsigned char *)nonce_label,
1454                                sizeof(nonce_label) - 1, sess->ext.tick_nonce,
1455                                sess->ext.tick_nonce_len, psk, hashsize)) {
1456             /* SSLfatal() already called */
1457             goto err;
1458         }
1459     }
1460
1461     /*
1462      * Generate the early_secret. On the server side we've selected a PSK to
1463      * resume with (internal or external) so we always do this. On the client
1464      * side we do this for a non-external (i.e. resumption) PSK or external PSK
1465      * that will be used for early_data so that it is in place for sending early
1466      * data. For client side external PSK not being used for early_data we
1467      * generate it but store it away for later use.
1468      */
1469     if (s->server || !external || usepskfored)
1470         early_secret = (unsigned char *)s->early_secret;
1471     else
1472         early_secret = (unsigned char *)sess->early_secret;
1473     if (!tls13_generate_secret(s, md, NULL, psk, hashsize, early_secret)) {
1474         /* SSLfatal() already called */
1475         goto err;
1476     }
1477
1478     /*
1479      * Create the handshake hash for the binder key...the messages so far are
1480      * empty!
1481      */
1482     mctx = EVP_MD_CTX_new();
1483     if (mctx == NULL
1484             || EVP_DigestInit_ex(mctx, md, NULL) <= 0
1485             || EVP_DigestFinal_ex(mctx, hash, NULL) <= 0) {
1486         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1487                  ERR_R_INTERNAL_ERROR);
1488         goto err;
1489     }
1490
1491     /* Generate the binder key */
1492     if (!tls13_hkdf_expand(s, md, early_secret, (unsigned char *)label,
1493                            labelsize, hash, hashsize, binderkey, hashsize)) {
1494         /* SSLfatal() already called */
1495         goto err;
1496     }
1497
1498     /* Generate the finished key */
1499     if (!tls13_derive_finishedkey(s, md, binderkey, finishedkey, hashsize)) {
1500         /* SSLfatal() already called */
1501         goto err;
1502     }
1503
1504     if (EVP_DigestInit_ex(mctx, md, NULL) <= 0) {
1505         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1506                  ERR_R_INTERNAL_ERROR);
1507         goto err;
1508     }
1509
1510     /*
1511      * Get a hash of the ClientHello up to the start of the binders. If we are
1512      * following a HelloRetryRequest then this includes the hash of the first
1513      * ClientHello and the HelloRetryRequest itself.
1514      */
1515     if (s->hello_retry_request == SSL_HRR_PENDING) {
1516         size_t hdatalen;
1517         void *hdata;
1518
1519         hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
1520         if (hdatalen <= 0) {
1521             SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1522                      SSL_R_BAD_HANDSHAKE_LENGTH);
1523             goto err;
1524         }
1525
1526         /*
1527          * For servers the handshake buffer data will include the second
1528          * ClientHello - which we don't want - so we need to take that bit off.
1529          */
1530         if (s->server) {
1531             PACKET hashprefix, msg;
1532
1533             /* Find how many bytes are left after the first two messages */
1534             if (!PACKET_buf_init(&hashprefix, hdata, hdatalen)
1535                     || !PACKET_forward(&hashprefix, 1)
1536                     || !PACKET_get_length_prefixed_3(&hashprefix, &msg)
1537                     || !PACKET_forward(&hashprefix, 1)
1538                     || !PACKET_get_length_prefixed_3(&hashprefix, &msg)) {
1539                 SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1540                          ERR_R_INTERNAL_ERROR);
1541                 goto err;
1542             }
1543             hdatalen -= PACKET_remaining(&hashprefix);
1544         }
1545
1546         if (EVP_DigestUpdate(mctx, hdata, hdatalen) <= 0) {
1547             SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1548                      ERR_R_INTERNAL_ERROR);
1549             goto err;
1550         }
1551     }
1552
1553     if (EVP_DigestUpdate(mctx, msgstart, binderoffset) <= 0
1554             || EVP_DigestFinal_ex(mctx, hash, NULL) <= 0) {
1555         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1556                  ERR_R_INTERNAL_ERROR);
1557         goto err;
1558     }
1559
1560     mackey = EVP_PKEY_new_mac_key(EVP_PKEY_HMAC, NULL, finishedkey, hashsize);
1561     if (mackey == NULL) {
1562         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1563                  ERR_R_INTERNAL_ERROR);
1564         goto err;
1565     }
1566
1567     if (!sign)
1568         binderout = tmpbinder;
1569
1570     bindersize = hashsize;
1571     if (EVP_DigestSignInit(mctx, NULL, md, NULL, mackey) <= 0
1572             || EVP_DigestSignUpdate(mctx, hash, hashsize) <= 0
1573             || EVP_DigestSignFinal(mctx, binderout, &bindersize) <= 0
1574             || bindersize != hashsize) {
1575         SSLfatal(s, SSL_AD_INTERNAL_ERROR, SSL_F_TLS_PSK_DO_BINDER,
1576                  ERR_R_INTERNAL_ERROR);
1577         goto err;
1578     }
1579
1580     if (sign) {
1581         ret = 1;
1582     } else {
1583         /* HMAC keys can't do EVP_DigestVerify* - use CRYPTO_memcmp instead */
1584         ret = (CRYPTO_memcmp(binderin, binderout, hashsize) == 0);
1585         if (!ret)
1586             SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_TLS_PSK_DO_BINDER,
1587                      SSL_R_BINDER_DOES_NOT_VERIFY);
1588     }
1589
1590  err:
1591     OPENSSL_cleanse(binderkey, sizeof(binderkey));
1592     OPENSSL_cleanse(finishedkey, sizeof(finishedkey));
1593     EVP_PKEY_free(mackey);
1594     EVP_MD_CTX_free(mctx);
1595
1596     return ret;
1597 }
1598
1599 static int final_early_data(SSL *s, unsigned int context, int sent)
1600 {
1601     if (!sent)
1602         return 1;
1603
1604     if (!s->server) {
1605         if (context == SSL_EXT_TLS1_3_ENCRYPTED_EXTENSIONS
1606                 && sent
1607                 && !s->ext.early_data_ok) {
1608             /*
1609              * If we get here then the server accepted our early_data but we
1610              * later realised that it shouldn't have done (e.g. inconsistent
1611              * ALPN)
1612              */
1613             SSLfatal(s, SSL_AD_ILLEGAL_PARAMETER, SSL_F_FINAL_EARLY_DATA,
1614                      SSL_R_BAD_EARLY_DATA);
1615             return 0;
1616         }
1617
1618         return 1;
1619     }
1620
1621     if (s->max_early_data == 0
1622             || !s->hit
1623             || s->session->ext.tick_identity != 0
1624             || s->early_data_state != SSL_EARLY_DATA_ACCEPTING
1625             || !s->ext.early_data_ok
1626             || s->hello_retry_request != SSL_HRR_NONE) {
1627         s->ext.early_data = SSL_EARLY_DATA_REJECTED;
1628     } else {
1629         s->ext.early_data = SSL_EARLY_DATA_ACCEPTED;
1630
1631         if (!tls13_change_cipher_state(s,
1632                     SSL3_CC_EARLY | SSL3_CHANGE_CIPHER_SERVER_READ)) {
1633             /* SSLfatal() already called */
1634             return 0;
1635         }
1636     }
1637
1638     return 1;
1639 }
1640
1641 static int final_maxfragmentlen(SSL *s, unsigned int context, int sent)
1642 {
1643     /*
1644      * Session resumption on server-side with MFL extension active
1645      *  BUT MFL extension packet was not resent (i.e. sent == 0)
1646      */
1647     if (s->server && s->hit && USE_MAX_FRAGMENT_LENGTH_EXT(s->session)
1648             && !sent ) {
1649         SSLfatal(s, SSL_AD_MISSING_EXTENSION, SSL_F_FINAL_MAXFRAGMENTLEN,
1650                  SSL_R_BAD_EXTENSION);
1651         return 0;
1652     }
1653
1654     /* Current SSL buffer is lower than requested MFL */
1655     if (s->session && USE_MAX_FRAGMENT_LENGTH_EXT(s->session)
1656             && s->max_send_fragment < GET_MAX_FRAGMENT_LENGTH(s->session))
1657         /* trigger a larger buffer reallocation */
1658         if (!ssl3_setup_buffers(s)) {
1659             /* SSLfatal() already called */
1660             return 0;
1661         }
1662
1663     return 1;
1664 }
1665
1666 static int init_post_handshake_auth(SSL *s, unsigned int context)
1667 {
1668     s->post_handshake_auth = SSL_PHA_NONE;
1669
1670     return 1;
1671 }