6d32666e43f431caa89c9a179cb966199cee1cca
[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_construct_finished(SSL *s, WPACKET *pkt)
76 {
77     size_t finish_md_len;
78     const char *sender;
79     size_t slen;
80
81     if (s->server) {
82         sender = s->method->ssl3_enc->server_finished_label;
83         slen = s->method->ssl3_enc->server_finished_label_len;
84     } else {
85         sender = s->method->ssl3_enc->client_finished_label;
86         slen = s->method->ssl3_enc->client_finished_label_len;
87     }
88
89     finish_md_len = s->method->ssl3_enc->final_finish_mac(s,
90                                                           sender, slen,
91                                                           s->s3->tmp.finish_md);
92     if (finish_md_len == 0) {
93         SSLerr(SSL_F_TLS_CONSTRUCT_FINISHED, ERR_R_INTERNAL_ERROR);
94         goto err;
95     }
96
97     s->s3->tmp.finish_md_len = finish_md_len;
98
99     if (!WPACKET_memcpy(pkt, s->s3->tmp.finish_md, finish_md_len)) {
100         SSLerr(SSL_F_TLS_CONSTRUCT_FINISHED, ERR_R_INTERNAL_ERROR);
101         goto err;
102     }
103
104     /*
105      * Copy the finished so we can use it for renegotiation checks
106      */
107     if (!s->server) {
108         OPENSSL_assert(finish_md_len <= EVP_MAX_MD_SIZE);
109         memcpy(s->s3->previous_client_finished, s->s3->tmp.finish_md,
110                finish_md_len);
111         s->s3->previous_client_finished_len = finish_md_len;
112     } else {
113         OPENSSL_assert(finish_md_len <= EVP_MAX_MD_SIZE);
114         memcpy(s->s3->previous_server_finished, s->s3->tmp.finish_md,
115                finish_md_len);
116         s->s3->previous_server_finished_len = finish_md_len;
117     }
118
119     return 1;
120  err:
121     ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
122     return 0;
123 }
124
125 #ifndef OPENSSL_NO_NEXTPROTONEG
126 /*
127  * ssl3_take_mac calculates the Finished MAC for the handshakes messages seen
128  * to far.
129  */
130 static void ssl3_take_mac(SSL *s)
131 {
132     const char *sender;
133     size_t slen;
134     /*
135      * If no new cipher setup return immediately: other functions will set
136      * the appropriate error.
137      */
138     if (s->s3->tmp.new_cipher == NULL)
139         return;
140     if (!s->server) {
141         sender = s->method->ssl3_enc->server_finished_label;
142         slen = s->method->ssl3_enc->server_finished_label_len;
143     } else {
144         sender = s->method->ssl3_enc->client_finished_label;
145         slen = s->method->ssl3_enc->client_finished_label_len;
146     }
147
148     s->s3->tmp.peer_finish_md_len = s->method->ssl3_enc->final_finish_mac(s,
149                                                                           sender,
150                                                                           slen,
151                                                                           s->s3->tmp.peer_finish_md);
152 }
153 #endif
154
155 /*
156  * Comparison function used in a call to qsort (see tls_collect_extensions()
157  * below.)
158  * The two arguments |p1| and |p2| are expected to be pointers to RAW_EXTENSIONs
159  *
160  * Returns:
161  *  1 if the type for p1 is greater than p2
162  *  0 if the type for p1 and p2 are the same
163  * -1 if the type for p1 is less than p2
164  */
165 static int compare_extensions(const void *p1, const void *p2)
166 {
167     const RAW_EXTENSION *e1 = (const RAW_EXTENSION *)p1;
168     const RAW_EXTENSION *e2 = (const RAW_EXTENSION *)p2;
169
170     if (e1->type < e2->type)
171         return -1;
172     else if (e1->type > e2->type)
173         return 1;
174
175     return 0;
176 }
177
178 /*
179  * Gather a list of all the extensions. We don't actually process the content
180  * of the extensions yet, except to check their types.
181  *
182  * Per http://tools.ietf.org/html/rfc5246#section-7.4.1.4, there may not be
183  * more than one extension of the same type in a ClientHello or ServerHello.
184  * This function returns 1 if all extensions are unique and we have parsed their
185  * types, and 0 if the extensions contain duplicates, could not be successfully
186  * parsed, or an internal error occurred.
187  */
188 /*
189  * TODO(TLS1.3): Refactor ServerHello extension parsing to use this and then
190  * remove tls1_check_duplicate_extensions()
191  */
192 int tls_collect_extensions(PACKET *packet, RAW_EXTENSION **res,
193                              size_t *numfound, int *ad)
194 {
195     PACKET extensions = *packet;
196     size_t num_extensions = 0, i = 0;
197     RAW_EXTENSION *raw_extensions = NULL;
198
199     /* First pass: count the extensions. */
200     while (PACKET_remaining(&extensions) > 0) {
201         unsigned int type;
202         PACKET extension;
203
204         if (!PACKET_get_net_2(&extensions, &type) ||
205             !PACKET_get_length_prefixed_2(&extensions, &extension)) {
206             *ad = SSL_AD_DECODE_ERROR;
207             goto err;
208         }
209         num_extensions++;
210     }
211
212     if (num_extensions > 0) {
213         raw_extensions = OPENSSL_malloc(sizeof(*raw_extensions)
214                                         * num_extensions);
215         if (raw_extensions == NULL) {
216             *ad = SSL_AD_INTERNAL_ERROR;
217             SSLerr(SSL_F_TLS_COLLECT_EXTENSIONS, ERR_R_MALLOC_FAILURE);
218             goto err;
219         }
220
221         /* Second pass: collect the extensions. */
222         for (i = 0; i < num_extensions; i++) {
223             if (!PACKET_get_net_2(packet, &raw_extensions[i].type) ||
224                 !PACKET_get_length_prefixed_2(packet,
225                                               &raw_extensions[i].data)) {
226                 /* This should not happen. */
227                 *ad = SSL_AD_INTERNAL_ERROR;
228                 SSLerr(SSL_F_TLS_COLLECT_EXTENSIONS, ERR_R_INTERNAL_ERROR);
229                 goto err;
230             }
231         }
232
233         if (PACKET_remaining(packet) != 0) {
234             *ad = SSL_AD_DECODE_ERROR;
235             SSLerr(SSL_F_TLS_COLLECT_EXTENSIONS, SSL_R_LENGTH_MISMATCH);
236             goto err;
237         }
238         /* Sort the extensions and make sure there are no duplicates. */
239         qsort(raw_extensions, num_extensions, sizeof(*raw_extensions),
240               compare_extensions);
241         for (i = 1; i < num_extensions; i++) {
242             if (raw_extensions[i - 1].type == raw_extensions[i].type) {
243                 *ad = SSL_AD_DECODE_ERROR;
244                 goto err;
245             }
246         }
247     }
248
249     *res = raw_extensions;
250     *numfound = num_extensions;
251     return 1;
252
253  err:
254     OPENSSL_free(raw_extensions);
255     return 0;
256 }
257
258
259
260 MSG_PROCESS_RETURN tls_process_change_cipher_spec(SSL *s, PACKET *pkt)
261 {
262     int al;
263     size_t remain;
264
265     remain = PACKET_remaining(pkt);
266     /*
267      * 'Change Cipher Spec' is just a single byte, which should already have
268      * been consumed by ssl_get_message() so there should be no bytes left,
269      * unless we're using DTLS1_BAD_VER, which has an extra 2 bytes
270      */
271     if (SSL_IS_DTLS(s)) {
272         if ((s->version == DTLS1_BAD_VER
273              && remain != DTLS1_CCS_HEADER_LENGTH + 1)
274             || (s->version != DTLS1_BAD_VER
275                 && remain != DTLS1_CCS_HEADER_LENGTH - 1)) {
276             al = SSL_AD_ILLEGAL_PARAMETER;
277             SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC,
278                    SSL_R_BAD_CHANGE_CIPHER_SPEC);
279             goto f_err;
280         }
281     } else {
282         if (remain != 0) {
283             al = SSL_AD_ILLEGAL_PARAMETER;
284             SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC,
285                    SSL_R_BAD_CHANGE_CIPHER_SPEC);
286             goto f_err;
287         }
288     }
289
290     /* Check we have a cipher to change to */
291     if (s->s3->tmp.new_cipher == NULL) {
292         al = SSL_AD_UNEXPECTED_MESSAGE;
293         SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC, SSL_R_CCS_RECEIVED_EARLY);
294         goto f_err;
295     }
296
297     s->s3->change_cipher_spec = 1;
298     if (!ssl3_do_change_cipher_spec(s)) {
299         al = SSL_AD_INTERNAL_ERROR;
300         SSLerr(SSL_F_TLS_PROCESS_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
301         goto f_err;
302     }
303
304     if (SSL_IS_DTLS(s)) {
305         dtls1_reset_seq_numbers(s, SSL3_CC_READ);
306
307         if (s->version == DTLS1_BAD_VER)
308             s->d1->handshake_read_seq++;
309
310 #ifndef OPENSSL_NO_SCTP
311         /*
312          * Remember that a CCS has been received, so that an old key of
313          * SCTP-Auth can be deleted when a CCS is sent. Will be ignored if no
314          * SCTP is used
315          */
316         BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_AUTH_CCS_RCVD, 1, NULL);
317 #endif
318     }
319
320     return MSG_PROCESS_CONTINUE_READING;
321  f_err:
322     ssl3_send_alert(s, SSL3_AL_FATAL, al);
323     ossl_statem_set_error(s);
324     return MSG_PROCESS_ERROR;
325 }
326
327 MSG_PROCESS_RETURN tls_process_finished(SSL *s, PACKET *pkt)
328 {
329     int al;
330     size_t md_len;
331
332     /* If this occurs, we have missed a message */
333     if (!SSL_IS_TLS13(s) && !s->s3->change_cipher_spec) {
334         al = SSL_AD_UNEXPECTED_MESSAGE;
335         SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_GOT_A_FIN_BEFORE_A_CCS);
336         goto f_err;
337     }
338     s->s3->change_cipher_spec = 0;
339
340     md_len = s->s3->tmp.peer_finish_md_len;
341
342     if (md_len != PACKET_remaining(pkt)) {
343         al = SSL_AD_DECODE_ERROR;
344         SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_BAD_DIGEST_LENGTH);
345         goto f_err;
346     }
347
348     if (CRYPTO_memcmp(PACKET_data(pkt), s->s3->tmp.peer_finish_md,
349                       md_len) != 0) {
350         al = SSL_AD_DECRYPT_ERROR;
351         SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_DIGEST_CHECK_FAILED);
352         goto f_err;
353     }
354
355     /*
356      * Copy the finished so we can use it for renegotiation checks
357      */
358     if (s->server) {
359         OPENSSL_assert(md_len <= EVP_MAX_MD_SIZE);
360         memcpy(s->s3->previous_client_finished, s->s3->tmp.peer_finish_md,
361                md_len);
362         s->s3->previous_client_finished_len = md_len;
363     } else {
364         OPENSSL_assert(md_len <= EVP_MAX_MD_SIZE);
365         memcpy(s->s3->previous_server_finished, s->s3->tmp.peer_finish_md,
366                md_len);
367         s->s3->previous_server_finished_len = md_len;
368     }
369
370     /* In TLS1.3 we also have to change cipher state */
371     if (SSL_IS_TLS13(s)) {
372         if (s->server) {
373             if (!s->method->ssl3_enc->change_cipher_state(s,
374                     SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_SERVER_READ)) {
375                 al = SSL_AD_INTERNAL_ERROR;
376                 SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_CANNOT_CHANGE_CIPHER);
377                 goto f_err;
378             }
379         } else {
380             if (!s->method->ssl3_enc->generate_master_secret(s,
381                     s->session->master_key, s->handshake_secret, 0,
382                     &s->session->master_key_length)) {
383                 al = SSL_AD_INTERNAL_ERROR;
384                 SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_CANNOT_CHANGE_CIPHER);
385                 goto f_err;
386             }
387             if (!s->method->ssl3_enc->change_cipher_state(s,
388                     SSL3_CC_APPLICATION | SSL3_CHANGE_CIPHER_CLIENT_READ)) {
389                 al = SSL_AD_INTERNAL_ERROR;
390                 SSLerr(SSL_F_TLS_PROCESS_FINISHED, SSL_R_CANNOT_CHANGE_CIPHER);
391                 goto f_err;
392             }
393         }
394     }
395
396     return MSG_PROCESS_FINISHED_READING;
397  f_err:
398     ssl3_send_alert(s, SSL3_AL_FATAL, al);
399     ossl_statem_set_error(s);
400     return MSG_PROCESS_ERROR;
401 }
402
403 int tls_construct_change_cipher_spec(SSL *s, WPACKET *pkt)
404 {
405     if (!WPACKET_put_bytes_u8(pkt, SSL3_MT_CCS)) {
406         SSLerr(SSL_F_TLS_CONSTRUCT_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
407         ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
408         return 0;
409     }
410
411     return 1;
412 }
413
414 unsigned long ssl3_output_cert_chain(SSL *s, WPACKET *pkt, CERT_PKEY *cpk)
415 {
416     if (!WPACKET_start_sub_packet_u24(pkt)
417             || !ssl_add_cert_chain(s, pkt, cpk)
418             || !WPACKET_close(pkt)) {
419         SSLerr(SSL_F_SSL3_OUTPUT_CERT_CHAIN, ERR_R_INTERNAL_ERROR);
420         return 0;
421     }
422     return 1;
423 }
424
425 WORK_STATE tls_finish_handshake(SSL *s, WORK_STATE wst)
426 {
427     void (*cb) (const SSL *ssl, int type, int val) = NULL;
428
429 #ifndef OPENSSL_NO_SCTP
430     if (SSL_IS_DTLS(s) && BIO_dgram_is_sctp(SSL_get_wbio(s))) {
431         WORK_STATE ret;
432         ret = dtls_wait_for_dry(s);
433         if (ret != WORK_FINISHED_CONTINUE)
434             return ret;
435     }
436 #endif
437
438     /* clean a few things up */
439     ssl3_cleanup_key_block(s);
440
441     if (!SSL_IS_DTLS(s)) {
442         /*
443          * We don't do this in DTLS because we may still need the init_buf
444          * in case there are any unexpected retransmits
445          */
446         BUF_MEM_free(s->init_buf);
447         s->init_buf = NULL;
448     }
449
450     ssl_free_wbio_buffer(s);
451
452     s->init_num = 0;
453
454     if (!s->server || s->renegotiate == 2) {
455         /* skipped if we just sent a HelloRequest */
456         s->renegotiate = 0;
457         s->new_session = 0;
458
459         if (s->server) {
460             ssl_update_cache(s, SSL_SESS_CACHE_SERVER);
461
462             s->ctx->stats.sess_accept_good++;
463             s->handshake_func = ossl_statem_accept;
464         } else {
465             ssl_update_cache(s, SSL_SESS_CACHE_CLIENT);
466             if (s->hit)
467                 s->ctx->stats.sess_hit++;
468
469             s->handshake_func = ossl_statem_connect;
470             s->ctx->stats.sess_connect_good++;
471         }
472
473         if (s->info_callback != NULL)
474             cb = s->info_callback;
475         else if (s->ctx->info_callback != NULL)
476             cb = s->ctx->info_callback;
477
478         if (cb != NULL)
479             cb(s, SSL_CB_HANDSHAKE_DONE, 1);
480
481         if (SSL_IS_DTLS(s)) {
482             /* done with handshaking */
483             s->d1->handshake_read_seq = 0;
484             s->d1->handshake_write_seq = 0;
485             s->d1->next_handshake_write_seq = 0;
486             dtls1_clear_received_buffer(s);
487         }
488     }
489
490     return WORK_FINISHED_STOP;
491 }
492
493 int tls_get_message_header(SSL *s, int *mt)
494 {
495     /* s->init_num < SSL3_HM_HEADER_LENGTH */
496     int skip_message, i, recvd_type, al;
497     unsigned char *p;
498     size_t l, readbytes;
499
500     p = (unsigned char *)s->init_buf->data;
501
502     do {
503         while (s->init_num < SSL3_HM_HEADER_LENGTH) {
504             i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, &recvd_type,
505                                           &p[s->init_num],
506                                           SSL3_HM_HEADER_LENGTH - s->init_num,
507                                           0, &readbytes);
508             if (i <= 0) {
509                 s->rwstate = SSL_READING;
510                 return 0;
511             }
512             if (recvd_type == SSL3_RT_CHANGE_CIPHER_SPEC) {
513                 /*
514                  * A ChangeCipherSpec must be a single byte and may not occur
515                  * in the middle of a handshake message.
516                  */
517                 if (s->init_num != 0 || readbytes != 1 || p[0] != SSL3_MT_CCS) {
518                     al = SSL_AD_UNEXPECTED_MESSAGE;
519                     SSLerr(SSL_F_TLS_GET_MESSAGE_HEADER,
520                            SSL_R_BAD_CHANGE_CIPHER_SPEC);
521                     goto f_err;
522                 }
523                 s->s3->tmp.message_type = *mt = SSL3_MT_CHANGE_CIPHER_SPEC;
524                 s->init_num = readbytes - 1;
525                 s->init_msg = s->init_buf->data;
526                 s->s3->tmp.message_size = readbytes;
527                 return 1;
528             } else if (recvd_type != SSL3_RT_HANDSHAKE) {
529                 al = SSL_AD_UNEXPECTED_MESSAGE;
530                 SSLerr(SSL_F_TLS_GET_MESSAGE_HEADER, SSL_R_CCS_RECEIVED_EARLY);
531                 goto f_err;
532             }
533             s->init_num += readbytes;
534         }
535
536         skip_message = 0;
537         if (!s->server)
538             if (p[0] == SSL3_MT_HELLO_REQUEST)
539                 /*
540                  * The server may always send 'Hello Request' messages --
541                  * we are doing a handshake anyway now, so ignore them if
542                  * their format is correct. Does not count for 'Finished'
543                  * MAC.
544                  */
545                 if (p[1] == 0 && p[2] == 0 && p[3] == 0) {
546                     s->init_num = 0;
547                     skip_message = 1;
548
549                     if (s->msg_callback)
550                         s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE,
551                                         p, SSL3_HM_HEADER_LENGTH, s,
552                                         s->msg_callback_arg);
553                 }
554     } while (skip_message);
555     /* s->init_num == SSL3_HM_HEADER_LENGTH */
556
557     *mt = *p;
558     s->s3->tmp.message_type = *(p++);
559
560     if (RECORD_LAYER_is_sslv2_record(&s->rlayer)) {
561         /*
562          * Only happens with SSLv3+ in an SSLv2 backward compatible
563          * ClientHello
564          *
565          * Total message size is the remaining record bytes to read
566          * plus the SSL3_HM_HEADER_LENGTH bytes that we already read
567          */
568         l = RECORD_LAYER_get_rrec_length(&s->rlayer)
569             + SSL3_HM_HEADER_LENGTH;
570         s->s3->tmp.message_size = l;
571
572         s->init_msg = s->init_buf->data;
573         s->init_num = SSL3_HM_HEADER_LENGTH;
574     } else {
575         n2l3(p, l);
576         /* BUF_MEM_grow takes an 'int' parameter */
577         if (l > (INT_MAX - SSL3_HM_HEADER_LENGTH)) {
578             al = SSL_AD_ILLEGAL_PARAMETER;
579             SSLerr(SSL_F_TLS_GET_MESSAGE_HEADER, SSL_R_EXCESSIVE_MESSAGE_SIZE);
580             goto f_err;
581         }
582         s->s3->tmp.message_size = l;
583
584         s->init_msg = s->init_buf->data + SSL3_HM_HEADER_LENGTH;
585         s->init_num = 0;
586     }
587
588     return 1;
589  f_err:
590     ssl3_send_alert(s, SSL3_AL_FATAL, al);
591     return 0;
592 }
593
594 int tls_get_message_body(SSL *s, size_t *len)
595 {
596     size_t n, readbytes;
597     unsigned char *p;
598     int i;
599
600     if (s->s3->tmp.message_type == SSL3_MT_CHANGE_CIPHER_SPEC) {
601         /* We've already read everything in */
602         *len = (unsigned long)s->init_num;
603         return 1;
604     }
605
606     p = s->init_msg;
607     n = s->s3->tmp.message_size - s->init_num;
608     while (n > 0) {
609         i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, NULL,
610                                       &p[s->init_num], n, 0, &readbytes);
611         if (i <= 0) {
612             s->rwstate = SSL_READING;
613             *len = 0;
614             return 0;
615         }
616         s->init_num += readbytes;
617         n -= readbytes;
618     }
619
620 #ifndef OPENSSL_NO_NEXTPROTONEG
621     /*
622      * If receiving Finished, record MAC of prior handshake messages for
623      * Finished verification.
624      */
625     if (*s->init_buf->data == SSL3_MT_FINISHED)
626         ssl3_take_mac(s);
627 #endif
628
629     /* Feed this message into MAC computation. */
630     if (RECORD_LAYER_is_sslv2_record(&s->rlayer)) {
631         if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
632                              s->init_num)) {
633             SSLerr(SSL_F_TLS_GET_MESSAGE_BODY, ERR_R_EVP_LIB);
634             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
635             *len = 0;
636             return 0;
637         }
638         if (s->msg_callback)
639             s->msg_callback(0, SSL2_VERSION, 0, s->init_buf->data,
640                             (size_t)s->init_num, s, s->msg_callback_arg);
641     } else {
642         if (!ssl3_finish_mac(s, (unsigned char *)s->init_buf->data,
643                              s->init_num + SSL3_HM_HEADER_LENGTH)) {
644             SSLerr(SSL_F_TLS_GET_MESSAGE_BODY, ERR_R_EVP_LIB);
645             ssl3_send_alert(s, SSL3_AL_FATAL, SSL_AD_INTERNAL_ERROR);
646             *len = 0;
647             return 0;
648         }
649         if (s->msg_callback)
650             s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, s->init_buf->data,
651                             (size_t)s->init_num + SSL3_HM_HEADER_LENGTH, s,
652                             s->msg_callback_arg);
653     }
654
655     *len = s->init_num;
656     return 1;
657 }
658
659 int ssl_cert_type(const X509 *x, const EVP_PKEY *pk)
660 {
661     if (pk == NULL && (pk = X509_get0_pubkey(x)) == NULL)
662         return -1;
663
664     switch (EVP_PKEY_id(pk)) {
665     default:
666         return -1;
667     case EVP_PKEY_RSA:
668         return SSL_PKEY_RSA_ENC;
669     case EVP_PKEY_DSA:
670         return SSL_PKEY_DSA_SIGN;
671 #ifndef OPENSSL_NO_EC
672     case EVP_PKEY_EC:
673         return SSL_PKEY_ECC;
674 #endif
675 #ifndef OPENSSL_NO_GOST
676     case NID_id_GostR3410_2001:
677         return SSL_PKEY_GOST01;
678     case NID_id_GostR3410_2012_256:
679         return SSL_PKEY_GOST12_256;
680     case NID_id_GostR3410_2012_512:
681         return SSL_PKEY_GOST12_512;
682 #endif
683     }
684 }
685
686 int ssl_verify_alarm_type(long type)
687 {
688     int al;
689
690     switch (type) {
691     case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT:
692     case X509_V_ERR_UNABLE_TO_GET_CRL:
693     case X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER:
694         al = SSL_AD_UNKNOWN_CA;
695         break;
696     case X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE:
697     case X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE:
698     case X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY:
699     case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD:
700     case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD:
701     case X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD:
702     case X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD:
703     case X509_V_ERR_CERT_NOT_YET_VALID:
704     case X509_V_ERR_CRL_NOT_YET_VALID:
705     case X509_V_ERR_CERT_UNTRUSTED:
706     case X509_V_ERR_CERT_REJECTED:
707     case X509_V_ERR_HOSTNAME_MISMATCH:
708     case X509_V_ERR_EMAIL_MISMATCH:
709     case X509_V_ERR_IP_ADDRESS_MISMATCH:
710     case X509_V_ERR_DANE_NO_MATCH:
711     case X509_V_ERR_EE_KEY_TOO_SMALL:
712     case X509_V_ERR_CA_KEY_TOO_SMALL:
713     case X509_V_ERR_CA_MD_TOO_WEAK:
714         al = SSL_AD_BAD_CERTIFICATE;
715         break;
716     case X509_V_ERR_CERT_SIGNATURE_FAILURE:
717     case X509_V_ERR_CRL_SIGNATURE_FAILURE:
718         al = SSL_AD_DECRYPT_ERROR;
719         break;
720     case X509_V_ERR_CERT_HAS_EXPIRED:
721     case X509_V_ERR_CRL_HAS_EXPIRED:
722         al = SSL_AD_CERTIFICATE_EXPIRED;
723         break;
724     case X509_V_ERR_CERT_REVOKED:
725         al = SSL_AD_CERTIFICATE_REVOKED;
726         break;
727     case X509_V_ERR_UNSPECIFIED:
728     case X509_V_ERR_OUT_OF_MEM:
729     case X509_V_ERR_INVALID_CALL:
730     case X509_V_ERR_STORE_LOOKUP:
731         al = SSL_AD_INTERNAL_ERROR;
732         break;
733     case X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT:
734     case X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN:
735     case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY:
736     case X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE:
737     case X509_V_ERR_CERT_CHAIN_TOO_LONG:
738     case X509_V_ERR_PATH_LENGTH_EXCEEDED:
739     case X509_V_ERR_INVALID_CA:
740         al = SSL_AD_UNKNOWN_CA;
741         break;
742     case X509_V_ERR_APPLICATION_VERIFICATION:
743         al = SSL_AD_HANDSHAKE_FAILURE;
744         break;
745     case X509_V_ERR_INVALID_PURPOSE:
746         al = SSL_AD_UNSUPPORTED_CERTIFICATE;
747         break;
748     default:
749         al = SSL_AD_CERTIFICATE_UNKNOWN;
750         break;
751     }
752     return (al);
753 }
754
755 int ssl_allow_compression(SSL *s)
756 {
757     if (s->options & SSL_OP_NO_COMPRESSION)
758         return 0;
759     return ssl_security(s, SSL_SECOP_COMPRESSION, 0, 0, NULL);
760 }
761
762 static int version_cmp(const SSL *s, int a, int b)
763 {
764     int dtls = SSL_IS_DTLS(s);
765
766     if (a == b)
767         return 0;
768     if (!dtls)
769         return a < b ? -1 : 1;
770     return DTLS_VERSION_LT(a, b) ? -1 : 1;
771 }
772
773 typedef struct {
774     int version;
775     const SSL_METHOD *(*cmeth) (void);
776     const SSL_METHOD *(*smeth) (void);
777 } version_info;
778
779 #if TLS_MAX_VERSION != TLS1_3_VERSION
780 # error Code needs update for TLS_method() support beyond TLS1_3_VERSION.
781 #endif
782
783 static const version_info tls_version_table[] = {
784 #ifndef OPENSSL_NO_TLS1_3
785     {TLS1_3_VERSION, tlsv1_3_client_method, tlsv1_3_server_method},
786 #else
787     {TLS1_3_VERSION, NULL, NULL},
788 #endif
789 #ifndef OPENSSL_NO_TLS1_2
790     {TLS1_2_VERSION, tlsv1_2_client_method, tlsv1_2_server_method},
791 #else
792     {TLS1_2_VERSION, NULL, NULL},
793 #endif
794 #ifndef OPENSSL_NO_TLS1_1
795     {TLS1_1_VERSION, tlsv1_1_client_method, tlsv1_1_server_method},
796 #else
797     {TLS1_1_VERSION, NULL, NULL},
798 #endif
799 #ifndef OPENSSL_NO_TLS1
800     {TLS1_VERSION, tlsv1_client_method, tlsv1_server_method},
801 #else
802     {TLS1_VERSION, NULL, NULL},
803 #endif
804 #ifndef OPENSSL_NO_SSL3
805     {SSL3_VERSION, sslv3_client_method, sslv3_server_method},
806 #else
807     {SSL3_VERSION, NULL, NULL},
808 #endif
809     {0, NULL, NULL},
810 };
811
812 #if DTLS_MAX_VERSION != DTLS1_2_VERSION
813 # error Code needs update for DTLS_method() support beyond DTLS1_2_VERSION.
814 #endif
815
816 static const version_info dtls_version_table[] = {
817 #ifndef OPENSSL_NO_DTLS1_2
818     {DTLS1_2_VERSION, dtlsv1_2_client_method, dtlsv1_2_server_method},
819 #else
820     {DTLS1_2_VERSION, NULL, NULL},
821 #endif
822 #ifndef OPENSSL_NO_DTLS1
823     {DTLS1_VERSION, dtlsv1_client_method, dtlsv1_server_method},
824     {DTLS1_BAD_VER, dtls_bad_ver_client_method, NULL},
825 #else
826     {DTLS1_VERSION, NULL, NULL},
827     {DTLS1_BAD_VER, NULL, NULL},
828 #endif
829     {0, NULL, NULL},
830 };
831
832 /*
833  * ssl_method_error - Check whether an SSL_METHOD is enabled.
834  *
835  * @s: The SSL handle for the candidate method
836  * @method: the intended method.
837  *
838  * Returns 0 on success, or an SSL error reason on failure.
839  */
840 static int ssl_method_error(const SSL *s, const SSL_METHOD *method)
841 {
842     int version = method->version;
843
844     if ((s->min_proto_version != 0 &&
845          version_cmp(s, version, s->min_proto_version) < 0) ||
846         ssl_security(s, SSL_SECOP_VERSION, 0, version, NULL) == 0)
847         return SSL_R_VERSION_TOO_LOW;
848
849     if (s->max_proto_version != 0 &&
850         version_cmp(s, version, s->max_proto_version) > 0)
851         return SSL_R_VERSION_TOO_HIGH;
852
853     if ((s->options & method->mask) != 0)
854         return SSL_R_UNSUPPORTED_PROTOCOL;
855     if ((method->flags & SSL_METHOD_NO_SUITEB) != 0 && tls1_suiteb(s))
856         return SSL_R_AT_LEAST_TLS_1_2_NEEDED_IN_SUITEB_MODE;
857     else if ((method->flags & SSL_METHOD_NO_FIPS) != 0 && FIPS_mode())
858         return SSL_R_AT_LEAST_TLS_1_0_NEEDED_IN_FIPS_MODE;
859
860     return 0;
861 }
862
863 /*
864  * ssl_version_supported - Check that the specified `version` is supported by
865  * `SSL *` instance
866  *
867  * @s: The SSL handle for the candidate method
868  * @version: Protocol version to test against
869  *
870  * Returns 1 when supported, otherwise 0
871  */
872 int ssl_version_supported(const SSL *s, int version)
873 {
874     const version_info *vent;
875     const version_info *table;
876
877     switch (s->method->version) {
878     default:
879         /* Version should match method version for non-ANY method */
880         return version_cmp(s, version, s->version) == 0;
881     case TLS_ANY_VERSION:
882         table = tls_version_table;
883         break;
884     case DTLS_ANY_VERSION:
885         table = dtls_version_table;
886         break;
887     }
888
889     for (vent = table;
890          vent->version != 0 && version_cmp(s, version, vent->version) <= 0;
891          ++vent) {
892         if (vent->cmeth != NULL &&
893             version_cmp(s, version, vent->version) == 0 &&
894             ssl_method_error(s, vent->cmeth()) == 0) {
895             return 1;
896         }
897     }
898     return 0;
899 }
900
901 /*
902  * ssl_check_version_downgrade - In response to RFC7507 SCSV version
903  * fallback indication from a client check whether we're using the highest
904  * supported protocol version.
905  *
906  * @s server SSL handle.
907  *
908  * Returns 1 when using the highest enabled version, 0 otherwise.
909  */
910 int ssl_check_version_downgrade(SSL *s)
911 {
912     const version_info *vent;
913     const version_info *table;
914
915     /*
916      * Check that the current protocol is the highest enabled version
917      * (according to s->ctx->method, as version negotiation may have changed
918      * s->method).
919      */
920     if (s->version == s->ctx->method->version)
921         return 1;
922
923     /*
924      * Apparently we're using a version-flexible SSL_METHOD (not at its
925      * highest protocol version).
926      */
927     if (s->ctx->method->version == TLS_method()->version)
928         table = tls_version_table;
929     else if (s->ctx->method->version == DTLS_method()->version)
930         table = dtls_version_table;
931     else {
932         /* Unexpected state; fail closed. */
933         return 0;
934     }
935
936     for (vent = table; vent->version != 0; ++vent) {
937         if (vent->smeth != NULL && ssl_method_error(s, vent->smeth()) == 0)
938             return s->version == vent->version;
939     }
940     return 0;
941 }
942
943 /*
944  * ssl_set_version_bound - set an upper or lower bound on the supported (D)TLS
945  * protocols, provided the initial (D)TLS method is version-flexible.  This
946  * function sanity-checks the proposed value and makes sure the method is
947  * version-flexible, then sets the limit if all is well.
948  *
949  * @method_version: The version of the current SSL_METHOD.
950  * @version: the intended limit.
951  * @bound: pointer to limit to be updated.
952  *
953  * Returns 1 on success, 0 on failure.
954  */
955 int ssl_set_version_bound(int method_version, int version, int *bound)
956 {
957     if (version == 0) {
958         *bound = version;
959         return 1;
960     }
961
962     /*-
963      * Restrict TLS methods to TLS protocol versions.
964      * Restrict DTLS methods to DTLS protocol versions.
965      * Note, DTLS version numbers are decreasing, use comparison macros.
966      *
967      * Note that for both lower-bounds we use explicit versions, not
968      * (D)TLS_MIN_VERSION.  This is because we don't want to break user
969      * configurations.  If the MIN (supported) version ever rises, the user's
970      * "floor" remains valid even if no longer available.  We don't expect the
971      * MAX ceiling to ever get lower, so making that variable makes sense.
972      */
973     switch (method_version) {
974     default:
975         /*
976          * XXX For fixed version methods, should we always fail and not set any
977          * bounds, always succeed and not set any bounds, or set the bounds and
978          * arrange to fail later if they are not met?  At present fixed-version
979          * methods are not subject to controls that disable individual protocol
980          * versions.
981          */
982         return 0;
983
984     case TLS_ANY_VERSION:
985         if (version < SSL3_VERSION || version > TLS_MAX_VERSION)
986             return 0;
987         break;
988
989     case DTLS_ANY_VERSION:
990         if (DTLS_VERSION_GT(version, DTLS_MAX_VERSION) ||
991             DTLS_VERSION_LT(version, DTLS1_BAD_VER))
992             return 0;
993         break;
994     }
995
996     *bound = version;
997     return 1;
998 }
999
1000 /*
1001  * ssl_choose_server_version - Choose server (D)TLS version.  Called when the
1002  * client HELLO is received to select the final server protocol version and
1003  * the version specific method.
1004  *
1005  * @s: server SSL handle.
1006  *
1007  * Returns 0 on success or an SSL error reason number on failure.
1008  */
1009 int ssl_choose_server_version(SSL *s, CLIENTHELLO_MSG *hello)
1010 {
1011     /*-
1012      * With version-flexible methods we have an initial state with:
1013      *
1014      *   s->method->version == (D)TLS_ANY_VERSION,
1015      *   s->version == (D)TLS_MAX_VERSION.
1016      *
1017      * So we detect version-flexible methods via the method version, not the
1018      * handle version.
1019      */
1020     int server_version = s->method->version;
1021     int client_version = hello->legacy_version;
1022     const version_info *vent;
1023     const version_info *table;
1024     int disabled = 0;
1025     RAW_EXTENSION *suppversions;
1026
1027     s->client_version = client_version;
1028
1029     switch (server_version) {
1030     default:
1031         /*
1032          * TODO(TLS1.3): This check will fail if someone attempts to do
1033          * renegotiation in TLS1.3 at the moment. We need to ensure we disable
1034          * renegotiation for TLS1.3
1035          */
1036         if (version_cmp(s, client_version, s->version) < 0)
1037             return SSL_R_WRONG_SSL_VERSION;
1038         /*
1039          * If this SSL handle is not from a version flexible method we don't
1040          * (and never did) check min/max FIPS or Suite B constraints.  Hope
1041          * that's OK.  It is up to the caller to not choose fixed protocol
1042          * versions they don't want.  If not, then easy to fix, just return
1043          * ssl_method_error(s, s->method)
1044          */
1045         return 0;
1046     case TLS_ANY_VERSION:
1047         table = tls_version_table;
1048         break;
1049     case DTLS_ANY_VERSION:
1050         table = dtls_version_table;
1051         break;
1052     }
1053
1054     suppversions = tls_get_extension_by_type(hello->pre_proc_exts,
1055                                              hello->num_extensions,
1056                                              TLSEXT_TYPE_supported_versions);
1057
1058     if (suppversions != NULL && !SSL_IS_DTLS(s)) {
1059         unsigned int candidate_vers = 0;
1060         unsigned int best_vers = 0;
1061         const SSL_METHOD *best_method = NULL;
1062         PACKET versionslist;
1063
1064         if (!PACKET_as_length_prefixed_1(&suppversions->data, &versionslist)) {
1065             /* Trailing or invalid data? */
1066             return SSL_R_LENGTH_MISMATCH;
1067         }
1068
1069         while (PACKET_get_net_2(&versionslist, &candidate_vers)) {
1070             /* TODO(TLS1.3): Remove this before release */
1071             if (candidate_vers == TLS1_3_VERSION_DRAFT)
1072                 candidate_vers = TLS1_3_VERSION;
1073             /*
1074              * TODO(TLS1.3): There is some discussion on the TLS list about
1075              * wheter to ignore versions <TLS1.2 in supported_versions. At the
1076              * moment we honour them if present. To be reviewed later
1077              */
1078             if ((int)candidate_vers > s->client_version)
1079                 s->client_version = candidate_vers;
1080             if (version_cmp(s, candidate_vers, best_vers) <= 0)
1081                 continue;
1082             for (vent = table;
1083                  vent->version != 0 && vent->version != (int)candidate_vers;
1084                  ++vent)
1085                 continue;
1086             if (vent->version != 0 && vent->smeth != NULL) {
1087                 const SSL_METHOD *method;
1088
1089                 method = vent->smeth();
1090                 if (ssl_method_error(s, method) == 0) {
1091                     best_vers = candidate_vers;
1092                     best_method = method;
1093                 }
1094             }
1095         }
1096         if (PACKET_remaining(&versionslist) != 0) {
1097             /* Trailing data? */
1098             return SSL_R_LENGTH_MISMATCH;
1099         }
1100
1101         if (best_vers > 0) {
1102             s->version = best_vers;
1103             s->method = best_method;
1104             return 0;
1105         }
1106         return SSL_R_UNSUPPORTED_PROTOCOL;
1107     }
1108
1109     /*
1110      * If the supported versions extension isn't present, then the highest
1111      * version we can negotiate is TLSv1.2
1112      */
1113     if (version_cmp(s, client_version, TLS1_3_VERSION) >= 0)
1114         client_version = TLS1_2_VERSION;
1115
1116     /*
1117      * No supported versions extension, so we just use the version supplied in
1118      * the ClientHello.
1119      */
1120     for (vent = table; vent->version != 0; ++vent) {
1121         const SSL_METHOD *method;
1122
1123         if (vent->smeth == NULL ||
1124             version_cmp(s, client_version, vent->version) < 0)
1125             continue;
1126         method = vent->smeth();
1127         if (ssl_method_error(s, method) == 0) {
1128             s->version = vent->version;
1129             s->method = method;
1130             return 0;
1131         }
1132         disabled = 1;
1133     }
1134     return disabled ? SSL_R_UNSUPPORTED_PROTOCOL : SSL_R_VERSION_TOO_LOW;
1135 }
1136
1137 /*
1138  * ssl_choose_client_version - Choose client (D)TLS version.  Called when the
1139  * server HELLO is received to select the final client protocol version and
1140  * the version specific method.
1141  *
1142  * @s: client SSL handle.
1143  * @version: The proposed version from the server's HELLO.
1144  *
1145  * Returns 0 on success or an SSL error reason number on failure.
1146  */
1147 int ssl_choose_client_version(SSL *s, int version)
1148 {
1149     const version_info *vent;
1150     const version_info *table;
1151
1152     /* TODO(TLS1.3): Remove this before release */
1153     if (version == TLS1_3_VERSION_DRAFT)
1154         version = TLS1_3_VERSION;
1155
1156     switch (s->method->version) {
1157     default:
1158         if (version != s->version)
1159             return SSL_R_WRONG_SSL_VERSION;
1160         /*
1161          * If this SSL handle is not from a version flexible method we don't
1162          * (and never did) check min/max, FIPS or Suite B constraints.  Hope
1163          * that's OK.  It is up to the caller to not choose fixed protocol
1164          * versions they don't want.  If not, then easy to fix, just return
1165          * ssl_method_error(s, s->method)
1166          */
1167         return 0;
1168     case TLS_ANY_VERSION:
1169         table = tls_version_table;
1170         break;
1171     case DTLS_ANY_VERSION:
1172         table = dtls_version_table;
1173         break;
1174     }
1175
1176     for (vent = table; vent->version != 0; ++vent) {
1177         const SSL_METHOD *method;
1178         int err;
1179
1180         if (version != vent->version)
1181             continue;
1182         if (vent->cmeth == NULL)
1183             break;
1184         method = vent->cmeth();
1185         err = ssl_method_error(s, method);
1186         if (err != 0)
1187             return err;
1188         s->method = method;
1189         s->version = version;
1190         return 0;
1191     }
1192
1193     return SSL_R_UNSUPPORTED_PROTOCOL;
1194 }
1195
1196 /*
1197  * ssl_get_client_min_max_version - get minimum and maximum client version
1198  * @s: The SSL connection
1199  * @min_version: The minimum supported version
1200  * @max_version: The maximum supported version
1201  *
1202  * Work out what version we should be using for the initial ClientHello if the
1203  * version is initially (D)TLS_ANY_VERSION.  We apply any explicit SSL_OP_NO_xxx
1204  * options, the MinProtocol and MaxProtocol configuration commands, any Suite B
1205  * or FIPS_mode() constraints and any floor imposed by the security level here,
1206  * so we don't advertise the wrong protocol version to only reject the outcome later.
1207  *
1208  * Computing the right floor matters.  If, e.g., TLS 1.0 and 1.2 are enabled,
1209  * TLS 1.1 is disabled, but the security level, Suite-B  and/or MinProtocol
1210  * only allow TLS 1.2, we want to advertise TLS1.2, *not* TLS1.
1211  *
1212  * Returns 0 on success or an SSL error reason number on failure.  On failure
1213  * min_version and max_version will also be set to 0.
1214  */
1215 int ssl_get_client_min_max_version(const SSL *s, int *min_version,
1216                                    int *max_version)
1217 {
1218     int version;
1219     int hole;
1220     const SSL_METHOD *single = NULL;
1221     const SSL_METHOD *method;
1222     const version_info *table;
1223     const version_info *vent;
1224
1225     switch (s->method->version) {
1226     default:
1227         /*
1228          * If this SSL handle is not from a version flexible method we don't
1229          * (and never did) check min/max FIPS or Suite B constraints.  Hope
1230          * that's OK.  It is up to the caller to not choose fixed protocol
1231          * versions they don't want.  If not, then easy to fix, just return
1232          * ssl_method_error(s, s->method)
1233          */
1234         *min_version = *max_version = s->version;
1235         return 0;
1236     case TLS_ANY_VERSION:
1237         table = tls_version_table;
1238         break;
1239     case DTLS_ANY_VERSION:
1240         table = dtls_version_table;
1241         break;
1242     }
1243
1244     /*
1245      * SSL_OP_NO_X disables all protocols above X *if* there are some protocols
1246      * below X enabled. This is required in order to maintain the "version
1247      * capability" vector contiguous. Any versions with a NULL client method
1248      * (protocol version client is disabled at compile-time) is also a "hole".
1249      *
1250      * Our initial state is hole == 1, version == 0.  That is, versions above
1251      * the first version in the method table are disabled (a "hole" above
1252      * the valid protocol entries) and we don't have a selected version yet.
1253      *
1254      * Whenever "hole == 1", and we hit an enabled method, its version becomes
1255      * the selected version, and the method becomes a candidate "single"
1256      * method.  We're no longer in a hole, so "hole" becomes 0.
1257      *
1258      * If "hole == 0" and we hit an enabled method, then "single" is cleared,
1259      * as we support a contiguous range of at least two methods.  If we hit
1260      * a disabled method, then hole becomes true again, but nothing else
1261      * changes yet, because all the remaining methods may be disabled too.
1262      * If we again hit an enabled method after the new hole, it becomes
1263      * selected, as we start from scratch.
1264      */
1265     *min_version = version = 0;
1266     hole = 1;
1267     for (vent = table; vent->version != 0; ++vent) {
1268         /*
1269          * A table entry with a NULL client method is still a hole in the
1270          * "version capability" vector.
1271          */
1272         if (vent->cmeth == NULL) {
1273             hole = 1;
1274             continue;
1275         }
1276         method = vent->cmeth();
1277         if (ssl_method_error(s, method) != 0) {
1278             hole = 1;
1279         } else if (!hole) {
1280             single = NULL;
1281             *min_version = method->version;
1282         } else {
1283             version = (single = method)->version;
1284             *min_version = version;
1285             hole = 0;
1286         }
1287     }
1288
1289     *max_version = version;
1290
1291     /* Fail if everything is disabled */
1292     if (version == 0)
1293         return SSL_R_NO_PROTOCOLS_AVAILABLE;
1294
1295     return 0;
1296 }
1297
1298 /*
1299  * ssl_set_client_hello_version - Work out what version we should be using for
1300  * the initial ClientHello.
1301  *
1302  * @s: client SSL handle.
1303  *
1304  * Returns 0 on success or an SSL error reason number on failure.
1305  */
1306 int ssl_set_client_hello_version(SSL *s)
1307 {
1308     int ver_min, ver_max, ret;
1309
1310     ret = ssl_get_client_min_max_version(s, &ver_min, &ver_max);
1311
1312     if (ret != 0)
1313         return ret;
1314
1315     s->client_version = s->version = ver_max;
1316     return 0;
1317 }