| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |  * Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | #include <openssl/ocsp.h>
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | #include "../ssl_locl.h"
 | 
					
						
							| 
									
										
										
										
											2017-08-02 21:46:31 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | #include "statem_locl.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_renegotiate(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                           unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                           size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Add RI if renegotiating */ | 
					
						
							|  |  |  |     if (!s->renegotiate) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_renegotiate) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_sub_memcpy_u8(pkt, s->s3->previous_client_finished, | 
					
						
							|  |  |  |                                s->s3->previous_client_finished_len) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_RENEGOTIATE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_server_name(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                           unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                           size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     if (s->ext.hostname == NULL) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Add TLS extension servername to the Client Hello message */ | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_server_name) | 
					
						
							|  |  |  |                /* Sub-packet for server_name extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |                /* Sub-packet for servername list (always 1 hostname)*/ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u8(pkt, TLSEXT_NAMETYPE_host_name) | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |             || !WPACKET_sub_memcpy_u16(pkt, s->ext.hostname, | 
					
						
							|  |  |  |                                        strlen(s->ext.hostname)) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |             || !WPACKET_close(pkt) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SERVER_NAME, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_SRP
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_srp(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Add SRP username if there is one */ | 
					
						
							|  |  |  |     if (s->srp_ctx.login == NULL) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_srp) | 
					
						
							|  |  |  |                /* Sub-packet for SRP extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u8(pkt) | 
					
						
							|  |  |  |                /* login must not be zero...internal error if so */ | 
					
						
							|  |  |  |             || !WPACKET_set_flags(pkt, WPACKET_FLAGS_NON_ZERO_LENGTH) | 
					
						
							|  |  |  |             || !WPACKET_memcpy(pkt, s->srp_ctx.login, | 
					
						
							|  |  |  |                                strlen(s->srp_ctx.login)) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SRP, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_EC
 | 
					
						
							|  |  |  | static int use_ecc(SSL *s) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |     int i, end; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     unsigned long alg_k, alg_a; | 
					
						
							|  |  |  |     STACK_OF(SSL_CIPHER) *cipher_stack = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* See if we support any ECC ciphersuites */ | 
					
						
							|  |  |  |     if (s->version == SSL3_VERSION) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cipher_stack = SSL_get_ciphers(s); | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |     end = sk_SSL_CIPHER_num(cipher_stack); | 
					
						
							|  |  |  |     for (i = 0; i < end; i++) { | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         const SSL_CIPHER *c = sk_SSL_CIPHER_value(cipher_stack, i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         alg_k = c->algorithm_mkey; | 
					
						
							|  |  |  |         alg_a = c->algorithm_auth; | 
					
						
							|  |  |  |         if ((alg_k & (SSL_kECDHE | SSL_kECDHEPSK)) | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |                 || (alg_a & SSL_aECDSA) | 
					
						
							|  |  |  |                 || c->min_tls >= TLS1_3_VERSION) | 
					
						
							| 
									
										
										
										
											2017-03-15 06:14:30 +08:00
										 |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-15 06:14:30 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_ec_pt_formats(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                             unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                             size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const unsigned char *pformats; | 
					
						
							|  |  |  |     size_t num_formats; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!use_ecc(s)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Add TLS extension ECPointFormats to the ClientHello message */ | 
					
						
							|  |  |  |     tls1_get_formatlist(s, &pformats, &num_formats); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_ec_point_formats) | 
					
						
							|  |  |  |                /* Sub-packet for formats extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_sub_memcpy_u8(pkt, pformats, num_formats) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EC_PT_FORMATS, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_supported_groups(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                                unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                                size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const unsigned char *pcurves = NULL, *pcurvestmp; | 
					
						
							|  |  |  |     size_t num_curves = 0, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!use_ecc(s)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Add TLS extension supported_groups to the ClientHello message | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     /* TODO(TLS1.3): Add support for DHE groups */ | 
					
						
							|  |  |  |     if (!tls1_get_curvelist(s, 0, &pcurves, &num_curves)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_GROUPS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     pcurvestmp = pcurves; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_supported_groups) | 
					
						
							|  |  |  |                /* Sub-packet for supported_groups extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_GROUPS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     /* Copy curve ID if supported */ | 
					
						
							|  |  |  |     for (i = 0; i < num_curves; i++, pcurvestmp += 2) { | 
					
						
							| 
									
										
										
										
											2017-01-31 00:16:28 +08:00
										 |  |  |         if (tls_curve_allowed(s, pcurvestmp, SSL_SECOP_CURVE_SUPPORTED)) { | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |             if (!WPACKET_put_bytes_u8(pkt, pcurvestmp[0]) | 
					
						
							|  |  |  |                 || !WPACKET_put_bytes_u8(pkt, pcurvestmp[1])) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |                     SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_GROUPS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                            ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |                     return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_GROUPS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_session_ticket(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                              unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                              size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t ticklen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!tls_use_ticket(s)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!s->new_session && s->session != NULL | 
					
						
							| 
									
										
										
										
											2017-01-19 19:23:06 +08:00
										 |  |  |             && s->session->ext.tick != NULL | 
					
						
							|  |  |  |             && s->session->ssl_version != TLS1_3_VERSION) { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         ticklen = s->session->ext.ticklen; | 
					
						
							|  |  |  |     } else if (s->session && s->ext.session_ticket != NULL | 
					
						
							|  |  |  |                && s->ext.session_ticket->data != NULL) { | 
					
						
							|  |  |  |         ticklen = s->ext.session_ticket->length; | 
					
						
							|  |  |  |         s->session->ext.tick = OPENSSL_malloc(ticklen); | 
					
						
							|  |  |  |         if (s->session->ext.tick == NULL) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SESSION_TICKET, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                    ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |             return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         memcpy(s->session->ext.tick, | 
					
						
							|  |  |  |                s->ext.session_ticket->data, ticklen); | 
					
						
							|  |  |  |         s->session->ext.ticklen = ticklen; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         ticklen = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     if (ticklen == 0 && s->ext.session_ticket != NULL && | 
					
						
							|  |  |  |             s->ext.session_ticket->data == NULL) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_session_ticket) | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |             || !WPACKET_sub_memcpy_u16(pkt, s->session->ext.tick, ticklen)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SESSION_TICKET, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_sig_algs(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                        unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                        size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t salglen; | 
					
						
							| 
									
										
										
										
											2017-01-25 22:33:55 +08:00
										 |  |  |     const uint16_t *salg; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!SSL_CLIENT_USE_SIGALGS(s)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-26 03:12:48 +08:00
										 |  |  |     salglen = tls12_get_psigalgs(s, 1, &salg); | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_signature_algorithms) | 
					
						
							|  |  |  |                /* Sub-packet for sig-algs extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |                /* Sub-packet for the actual list */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !tls12_copy_sigalgs(s, pkt, salg, salglen) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SIG_ALGS, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_OCSP
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_status_request(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                              unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                              size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-02 17:14:15 +08:00
										 |  |  |     /* This extension isn't defined for client Certificates */ | 
					
						
							|  |  |  |     if (x != NULL) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-12-02 17:14:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     if (s->ext.status_type != TLSEXT_STATUSTYPE_ocsp) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_status_request) | 
					
						
							|  |  |  |                /* Sub-packet for status request extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u8(pkt, TLSEXT_STATUSTYPE_ocsp) | 
					
						
							|  |  |  |                /* Sub-packet for the ids */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_STATUS_REQUEST, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     for (i = 0; i < sk_OCSP_RESPID_num(s->ext.ocsp.ids); i++) { | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         unsigned char *idbytes; | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         OCSP_RESPID *id = sk_OCSP_RESPID_value(s->ext.ocsp.ids, i); | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |         int idlen = i2d_OCSP_RESPID(id, NULL); | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (idlen <= 0 | 
					
						
							|  |  |  |                    /* Sub-packet for an individual id */ | 
					
						
							|  |  |  |                 || !WPACKET_sub_allocate_bytes_u16(pkt, idlen, &idbytes) | 
					
						
							|  |  |  |                 || i2d_OCSP_RESPID(id, &idbytes) != idlen) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_STATUS_REQUEST, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                    ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |             return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!WPACKET_close(pkt) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_STATUS_REQUEST, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     if (s->ext.ocsp.exts) { | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         unsigned char *extbytes; | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         int extlen = i2d_X509_EXTENSIONS(s->ext.ocsp.exts, NULL); | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (extlen < 0) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_STATUS_REQUEST, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                    ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |             return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (!WPACKET_allocate_bytes(pkt, extlen, &extbytes) | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |                 || i2d_X509_EXTENSIONS(s->ext.ocsp.exts, &extbytes) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                    != extlen) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_STATUS_REQUEST, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                    ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |             return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |        } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_STATUS_REQUEST, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_npn(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-01-11 07:02:28 +08:00
										 |  |  |     if (s->ctx->ext.npn_select_cb == NULL || !SSL_IS_FIRST_HANDSHAKE(s)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * The client advertises an empty extension to indicate its support | 
					
						
							|  |  |  |      * for Next Protocol Negotiation | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_next_proto_neg) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u16(pkt, 0)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_NPN, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_alpn(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                    X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     s->s3->alpn_sent = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 07:02:28 +08:00
										 |  |  |     if (s->ext.alpn == NULL || !SSL_IS_FIRST_HANDSHAKE(s)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, | 
					
						
							|  |  |  |                 TLSEXT_TYPE_application_layer_protocol_negotiation) | 
					
						
							|  |  |  |                /* Sub-packet ALPN extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |             || !WPACKET_sub_memcpy_u16(pkt, s->ext.alpn, s->ext.alpn_len) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_ALPN, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     s->s3->alpn_sent = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_SRTP
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_use_srtp(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                        unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                        size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     STACK_OF(SRTP_PROTECTION_PROFILE) *clnt = SSL_get_srtp_profiles(s); | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |     int i, end; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (clnt == NULL) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_use_srtp) | 
					
						
							|  |  |  |                /* Sub-packet for SRTP extension */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |                /* Sub-packet for the protection profile list */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_USE_SRTP, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     end = sk_SRTP_PROTECTION_PROFILE_num(clnt); | 
					
						
							|  |  |  |     for (i = 0; i < end; i++) { | 
					
						
							|  |  |  |         const SRTP_PROTECTION_PROFILE *prof = | 
					
						
							|  |  |  |             sk_SRTP_PROTECTION_PROFILE_value(clnt, i); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         if (prof == NULL || !WPACKET_put_bytes_u16(pkt, prof->id)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_USE_SRTP, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |             return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!WPACKET_close(pkt) | 
					
						
							|  |  |  |                /* Add an empty use_mki value */ | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u8(pkt, 0) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_USE_SRTP, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_etm(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (s->options & SSL_OP_NO_ENCRYPT_THEN_MAC) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_encrypt_then_mac) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u16(pkt, 0)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_ETM, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_sct(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (s->ct_validation_callback == NULL) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-02 17:14:15 +08:00
										 |  |  |     /* Not defined for client Certificates */ | 
					
						
							|  |  |  |     if (x != NULL) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-12-02 17:14:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_signed_certificate_timestamp) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u16(pkt, 0)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SCT, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_ems(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_extended_master_secret) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u16(pkt, 0)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EMS, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_supported_versions(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                                  unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                                  size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int currv, min_version, max_version, reason; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_supported_versions) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u8(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_VERSIONS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-26 18:28:20 +08:00
										 |  |  |     reason = ssl_get_min_max_version(s, &min_version, &max_version); | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     if (reason != 0) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_VERSIONS, reason); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2017-02-18 06:13:26 +08:00
										 |  |  |      * TODO(TLS1.3): There is some discussion on the TLS list as to whether | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |      * we should include versions <TLS1.2. For the moment we do. To be | 
					
						
							|  |  |  |      * reviewed later. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     for (currv = max_version; currv >= min_version; currv--) { | 
					
						
							|  |  |  |         /* TODO(TLS1.3): Remove this first if clause prior to release!! */ | 
					
						
							|  |  |  |         if (currv == TLS1_3_VERSION) { | 
					
						
							|  |  |  |             if (!WPACKET_put_bytes_u16(pkt, TLS1_3_VERSION_DRAFT)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |                 SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_VERSIONS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                        ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |                 return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } else if (!WPACKET_put_bytes_u16(pkt, currv)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_VERSIONS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                    ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |             return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_SUPPORTED_VERSIONS, | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |                ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2017-06-30 16:41:03 +08:00
										 |  |  |  * Construct a psk_kex_modes extension. | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_psk_kex_modes(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                             unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                             size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  | { | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_TLS1_3
 | 
					
						
							| 
									
										
										
										
											2017-06-30 16:41:03 +08:00
										 |  |  |     int nodhe = s->options & SSL_OP_ALLOW_NO_DHE_KEX; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_psk_kex_modes) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u8(pkt) | 
					
						
							|  |  |  |             || !WPACKET_put_bytes_u8(pkt, TLSEXT_KEX_MODE_KE_DHE) | 
					
						
							| 
									
										
										
										
											2017-06-30 16:41:03 +08:00
										 |  |  |             || (nodhe && !WPACKET_put_bytes_u8(pkt, TLSEXT_KEX_MODE_KE)) | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  |             || !WPACKET_close(pkt) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK_KEX_MODES, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-19 18:07:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-30 16:41:03 +08:00
										 |  |  |     s->ext.psk_kex_mode = TLSEXT_KEX_MODE_FLAG_KE_DHE; | 
					
						
							|  |  |  |     if (nodhe) | 
					
						
							|  |  |  |         s->ext.psk_kex_mode |= TLSEXT_KEX_MODE_FLAG_KE; | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2017-01-12 23:28:48 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  | #ifndef OPENSSL_NO_TLS1_3
 | 
					
						
							|  |  |  | static int add_key_share(SSL *s, WPACKET *pkt, unsigned int curve_id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |     unsigned char *encoded_point = NULL; | 
					
						
							|  |  |  |     EVP_PKEY *key_share_key = NULL; | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     size_t encodedlen; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |     if (s->s3->tmp.pkey != NULL) { | 
					
						
							| 
									
										
										
										
											2017-05-22 19:33:42 +08:00
										 |  |  |         if (!ossl_assert(s->hello_retry_request)) { | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |             SSLerr(SSL_F_ADD_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-18 17:05:02 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Could happen if we got an HRR that wasn't requesting a new key_share | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         key_share_key = s->s3->tmp.pkey; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         key_share_key = ssl_generate_pkey_curve(curve_id); | 
					
						
							|  |  |  |         if (key_share_key == NULL) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_ADD_KEY_SHARE, ERR_R_EVP_LIB); | 
					
						
							| 
									
										
										
										
											2017-05-18 17:05:02 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Encode the public key. */ | 
					
						
							|  |  |  |     encodedlen = EVP_PKEY_get1_tls_encodedpoint(key_share_key, | 
					
						
							| 
									
										
										
										
											2017-02-07 00:47:29 +08:00
										 |  |  |                                                 &encoded_point); | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     if (encodedlen == 0) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_ADD_KEY_SHARE, ERR_R_EC_LIB); | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Create KeyShareEntry */ | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, curve_id) | 
					
						
							| 
									
										
										
										
											2017-02-07 00:47:29 +08:00
										 |  |  |             || !WPACKET_sub_memcpy_u16(pkt, encoded_point, encodedlen)) { | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |         SSLerr(SSL_F_ADD_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * TODO(TLS1.3): When changing to send more than one key_share we're | 
					
						
							|  |  |  |      * going to need to be able to save more than one EVP_PKEY. For now | 
					
						
							|  |  |  |      * we reuse the existing tmp.pkey | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     s->s3->tmp.pkey = key_share_key; | 
					
						
							|  |  |  |     s->s3->group_id = curve_id; | 
					
						
							| 
									
										
										
										
											2017-02-07 00:47:29 +08:00
										 |  |  |     OPENSSL_free(encoded_point); | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-18 17:05:02 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2017-05-09 15:52:04 +08:00
										 |  |  |  err: | 
					
						
							|  |  |  |     if (s->s3->tmp.pkey == NULL) | 
					
						
							|  |  |  |         EVP_PKEY_free(key_share_key); | 
					
						
							|  |  |  |     OPENSSL_free(encoded_point); | 
					
						
							| 
									
										
										
										
											2017-05-18 17:05:02 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_key_share(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                         unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                         size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-28 23:32:39 +08:00
										 |  |  | #ifndef OPENSSL_NO_TLS1_3
 | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     size_t i, num_curves = 0; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     const unsigned char *pcurves = NULL; | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     unsigned int curve_id = 0; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* key_share extension */ | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_key_share) | 
					
						
							|  |  |  |                /* Extension data sub-packet */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |                /* KeyShare list sub-packet */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!tls1_get_curvelist(s, 0, &pcurves, &num_curves)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * TODO(TLS1.3): Make the number of key_shares sent configurable. For | 
					
						
							|  |  |  |      * now, just send one | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     if (s->s3->group_id != 0) { | 
					
						
							|  |  |  |         curve_id = s->s3->group_id; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         for (i = 0; i < num_curves; i++, pcurves += 2) { | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |             if (!tls_curve_allowed(s, pcurves, SSL_SECOP_CURVE_SUPPORTED)) | 
					
						
							|  |  |  |                 continue; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-07 00:52:38 +08:00
										 |  |  |             curve_id = bytestogroup(pcurves); | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     if (curve_id == 0) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_KEY_SHARE, SSL_R_NO_SUITABLE_KEY_SHARE); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |     if (!add_key_share(s, pkt, curve_id)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     if (!WPACKET_close(pkt) || !WPACKET_close(pkt)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-28 23:32:39 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_cookie(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                      X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2017-03-03 01:37:03 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     EXT_RETURN ret = EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2017-03-03 01:37:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Should only be set if we've had an HRR */ | 
					
						
							|  |  |  |     if (s->ext.tls13_cookie_len == 0) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2017-03-03 01:37:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_cookie) | 
					
						
							|  |  |  |                /* Extension data sub-packet */ | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_sub_memcpy_u16(pkt, s->ext.tls13_cookie, | 
					
						
							|  |  |  |                                        s->ext.tls13_cookie_len) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_COOKIE, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |         goto end; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     ret = EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2017-03-03 01:37:03 +08:00
										 |  |  |  end: | 
					
						
							|  |  |  |     OPENSSL_free(s->ext.tls13_cookie); | 
					
						
							| 
									
										
										
										
											2017-03-06 04:00:11 +08:00
										 |  |  |     s->ext.tls13_cookie = NULL; | 
					
						
							| 
									
										
										
										
											2017-03-03 01:37:03 +08:00
										 |  |  |     s->ext.tls13_cookie_len = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_early_data(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                          unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                          size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     const unsigned char *id; | 
					
						
							|  |  |  |     size_t idlen; | 
					
						
							|  |  |  |     SSL_SESSION *psksess = NULL; | 
					
						
							| 
									
										
										
										
											2017-07-21 18:41:05 +08:00
										 |  |  |     SSL_SESSION *edsess = NULL; | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     const EVP_MD *handmd = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->hello_retry_request) | 
					
						
							|  |  |  |         handmd = ssl_handshake_md(s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->psk_use_session_cb != NULL | 
					
						
							| 
									
										
										
										
											2017-07-21 18:41:05 +08:00
										 |  |  |             && (!s->psk_use_session_cb(s, handmd, &id, &idlen, &psksess) | 
					
						
							|  |  |  |                 || (psksess != NULL | 
					
						
							|  |  |  |                     && psksess->ssl_version != TLS1_3_VERSION))) { | 
					
						
							|  |  |  |         SSL_SESSION_free(psksess); | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EARLY_DATA, SSL_R_BAD_PSK); | 
					
						
							|  |  |  |         return EXT_RETURN_FAIL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     SSL_SESSION_free(s->psksession); | 
					
						
							|  |  |  |     s->psksession = psksess; | 
					
						
							|  |  |  |     if (psksess != NULL) { | 
					
						
							|  |  |  |         OPENSSL_free(s->psksession_id); | 
					
						
							|  |  |  |         s->psksession_id = OPENSSL_memdup(id, idlen); | 
					
						
							|  |  |  |         if (s->psksession_id == NULL) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EARLY_DATA, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |             return EXT_RETURN_FAIL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         s->psksession_id_len = idlen; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  |     if (s->early_data_state != SSL_EARLY_DATA_CONNECTING | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |             || (s->session->ext.max_early_data == 0 | 
					
						
							|  |  |  |                 && (psksess == NULL || psksess->ext.max_early_data == 0))) { | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  |         s->max_early_data = 0; | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-21 18:41:05 +08:00
										 |  |  |     edsess = s->session->ext.max_early_data != 0 ? s->session : psksess; | 
					
						
							|  |  |  |     s->max_early_data = edsess->ext.max_early_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((s->ext.hostname == NULL && edsess->ext.hostname != NULL) | 
					
						
							|  |  |  |             || (s->ext.hostname != NULL | 
					
						
							|  |  |  |                 && (edsess->ext.hostname == NULL | 
					
						
							|  |  |  |                     || strcmp(s->ext.hostname, edsess->ext.hostname) != 0))) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EARLY_DATA, | 
					
						
							|  |  |  |                SSL_R_INCONSISTENT_EARLY_DATA_SNI); | 
					
						
							|  |  |  |         return EXT_RETURN_FAIL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((s->ext.alpn == NULL && edsess->ext.alpn_selected != NULL)) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EARLY_DATA, | 
					
						
							|  |  |  |                SSL_R_INCONSISTENT_EARLY_DATA_ALPN); | 
					
						
							|  |  |  |         return EXT_RETURN_FAIL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Verify that we are offering an ALPN protocol consistent with the early | 
					
						
							|  |  |  |      * data. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (edsess->ext.alpn_selected != NULL) { | 
					
						
							|  |  |  |         PACKET prots, alpnpkt; | 
					
						
							|  |  |  |         int found = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!PACKET_buf_init(&prots, s->ext.alpn, s->ext.alpn_len)) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EARLY_DATA, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |             return EXT_RETURN_FAIL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         while (PACKET_get_length_prefixed_1(&prots, &alpnpkt)) { | 
					
						
							|  |  |  |             if (PACKET_equal(&alpnpkt, edsess->ext.alpn_selected, | 
					
						
							|  |  |  |                              edsess->ext.alpn_selected_len)) { | 
					
						
							|  |  |  |                 found = 1; | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (!found) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EARLY_DATA, | 
					
						
							|  |  |  |                    SSL_R_INCONSISTENT_EARLY_DATA_ALPN); | 
					
						
							|  |  |  |             return EXT_RETURN_FAIL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_early_data) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt)) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_EARLY_DATA, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * We set this to rejected here. Later, if the server acknowledges the | 
					
						
							|  |  |  |      * extension, we set it to accepted. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     s->ext.early_data = SSL_EARLY_DATA_REJECTED; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  | #define F5_WORKAROUND_MIN_MSG_LEN   0xff
 | 
					
						
							|  |  |  | #define F5_WORKAROUND_MAX_MSG_LEN   0x200
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 18:18:39 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * PSK pre binder overhead = | 
					
						
							|  |  |  |  *  2 bytes for TLSEXT_TYPE_psk | 
					
						
							|  |  |  |  *  2 bytes for extension length | 
					
						
							|  |  |  |  *  2 bytes for identities list length | 
					
						
							|  |  |  |  *  2 bytes for identity length | 
					
						
							|  |  |  |  *  4 bytes for obfuscated_ticket_age | 
					
						
							|  |  |  |  *  2 bytes for binder list length | 
					
						
							|  |  |  |  *  1 byte for binder length | 
					
						
							|  |  |  |  * The above excludes the number of bytes for the identity itself and the | 
					
						
							|  |  |  |  * subsequent binder bytes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define PSK_PRE_BINDER_OVERHEAD (2 + 2 + 2 + 2 + 4 + 2 + 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_padding(SSL *s, WPACKET *pkt, | 
					
						
							|  |  |  |                                       unsigned int context, X509 *x, | 
					
						
							|  |  |  |                                       size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char *padbytes; | 
					
						
							|  |  |  |     size_t hlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((s->options & SSL_OP_TLSEXT_PADDING) == 0) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2017-03-16 18:18:39 +08:00
										 |  |  |      * Add padding to workaround bugs in F5 terminators. See RFC7685. | 
					
						
							|  |  |  |      * This code calculates the length of all extensions added so far but | 
					
						
							|  |  |  |      * excludes the PSK extension (because that MUST be written last). Therefore | 
					
						
							|  |  |  |      * this extension MUST always appear second to last. | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |      */ | 
					
						
							|  |  |  |     if (!WPACKET_get_total_written(pkt, &hlen)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PADDING, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 18:18:39 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If we're going to send a PSK then that will be written out after this | 
					
						
							|  |  |  |      * extension, so we need to calculate how long it is going to be. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (s->session->ssl_version == TLS1_3_VERSION | 
					
						
							|  |  |  |             && s->session->ext.ticklen != 0 | 
					
						
							|  |  |  |             && s->session->cipher != NULL) { | 
					
						
							|  |  |  |         const EVP_MD *md = ssl_md(s->session->cipher->algorithm2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (md != NULL) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * Add the fixed PSK overhead, the identity length and the binder | 
					
						
							|  |  |  |              * length. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             hlen +=  PSK_PRE_BINDER_OVERHEAD + s->session->ext.ticklen | 
					
						
							|  |  |  |                      + EVP_MD_size(md); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |     if (hlen > F5_WORKAROUND_MIN_MSG_LEN && hlen < F5_WORKAROUND_MAX_MSG_LEN) { | 
					
						
							| 
									
										
										
										
											2017-02-18 06:13:26 +08:00
										 |  |  |         /* Calculate the amount of padding we need to add */ | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |         hlen = F5_WORKAROUND_MAX_MSG_LEN - hlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * Take off the size of extension header itself (2 bytes for type and | 
					
						
							| 
									
										
										
										
											2017-08-18 21:32:29 +08:00
										 |  |  |          * 2 bytes for length bytes), but ensure that the extension is at least | 
					
						
							|  |  |  |          * 1 byte long so as not to have an empty extension last (WebSphere 7.x, | 
					
						
							|  |  |  |          * 8.x are intolerant of that condition) | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |         if (hlen >= 4) | 
					
						
							|  |  |  |             hlen -= 4; | 
					
						
							|  |  |  |         else | 
					
						
							| 
									
										
										
										
											2017-08-18 21:32:29 +08:00
										 |  |  |             hlen = 1; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_padding) | 
					
						
							|  |  |  |                 || !WPACKET_sub_allocate_bytes_u16(pkt, hlen, &padbytes)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PADDING, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         memset(padbytes, 0, hlen); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     return EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Construct the pre_shared_key extension | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  | EXT_RETURN tls_construct_ctos_psk(SSL *s, WPACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | { | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_TLS1_3
 | 
					
						
							| 
									
										
										
										
											2017-06-22 00:31:26 +08:00
										 |  |  |     uint32_t now, agesec, agems = 0; | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     size_t reshashsize = 0, pskhashsize = 0, binderoffset, msglen; | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |     unsigned char *resbinder = NULL, *pskbinder = NULL, *msgstart = NULL; | 
					
						
							| 
									
										
										
										
											2017-06-22 00:31:26 +08:00
										 |  |  |     const EVP_MD *handmd = NULL, *mdres = NULL, *mdpsk = NULL; | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     EXT_RETURN ret = EXT_RETURN_FAIL; | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |     int dores = 0; | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     s->session->ext.tick_identity = TLSEXT_PSK_BAD_IDENTITY; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 18:18:39 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Note: At this stage of the code we only support adding a single | 
					
						
							|  |  |  |      * resumption PSK. If we add support for multiple PSKs then the length | 
					
						
							|  |  |  |      * calculations in the padding extension will need to be adjusted. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2017-01-19 19:23:06 +08:00
										 |  |  |      * If this is an incompatible or new session then we have nothing to resume | 
					
						
							|  |  |  |      * so don't add this extension. | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-01-19 19:23:06 +08:00
										 |  |  |     if (s->session->ssl_version != TLS1_3_VERSION | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |             || (s->session->ext.ticklen == 0 && s->psksession == NULL)) | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |     if (s->hello_retry_request) | 
					
						
							|  |  |  |         handmd = ssl_handshake_md(s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->session->ext.ticklen != 0) { | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |         /* Get the digest associated with the ciphersuite in the session */ | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         if (s->session->cipher == NULL) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         mdres = ssl_md(s->session->cipher->algorithm2); | 
					
						
							|  |  |  |         if (mdres == NULL) { | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |             /*
 | 
					
						
							|  |  |  |              * Don't recognize this cipher so we can't use the session. | 
					
						
							|  |  |  |              * Ignore it | 
					
						
							|  |  |  |              */ | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |             goto dopsksess; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (s->hello_retry_request && mdres != handmd) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |              * Selected ciphersuite hash does not match the hash for the session | 
					
						
							|  |  |  |              * so we can't use it. | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |              */ | 
					
						
							|  |  |  |             goto dopsksess; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-21 00:02:07 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-14 00:09:47 +08:00
										 |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |          * Technically the C standard just says time() returns a time_t and says | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |          * nothing about the encoding of that type. In practice most | 
					
						
							|  |  |  |          * implementations follow POSIX which holds it as an integral type in | 
					
						
							|  |  |  |          * seconds since epoch. We've already made the assumption that we can do | 
					
						
							|  |  |  |          * this in multiple places in the code, so portability shouldn't be an | 
					
						
							|  |  |  |          * issue. | 
					
						
							| 
									
										
										
										
											2017-03-14 00:09:47 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         now = (uint32_t)time(NULL); | 
					
						
							|  |  |  |         agesec = now - (uint32_t)s->session->time; | 
					
						
							| 
									
										
										
										
											2017-03-14 00:09:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         if (s->session->ext.tick_lifetime_hint < agesec) { | 
					
						
							|  |  |  |             /* Ticket is too old. Ignore it. */ | 
					
						
							|  |  |  |             goto dopsksess; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Calculate age in ms. We're just doing it to nearest second. Should be | 
					
						
							|  |  |  |          * good enough. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         agems = agesec * (uint32_t)1000; | 
					
						
							| 
									
										
										
										
											2017-01-17 18:43:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         if (agesec != 0 && agems / (uint32_t)1000 != agesec) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |              * Overflow. Shouldn't happen unless this is a *really* old session. | 
					
						
							|  |  |  |              * If so we just ignore it. | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |              */ | 
					
						
							|  |  |  |             goto dopsksess; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |          * Obfuscate the age. Overflow here is fine, this addition is supposed | 
					
						
							|  |  |  |          * to be mod 2^32. | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         agems += s->session->ext.tick_age_add; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         reshashsize = EVP_MD_size(mdres); | 
					
						
							|  |  |  |         dores = 1; | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |  dopsksess: | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     if (!dores && s->psksession == NULL) | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         return EXT_RETURN_NOT_SENT; | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     if (s->psksession != NULL) { | 
					
						
							|  |  |  |         mdpsk = ssl_md(s->psksession->cipher->algorithm2); | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         if (mdpsk == NULL) { | 
					
						
							|  |  |  |             /*
 | 
					
						
							|  |  |  |              * Don't recognize this cipher so we can't use the session. | 
					
						
							|  |  |  |              * If this happens it's an application bug. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, SSL_R_BAD_PSK); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-20 21:25:38 +08:00
										 |  |  |         if (s->hello_retry_request && mdpsk != handmd) { | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |             /*
 | 
					
						
							|  |  |  |              * Selected ciphersuite hash does not match the hash for the PSK | 
					
						
							|  |  |  |              * session. This is an application bug. | 
					
						
							|  |  |  |              */ | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, SSL_R_BAD_PSK); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         pskhashsize = EVP_MD_size(mdpsk); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Create the extension, but skip over the binder for now */ | 
					
						
							|  |  |  |     if (!WPACKET_put_bytes_u16(pkt, TLSEXT_TYPE_psk) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |             || !WPACKET_start_sub_packet_u16(pkt)) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dores) { | 
					
						
							|  |  |  |         if (!WPACKET_sub_memcpy_u16(pkt, s->session->ext.tick, | 
					
						
							|  |  |  |                                            s->session->ext.ticklen) | 
					
						
							|  |  |  |                 || !WPACKET_put_bytes_u32(pkt, agems)) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     if (s->psksession != NULL) { | 
					
						
							|  |  |  |         if (!WPACKET_sub_memcpy_u16(pkt, s->psksession_id, | 
					
						
							|  |  |  |                                     s->psksession_id_len) | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |                 || !WPACKET_put_bytes_u32(pkt, 0)) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!WPACKET_close(pkt) | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |             || !WPACKET_get_total_written(pkt, &binderoffset) | 
					
						
							|  |  |  |             || !WPACKET_start_sub_packet_u16(pkt) | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |             || (dores | 
					
						
							|  |  |  |                 && !WPACKET_sub_allocate_bytes_u8(pkt, reshashsize, &resbinder)) | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |             || (s->psksession != NULL | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |                 && !WPACKET_sub_allocate_bytes_u8(pkt, pskhashsize, &pskbinder)) | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |             || !WPACKET_close(pkt) | 
					
						
							|  |  |  |             || !WPACKET_close(pkt) | 
					
						
							|  |  |  |             || !WPACKET_get_total_written(pkt, &msglen) | 
					
						
							|  |  |  |                /*
 | 
					
						
							|  |  |  |                 * We need to fill in all the sub-packet lengths now so we can | 
					
						
							|  |  |  |                 * calculate the HMAC of the message up to the binders | 
					
						
							|  |  |  |                 */ | 
					
						
							|  |  |  |             || !WPACKET_fill_lengths(pkt)) { | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     msgstart = WPACKET_get_curr(pkt) - msglen; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |     if (dores | 
					
						
							|  |  |  |             && tls_psk_do_binder(s, mdres, msgstart, binderoffset, NULL, | 
					
						
							|  |  |  |                                  resbinder, s->session, 1, 0) != 1) { | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     if (s->psksession != NULL | 
					
						
							| 
									
										
										
										
											2017-06-21 19:17:30 +08:00
										 |  |  |             && tls_psk_do_binder(s, mdpsk, msgstart, binderoffset, NULL, | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |                                  pskbinder, s->psksession, 1, 1) != 1) { | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_CONSTRUCT_CTOS_PSK, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dores) | 
					
						
							|  |  |  |         s->session->ext.tick_identity = 0; | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     if (s->psksession != NULL) | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |         s->psksession->ext.tick_identity = (dores ? 1 : 0); | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |     ret = EXT_RETURN_SENT; | 
					
						
							| 
									
										
										
										
											2017-01-14 01:00:49 +08:00
										 |  |  |  err: | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Parse the server's renegotiation binding and abort if it's not right | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_renegotiate(SSL *s, PACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t expected_len = s->s3->previous_client_finished_len | 
					
						
							|  |  |  |         + s->s3->previous_server_finished_len; | 
					
						
							|  |  |  |     size_t ilen; | 
					
						
							|  |  |  |     const unsigned char *data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check for logic errors */ | 
					
						
							| 
									
										
										
										
											2017-05-22 19:33:42 +08:00
										 |  |  |     if (!ossl_assert(expected_len == 0 | 
					
						
							|  |  |  |                      || s->s3->previous_client_finished_len != 0) | 
					
						
							|  |  |  |         || !ossl_assert(expected_len == 0 | 
					
						
							|  |  |  |                         || s->s3->previous_server_finished_len != 0)) { | 
					
						
							|  |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Parse the length byte */ | 
					
						
							|  |  |  |     if (!PACKET_get_1_len(pkt, &ilen)) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_RENEGOTIATE, | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |                SSL_R_RENEGOTIATION_ENCODING_ERR); | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Consistency check */ | 
					
						
							|  |  |  |     if (PACKET_remaining(pkt) != ilen) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_RENEGOTIATE, | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |                SSL_R_RENEGOTIATION_ENCODING_ERR); | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Check that the extension matches */ | 
					
						
							|  |  |  |     if (ilen != expected_len) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_RENEGOTIATE, | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |                SSL_R_RENEGOTIATION_MISMATCH); | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_get_bytes(pkt, &data, s->s3->previous_client_finished_len) | 
					
						
							|  |  |  |         || memcmp(data, s->s3->previous_client_finished, | 
					
						
							|  |  |  |                   s->s3->previous_client_finished_len) != 0) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_RENEGOTIATE, | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |                SSL_R_RENEGOTIATION_MISMATCH); | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_get_bytes(pkt, &data, s->s3->previous_server_finished_len) | 
					
						
							|  |  |  |         || memcmp(data, s->s3->previous_server_finished, | 
					
						
							|  |  |  |                   s->s3->previous_server_finished_len) != 0) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_RENEGOTIATE, | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |                SSL_R_RENEGOTIATION_MISMATCH); | 
					
						
							|  |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s->s3->send_connection_binding = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_server_name(SSL *s, PACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |     if (s->ext.hostname == NULL) { | 
					
						
							|  |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PACKET_remaining(pkt) > 0) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!s->hit) { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         if (s->session->ext.hostname != NULL) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |             *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         s->session->ext.hostname = OPENSSL_strdup(s->ext.hostname); | 
					
						
							|  |  |  |         if (s->session->ext.hostname == NULL) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |             *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_EC
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_ec_pt_formats(SSL *s, PACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                  X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     unsigned int ecpointformats_len; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     PACKET ecptformatlist; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_as_length_prefixed_1(pkt, &ecptformatlist)) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!s->hit) { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         ecpointformats_len = PACKET_remaining(&ecptformatlist); | 
					
						
							|  |  |  |         s->session->ext.ecpointformats_len = 0; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         OPENSSL_free(s->session->ext.ecpointformats); | 
					
						
							|  |  |  |         s->session->ext.ecpointformats = OPENSSL_malloc(ecpointformats_len); | 
					
						
							|  |  |  |         if (s->session->ext.ecpointformats == NULL) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |             *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         s->session->ext.ecpointformats_len = ecpointformats_len; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!PACKET_copy_bytes(&ecptformatlist, | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |                                s->session->ext.ecpointformats, | 
					
						
							|  |  |  |                                ecpointformats_len)) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |             *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_session_ticket(SSL *s, PACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     if (s->ext.session_ticket_cb != NULL && | 
					
						
							|  |  |  |         !s->ext.session_ticket_cb(s, PACKET_data(pkt), | 
					
						
							|  |  |  |                               PACKET_remaining(pkt), | 
					
						
							|  |  |  |                               s->ext.session_ticket_cb_arg)) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |     if (!tls_use_ticket(s)) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_UNSUPPORTED_EXTENSION; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |     if (PACKET_remaining(pkt) > 0) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     s->ext.ticket_expected = 1; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | #ifndef OPENSSL_NO_OCSP
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_status_request(SSL *s, PACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                                   X509 *x, size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							| 
									
										
										
										
											2016-12-02 22:46:54 +08:00
										 |  |  |      * MUST only be sent if we've requested a status | 
					
						
							|  |  |  |      * request message. In TLS <= 1.2 it must also be empty. | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |     if (s->ext.status_type != TLSEXT_STATUSTYPE_ocsp) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_UNSUPPORTED_EXTENSION; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |     if (!SSL_IS_TLS13(s) && PACKET_remaining(pkt) > 0) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-02 22:46:54 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (SSL_IS_TLS13(s)) { | 
					
						
							|  |  |  |         /* We only know how to handle this if it's for the first Certificate in
 | 
					
						
							| 
									
										
										
										
											2017-02-18 06:13:26 +08:00
										 |  |  |          * the chain. We ignore any other responses. | 
					
						
							| 
									
										
										
										
											2016-12-02 22:46:54 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2017-01-06 00:12:56 +08:00
										 |  |  |         if (chainidx != 0) | 
					
						
							| 
									
										
										
										
											2016-12-02 22:46:54 +08:00
										 |  |  |             return 1; | 
					
						
							|  |  |  |         return tls_process_cert_status_body(s, pkt, al); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     /* Set flag to expect CertificateStatus message */ | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     s->ext.status_expected = 1; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-11-26 00:28:02 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_CT
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_sct(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                        size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Only take it if we asked for it - i.e if there is no CT validation | 
					
						
							|  |  |  |      * callback set, then a custom extension MAY be processing it, so we | 
					
						
							|  |  |  |      * need to let control continue to flow to that. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (s->ct_validation_callback != NULL) { | 
					
						
							|  |  |  |         size_t size = PACKET_remaining(pkt); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Simply copy it off for later processing */ | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         OPENSSL_free(s->ext.scts); | 
					
						
							|  |  |  |         s->ext.scts = NULL; | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |         s->ext.scts_len = size; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         if (size > 0) { | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |             s->ext.scts = OPENSSL_malloc(size); | 
					
						
							|  |  |  |             if (s->ext.scts == NULL | 
					
						
							|  |  |  |                     || !PACKET_copy_bytes(pkt, s->ext.scts, size)) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |                 *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2017-05-09 20:44:25 +08:00
										 |  |  |         ENDPOINT role = (context & SSL_EXT_TLS1_2_SERVER_HELLO) != 0 | 
					
						
							|  |  |  |                         ? ENDPOINT_CLIENT : ENDPOINT_BOTH; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If we didn't ask for it then there must be a custom extension, | 
					
						
							|  |  |  |          * otherwise this is unsolicited. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (custom_ext_find(&s->cert->custext, role, | 
					
						
							|  |  |  |                             TLSEXT_TYPE_signed_certificate_timestamp, | 
					
						
							|  |  |  |                             NULL) == NULL) { | 
					
						
							|  |  |  |             *al = TLS1_AD_UNSUPPORTED_EXTENSION; | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-05 18:59:23 +08:00
										 |  |  |         if (custom_ext_parse(s, context, | 
					
						
							|  |  |  |                              TLSEXT_TYPE_signed_certificate_timestamp, | 
					
						
							|  |  |  |                              PACKET_data(pkt), PACKET_remaining(pkt), | 
					
						
							|  |  |  |                              x, chainidx, al) <= 0) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_NEXTPROTONEG
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * ssl_next_proto_validate validates a Next Protocol Negotiation block. No | 
					
						
							|  |  |  |  * elements of zero length are allowed and the set of elements must exactly | 
					
						
							|  |  |  |  * fill the length of the block. Returns 1 on success or 0 on failure. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int ssl_next_proto_validate(PACKET *pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PACKET tmp_protocol; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (PACKET_remaining(pkt)) { | 
					
						
							|  |  |  |         if (!PACKET_get_length_prefixed_1(pkt, &tmp_protocol) | 
					
						
							|  |  |  |             || PACKET_remaining(&tmp_protocol) == 0) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_npn(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                        size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned char *selected; | 
					
						
							|  |  |  |     unsigned char selected_len; | 
					
						
							|  |  |  |     PACKET tmppkt; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |     /* Check if we are in a renegotiation. If so ignore this extension */ | 
					
						
							| 
									
										
										
										
											2017-01-11 07:02:28 +08:00
										 |  |  |     if (!SSL_IS_FIRST_HANDSHAKE(s)) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* We must have requested it. */ | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     if (s->ctx->ext.npn_select_cb == NULL) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_UNSUPPORTED_EXTENSION; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     /* The data must be valid */ | 
					
						
							|  |  |  |     tmppkt = *pkt; | 
					
						
							|  |  |  |     if (!ssl_next_proto_validate(&tmppkt)) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     if (s->ctx->ext.npn_select_cb(s, &selected, &selected_len, | 
					
						
							|  |  |  |                                   PACKET_data(pkt), | 
					
						
							|  |  |  |                                   PACKET_remaining(pkt), | 
					
						
							|  |  |  |                                   s->ctx->ext.npn_select_cb_arg) != | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |              SSL_TLSEXT_ERR_OK) { | 
					
						
							|  |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Could be non-NULL if server has sent multiple NPN extensions in | 
					
						
							|  |  |  |      * a single Serverhello | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     OPENSSL_free(s->ext.npn); | 
					
						
							|  |  |  |     s->ext.npn = OPENSSL_malloc(selected_len); | 
					
						
							|  |  |  |     if (s->ext.npn == NULL) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 03:18:40 +08:00
										 |  |  |     memcpy(s->ext.npn, selected, selected_len); | 
					
						
							|  |  |  |     s->ext.npn_len = selected_len; | 
					
						
							|  |  |  |     s->s3->npn_seen = 1; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_alpn(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                         size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     size_t len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* We must have requested it. */ | 
					
						
							|  |  |  |     if (!s->s3->alpn_sent) { | 
					
						
							|  |  |  |         *al = SSL_AD_UNSUPPORTED_EXTENSION; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /*-
 | 
					
						
							|  |  |  |      * The extension data consists of: | 
					
						
							|  |  |  |      *   uint16 list_length | 
					
						
							|  |  |  |      *   uint8 proto_length; | 
					
						
							|  |  |  |      *   uint8 proto[proto_length]; | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (!PACKET_get_net_2_len(pkt, &len) | 
					
						
							|  |  |  |         || PACKET_remaining(pkt) != len || !PACKET_get_1_len(pkt, &len) | 
					
						
							|  |  |  |         || PACKET_remaining(pkt) != len) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     OPENSSL_free(s->s3->alpn_selected); | 
					
						
							|  |  |  |     s->s3->alpn_selected = OPENSSL_malloc(len); | 
					
						
							|  |  |  |     if (s->s3->alpn_selected == NULL) { | 
					
						
							|  |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!PACKET_copy_bytes(pkt, s->s3->alpn_selected, len)) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s->s3->alpn_selected_len = len; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-31 18:42:48 +08:00
										 |  |  |     /* We also put a copy in the session */ | 
					
						
							|  |  |  |     OPENSSL_free(s->session->ext.alpn_selected); | 
					
						
							|  |  |  |     s->session->ext.alpn_selected = OPENSSL_memdup(s->s3->alpn_selected, | 
					
						
							|  |  |  |                                                    s->s3->alpn_selected_len); | 
					
						
							|  |  |  |     s->session->ext.alpn_selected_len = s->s3->alpn_selected_len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->session->ext.alpn_selected == NULL) { | 
					
						
							|  |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_SRTP
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_use_srtp(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                             size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     unsigned int id, ct, mki; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     STACK_OF(SRTP_PROTECTION_PROFILE) *clnt; | 
					
						
							|  |  |  |     SRTP_PROTECTION_PROFILE *prof; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |     if (!PACKET_get_net_2(pkt, &ct) || ct != 2 | 
					
						
							|  |  |  |             || !PACKET_get_net_2(pkt, &id) | 
					
						
							|  |  |  |             || !PACKET_get_1(pkt, &mki) | 
					
						
							|  |  |  |             || PACKET_remaining(pkt) != 0) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_USE_SRTP, | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |                SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST); | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (mki != 0) { | 
					
						
							|  |  |  |         /* Must be no MKI, since we never offer one */ | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_USE_SRTP, SSL_R_BAD_SRTP_MKI_VALUE); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Throw an error if the server gave us an unsolicited extension */ | 
					
						
							| 
									
										
										
										
											2016-12-08 01:04:46 +08:00
										 |  |  |     clnt = SSL_get_srtp_profiles(s); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     if (clnt == NULL) { | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_USE_SRTP, SSL_R_NO_SRTP_PROFILES); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Check to see if the server gave us something we support (and | 
					
						
							|  |  |  |      * presumably offered) | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     for (i = 0; i < sk_SRTP_PROTECTION_PROFILE_num(clnt); i++) { | 
					
						
							|  |  |  |         prof = sk_SRTP_PROTECTION_PROFILE_value(clnt, i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (prof->id == id) { | 
					
						
							|  |  |  |             s->srtp_profile = prof; | 
					
						
							|  |  |  |             *al = 0; | 
					
						
							|  |  |  |             return 1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |     SSLerr(SSL_F_TLS_PARSE_STOC_USE_SRTP, | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |            SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST); | 
					
						
							|  |  |  |     *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_etm(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                        size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Ignore if inappropriate ciphersuite */ | 
					
						
							|  |  |  |     if (!(s->options & SSL_OP_NO_ENCRYPT_THEN_MAC) | 
					
						
							|  |  |  |             && s->s3->tmp.new_cipher->algorithm_mac != SSL_AEAD | 
					
						
							|  |  |  |             && s->s3->tmp.new_cipher->algorithm_enc != SSL_RC4) | 
					
						
							| 
									
										
										
										
											2017-02-03 22:06:20 +08:00
										 |  |  |         s->ext.use_etm = 1; | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_ems(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                        size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     s->s3->flags |= TLS1_FLAGS_RECEIVED_EXTMS; | 
					
						
							|  |  |  |     if (!s->hit) | 
					
						
							|  |  |  |         s->session->flags |= SSL_SESS_FLAG_EXTMS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_key_share(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                              size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-12-28 23:32:39 +08:00
										 |  |  | #ifndef OPENSSL_NO_TLS1_3
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     unsigned int group_id; | 
					
						
							|  |  |  |     PACKET encoded_pt; | 
					
						
							|  |  |  |     EVP_PKEY *ckey = s->s3->tmp.pkey, *skey = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Sanity check */ | 
					
						
							| 
									
										
										
										
											2017-04-03 22:24:06 +08:00
										 |  |  |     if (ckey == NULL || s->s3->peer_tmp != NULL) { | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_get_net_2(pkt, &group_id)) { | 
					
						
							| 
									
										
										
										
											2017-05-10 23:47:24 +08:00
										 |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, SSL_R_LENGTH_MISMATCH); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-04 18:40:02 +08:00
										 |  |  |     if ((context & SSL_EXT_TLS1_3_HELLO_RETRY_REQUEST) != 0) { | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |         unsigned const char *pcurves = NULL; | 
					
						
							|  |  |  |         size_t i, num_curves; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (PACKET_remaining(pkt) != 0) { | 
					
						
							| 
									
										
										
										
											2017-05-10 23:47:24 +08:00
										 |  |  |             *al = SSL_AD_DECODE_ERROR; | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |             SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, SSL_R_LENGTH_MISMATCH); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * It is an error if the HelloRetryRequest wants a key_share that we | 
					
						
							|  |  |  |          * already sent in the first ClientHello | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (group_id == s->s3->group_id) { | 
					
						
							|  |  |  |             *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, SSL_R_BAD_KEY_SHARE); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* Validate the selected group is one we support */ | 
					
						
							|  |  |  |         if (!tls1_get_curvelist(s, 0, &pcurves, &num_curves)) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         for (i = 0; i < num_curves; i++, pcurves += 2) { | 
					
						
							| 
									
										
										
										
											2017-02-07 00:52:38 +08:00
										 |  |  |             if (group_id == bytestogroup(pcurves)) | 
					
						
							| 
									
										
										
										
											2017-02-01 21:31:27 +08:00
										 |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (i >= num_curves | 
					
						
							|  |  |  |                 || !tls_curve_allowed(s, pcurves, SSL_SECOP_CURVE_SUPPORTED)) { | 
					
						
							|  |  |  |             *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, SSL_R_BAD_KEY_SHARE); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         s->s3->group_id = group_id; | 
					
						
							|  |  |  |         EVP_PKEY_free(s->s3->tmp.pkey); | 
					
						
							|  |  |  |         s->s3->tmp.pkey = NULL; | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |     if (group_id != s->s3->group_id) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * This isn't for the group that we sent in the original | 
					
						
							|  |  |  |          * key_share! | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2017-05-10 23:47:24 +08:00
										 |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, SSL_R_BAD_KEY_SHARE); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_as_length_prefixed_2(pkt, &encoded_pt) | 
					
						
							|  |  |  |             || PACKET_remaining(&encoded_pt) == 0) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, SSL_R_LENGTH_MISMATCH); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     skey = ssl_generate_pkey(ckey); | 
					
						
							|  |  |  |     if (skey == NULL) { | 
					
						
							|  |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!EVP_PKEY_set1_tls_encodedpoint(skey, PACKET_data(&encoded_pt), | 
					
						
							|  |  |  |                                         PACKET_remaining(&encoded_pt))) { | 
					
						
							| 
									
										
										
										
											2017-05-17 00:28:23 +08:00
										 |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, SSL_R_BAD_ECPOINT); | 
					
						
							| 
									
										
										
										
											2016-12-18 19:48:49 +08:00
										 |  |  |         EVP_PKEY_free(skey); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ssl_derive(s, ckey, skey, 1) == 0) { | 
					
						
							|  |  |  |         *al = SSL_AD_INTERNAL_ERROR; | 
					
						
							| 
									
										
										
										
											2016-12-08 07:50:55 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_KEY_SHARE, ERR_R_INTERNAL_ERROR); | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  |         EVP_PKEY_free(skey); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-04-03 22:24:06 +08:00
										 |  |  |     s->s3->peer_tmp = skey; | 
					
						
							| 
									
										
										
										
											2016-12-28 23:32:39 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-11-25 20:34:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-18 17:38:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-03 01:37:03 +08:00
										 |  |  | int tls_parse_stoc_cookie(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                        size_t chainidx, int *al) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PACKET cookie; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_as_length_prefixed_2(pkt, &cookie) | 
					
						
							|  |  |  |             || !PACKET_memdup(&cookie, &s->ext.tls13_cookie, | 
					
						
							|  |  |  |                               &s->ext.tls13_cookie_len)) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_COOKIE, SSL_R_LENGTH_MISMATCH); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  | int tls_parse_stoc_early_data(SSL *s, PACKET *pkt, unsigned int context, | 
					
						
							|  |  |  |                               X509 *x, size_t chainidx, int *al) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-04-04 18:40:02 +08:00
										 |  |  |     if (context == SSL_EXT_TLS1_3_NEW_SESSION_TICKET) { | 
					
						
							| 
									
										
										
										
											2017-03-09 23:31:55 +08:00
										 |  |  |         unsigned long max_early_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!PACKET_get_net_4(pkt, &max_early_data) | 
					
						
							|  |  |  |                 || PACKET_remaining(pkt) != 0) { | 
					
						
							|  |  |  |             SSLerr(SSL_F_TLS_PARSE_STOC_EARLY_DATA, | 
					
						
							|  |  |  |                    SSL_R_INVALID_MAX_EARLY_DATA); | 
					
						
							|  |  |  |             *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         s->session->ext.max_early_data = max_early_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-24 19:13:25 +08:00
										 |  |  |     if (PACKET_remaining(pkt) != 0) { | 
					
						
							|  |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->ext.early_data != SSL_EARLY_DATA_REJECTED | 
					
						
							|  |  |  |             || !s->hit | 
					
						
							|  |  |  |             || s->session->ext.tick_identity != 0) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * If we get here then we didn't send early data, or we didn't resume | 
					
						
							|  |  |  |          * using the first identity so the server should not be accepting it. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s->ext.early_data = SSL_EARLY_DATA_ACCEPTED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-01 01:00:12 +08:00
										 |  |  | int tls_parse_stoc_psk(SSL *s, PACKET *pkt, unsigned int context, X509 *x, | 
					
						
							|  |  |  |                        size_t chainidx, int *al) | 
					
						
							| 
									
										
										
										
											2017-01-18 17:38:53 +08:00
										 |  |  | { | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_TLS1_3
 | 
					
						
							|  |  |  |     unsigned int identity; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!PACKET_get_net_2(pkt, &identity) || PACKET_remaining(pkt) != 0) { | 
					
						
							| 
									
										
										
										
											2017-05-10 23:47:24 +08:00
										 |  |  |         *al = SSL_AD_DECODE_ERROR; | 
					
						
							| 
									
										
										
										
											2017-01-18 17:38:53 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_PSK, SSL_R_LENGTH_MISMATCH); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |     if (s->session->ext.tick_identity == (int)identity) { | 
					
						
							|  |  |  |         s->hit = 1; | 
					
						
							|  |  |  |         SSL_SESSION_free(s->psksession); | 
					
						
							|  |  |  |         s->psksession = NULL; | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->psksession == NULL | 
					
						
							|  |  |  |             || s->psksession->ext.tick_identity != (int)identity) { | 
					
						
							| 
									
										
										
										
											2017-05-10 23:47:24 +08:00
										 |  |  |         *al = SSL_AD_ILLEGAL_PARAMETER; | 
					
						
							| 
									
										
										
										
											2017-01-18 17:38:53 +08:00
										 |  |  |         SSLerr(SSL_F_TLS_PARSE_STOC_PSK, SSL_R_BAD_PSK_IDENTITY); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-06 03:53:03 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * If we used the external PSK for sending early_data then s->early_secret | 
					
						
							|  |  |  |      * is already set up, so don't overwrite it. Otherwise we copy the | 
					
						
							|  |  |  |      * early_secret across that we generated earlier. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if ((s->early_data_state != SSL_EARLY_DATA_WRITE_RETRY | 
					
						
							|  |  |  |                 && s->early_data_state != SSL_EARLY_DATA_FINISHED_WRITING) | 
					
						
							|  |  |  |             || s->session->ext.max_early_data > 0 | 
					
						
							|  |  |  |             || s->psksession->ext.max_early_data == 0) | 
					
						
							|  |  |  |         memcpy(s->early_secret, s->psksession->early_secret, EVP_MAX_MD_SIZE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-12 20:30:21 +08:00
										 |  |  |     SSL_SESSION_free(s->session); | 
					
						
							|  |  |  |     s->session = s->psksession; | 
					
						
							|  |  |  |     s->psksession = NULL; | 
					
						
							| 
									
										
										
										
											2017-01-18 17:38:53 +08:00
										 |  |  |     s->hit = 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } |