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