2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
58 /* ====================================================================
59 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
61 * Redistribution and use in source and binary forms, with or without
62 * modification, are permitted provided that the following conditions
65 * 1. Redistributions of source code must retain the above copyright
66 * notice, this list of conditions and the following disclaimer.
68 * 2. Redistributions in binary form must reproduce the above copyright
69 * notice, this list of conditions and the following disclaimer in
70 * the documentation and/or other materials provided with the
73 * 3. All advertising materials mentioning features or use of this
74 * software must display the following acknowledgment:
75 * "This product includes software developed by the OpenSSL Project
76 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
78 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
79 * endorse or promote products derived from this software without
80 * prior written permission. For written permission, please contact
81 * openssl-core@openssl.org.
83 * 5. Products derived from this software may not be called "OpenSSL"
84 * nor may "OpenSSL" appear in their names without prior written
85 * permission of the OpenSSL Project.
87 * 6. Redistributions of any form whatsoever must retain the following
89 * "This product includes software developed by the OpenSSL Project
90 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
92 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
93 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
94 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
95 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
96 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
98 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
99 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
101 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
103 * OF THE POSSIBILITY OF SUCH DAMAGE.
104 * ====================================================================
106 * This product includes cryptographic software written by Eric Young
107 * (eay@cryptsoft.com). This product includes software written by Tim
108 * Hudson (tjh@cryptsoft.com).
113 #include <openssl/objects.h>
114 #include <openssl/evp.h>
115 #include <openssl/hmac.h>
116 #include <openssl/ocsp.h>
117 #include <openssl/rand.h>
118 #include "ssl_locl.h"
120 const char tls1_version_str[]="TLSv1" OPENSSL_VERSION_PTEXT;
122 #ifndef OPENSSL_NO_TLSEXT
123 static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen,
124 const unsigned char *sess_id, int sesslen,
125 SSL_SESSION **psess);
126 static int ssl_check_clienthello_tlsext_early(SSL *s);
127 int ssl_check_serverhello_tlsext(SSL *s);
130 SSL3_ENC_METHOD TLSv1_enc_data={
133 tls1_setup_key_block,
134 tls1_generate_master_secret,
135 tls1_change_cipher_state,
136 tls1_final_finish_mac,
137 TLS1_FINISH_MAC_LENGTH,
138 tls1_cert_verify_mac,
139 TLS_MD_CLIENT_FINISH_CONST,TLS_MD_CLIENT_FINISH_CONST_SIZE,
140 TLS_MD_SERVER_FINISH_CONST,TLS_MD_SERVER_FINISH_CONST_SIZE,
142 tls1_export_keying_material,
144 SSL3_HM_HEADER_LENGTH,
145 ssl3_set_handshake_header,
149 SSL3_ENC_METHOD TLSv1_1_enc_data={
152 tls1_setup_key_block,
153 tls1_generate_master_secret,
154 tls1_change_cipher_state,
155 tls1_final_finish_mac,
156 TLS1_FINISH_MAC_LENGTH,
157 tls1_cert_verify_mac,
158 TLS_MD_CLIENT_FINISH_CONST,TLS_MD_CLIENT_FINISH_CONST_SIZE,
159 TLS_MD_SERVER_FINISH_CONST,TLS_MD_SERVER_FINISH_CONST_SIZE,
161 tls1_export_keying_material,
162 SSL_ENC_FLAG_EXPLICIT_IV,
163 SSL3_HM_HEADER_LENGTH,
164 ssl3_set_handshake_header,
168 SSL3_ENC_METHOD TLSv1_2_enc_data={
171 tls1_setup_key_block,
172 tls1_generate_master_secret,
173 tls1_change_cipher_state,
174 tls1_final_finish_mac,
175 TLS1_FINISH_MAC_LENGTH,
176 tls1_cert_verify_mac,
177 TLS_MD_CLIENT_FINISH_CONST,TLS_MD_CLIENT_FINISH_CONST_SIZE,
178 TLS_MD_SERVER_FINISH_CONST,TLS_MD_SERVER_FINISH_CONST_SIZE,
180 tls1_export_keying_material,
181 SSL_ENC_FLAG_EXPLICIT_IV|SSL_ENC_FLAG_SIGALGS|SSL_ENC_FLAG_SHA256_PRF
182 |SSL_ENC_FLAG_TLS1_2_CIPHERS,
183 SSL3_HM_HEADER_LENGTH,
184 ssl3_set_handshake_header,
188 long tls1_default_timeout(void)
190 /* 2 hours, the 24 hours mentioned in the TLSv1 spec
191 * is way too long for http, the cache would over fill */
197 if (!ssl3_new(s)) return(0);
198 s->method->ssl_clear(s);
202 void tls1_free(SSL *s)
204 #ifndef OPENSSL_NO_TLSEXT
205 if (s->tlsext_session_ticket)
207 OPENSSL_free(s->tlsext_session_ticket);
209 #endif /* OPENSSL_NO_TLSEXT */
213 void tls1_clear(SSL *s)
216 s->version = s->method->version;
219 #ifndef OPENSSL_NO_EC
221 static int nid_list[] =
223 NID_sect163k1, /* sect163k1 (1) */
224 NID_sect163r1, /* sect163r1 (2) */
225 NID_sect163r2, /* sect163r2 (3) */
226 NID_sect193r1, /* sect193r1 (4) */
227 NID_sect193r2, /* sect193r2 (5) */
228 NID_sect233k1, /* sect233k1 (6) */
229 NID_sect233r1, /* sect233r1 (7) */
230 NID_sect239k1, /* sect239k1 (8) */
231 NID_sect283k1, /* sect283k1 (9) */
232 NID_sect283r1, /* sect283r1 (10) */
233 NID_sect409k1, /* sect409k1 (11) */
234 NID_sect409r1, /* sect409r1 (12) */
235 NID_sect571k1, /* sect571k1 (13) */
236 NID_sect571r1, /* sect571r1 (14) */
237 NID_secp160k1, /* secp160k1 (15) */
238 NID_secp160r1, /* secp160r1 (16) */
239 NID_secp160r2, /* secp160r2 (17) */
240 NID_secp192k1, /* secp192k1 (18) */
241 NID_X9_62_prime192v1, /* secp192r1 (19) */
242 NID_secp224k1, /* secp224k1 (20) */
243 NID_secp224r1, /* secp224r1 (21) */
244 NID_secp256k1, /* secp256k1 (22) */
245 NID_X9_62_prime256v1, /* secp256r1 (23) */
246 NID_secp384r1, /* secp384r1 (24) */
247 NID_secp521r1 /* secp521r1 (25) */
251 static const unsigned char ecformats_default[] =
253 TLSEXT_ECPOINTFORMAT_uncompressed,
254 TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime,
255 TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2
258 static const unsigned char eccurves_default[] =
260 0,14, /* sect571r1 (14) */
261 0,13, /* sect571k1 (13) */
262 0,25, /* secp521r1 (25) */
263 0,11, /* sect409k1 (11) */
264 0,12, /* sect409r1 (12) */
265 0,24, /* secp384r1 (24) */
266 0,9, /* sect283k1 (9) */
267 0,10, /* sect283r1 (10) */
268 0,22, /* secp256k1 (22) */
269 0,23, /* secp256r1 (23) */
270 0,8, /* sect239k1 (8) */
271 0,6, /* sect233k1 (6) */
272 0,7, /* sect233r1 (7) */
273 0,20, /* secp224k1 (20) */
274 0,21, /* secp224r1 (21) */
275 0,4, /* sect193r1 (4) */
276 0,5, /* sect193r2 (5) */
277 0,18, /* secp192k1 (18) */
278 0,19, /* secp192r1 (19) */
279 0,1, /* sect163k1 (1) */
280 0,2, /* sect163r1 (2) */
281 0,3, /* sect163r2 (3) */
282 0,15, /* secp160k1 (15) */
283 0,16, /* secp160r1 (16) */
284 0,17, /* secp160r2 (17) */
287 static const unsigned char suiteb_curves[] =
289 0, TLSEXT_curve_P_256,
290 0, TLSEXT_curve_P_384
293 int tls1_ec_curve_id2nid(int curve_id)
295 /* ECC curves from draft-ietf-tls-ecc-12.txt (Oct. 17, 2005) */
296 if ((curve_id < 1) || ((unsigned int)curve_id >
297 sizeof(nid_list)/sizeof(nid_list[0])))
299 return nid_list[curve_id-1];
302 int tls1_ec_nid2curve_id(int nid)
304 /* ECC curves from draft-ietf-tls-ecc-12.txt (Oct. 17, 2005) */
307 case NID_sect163k1: /* sect163k1 (1) */
309 case NID_sect163r1: /* sect163r1 (2) */
311 case NID_sect163r2: /* sect163r2 (3) */
313 case NID_sect193r1: /* sect193r1 (4) */
315 case NID_sect193r2: /* sect193r2 (5) */
317 case NID_sect233k1: /* sect233k1 (6) */
319 case NID_sect233r1: /* sect233r1 (7) */
321 case NID_sect239k1: /* sect239k1 (8) */
323 case NID_sect283k1: /* sect283k1 (9) */
325 case NID_sect283r1: /* sect283r1 (10) */
327 case NID_sect409k1: /* sect409k1 (11) */
329 case NID_sect409r1: /* sect409r1 (12) */
331 case NID_sect571k1: /* sect571k1 (13) */
333 case NID_sect571r1: /* sect571r1 (14) */
335 case NID_secp160k1: /* secp160k1 (15) */
337 case NID_secp160r1: /* secp160r1 (16) */
339 case NID_secp160r2: /* secp160r2 (17) */
341 case NID_secp192k1: /* secp192k1 (18) */
343 case NID_X9_62_prime192v1: /* secp192r1 (19) */
345 case NID_secp224k1: /* secp224k1 (20) */
347 case NID_secp224r1: /* secp224r1 (21) */
349 case NID_secp256k1: /* secp256k1 (22) */
351 case NID_X9_62_prime256v1: /* secp256r1 (23) */
353 case NID_secp384r1: /* secp384r1 (24) */
355 case NID_secp521r1: /* secp521r1 (25) */
361 /* Get curves list, if "sess" is set return client curves otherwise
364 static void tls1_get_curvelist(SSL *s, int sess,
365 const unsigned char **pcurves,
370 *pcurves = s->session->tlsext_ellipticcurvelist;
371 *pcurveslen = s->session->tlsext_ellipticcurvelist_length;
374 /* For Suite B mode only include P-256, P-384 */
375 switch (tls1_suiteb(s))
377 case SSL_CERT_FLAG_SUITEB_128_LOS:
378 *pcurves = suiteb_curves;
379 *pcurveslen = sizeof(suiteb_curves);
382 case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
383 *pcurves = suiteb_curves;
387 case SSL_CERT_FLAG_SUITEB_192_LOS:
388 *pcurves = suiteb_curves + 2;
392 *pcurves = s->tlsext_ellipticcurvelist;
393 *pcurveslen = s->tlsext_ellipticcurvelist_length;
397 *pcurves = eccurves_default;
398 *pcurveslen = sizeof(eccurves_default);
401 /* Check a curve is one of our preferences */
402 int tls1_check_curve(SSL *s, const unsigned char *p, size_t len)
404 const unsigned char *curves;
406 unsigned int suiteb_flags = tls1_suiteb(s);
407 if (len != 3 || p[0] != NAMED_CURVE_TYPE)
409 /* Check curve matches Suite B preferences */
412 unsigned long cid = s->s3->tmp.new_cipher->id;
415 if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)
417 if (p[2] != TLSEXT_curve_P_256)
420 else if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384)
422 if (p[2] != TLSEXT_curve_P_384)
425 else /* Should never happen */
428 tls1_get_curvelist(s, 0, &curves, &curveslen);
429 for (i = 0; i < curveslen; i += 2, curves += 2)
431 if (p[1] == curves[0] && p[2] == curves[1])
437 /* Return nth shared curve. If nmatch == -1 return number of
438 * matches. For nmatch == -2 return the NID of the curve to use for
442 int tls1_shared_curve(SSL *s, int nmatch)
444 const unsigned char *pref, *supp;
445 size_t preflen, supplen, i, j;
447 /* Can't do anything on client side */
454 /* For Suite B ciphersuite determines curve: we
455 * already know these are acceptable due to previous
458 unsigned long cid = s->s3->tmp.new_cipher->id;
459 if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)
460 return NID_X9_62_prime256v1; /* P-256 */
461 if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384)
462 return NID_secp384r1; /* P-384 */
463 /* Should never happen */
466 /* If not Suite B just return first preference shared curve */
469 tls1_get_curvelist(s, !!(s->options & SSL_OP_CIPHER_SERVER_PREFERENCE),
471 tls1_get_curvelist(s, !(s->options & SSL_OP_CIPHER_SERVER_PREFERENCE),
476 for (i = 0; i < preflen; i++, pref+=2)
478 const unsigned char *tsupp = supp;
479 for (j = 0; j < supplen; j++, tsupp+=2)
481 if (pref[0] == tsupp[0] && pref[1] == tsupp[1])
485 int id = (pref[0] << 8) | pref[1];
486 return tls1_ec_curve_id2nid(id);
497 int tls1_set_curves(unsigned char **pext, size_t *pextlen,
498 int *curves, size_t ncurves)
500 unsigned char *clist, *p;
502 /* Bitmap of curves included to detect duplicates: only works
503 * while curve ids < 32
505 unsigned long dup_list = 0;
506 clist = OPENSSL_malloc(ncurves * 2);
509 for (i = 0, p = clist; i < ncurves; i++)
511 unsigned long idmask;
513 id = tls1_ec_nid2curve_id(curves[i]);
515 if (!id || (dup_list & idmask))
526 *pextlen = ncurves * 2;
530 #define MAX_CURVELIST 25
535 int nid_arr[MAX_CURVELIST];
538 static int nid_cb(const char *elem, int len, void *arg)
540 nid_cb_st *narg = arg;
544 if (narg->nidcnt == MAX_CURVELIST)
546 if (len > (int)(sizeof(etmp) - 1))
548 memcpy(etmp, elem, len);
550 nid = EC_curve_nist2nid(etmp);
551 if (nid == NID_undef)
552 nid = OBJ_sn2nid(etmp);
553 if (nid == NID_undef)
554 nid = OBJ_ln2nid(etmp);
555 if (nid == NID_undef)
557 for (i = 0; i < narg->nidcnt; i++)
558 if (narg->nid_arr[i] == nid)
560 narg->nid_arr[narg->nidcnt++] = nid;
563 /* Set curves based on a colon separate list */
564 int tls1_set_curves_list(unsigned char **pext, size_t *pextlen,
569 if (!CONF_parse_list(str, ':', 1, nid_cb, &ncb))
573 return tls1_set_curves(pext, pextlen, ncb.nid_arr, ncb.nidcnt);
575 /* For an EC key set TLS id and required compression based on parameters */
576 static int tls1_set_ec_id(unsigned char *curve_id, unsigned char *comp_id,
582 const EC_METHOD *meth;
585 /* Determine if it is a prime field */
586 grp = EC_KEY_get0_group(ec);
587 pt = EC_KEY_get0_public_key(ec);
590 meth = EC_GROUP_method_of(grp);
593 if (EC_METHOD_get_field_type(meth) == NID_X9_62_prime_field)
597 /* Determine curve ID */
598 id = EC_GROUP_get_curve_name(grp);
599 id = tls1_ec_nid2curve_id(id);
600 /* If we have an ID set it, otherwise set arbitrary explicit curve */
604 curve_id[1] = (unsigned char)id;
616 if (EC_KEY_get_conv_form(ec) == POINT_CONVERSION_COMPRESSED)
619 *comp_id = TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime;
621 *comp_id = TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2;
624 *comp_id = TLSEXT_ECPOINTFORMAT_uncompressed;
628 /* Check an EC key is compatible with extensions */
629 static int tls1_check_ec_key(SSL *s,
630 unsigned char *curve_id, unsigned char *comp_id)
632 const unsigned char *p;
635 /* If point formats extension present check it, otherwise everything
636 * is supported (see RFC4492).
638 if (comp_id && s->session->tlsext_ecpointformatlist)
640 p = s->session->tlsext_ecpointformatlist;
641 plen = s->session->tlsext_ecpointformatlist_length;
642 for (i = 0; i < plen; i++, p++)
652 /* Check curve is consistent with client and server preferences */
653 for (j = 0; j <= 1; j++)
655 tls1_get_curvelist(s, j, &p, &plen);
656 for (i = 0; i < plen; i+=2, p+=2)
658 if (p[0] == curve_id[0] && p[1] == curve_id[1])
663 /* For clients can only check sent curve list */
670 static void tls1_get_formatlist(SSL *s, const unsigned char **pformats,
673 /* If we have a custom point format list use it otherwise
675 if (s->tlsext_ecpointformatlist)
677 *pformats = s->tlsext_ecpointformatlist;
678 *pformatslen = s->tlsext_ecpointformatlist_length;
682 *pformats = ecformats_default;
683 /* For Suite B we don't support char2 fields */
685 *pformatslen = sizeof(ecformats_default) - 1;
687 *pformatslen = sizeof(ecformats_default);
691 /* Check cert parameters compatible with extensions: currently just checks
692 * EC certificates have compatible curves and compression.
694 static int tls1_check_cert_param(SSL *s, X509 *x, int set_ee_md)
696 unsigned char comp_id, curve_id[2];
699 pkey = X509_get_pubkey(x);
702 /* If not EC nothing to do */
703 if (pkey->type != EVP_PKEY_EC)
708 rv = tls1_set_ec_id(curve_id, &comp_id, pkey->pkey.ec);
712 /* Can't check curve_id for client certs as we don't have a
713 * supported curves extension.
715 rv = tls1_check_ec_key(s, s->server ? curve_id : NULL, &comp_id);
718 /* Special case for suite B. We *MUST* sign using SHA256+P-256 or
719 * SHA384+P-384, adjust digest if necessary.
721 if (set_ee_md && tls1_suiteb(s))
728 /* Check to see we have necessary signing algorithm */
729 if (curve_id[1] == TLSEXT_curve_P_256)
730 check_md = NID_ecdsa_with_SHA256;
731 else if (curve_id[1] == TLSEXT_curve_P_384)
732 check_md = NID_ecdsa_with_SHA384;
734 return 0; /* Should never happen */
735 for (i = 0; i < c->shared_sigalgslen; i++)
736 if (check_md == c->shared_sigalgs[i].signandhash_nid)
738 if (i == c->shared_sigalgslen)
742 if (check_md == NID_ecdsa_with_SHA256)
743 c->pkeys[SSL_PKEY_ECC].digest = EVP_sha256();
745 c->pkeys[SSL_PKEY_ECC].digest = EVP_sha384();
750 /* Check EC temporary key is compatible with client extensions */
751 int tls1_check_ec_tmp_key(SSL *s, unsigned long cid)
753 unsigned char curve_id[2];
754 EC_KEY *ec = s->cert->ecdh_tmp;
755 #ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
756 /* Allow any curve: not just those peer supports */
757 if (s->cert->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL)
760 /* If Suite B, AES128 MUST use P-256 and AES256 MUST use P-384,
761 * no other curves permitted.
765 /* Curve to check determined by ciphersuite */
766 if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)
767 curve_id[1] = TLSEXT_curve_P_256;
768 else if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384)
769 curve_id[1] = TLSEXT_curve_P_384;
773 /* Check this curve is acceptable */
774 if (!tls1_check_ec_key(s, curve_id, NULL))
776 /* If auto or setting curve from callback assume OK */
777 if (s->cert->ecdh_tmp_auto || s->cert->ecdh_tmp_cb)
779 /* Otherwise check curve is acceptable */
782 unsigned char curve_tmp[2];
785 if (!tls1_set_ec_id(curve_tmp, NULL, ec))
787 if (!curve_tmp[0] || curve_tmp[1] == curve_id[1])
793 if (s->cert->ecdh_tmp_auto)
795 /* Need a shared curve */
796 if (tls1_shared_curve(s, 0))
802 if (s->cert->ecdh_tmp_cb)
807 if (!tls1_set_ec_id(curve_id, NULL, ec))
809 /* Set this to allow use of invalid curves for testing */
813 return tls1_check_ec_key(s, curve_id, NULL);
819 static int tls1_check_cert_param(SSL *s, X509 *x, int set_ee_md)
824 #endif /* OPENSSL_NO_EC */
826 #ifndef OPENSSL_NO_TLSEXT
828 /* List of supported signature algorithms and hashes. Should make this
829 * customisable at some point, for now include everything we support.
832 #ifdef OPENSSL_NO_RSA
833 #define tlsext_sigalg_rsa(md) /* */
835 #define tlsext_sigalg_rsa(md) md, TLSEXT_signature_rsa,
838 #ifdef OPENSSL_NO_DSA
839 #define tlsext_sigalg_dsa(md) /* */
841 #define tlsext_sigalg_dsa(md) md, TLSEXT_signature_dsa,
844 #ifdef OPENSSL_NO_ECDSA
845 #define tlsext_sigalg_ecdsa(md) /* */
847 #define tlsext_sigalg_ecdsa(md) md, TLSEXT_signature_ecdsa,
850 #define tlsext_sigalg(md) \
851 tlsext_sigalg_rsa(md) \
852 tlsext_sigalg_dsa(md) \
853 tlsext_sigalg_ecdsa(md)
855 static unsigned char tls12_sigalgs[] = {
856 #ifndef OPENSSL_NO_SHA512
857 tlsext_sigalg(TLSEXT_hash_sha512)
858 tlsext_sigalg(TLSEXT_hash_sha384)
860 #ifndef OPENSSL_NO_SHA256
861 tlsext_sigalg(TLSEXT_hash_sha256)
862 tlsext_sigalg(TLSEXT_hash_sha224)
864 #ifndef OPENSSL_NO_SHA
865 tlsext_sigalg(TLSEXT_hash_sha1)
867 #ifndef OPENSSL_NO_MD5
868 tlsext_sigalg_rsa(TLSEXT_hash_md5)
871 #ifndef OPENSSL_NO_ECDSA
872 static unsigned char suiteb_sigalgs[] = {
873 tlsext_sigalg_ecdsa(TLSEXT_hash_sha256)
874 tlsext_sigalg_ecdsa(TLSEXT_hash_sha384)
877 size_t tls12_get_psigalgs(SSL *s, const unsigned char **psigs)
879 /* If Suite B mode use Suite B sigalgs only, ignore any other
882 #ifndef OPENSSL_NO_EC
883 switch (tls1_suiteb(s))
885 case SSL_CERT_FLAG_SUITEB_128_LOS:
886 *psigs = suiteb_sigalgs;
887 return sizeof(suiteb_sigalgs);
889 case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
890 *psigs = suiteb_sigalgs;
893 case SSL_CERT_FLAG_SUITEB_192_LOS:
894 *psigs = suiteb_sigalgs + 2;
898 /* If server use client authentication sigalgs if not NULL */
899 if (s->server && s->cert->client_sigalgs)
901 *psigs = s->cert->client_sigalgs;
902 return s->cert->client_sigalgslen;
904 else if (s->cert->conf_sigalgs)
906 *psigs = s->cert->conf_sigalgs;
907 return s->cert->conf_sigalgslen;
911 *psigs = tls12_sigalgs;
913 /* If FIPS mode don't include MD5 which is last */
915 return sizeof(tls12_sigalgs) - 2;
918 return sizeof(tls12_sigalgs);
921 /* Check signature algorithm is consistent with sent supported signature
922 * algorithms and if so return relevant digest.
924 int tls12_check_peer_sigalg(const EVP_MD **pmd, SSL *s,
925 const unsigned char *sig, EVP_PKEY *pkey)
927 const unsigned char *sent_sigs;
928 size_t sent_sigslen, i;
929 int sigalg = tls12_get_sigid(pkey);
930 /* Should never happen */
933 /* Check key type is consistent with signature */
934 if (sigalg != (int)sig[1])
936 SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,SSL_R_WRONG_SIGNATURE_TYPE);
939 #ifndef OPENSSL_NO_EC
940 if (pkey->type == EVP_PKEY_EC)
942 unsigned char curve_id[2], comp_id;
943 /* Check compression and curve matches extensions */
944 if (!tls1_set_ec_id(curve_id, &comp_id, pkey->pkey.ec))
946 if (!s->server && !tls1_check_ec_key(s, curve_id, &comp_id))
948 SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,SSL_R_WRONG_CURVE);
951 /* If Suite B only P-384+SHA384 or P-256+SHA-256 allowed */
956 if (curve_id[1] == TLSEXT_curve_P_256)
958 if (sig[0] != TLSEXT_hash_sha256)
960 SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,
961 SSL_R_ILLEGAL_SUITEB_DIGEST);
965 else if (curve_id[1] == TLSEXT_curve_P_384)
967 if (sig[0] != TLSEXT_hash_sha384)
969 SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,
970 SSL_R_ILLEGAL_SUITEB_DIGEST);
978 else if (tls1_suiteb(s))
982 /* Check signature matches a type we sent */
983 sent_sigslen = tls12_get_psigalgs(s, &sent_sigs);
984 for (i = 0; i < sent_sigslen; i+=2, sent_sigs+=2)
986 if (sig[0] == sent_sigs[0] && sig[1] == sent_sigs[1])
989 /* Allow fallback to SHA1 if not strict mode */
990 if (i == sent_sigslen && (sig[0] != TLSEXT_hash_sha1 || s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT))
992 SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,SSL_R_WRONG_SIGNATURE_TYPE);
995 *pmd = tls12_get_hash(sig[0]);
998 SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,SSL_R_UNKNOWN_DIGEST);
1001 /* Store the digest used so applications can retrieve it if they
1004 if (s->session && s->session->sess_cert)
1005 s->session->sess_cert->peer_key->digest = *pmd;
1008 /* Get a mask of disabled algorithms: an algorithm is disabled
1009 * if it isn't supported or doesn't appear in supported signature
1010 * algorithms. Unlike ssl_cipher_get_disabled this applies to a specific
1011 * session and not global settings.
1014 void ssl_set_client_disabled(SSL *s)
1017 const unsigned char *sigalgs;
1018 size_t i, sigalgslen;
1019 int have_rsa = 0, have_dsa = 0, have_ecdsa = 0;
1022 /* Don't allow TLS 1.2 only ciphers if we don't suppport them */
1023 if (!SSL_CLIENT_USE_TLS1_2_CIPHERS(s))
1024 c->mask_ssl = SSL_TLSV1_2;
1027 /* Now go through all signature algorithms seeing if we support
1028 * any for RSA, DSA, ECDSA. Do this for all versions not just
1031 sigalgslen = tls12_get_psigalgs(s, &sigalgs);
1032 for (i = 0; i < sigalgslen; i += 2, sigalgs += 2)
1036 #ifndef OPENSSL_NO_RSA
1037 case TLSEXT_signature_rsa:
1041 #ifndef OPENSSL_NO_DSA
1042 case TLSEXT_signature_dsa:
1046 #ifndef OPENSSL_NO_ECDSA
1047 case TLSEXT_signature_ecdsa:
1053 /* Disable auth and static DH if we don't include any appropriate
1054 * signature algorithms.
1058 c->mask_a |= SSL_aRSA;
1059 c->mask_k |= SSL_kDHr|SSL_kECDHr;
1063 c->mask_a |= SSL_aDSS;
1064 c->mask_k |= SSL_kDHd;
1068 c->mask_a |= SSL_aECDSA;
1069 c->mask_k |= SSL_kECDHe;
1071 #ifndef OPENSSL_NO_KRB5
1072 if (!kssl_tgt_is_available(s->kssl_ctx))
1074 c->mask_a |= SSL_aKRB5;
1075 c->mask_k |= SSL_kKRB5;
1078 #ifndef OPENSSL_NO_PSK
1079 /* with PSK there must be client callback set */
1080 if (!s->psk_client_callback)
1082 c->mask_a |= SSL_aPSK;
1083 c->mask_k |= SSL_kPSK;
1085 #endif /* OPENSSL_NO_PSK */
1089 unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *p, unsigned char *limit)
1092 unsigned char *ret = p;
1093 #ifndef OPENSSL_NO_EC
1094 /* See if we support any ECC ciphersuites */
1096 if (s->version >= TLS1_VERSION || SSL_IS_DTLS(s))
1099 unsigned long alg_k, alg_a;
1100 STACK_OF(SSL_CIPHER) *cipher_stack = SSL_get_ciphers(s);
1102 for (i = 0; i < sk_SSL_CIPHER_num(cipher_stack); i++)
1104 SSL_CIPHER *c = sk_SSL_CIPHER_value(cipher_stack, i);
1106 alg_k = c->algorithm_mkey;
1107 alg_a = c->algorithm_auth;
1108 if ((alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe)
1109 || (alg_a & SSL_aECDSA)))
1118 /* don't add extensions for SSLv3 unless doing secure renegotiation */
1119 if (s->client_version == SSL3_VERSION
1120 && !s->s3->send_connection_binding)
1125 if (ret>=limit) return NULL; /* this really never occurs, but ... */
1127 if (s->tlsext_hostname != NULL)
1129 /* Add TLS extension servername to the Client Hello message */
1130 unsigned long size_str;
1133 /* check for enough space.
1134 4 for the servername type and entension length
1135 2 for servernamelist length
1136 1 for the hostname type
1137 2 for hostname length
1141 if ((lenmax = limit - ret - 9) < 0
1142 || (size_str = strlen(s->tlsext_hostname)) > (unsigned long)lenmax)
1145 /* extension type and length */
1146 s2n(TLSEXT_TYPE_server_name,ret);
1147 s2n(size_str+5,ret);
1149 /* length of servername list */
1150 s2n(size_str+3,ret);
1152 /* hostname type, length and hostname */
1153 *(ret++) = (unsigned char) TLSEXT_NAMETYPE_host_name;
1155 memcpy(ret, s->tlsext_hostname, size_str);
1159 /* Add RI if renegotiating */
1164 if(!ssl_add_clienthello_renegotiate_ext(s, 0, &el, 0))
1166 SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1170 if((limit - p - 4 - el) < 0) return NULL;
1172 s2n(TLSEXT_TYPE_renegotiate,ret);
1175 if(!ssl_add_clienthello_renegotiate_ext(s, ret, &el, el))
1177 SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1184 #ifndef OPENSSL_NO_SRP
1185 /* Add SRP username if there is one */
1186 if (s->srp_ctx.login != NULL)
1187 { /* Add TLS extension SRP username to the Client Hello message */
1189 int login_len = strlen(s->srp_ctx.login);
1190 if (login_len > 255 || login_len == 0)
1192 SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1196 /* check for enough space.
1197 4 for the srp type type and entension length
1198 1 for the srp user identity
1199 + srp user identity length
1201 if ((limit - ret - 5 - login_len) < 0) return NULL;
1203 /* fill in the extension */
1204 s2n(TLSEXT_TYPE_srp,ret);
1205 s2n(login_len+1,ret);
1206 (*ret++) = (unsigned char) login_len;
1207 memcpy(ret, s->srp_ctx.login, login_len);
1212 #ifndef OPENSSL_NO_EC
1215 /* Add TLS extension ECPointFormats to the ClientHello message */
1217 const unsigned char *plist;
1220 tls1_get_formatlist(s, &plist, &plistlen);
1222 if ((lenmax = limit - ret - 5) < 0) return NULL;
1223 if (plistlen > (size_t)lenmax) return NULL;
1226 SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1230 s2n(TLSEXT_TYPE_ec_point_formats,ret);
1231 s2n(plistlen + 1,ret);
1232 *(ret++) = (unsigned char)plistlen ;
1233 memcpy(ret, plist, plistlen);
1236 /* Add TLS extension EllipticCurves to the ClientHello message */
1237 plist = s->tlsext_ellipticcurvelist;
1238 tls1_get_curvelist(s, 0, &plist, &plistlen);
1240 if ((lenmax = limit - ret - 6) < 0) return NULL;
1241 if (plistlen > (size_t)lenmax) return NULL;
1242 if (plistlen > 65532)
1244 SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1248 s2n(TLSEXT_TYPE_elliptic_curves,ret);
1249 s2n(plistlen + 2, ret);
1251 /* NB: draft-ietf-tls-ecc-12.txt uses a one-byte prefix for
1252 * elliptic_curve_list, but the examples use two bytes.
1253 * http://www1.ietf.org/mail-archive/web/tls/current/msg00538.html
1254 * resolves this to two bytes.
1257 memcpy(ret, plist, plistlen);
1260 #endif /* OPENSSL_NO_EC */
1262 if (!(SSL_get_options(s) & SSL_OP_NO_TICKET))
1265 if (!s->new_session && s->session && s->session->tlsext_tick)
1266 ticklen = s->session->tlsext_ticklen;
1267 else if (s->session && s->tlsext_session_ticket &&
1268 s->tlsext_session_ticket->data)
1270 ticklen = s->tlsext_session_ticket->length;
1271 s->session->tlsext_tick = OPENSSL_malloc(ticklen);
1272 if (!s->session->tlsext_tick)
1274 memcpy(s->session->tlsext_tick,
1275 s->tlsext_session_ticket->data,
1277 s->session->tlsext_ticklen = ticklen;
1281 if (ticklen == 0 && s->tlsext_session_ticket &&
1282 s->tlsext_session_ticket->data == NULL)
1284 /* Check for enough room 2 for extension type, 2 for len
1287 if ((long)(limit - ret - 4 - ticklen) < 0) return NULL;
1288 s2n(TLSEXT_TYPE_session_ticket,ret);
1292 memcpy(ret, s->session->tlsext_tick, ticklen);
1298 if (SSL_USE_SIGALGS(s))
1301 const unsigned char *salg;
1302 salglen = tls12_get_psigalgs(s, &salg);
1303 if ((size_t)(limit - ret) < salglen + 6)
1305 s2n(TLSEXT_TYPE_signature_algorithms,ret);
1306 s2n(salglen + 2, ret);
1308 memcpy(ret, salg, salglen);
1312 #ifdef TLSEXT_TYPE_opaque_prf_input
1313 if (s->s3->client_opaque_prf_input != NULL)
1315 size_t col = s->s3->client_opaque_prf_input_len;
1317 if ((long)(limit - ret - 6 - col < 0))
1319 if (col > 0xFFFD) /* can't happen */
1322 s2n(TLSEXT_TYPE_opaque_prf_input, ret);
1325 memcpy(ret, s->s3->client_opaque_prf_input, col);
1330 if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp)
1333 long extlen, idlen, itmp;
1337 for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++)
1339 id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
1340 itmp = i2d_OCSP_RESPID(id, NULL);
1346 if (s->tlsext_ocsp_exts)
1348 extlen = i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, NULL);
1355 if ((long)(limit - ret - 7 - extlen - idlen) < 0) return NULL;
1356 s2n(TLSEXT_TYPE_status_request, ret);
1357 if (extlen + idlen > 0xFFF0)
1359 s2n(extlen + idlen + 5, ret);
1360 *(ret++) = TLSEXT_STATUSTYPE_ocsp;
1362 for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++)
1364 /* save position of id len */
1365 unsigned char *q = ret;
1366 id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
1367 /* skip over id len */
1369 itmp = i2d_OCSP_RESPID(id, &ret);
1375 i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, &ret);
1378 #ifndef OPENSSL_NO_HEARTBEATS
1379 /* Add Heartbeat extension */
1380 s2n(TLSEXT_TYPE_heartbeat,ret);
1383 * 1: peer may send requests
1384 * 2: peer not allowed to send requests
1386 if (s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_RECV_REQUESTS)
1387 *(ret++) = SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
1389 *(ret++) = SSL_TLSEXT_HB_ENABLED;
1392 #ifndef OPENSSL_NO_NEXTPROTONEG
1393 if (s->ctx->next_proto_select_cb && !s->s3->tmp.finish_md_len)
1395 /* The client advertises an emtpy extension to indicate its
1396 * support for Next Protocol Negotiation */
1397 if (limit - ret - 4 < 0)
1399 s2n(TLSEXT_TYPE_next_proto_neg,ret);
1404 if (s->alpn_client_proto_list && !s->s3->tmp.finish_md_len)
1406 if ((size_t)(limit - ret) < 6 + s->alpn_client_proto_list_len)
1408 s2n(TLSEXT_TYPE_application_layer_protocol_negotiation,ret);
1409 s2n(2 + s->alpn_client_proto_list_len,ret);
1410 s2n(s->alpn_client_proto_list_len,ret);
1411 memcpy(ret, s->alpn_client_proto_list,
1412 s->alpn_client_proto_list_len);
1413 ret += s->alpn_client_proto_list_len;
1416 if(SSL_get_srtp_profiles(s))
1420 ssl_add_clienthello_use_srtp_ext(s, 0, &el, 0);
1422 if((limit - p - 4 - el) < 0) return NULL;
1424 s2n(TLSEXT_TYPE_use_srtp,ret);
1427 if(ssl_add_clienthello_use_srtp_ext(s, ret, &el, el))
1429 SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1435 /* Add custom TLS Extensions to ClientHello */
1436 if (s->ctx->custom_cli_ext_records_count)
1439 custom_cli_ext_record* record;
1441 for (i = 0; i < s->ctx->custom_cli_ext_records_count; i++)
1443 const unsigned char* out = NULL;
1444 unsigned short outlen = 0;
1446 record = &s->ctx->custom_cli_ext_records[i];
1447 /* NULL callback sends empty extension */
1448 /* -1 from callback omits extension */
1452 cb_retval = record->fn1(s, record->ext_type,
1456 return NULL; /* error */
1457 if (cb_retval == -1)
1458 continue; /* skip this extension */
1460 if (limit < ret + 4 + outlen)
1462 s2n(record->ext_type, ret);
1464 memcpy(ret, out, outlen);
1468 #ifdef TLSEXT_TYPE_encrypt_then_mac
1469 s2n(TLSEXT_TYPE_encrypt_then_mac,ret);
1473 if ((extdatalen = ret-p-2) == 0)
1480 unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *p, unsigned char *limit)
1483 unsigned char *ret = p;
1484 #ifndef OPENSSL_NO_NEXTPROTONEG
1485 int next_proto_neg_seen;
1487 #ifndef OPENSSL_NO_EC
1488 unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
1489 unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth;
1490 int using_ecc = (alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe)) || (alg_a & SSL_aECDSA);
1491 using_ecc = using_ecc && (s->session->tlsext_ecpointformatlist != NULL);
1493 /* don't add extensions for SSLv3, unless doing secure renegotiation */
1494 if (s->version == SSL3_VERSION && !s->s3->send_connection_binding)
1498 if (ret>=limit) return NULL; /* this really never occurs, but ... */
1500 if (!s->hit && s->servername_done == 1 && s->session->tlsext_hostname != NULL)
1502 if ((long)(limit - ret - 4) < 0) return NULL;
1504 s2n(TLSEXT_TYPE_server_name,ret);
1508 if(s->s3->send_connection_binding)
1512 if(!ssl_add_serverhello_renegotiate_ext(s, 0, &el, 0))
1514 SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1518 if((limit - p - 4 - el) < 0) return NULL;
1520 s2n(TLSEXT_TYPE_renegotiate,ret);
1523 if(!ssl_add_serverhello_renegotiate_ext(s, ret, &el, el))
1525 SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1532 #ifndef OPENSSL_NO_EC
1535 const unsigned char *plist;
1537 /* Add TLS extension ECPointFormats to the ServerHello message */
1540 tls1_get_formatlist(s, &plist, &plistlen);
1542 if ((lenmax = limit - ret - 5) < 0) return NULL;
1543 if (plistlen > (size_t)lenmax) return NULL;
1546 SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1550 s2n(TLSEXT_TYPE_ec_point_formats,ret);
1551 s2n(plistlen + 1,ret);
1552 *(ret++) = (unsigned char) plistlen;
1553 memcpy(ret, plist, plistlen);
1557 /* Currently the server should not respond with a SupportedCurves extension */
1558 #endif /* OPENSSL_NO_EC */
1560 if (s->tlsext_ticket_expected
1561 && !(SSL_get_options(s) & SSL_OP_NO_TICKET))
1563 if ((long)(limit - ret - 4) < 0) return NULL;
1564 s2n(TLSEXT_TYPE_session_ticket,ret);
1568 if (s->tlsext_status_expected)
1570 if ((long)(limit - ret - 4) < 0) return NULL;
1571 s2n(TLSEXT_TYPE_status_request,ret);
1575 #ifdef TLSEXT_TYPE_opaque_prf_input
1576 if (s->s3->server_opaque_prf_input != NULL)
1578 size_t sol = s->s3->server_opaque_prf_input_len;
1580 if ((long)(limit - ret - 6 - sol) < 0)
1582 if (sol > 0xFFFD) /* can't happen */
1585 s2n(TLSEXT_TYPE_opaque_prf_input, ret);
1588 memcpy(ret, s->s3->server_opaque_prf_input, sol);
1597 ssl_add_serverhello_use_srtp_ext(s, 0, &el, 0);
1599 if((limit - p - 4 - el) < 0) return NULL;
1601 s2n(TLSEXT_TYPE_use_srtp,ret);
1604 if(ssl_add_serverhello_use_srtp_ext(s, ret, &el, el))
1606 SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1612 if (((s->s3->tmp.new_cipher->id & 0xFFFF)==0x80 || (s->s3->tmp.new_cipher->id & 0xFFFF)==0x81)
1613 && (SSL_get_options(s) & SSL_OP_CRYPTOPRO_TLSEXT_BUG))
1614 { const unsigned char cryptopro_ext[36] = {
1615 0xfd, 0xe8, /*65000*/
1616 0x00, 0x20, /*32 bytes length*/
1617 0x30, 0x1e, 0x30, 0x08, 0x06, 0x06, 0x2a, 0x85,
1618 0x03, 0x02, 0x02, 0x09, 0x30, 0x08, 0x06, 0x06,
1619 0x2a, 0x85, 0x03, 0x02, 0x02, 0x16, 0x30, 0x08,
1620 0x06, 0x06, 0x2a, 0x85, 0x03, 0x02, 0x02, 0x17};
1621 if (limit-ret<36) return NULL;
1622 memcpy(ret,cryptopro_ext,36);
1627 #ifndef OPENSSL_NO_HEARTBEATS
1628 /* Add Heartbeat extension if we've received one */
1629 if (s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED)
1631 s2n(TLSEXT_TYPE_heartbeat,ret);
1634 * 1: peer may send requests
1635 * 2: peer not allowed to send requests
1637 if (s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_RECV_REQUESTS)
1638 *(ret++) = SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
1640 *(ret++) = SSL_TLSEXT_HB_ENABLED;
1645 #ifndef OPENSSL_NO_NEXTPROTONEG
1646 next_proto_neg_seen = s->s3->next_proto_neg_seen;
1647 s->s3->next_proto_neg_seen = 0;
1648 if (next_proto_neg_seen && s->ctx->next_protos_advertised_cb)
1650 const unsigned char *npa;
1651 unsigned int npalen;
1654 r = s->ctx->next_protos_advertised_cb(s, &npa, &npalen, s->ctx->next_protos_advertised_cb_arg);
1655 if (r == SSL_TLSEXT_ERR_OK)
1657 if ((long)(limit - ret - 4 - npalen) < 0) return NULL;
1658 s2n(TLSEXT_TYPE_next_proto_neg,ret);
1660 memcpy(ret, npa, npalen);
1662 s->s3->next_proto_neg_seen = 1;
1667 /* If custom types were sent in ClientHello, add ServerHello responses */
1668 if (s->s3->tlsext_custom_types_count)
1672 for (i = 0; i < s->s3->tlsext_custom_types_count; i++)
1675 custom_srv_ext_record *record;
1677 for (j = 0; j < s->ctx->custom_srv_ext_records_count; j++)
1679 record = &s->ctx->custom_srv_ext_records[j];
1680 if (s->s3->tlsext_custom_types[i] == record->ext_type)
1682 const unsigned char *out = NULL;
1683 unsigned short outlen = 0;
1686 /* NULL callback or -1 omits extension */
1689 cb_retval = record->fn2(s, record->ext_type,
1693 return NULL; /* error */
1694 if (cb_retval == -1)
1695 break; /* skip this extension */
1696 if (limit < ret + 4 + outlen)
1698 s2n(record->ext_type, ret);
1700 memcpy(ret, out, outlen);
1707 #ifdef TLSEXT_TYPE_encrypt_then_mac
1708 if (s->s3->flags & TLS1_FLAGS_ENCRYPT_THEN_MAC)
1710 /* Don't use encrypt_then_mac if AEAD: might want
1711 * to disable for other ciphersuites too.
1713 if (s->s3->tmp.new_cipher->algorithm_mac == SSL_AEAD)
1714 s->s3->flags &= ~TLS1_FLAGS_ENCRYPT_THEN_MAC;
1717 s2n(TLSEXT_TYPE_encrypt_then_mac,ret);
1723 if (s->s3->alpn_selected)
1725 const unsigned char *selected = s->s3->alpn_selected;
1726 unsigned len = s->s3->alpn_selected_len;
1728 if ((long)(limit - ret - 4 - 2 - 1 - len) < 0)
1730 s2n(TLSEXT_TYPE_application_layer_protocol_negotiation,ret);
1734 memcpy(ret, selected, len);
1738 if ((extdatalen = ret-p-2)== 0)
1745 /* tls1_alpn_handle_client_hello is called to process the ALPN extension in a
1747 * data: the contents of the extension, not including the type and length.
1748 * data_len: the number of bytes in |data|
1749 * al: a pointer to the alert value to send in the event of a non-zero
1752 * returns: 0 on success. */
1753 static int tls1_alpn_handle_client_hello(SSL *s, const unsigned char *data,
1754 unsigned data_len, int *al)
1758 const unsigned char *selected;
1759 unsigned char selected_len;
1762 if (s->ctx->alpn_select_cb == NULL)
1768 /* data should contain a uint16 length followed by a series of 8-bit,
1769 * length-prefixed strings. */
1770 i = ((unsigned) data[0]) << 8 |
1771 ((unsigned) data[1]);
1780 for (i = 0; i < data_len;)
1782 proto_len = data[i];
1788 if (i + proto_len < i || i + proto_len > data_len)
1794 r = s->ctx->alpn_select_cb(s, &selected, &selected_len, data, data_len,
1795 s->ctx->alpn_select_cb_arg);
1796 if (r == SSL_TLSEXT_ERR_OK) {
1797 if (s->s3->alpn_selected)
1798 OPENSSL_free(s->s3->alpn_selected);
1799 s->s3->alpn_selected = OPENSSL_malloc(selected_len);
1800 if (!s->s3->alpn_selected)
1802 *al = SSL_AD_INTERNAL_ERROR;
1805 memcpy(s->s3->alpn_selected, selected, selected_len);
1806 s->s3->alpn_selected_len = selected_len;
1811 *al = SSL_AD_DECODE_ERROR;
1815 #ifndef OPENSSL_NO_EC
1816 /* ssl_check_for_safari attempts to fingerprint Safari using OS X
1817 * SecureTransport using the TLS extension block in |d|, of length |n|.
1818 * Safari, since 10.6, sends exactly these extensions, in this order:
1823 * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
1824 * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
1825 * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
1826 * 10.8..10.8.3 (which don't work).
1828 static void ssl_check_for_safari(SSL *s, const unsigned char *data, const unsigned char *d, int n) {
1829 unsigned short type, size;
1830 static const unsigned char kSafariExtensionsBlock[] = {
1831 0x00, 0x0a, /* elliptic_curves extension */
1832 0x00, 0x08, /* 8 bytes */
1833 0x00, 0x06, /* 6 bytes of curve ids */
1834 0x00, 0x17, /* P-256 */
1835 0x00, 0x18, /* P-384 */
1836 0x00, 0x19, /* P-521 */
1838 0x00, 0x0b, /* ec_point_formats */
1839 0x00, 0x02, /* 2 bytes */
1840 0x01, /* 1 point format */
1841 0x00, /* uncompressed */
1844 /* The following is only present in TLS 1.2 */
1845 static const unsigned char kSafariTLS12ExtensionsBlock[] = {
1846 0x00, 0x0d, /* signature_algorithms */
1847 0x00, 0x0c, /* 12 bytes */
1848 0x00, 0x0a, /* 10 bytes */
1849 0x05, 0x01, /* SHA-384/RSA */
1850 0x04, 0x01, /* SHA-256/RSA */
1851 0x02, 0x01, /* SHA-1/RSA */
1852 0x04, 0x03, /* SHA-256/ECDSA */
1853 0x02, 0x03, /* SHA-1/ECDSA */
1856 if (data >= (d+n-2))
1865 if (type != TLSEXT_TYPE_server_name)
1868 if (data+size > d+n)
1872 if (TLS1_get_client_version(s) >= TLS1_2_VERSION)
1874 const size_t len1 = sizeof(kSafariExtensionsBlock);
1875 const size_t len2 = sizeof(kSafariTLS12ExtensionsBlock);
1877 if (data + len1 + len2 != d+n)
1879 if (memcmp(data, kSafariExtensionsBlock, len1) != 0)
1881 if (memcmp(data + len1, kSafariTLS12ExtensionsBlock, len2) != 0)
1886 const size_t len = sizeof(kSafariExtensionsBlock);
1888 if (data + len != d+n)
1890 if (memcmp(data, kSafariExtensionsBlock, len) != 0)
1894 s->s3->is_probably_safari = 1;
1896 #endif /* !OPENSSL_NO_EC */
1898 static int ssl_scan_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n, int *al)
1900 unsigned short type;
1901 unsigned short size;
1903 unsigned char *data = *p;
1904 int renegotiate_seen = 0;
1907 s->servername_done = 0;
1908 s->tlsext_status_type = -1;
1909 #ifndef OPENSSL_NO_NEXTPROTONEG
1910 s->s3->next_proto_neg_seen = 0;
1913 if (s->s3->alpn_selected)
1915 OPENSSL_free(s->s3->alpn_selected);
1916 s->s3->alpn_selected = NULL;
1919 /* Clear observed custom extensions */
1920 s->s3->tlsext_custom_types_count = 0;
1921 if (s->s3->tlsext_custom_types != NULL)
1923 OPENSSL_free(s->s3->tlsext_custom_types);
1924 s->s3->tlsext_custom_types = NULL;
1927 #ifndef OPENSSL_NO_HEARTBEATS
1928 s->tlsext_heartbeat &= ~(SSL_TLSEXT_HB_ENABLED |
1929 SSL_TLSEXT_HB_DONT_SEND_REQUESTS);
1932 #ifndef OPENSSL_NO_EC
1933 if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
1934 ssl_check_for_safari(s, data, d, n);
1935 #endif /* !OPENSSL_NO_EC */
1937 /* Clear any signature algorithms extension received */
1938 if (s->cert->peer_sigalgs)
1940 OPENSSL_free(s->cert->peer_sigalgs);
1941 s->cert->peer_sigalgs = NULL;
1943 /* Clear any shared sigtnature algorithms */
1944 if (s->cert->shared_sigalgs)
1946 OPENSSL_free(s->cert->shared_sigalgs);
1947 s->cert->shared_sigalgs = NULL;
1949 /* Clear certificate digests and validity flags */
1950 for (i = 0; i < SSL_PKEY_NUM; i++)
1952 s->cert->pkeys[i].digest = NULL;
1953 s->cert->pkeys[i].valid_flags = 0;
1956 #ifdef TLSEXT_TYPE_encrypt_then_mac
1957 s->s3->flags &= ~TLS1_FLAGS_ENCRYPT_THEN_MAC;
1960 if (data >= (d+n-2))
1964 if (data > (d+n-len))
1967 while (data <= (d+n-4))
1972 if (data+size > (d+n))
1975 fprintf(stderr,"Received extension type %d size %d\n",type,size);
1977 if (s->tlsext_debug_cb)
1978 s->tlsext_debug_cb(s, 0, type, data, size,
1979 s->tlsext_debug_arg);
1980 /* The servername extension is treated as follows:
1982 - Only the hostname type is supported with a maximum length of 255.
1983 - The servername is rejected if too long or if it contains zeros,
1984 in which case an fatal alert is generated.
1985 - The servername field is maintained together with the session cache.
1986 - When a session is resumed, the servername call back invoked in order
1987 to allow the application to position itself to the right context.
1988 - The servername is acknowledged if it is new for a session or when
1989 it is identical to a previously used for the same session.
1990 Applications can control the behaviour. They can at any time
1991 set a 'desirable' servername for a new SSL object. This can be the
1992 case for example with HTTPS when a Host: header field is received and
1993 a renegotiation is requested. In this case, a possible servername
1994 presented in the new client hello is only acknowledged if it matches
1995 the value of the Host: field.
1996 - Applications must use SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
1997 if they provide for changing an explicit servername context for the session,
1998 i.e. when the session has been established with a servername extension.
1999 - On session reconnect, the servername extension may be absent.
2003 if (type == TLSEXT_TYPE_server_name)
2005 unsigned char *sdata;
2011 *al = SSL_AD_DECODE_ERROR;
2018 *al = SSL_AD_DECODE_ERROR;
2025 servname_type = *(sdata++);
2031 *al = SSL_AD_DECODE_ERROR;
2034 if (s->servername_done == 0)
2035 switch (servname_type)
2037 case TLSEXT_NAMETYPE_host_name:
2040 if(s->session->tlsext_hostname)
2042 *al = SSL_AD_DECODE_ERROR;
2045 if (len > TLSEXT_MAXLEN_host_name)
2047 *al = TLS1_AD_UNRECOGNIZED_NAME;
2050 if ((s->session->tlsext_hostname = OPENSSL_malloc(len+1)) == NULL)
2052 *al = TLS1_AD_INTERNAL_ERROR;
2055 memcpy(s->session->tlsext_hostname, sdata, len);
2056 s->session->tlsext_hostname[len]='\0';
2057 if (strlen(s->session->tlsext_hostname) != len) {
2058 OPENSSL_free(s->session->tlsext_hostname);
2059 s->session->tlsext_hostname = NULL;
2060 *al = TLS1_AD_UNRECOGNIZED_NAME;
2063 s->servername_done = 1;
2067 s->servername_done = s->session->tlsext_hostname
2068 && strlen(s->session->tlsext_hostname) == len
2069 && strncmp(s->session->tlsext_hostname, (char *)sdata, len) == 0;
2081 *al = SSL_AD_DECODE_ERROR;
2086 #ifndef OPENSSL_NO_SRP
2087 else if (type == TLSEXT_TYPE_srp)
2089 if (size <= 0 || ((len = data[0])) != (size -1))
2091 *al = SSL_AD_DECODE_ERROR;
2094 if (s->srp_ctx.login != NULL)
2096 *al = SSL_AD_DECODE_ERROR;
2099 if ((s->srp_ctx.login = OPENSSL_malloc(len+1)) == NULL)
2101 memcpy(s->srp_ctx.login, &data[1], len);
2102 s->srp_ctx.login[len]='\0';
2104 if (strlen(s->srp_ctx.login) != len)
2106 *al = SSL_AD_DECODE_ERROR;
2112 #ifndef OPENSSL_NO_EC
2113 else if (type == TLSEXT_TYPE_ec_point_formats)
2115 unsigned char *sdata = data;
2116 int ecpointformatlist_length = *(sdata++);
2118 if (ecpointformatlist_length != size - 1 ||
2119 ecpointformatlist_length < 1)
2121 *al = TLS1_AD_DECODE_ERROR;
2126 if(s->session->tlsext_ecpointformatlist)
2128 OPENSSL_free(s->session->tlsext_ecpointformatlist);
2129 s->session->tlsext_ecpointformatlist = NULL;
2131 s->session->tlsext_ecpointformatlist_length = 0;
2132 if ((s->session->tlsext_ecpointformatlist = OPENSSL_malloc(ecpointformatlist_length)) == NULL)
2134 *al = TLS1_AD_INTERNAL_ERROR;
2137 s->session->tlsext_ecpointformatlist_length = ecpointformatlist_length;
2138 memcpy(s->session->tlsext_ecpointformatlist, sdata, ecpointformatlist_length);
2141 fprintf(stderr,"ssl_parse_clienthello_tlsext s->session->tlsext_ecpointformatlist (length=%i) ", s->session->tlsext_ecpointformatlist_length);
2142 sdata = s->session->tlsext_ecpointformatlist;
2143 for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++)
2144 fprintf(stderr,"%i ",*(sdata++));
2145 fprintf(stderr,"\n");
2148 else if (type == TLSEXT_TYPE_elliptic_curves)
2150 unsigned char *sdata = data;
2151 int ellipticcurvelist_length = (*(sdata++) << 8);
2152 ellipticcurvelist_length += (*(sdata++));
2154 if (ellipticcurvelist_length != size - 2 ||
2155 ellipticcurvelist_length < 1)
2157 *al = TLS1_AD_DECODE_ERROR;
2162 if(s->session->tlsext_ellipticcurvelist)
2164 *al = TLS1_AD_DECODE_ERROR;
2167 s->session->tlsext_ellipticcurvelist_length = 0;
2168 if ((s->session->tlsext_ellipticcurvelist = OPENSSL_malloc(ellipticcurvelist_length)) == NULL)
2170 *al = TLS1_AD_INTERNAL_ERROR;
2173 s->session->tlsext_ellipticcurvelist_length = ellipticcurvelist_length;
2174 memcpy(s->session->tlsext_ellipticcurvelist, sdata, ellipticcurvelist_length);
2177 fprintf(stderr,"ssl_parse_clienthello_tlsext s->session->tlsext_ellipticcurvelist (length=%i) ", s->session->tlsext_ellipticcurvelist_length);
2178 sdata = s->session->tlsext_ellipticcurvelist;
2179 for (i = 0; i < s->session->tlsext_ellipticcurvelist_length; i++)
2180 fprintf(stderr,"%i ",*(sdata++));
2181 fprintf(stderr,"\n");
2184 #endif /* OPENSSL_NO_EC */
2185 #ifdef TLSEXT_TYPE_opaque_prf_input
2186 else if (type == TLSEXT_TYPE_opaque_prf_input)
2188 unsigned char *sdata = data;
2192 *al = SSL_AD_DECODE_ERROR;
2195 n2s(sdata, s->s3->client_opaque_prf_input_len);
2196 if (s->s3->client_opaque_prf_input_len != size - 2)
2198 *al = SSL_AD_DECODE_ERROR;
2202 if (s->s3->client_opaque_prf_input != NULL) /* shouldn't really happen */
2203 OPENSSL_free(s->s3->client_opaque_prf_input);
2204 if (s->s3->client_opaque_prf_input_len == 0)
2205 s->s3->client_opaque_prf_input = OPENSSL_malloc(1); /* dummy byte just to get non-NULL */
2207 s->s3->client_opaque_prf_input = BUF_memdup(sdata, s->s3->client_opaque_prf_input_len);
2208 if (s->s3->client_opaque_prf_input == NULL)
2210 *al = TLS1_AD_INTERNAL_ERROR;
2215 else if (type == TLSEXT_TYPE_session_ticket)
2217 if (s->tls_session_ticket_ext_cb &&
2218 !s->tls_session_ticket_ext_cb(s, data, size, s->tls_session_ticket_ext_cb_arg))
2220 *al = TLS1_AD_INTERNAL_ERROR;
2224 else if (type == TLSEXT_TYPE_renegotiate)
2226 if(!ssl_parse_clienthello_renegotiate_ext(s, data, size, al))
2228 renegotiate_seen = 1;
2230 else if (type == TLSEXT_TYPE_signature_algorithms)
2233 if (s->cert->peer_sigalgs || size < 2)
2235 *al = SSL_AD_DECODE_ERROR;
2240 if (dsize != size || dsize & 1 || !dsize)
2242 *al = SSL_AD_DECODE_ERROR;
2245 if (!tls1_process_sigalgs(s, data, dsize))
2247 *al = SSL_AD_DECODE_ERROR;
2250 /* If sigalgs received and no shared algorithms fatal
2253 if (s->cert->peer_sigalgs && !s->cert->shared_sigalgs)
2255 SSLerr(SSL_F_SSL_SCAN_CLIENTHELLO_TLSEXT,
2256 SSL_R_NO_SHARED_SIGATURE_ALGORITHMS);
2257 *al = SSL_AD_ILLEGAL_PARAMETER;
2261 else if (type == TLSEXT_TYPE_status_request
2262 && s->ctx->tlsext_status_cb)
2267 *al = SSL_AD_DECODE_ERROR;
2271 s->tlsext_status_type = *data++;
2273 if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp)
2275 const unsigned char *sdata;
2277 /* Read in responder_id_list */
2282 *al = SSL_AD_DECODE_ERROR;
2291 *al = SSL_AD_DECODE_ERROR;
2295 dsize -= 2 + idsize;
2299 *al = SSL_AD_DECODE_ERROR;
2304 id = d2i_OCSP_RESPID(NULL,
2308 *al = SSL_AD_DECODE_ERROR;
2313 OCSP_RESPID_free(id);
2314 *al = SSL_AD_DECODE_ERROR;
2317 if (!s->tlsext_ocsp_ids
2318 && !(s->tlsext_ocsp_ids =
2319 sk_OCSP_RESPID_new_null()))
2321 OCSP_RESPID_free(id);
2322 *al = SSL_AD_INTERNAL_ERROR;
2325 if (!sk_OCSP_RESPID_push(
2326 s->tlsext_ocsp_ids, id))
2328 OCSP_RESPID_free(id);
2329 *al = SSL_AD_INTERNAL_ERROR;
2334 /* Read in request_extensions */
2337 *al = SSL_AD_DECODE_ERROR;
2344 *al = SSL_AD_DECODE_ERROR;
2350 if (s->tlsext_ocsp_exts)
2352 sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts,
2353 X509_EXTENSION_free);
2356 s->tlsext_ocsp_exts =
2357 d2i_X509_EXTENSIONS(NULL,
2359 if (!s->tlsext_ocsp_exts
2360 || (data + dsize != sdata))
2362 *al = SSL_AD_DECODE_ERROR;
2367 /* We don't know what to do with any other type
2371 s->tlsext_status_type = -1;
2373 #ifndef OPENSSL_NO_HEARTBEATS
2374 else if (type == TLSEXT_TYPE_heartbeat)
2378 case 0x01: /* Client allows us to send HB requests */
2379 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2381 case 0x02: /* Client doesn't accept HB requests */
2382 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2383 s->tlsext_heartbeat |= SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
2385 default: *al = SSL_AD_ILLEGAL_PARAMETER;
2390 #ifndef OPENSSL_NO_NEXTPROTONEG
2391 else if (type == TLSEXT_TYPE_next_proto_neg &&
2392 s->s3->tmp.finish_md_len == 0 &&
2393 s->s3->alpn_selected == NULL)
2395 /* We shouldn't accept this extension on a
2398 * s->new_session will be set on renegotiation, but we
2399 * probably shouldn't rely that it couldn't be set on
2400 * the initial renegotation too in certain cases (when
2401 * there's some other reason to disallow resuming an
2402 * earlier session -- the current code won't be doing
2403 * anything like that, but this might change).
2405 * A valid sign that there's been a previous handshake
2406 * in this connection is if s->s3->tmp.finish_md_len >
2407 * 0. (We are talking about a check that will happen
2408 * in the Hello protocol round, well before a new
2409 * Finished message could have been computed.) */
2410 s->s3->next_proto_neg_seen = 1;
2414 else if (type == TLSEXT_TYPE_application_layer_protocol_negotiation &&
2415 s->ctx->alpn_select_cb &&
2416 s->s3->tmp.finish_md_len == 0)
2418 if (tls1_alpn_handle_client_hello(s, data, size, al) != 0)
2420 /* ALPN takes precedence over NPN. */
2421 s->s3->next_proto_neg_seen = 0;
2424 /* session ticket processed earlier */
2425 else if (type == TLSEXT_TYPE_use_srtp)
2427 if(ssl_parse_clienthello_use_srtp_ext(s, data, size,
2431 /* If this ClientHello extension was unhandled and this is
2432 * a nonresumed connection, check whether the extension is a
2433 * custom TLS Extension (has a custom_srv_ext_record), and if
2434 * so call the callback and record the extension number so that
2435 * an appropriate ServerHello may be later returned.
2437 else if (!s->hit && s->ctx->custom_srv_ext_records_count)
2439 custom_srv_ext_record *record;
2441 for (i=0; i < s->ctx->custom_srv_ext_records_count; i++)
2443 record = &s->ctx->custom_srv_ext_records[i];
2444 if (type == record->ext_type)
2448 /* Error on duplicate TLS Extensions */
2449 for (j = 0; j < s->s3->tlsext_custom_types_count; j++)
2451 if (type == s->s3->tlsext_custom_types[j])
2453 *al = TLS1_AD_DECODE_ERROR;
2458 /* NULL callback still notes the extension */
2459 if (record->fn1 && !record->fn1(s, type, data, size, al, record->arg))
2462 /* Add the (non-duplicated) entry */
2463 s->s3->tlsext_custom_types_count++;
2464 s->s3->tlsext_custom_types = OPENSSL_realloc(
2465 s->s3->tlsext_custom_types,
2466 s->s3->tlsext_custom_types_count * 2);
2467 if (s->s3->tlsext_custom_types == NULL)
2469 s->s3->tlsext_custom_types = 0;
2470 *al = TLS1_AD_INTERNAL_ERROR;
2473 s->s3->tlsext_custom_types[
2474 s->s3->tlsext_custom_types_count - 1] = type;
2478 #ifdef TLSEXT_TYPE_encrypt_then_mac
2479 else if (type == TLSEXT_TYPE_encrypt_then_mac)
2480 s->s3->flags |= TLS1_FLAGS_ENCRYPT_THEN_MAC;
2490 /* Need RI if renegotiating */
2492 if (!renegotiate_seen && s->renegotiate &&
2493 !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION))
2495 *al = SSL_AD_HANDSHAKE_FAILURE;
2496 SSLerr(SSL_F_SSL_SCAN_CLIENTHELLO_TLSEXT,
2497 SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
2500 /* If no signature algorithms extension set default values */
2501 if (!s->cert->peer_sigalgs)
2502 ssl_cert_set_default_md(s->cert);
2507 int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n)
2510 if (ssl_scan_clienthello_tlsext(s, p, d, n, &al) <= 0)
2512 ssl3_send_alert(s,SSL3_AL_FATAL,al);
2516 if (ssl_check_clienthello_tlsext_early(s) <= 0)
2518 SSLerr(SSL_F_SSL_PARSE_CLIENTHELLO_TLSEXT,SSL_R_CLIENTHELLO_TLSEXT);
2524 #ifndef OPENSSL_NO_NEXTPROTONEG
2525 /* ssl_next_proto_validate validates a Next Protocol Negotiation block. No
2526 * elements of zero length are allowed and the set of elements must exactly fill
2527 * the length of the block. */
2528 static char ssl_next_proto_validate(unsigned char *d, unsigned len)
2530 unsigned int off = 0;
2544 static int ssl_scan_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char *d, int n, int *al)
2546 unsigned short length;
2547 unsigned short type;
2548 unsigned short size;
2549 unsigned char *data = *p;
2550 int tlsext_servername = 0;
2551 int renegotiate_seen = 0;
2553 #ifndef OPENSSL_NO_NEXTPROTONEG
2554 s->s3->next_proto_neg_seen = 0;
2557 if (s->s3->alpn_selected)
2559 OPENSSL_free(s->s3->alpn_selected);
2560 s->s3->alpn_selected = NULL;
2563 #ifndef OPENSSL_NO_HEARTBEATS
2564 s->tlsext_heartbeat &= ~(SSL_TLSEXT_HB_ENABLED |
2565 SSL_TLSEXT_HB_DONT_SEND_REQUESTS);
2568 #ifdef TLSEXT_TYPE_encrypt_then_mac
2569 s->s3->flags &= ~TLS1_FLAGS_ENCRYPT_THEN_MAC;
2572 if (data >= (d+n-2))
2576 if (data+length != d+n)
2578 *al = SSL_AD_DECODE_ERROR;
2582 while(data <= (d+n-4))
2587 if (data+size > (d+n))
2590 if (s->tlsext_debug_cb)
2591 s->tlsext_debug_cb(s, 1, type, data, size,
2592 s->tlsext_debug_arg);
2594 if (type == TLSEXT_TYPE_server_name)
2596 if (s->tlsext_hostname == NULL || size > 0)
2598 *al = TLS1_AD_UNRECOGNIZED_NAME;
2601 tlsext_servername = 1;
2604 #ifndef OPENSSL_NO_EC
2605 else if (type == TLSEXT_TYPE_ec_point_formats)
2607 unsigned char *sdata = data;
2608 int ecpointformatlist_length = *(sdata++);
2610 if (ecpointformatlist_length != size - 1)
2612 *al = TLS1_AD_DECODE_ERROR;
2615 s->session->tlsext_ecpointformatlist_length = 0;
2616 if (s->session->tlsext_ecpointformatlist != NULL) OPENSSL_free(s->session->tlsext_ecpointformatlist);
2617 if ((s->session->tlsext_ecpointformatlist = OPENSSL_malloc(ecpointformatlist_length)) == NULL)
2619 *al = TLS1_AD_INTERNAL_ERROR;
2622 s->session->tlsext_ecpointformatlist_length = ecpointformatlist_length;
2623 memcpy(s->session->tlsext_ecpointformatlist, sdata, ecpointformatlist_length);
2625 fprintf(stderr,"ssl_parse_serverhello_tlsext s->session->tlsext_ecpointformatlist ");
2626 sdata = s->session->tlsext_ecpointformatlist;
2627 for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++)
2628 fprintf(stderr,"%i ",*(sdata++));
2629 fprintf(stderr,"\n");
2632 #endif /* OPENSSL_NO_EC */
2634 else if (type == TLSEXT_TYPE_session_ticket)
2636 if (s->tls_session_ticket_ext_cb &&
2637 !s->tls_session_ticket_ext_cb(s, data, size, s->tls_session_ticket_ext_cb_arg))
2639 *al = TLS1_AD_INTERNAL_ERROR;
2642 if ((SSL_get_options(s) & SSL_OP_NO_TICKET)
2645 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2648 s->tlsext_ticket_expected = 1;
2650 #ifdef TLSEXT_TYPE_opaque_prf_input
2651 else if (type == TLSEXT_TYPE_opaque_prf_input)
2653 unsigned char *sdata = data;
2657 *al = SSL_AD_DECODE_ERROR;
2660 n2s(sdata, s->s3->server_opaque_prf_input_len);
2661 if (s->s3->server_opaque_prf_input_len != size - 2)
2663 *al = SSL_AD_DECODE_ERROR;
2667 if (s->s3->server_opaque_prf_input != NULL) /* shouldn't really happen */
2668 OPENSSL_free(s->s3->server_opaque_prf_input);
2669 if (s->s3->server_opaque_prf_input_len == 0)
2670 s->s3->server_opaque_prf_input = OPENSSL_malloc(1); /* dummy byte just to get non-NULL */
2672 s->s3->server_opaque_prf_input = BUF_memdup(sdata, s->s3->server_opaque_prf_input_len);
2674 if (s->s3->server_opaque_prf_input == NULL)
2676 *al = TLS1_AD_INTERNAL_ERROR;
2681 else if (type == TLSEXT_TYPE_status_request)
2683 /* MUST be empty and only sent if we've requested
2684 * a status request message.
2686 if ((s->tlsext_status_type == -1) || (size > 0))
2688 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2691 /* Set flag to expect CertificateStatus message */
2692 s->tlsext_status_expected = 1;
2694 #ifndef OPENSSL_NO_NEXTPROTONEG
2695 else if (type == TLSEXT_TYPE_next_proto_neg &&
2696 s->s3->tmp.finish_md_len == 0)
2698 unsigned char *selected;
2699 unsigned char selected_len;
2701 /* We must have requested it. */
2702 if (s->ctx->next_proto_select_cb == NULL)
2704 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2707 /* The data must be valid */
2708 if (!ssl_next_proto_validate(data, size))
2710 *al = TLS1_AD_DECODE_ERROR;
2713 if (s->ctx->next_proto_select_cb(s, &selected, &selected_len, data, size, s->ctx->next_proto_select_cb_arg) != SSL_TLSEXT_ERR_OK)
2715 *al = TLS1_AD_INTERNAL_ERROR;
2718 s->next_proto_negotiated = OPENSSL_malloc(selected_len);
2719 if (!s->next_proto_negotiated)
2721 *al = TLS1_AD_INTERNAL_ERROR;
2724 memcpy(s->next_proto_negotiated, selected, selected_len);
2725 s->next_proto_negotiated_len = selected_len;
2726 s->s3->next_proto_neg_seen = 1;
2730 else if (type == TLSEXT_TYPE_application_layer_protocol_negotiation)
2734 /* We must have requested it. */
2735 if (s->alpn_client_proto_list == NULL)
2737 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2742 *al = TLS1_AD_DECODE_ERROR;
2745 /* The extension data consists of:
2746 * uint16 list_length
2747 * uint8 proto_length;
2748 * uint8 proto[proto_length]; */
2752 if (len != (unsigned) size - 2)
2754 *al = TLS1_AD_DECODE_ERROR;
2758 if (len != (unsigned) size - 3)
2760 *al = TLS1_AD_DECODE_ERROR;
2763 if (s->s3->alpn_selected)
2764 OPENSSL_free(s->s3->alpn_selected);
2765 s->s3->alpn_selected = OPENSSL_malloc(len);
2766 if (!s->s3->alpn_selected)
2768 *al = TLS1_AD_INTERNAL_ERROR;
2771 memcpy(s->s3->alpn_selected, data + 3, len);
2772 s->s3->alpn_selected_len = len;
2775 else if (type == TLSEXT_TYPE_renegotiate)
2777 if(!ssl_parse_serverhello_renegotiate_ext(s, data, size, al))
2779 renegotiate_seen = 1;
2781 #ifndef OPENSSL_NO_HEARTBEATS
2782 else if (type == TLSEXT_TYPE_heartbeat)
2786 case 0x01: /* Server allows us to send HB requests */
2787 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2789 case 0x02: /* Server doesn't accept HB requests */
2790 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2791 s->tlsext_heartbeat |= SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
2793 default: *al = SSL_AD_ILLEGAL_PARAMETER;
2798 else if (type == TLSEXT_TYPE_use_srtp)
2800 if(ssl_parse_serverhello_use_srtp_ext(s, data, size,
2804 /* If this extension type was not otherwise handled, but
2805 * matches a custom_cli_ext_record, then send it to the c
2807 else if (s->ctx->custom_cli_ext_records_count)
2810 custom_cli_ext_record* record;
2812 for (i = 0; i < s->ctx->custom_cli_ext_records_count; i++)
2814 record = &s->ctx->custom_cli_ext_records[i];
2815 if (record->ext_type == type)
2817 if (record->fn2 && !record->fn2(s, type, data, size, al, record->arg))
2823 #ifdef TLSEXT_TYPE_encrypt_then_mac
2824 else if (type == TLSEXT_TYPE_encrypt_then_mac)
2826 /* Ignore if inappropriate ciphersuite */
2827 if (s->s3->tmp.new_cipher->algorithm_mac != SSL_AEAD)
2828 s->s3->flags |= TLS1_FLAGS_ENCRYPT_THEN_MAC;
2837 *al = SSL_AD_DECODE_ERROR;
2841 if (!s->hit && tlsext_servername == 1)
2843 if (s->tlsext_hostname)
2845 if (s->session->tlsext_hostname == NULL)
2847 s->session->tlsext_hostname = BUF_strdup(s->tlsext_hostname);
2848 if (!s->session->tlsext_hostname)
2850 *al = SSL_AD_UNRECOGNIZED_NAME;
2856 *al = SSL_AD_DECODE_ERROR;
2866 /* Determine if we need to see RI. Strictly speaking if we want to
2867 * avoid an attack we should *always* see RI even on initial server
2868 * hello because the client doesn't see any renegotiation during an
2869 * attack. However this would mean we could not connect to any server
2870 * which doesn't support RI so for the immediate future tolerate RI
2871 * absence on initial connect only.
2873 if (!renegotiate_seen
2874 && !(s->options & SSL_OP_LEGACY_SERVER_CONNECT)
2875 && !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION))
2877 *al = SSL_AD_HANDSHAKE_FAILURE;
2878 SSLerr(SSL_F_SSL_SCAN_SERVERHELLO_TLSEXT,
2879 SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
2887 int ssl_prepare_clienthello_tlsext(SSL *s)
2890 #ifdef TLSEXT_TYPE_opaque_prf_input
2894 if (s->ctx->tlsext_opaque_prf_input_callback != 0)
2896 r = s->ctx->tlsext_opaque_prf_input_callback(s, NULL, 0, s->ctx->tlsext_opaque_prf_input_callback_arg);
2901 if (s->tlsext_opaque_prf_input != NULL)
2903 if (s->s3->client_opaque_prf_input != NULL) /* shouldn't really happen */
2904 OPENSSL_free(s->s3->client_opaque_prf_input);
2906 if (s->tlsext_opaque_prf_input_len == 0)
2907 s->s3->client_opaque_prf_input = OPENSSL_malloc(1); /* dummy byte just to get non-NULL */
2909 s->s3->client_opaque_prf_input = BUF_memdup(s->tlsext_opaque_prf_input, s->tlsext_opaque_prf_input_len);
2910 if (s->s3->client_opaque_prf_input == NULL)
2912 SSLerr(SSL_F_SSL_PREPARE_CLIENTHELLO_TLSEXT,ERR_R_MALLOC_FAILURE);
2915 s->s3->client_opaque_prf_input_len = s->tlsext_opaque_prf_input_len;
2919 /* at callback's request, insist on receiving an appropriate server opaque PRF input */
2920 s->s3->server_opaque_prf_input_len = s->tlsext_opaque_prf_input_len;
2927 int ssl_prepare_serverhello_tlsext(SSL *s)
2932 static int ssl_check_clienthello_tlsext_early(SSL *s)
2934 int ret=SSL_TLSEXT_ERR_NOACK;
2935 int al = SSL_AD_UNRECOGNIZED_NAME;
2937 #ifndef OPENSSL_NO_EC
2938 /* The handling of the ECPointFormats extension is done elsewhere, namely in
2939 * ssl3_choose_cipher in s3_lib.c.
2941 /* The handling of the EllipticCurves extension is done elsewhere, namely in
2942 * ssl3_choose_cipher in s3_lib.c.
2946 if (s->ctx != NULL && s->ctx->tlsext_servername_callback != 0)
2947 ret = s->ctx->tlsext_servername_callback(s, &al, s->ctx->tlsext_servername_arg);
2948 else if (s->initial_ctx != NULL && s->initial_ctx->tlsext_servername_callback != 0)
2949 ret = s->initial_ctx->tlsext_servername_callback(s, &al, s->initial_ctx->tlsext_servername_arg);
2951 #ifdef TLSEXT_TYPE_opaque_prf_input
2953 /* This sort of belongs into ssl_prepare_serverhello_tlsext(),
2954 * but we might be sending an alert in response to the client hello,
2955 * so this has to happen here in
2956 * ssl_check_clienthello_tlsext_early(). */
2960 if (s->ctx->tlsext_opaque_prf_input_callback != 0)
2962 r = s->ctx->tlsext_opaque_prf_input_callback(s, NULL, 0, s->ctx->tlsext_opaque_prf_input_callback_arg);
2965 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
2966 al = SSL_AD_INTERNAL_ERROR;
2971 if (s->s3->server_opaque_prf_input != NULL) /* shouldn't really happen */
2972 OPENSSL_free(s->s3->server_opaque_prf_input);
2973 s->s3->server_opaque_prf_input = NULL;
2975 if (s->tlsext_opaque_prf_input != NULL)
2977 if (s->s3->client_opaque_prf_input != NULL &&
2978 s->s3->client_opaque_prf_input_len == s->tlsext_opaque_prf_input_len)
2980 /* can only use this extension if we have a server opaque PRF input
2981 * of the same length as the client opaque PRF input! */
2983 if (s->tlsext_opaque_prf_input_len == 0)
2984 s->s3->server_opaque_prf_input = OPENSSL_malloc(1); /* dummy byte just to get non-NULL */
2986 s->s3->server_opaque_prf_input = BUF_memdup(s->tlsext_opaque_prf_input, s->tlsext_opaque_prf_input_len);
2987 if (s->s3->server_opaque_prf_input == NULL)
2989 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
2990 al = SSL_AD_INTERNAL_ERROR;
2993 s->s3->server_opaque_prf_input_len = s->tlsext_opaque_prf_input_len;
2997 if (r == 2 && s->s3->server_opaque_prf_input == NULL)
2999 /* The callback wants to enforce use of the extension,
3000 * but we can't do that with the client opaque PRF input;
3001 * abort the handshake.
3003 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3004 al = SSL_AD_HANDSHAKE_FAILURE;
3012 case SSL_TLSEXT_ERR_ALERT_FATAL:
3013 ssl3_send_alert(s,SSL3_AL_FATAL,al);
3016 case SSL_TLSEXT_ERR_ALERT_WARNING:
3017 ssl3_send_alert(s,SSL3_AL_WARNING,al);
3020 case SSL_TLSEXT_ERR_NOACK:
3021 s->servername_done=0;
3027 int ssl_check_clienthello_tlsext_late(SSL *s)
3029 int ret = SSL_TLSEXT_ERR_OK;
3032 /* If status request then ask callback what to do.
3033 * Note: this must be called after servername callbacks in case
3034 * the certificate has changed, and must be called after the cipher
3035 * has been chosen because this may influence which certificate is sent
3037 if ((s->tlsext_status_type != -1) && s->ctx && s->ctx->tlsext_status_cb)
3040 CERT_PKEY *certpkey;
3041 certpkey = ssl_get_server_send_pkey(s);
3042 /* If no certificate can't return certificate status */
3043 if (certpkey == NULL)
3045 s->tlsext_status_expected = 0;
3048 /* Set current certificate to one we will use so
3049 * SSL_get_certificate et al can pick it up.
3051 s->cert->key = certpkey;
3052 r = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
3055 /* We don't want to send a status request response */
3056 case SSL_TLSEXT_ERR_NOACK:
3057 s->tlsext_status_expected = 0;
3059 /* status request response should be sent */
3060 case SSL_TLSEXT_ERR_OK:
3061 if (s->tlsext_ocsp_resp)
3062 s->tlsext_status_expected = 1;
3064 s->tlsext_status_expected = 0;
3066 /* something bad happened */
3067 case SSL_TLSEXT_ERR_ALERT_FATAL:
3068 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3069 al = SSL_AD_INTERNAL_ERROR;
3074 s->tlsext_status_expected = 0;
3079 case SSL_TLSEXT_ERR_ALERT_FATAL:
3080 ssl3_send_alert(s, SSL3_AL_FATAL, al);
3083 case SSL_TLSEXT_ERR_ALERT_WARNING:
3084 ssl3_send_alert(s, SSL3_AL_WARNING, al);
3092 int ssl_check_serverhello_tlsext(SSL *s)
3094 int ret=SSL_TLSEXT_ERR_NOACK;
3095 int al = SSL_AD_UNRECOGNIZED_NAME;
3097 #ifndef OPENSSL_NO_EC
3098 /* If we are client and using an elliptic curve cryptography cipher
3099 * suite, then if server returns an EC point formats lists extension
3100 * it must contain uncompressed.
3102 unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3103 unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3104 if ((s->tlsext_ecpointformatlist != NULL) && (s->tlsext_ecpointformatlist_length > 0) &&
3105 (s->session->tlsext_ecpointformatlist != NULL) && (s->session->tlsext_ecpointformatlist_length > 0) &&
3106 ((alg_k & (SSL_kEECDH|SSL_kECDHr|SSL_kECDHe)) || (alg_a & SSL_aECDSA)))
3108 /* we are using an ECC cipher */
3110 unsigned char *list;
3111 int found_uncompressed = 0;
3112 list = s->session->tlsext_ecpointformatlist;
3113 for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++)
3115 if (*(list++) == TLSEXT_ECPOINTFORMAT_uncompressed)
3117 found_uncompressed = 1;