f11f5e03b970a3cafc4a590903b179acb53ad8b3
[openssl.git] / ssl / statem / extensions.c
1 /*
2  * Copyright 2016 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 "../ssl_locl.h"
12 #include "statem_locl.h"
13
14 static int final_renegotiate(SSL *s, unsigned int context, int sent,
15                                      int *al);
16 static int init_server_name(SSL *s, unsigned int context);
17 static int final_server_name(SSL *s, unsigned int context, int sent,
18                                      int *al);
19 #ifndef OPENSSL_NO_EC
20 static int final_ec_pt_formats(SSL *s, unsigned int context, int sent,
21                                        int *al);
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, int *al);
32 static int init_sig_algs(SSL *s, unsigned int context);
33 #ifndef OPENSSL_NO_SRP
34 static int init_srp(SSL *s, unsigned int context);
35 #endif
36 static int init_etm(SSL *s, unsigned int context);
37 static int init_ems(SSL *s, unsigned int context);
38 static int final_ems(SSL *s, unsigned int context, int sent, int *al);
39 static int init_psk_kex_modes(SSL *s, unsigned int context);
40 #ifndef OPENSSL_NO_EC
41 static int final_key_share(SSL *s, unsigned int context, int sent, int *al);
42 #endif
43 #ifndef OPENSSL_NO_SRTP
44 static int init_srtp(SSL *s, unsigned int context);
45 #endif
46 static int final_sig_algs(SSL *s, unsigned int context, int sent, int *al);
47 static int final_early_data(SSL *s, unsigned int context, int sent, int *al);
48
49 /* Structure to define a built-in extension */
50 typedef struct extensions_definition_st {
51     /* The defined type for the extension */
52     unsigned int type;
53     /*
54      * The context that this extension applies to, e.g. what messages and
55      * protocol versions
56      */
57     unsigned int context;
58     /*
59      * Initialise extension before parsing. Always called for relevant contexts
60      * even if extension not present
61      */
62     int (*init)(SSL *s, unsigned int context);
63     /* Parse extension sent from client to server */
64     int (*parse_ctos)(SSL *s, PACKET *pkt, unsigned int context, X509 *x,
65                       size_t chainidx, int *al);
66     /* Parse extension send from server to client */
67     int (*parse_stoc)(SSL *s, PACKET *pkt, unsigned int context, X509 *x,
68                       size_t chainidx, int *al);
69     /* Construct extension sent from server to client */
70     int (*construct_stoc)(SSL *s, WPACKET *pkt, unsigned int context, X509 *x,
71                           size_t chainidx, int *al);
72     /* Construct extension sent from client to server */
73     int (*construct_ctos)(SSL *s, WPACKET *pkt, unsigned int context, X509 *x,
74                           size_t chainidx, int *al);
75     /*
76      * Finalise extension after parsing. Always called where an extensions was
77      * initialised even if the extension was not present. |sent| is set to 1 if
78      * the extension was seen, or 0 otherwise.
79      */
80     int (*final)(SSL *s, unsigned int context, int sent, int *al);
81 } EXTENSION_DEFINITION;
82
83 /*
84  * Definitions of all built-in extensions. NOTE: Changes in the number or order
85  * of these extensions should be mirrored with equivalent changes to the 
86  * indexes ( TLSEXT_IDX_* ) defined in ssl_locl.h.
87  * Each extension has an initialiser, a client and
88  * server side parser and a finaliser. The initialiser is called (if the
89  * extension is relevant to the given context) even if we did not see the
90  * extension in the message that we received. The parser functions are only
91  * called if we see the extension in the message. The finalisers are always
92  * called if the initialiser was called.
93  * There are also server and client side constructor functions which are always
94  * called during message construction if the extension is relevant for the
95  * given context.
96  * The initialisation, parsing, finalisation and construction functions are
97  * always called in the order defined in this list. Some extensions may depend
98  * on others having been processed first, so the order of this list is
99  * significant.
100  * The extension context is defined by a series of flags which specify which
101  * messages the extension is relevant to. These flags also specify whether the
102  * extension is relevant to a particular protocol or protocol version.
103  *
104  * TODO(TLS1.3): Make sure we have a test to check the consistency of these
105  */
106 #define INVALID_EXTENSION { 0x10000, 0, NULL, NULL, NULL, NULL, NULL, NULL }
107 static const EXTENSION_DEFINITION ext_defs[] = {
108     {
109         TLSEXT_TYPE_renegotiate,
110         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO | EXT_SSL3_ALLOWED
111         | EXT_TLS1_2_AND_BELOW_ONLY,
112         NULL, tls_parse_ctos_renegotiate, tls_parse_stoc_renegotiate,
113         tls_construct_stoc_renegotiate, tls_construct_ctos_renegotiate,
114         final_renegotiate
115     },
116     {
117         TLSEXT_TYPE_server_name,
118         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO
119         | EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
120         init_server_name,
121         tls_parse_ctos_server_name, tls_parse_stoc_server_name,
122         tls_construct_stoc_server_name, tls_construct_ctos_server_name,
123         final_server_name
124     },
125 #ifndef OPENSSL_NO_SRP
126     {
127         TLSEXT_TYPE_srp,
128         EXT_CLIENT_HELLO | EXT_TLS1_2_AND_BELOW_ONLY,
129         init_srp, tls_parse_ctos_srp, NULL, NULL, tls_construct_ctos_srp, NULL
130     },
131 #else
132     INVALID_EXTENSION,
133 #endif
134 #ifndef OPENSSL_NO_EC
135     {
136         TLSEXT_TYPE_ec_point_formats,
137         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO | EXT_TLS1_2_AND_BELOW_ONLY,
138         NULL, tls_parse_ctos_ec_pt_formats, tls_parse_stoc_ec_pt_formats,
139         tls_construct_stoc_ec_pt_formats, tls_construct_ctos_ec_pt_formats,
140         final_ec_pt_formats
141     },
142     {
143         TLSEXT_TYPE_supported_groups,
144         EXT_CLIENT_HELLO | EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
145         NULL, tls_parse_ctos_supported_groups, NULL,
146         NULL /* TODO(TLS1.3): Need to add this */,
147         tls_construct_ctos_supported_groups, NULL
148     },
149 #else
150     INVALID_EXTENSION,
151     INVALID_EXTENSION,
152 #endif
153     {
154         TLSEXT_TYPE_session_ticket,
155         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO | EXT_TLS1_2_AND_BELOW_ONLY,
156         init_session_ticket, tls_parse_ctos_session_ticket,
157         tls_parse_stoc_session_ticket, tls_construct_stoc_session_ticket,
158         tls_construct_ctos_session_ticket, NULL
159     },
160     {
161         TLSEXT_TYPE_signature_algorithms,
162         EXT_CLIENT_HELLO,
163         init_sig_algs, tls_parse_ctos_sig_algs, NULL, NULL,
164         tls_construct_ctos_sig_algs, final_sig_algs
165     },
166 #ifndef OPENSSL_NO_OCSP
167     {
168         TLSEXT_TYPE_status_request,
169         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO
170         | EXT_TLS1_3_CERTIFICATE,
171         init_status_request, tls_parse_ctos_status_request,
172         tls_parse_stoc_status_request, tls_construct_stoc_status_request,
173         tls_construct_ctos_status_request, NULL
174     },
175 #else
176     INVALID_EXTENSION,
177 #endif
178 #ifndef OPENSSL_NO_NEXTPROTONEG
179     {
180         TLSEXT_TYPE_next_proto_neg,
181         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO | EXT_TLS1_2_AND_BELOW_ONLY,
182         init_npn, tls_parse_ctos_npn, tls_parse_stoc_npn,
183         tls_construct_stoc_next_proto_neg, tls_construct_ctos_npn, NULL
184     },
185 #else
186     INVALID_EXTENSION,
187 #endif
188     {
189         /*
190          * Must appear in this list after server_name so that finalisation
191          * happens after server_name callbacks
192          */
193         TLSEXT_TYPE_application_layer_protocol_negotiation,
194         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO
195         | EXT_TLS1_3_ENCRYPTED_EXTENSIONS,
196         init_alpn, tls_parse_ctos_alpn, tls_parse_stoc_alpn,
197         tls_construct_stoc_alpn, tls_construct_ctos_alpn, final_alpn
198     },
199 #ifndef OPENSSL_NO_SRTP
200     {
201         TLSEXT_TYPE_use_srtp,
202         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO
203         | EXT_TLS1_3_ENCRYPTED_EXTENSIONS | EXT_DTLS_ONLY,
204         init_srtp, tls_parse_ctos_use_srtp, tls_parse_stoc_use_srtp,
205         tls_construct_stoc_use_srtp, tls_construct_ctos_use_srtp, NULL
206     },
207 #else
208     INVALID_EXTENSION,
209 #endif
210     {
211         TLSEXT_TYPE_encrypt_then_mac,
212         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO | EXT_TLS1_2_AND_BELOW_ONLY | EXT_SSL3_ALLOWED,
213         init_etm, tls_parse_ctos_etm, tls_parse_stoc_etm,
214         tls_construct_stoc_etm, tls_construct_ctos_etm, NULL
215     },
216 #ifndef OPENSSL_NO_CT
217     {
218         TLSEXT_TYPE_signed_certificate_timestamp,
219         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO
220         | EXT_TLS1_3_CERTIFICATE,
221         NULL,
222         /*
223          * No server side support for this, but can be provided by a custom
224          * extension. This is an exception to the rule that custom extensions
225          * cannot override built in ones.
226          */
227         NULL, tls_parse_stoc_sct, NULL, tls_construct_ctos_sct,  NULL
228     },
229 #else
230     INVALID_EXTENSION,
231 #endif
232     {
233         TLSEXT_TYPE_extended_master_secret,
234         EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO | EXT_TLS1_2_AND_BELOW_ONLY,
235         init_ems, tls_parse_ctos_ems, tls_parse_stoc_ems,
236         tls_construct_stoc_ems, tls_construct_ctos_ems, final_ems
237     },
238     {
239         TLSEXT_TYPE_supported_versions,
240         EXT_CLIENT_HELLO | EXT_TLS_IMPLEMENTATION_ONLY | EXT_TLS1_3_ONLY,
241         NULL,
242         /* Processed inline as part of version selection */
243         NULL, NULL, NULL, tls_construct_ctos_supported_versions, NULL
244     },
245     {
246         TLSEXT_TYPE_psk_kex_modes,
247         EXT_CLIENT_HELLO | EXT_TLS_IMPLEMENTATION_ONLY | EXT_TLS1_3_ONLY,
248         init_psk_kex_modes, tls_parse_ctos_psk_kex_modes, NULL, NULL,
249         tls_construct_ctos_psk_kex_modes, NULL
250     },
251 #ifndef OPENSSL_NO_EC
252     {
253         /*
254          * Must be in this list after supported_groups. We need that to have
255          * been parsed before we do this one.
256          */
257         TLSEXT_TYPE_key_share,
258         EXT_CLIENT_HELLO | EXT_TLS1_3_SERVER_HELLO
259         | EXT_TLS1_3_HELLO_RETRY_REQUEST | EXT_TLS_IMPLEMENTATION_ONLY
260         | EXT_TLS1_3_ONLY,
261         NULL, tls_parse_ctos_key_share, tls_parse_stoc_key_share,
262         tls_construct_stoc_key_share, tls_construct_ctos_key_share,
263         final_key_share
264     },
265 #endif
266     {
267         TLSEXT_TYPE_cookie,
268         EXT_CLIENT_HELLO | EXT_TLS1_3_HELLO_RETRY_REQUEST
269         | EXT_TLS_IMPLEMENTATION_ONLY | EXT_TLS1_3_ONLY,
270         NULL, NULL, tls_parse_stoc_cookie, NULL, tls_construct_ctos_cookie,
271         NULL
272     },
273     {
274         /*
275          * Special unsolicited ServerHello extension only used when
276          * SSL_OP_CRYPTOPRO_TLSEXT_BUG is set
277          */
278         TLSEXT_TYPE_cryptopro_bug,
279         EXT_TLS1_2_SERVER_HELLO | EXT_TLS1_2_AND_BELOW_ONLY,
280         NULL, NULL, NULL, tls_construct_stoc_cryptopro_bug, NULL, NULL
281     },
282     {
283         TLSEXT_TYPE_early_data,
284         EXT_CLIENT_HELLO | EXT_TLS1_3_ENCRYPTED_EXTENSIONS
285         | EXT_TLS1_3_NEW_SESSION_TICKET,
286         NULL, tls_parse_ctos_early_data, tls_parse_stoc_early_data,
287         tls_construct_stoc_early_data, tls_construct_ctos_early_data,
288         final_early_data
289     },
290     {
291         /* Must be immediately before pre_shared_key */
292         /* TODO(TLS1.3): Fix me */
293         TLSEXT_TYPE_padding,
294         EXT_CLIENT_HELLO,
295         NULL,
296         /* We send this, but don't read it */
297         NULL, NULL, NULL, tls_construct_ctos_padding, NULL
298     },
299     {
300         /* Required by the TLSv1.3 spec to always be the last extension */
301         TLSEXT_TYPE_psk,
302         EXT_CLIENT_HELLO | EXT_TLS1_3_SERVER_HELLO | EXT_TLS_IMPLEMENTATION_ONLY
303         | EXT_TLS1_3_ONLY,
304         NULL, tls_parse_ctos_psk, tls_parse_stoc_psk, tls_construct_stoc_psk,
305         tls_construct_ctos_psk, NULL
306     }
307 };
308
309 /*
310  * Verify whether we are allowed to use the extension |type| in the current
311  * |context|. Returns 1 to indicate the extension is allowed or unknown or 0 to
312  * indicate the extension is not allowed. If returning 1 then |*found| is set to
313  * 1 if we found a definition for the extension, and |*idx| is set to its index
314  */
315 static int verify_extension(SSL *s, unsigned int context, unsigned int type,
316                             custom_ext_methods *meths, RAW_EXTENSION *rawexlist,
317                             RAW_EXTENSION **found)
318 {
319     size_t i;
320     size_t builtin_num = OSSL_NELEM(ext_defs);
321     const EXTENSION_DEFINITION *thisext;
322
323     for (i = 0, thisext = ext_defs; i < builtin_num; i++, thisext++) {
324         if (type == thisext->type) {
325             /* Check we're allowed to use this extension in this context */
326             if ((context & thisext->context) == 0)
327                 return 0;
328
329             if (SSL_IS_DTLS(s)) {
330                 if ((thisext->context & EXT_TLS_ONLY) != 0)
331                     return 0;
332             } else if ((thisext->context & EXT_DTLS_ONLY) != 0) {
333                     return 0;
334             }
335
336             *found = &rawexlist[i];
337             return 1;
338         }
339     }
340
341     if ((context & (EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO)) == 0) {
342         /*
343          * Custom extensions only apply to <=TLS1.2. This extension is unknown
344          * in this context - we allow it
345          */
346         *found = NULL;
347         return 1;
348     }
349
350     /* Check the custom extensions */
351     if (meths != NULL) {
352         for (i = builtin_num; i < builtin_num + meths->meths_count; i++) {
353             if (meths->meths[i - builtin_num].ext_type == type) {
354                 *found = &rawexlist[i];
355                 return 1;
356             }
357         }
358     }
359
360     /* Unknown extension. We allow it */
361     *found = NULL;
362     return 1;
363 }
364
365 /*
366  * Check whether the context defined for an extension |extctx| means whether
367  * the extension is relevant for the current context |thisctx| or not. Returns
368  * 1 if the extension is relevant for this context, and 0 otherwise
369  */
370 static int extension_is_relevant(SSL *s, unsigned int extctx,
371                                  unsigned int thisctx)
372 {
373     if ((SSL_IS_DTLS(s)
374                 && (extctx & EXT_TLS_IMPLEMENTATION_ONLY) != 0)
375             || (s->version == SSL3_VERSION
376                     && (extctx & EXT_SSL3_ALLOWED) == 0)
377             || (SSL_IS_TLS13(s)
378                 && (extctx & EXT_TLS1_2_AND_BELOW_ONLY) != 0)
379             || (!SSL_IS_TLS13(s) && (extctx & EXT_TLS1_3_ONLY) != 0))
380         return 0;
381
382     return 1;
383 }
384
385 /*
386  * Gather a list of all the extensions from the data in |packet]. |context|
387  * tells us which message this extension is for. The raw extension data is
388  * stored in |*res| on success. In the event of an error the alert type to use
389  * is stored in |*al|. We don't actually process the content of the extensions
390  * yet, except to check their types. This function also runs the initialiser
391  * functions for all known extensions (whether we have collected them or not).
392  * If successful the caller is responsible for freeing the contents of |*res|.
393  *
394  * Per http://tools.ietf.org/html/rfc5246#section-7.4.1.4, there may not be
395  * more than one extension of the same type in a ClientHello or ServerHello.
396  * This function returns 1 if all extensions are unique and we have parsed their
397  * types, and 0 if the extensions contain duplicates, could not be successfully
398  * found, or an internal error occurred. We only check duplicates for
399  * extensions that we know about. We ignore others.
400  */
401 int tls_collect_extensions(SSL *s, PACKET *packet, unsigned int context,
402                            RAW_EXTENSION **res, int *al, size_t *len)
403 {
404     PACKET extensions = *packet;
405     size_t i = 0;
406     size_t num_exts;
407     custom_ext_methods *exts = NULL;
408     RAW_EXTENSION *raw_extensions = NULL;
409     const EXTENSION_DEFINITION *thisexd;
410
411     *res = NULL;
412
413     /*
414      * Initialise server side custom extensions. Client side is done during
415      * construction of extensions for the ClientHello.
416      */
417     if ((context & EXT_CLIENT_HELLO) != 0) {
418         exts = &s->cert->srv_ext;
419         custom_ext_init(&s->cert->srv_ext);
420     } else if ((context & EXT_TLS1_2_SERVER_HELLO) != 0) {
421         exts = &s->cert->cli_ext;
422     }
423
424     num_exts = OSSL_NELEM(ext_defs) + (exts != NULL ? exts->meths_count : 0);
425     raw_extensions = OPENSSL_zalloc(num_exts * sizeof(*raw_extensions));
426     if (raw_extensions == NULL) {
427         *al = SSL_AD_INTERNAL_ERROR;
428         SSLerr(SSL_F_TLS_COLLECT_EXTENSIONS, ERR_R_MALLOC_FAILURE);
429         return 0;
430     }
431
432     while (PACKET_remaining(&extensions) > 0) {
433         unsigned int type;
434         PACKET extension;
435         RAW_EXTENSION *thisex;
436
437         if (!PACKET_get_net_2(&extensions, &type) ||
438             !PACKET_get_length_prefixed_2(&extensions, &extension)) {
439             SSLerr(SSL_F_TLS_COLLECT_EXTENSIONS, SSL_R_BAD_EXTENSION);
440             *al = SSL_AD_DECODE_ERROR;
441             goto err;
442         }
443         /*
444          * Verify this extension is allowed. We only check duplicates for
445          * extensions that we recognise. We also have a special case for the
446          * PSK extension, which must be the last one in the ClientHello.
447          */
448         if (!verify_extension(s, context, type, exts, raw_extensions, &thisex)
449                 || (thisex != NULL && thisex->present == 1)
450                 || (type == TLSEXT_TYPE_psk
451                     && (context & EXT_CLIENT_HELLO) != 0
452                     && PACKET_remaining(&extensions) != 0)) {
453             SSLerr(SSL_F_TLS_COLLECT_EXTENSIONS, SSL_R_BAD_EXTENSION);
454             *al = SSL_AD_ILLEGAL_PARAMETER;
455             goto err;
456         }
457         if (thisex != NULL) {
458             thisex->data = extension;
459             thisex->present = 1;
460             thisex->type = type;
461         }
462     }
463
464     /*
465      * Initialise all known extensions relevant to this context, whether we have
466      * found them or not
467      */
468     for (thisexd = ext_defs, i = 0; i < OSSL_NELEM(ext_defs); i++, thisexd++) {
469         if(thisexd->init != NULL && (thisexd->context & context) != 0
470                 && extension_is_relevant(s, thisexd->context, context)
471                 && !thisexd->init(s, context)) {
472             *al = SSL_AD_INTERNAL_ERROR;
473             goto err;
474         }
475     }
476
477     *res = raw_extensions;
478     if (len != NULL)
479         *len = num_exts;
480     return 1;
481
482  err:
483     OPENSSL_free(raw_extensions);
484     return 0;
485 }
486
487 /*
488  * Runs the parser for a given extension with index |idx|. |exts| contains the
489  * list of all parsed extensions previously collected by
490  * tls_collect_extensions(). The parser is only run if it is applicable for the
491  * given |context| and the parser has not already been run. If this is for a
492  * Certificate message, then we also provide the parser with the relevant
493  * Certificate |x| and its position in the |chainidx| with 0 being the first
494  * Certificate. Returns 1 on success or 0 on failure. In the event of a failure
495  * |*al| is populated with a suitable alert code. If an extension is not present
496  * this counted as success.
497  */
498 int tls_parse_extension(SSL *s, TLSEXT_INDEX idx, int context,
499                         RAW_EXTENSION *exts, X509 *x, size_t chainidx, int *al)
500 {
501     RAW_EXTENSION *currext = &exts[idx];
502     int (*parser)(SSL *s, PACKET *pkt, unsigned int context, X509 *x,
503                   size_t chainidx, int *al) = NULL;
504
505     /* Skip if the extension is not present */
506     if (!currext->present)
507         return 1;
508
509     if (s->ext.debug_cb)
510         s->ext.debug_cb(s, !s->server, currext->type,
511                         PACKET_data(&currext->data),
512                         PACKET_remaining(&currext->data),
513                         s->ext.debug_arg);
514
515     /* Skip if we've already parsed this extension */
516     if (currext->parsed)
517         return 1;
518
519     currext->parsed = 1;
520
521     if (idx < OSSL_NELEM(ext_defs)) {
522         /* We are handling a built-in extension */
523         const EXTENSION_DEFINITION *extdef = &ext_defs[idx];
524
525         /* Check if extension is defined for our protocol. If not, skip */
526         if (!extension_is_relevant(s, extdef->context, context))
527             return 1;
528
529         parser = s->server ? extdef->parse_ctos : extdef->parse_stoc;
530
531         if (parser != NULL)
532             return parser(s, &currext->data, context, x, chainidx, al);
533
534         /*
535          * If the parser is NULL we fall through to the custom extension
536          * processing
537          */
538     }
539
540     /*
541      * This is a custom extension. We only allow this if it is a non
542      * resumed session on the server side.
543      *chain
544      * TODO(TLS1.3): We only allow old style <=TLS1.2 custom extensions.
545      * We're going to need a new mechanism for TLS1.3 to specify which
546      * messages to add the custom extensions to.
547      */
548     if ((!s->hit || !s->server)
549             && (context
550                 & (EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO)) != 0
551             && custom_ext_parse(s, s->server, currext->type,
552                                 PACKET_data(&currext->data),
553                                 PACKET_remaining(&currext->data),
554                                 al) <= 0)
555         return 0;
556
557     return 1;
558 }
559
560 /*
561  * Parse all remaining extensions that have not yet been parsed. Also calls the
562  * finalisation for all extensions at the end, whether we collected them or not.
563  * Returns 1 for success or 0 for failure. If we are working on a Certificate
564  * message then we also pass the Certificate |x| and its position in the
565  * |chainidx|, with 0 being the first certificate. On failure, |*al| is
566  * populated with a suitable alert code.
567  */
568 int tls_parse_all_extensions(SSL *s, int context, RAW_EXTENSION *exts, X509 *x,
569                              size_t chainidx, int *al)
570 {
571     size_t i, numexts = OSSL_NELEM(ext_defs);
572     const EXTENSION_DEFINITION *thisexd;
573
574     /* Calculate the number of extensions in the extensions list */
575     if ((context & EXT_CLIENT_HELLO) != 0) {
576         numexts += s->cert->srv_ext.meths_count;
577     } else if ((context & EXT_TLS1_2_SERVER_HELLO) != 0) {
578         numexts += s->cert->cli_ext.meths_count;
579     }
580
581     /* Parse each extension in turn */
582     for (i = 0; i < numexts; i++) {
583         if (!tls_parse_extension(s, i, context, exts, x, chainidx, al))
584             return 0;
585     }
586
587     /*
588      * Finalise all known extensions relevant to this context, whether we have
589      * found them or not
590      */
591     for (i = 0, thisexd = ext_defs; i < OSSL_NELEM(ext_defs); i++, thisexd++) {
592         if(thisexd->final != NULL
593                 && (thisexd->context & context) != 0
594                 && !thisexd->final(s, context, exts[i].present, al))
595             return 0;
596     }
597
598     return 1;
599 }
600
601 /*
602  * Construct all the extensions relevant to the current |context| and write
603  * them to |pkt|. If this is an extension for a Certificate in a Certificate
604  * message, then |x| will be set to the Certificate we are handling, and
605  * |chainidx| will indicate the position in the chainidx we are processing (with
606  * 0 being the first in the chain). Returns 1 on success or 0 on failure. If a
607  * failure occurs then |al| is populated with a suitable alert code. On a
608  * failure construction stops at the first extension to fail to construct.
609  */
610 int tls_construct_extensions(SSL *s, WPACKET *pkt, unsigned int context,
611                              X509 *x, size_t chainidx, int *al)
612 {
613     size_t i;
614     int addcustom = 0, min_version, max_version = 0, reason, tmpal;
615     const EXTENSION_DEFINITION *thisexd;
616
617     /*
618      * Normally if something goes wrong during construction it's an internal
619      * error. We can always override this later.
620      */
621     tmpal = SSL_AD_INTERNAL_ERROR;
622
623     if (!WPACKET_start_sub_packet_u16(pkt)
624                /*
625                 * If extensions are of zero length then we don't even add the
626                 * extensions length bytes to a ClientHello/ServerHello in SSLv3
627                 */
628             || ((context & (EXT_CLIENT_HELLO | EXT_TLS1_2_SERVER_HELLO)) != 0
629                && s->version == SSL3_VERSION
630                && !WPACKET_set_flags(pkt,
631                                      WPACKET_FLAGS_ABANDON_ON_ZERO_LENGTH))) {
632         SSLerr(SSL_F_TLS_CONSTRUCT_EXTENSIONS, ERR_R_INTERNAL_ERROR);
633         goto err;
634     }
635
636     if ((context & EXT_CLIENT_HELLO) != 0) {
637         reason = ssl_get_client_min_max_version(s, &min_version, &max_version);
638         if (reason != 0) {
639             SSLerr(SSL_F_TLS_CONSTRUCT_EXTENSIONS, reason);
640             goto err;
641         }
642     }
643
644     /* Add custom extensions first */
645     if ((context & EXT_CLIENT_HELLO) != 0) {
646         custom_ext_init(&s->cert->cli_ext);
647         addcustom = 1;
648     } else if ((context & EXT_TLS1_2_SERVER_HELLO) != 0) {
649         /*
650          * We already initialised the custom extensions during ClientHello
651          * parsing.
652          *
653          * TODO(TLS1.3): We're going to need a new custom extension mechanism
654          * for TLS1.3, so that custom extensions can specify which of the
655          * multiple message they wish to add themselves to.
656          */
657         addcustom = 1;
658     }
659
660     if (addcustom && !custom_ext_add(s, s->server, pkt, &tmpal)) {
661         SSLerr(SSL_F_TLS_CONSTRUCT_EXTENSIONS, ERR_R_INTERNAL_ERROR);
662         goto err;
663     }
664
665     for (i = 0, thisexd = ext_defs; i < OSSL_NELEM(ext_defs); i++, thisexd++) {
666         int (*construct)(SSL *s, WPACKET *pkt, unsigned int context, X509 *x,
667                          size_t chainidx, int *al);
668
669         /* Skip if not relevant for our context */
670         if ((thisexd->context & context) == 0)
671             continue;
672
673         construct = s->server ? thisexd->construct_stoc
674                               : thisexd->construct_ctos;
675
676         /* Check if this extension is defined for our protocol. If not, skip */
677         if ((SSL_IS_DTLS(s)
678                     && (thisexd->context & EXT_TLS_IMPLEMENTATION_ONLY)
679                        != 0)
680                 || (s->version == SSL3_VERSION
681                         && (thisexd->context & EXT_SSL3_ALLOWED) == 0)
682                 || (SSL_IS_TLS13(s)
683                     && (thisexd->context & EXT_TLS1_2_AND_BELOW_ONLY)
684                        != 0)
685                 || (!SSL_IS_TLS13(s)
686                     && (thisexd->context & EXT_TLS1_3_ONLY) != 0
687                     && (context & EXT_CLIENT_HELLO) == 0)
688                 || ((thisexd->context & EXT_TLS1_3_ONLY) != 0
689                     && (context & EXT_CLIENT_HELLO) != 0
690                     && (SSL_IS_DTLS(s) || max_version < TLS1_3_VERSION))
691                 || construct == NULL)
692             continue;
693
694         if (!construct(s, pkt, context, x, chainidx, &tmpal))
695             goto err;
696     }
697
698     if (!WPACKET_close(pkt)) {
699         SSLerr(SSL_F_TLS_CONSTRUCT_EXTENSIONS, ERR_R_INTERNAL_ERROR);
700         goto err;
701     }
702
703     return 1;
704
705  err:
706     *al = tmpal;
707     return 0;
708 }
709
710 /*
711  * Built in extension finalisation and initialisation functions. All initialise
712  * or finalise the associated extension type for the given |context|. For
713  * finalisers |sent| is set to 1 if we saw the extension during parsing, and 0
714  * otherwise. These functions return 1 on success or 0 on failure. In the event
715  * of a failure then |*al| is populated with a suitable error code.
716  */
717
718 static int final_renegotiate(SSL *s, unsigned int context, int sent,
719                                      int *al)
720 {
721     if (!s->server) {
722         /*
723          * Check if we can connect to a server that doesn't support safe
724          * renegotiation
725          */
726         if (!(s->options & SSL_OP_LEGACY_SERVER_CONNECT)
727                 && !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)
728                 && !sent) {
729             *al = SSL_AD_HANDSHAKE_FAILURE;
730             SSLerr(SSL_F_FINAL_RENEGOTIATE,
731                    SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
732             return 0;
733         }
734
735         return 1;
736     }
737
738     /* Need RI if renegotiating */
739     if (s->renegotiate
740             && !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)
741             && !sent) {
742         *al = SSL_AD_HANDSHAKE_FAILURE;
743         SSLerr(SSL_F_FINAL_RENEGOTIATE,
744                SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
745         return 0;
746     }
747
748
749     return 1;
750 }
751
752 static int init_server_name(SSL *s, unsigned int context)
753 {
754     if (s->server)
755         s->servername_done = 0;
756
757     return 1;
758 }
759
760 static int final_server_name(SSL *s, unsigned int context, int sent,
761                                      int *al)
762 {
763     int ret = SSL_TLSEXT_ERR_NOACK;
764     int altmp = SSL_AD_UNRECOGNIZED_NAME;
765
766     if (s->ctx != NULL && s->ctx->ext.servername_cb != 0)
767         ret = s->ctx->ext.servername_cb(s, &altmp,
768                                         s->ctx->ext.servername_arg);
769     else if (s->session_ctx != NULL
770              && s->session_ctx->ext.servername_cb != 0)
771         ret = s->session_ctx->ext.servername_cb(s, &altmp,
772                                        s->session_ctx->ext.servername_arg);
773
774     switch (ret) {
775     case SSL_TLSEXT_ERR_ALERT_FATAL:
776         *al = altmp;
777         return 0;
778
779     case SSL_TLSEXT_ERR_ALERT_WARNING:
780         *al = altmp;
781         return 1;
782
783     case SSL_TLSEXT_ERR_NOACK:
784         s->servername_done = 0;
785         return 1;
786
787     default:
788         return 1;
789     }
790 }
791
792 #ifndef OPENSSL_NO_EC
793 static int final_ec_pt_formats(SSL *s, unsigned int context, int sent,
794                                        int *al)
795 {
796     unsigned long alg_k, alg_a;
797
798     if (s->server)
799         return 1;
800
801     alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
802     alg_a = s->s3->tmp.new_cipher->algorithm_auth;
803
804     /*
805      * If we are client and using an elliptic curve cryptography cipher
806      * suite, then if server returns an EC point formats lists extension it
807      * must contain uncompressed.
808      */
809     if (s->ext.ecpointformats != NULL
810             && s->ext.ecpointformats_len > 0
811             && s->session->ext.ecpointformats != NULL
812             && s->session->ext.ecpointformats_len > 0
813             && ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA))) {
814         /* we are using an ECC cipher */
815         size_t i;
816         unsigned char *list = s->session->ext.ecpointformats;
817
818         for (i = 0; i < s->session->ext.ecpointformats_len; i++) {
819             if (*list++ == TLSEXT_ECPOINTFORMAT_uncompressed)
820                 break;
821         }
822         if (i == s->session->ext.ecpointformats_len) {
823             SSLerr(SSL_F_FINAL_EC_PT_FORMATS,
824                    SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST);
825             return 0;
826         }
827     }
828
829     return 1;
830 }
831 #endif
832
833 static int init_session_ticket(SSL *s, unsigned int context)
834 {
835     if (!s->server)
836         s->ext.ticket_expected = 0;
837
838     return 1;
839 }
840
841 #ifndef OPENSSL_NO_OCSP
842 static int init_status_request(SSL *s, unsigned int context)
843 {
844     if (s->server) {
845         s->ext.status_type = TLSEXT_STATUSTYPE_nothing;
846     } else {
847         /*
848          * Ensure we get sensible values passed to tlsext_status_cb in the event
849          * that we don't receive a status message
850          */
851         OPENSSL_free(s->ext.ocsp.resp);
852         s->ext.ocsp.resp = NULL;
853         s->ext.ocsp.resp_len = 0;
854     }
855
856     return 1;
857 }
858 #endif
859
860 #ifndef OPENSSL_NO_NEXTPROTONEG
861 static int init_npn(SSL *s, unsigned int context)
862 {
863     s->s3->npn_seen = 0;
864
865     return 1;
866 }
867 #endif
868
869 static int init_alpn(SSL *s, unsigned int context)
870 {
871     OPENSSL_free(s->s3->alpn_selected);
872     s->s3->alpn_selected = NULL;
873     s->s3->alpn_selected_len = 0;
874     if (s->server) {
875         OPENSSL_free(s->s3->alpn_proposed);
876         s->s3->alpn_proposed = NULL;
877         s->s3->alpn_proposed_len = 0;
878     }
879     return 1;
880 }
881
882 static int final_alpn(SSL *s, unsigned int context, int sent, int *al)
883 {
884     const unsigned char *selected = NULL;
885     unsigned char selected_len = 0;
886
887     if (!s->server)
888         return 1;
889
890     if (s->ctx->ext.alpn_select_cb != NULL && s->s3->alpn_proposed != NULL) {
891         int r = s->ctx->ext.alpn_select_cb(s, &selected, &selected_len,
892                                            s->s3->alpn_proposed,
893                                            (unsigned int)s->s3->alpn_proposed_len,
894                                            s->ctx->ext.alpn_select_cb_arg);
895
896         if (r == SSL_TLSEXT_ERR_OK) {
897             OPENSSL_free(s->s3->alpn_selected);
898             s->s3->alpn_selected = OPENSSL_memdup(selected, selected_len);
899             if (s->s3->alpn_selected == NULL) {
900                 *al = SSL_AD_INTERNAL_ERROR;
901                 return 0;
902             }
903             s->s3->alpn_selected_len = selected_len;
904 #ifndef OPENSSL_NO_NEXTPROTONEG
905             /* ALPN takes precedence over NPN. */
906             s->s3->npn_seen = 0;
907 #endif
908         } else {
909             *al = SSL_AD_NO_APPLICATION_PROTOCOL;
910             return 0;
911         }
912     }
913
914     return 1;
915 }
916
917 static int init_sig_algs(SSL *s, unsigned int context)
918 {
919     /* Clear any signature algorithms extension received */
920     OPENSSL_free(s->s3->tmp.peer_sigalgs);
921     s->s3->tmp.peer_sigalgs = NULL;
922
923     return 1;
924 }
925
926 #ifndef OPENSSL_NO_SRP
927 static int init_srp(SSL *s, unsigned int context)
928 {
929     OPENSSL_free(s->srp_ctx.login);
930     s->srp_ctx.login = NULL;
931
932     return 1;
933 }
934 #endif
935
936 static int init_etm(SSL *s, unsigned int context)
937 {
938     s->ext.use_etm = 0;
939
940     return 1;
941 }
942
943 static int init_ems(SSL *s, unsigned int context)
944 {
945     if (!s->server)
946         s->s3->flags &= ~TLS1_FLAGS_RECEIVED_EXTMS;
947
948     return 1;
949 }
950
951 static int final_ems(SSL *s, unsigned int context, int sent, int *al)
952 {
953     if (!s->server && s->hit) {
954         /*
955          * Check extended master secret extension is consistent with
956          * original session.
957          */
958         if (!(s->s3->flags & TLS1_FLAGS_RECEIVED_EXTMS) !=
959             !(s->session->flags & SSL_SESS_FLAG_EXTMS)) {
960             *al = SSL_AD_HANDSHAKE_FAILURE;
961             SSLerr(SSL_F_FINAL_EMS, SSL_R_INCONSISTENT_EXTMS);
962             return 0;
963         }
964     }
965
966     return 1;
967 }
968
969 #ifndef OPENSSL_NO_SRTP
970 static int init_srtp(SSL *s, unsigned int context)
971 {
972     if (s->server)
973         s->srtp_profile = NULL;
974
975     return 1;
976 }
977 #endif
978
979 static int final_sig_algs(SSL *s, unsigned int context, int sent, int *al)
980 {
981     if (!sent && SSL_IS_TLS13(s)) {
982         *al = TLS13_AD_MISSING_EXTENSION;
983         SSLerr(SSL_F_FINAL_SIG_ALGS, SSL_R_MISSING_SIGALGS_EXTENSION);
984         return 0;
985     }
986
987     return 1;
988 }
989
990 #ifndef OPENSSL_NO_EC
991 static int final_key_share(SSL *s, unsigned int context, int sent, int *al)
992 {
993     if (!SSL_IS_TLS13(s))
994         return 1;
995
996     /*
997      * If
998      *     we are a client
999      *     AND
1000      *     we have no key_share
1001      *     AND
1002      *     (we are not resuming
1003      *      OR the kex_mode doesn't allow non key_share resumes)
1004      * THEN
1005      *     fail;
1006      */
1007     if (!s->server
1008             && !sent
1009             && (!s->hit
1010                 || (s->ext.psk_kex_mode & TLSEXT_KEX_MODE_FLAG_KE) == 0)) {
1011         /* Nothing left we can do - just fail */
1012         *al = SSL_AD_HANDSHAKE_FAILURE;
1013         SSLerr(SSL_F_FINAL_KEY_SHARE, SSL_R_NO_SUITABLE_KEY_SHARE);
1014         return 0;
1015     }
1016     /*
1017      * If
1018      *     we are a server
1019      *     AND
1020      *     we have no key_share
1021      * THEN
1022      *     If
1023      *         we didn't already send a HelloRetryRequest
1024      *         AND
1025      *         the client sent a key_share extension
1026      *         AND
1027      *         (we are not resuming
1028      *          OR the kex_mode allows key_share resumes)
1029      *         AND
1030      *         a shared group exists
1031      *     THEN
1032      *         send a HelloRetryRequest
1033      *     ELSE If
1034      *         we are not resuming
1035      *         OR
1036      *         the kex_mode doesn't allow non key_share resumes
1037      *     THEN
1038      *         fail;
1039      */
1040     if (s->server && s->s3->peer_tmp == NULL) {
1041         /* No suitable share */
1042         if (s->hello_retry_request == 0 && sent
1043                 && (!s->hit
1044                     || (s->ext.psk_kex_mode & TLSEXT_KEX_MODE_FLAG_KE_DHE)
1045                        != 0)) {
1046             const unsigned char *pcurves, *pcurvestmp, *clntcurves;
1047             size_t num_curves, clnt_num_curves, i;
1048             unsigned int group_id = 0;
1049
1050             /* Check if a shared group exists */
1051
1052             /* Get the clients list of supported groups. */
1053             if (!tls1_get_curvelist(s, 1, &clntcurves, &clnt_num_curves)) {
1054                 *al = SSL_AD_INTERNAL_ERROR;
1055                 SSLerr(SSL_F_FINAL_KEY_SHARE, ERR_R_INTERNAL_ERROR);
1056                 return 0;
1057             }
1058
1059             /* Get our list of available groups */
1060             if (!tls1_get_curvelist(s, 0, &pcurves, &num_curves)) {
1061                 *al = SSL_AD_INTERNAL_ERROR;
1062                 SSLerr(SSL_F_FINAL_KEY_SHARE, ERR_R_INTERNAL_ERROR);
1063                 return 0;
1064             }
1065
1066             /* Find the first group we allow that is also in client's list */
1067             for (i = 0, pcurvestmp = pcurves; i < num_curves;
1068                  i++, pcurvestmp += 2) {
1069                 group_id = bytestogroup(pcurvestmp);
1070
1071                 if (check_in_list(s, group_id, clntcurves, clnt_num_curves, 1))
1072                     break;
1073             }
1074
1075             if (i < num_curves) {
1076                 /* A shared group exists so send a HelloRetryRequest */
1077                 s->s3->group_id = group_id;
1078                 s->hello_retry_request = 1;
1079                 return 1;
1080             }
1081         }
1082         if (!s->hit
1083                 || (s->ext.psk_kex_mode & TLSEXT_KEX_MODE_FLAG_KE) == 0) {
1084             /* Nothing left we can do - just fail */
1085             *al = SSL_AD_HANDSHAKE_FAILURE;
1086             SSLerr(SSL_F_FINAL_KEY_SHARE, SSL_R_NO_SUITABLE_KEY_SHARE);
1087             return 0;
1088         }
1089     }
1090
1091     /* We have a key_share so don't send any more HelloRetryRequest messages */
1092     if (s->server)
1093         s->hello_retry_request = 0;
1094
1095     /*
1096      * For a client side resumption with no key_share we need to generate
1097      * the handshake secret (otherwise this is done during key_share
1098      * processing).
1099      */
1100     if (!sent && !s->server && !tls13_generate_handshake_secret(s, NULL, 0)) {
1101         *al = SSL_AD_INTERNAL_ERROR;
1102         SSLerr(SSL_F_FINAL_KEY_SHARE, ERR_R_INTERNAL_ERROR);
1103         return 0;
1104     }
1105
1106     return 1;
1107 }
1108 #endif
1109
1110 static int init_psk_kex_modes(SSL *s, unsigned int context)
1111 {
1112     s->ext.psk_kex_mode = TLSEXT_KEX_MODE_FLAG_NONE;
1113     return 1;
1114 }
1115
1116 int tls_psk_do_binder(SSL *s, const EVP_MD *md, const unsigned char *msgstart,
1117                       size_t binderoffset, const unsigned char *binderin,
1118                       unsigned char *binderout,
1119                       SSL_SESSION *sess, int sign)
1120 {
1121     EVP_PKEY *mackey = NULL;
1122     EVP_MD_CTX *mctx = NULL;
1123     unsigned char hash[EVP_MAX_MD_SIZE], binderkey[EVP_MAX_MD_SIZE];
1124     unsigned char finishedkey[EVP_MAX_MD_SIZE], tmpbinder[EVP_MAX_MD_SIZE];
1125     const char resumption_label[] = "resumption psk binder key";
1126     size_t bindersize, hashsize = EVP_MD_size(md);
1127     int ret = -1;
1128
1129     /* Generate the early_secret */
1130     if (!tls13_generate_secret(s, md, NULL, sess->master_key,
1131                                sess->master_key_length,
1132                                (unsigned char *)&s->early_secret)) {
1133         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1134         goto err;
1135     }
1136
1137     /*
1138      * Create the handshake hash for the binder key...the messages so far are
1139      * empty!
1140      */
1141     mctx = EVP_MD_CTX_new();
1142     if (mctx == NULL
1143             || EVP_DigestInit_ex(mctx, md, NULL) <= 0
1144             || EVP_DigestFinal_ex(mctx, hash, NULL) <= 0) {
1145         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1146         goto err;
1147     }
1148
1149     /* Generate the binder key */
1150     if (!tls13_hkdf_expand(s, md, s->early_secret,
1151                            (unsigned char *)resumption_label,
1152                            sizeof(resumption_label) - 1, hash, binderkey,
1153                            hashsize)) {
1154         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1155         goto err;
1156     }
1157
1158     /* Generate the finished key */
1159     if (!tls13_derive_finishedkey(s, md, binderkey, finishedkey, hashsize)) {
1160         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1161         goto err;
1162     }
1163
1164     if (EVP_DigestInit_ex(mctx, md, NULL) <= 0) {
1165         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1166         goto err;
1167     }
1168
1169     /*
1170      * Get a hash of the ClientHello up to the start of the binders. If we are
1171      * following a HelloRetryRequest then this includes the hash of the first
1172      * ClientHello and the HelloRetryRequest itself.
1173      */
1174     if (s->hello_retry_request) {
1175         size_t hdatalen;
1176         void *hdata;
1177
1178         hdatalen = BIO_get_mem_data(s->s3->handshake_buffer, &hdata);
1179         if (hdatalen <= 0) {
1180             SSLerr(SSL_F_TLS_PSK_DO_BINDER, SSL_R_BAD_HANDSHAKE_LENGTH);
1181             goto err;
1182         }
1183
1184         /*
1185          * For servers the handshake buffer data will include the second
1186          * ClientHello - which we don't want - so we need to take that bit off.
1187          */
1188         if (s->server) {
1189             if (hdatalen < s->init_num + SSL3_HM_HEADER_LENGTH) {
1190                 SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1191                 goto err;
1192             }
1193             hdatalen -= s->init_num + SSL3_HM_HEADER_LENGTH;
1194         }
1195
1196         if (EVP_DigestUpdate(mctx, hdata, hdatalen) <= 0) {
1197             SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1198             goto err;
1199         }
1200     }
1201
1202     if (EVP_DigestUpdate(mctx, msgstart, binderoffset) <= 0
1203             || EVP_DigestFinal_ex(mctx, hash, NULL) <= 0) {
1204         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1205         goto err;
1206     }
1207
1208     mackey = EVP_PKEY_new_mac_key(EVP_PKEY_HMAC, NULL, finishedkey, hashsize);
1209     if (mackey == NULL) {
1210         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1211         goto err;
1212     }
1213
1214     if (!sign)
1215         binderout = tmpbinder;
1216
1217     bindersize = hashsize;
1218     if (EVP_DigestSignInit(mctx, NULL, md, NULL, mackey) <= 0
1219             || EVP_DigestSignUpdate(mctx, hash, hashsize) <= 0
1220             || EVP_DigestSignFinal(mctx, binderout, &bindersize) <= 0
1221             || bindersize != hashsize) {
1222         SSLerr(SSL_F_TLS_PSK_DO_BINDER, ERR_R_INTERNAL_ERROR);
1223         goto err;
1224     }
1225
1226     if (sign) {
1227         ret = 1;
1228     } else {
1229         /* HMAC keys can't do EVP_DigestVerify* - use CRYPTO_memcmp instead */
1230         ret = (CRYPTO_memcmp(binderin, binderout, hashsize) == 0);
1231     }
1232
1233  err:
1234     OPENSSL_cleanse(binderkey, sizeof(binderkey));
1235     OPENSSL_cleanse(finishedkey, sizeof(finishedkey));
1236     EVP_PKEY_free(mackey);
1237     EVP_MD_CTX_free(mctx);
1238
1239     return ret;
1240 }
1241
1242 static int final_early_data(SSL *s, unsigned int context, int sent, int *al)
1243 {
1244     if (!s->server || !sent)
1245         return 1;
1246
1247     if (s->max_early_data == 0
1248             || !s->hit
1249             || s->session->ext.tick_identity != 0
1250             || s->early_data_state != SSL_EARLY_DATA_ACCEPTING
1251             || !s->ext.early_data_ok
1252             || s->hello_retry_request
1253             || s->s3->alpn_selected_len != s->session->ext.alpn_selected_len
1254             || (s->s3->alpn_selected_len > 0
1255                 && memcmp(s->s3->alpn_selected, s->session->ext.alpn_selected,
1256                           s->s3->alpn_selected_len) != 0)) {
1257         s->ext.early_data = SSL_EARLY_DATA_REJECTED;
1258     } else {
1259         s->ext.early_data = SSL_EARLY_DATA_ACCEPTED;
1260
1261         if (!tls13_change_cipher_state(s,
1262                     SSL3_CC_EARLY | SSL3_CHANGE_CIPHER_SERVER_READ)) {
1263             *al = SSL_AD_INTERNAL_ERROR;
1264             return 0;
1265         }
1266     }
1267
1268     return 1;
1269 }