fbf5a3cc69742a8fe71a924ddf070afb3156ffe1
[openssl.git] / ssl / statem / statem_lib.c
1 /*
2  * Copyright 1995-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 /* ====================================================================
11  * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
12  * ECC cipher suite support in OpenSSL originally developed by
13  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
14  */
15
16 #include <limits.h>
17 #include <string.h>
18 #include <stdio.h>
19 #include "../ssl_locl.h"
20 #include "statem_locl.h"
21 #include <openssl/buffer.h>
22 #include <openssl/objects.h>
23 #include <openssl/evp.h>
24 #include <openssl/x509.h>
25
26 /*
27  * send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or
28  * SSL3_RT_CHANGE_CIPHER_SPEC)
29  */
30 int ssl3_do_write(SSL *s, int type)
31 {
32     int ret;
33     size_t written = 0;
34
35     ret = ssl3_write_bytes(s, type, &s->init_buf->data[s->init_off],
36                            s->init_num, &written);
37     if (ret < 0)
38         return (-1);
39     if (type == SSL3_RT_HANDSHAKE)
40         /*
41          * should not be done for 'Hello Request's, but in that case we'll
42          * ignore the result anyway
43          */
44         if (!ssl3_finish_mac(s,
45                              (unsigned char *)&s->init_buf->data[s->init_off],
46                              written))
47             return -1;
48
49     if (written == s->init_num) {
50         if (s->msg_callback)
51             s->msg_callback(1, s->version, type, s->init_buf->data,
52                             (size_t)(s->init_off + s->init_num), s,
53                             s->msg_callback_arg);
54         return (1);
55     }
56     s->init_off += written;
57     s->init_num -= written;
58     return (0);
59 }
60
61 int tls_close_construct_packet(SSL *s, WPACKET *pkt, int htype)
62 {
63     size_t msglen;
64
65     if ((htype != SSL3_MT_CHANGE_CIPHER_SPEC && !WPACKET_close(pkt))
66             || !WPACKET_get_length(pkt, &msglen)
67             || msglen > INT_MAX)
68         return 0;
69     s->init_num = (int)msglen;
70     s->init_off = 0;
71
72     return 1;
73 }
74
75 int tls_setup_handshake(SSL *s)
76 {
77     if (!ssl3_init_finished_mac(s))
78         return 0;
79
80     /* Reset any extension flags */
81     memset(s->ext.extflags, 0, sizeof(s->ext.extflags));
82
83     if (s->server) {
84         STACK_OF(SSL_CIPHER) *ciphers = SSL_get_ciphers(s);
85         int i, ver_min, ver_max, ok = 0;
86
87         /*
88          * Sanity check that the maximum version we accept has ciphers
89          * enabled. For clients we do this check during construction of the
90          * ClientHello.
91          */
92         if (ssl_get_min_max_version(s, &ver_min, &ver_max) != 0) {
93             SSLerr(SSL_F_TLS_SETUP_HANDSHAKE, ERR_R_INTERNAL_ERROR);
94             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
95             return 0;
96         }
97         for (i = 0; i < sk_SSL_CIPHER_num(ciphers); i++) {
98             const SSL_CIPHER *c = sk_SSL_CIPHER_value(ciphers, i);
99
100             if (SSL_IS_DTLS(s)) {
101                 if (DTLS_VERSION_GE(ver_max, c->min_dtls) &&
102                         DTLS_VERSION_LE(ver_max, c->max_dtls))
103                     ok = 1;
104             } else if (ver_max >= c->min_tls && ver_max <= c->max_tls) {
105                 ok = 1;
106             }
107             if (ok)
108                 break;
109         }
110         if (!ok) {
111             SSLerr(SSL_F_TLS_SETUP_HANDSHAKE, SSL_R_NO_CIPHERS_AVAILABLE);
112             ERR_add_error_data(1, "No ciphers enabled for max supported "
113                                   "SSL/TLS version");
114             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
115             return 0;
116         }
117         if (SSL_IS_FIRST_HANDSHAKE(s)) {
118             s->ctx->stats.sess_accept++;
119         } else if (!s->s3->send_connection_binding &&
120                    !(s->options &
121                      SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
122             /*
123              * Server attempting to renegotiate with client that doesn't
124              * support secure renegotiation.
125              */
126             SSLerr(SSL_F_TLS_SETUP_HANDSHAKE,
127                    SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
128             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_HANDSHAKE_FAILURE);
129             return 0;
130         } else {
131             s->ctx->stats.sess_accept_renegotiate++;
132
133             s->s3->tmp.cert_request = 0;
134         }
135     } else {
136         if (SSL_IS_FIRST_HANDSHAKE(s))
137             s->ctx->stats.sess_connect++;
138         else
139             s->ctx->stats.sess_connect_renegotiate++;
140
141         /* mark client_random uninitialized */
142         memset(s->s3->client_random, 0, sizeof(s->s3->client_random));
143         s->hit = 0;
144
145         s->s3->tmp.cert_req = 0;
146
147         if (SSL_IS_DTLS(s))
148             s->statem.use_timer = 1;
149     }
150
151     return 1;
152 }
153
154 /*
155  * Size of the to-be-signed TLS13 data, without the hash size itself:
156  * 64 bytes of value 32, 33 context bytes, 1 byte separator
157  */
158 #define TLS13_TBS_START_SIZE            64
159 #define TLS13_TBS_PREAMBLE_SIZE         (TLS13_TBS_START_SIZE + 33 + 1)
160
161 static int get_cert_verify_tbs_data(SSL *s, unsigned char *tls13tbs,
162                                     void **hdata, size_t *hdatalen)
163 {
164     static const char *servercontext = "TLS 1.3, server CertificateVerify";
165     static const char *clientcontext = "TLS 1.3, client CertificateVerify";
166
167     if (SSL_IS_TLS13(s)) {
168         size_t hashlen;
169
170         /* Set the first 64 bytes of to-be-signed data to octet 32 */
171         memset(tls13tbs, 32, TLS13_TBS_START_SIZE);
172         /* This copies the 33 bytes of context plus the 0 separator byte */
173         if (s->statem.hand_state == TLS_ST_CR_CERT_VRFY
174                  || s->statem.hand_state == TLS_ST_SW_CERT_VRFY)
175             strcpy((char *)tls13tbs + TLS13_TBS_START_SIZE, servercontext);
176         else
177             strcpy((char *)tls13tbs + TLS13_TBS_START_SIZE, clientcontext);
178
179         /*
180          * If we're currently reading then we need to use the saved handshake
181          * hash value. We can't use the current handshake hash state because
182          * that includes the CertVerify itself.
183          */
184         if (s->statem.hand_state == TLS_ST_CR_CERT_VRFY
185                 || s->statem.hand_state == TLS_ST_SR_CERT_VRFY) {
186             memcpy(tls13tbs + TLS13_TBS_PREAMBLE_SIZE, s->cert_verify_hash,
187                    s->cert_verify_hash_len);
188             hashlen = s->cert_verify_hash_len;
189         } else if (!ssl_handshake_hash(s, tls13tbs + TLS13_TBS_PREAMBLE_SIZE,
190                                        EVP_MAX_MD_SIZE, &hashlen)) {
191             return 0;
192         }
193
194         *hdata = tls13tbs;
195         *hdatalen = TLS13_TBS_PREAMBLE_SIZE + hashlen;
196     } else {
197         size_t retlen;
198
199         retlen = BIO_get_mem_data(s->s3->handshake_buffer, hdata);
200         if (retlen <= 0)
201             return 0;
202         *hdatalen = retlen;
203     }
204
205     return 1;
206 }
207
208 int tls_construct_cert_verify(SSL *s, WPACKET *pkt)
209 {
210     EVP_PKEY *pkey = NULL;
211     const EVP_MD *md = NULL;
212     EVP_MD_CTX *mctx = NULL;
213     EVP_PKEY_CTX *pctx = NULL;
214     size_t hdatalen = 0, siglen = 0;
215     void *hdata;
216     unsigned char *sig = NULL;
217     unsigned char tls13tbs[TLS13_TBS_PREAMBLE_SIZE + EVP_MAX_MD_SIZE];
218     const SIGALG_LOOKUP *lu = s->s3->tmp.sigalg;
219
220     if (lu == NULL || s->s3->tmp.cert == NULL) {
221         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
222         goto err;
223     }
224     pkey = s->s3->tmp.cert->privatekey;
225     md = ssl_md(lu->hash_idx);
226
227     if (pkey == NULL || md == NULL) {
228         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
229         goto err;
230     }
231
232     mctx = EVP_MD_CTX_new();
233     if (mctx == NULL) {
234         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_MALLOC_FAILURE);
235         goto err;
236     }
237
238     /* Get the data to be signed */
239     if (!get_cert_verify_tbs_data(s, tls13tbs, &hdata, &hdatalen)) {
240         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
241         goto err;
242     }
243
244     if (SSL_USE_SIGALGS(s) && !WPACKET_put_bytes_u16(pkt, lu->sigalg)) {
245         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
246         goto err;
247     }
248     siglen = EVP_PKEY_size(pkey);
249     sig = OPENSSL_malloc(siglen);
250     if (sig == NULL) {
251         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_MALLOC_FAILURE);
252         goto err;
253     }
254
255     if (EVP_DigestSignInit(mctx, &pctx, md, NULL, pkey) <= 0) {
256         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_EVP_LIB);
257         goto err;
258     }
259
260     if (lu->sig == EVP_PKEY_RSA_PSS) {
261         if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
262             || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx,
263                                                 RSA_PSS_SALTLEN_DIGEST) <= 0) {
264             SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_EVP_LIB);
265             goto err;
266         }
267     } else if (s->version == SSL3_VERSION) {
268         if (!EVP_MD_CTX_ctrl(mctx, EVP_CTRL_SSL3_MASTER_SECRET,
269                              (int)s->session->master_key_length,
270                              s->session->master_key)) {
271             SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_EVP_LIB);
272             goto err;
273         }
274     }
275
276     if (EVP_DigestSign(mctx, sig, &siglen, hdata, hdatalen) <= 0) {
277         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_EVP_LIB);
278         goto err;
279     }
280
281 #ifndef OPENSSL_NO_GOST
282     {
283         int pktype = lu->sig;
284
285         if (pktype == NID_id_GostR3410_2001
286             || pktype == NID_id_GostR3410_2012_256
287             || pktype == NID_id_GostR3410_2012_512)
288             BUF_reverse(sig, NULL, siglen);
289     }
290 #endif
291
292     if (!WPACKET_sub_memcpy_u16(pkt, sig, siglen)) {
293         SSLerr(SSL_F_TLS_CONSTRUCT_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
294         goto err;
295     }
296
297     /* Digest cached records and discard handshake buffer */
298     if (!ssl3_digest_cached_records(s, 0))
299         goto err;
300
301     OPENSSL_free(sig);
302     EVP_MD_CTX_free(mctx);
303     return 1;
304  err:
305     OPENSSL_free(sig);
306     EVP_MD_CTX_free(mctx);
307     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
308     return 0;
309 }
310
311 MSG_PROCESS_RETURN tls_process_cert_verify(SSL *s, PACKET *pkt)
312 {
313     EVP_PKEY *pkey = NULL;
314     const unsigned char *data;
315 #ifndef OPENSSL_NO_GOST
316     unsigned char *gost_data = NULL;
317 #endif
318     int al = SSL_AD_INTERNAL_ERROR, ret = MSG_PROCESS_ERROR;
319     int type = 0, j;
320     unsigned int len;
321     X509 *peer;
322     const EVP_MD *md = NULL;
323     size_t hdatalen = 0;
324     void *hdata;
325     unsigned char tls13tbs[TLS13_TBS_PREAMBLE_SIZE + EVP_MAX_MD_SIZE];
326     EVP_MD_CTX *mctx = EVP_MD_CTX_new();
327     EVP_PKEY_CTX *pctx = NULL;
328
329     if (mctx == NULL) {
330         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_MALLOC_FAILURE);
331         goto f_err;
332     }
333
334     peer = s->session->peer;
335     pkey = X509_get0_pubkey(peer);
336     if (pkey == NULL)
337         goto f_err;
338
339     type = X509_certificate_type(peer, pkey);
340
341     if (!(type & EVP_PKT_SIGN)) {
342         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY,
343                SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE);
344         al = SSL_AD_ILLEGAL_PARAMETER;
345         goto f_err;
346     }
347
348     /* Check for broken implementations of GOST ciphersuites */
349     /*
350      * If key is GOST and n is exactly 64, it is bare signature without
351      * length field (CryptoPro implementations at least till CSP 4.0)
352      */
353 #ifndef OPENSSL_NO_GOST
354     if (PACKET_remaining(pkt) == 64
355         && EVP_PKEY_id(pkey) == NID_id_GostR3410_2001) {
356         len = 64;
357     } else
358 #endif
359     {
360         if (SSL_USE_SIGALGS(s)) {
361             int rv;
362             unsigned int sigalg;
363
364             if (!PACKET_get_net_2(pkt, &sigalg)) {
365                 al = SSL_AD_DECODE_ERROR;
366                 goto f_err;
367             }
368             rv = tls12_check_peer_sigalg(s, sigalg, pkey);
369             if (rv == -1) {
370                 goto f_err;
371             } else if (rv == 0) {
372                 al = SSL_AD_DECODE_ERROR;
373                 goto f_err;
374             }
375 #ifdef SSL_DEBUG
376             fprintf(stderr, "USING TLSv1.2 HASH %s\n", EVP_MD_name(md));
377 #endif
378         } else if (!tls1_set_peer_legacy_sigalg(s, pkey)) {
379                 al = SSL_AD_INTERNAL_ERROR;
380                 goto f_err;
381         }
382
383         md = ssl_md(s->s3->tmp.peer_sigalg->hash_idx);
384
385         if (!PACKET_get_net_2(pkt, &len)) {
386             SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
387             al = SSL_AD_DECODE_ERROR;
388             goto f_err;
389         }
390     }
391     j = EVP_PKEY_size(pkey);
392     if (((int)len > j) || ((int)PACKET_remaining(pkt) > j)
393         || (PACKET_remaining(pkt) == 0)) {
394         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_WRONG_SIGNATURE_SIZE);
395         al = SSL_AD_DECODE_ERROR;
396         goto f_err;
397     }
398     if (!PACKET_get_bytes(pkt, &data, len)) {
399         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_LENGTH_MISMATCH);
400         al = SSL_AD_DECODE_ERROR;
401         goto f_err;
402     }
403
404     if (!get_cert_verify_tbs_data(s, tls13tbs, &hdata, &hdatalen)) {
405         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_INTERNAL_ERROR);
406         goto f_err;
407     }
408
409 #ifdef SSL_DEBUG
410     fprintf(stderr, "Using client verify alg %s\n", EVP_MD_name(md));
411 #endif
412     if (EVP_DigestVerifyInit(mctx, &pctx, md, NULL, pkey) <= 0) {
413         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
414         goto f_err;
415     }
416 #ifndef OPENSSL_NO_GOST
417     {
418         int pktype = EVP_PKEY_id(pkey);
419         if (pktype == NID_id_GostR3410_2001
420             || pktype == NID_id_GostR3410_2012_256
421             || pktype == NID_id_GostR3410_2012_512) {
422             if ((gost_data = OPENSSL_malloc(len)) == NULL) {
423                 SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_MALLOC_FAILURE);
424                 goto f_err;
425             }
426             BUF_reverse(gost_data, data, len);
427             data = gost_data;
428         }
429     }
430 #endif
431
432     if (SSL_USE_PSS(s)) {
433         if (EVP_PKEY_CTX_set_rsa_padding(pctx, RSA_PKCS1_PSS_PADDING) <= 0
434             || EVP_PKEY_CTX_set_rsa_pss_saltlen(pctx,
435                                                 RSA_PSS_SALTLEN_DIGEST) <= 0) {
436             SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
437             goto f_err;
438         }
439     } else if (s->version == SSL3_VERSION
440         && !EVP_MD_CTX_ctrl(mctx, EVP_CTRL_SSL3_MASTER_SECRET,
441                             (int)s->session->master_key_length,
442                             s->session->master_key)) {
443         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
444         goto f_err;
445     }
446
447     j = EVP_DigestVerify(mctx, data, len, hdata, hdatalen);
448
449     if (j < 0) {
450         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, ERR_R_EVP_LIB);
451         goto f_err;
452     } else if (j == 0) {
453         al = SSL_AD_DECRYPT_ERROR;
454         SSLerr(SSL_F_TLS_PROCESS_CERT_VERIFY, SSL_R_BAD_SIGNATURE);
455         goto f_err;
456     }
457
458     ret = MSG_PROCESS_CONTINUE_READING;
459     if (0) {
460  f_err:
461         ssl3_send_alert(s, SSL3_AL_FATAL, al);
462         ossl_statem_set_error(s);
463     }
464     BIO_free(s->s3->handshake_buffer);
465     s->s3->handshake_buffer = NULL;
466     EVP_MD_CTX_free(mctx);
467 #ifndef OPENSSL_NO_GOST
468     OPENSSL_free(gost_data);
469 #endif
470     return ret;
471 }
472
473 int tls_construct_finished(SSL *s, WPACKET *pkt)
474 {
475     size_t finish_md_len;
476     const char *sender;
477     size_t slen;
478
479     /* This is a real handshake so make sure we clean it up at the end */
480     if (!s->server)
481         s->statem.cleanuphand = 1;
482
483     /*
484      * We only change the keys if we didn't already do this when we sent the
485      * client certificate
486      */
487     if (SSL_IS_TLS13(s)
488             && !s->server
489             && s->s3->tmp.cert_req == 0
490             && (!s->method->ssl3_enc->change_cipher_state(s,
491                     SSL3_CC_HANDSHAKE | SSL3_CHANGE_CIPHER_CLIENT_WRITE))) {
492         SSLerr(SSL_F_TLS_CONSTRUCT_FINISHED, SSL_R_CANNOT_CHANGE_CIPHER);
493         goto err;
494     }
495
496     if (s->server) {
497         sender = s->method->ssl3_enc->server_finished_label;
498         slen = s->method->ssl3_enc->server_finished_label_len;
499     } else {
500         sender = s->method->ssl3_enc->client_finished_label;
501         slen = s->method->ssl3_enc->client_finished_label_len;
502     }
503
504     finish_md_len = s->method->ssl3_enc->final_finish_mac(s,
505                                                           sender, slen,
506                                                           s->s3->tmp.finish_md);
507     if (finish_md_len == 0) {
508         SSLerr(SSL_F_TLS_CONSTRUCT_FINISHED, ERR_R_INTERNAL_ERROR);
509         goto err;
510     }
511
512     s->s3->tmp.finish_md_len = finish_md_len;
513
514     if (!WPACKET_memcpy(pkt, s->s3->tmp.finish_md, finish_md_len)) {
515         SSLerr(SSL_F_TLS_CONSTRUCT_FINISHED, ERR_R_INTERNAL_ERROR);
516         goto err;
517     }
518
519     /*
520      * Log the master secret, if logging is enabled. We don't log it for
521      * TLSv1.3: there's a different key schedule for that.
522      */
523     if (!SSL_IS_TLS13(s) && !ssl_log_secret(s, MASTER_SECRET_LABEL,
524                                             s->session->master_key,
525                                             s->session->master_key_length)) {
526         SSLerr(SSL_F_TLS_CONSTRUCT_FINISHED, ERR_R_INTERNAL_ERROR);
527         goto err;
528     }
529
530     /*
531      * Copy the finished so we can use it for renegotiation checks
532      */
533     if (!ossl_assert(finish_md_len <= EVP_MAX_MD_SIZE)) {
534         SSLerr(SSL_F_TLS_CONSTRUCT_FINISHED, ERR_R_INTERNAL_ERROR);
535         goto err;
536     }
537     if (!s->server) {
538         memcpy(s->s3->previous_client_finished, s->s3->tmp.finish_md,
539                finish_md_len);
540         s->s3->previous_client_finished_len = finish_md_len;
541     } else {
542         memcpy(s->s3->previous_server_finished, s->s3->tmp.finish_md,
543                finish_md_len);
544         s->s3->previous_server_finished_len = finish_md_len;
545     }
546
547     return 1;
548  err:
549     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
550     return 0;
551 }
552
553 int tls_construct_key_update(SSL *s, WPACKET *pkt)
554 {
555     if (!WPACKET_put_bytes_u8(pkt, s->key_update)) {
556         SSLerr(SSL_F_TLS_CONSTRUCT_KEY_UPDATE, ERR_R_INTERNAL_ERROR);
557         goto err;
558     }
559
560     s->key_update = SSL_KEY_UPDATE_NONE;
561     return 1;
562
563  err:
564     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
565     return 0;
566 }
567
568 MSG_PROCESS_RETURN tls_process_key_update(SSL *s, PACKET *pkt)
569 {
570     int al;
571     unsigned int updatetype;
572
573     s->key_update_count++;
574     if (s->key_update_count > MAX_KEY_UPDATE_MESSAGES) {
575         al = SSL_AD_ILLEGAL_PARAMETER;
576         SSLerr(SSL_F_TLS_PROCESS_KEY_UPDATE, SSL_R_TOO_MANY_KEY_UPDATES);
577         goto err;
578     }
579
580     /*
581      * A KeyUpdate message signals a key change so the end of the message must
582      * be on a record boundary.
583      */
584     if (RECORD_LAYER_processed_read_pending(&s->rlayer)) {
585         al = SSL_AD_UNEXPECTED_MESSAGE;
586         SSLerr(SSL_F_TLS_PROCESS_KEY_UPDATE, SSL_R_NOT_ON_RECORD_BOUNDARY);
587         goto err;
588     }
589
590     if (!PACKET_get_1(pkt, &updatetype)
591             || PACKET_remaining(pkt) != 0) {
592         al = SSL_AD_DECODE_ERROR;
593         SSLerr(SSL_F_TLS_PROCESS_KEY_UPDATE, SSL_R_BAD_KEY_UPDATE);
594         goto err;
595     }
596
597     /*
598      * There are only two defined key update types. Fail if we get a value we
599      * didn't recognise.
600      */
601     if (updatetype != SSL_KEY_UPDATE_NOT_REQUESTED
602             && updatetype != SSL_KEY_UPDATE_REQUESTED) {
603         al = SSL_AD_ILLEGAL_PARAMETER;
604         SSLerr(SSL_F_TLS_PROCESS_KEY_UPDATE, SSL_R_BAD_KEY_UPDATE);
605         goto err;
606     }
607
608     /*
609      * If we get a request for us to update our sending keys too then, we need
610      * to additionally send a KeyUpdate message. However that message should
611      * not also request an update (otherwise we get into an infinite loop).
612      */
613     if (updatetype == SSL_KEY_UPDATE_REQUESTED)
614         s->key_update = SSL_KEY_UPDATE_NOT_REQUESTED;
615
616     if (!tls13_update_key(s, 0)) {
617         al = SSL_AD_INTERNAL_ERROR;
618         SSLerr(SSL_F_TLS_PROCESS_KEY_UPDATE, ERR_R_INTERNAL_ERROR);
619         goto err;
620     }
621
622     return MSG_PROCESS_FINISHED_READING;
623  err:
624     ssl3_send_alert(s, SSL3_AL_FATAL, al);
625     ossl_statem_set_error(s);
626     return MSG_PROCESS_ERROR;
627 }
628
629 #ifndef OPENSSL_NO_NEXTPROTONEG
630 /*
631  * ssl3_take_mac calculates the Finished MAC for the handshakes messages seen
632  * to far.
633  */
634 static void ssl3_take_mac(SSL *s)
635 {
636     const char *sender;
637     size_t slen;
638     /*
639      * If no new cipher setup return immediately: other functions will set
640      * the appropriate error.
641      */
642     if (s->s3->tmp.new_cipher == NULL)
643         return;
644     if (!s->server) {
645         sender = s->method->ssl3_enc->server_finished_label;
646         slen = s->method->ssl3_enc->server_finished_label_len;
647     } else {
648         sender = s->method->ssl3_enc->client_finished_label;
649         slen = s->method->ssl3_enc->client_finished_label_len;
650     }
651
652     s->s3->tmp.peer_finish_md_len = s->method->ssl3_enc->final_finish_mac(s,
653                                                                           sender,
654                                                                           slen,
655                                                                           s->s3->tmp.peer_finish_md);
656 }
657 #endif
658
659 MSG_PROCESS_RETURN tls_process_change_cipher_spec(SSL *s, PACKET *pkt)
660 {
661     int al;
662     size_t remain;
663
664     remain = PACKET_remaining(pkt);
665     /*
666      * 'Change Cipher Spec' is just a single byte, which should already have
667      * been consumed by ssl_get_message() so there should be no bytes left,
668      * unless we're using DTLS1_BAD_VER, which has an extra 2 bytes
669      */
670     if (SSL_IS_DTLS(s)) {
671         if ((s->version == DTLS1_BAD_VER
672              && remain != DTLS1_CCS_HEADER_LENGTH + 1)
673             || (s->version != DTLS1_BAD_VER
674                 && remain != DTLS1_CCS_HEADER_LENGTH - 1)) {
675             al = SSL_AD_DECODE_ERROR;
676             SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC,
677                    SSL_R_BAD_CHANGE_CIPHER_SPEC);
678             goto f_err;
679         }
680     } else {
681         if (remain != 0) {
682             al = SSL_AD_DECODE_ERROR;
683             SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC,
684                    SSL_R_BAD_CHANGE_CIPHER_SPEC);
685             goto f_err;
686         }
687     }
688
689     /* Check we have a cipher to change to */
690     if (s->s3->tmp.new_cipher == NULL) {
691         al = SSL_AD_UNEXPECTED_MESSAGE;
692         SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC, SSL_R_CCS_RECEIVED_EARLY);
693         goto f_err;
694     }
695
696     s->s3->change_cipher_spec = 1;
697     if (!ssl3_do_change_cipher_spec(s)) {
698         al = SSL_AD_INTERNAL_ERROR;
699         SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
700         goto f_err;
701     }
702
703     if (SSL_IS_DTLS(s)) {
704         dtls1_reset_seq_numbers(s, SSL3_CC_READ);
705
706         if (s->version == DTLS1_BAD_VER)
707             s->d1->handshake_read_seq++;
708
709 #ifndef OPENSSL_NO_SCTP
710         /*
711          * Remember that a CCS has been received, so that an old key of
712          * SCTP-Auth can be deleted when a CCS is sent. Will be ignored if no
713          * SCTP is used
714          */
715         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD, 1, NULL);
716 #endif
717     }
718
719     return MSG_PROCESS_CONTINUE_READING;
720  f_err:
721     ssl3_send_alert(s, SSL3_AL_FATAL, al);
722     ossl_statem_set_error(s);
723     return MSG_PROCESS_ERROR;
724 }
725
726 MSG_PROCESS_RETURN tls_process_finished(SSL *s, PACKET *pkt)
727 {
728     int al = SSL_AD_INTERNAL_ERROR;
729     size_t md_len;
730
731
732     /* This is a real handshake so make sure we clean it up at the end */
733     if (s->server)
734         s->statem.cleanuphand = 1;
735
736     /*
737      * In TLSv1.3 a Finished message signals a key change so the end of the
738      * message must be on a record boundary.
739      */
740     if (SSL_IS_TLS13(s) && RECORD_LAYER_processed_read_pending(&s->rlayer)) {
741         al = SSL_AD_UNEXPECTED_MESSAGE;
742         SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_NOT_ON_RECORD_BOUNDARY);
743         goto f_err;
744     }
745
746     /* If this occurs, we have missed a message */
747     if (!SSL_IS_TLS13(s) && !s->s3->change_cipher_spec) {
748         al = SSL_AD_UNEXPECTED_MESSAGE;
749         SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_GOT_A_FIN_BEFORE_A_CCS);
750         goto f_err;
751     }
752     s->s3->change_cipher_spec = 0;
753
754     md_len = s->s3->tmp.peer_finish_md_len;
755
756     if (md_len != PACKET_remaining(pkt)) {
757         al = SSL_AD_DECODE_ERROR;
758         SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_BAD_DIGEST_LENGTH);
759         goto f_err;
760     }
761
762     if (CRYPTO_memcmp(PACKET_data(pkt), s->s3->tmp.peer_finish_md,
763                       md_len) != 0) {
764         al = SSL_AD_DECRYPT_ERROR;
765         SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_DIGEST_CHECK_FAILED);
766         goto f_err;
767     }
768
769     /*
770      * Copy the finished so we can use it for renegotiation checks
771      */
772     if (!ossl_assert(md_len <= EVP_MAX_MD_SIZE)) {
773         al = SSL_AD_INTERNAL_ERROR;
774         SSLerr(SSL_F_TLS_PROCESS_FINISHED, ERR_R_INTERNAL_ERROR);
775         goto f_err;
776     }
777     if (s->server) {
778         memcpy(s->s3->previous_client_finished, s->s3->tmp.peer_finish_md,
779                md_len);
780         s->s3->previous_client_finished_len = md_len;
781     } else {
782         memcpy(s->s3->previous_server_finished, s->s3->tmp.peer_finish_md,
783                md_len);
784         s->s3->previous_server_finished_len = md_len;
785     }
786
787     /*
788      * In TLS1.3 we also have to change cipher state and do any final processing
789      * of the initial server flight (if we are a client)
790      */
791     if (SSL_IS_TLS13(s)) {
792         if (s->server) {
793             if (!s->method->ssl3_enc->change_cipher_state(s,
794                     SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_READ)) {
795                 SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_CANNOT_CHANGE_CIPHER);
796                 goto f_err;
797             }
798         } else {
799             if (!s->method->ssl3_enc->generate_master_secret(s,
800                     s->master_secret, s->handshake_secret, 0,
801                     &s->session->master_key_length)) {
802                 SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_CANNOT_CHANGE_CIPHER);
803                 goto f_err;
804             }
805             if (!s->method->ssl3_enc->change_cipher_state(s,
806                     SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_CLIENT_READ)) {
807                 SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_CANNOT_CHANGE_CIPHER);
808                 goto f_err;
809             }
810             if (!tls_process_initial_server_flight(s, &al))
811                 goto f_err;
812         }
813     }
814
815     return MSG_PROCESS_FINISHED_READING;
816  f_err:
817     ssl3_send_alert(s, SSL3_AL_FATAL, al);
818     ossl_statem_set_error(s);
819     return MSG_PROCESS_ERROR;
820 }
821
822 int tls_construct_change_cipher_spec(SSL *s, WPACKET *pkt)
823 {
824     if (!WPACKET_put_bytes_u8(pkt, SSL3_MT_CCS)) {
825         SSLerr(SSL_F_TLS_CONSTRUCT_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
826         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
827         return 0;
828     }
829
830     return 1;
831 }
832
833 /* Add a certificate to the WPACKET */
834 static int ssl_add_cert_to_wpacket(SSL *s, WPACKET *pkt, X509 *x, int chain,
835                                    int *al)
836 {
837     int len;
838     unsigned char *outbytes;
839
840     len = i2d_X509(x, NULL);
841     if (len < 0) {
842         SSLerr(SSL_F_SSL_ADD_CERT_TO_WPACKET, ERR_R_BUF_LIB);
843         *al = SSL_AD_INTERNAL_ERROR;
844         return 0;
845     }
846     if (!WPACKET_sub_allocate_bytes_u24(pkt, len, &outbytes)
847             || i2d_X509(x, &outbytes) != len) {
848         SSLerr(SSL_F_SSL_ADD_CERT_TO_WPACKET, ERR_R_INTERNAL_ERROR);
849         *al = SSL_AD_INTERNAL_ERROR;
850         return 0;
851     }
852
853     if (SSL_IS_TLS13(s)
854             && !tls_construct_extensions(s, pkt, SSL_EXT_TLS1_3_CERTIFICATE, x,
855                                          chain, al))
856         return 0;
857
858     return 1;
859 }
860
861 /* Add certificate chain to provided WPACKET */
862 static int ssl_add_cert_chain(SSL *s, WPACKET *pkt, CERT_PKEY *cpk, int *al)
863 {
864     int i, chain_count;
865     X509 *x;
866     STACK_OF(X509) *extra_certs;
867     STACK_OF(X509) *chain = NULL;
868     X509_STORE *chain_store;
869     int tmpal = SSL_AD_INTERNAL_ERROR;
870
871     if (cpk == NULL || cpk->x509 == NULL)
872         return 1;
873
874     x = cpk->x509;
875
876     /*
877      * If we have a certificate specific chain use it, else use parent ctx.
878      */
879     if (cpk->chain != NULL)
880         extra_certs = cpk->chain;
881     else
882         extra_certs = s->ctx->extra_certs;
883
884     if ((s->mode & SSL_MODE_NO_AUTO_CHAIN) || extra_certs)
885         chain_store = NULL;
886     else if (s->cert->chain_store)
887         chain_store = s->cert->chain_store;
888     else
889         chain_store = s->ctx->cert_store;
890
891     if (chain_store != NULL) {
892         X509_STORE_CTX *xs_ctx = X509_STORE_CTX_new();
893
894         if (xs_ctx == NULL) {
895             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_MALLOC_FAILURE);
896             goto err;
897         }
898         if (!X509_STORE_CTX_init(xs_ctx, chain_store, x, NULL)) {
899             X509_STORE_CTX_free(xs_ctx);
900             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, ERR_R_X509_LIB);
901             goto err;
902         }
903         /*
904          * It is valid for the chain not to be complete (because normally we
905          * don't include the root cert in the chain). Therefore we deliberately
906          * ignore the error return from this call. We're not actually verifying
907          * the cert - we're just building as much of the chain as we can
908          */
909         (void)X509_verify_cert(xs_ctx);
910         /* Don't leave errors in the queue */
911         ERR_clear_error();
912         chain = X509_STORE_CTX_get0_chain(xs_ctx);
913         i = ssl_security_cert_chain(s, chain, NULL, 0);
914         if (i != 1) {
915 #if 0
916             /* Dummy error calls so mkerr generates them */
917             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_EE_KEY_TOO_SMALL);
918             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_CA_KEY_TOO_SMALL);
919             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, SSL_R_CA_MD_TOO_WEAK);
920 #endif
921             X509_STORE_CTX_free(xs_ctx);
922             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
923             goto err;
924         }
925         chain_count = sk_X509_num(chain);
926         for (i = 0; i < chain_count; i++) {
927             x = sk_X509_value(chain, i);
928
929             if (!ssl_add_cert_to_wpacket(s, pkt, x, i, &tmpal)) {
930                 X509_STORE_CTX_free(xs_ctx);
931                 goto err;
932             }
933         }
934         X509_STORE_CTX_free(xs_ctx);
935     } else {
936         i = ssl_security_cert_chain(s, extra_certs, x, 0);
937         if (i != 1) {
938             SSLerr(SSL_F_SSL_ADD_CERT_CHAIN, i);
939             goto err;
940         }
941         if (!ssl_add_cert_to_wpacket(s, pkt, x, 0, &tmpal))
942             goto err;
943         for (i = 0; i < sk_X509_num(extra_certs); i++) {
944             x = sk_X509_value(extra_certs, i);
945             if (!ssl_add_cert_to_wpacket(s, pkt, x, i + 1, &tmpal))
946                 goto err;
947         }
948     }
949     return 1;
950
951  err:
952     *al = tmpal;
953     return 0;
954 }
955
956 unsigned long ssl3_output_cert_chain(SSL *s, WPACKET *pkt, CERT_PKEY *cpk,
957                                      int *al)
958 {
959     int tmpal = SSL_AD_INTERNAL_ERROR;
960
961     if (!WPACKET_start_sub_packet_u24(pkt)
962             || !ssl_add_cert_chain(s, pkt, cpk, &tmpal)
963             || !WPACKET_close(pkt)) {
964         SSLerr(SSL_F_SSL3_OUTPUT_CERT_CHAIN, ERR_R_INTERNAL_ERROR);
965         *al = tmpal;
966         return 0;
967     }
968     return 1;
969 }
970
971 /*
972  * Tidy up after the end of a handshake. In the case of SCTP this may result
973  * in NBIO events. If |clearbufs| is set then init_buf and the wbio buffer is
974  * freed up as well.
975  */
976 WORK_STATE tls_finish_handshake(SSL *s, WORK_STATE wst, int clearbufs)
977 {
978     void (*cb) (const SSL *ssl, int type, int val) = NULL;
979
980 #ifndef OPENSSL_NO_SCTP
981     if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))) {
982         WORK_STATE ret;
983         ret = dtls_wait_for_dry(s);
984         if (ret != WORK_FINISHED_CONTINUE)
985             return ret;
986     }
987 #endif
988
989     if (clearbufs) {
990         if (!SSL_IS_DTLS(s)) {
991             /*
992              * We don't do this in DTLS because we may still need the init_buf
993              * in case there are any unexpected retransmits
994              */
995             BUF_MEM_free(s->init_buf);
996             s->init_buf = NULL;
997         }
998         if (!ssl_free_wbio_buffer(s))
999             return WORK_ERROR;
1000         s->init_num = 0;
1001     }
1002
1003     if (s->statem.cleanuphand) {
1004         /* skipped if we just sent a HelloRequest */
1005         s->renegotiate = 0;
1006         s->new_session = 0;
1007         s->statem.cleanuphand = 0;
1008
1009         ssl3_cleanup_key_block(s);
1010
1011         if (s->server) {
1012             ssl_update_cache(s, SSL_SESS_CACHE_SERVER);
1013
1014             s->ctx->stats.sess_accept_good++;
1015             s->handshake_func = ossl_statem_accept;
1016         } else {
1017             ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
1018             if (s->hit)
1019                 s->ctx->stats.sess_hit++;
1020
1021             s->handshake_func = ossl_statem_connect;
1022             s->ctx->stats.sess_connect_good++;
1023         }
1024
1025         if (s->info_callback != NULL)
1026             cb = s->info_callback;
1027         else if (s->ctx->info_callback != NULL)
1028             cb = s->ctx->info_callback;
1029
1030         if (cb != NULL)
1031             cb(s, SSL_CB_HANDSHAKE_DONE, 1);
1032
1033         if (SSL_IS_DTLS(s)) {
1034             /* done with handshaking */
1035             s->d1->handshake_read_seq = 0;
1036             s->d1->handshake_write_seq = 0;
1037             s->d1->next_handshake_write_seq = 0;
1038             dtls1_clear_received_buffer(s);
1039         }
1040     }
1041
1042     /*
1043      * If we've not cleared the buffers its because we've got more work to do,
1044      * so continue.
1045      */
1046     if (!clearbufs)
1047         return WORK_FINISHED_CONTINUE;
1048
1049     ossl_statem_set_in_init(s, 0);
1050     return WORK_FINISHED_STOP;
1051 }
1052
1053 int tls_get_message_header(SSL *s, int *mt)
1054 {
1055     /* s->init_num < SSL3_HM_HEADER_LENGTH */
1056     int skip_message, i, recvd_type, al;
1057     unsigned char *p;
1058     size_t l, readbytes;
1059
1060     p = (unsigned char *)s->init_buf->data;
1061
1062     do {
1063         while (s->init_num < SSL3_HM_HEADER_LENGTH) {
1064             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, &recvd_type,
1065                                           &p[s->init_num],
1066                                           SSL3_HM_HEADER_LENGTH - s->init_num,
1067                                           0, &readbytes);
1068             if (i <= 0) {
1069                 s->rwstate = SSL_READING;
1070                 return 0;
1071             }
1072             if (recvd_type == SSL3_RT_CHANGE_CIPHER_SPEC) {
1073                 /*
1074                  * A ChangeCipherSpec must be a single byte and may not occur
1075                  * in the middle of a handshake message.
1076                  */
1077                 if (s->init_num != 0 || readbytes != 1 || p[0] != SSL3_MT_CCS) {
1078                     al = SSL_AD_UNEXPECTED_MESSAGE;
1079                     SSLerr(SSL_F_TLS_GET_MESSAGE_HEADER,
1080                            SSL_R_BAD_CHANGE_CIPHER_SPEC);
1081                     goto f_err;
1082                 }
1083                 s->s3->tmp.message_type = *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
1084                 s->init_num = readbytes - 1;
1085                 s->init_msg = s->init_buf->data;
1086                 s->s3->tmp.message_size = readbytes;
1087                 return 1;
1088             } else if (recvd_type != SSL3_RT_HANDSHAKE) {
1089                 al = SSL_AD_UNEXPECTED_MESSAGE;
1090                 SSLerr(SSL_F_TLS_GET_MESSAGE_HEADER, SSL_R_CCS_RECEIVED_EARLY);
1091                 goto f_err;
1092             }
1093             s->init_num += readbytes;
1094         }
1095
1096         skip_message = 0;
1097         if (!s->server)
1098             if (s->statem.hand_state != TLS_ST_OK
1099                     && p[0] == SSL3_MT_HELLO_REQUEST)
1100                 /*
1101                  * The server may always send 'Hello Request' messages --
1102                  * we are doing a handshake anyway now, so ignore them if
1103                  * their format is correct. Does not count for 'Finished'
1104                  * MAC.
1105                  */
1106                 if (p[1] == 0 && p[2] == 0 && p[3] == 0) {
1107                     s->init_num = 0;
1108                     skip_message = 1;
1109
1110                     if (s->msg_callback)
1111                         s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
1112                                         p, SSL3_HM_HEADER_LENGTH, s,
1113                                         s->msg_callback_arg);
1114                 }
1115     } while (skip_message);
1116     /* s->init_num == SSL3_HM_HEADER_LENGTH */
1117
1118     *mt = *p;
1119     s->s3->tmp.message_type = *(p++);
1120
1121     if (RECORD_LAYER_is_sslv2_record(&s->rlayer)) {
1122         /*
1123          * Only happens with SSLv3+ in an SSLv2 backward compatible
1124          * ClientHello
1125          *
1126          * Total message size is the remaining record bytes to read
1127          * plus the SSL3_HM_HEADER_LENGTH bytes that we already read
1128          */
1129         l = RECORD_LAYER_get_rrec_length(&s->rlayer)
1130             + SSL3_HM_HEADER_LENGTH;
1131         s->s3->tmp.message_size = l;
1132
1133         s->init_msg = s->init_buf->data;
1134         s->init_num = SSL3_HM_HEADER_LENGTH;
1135     } else {
1136         n2l3(p, l);
1137         /* BUF_MEM_grow takes an 'int' parameter */
1138         if (l > (INT_MAX - SSL3_HM_HEADER_LENGTH)) {
1139             al = SSL_AD_ILLEGAL_PARAMETER;
1140             SSLerr(SSL_F_TLS_GET_MESSAGE_HEADER, SSL_R_EXCESSIVE_MESSAGE_SIZE);
1141             goto f_err;
1142         }
1143         s->s3->tmp.message_size = l;
1144
1145         s->init_msg = s->init_buf->data + SSL3_HM_HEADER_LENGTH;
1146         s->init_num = 0;
1147     }
1148
1149     return 1;
1150  f_err:
1151     ssl3_send_alert(s, SSL3_AL_FATAL, al);
1152     return 0;
1153 }
1154
1155 int tls_get_message_body(SSL *s, size_t *len)
1156 {
1157     size_t n, readbytes;
1158     unsigned char *p;
1159     int i;
1160
1161     if (s->s3->tmp.message_type == SSL3_MT_CHANGE_CIPHER_SPEC) {
1162         /* We've already read everything in */
1163         *len = (unsigned long)s->init_num;
1164         return 1;
1165     }
1166
1167     p = s->init_msg;
1168     n = s->s3->tmp.message_size - s->init_num;
1169     while (n > 0) {
1170         i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
1171                                       &p[s->init_num], n, 0, &readbytes);
1172         if (i <= 0) {
1173             s->rwstate = SSL_READING;
1174             *len = 0;
1175             return 0;
1176         }
1177         s->init_num += readbytes;
1178         n -= readbytes;
1179     }
1180
1181 #ifndef OPENSSL_NO_NEXTPROTONEG
1182     /*
1183      * If receiving Finished, record MAC of prior handshake messages for
1184      * Finished verification.
1185      */
1186     if (*s->init_buf->data == SSL3_MT_FINISHED)
1187         ssl3_take_mac(s);
1188 #endif
1189
1190     /* Feed this message into MAC computation. */
1191     if (RECORD_LAYER_is_sslv2_record(&s->rlayer)) {
1192         if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
1193                              s->init_num)) {
1194             SSLerr(SSL_F_TLS_GET_MESSAGE_BODY, ERR_R_EVP_LIB);
1195             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
1196             *len = 0;
1197             return 0;
1198         }
1199         if (s->msg_callback)
1200             s->msg_callback(0, SSL2_VERSION, 0, s->init_buf->data,
1201                             (size_t)s->init_num, s, s->msg_callback_arg);
1202     } else {
1203         /*
1204          * We defer feeding in the HRR until later. We'll do it as part of
1205          * processing the message
1206          */
1207         if (s->s3->tmp.message_type != SSL3_MT_HELLO_RETRY_REQUEST
1208                 && !ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
1209                                     s->init_num + SSL3_HM_HEADER_LENGTH)) {
1210             SSLerr(SSL_F_TLS_GET_MESSAGE_BODY, ERR_R_EVP_LIB);
1211             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
1212             *len = 0;
1213             return 0;
1214         }
1215         if (s->msg_callback)
1216             s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, s->init_buf->data,
1217                             (size_t)s->init_num + SSL3_HM_HEADER_LENGTH, s,
1218                             s->msg_callback_arg);
1219     }
1220
1221     *len = s->init_num;
1222     return 1;
1223 }
1224
1225 int ssl_cert_type(const X509 *x, const EVP_PKEY *pk)
1226 {
1227     if (pk == NULL && (pk = X509_get0_pubkey(x)) == NULL)
1228         return -1;
1229
1230     switch (EVP_PKEY_id(pk)) {
1231     default:
1232         return -1;
1233     case EVP_PKEY_RSA:
1234         return SSL_PKEY_RSA;
1235     case EVP_PKEY_DSA:
1236         return SSL_PKEY_DSA_SIGN;
1237 #ifndef OPENSSL_NO_EC
1238     case EVP_PKEY_EC:
1239         return SSL_PKEY_ECC;
1240 #endif
1241 #ifndef OPENSSL_NO_GOST
1242     case NID_id_GostR3410_2001:
1243         return SSL_PKEY_GOST01;
1244     case NID_id_GostR3410_2012_256:
1245         return SSL_PKEY_GOST12_256;
1246     case NID_id_GostR3410_2012_512:
1247         return SSL_PKEY_GOST12_512;
1248 #endif
1249     }
1250 }
1251
1252 int ssl_verify_alarm_type(long type)
1253 {
1254     int al;
1255
1256     switch (type) {
1257     case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
1258     case X509_V_ERR_UNABLE_TO_GET_CRL:
1259     case X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER:
1260         al = SSL_AD_UNKNOWN_CA;
1261         break;
1262     case X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE:
1263     case X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE:
1264     case X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY:
1265     case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
1266     case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
1267     case X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD:
1268     case X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD:
1269     case X509_V_ERR_CERT_NOT_YET_VALID:
1270     case X509_V_ERR_CRL_NOT_YET_VALID:
1271     case X509_V_ERR_CERT_UNTRUSTED:
1272     case X509_V_ERR_CERT_REJECTED:
1273     case X509_V_ERR_HOSTNAME_MISMATCH:
1274     case X509_V_ERR_EMAIL_MISMATCH:
1275     case X509_V_ERR_IP_ADDRESS_MISMATCH:
1276     case X509_V_ERR_DANE_NO_MATCH:
1277     case X509_V_ERR_EE_KEY_TOO_SMALL:
1278     case X509_V_ERR_CA_KEY_TOO_SMALL:
1279     case X509_V_ERR_CA_MD_TOO_WEAK:
1280         al = SSL_AD_BAD_CERTIFICATE;
1281         break;
1282     case X509_V_ERR_CERT_SIGNATURE_FAILURE:
1283     case X509_V_ERR_CRL_SIGNATURE_FAILURE:
1284         al = SSL_AD_DECRYPT_ERROR;
1285         break;
1286     case X509_V_ERR_CERT_HAS_EXPIRED:
1287     case X509_V_ERR_CRL_HAS_EXPIRED:
1288         al = SSL_AD_CERTIFICATE_EXPIRED;
1289         break;
1290     case X509_V_ERR_CERT_REVOKED:
1291         al = SSL_AD_CERTIFICATE_REVOKED;
1292         break;
1293     case X509_V_ERR_UNSPECIFIED:
1294     case X509_V_ERR_OUT_OF_MEM:
1295     case X509_V_ERR_INVALID_CALL:
1296     case X509_V_ERR_STORE_LOOKUP:
1297         al = SSL_AD_INTERNAL_ERROR;
1298         break;
1299     case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
1300     case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
1301     case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
1302     case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE:
1303     case X509_V_ERR_CERT_CHAIN_TOO_LONG:
1304     case X509_V_ERR_PATH_LENGTH_EXCEEDED:
1305     case X509_V_ERR_INVALID_CA:
1306         al = SSL_AD_UNKNOWN_CA;
1307         break;
1308     case X509_V_ERR_APPLICATION_VERIFICATION:
1309         al = SSL_AD_HANDSHAKE_FAILURE;
1310         break;
1311     case X509_V_ERR_INVALID_PURPOSE:
1312         al = SSL_AD_UNSUPPORTED_CERTIFICATE;
1313         break;
1314     default:
1315         al = SSL_AD_CERTIFICATE_UNKNOWN;
1316         break;
1317     }
1318     return (al);
1319 }
1320
1321 int ssl_allow_compression(SSL *s)
1322 {
1323     if (s->options & SSL_OP_NO_COMPRESSION)
1324         return 0;
1325     return ssl_security(s, SSL_SECOP_COMPRESSION, 0, 0, NULL);
1326 }
1327
1328 static int version_cmp(const SSL *s, int a, int b)
1329 {
1330     int dtls = SSL_IS_DTLS(s);
1331
1332     if (a == b)
1333         return 0;
1334     if (!dtls)
1335         return a < b ? -1 : 1;
1336     return DTLS_VERSION_LT(a, b) ? -1 : 1;
1337 }
1338
1339 typedef struct {
1340     int version;
1341     const SSL_METHOD *(*cmeth) (void);
1342     const SSL_METHOD *(*smeth) (void);
1343 } version_info;
1344
1345 #if TLS_MAX_VERSION != TLS1_3_VERSION
1346 # error Code needs update for TLS_method() support beyond TLS1_3_VERSION.
1347 #endif
1348
1349 /* Must be in order high to low */
1350 static const version_info tls_version_table[] = {
1351 #ifndef OPENSSL_NO_TLS1_3
1352     {TLS1_3_VERSION, tlsv1_3_client_method, tlsv1_3_server_method},
1353 #else
1354     {TLS1_3_VERSION, NULL, NULL},
1355 #endif
1356 #ifndef OPENSSL_NO_TLS1_2
1357     {TLS1_2_VERSION, tlsv1_2_client_method, tlsv1_2_server_method},
1358 #else
1359     {TLS1_2_VERSION, NULL, NULL},
1360 #endif
1361 #ifndef OPENSSL_NO_TLS1_1
1362     {TLS1_1_VERSION, tlsv1_1_client_method, tlsv1_1_server_method},
1363 #else
1364     {TLS1_1_VERSION, NULL, NULL},
1365 #endif
1366 #ifndef OPENSSL_NO_TLS1
1367     {TLS1_VERSION, tlsv1_client_method, tlsv1_server_method},
1368 #else
1369     {TLS1_VERSION, NULL, NULL},
1370 #endif
1371 #ifndef OPENSSL_NO_SSL3
1372     {SSL3_VERSION, sslv3_client_method, sslv3_server_method},
1373 #else
1374     {SSL3_VERSION, NULL, NULL},
1375 #endif
1376     {0, NULL, NULL},
1377 };
1378
1379 #if DTLS_MAX_VERSION != DTLS1_2_VERSION
1380 # error Code needs update for DTLS_method() support beyond DTLS1_2_VERSION.
1381 #endif
1382
1383 /* Must be in order high to low */
1384 static const version_info dtls_version_table[] = {
1385 #ifndef OPENSSL_NO_DTLS1_2
1386     {DTLS1_2_VERSION, dtlsv1_2_client_method, dtlsv1_2_server_method},
1387 #else
1388     {DTLS1_2_VERSION, NULL, NULL},
1389 #endif
1390 #ifndef OPENSSL_NO_DTLS1
1391     {DTLS1_VERSION, dtlsv1_client_method, dtlsv1_server_method},
1392     {DTLS1_BAD_VER, dtls_bad_ver_client_method, NULL},
1393 #else
1394     {DTLS1_VERSION, NULL, NULL},
1395     {DTLS1_BAD_VER, NULL, NULL},
1396 #endif
1397     {0, NULL, NULL},
1398 };
1399
1400 /*
1401  * ssl_method_error - Check whether an SSL_METHOD is enabled.
1402  *
1403  * @s: The SSL handle for the candidate method
1404  * @method: the intended method.
1405  *
1406  * Returns 0 on success, or an SSL error reason on failure.
1407  */
1408 static int ssl_method_error(const SSL *s, const SSL_METHOD *method)
1409 {
1410     int version = method->version;
1411
1412     if ((s->min_proto_version != 0 &&
1413          version_cmp(s, version, s->min_proto_version) < 0) ||
1414         ssl_security(s, SSL_SECOP_VERSION, 0, version, NULL) == 0)
1415         return SSL_R_VERSION_TOO_LOW;
1416
1417     if (s->max_proto_version != 0 &&
1418         version_cmp(s, version, s->max_proto_version) > 0)
1419         return SSL_R_VERSION_TOO_HIGH;
1420
1421     if ((s->options & method->mask) != 0)
1422         return SSL_R_UNSUPPORTED_PROTOCOL;
1423     if ((method->flags & SSL_METHOD_NO_SUITEB) != 0 && tls1_suiteb(s))
1424         return SSL_R_AT_LEAST_TLS_1_2_NEEDED_IN_SUITEB_MODE;
1425
1426     return 0;
1427 }
1428
1429 /*
1430  * ssl_version_supported - Check that the specified `version` is supported by
1431  * `SSL *` instance
1432  *
1433  * @s: The SSL handle for the candidate method
1434  * @version: Protocol version to test against
1435  *
1436  * Returns 1 when supported, otherwise 0
1437  */
1438 int ssl_version_supported(const SSL *s, int version)
1439 {
1440     const version_info *vent;
1441     const version_info *table;
1442
1443     switch (s->method->version) {
1444     default:
1445         /* Version should match method version for non-ANY method */
1446         return version_cmp(s, version, s->version) == 0;
1447     case TLS_ANY_VERSION:
1448         table = tls_version_table;
1449         break;
1450     case DTLS_ANY_VERSION:
1451         table = dtls_version_table;
1452         break;
1453     }
1454
1455     for (vent = table;
1456          vent->version != 0 && version_cmp(s, version, vent->version) <= 0;
1457          ++vent) {
1458         if (vent->cmeth != NULL &&
1459             version_cmp(s, version, vent->version) == 0 &&
1460             ssl_method_error(s, vent->cmeth()) == 0) {
1461             return 1;
1462         }
1463     }
1464     return 0;
1465 }
1466
1467 /*
1468  * ssl_check_version_downgrade - In response to RFC7507 SCSV version
1469  * fallback indication from a client check whether we're using the highest
1470  * supported protocol version.
1471  *
1472  * @s server SSL handle.
1473  *
1474  * Returns 1 when using the highest enabled version, 0 otherwise.
1475  */
1476 int ssl_check_version_downgrade(SSL *s)
1477 {
1478     const version_info *vent;
1479     const version_info *table;
1480
1481     /*
1482      * Check that the current protocol is the highest enabled version
1483      * (according to s->ctx->method, as version negotiation may have changed
1484      * s->method).
1485      */
1486     if (s->version == s->ctx->method->version)
1487         return 1;
1488
1489     /*
1490      * Apparently we're using a version-flexible SSL_METHOD (not at its
1491      * highest protocol version).
1492      */
1493     if (s->ctx->method->version == TLS_method()->version)
1494         table = tls_version_table;
1495     else if (s->ctx->method->version == DTLS_method()->version)
1496         table = dtls_version_table;
1497     else {
1498         /* Unexpected state; fail closed. */
1499         return 0;
1500     }
1501
1502     for (vent = table; vent->version != 0; ++vent) {
1503         if (vent->smeth != NULL && ssl_method_error(s, vent->smeth()) == 0)
1504             return s->version == vent->version;
1505     }
1506     return 0;
1507 }
1508
1509 /*
1510  * ssl_set_version_bound - set an upper or lower bound on the supported (D)TLS
1511  * protocols, provided the initial (D)TLS method is version-flexible.  This
1512  * function sanity-checks the proposed value and makes sure the method is
1513  * version-flexible, then sets the limit if all is well.
1514  *
1515  * @method_version: The version of the current SSL_METHOD.
1516  * @version: the intended limit.
1517  * @bound: pointer to limit to be updated.
1518  *
1519  * Returns 1 on success, 0 on failure.
1520  */
1521 int ssl_set_version_bound(int method_version, int version, int *bound)
1522 {
1523     if (version == 0) {
1524         *bound = version;
1525         return 1;
1526     }
1527
1528     /*-
1529      * Restrict TLS methods to TLS protocol versions.
1530      * Restrict DTLS methods to DTLS protocol versions.
1531      * Note, DTLS version numbers are decreasing, use comparison macros.
1532      *
1533      * Note that for both lower-bounds we use explicit versions, not
1534      * (D)TLS_MIN_VERSION.  This is because we don't want to break user
1535      * configurations.  If the MIN (supported) version ever rises, the user's
1536      * "floor" remains valid even if no longer available.  We don't expect the
1537      * MAX ceiling to ever get lower, so making that variable makes sense.
1538      */
1539     switch (method_version) {
1540     default:
1541         /*
1542          * XXX For fixed version methods, should we always fail and not set any
1543          * bounds, always succeed and not set any bounds, or set the bounds and
1544          * arrange to fail later if they are not met?  At present fixed-version
1545          * methods are not subject to controls that disable individual protocol
1546          * versions.
1547          */
1548         return 0;
1549
1550     case TLS_ANY_VERSION:
1551         if (version < SSL3_VERSION || version > TLS_MAX_VERSION)
1552             return 0;
1553         break;
1554
1555     case DTLS_ANY_VERSION:
1556         if (DTLS_VERSION_GT(version, DTLS_MAX_VERSION) ||
1557             DTLS_VERSION_LT(version, DTLS1_BAD_VER))
1558             return 0;
1559         break;
1560     }
1561
1562     *bound = version;
1563     return 1;
1564 }
1565
1566 static void check_for_downgrade(SSL *s, int vers, DOWNGRADE *dgrd)
1567 {
1568     if (vers == TLS1_2_VERSION
1569             && ssl_version_supported(s, TLS1_3_VERSION)) {
1570         *dgrd = DOWNGRADE_TO_1_2;
1571     } else if (!SSL_IS_DTLS(s) && vers < TLS1_2_VERSION
1572             && (ssl_version_supported(s, TLS1_2_VERSION)
1573                 || ssl_version_supported(s, TLS1_3_VERSION))) {
1574         *dgrd = DOWNGRADE_TO_1_1;
1575     } else {
1576         *dgrd = DOWNGRADE_NONE;
1577     }
1578 }
1579
1580 /*
1581  * ssl_choose_server_version - Choose server (D)TLS version.  Called when the
1582  * client HELLO is received to select the final server protocol version and
1583  * the version specific method.
1584  *
1585  * @s: server SSL handle.
1586  *
1587  * Returns 0 on success or an SSL error reason number on failure.
1588  */
1589 int ssl_choose_server_version(SSL *s, CLIENTHELLO_MSG *hello, DOWNGRADE *dgrd)
1590 {
1591     /*-
1592      * With version-flexible methods we have an initial state with:
1593      *
1594      *   s->method->version == (D)TLS_ANY_VERSION,
1595      *   s->version == (D)TLS_MAX_VERSION.
1596      *
1597      * So we detect version-flexible methods via the method version, not the
1598      * handle version.
1599      */
1600     int server_version = s->method->version;
1601     int client_version = hello->legacy_version;
1602     const version_info *vent;
1603     const version_info *table;
1604     int disabled = 0;
1605     RAW_EXTENSION *suppversions;
1606
1607     s->client_version = client_version;
1608
1609     switch (server_version) {
1610     default:
1611         if (!SSL_IS_TLS13(s)) {
1612             if (version_cmp(s, client_version, s->version) < 0)
1613                 return SSL_R_WRONG_SSL_VERSION;
1614             *dgrd = DOWNGRADE_NONE;
1615             /*
1616              * If this SSL handle is not from a version flexible method we don't
1617              * (and never did) check min/max FIPS or Suite B constraints.  Hope
1618              * that's OK.  It is up to the caller to not choose fixed protocol
1619              * versions they don't want.  If not, then easy to fix, just return
1620              * ssl_method_error(s, s->method)
1621              */
1622             return 0;
1623         }
1624         /*
1625          * Fall through if we are TLSv1.3 already (this means we must be after
1626          * a HelloRetryRequest
1627          */
1628         /* fall thru */
1629     case TLS_ANY_VERSION:
1630         table = tls_version_table;
1631         break;
1632     case DTLS_ANY_VERSION:
1633         table = dtls_version_table;
1634         break;
1635     }
1636
1637     suppversions = &hello->pre_proc_exts[TLSEXT_IDX_supported_versions];
1638
1639     if (suppversions->present && !SSL_IS_DTLS(s)) {
1640         unsigned int candidate_vers = 0;
1641         unsigned int best_vers = 0;
1642         const SSL_METHOD *best_method = NULL;
1643         PACKET versionslist;
1644
1645         suppversions->parsed = 1;
1646
1647         if (!PACKET_as_length_prefixed_1(&suppversions->data, &versionslist)) {
1648             /* Trailing or invalid data? */
1649             return SSL_R_LENGTH_MISMATCH;
1650         }
1651
1652         while (PACKET_get_net_2(&versionslist, &candidate_vers)) {
1653             /* TODO(TLS1.3): Remove this before release */
1654             if (candidate_vers == TLS1_3_VERSION_DRAFT)
1655                 candidate_vers = TLS1_3_VERSION;
1656             /*
1657              * TODO(TLS1.3): There is some discussion on the TLS list about
1658              * whether to ignore versions <TLS1.2 in supported_versions. At the
1659              * moment we honour them if present. To be reviewed later
1660              */
1661             if (version_cmp(s, candidate_vers, best_vers) <= 0)
1662                 continue;
1663             for (vent = table;
1664                  vent->version != 0 && vent->version != (int)candidate_vers;
1665                  ++vent)
1666                 continue;
1667             if (vent->version != 0 && vent->smeth != NULL) {
1668                 const SSL_METHOD *method;
1669
1670                 method = vent->smeth();
1671                 if (ssl_method_error(s, method) == 0) {
1672                     best_vers = candidate_vers;
1673                     best_method = method;
1674                 }
1675             }
1676         }
1677         if (PACKET_remaining(&versionslist) != 0) {
1678             /* Trailing data? */
1679             return SSL_R_LENGTH_MISMATCH;
1680         }
1681
1682         if (best_vers > 0) {
1683             if (SSL_IS_TLS13(s)) {
1684                 /*
1685                  * We get here if this is after a HelloRetryRequest. In this
1686                  * case we just check that we still negotiated TLSv1.3
1687                  */
1688                 if (best_vers != TLS1_3_VERSION)
1689                     return SSL_R_UNSUPPORTED_PROTOCOL;
1690                 return 0;
1691             }
1692             check_for_downgrade(s, best_vers, dgrd);
1693             s->version = best_vers;
1694             s->method = best_method;
1695             return 0;
1696         }
1697         return SSL_R_UNSUPPORTED_PROTOCOL;
1698     }
1699
1700     /*
1701      * If the supported versions extension isn't present, then the highest
1702      * version we can negotiate is TLSv1.2
1703      */
1704     if (version_cmp(s, client_version, TLS1_3_VERSION) >= 0)
1705         client_version = TLS1_2_VERSION;
1706
1707     /*
1708      * No supported versions extension, so we just use the version supplied in
1709      * the ClientHello.
1710      */
1711     for (vent = table; vent->version != 0; ++vent) {
1712         const SSL_METHOD *method;
1713
1714         if (vent->smeth == NULL ||
1715             version_cmp(s, client_version, vent->version) < 0)
1716             continue;
1717         method = vent->smeth();
1718         if (ssl_method_error(s, method) == 0) {
1719             check_for_downgrade(s, vent->version, dgrd);
1720             s->version = vent->version;
1721             s->method = method;
1722             return 0;
1723         }
1724         disabled = 1;
1725     }
1726     return disabled ? SSL_R_UNSUPPORTED_PROTOCOL : SSL_R_VERSION_TOO_LOW;
1727 }
1728
1729 /*
1730  * ssl_choose_client_version - Choose client (D)TLS version.  Called when the
1731  * server HELLO is received to select the final client protocol version and
1732  * the version specific method.
1733  *
1734  * @s: client SSL handle.
1735  * @version: The proposed version from the server's HELLO.
1736  * @checkdgrd: Whether to check the downgrade sentinels in the server_random
1737  * @al: Where to store any alert value that may be generated
1738  *
1739  * Returns 0 on success or an SSL error reason number on failure.
1740  */
1741 int ssl_choose_client_version(SSL *s, int version, int checkdgrd, int *al)
1742 {
1743     const version_info *vent;
1744     const version_info *table;
1745     int highver = 0;
1746
1747     /* TODO(TLS1.3): Remove this before release */
1748     if (version == TLS1_3_VERSION_DRAFT)
1749         version = TLS1_3_VERSION;
1750
1751     if (s->hello_retry_request && version != TLS1_3_VERSION) {
1752         *al = SSL_AD_PROTOCOL_VERSION;
1753         return SSL_R_WRONG_SSL_VERSION;
1754     }
1755
1756     switch (s->method->version) {
1757     default:
1758         if (version != s->version) {
1759             *al = SSL_AD_PROTOCOL_VERSION;
1760             return SSL_R_WRONG_SSL_VERSION;
1761         }
1762         /*
1763          * If this SSL handle is not from a version flexible method we don't
1764          * (and never did) check min/max, FIPS or Suite B constraints.  Hope
1765          * that's OK.  It is up to the caller to not choose fixed protocol
1766          * versions they don't want.  If not, then easy to fix, just return
1767          * ssl_method_error(s, s->method)
1768          */
1769         return 0;
1770     case TLS_ANY_VERSION:
1771         table = tls_version_table;
1772         break;
1773     case DTLS_ANY_VERSION:
1774         table = dtls_version_table;
1775         break;
1776     }
1777
1778     for (vent = table; vent->version != 0; ++vent) {
1779         const SSL_METHOD *method;
1780         int err;
1781
1782         if (vent->cmeth == NULL)
1783             continue;
1784
1785         if (highver != 0 && version != vent->version)
1786             continue;
1787
1788         method = vent->cmeth();
1789         err = ssl_method_error(s, method);
1790         if (err != 0) {
1791             if (version == vent->version) {
1792                 *al = SSL_AD_PROTOCOL_VERSION;
1793                 return err;
1794             }
1795
1796             continue;
1797         }
1798         if (highver == 0)
1799             highver = vent->version;
1800
1801         if (version != vent->version)
1802             continue;
1803
1804 #ifndef OPENSSL_NO_TLS13DOWNGRADE
1805         /* Check for downgrades */
1806         if (checkdgrd) {
1807             if (version == TLS1_2_VERSION && highver > version) {
1808                 if (memcmp(tls12downgrade,
1809                            s->s3->server_random + SSL3_RANDOM_SIZE
1810                                                 - sizeof(tls12downgrade),
1811                            sizeof(tls12downgrade)) == 0) {
1812                     *al = SSL_AD_ILLEGAL_PARAMETER;
1813                     return SSL_R_INAPPROPRIATE_FALLBACK;
1814                 }
1815             } else if (!SSL_IS_DTLS(s)
1816                        && version < TLS1_2_VERSION
1817                        && highver > version) {
1818                 if (memcmp(tls11downgrade,
1819                            s->s3->server_random + SSL3_RANDOM_SIZE
1820                                                 - sizeof(tls11downgrade),
1821                            sizeof(tls11downgrade)) == 0) {
1822                     *al = SSL_AD_ILLEGAL_PARAMETER;
1823                     return SSL_R_INAPPROPRIATE_FALLBACK;
1824                 }
1825             }
1826         }
1827 #endif
1828
1829         s->method = method;
1830         s->version = version;
1831         return 0;
1832     }
1833
1834     *al = SSL_AD_PROTOCOL_VERSION;
1835     return SSL_R_UNSUPPORTED_PROTOCOL;
1836 }
1837
1838 /*
1839  * ssl_get_min_max_version - get minimum and maximum protocol version
1840  * @s: The SSL connection
1841  * @min_version: The minimum supported version
1842  * @max_version: The maximum supported version
1843  *
1844  * Work out what version we should be using for the initial ClientHello if the
1845  * version is initially (D)TLS_ANY_VERSION.  We apply any explicit SSL_OP_NO_xxx
1846  * options, the MinProtocol and MaxProtocol configuration commands, any Suite B
1847  * constraints and any floor imposed by the security level here,
1848  * so we don't advertise the wrong protocol version to only reject the outcome later.
1849  *
1850  * Computing the right floor matters.  If, e.g., TLS 1.0 and 1.2 are enabled,
1851  * TLS 1.1 is disabled, but the security level, Suite-B  and/or MinProtocol
1852  * only allow TLS 1.2, we want to advertise TLS1.2, *not* TLS1.
1853  *
1854  * Returns 0 on success or an SSL error reason number on failure.  On failure
1855  * min_version and max_version will also be set to 0.
1856  */
1857 int ssl_get_min_max_version(const SSL *s, int *min_version, int *max_version)
1858 {
1859     int version;
1860     int hole;
1861     const SSL_METHOD *single = NULL;
1862     const SSL_METHOD *method;
1863     const version_info *table;
1864     const version_info *vent;
1865
1866     switch (s->method->version) {
1867     default:
1868         /*
1869          * If this SSL handle is not from a version flexible method we don't
1870          * (and never did) check min/max FIPS or Suite B constraints.  Hope
1871          * that's OK.  It is up to the caller to not choose fixed protocol
1872          * versions they don't want.  If not, then easy to fix, just return
1873          * ssl_method_error(s, s->method)
1874          */
1875         *min_version = *max_version = s->version;
1876         return 0;
1877     case TLS_ANY_VERSION:
1878         table = tls_version_table;
1879         break;
1880     case DTLS_ANY_VERSION:
1881         table = dtls_version_table;
1882         break;
1883     }
1884
1885     /*
1886      * SSL_OP_NO_X disables all protocols above X *if* there are some protocols
1887      * below X enabled. This is required in order to maintain the "version
1888      * capability" vector contiguous. Any versions with a NULL client method
1889      * (protocol version client is disabled at compile-time) is also a "hole".
1890      *
1891      * Our initial state is hole == 1, version == 0.  That is, versions above
1892      * the first version in the method table are disabled (a "hole" above
1893      * the valid protocol entries) and we don't have a selected version yet.
1894      *
1895      * Whenever "hole == 1", and we hit an enabled method, its version becomes
1896      * the selected version, and the method becomes a candidate "single"
1897      * method.  We're no longer in a hole, so "hole" becomes 0.
1898      *
1899      * If "hole == 0" and we hit an enabled method, then "single" is cleared,
1900      * as we support a contiguous range of at least two methods.  If we hit
1901      * a disabled method, then hole becomes true again, but nothing else
1902      * changes yet, because all the remaining methods may be disabled too.
1903      * If we again hit an enabled method after the new hole, it becomes
1904      * selected, as we start from scratch.
1905      */
1906     *min_version = version = 0;
1907     hole = 1;
1908     for (vent = table; vent->version != 0; ++vent) {
1909         /*
1910          * A table entry with a NULL client method is still a hole in the
1911          * "version capability" vector.
1912          */
1913         if (vent->cmeth == NULL) {
1914             hole = 1;
1915             continue;
1916         }
1917         method = vent->cmeth();
1918         if (ssl_method_error(s, method) != 0) {
1919             hole = 1;
1920         } else if (!hole) {
1921             single = NULL;
1922             *min_version = method->version;
1923         } else {
1924             version = (single = method)->version;
1925             *min_version = version;
1926             hole = 0;
1927         }
1928     }
1929
1930     *max_version = version;
1931
1932     /* Fail if everything is disabled */
1933     if (version == 0)
1934         return SSL_R_NO_PROTOCOLS_AVAILABLE;
1935
1936     return 0;
1937 }
1938
1939 /*
1940  * ssl_set_client_hello_version - Work out what version we should be using for
1941  * the initial ClientHello.legacy_version field.
1942  *
1943  * @s: client SSL handle.
1944  *
1945  * Returns 0 on success or an SSL error reason number on failure.
1946  */
1947 int ssl_set_client_hello_version(SSL *s)
1948 {
1949     int ver_min, ver_max, ret;
1950
1951     ret = ssl_get_min_max_version(s, &ver_min, &ver_max);
1952
1953     if (ret != 0)
1954         return ret;
1955
1956     s->version = ver_max;
1957
1958     /* TLS1.3 always uses TLS1.2 in the legacy_version field */
1959     if (!SSL_IS_DTLS(s) && ver_max > TLS1_2_VERSION)
1960         ver_max = TLS1_2_VERSION;
1961
1962     s->client_version = ver_max;
1963     return 0;
1964 }
1965
1966 /*
1967  * Checks a list of |groups| to determine if the |group_id| is in it. If it is
1968  * and |checkallow| is 1 then additionally check if the group is allowed to be
1969  * used. Returns 1 if the group is in the list (and allowed if |checkallow| is
1970  * 1) or 0 otherwise.
1971  */
1972 #ifndef OPENSSL_NO_EC
1973 int check_in_list(SSL *s, unsigned int group_id, const unsigned char *groups,
1974                   size_t num_groups, int checkallow)
1975 {
1976     size_t i;
1977
1978     if (groups == NULL || num_groups == 0)
1979         return 0;
1980
1981     for (i = 0; i < num_groups; i++, groups += 2) {
1982         if (group_id == GET_GROUP_ID(groups, 0)
1983                 && (!checkallow
1984                     || tls_curve_allowed(s, groups, SSL_SECOP_CURVE_CHECK))) {
1985             return 1;
1986         }
1987     }
1988
1989     return 0;
1990 }
1991 #endif
1992
1993 /* Replace ClientHello1 in the transcript hash with a synthetic message */
1994 int create_synthetic_message_hash(SSL *s)
1995 {
1996     unsigned char hashval[EVP_MAX_MD_SIZE];
1997     size_t hashlen = 0;
1998     unsigned char msghdr[SSL3_HM_HEADER_LENGTH];
1999
2000     memset(msghdr, 0, sizeof(msghdr));
2001
2002     /* Get the hash of the initial ClientHello */
2003     if (!ssl3_digest_cached_records(s, 0)
2004             || !ssl_handshake_hash(s, hashval, sizeof(hashval), &hashlen)) {
2005         SSLerr(SSL_F_CREATE_SYNTHETIC_MESSAGE_HASH, ERR_R_INTERNAL_ERROR);
2006         return 0;
2007     }
2008
2009     /* Reinitialise the transcript hash */
2010     if (!ssl3_init_finished_mac(s))
2011         return 0;
2012
2013     /* Inject the synthetic message_hash message */
2014     msghdr[0] = SSL3_MT_MESSAGE_HASH;
2015     msghdr[SSL3_HM_HEADER_LENGTH - 1] = hashlen;
2016     if (!ssl3_finish_mac(s, msghdr, SSL3_HM_HEADER_LENGTH)
2017             || !ssl3_finish_mac(s, hashval, hashlen)) {
2018         SSLerr(SSL_F_CREATE_SYNTHETIC_MESSAGE_HASH, ERR_R_INTERNAL_ERROR);
2019         return 0;
2020     }
2021
2022     return 1;
2023 }
2024
2025 static int ca_dn_cmp(const X509_NAME *const *a, const X509_NAME *const *b)
2026 {
2027     return X509_NAME_cmp(*a, *b);
2028 }
2029
2030 int parse_ca_names(SSL *s, PACKET *pkt, int *al)
2031 {
2032     STACK_OF(X509_NAME) *ca_sk = sk_X509_NAME_new(ca_dn_cmp);
2033     X509_NAME *xn = NULL;
2034     PACKET cadns;
2035
2036     if (ca_sk == NULL) {
2037         SSLerr(SSL_F_PARSE_CA_NAMES, ERR_R_MALLOC_FAILURE);
2038         goto decerr;
2039     }
2040     /* get the CA RDNs */
2041     if (!PACKET_get_length_prefixed_2(pkt, &cadns)) {
2042         *al = SSL_AD_DECODE_ERROR;
2043         SSLerr(SSL_F_PARSE_CA_NAMES, SSL_R_LENGTH_MISMATCH);
2044         goto decerr;
2045     }
2046
2047     while (PACKET_remaining(&cadns)) {
2048         const unsigned char *namestart, *namebytes;
2049         unsigned int name_len;
2050
2051         if (!PACKET_get_net_2(&cadns, &name_len)
2052             || !PACKET_get_bytes(&cadns, &namebytes, name_len)) {
2053             SSLerr(SSL_F_PARSE_CA_NAMES, SSL_R_LENGTH_MISMATCH);
2054             goto decerr;
2055         }
2056
2057         namestart = namebytes;
2058         if ((xn = d2i_X509_NAME(NULL, &namebytes, name_len)) == NULL) {
2059             SSLerr(SSL_F_PARSE_CA_NAMES, ERR_R_ASN1_LIB);
2060             goto decerr;
2061         }
2062         if (namebytes != (namestart + name_len)) {
2063             SSLerr(SSL_F_PARSE_CA_NAMES, SSL_R_CA_DN_LENGTH_MISMATCH);
2064             goto decerr;
2065         }
2066
2067         if (!sk_X509_NAME_push(ca_sk, xn)) {
2068             SSLerr(SSL_F_PARSE_CA_NAMES, ERR_R_MALLOC_FAILURE);
2069             *al = SSL_AD_INTERNAL_ERROR;
2070             goto err;
2071         }
2072         xn = NULL;
2073     }
2074
2075     sk_X509_NAME_pop_free(s->s3->tmp.peer_ca_names, X509_NAME_free);
2076     s->s3->tmp.peer_ca_names = ca_sk;
2077
2078     return 1;
2079
2080  decerr:
2081     *al = SSL_AD_DECODE_ERROR;
2082  err:
2083     sk_X509_NAME_pop_free(ca_sk, X509_NAME_free);
2084     X509_NAME_free(xn);
2085     return 0;
2086 }
2087
2088 int construct_ca_names(SSL *s, WPACKET *pkt)
2089 {
2090     const STACK_OF(X509_NAME) *ca_sk = SSL_get0_CA_list(s);
2091
2092     /* Start sub-packet for client CA list */
2093     if (!WPACKET_start_sub_packet_u16(pkt))
2094         return 0;
2095
2096     if (ca_sk != NULL) {
2097         int i;
2098
2099         for (i = 0; i < sk_X509_NAME_num(ca_sk); i++) {
2100             unsigned char *namebytes;
2101             X509_NAME *name = sk_X509_NAME_value(ca_sk, i);
2102             int namelen;
2103
2104             if (name == NULL
2105                     || (namelen = i2d_X509_NAME(name, NULL)) < 0
2106                     || !WPACKET_sub_allocate_bytes_u16(pkt, namelen,
2107                                                        &namebytes)
2108                     || i2d_X509_NAME(name, &namebytes) != namelen) {
2109                 return 0;
2110             }
2111         }
2112     }
2113
2114     if (!WPACKET_close(pkt))
2115         return 0;
2116
2117     return 1;
2118 }