Implement length checks as a macro
[oweals/openssl.git] / ssl / t1_lib.c
1 /* ssl/t1_lib.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
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.
8  *
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).
15  *
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.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
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)"
40  *
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
51  * SUCH DAMAGE.
52  *
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.]
57  */
58 /* ====================================================================
59  * Copyright (c) 1998-2007 The OpenSSL Project.  All rights reserved.
60  *
61  * Redistribution and use in source and binary forms, with or without
62  * modification, are permitted provided that the following conditions
63  * are met:
64  *
65  * 1. Redistributions of source code must retain the above copyright
66  *    notice, this list of conditions and the following disclaimer.
67  *
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
71  *    distribution.
72  *
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/)"
77  *
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.
82  *
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.
86  *
87  * 6. Redistributions of any form whatsoever must retain the following
88  *    acknowledgment:
89  *    "This product includes software developed by the OpenSSL Project
90  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
91  *
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  * ====================================================================
105  *
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).
109  *
110  */
111
112 #include <stdio.h>
113 #include <openssl/objects.h>
114 #include <openssl/evp.h>
115 #include <openssl/hmac.h>
116 #ifndef OPENSSL_NO_EC
117 #ifdef OPENSSL_NO_EC2M
118 # include <openssl/ec.h>
119 #endif
120 #endif
121 #include <openssl/ocsp.h>
122 #include <openssl/rand.h>
123 #include "ssl_locl.h"
124
125 const char tls1_version_str[] = "TLSv1" OPENSSL_VERSION_PTEXT;
126
127 #ifndef OPENSSL_NO_TLSEXT
128 static int tls_decrypt_ticket(SSL *s, const unsigned char *tick, int ticklen,
129                               const unsigned char *sess_id, int sesslen,
130                               SSL_SESSION **psess);
131 static int ssl_check_clienthello_tlsext_early(SSL *s);
132 int ssl_check_serverhello_tlsext(SSL *s);
133 #endif
134
135 #define CHECKLEN(curr, val, limit) \
136     (((curr) >= (limit)) || (size_t)((limit) - (curr)) < (size_t)(val))
137
138 SSL3_ENC_METHOD TLSv1_enc_data = {
139     tls1_enc,
140     tls1_mac,
141     tls1_setup_key_block,
142     tls1_generate_master_secret,
143     tls1_change_cipher_state,
144     tls1_final_finish_mac,
145     TLS1_FINISH_MAC_LENGTH,
146     tls1_cert_verify_mac,
147     TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
148     TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
149     tls1_alert_code,
150     tls1_export_keying_material,
151     0,
152     SSL3_HM_HEADER_LENGTH,
153     ssl3_set_handshake_header,
154     ssl3_handshake_write
155 };
156
157 SSL3_ENC_METHOD TLSv1_1_enc_data = {
158     tls1_enc,
159     tls1_mac,
160     tls1_setup_key_block,
161     tls1_generate_master_secret,
162     tls1_change_cipher_state,
163     tls1_final_finish_mac,
164     TLS1_FINISH_MAC_LENGTH,
165     tls1_cert_verify_mac,
166     TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
167     TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
168     tls1_alert_code,
169     tls1_export_keying_material,
170     SSL_ENC_FLAG_EXPLICIT_IV,
171     SSL3_HM_HEADER_LENGTH,
172     ssl3_set_handshake_header,
173     ssl3_handshake_write
174 };
175
176 SSL3_ENC_METHOD TLSv1_2_enc_data = {
177     tls1_enc,
178     tls1_mac,
179     tls1_setup_key_block,
180     tls1_generate_master_secret,
181     tls1_change_cipher_state,
182     tls1_final_finish_mac,
183     TLS1_FINISH_MAC_LENGTH,
184     tls1_cert_verify_mac,
185     TLS_MD_CLIENT_FINISH_CONST, TLS_MD_CLIENT_FINISH_CONST_SIZE,
186     TLS_MD_SERVER_FINISH_CONST, TLS_MD_SERVER_FINISH_CONST_SIZE,
187     tls1_alert_code,
188     tls1_export_keying_material,
189     SSL_ENC_FLAG_EXPLICIT_IV | SSL_ENC_FLAG_SIGALGS | SSL_ENC_FLAG_SHA256_PRF
190         | SSL_ENC_FLAG_TLS1_2_CIPHERS,
191     SSL3_HM_HEADER_LENGTH,
192     ssl3_set_handshake_header,
193     ssl3_handshake_write
194 };
195
196 long tls1_default_timeout(void)
197 {
198     /*
199      * 2 hours, the 24 hours mentioned in the TLSv1 spec is way too long for
200      * http, the cache would over fill
201      */
202     return (60 * 60 * 2);
203 }
204
205 int tls1_new(SSL *s)
206 {
207     if (!ssl3_new(s))
208         return (0);
209     s->method->ssl_clear(s);
210     return (1);
211 }
212
213 void tls1_free(SSL *s)
214 {
215 #ifndef OPENSSL_NO_TLSEXT
216     if (s->tlsext_session_ticket) {
217         OPENSSL_free(s->tlsext_session_ticket);
218     }
219 #endif                          /* OPENSSL_NO_TLSEXT */
220     ssl3_free(s);
221 }
222
223 void tls1_clear(SSL *s)
224 {
225     ssl3_clear(s);
226     s->version = s->method->version;
227 }
228
229 #ifndef OPENSSL_NO_EC
230
231 static int nid_list[] = {
232     NID_sect163k1,              /* sect163k1 (1) */
233     NID_sect163r1,              /* sect163r1 (2) */
234     NID_sect163r2,              /* sect163r2 (3) */
235     NID_sect193r1,              /* sect193r1 (4) */
236     NID_sect193r2,              /* sect193r2 (5) */
237     NID_sect233k1,              /* sect233k1 (6) */
238     NID_sect233r1,              /* sect233r1 (7) */
239     NID_sect239k1,              /* sect239k1 (8) */
240     NID_sect283k1,              /* sect283k1 (9) */
241     NID_sect283r1,              /* sect283r1 (10) */
242     NID_sect409k1,              /* sect409k1 (11) */
243     NID_sect409r1,              /* sect409r1 (12) */
244     NID_sect571k1,              /* sect571k1 (13) */
245     NID_sect571r1,              /* sect571r1 (14) */
246     NID_secp160k1,              /* secp160k1 (15) */
247     NID_secp160r1,              /* secp160r1 (16) */
248     NID_secp160r2,              /* secp160r2 (17) */
249     NID_secp192k1,              /* secp192k1 (18) */
250     NID_X9_62_prime192v1,       /* secp192r1 (19) */
251     NID_secp224k1,              /* secp224k1 (20) */
252     NID_secp224r1,              /* secp224r1 (21) */
253     NID_secp256k1,              /* secp256k1 (22) */
254     NID_X9_62_prime256v1,       /* secp256r1 (23) */
255     NID_secp384r1,              /* secp384r1 (24) */
256     NID_secp521r1,              /* secp521r1 (25) */
257     NID_brainpoolP256r1,        /* brainpoolP256r1 (26) */
258     NID_brainpoolP384r1,        /* brainpoolP384r1 (27) */
259     NID_brainpoolP512r1         /* brainpool512r1 (28) */
260 };
261
262 static const unsigned char ecformats_default[] = {
263     TLSEXT_ECPOINTFORMAT_uncompressed,
264     TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime,
265     TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2
266 };
267
268 /* The client's default curves / the server's 'auto' curves. */
269 static const unsigned char eccurves_auto[] = {
270     /* Prefer P-256 which has the fastest and most secure implementations. */
271     0, 23,                      /* secp256r1 (23) */
272     /* Other >= 256-bit prime curves. */
273     0, 25,                      /* secp521r1 (25) */
274     0, 28,                      /* brainpool512r1 (28) */
275     0, 27,                      /* brainpoolP384r1 (27) */
276     0, 24,                      /* secp384r1 (24) */
277     0, 26,                      /* brainpoolP256r1 (26) */
278     0, 22,                      /* secp256k1 (22) */
279 # ifndef OPENSSL_NO_EC2M
280     /* >= 256-bit binary curves. */
281     0, 14,                      /* sect571r1 (14) */
282     0, 13,                      /* sect571k1 (13) */
283     0, 11,                      /* sect409k1 (11) */
284     0, 12,                      /* sect409r1 (12) */
285     0, 9,                       /* sect283k1 (9) */
286     0, 10,                      /* sect283r1 (10) */
287 # endif
288 };
289
290 static const unsigned char eccurves_all[] = {
291     /* Prefer P-256 which has the fastest and most secure implementations. */
292     0, 23,                      /* secp256r1 (23) */
293     /* Other >= 256-bit prime curves. */
294     0, 25,                      /* secp521r1 (25) */
295     0, 28,                      /* brainpool512r1 (28) */
296     0, 27,                      /* brainpoolP384r1 (27) */
297     0, 24,                      /* secp384r1 (24) */
298     0, 26,                      /* brainpoolP256r1 (26) */
299     0, 22,                      /* secp256k1 (22) */
300 # ifndef OPENSSL_NO_EC2M
301     /* >= 256-bit binary curves. */
302     0, 14,                      /* sect571r1 (14) */
303     0, 13,                      /* sect571k1 (13) */
304     0, 11,                      /* sect409k1 (11) */
305     0, 12,                      /* sect409r1 (12) */
306     0, 9,                       /* sect283k1 (9) */
307     0, 10,                      /* sect283r1 (10) */
308 # endif
309     /*
310      * Remaining curves disabled by default but still permitted if set
311      * via an explicit callback or parameters.
312      */
313     0, 20,                      /* secp224k1 (20) */
314     0, 21,                      /* secp224r1 (21) */
315     0, 18,                      /* secp192k1 (18) */
316     0, 19,                      /* secp192r1 (19) */
317     0, 15,                      /* secp160k1 (15) */
318     0, 16,                      /* secp160r1 (16) */
319     0, 17,                      /* secp160r2 (17) */
320 # ifndef OPENSSL_NO_EC2M
321     0, 8,                       /* sect239k1 (8) */
322     0, 6,                       /* sect233k1 (6) */
323     0, 7,                       /* sect233r1 (7) */
324     0, 4,                       /* sect193r1 (4) */
325     0, 5,                       /* sect193r2 (5) */
326     0, 1,                       /* sect163k1 (1) */
327     0, 2,                       /* sect163r1 (2) */
328     0, 3,                       /* sect163r2 (3) */
329 # endif
330 };
331
332 static const unsigned char suiteb_curves[] = {
333     0, TLSEXT_curve_P_256,
334     0, TLSEXT_curve_P_384
335 };
336
337 # ifdef OPENSSL_FIPS
338 /* Brainpool not allowed in FIPS mode */
339 static const unsigned char fips_curves_default[] = {
340 #  ifndef OPENSSL_NO_EC2M
341     0, 14,                      /* sect571r1 (14) */
342     0, 13,                      /* sect571k1 (13) */
343 #  endif
344     0, 25,                      /* secp521r1 (25) */
345 #  ifndef OPENSSL_NO_EC2M
346     0, 11,                      /* sect409k1 (11) */
347     0, 12,                      /* sect409r1 (12) */
348 #  endif
349     0, 24,                      /* secp384r1 (24) */
350 #  ifndef OPENSSL_NO_EC2M
351     0, 9,                       /* sect283k1 (9) */
352     0, 10,                      /* sect283r1 (10) */
353 #  endif
354     0, 22,                      /* secp256k1 (22) */
355     0, 23,                      /* secp256r1 (23) */
356 #  ifndef OPENSSL_NO_EC2M
357     0, 8,                       /* sect239k1 (8) */
358     0, 6,                       /* sect233k1 (6) */
359     0, 7,                       /* sect233r1 (7) */
360 #  endif
361     0, 20,                      /* secp224k1 (20) */
362     0, 21,                      /* secp224r1 (21) */
363 #  ifndef OPENSSL_NO_EC2M
364     0, 4,                       /* sect193r1 (4) */
365     0, 5,                       /* sect193r2 (5) */
366 #  endif
367     0, 18,                      /* secp192k1 (18) */
368     0, 19,                      /* secp192r1 (19) */
369 #  ifndef OPENSSL_NO_EC2M
370     0, 1,                       /* sect163k1 (1) */
371     0, 2,                       /* sect163r1 (2) */
372     0, 3,                       /* sect163r2 (3) */
373 #  endif
374     0, 15,                      /* secp160k1 (15) */
375     0, 16,                      /* secp160r1 (16) */
376     0, 17,                      /* secp160r2 (17) */
377 };
378 # endif
379
380 int tls1_ec_curve_id2nid(int curve_id)
381 {
382     /* ECC curves from RFC 4492 and RFC 7027 */
383     if ((curve_id < 1) || ((unsigned int)curve_id >
384                            sizeof(nid_list) / sizeof(nid_list[0])))
385         return 0;
386     return nid_list[curve_id - 1];
387 }
388
389 int tls1_ec_nid2curve_id(int nid)
390 {
391     /* ECC curves from RFC 4492 and RFC 7027 */
392     switch (nid) {
393     case NID_sect163k1:        /* sect163k1 (1) */
394         return 1;
395     case NID_sect163r1:        /* sect163r1 (2) */
396         return 2;
397     case NID_sect163r2:        /* sect163r2 (3) */
398         return 3;
399     case NID_sect193r1:        /* sect193r1 (4) */
400         return 4;
401     case NID_sect193r2:        /* sect193r2 (5) */
402         return 5;
403     case NID_sect233k1:        /* sect233k1 (6) */
404         return 6;
405     case NID_sect233r1:        /* sect233r1 (7) */
406         return 7;
407     case NID_sect239k1:        /* sect239k1 (8) */
408         return 8;
409     case NID_sect283k1:        /* sect283k1 (9) */
410         return 9;
411     case NID_sect283r1:        /* sect283r1 (10) */
412         return 10;
413     case NID_sect409k1:        /* sect409k1 (11) */
414         return 11;
415     case NID_sect409r1:        /* sect409r1 (12) */
416         return 12;
417     case NID_sect571k1:        /* sect571k1 (13) */
418         return 13;
419     case NID_sect571r1:        /* sect571r1 (14) */
420         return 14;
421     case NID_secp160k1:        /* secp160k1 (15) */
422         return 15;
423     case NID_secp160r1:        /* secp160r1 (16) */
424         return 16;
425     case NID_secp160r2:        /* secp160r2 (17) */
426         return 17;
427     case NID_secp192k1:        /* secp192k1 (18) */
428         return 18;
429     case NID_X9_62_prime192v1: /* secp192r1 (19) */
430         return 19;
431     case NID_secp224k1:        /* secp224k1 (20) */
432         return 20;
433     case NID_secp224r1:        /* secp224r1 (21) */
434         return 21;
435     case NID_secp256k1:        /* secp256k1 (22) */
436         return 22;
437     case NID_X9_62_prime256v1: /* secp256r1 (23) */
438         return 23;
439     case NID_secp384r1:        /* secp384r1 (24) */
440         return 24;
441     case NID_secp521r1:        /* secp521r1 (25) */
442         return 25;
443     case NID_brainpoolP256r1:  /* brainpoolP256r1 (26) */
444         return 26;
445     case NID_brainpoolP384r1:  /* brainpoolP384r1 (27) */
446         return 27;
447     case NID_brainpoolP512r1:  /* brainpool512r1 (28) */
448         return 28;
449     default:
450         return 0;
451     }
452 }
453
454 /*
455  * Get curves list, if "sess" is set return client curves otherwise
456  * preferred list.
457  * Sets |num_curves| to the number of curves in the list, i.e.,
458  * the length of |pcurves| is 2 * num_curves.
459  * Returns 1 on success and 0 if the client curves list has invalid format.
460  * The latter indicates an internal error: we should not be accepting such
461  * lists in the first place.
462  * TODO(emilia): we should really be storing the curves list in explicitly
463  * parsed form instead. (However, this would affect binary compatibility
464  * so cannot happen in the 1.0.x series.)
465  */
466 static int tls1_get_curvelist(SSL *s, int sess,
467                               const unsigned char **pcurves,
468                               size_t *num_curves)
469 {
470     size_t pcurveslen = 0;
471     if (sess) {
472         *pcurves = s->session->tlsext_ellipticcurvelist;
473         pcurveslen = s->session->tlsext_ellipticcurvelist_length;
474     } else {
475         /* For Suite B mode only include P-256, P-384 */
476         switch (tls1_suiteb(s)) {
477         case SSL_CERT_FLAG_SUITEB_128_LOS:
478             *pcurves = suiteb_curves;
479             pcurveslen = sizeof(suiteb_curves);
480             break;
481
482         case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
483             *pcurves = suiteb_curves;
484             pcurveslen = 2;
485             break;
486
487         case SSL_CERT_FLAG_SUITEB_192_LOS:
488             *pcurves = suiteb_curves + 2;
489             pcurveslen = 2;
490             break;
491         default:
492             *pcurves = s->tlsext_ellipticcurvelist;
493             pcurveslen = s->tlsext_ellipticcurvelist_length;
494         }
495         if (!*pcurves) {
496 # ifdef OPENSSL_FIPS
497             if (FIPS_mode()) {
498                 *pcurves = fips_curves_default;
499                 pcurveslen = sizeof(fips_curves_default);
500             } else
501 # endif
502             {
503                 if (!s->server || s->cert->ecdh_tmp_auto) {
504                     *pcurves = eccurves_auto;
505                     pcurveslen = sizeof(eccurves_auto);
506                 } else {
507                     *pcurves = eccurves_all;
508                     pcurveslen = sizeof(eccurves_all);
509                 }
510             }
511         }
512     }
513     /* We do not allow odd length arrays to enter the system. */
514     if (pcurveslen & 1) {
515         SSLerr(SSL_F_TLS1_GET_CURVELIST, ERR_R_INTERNAL_ERROR);
516         *num_curves = 0;
517         return 0;
518     } else {
519         *num_curves = pcurveslen / 2;
520         return 1;
521     }
522 }
523
524 /* Check a curve is one of our preferences */
525 int tls1_check_curve(SSL *s, const unsigned char *p, size_t len)
526 {
527     const unsigned char *curves;
528     size_t num_curves, i;
529     unsigned int suiteb_flags = tls1_suiteb(s);
530     if (len != 3 || p[0] != NAMED_CURVE_TYPE)
531         return 0;
532     /* Check curve matches Suite B preferences */
533     if (suiteb_flags) {
534         unsigned long cid = s->s3->tmp.new_cipher->id;
535         if (p[1])
536             return 0;
537         if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256) {
538             if (p[2] != TLSEXT_curve_P_256)
539                 return 0;
540         } else if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384) {
541             if (p[2] != TLSEXT_curve_P_384)
542                 return 0;
543         } else                  /* Should never happen */
544             return 0;
545     }
546     if (!tls1_get_curvelist(s, 0, &curves, &num_curves))
547         return 0;
548     for (i = 0; i < num_curves; i++, curves += 2) {
549         if (p[1] == curves[0] && p[2] == curves[1])
550             return 1;
551     }
552     return 0;
553 }
554
555 /*-
556  * Return |nmatch|th shared curve or NID_undef if there is no match.
557  * For nmatch == -1, return number of  matches
558  * For nmatch == -2, return the NID of the curve to use for
559  * an EC tmp key, or NID_undef if there is no match.
560  */
561 int tls1_shared_curve(SSL *s, int nmatch)
562 {
563     const unsigned char *pref, *supp;
564     size_t num_pref, num_supp, i, j;
565     int k;
566     /* Can't do anything on client side */
567     if (s->server == 0)
568         return -1;
569     if (nmatch == -2) {
570         if (tls1_suiteb(s)) {
571             /*
572              * For Suite B ciphersuite determines curve: we already know
573              * these are acceptable due to previous checks.
574              */
575             unsigned long cid = s->s3->tmp.new_cipher->id;
576             if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)
577                 return NID_X9_62_prime256v1; /* P-256 */
578             if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384)
579                 return NID_secp384r1; /* P-384 */
580             /* Should never happen */
581             return NID_undef;
582         }
583         /* If not Suite B just return first preference shared curve */
584         nmatch = 0;
585     }
586     /*
587      * Avoid truncation. tls1_get_curvelist takes an int
588      * but s->options is a long...
589      */
590     if (!tls1_get_curvelist
591         (s, (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0, &supp,
592          &num_supp))
593         /* In practice, NID_undef == 0 but let's be precise. */
594         return nmatch == -1 ? 0 : NID_undef;
595     if (!tls1_get_curvelist
596         (s, !(s->options & SSL_OP_CIPHER_SERVER_PREFERENCE), &pref,
597          &num_pref))
598         return nmatch == -1 ? 0 : NID_undef;
599
600     /*
601      * If the client didn't send the elliptic_curves extension all of them
602      * are allowed.
603      */
604     if (num_supp == 0 && (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) != 0) {
605         supp = eccurves_all;
606         num_supp = sizeof(eccurves_all) / 2;
607     } else if (num_pref == 0 &&
608         (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE) == 0) {
609         pref = eccurves_all;
610         num_pref = sizeof(eccurves_all) / 2;
611     }
612
613     k = 0;
614     for (i = 0; i < num_pref; i++, pref += 2) {
615         const unsigned char *tsupp = supp;
616         for (j = 0; j < num_supp; j++, tsupp += 2) {
617             if (pref[0] == tsupp[0] && pref[1] == tsupp[1]) {
618                 if (nmatch == k) {
619                     int id = (pref[0] << 8) | pref[1];
620                     return tls1_ec_curve_id2nid(id);
621                 }
622                 k++;
623             }
624         }
625     }
626     if (nmatch == -1)
627         return k;
628     /* Out of range (nmatch > k). */
629     return NID_undef;
630 }
631
632 int tls1_set_curves(unsigned char **pext, size_t *pextlen,
633                     int *curves, size_t ncurves)
634 {
635     unsigned char *clist, *p;
636     size_t i;
637     /*
638      * Bitmap of curves included to detect duplicates: only works while curve
639      * ids < 32
640      */
641     unsigned long dup_list = 0;
642 # ifdef OPENSSL_NO_EC2M
643     EC_GROUP *curve;
644 # endif
645
646     clist = OPENSSL_malloc(ncurves * 2);
647     if (!clist)
648         return 0;
649     for (i = 0, p = clist; i < ncurves; i++) {
650         unsigned long idmask;
651         int id;
652         id = tls1_ec_nid2curve_id(curves[i]);
653 # ifdef OPENSSL_FIPS
654         /* NB: 25 is last curve ID supported by FIPS module */
655         if (FIPS_mode() && id > 25) {
656             OPENSSL_free(clist);
657             return 0;
658         }
659 # endif
660 # ifdef OPENSSL_NO_EC2M
661         curve = EC_GROUP_new_by_curve_name(curves[i]);
662         if (!curve || EC_METHOD_get_field_type(EC_GROUP_method_of(curve))
663             == NID_X9_62_characteristic_two_field) {
664             if (curve)
665                 EC_GROUP_free(curve);
666             OPENSSL_free(clist);
667             return 0;
668         } else
669             EC_GROUP_free(curve);
670 # endif
671         idmask = 1L << id;
672         if (!id || (dup_list & idmask)) {
673             OPENSSL_free(clist);
674             return 0;
675         }
676         dup_list |= idmask;
677         s2n(id, p);
678     }
679     if (*pext)
680         OPENSSL_free(*pext);
681     *pext = clist;
682     *pextlen = ncurves * 2;
683     return 1;
684 }
685
686 # define MAX_CURVELIST   28
687
688 typedef struct {
689     size_t nidcnt;
690     int nid_arr[MAX_CURVELIST];
691 } nid_cb_st;
692
693 static int nid_cb(const char *elem, int len, void *arg)
694 {
695     nid_cb_st *narg = arg;
696     size_t i;
697     int nid;
698     char etmp[20];
699     if (elem == NULL)
700         return 0;
701     if (narg->nidcnt == MAX_CURVELIST)
702         return 0;
703     if (len > (int)(sizeof(etmp) - 1))
704         return 0;
705     memcpy(etmp, elem, len);
706     etmp[len] = 0;
707     nid = EC_curve_nist2nid(etmp);
708     if (nid == NID_undef)
709         nid = OBJ_sn2nid(etmp);
710     if (nid == NID_undef)
711         nid = OBJ_ln2nid(etmp);
712     if (nid == NID_undef)
713         return 0;
714     for (i = 0; i < narg->nidcnt; i++)
715         if (narg->nid_arr[i] == nid)
716             return 0;
717     narg->nid_arr[narg->nidcnt++] = nid;
718     return 1;
719 }
720
721 /* Set curves based on a colon separate list */
722 int tls1_set_curves_list(unsigned char **pext, size_t *pextlen,
723                          const char *str)
724 {
725     nid_cb_st ncb;
726     ncb.nidcnt = 0;
727     if (!CONF_parse_list(str, ':', 1, nid_cb, &ncb))
728         return 0;
729     if (pext == NULL)
730         return 1;
731     return tls1_set_curves(pext, pextlen, ncb.nid_arr, ncb.nidcnt);
732 }
733
734 /* For an EC key set TLS id and required compression based on parameters */
735 static int tls1_set_ec_id(unsigned char *curve_id, unsigned char *comp_id,
736                           EC_KEY *ec)
737 {
738     int is_prime, id;
739     const EC_GROUP *grp;
740     const EC_METHOD *meth;
741     if (!ec)
742         return 0;
743     /* Determine if it is a prime field */
744     grp = EC_KEY_get0_group(ec);
745     if (!grp)
746         return 0;
747     meth = EC_GROUP_method_of(grp);
748     if (!meth)
749         return 0;
750     if (EC_METHOD_get_field_type(meth) == NID_X9_62_prime_field)
751         is_prime = 1;
752     else
753         is_prime = 0;
754     /* Determine curve ID */
755     id = EC_GROUP_get_curve_name(grp);
756     id = tls1_ec_nid2curve_id(id);
757     /* If we have an ID set it, otherwise set arbitrary explicit curve */
758     if (id) {
759         curve_id[0] = 0;
760         curve_id[1] = (unsigned char)id;
761     } else {
762         curve_id[0] = 0xff;
763         if (is_prime)
764             curve_id[1] = 0x01;
765         else
766             curve_id[1] = 0x02;
767     }
768     if (comp_id) {
769         if (EC_KEY_get0_public_key(ec) == NULL)
770             return 0;
771         if (EC_KEY_get_conv_form(ec) == POINT_CONVERSION_COMPRESSED) {
772             if (is_prime)
773                 *comp_id = TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime;
774             else
775                 *comp_id = TLSEXT_ECPOINTFORMAT_ansiX962_compressed_char2;
776         } else
777             *comp_id = TLSEXT_ECPOINTFORMAT_uncompressed;
778     }
779     return 1;
780 }
781
782 /* Check an EC key is compatible with extensions */
783 static int tls1_check_ec_key(SSL *s,
784                              unsigned char *curve_id, unsigned char *comp_id)
785 {
786     const unsigned char *pformats, *pcurves;
787     size_t num_formats, num_curves, i;
788     int j;
789     /*
790      * If point formats extension present check it, otherwise everything is
791      * supported (see RFC4492).
792      */
793     if (comp_id && s->session->tlsext_ecpointformatlist) {
794         pformats = s->session->tlsext_ecpointformatlist;
795         num_formats = s->session->tlsext_ecpointformatlist_length;
796         for (i = 0; i < num_formats; i++, pformats++) {
797             if (*comp_id == *pformats)
798                 break;
799         }
800         if (i == num_formats)
801             return 0;
802     }
803     if (!curve_id)
804         return 1;
805     /* Check curve is consistent with client and server preferences */
806     for (j = 0; j <= 1; j++) {
807         if (!tls1_get_curvelist(s, j, &pcurves, &num_curves))
808             return 0;
809         if (j == 1 && num_curves == 0) {
810             /*
811              * If we've not received any curves then skip this check.
812              * RFC 4492 does not require the supported elliptic curves extension
813              * so if it is not sent we can just choose any curve.
814              * It is invalid to send an empty list in the elliptic curves
815              * extension, so num_curves == 0 always means no extension.
816              */
817             break;
818         }
819         for (i = 0; i < num_curves; i++, pcurves += 2) {
820             if (pcurves[0] == curve_id[0] && pcurves[1] == curve_id[1])
821                 break;
822         }
823         if (i == num_curves)
824             return 0;
825         /* For clients can only check sent curve list */
826         if (!s->server)
827             return 1;
828     }
829     return 1;
830 }
831
832 static void tls1_get_formatlist(SSL *s, const unsigned char **pformats,
833                                 size_t *num_formats)
834 {
835     /*
836      * If we have a custom point format list use it otherwise use default
837      */
838     if (s->tlsext_ecpointformatlist) {
839         *pformats = s->tlsext_ecpointformatlist;
840         *num_formats = s->tlsext_ecpointformatlist_length;
841     } else {
842         *pformats = ecformats_default;
843         /* For Suite B we don't support char2 fields */
844         if (tls1_suiteb(s))
845             *num_formats = sizeof(ecformats_default) - 1;
846         else
847             *num_formats = sizeof(ecformats_default);
848     }
849 }
850
851 /*
852  * Check cert parameters compatible with extensions: currently just checks EC
853  * certificates have compatible curves and compression.
854  */
855 static int tls1_check_cert_param(SSL *s, X509 *x, int set_ee_md)
856 {
857     unsigned char comp_id, curve_id[2];
858     EVP_PKEY *pkey;
859     int rv;
860     pkey = X509_get_pubkey(x);
861     if (!pkey)
862         return 0;
863     /* If not EC nothing to do */
864     if (pkey->type != EVP_PKEY_EC) {
865         EVP_PKEY_free(pkey);
866         return 1;
867     }
868     rv = tls1_set_ec_id(curve_id, &comp_id, pkey->pkey.ec);
869     EVP_PKEY_free(pkey);
870     if (!rv)
871         return 0;
872     /*
873      * Can't check curve_id for client certs as we don't have a supported
874      * curves extension.
875      */
876     rv = tls1_check_ec_key(s, s->server ? curve_id : NULL, &comp_id);
877     if (!rv)
878         return 0;
879     /*
880      * Special case for suite B. We *MUST* sign using SHA256+P-256 or
881      * SHA384+P-384, adjust digest if necessary.
882      */
883     if (set_ee_md && tls1_suiteb(s)) {
884         int check_md;
885         size_t i;
886         CERT *c = s->cert;
887         if (curve_id[0])
888             return 0;
889         /* Check to see we have necessary signing algorithm */
890         if (curve_id[1] == TLSEXT_curve_P_256)
891             check_md = NID_ecdsa_with_SHA256;
892         else if (curve_id[1] == TLSEXT_curve_P_384)
893             check_md = NID_ecdsa_with_SHA384;
894         else
895             return 0;           /* Should never happen */
896         for (i = 0; i < c->shared_sigalgslen; i++)
897             if (check_md == c->shared_sigalgs[i].signandhash_nid)
898                 break;
899         if (i == c->shared_sigalgslen)
900             return 0;
901         if (set_ee_md == 2) {
902             if (check_md == NID_ecdsa_with_SHA256)
903                 c->pkeys[SSL_PKEY_ECC].digest = EVP_sha256();
904             else
905                 c->pkeys[SSL_PKEY_ECC].digest = EVP_sha384();
906         }
907     }
908     return rv;
909 }
910
911 # ifndef OPENSSL_NO_ECDH
912 /* Check EC temporary key is compatible with client extensions */
913 int tls1_check_ec_tmp_key(SSL *s, unsigned long cid)
914 {
915     unsigned char curve_id[2];
916     EC_KEY *ec = s->cert->ecdh_tmp;
917 #  ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
918     /* Allow any curve: not just those peer supports */
919     if (s->cert->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL)
920         return 1;
921 #  endif
922     /*
923      * If Suite B, AES128 MUST use P-256 and AES256 MUST use P-384, no other
924      * curves permitted.
925      */
926     if (tls1_suiteb(s)) {
927         /* Curve to check determined by ciphersuite */
928         if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)
929             curve_id[1] = TLSEXT_curve_P_256;
930         else if (cid == TLS1_CK_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384)
931             curve_id[1] = TLSEXT_curve_P_384;
932         else
933             return 0;
934         curve_id[0] = 0;
935         /* Check this curve is acceptable */
936         if (!tls1_check_ec_key(s, curve_id, NULL))
937             return 0;
938         /* If auto or setting curve from callback assume OK */
939         if (s->cert->ecdh_tmp_auto || s->cert->ecdh_tmp_cb)
940             return 1;
941         /* Otherwise check curve is acceptable */
942         else {
943             unsigned char curve_tmp[2];
944             if (!ec)
945                 return 0;
946             if (!tls1_set_ec_id(curve_tmp, NULL, ec))
947                 return 0;
948             if (!curve_tmp[0] || curve_tmp[1] == curve_id[1])
949                 return 1;
950             return 0;
951         }
952
953     }
954     if (s->cert->ecdh_tmp_auto) {
955         /* Need a shared curve */
956         if (tls1_shared_curve(s, 0))
957             return 1;
958         else
959             return 0;
960     }
961     if (!ec) {
962         if (s->cert->ecdh_tmp_cb)
963             return 1;
964         else
965             return 0;
966     }
967     if (!tls1_set_ec_id(curve_id, NULL, ec))
968         return 0;
969 /* Set this to allow use of invalid curves for testing */
970 #  if 0
971     return 1;
972 #  else
973     return tls1_check_ec_key(s, curve_id, NULL);
974 #  endif
975 }
976 # endif                         /* OPENSSL_NO_ECDH */
977
978 #else
979
980 static int tls1_check_cert_param(SSL *s, X509 *x, int set_ee_md)
981 {
982     return 1;
983 }
984
985 #endif                          /* OPENSSL_NO_EC */
986
987 #ifndef OPENSSL_NO_TLSEXT
988
989 /*
990  * List of supported signature algorithms and hashes. Should make this
991  * customisable at some point, for now include everything we support.
992  */
993
994 # ifdef OPENSSL_NO_RSA
995 #  define tlsext_sigalg_rsa(md) /* */
996 # else
997 #  define tlsext_sigalg_rsa(md) md, TLSEXT_signature_rsa,
998 # endif
999
1000 # ifdef OPENSSL_NO_DSA
1001 #  define tlsext_sigalg_dsa(md) /* */
1002 # else
1003 #  define tlsext_sigalg_dsa(md) md, TLSEXT_signature_dsa,
1004 # endif
1005
1006 # ifdef OPENSSL_NO_ECDSA
1007 #  define tlsext_sigalg_ecdsa(md)
1008                                 /* */
1009 # else
1010 #  define tlsext_sigalg_ecdsa(md) md, TLSEXT_signature_ecdsa,
1011 # endif
1012
1013 # define tlsext_sigalg(md) \
1014                 tlsext_sigalg_rsa(md) \
1015                 tlsext_sigalg_dsa(md) \
1016                 tlsext_sigalg_ecdsa(md)
1017
1018 static unsigned char tls12_sigalgs[] = {
1019 # ifndef OPENSSL_NO_SHA512
1020     tlsext_sigalg(TLSEXT_hash_sha512)
1021         tlsext_sigalg(TLSEXT_hash_sha384)
1022 # endif
1023 # ifndef OPENSSL_NO_SHA256
1024         tlsext_sigalg(TLSEXT_hash_sha256)
1025         tlsext_sigalg(TLSEXT_hash_sha224)
1026 # endif
1027 # ifndef OPENSSL_NO_SHA
1028         tlsext_sigalg(TLSEXT_hash_sha1)
1029 # endif
1030 };
1031
1032 # ifndef OPENSSL_NO_ECDSA
1033 static unsigned char suiteb_sigalgs[] = {
1034     tlsext_sigalg_ecdsa(TLSEXT_hash_sha256)
1035         tlsext_sigalg_ecdsa(TLSEXT_hash_sha384)
1036 };
1037 # endif
1038 size_t tls12_get_psigalgs(SSL *s, const unsigned char **psigs)
1039 {
1040     /*
1041      * If Suite B mode use Suite B sigalgs only, ignore any other
1042      * preferences.
1043      */
1044 # ifndef OPENSSL_NO_EC
1045     switch (tls1_suiteb(s)) {
1046     case SSL_CERT_FLAG_SUITEB_128_LOS:
1047         *psigs = suiteb_sigalgs;
1048         return sizeof(suiteb_sigalgs);
1049
1050     case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
1051         *psigs = suiteb_sigalgs;
1052         return 2;
1053
1054     case SSL_CERT_FLAG_SUITEB_192_LOS:
1055         *psigs = suiteb_sigalgs + 2;
1056         return 2;
1057     }
1058 # endif
1059     /* If server use client authentication sigalgs if not NULL */
1060     if (s->server && s->cert->client_sigalgs) {
1061         *psigs = s->cert->client_sigalgs;
1062         return s->cert->client_sigalgslen;
1063     } else if (s->cert->conf_sigalgs) {
1064         *psigs = s->cert->conf_sigalgs;
1065         return s->cert->conf_sigalgslen;
1066     } else {
1067         *psigs = tls12_sigalgs;
1068         return sizeof(tls12_sigalgs);
1069     }
1070 }
1071
1072 /*
1073  * Check signature algorithm is consistent with sent supported signature
1074  * algorithms and if so return relevant digest.
1075  */
1076 int tls12_check_peer_sigalg(const EVP_MD **pmd, SSL *s,
1077                             const unsigned char *sig, EVP_PKEY *pkey)
1078 {
1079     const unsigned char *sent_sigs;
1080     size_t sent_sigslen, i;
1081     int sigalg = tls12_get_sigid(pkey);
1082     /* Should never happen */
1083     if (sigalg == -1)
1084         return -1;
1085     /* Check key type is consistent with signature */
1086     if (sigalg != (int)sig[1]) {
1087         SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_WRONG_SIGNATURE_TYPE);
1088         return 0;
1089     }
1090 # ifndef OPENSSL_NO_EC
1091     if (pkey->type == EVP_PKEY_EC) {
1092         unsigned char curve_id[2], comp_id;
1093         /* Check compression and curve matches extensions */
1094         if (!tls1_set_ec_id(curve_id, &comp_id, pkey->pkey.ec))
1095             return 0;
1096         if (!s->server && !tls1_check_ec_key(s, curve_id, &comp_id)) {
1097             SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_WRONG_CURVE);
1098             return 0;
1099         }
1100         /* If Suite B only P-384+SHA384 or P-256+SHA-256 allowed */
1101         if (tls1_suiteb(s)) {
1102             if (curve_id[0])
1103                 return 0;
1104             if (curve_id[1] == TLSEXT_curve_P_256) {
1105                 if (sig[0] != TLSEXT_hash_sha256) {
1106                     SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,
1107                            SSL_R_ILLEGAL_SUITEB_DIGEST);
1108                     return 0;
1109                 }
1110             } else if (curve_id[1] == TLSEXT_curve_P_384) {
1111                 if (sig[0] != TLSEXT_hash_sha384) {
1112                     SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG,
1113                            SSL_R_ILLEGAL_SUITEB_DIGEST);
1114                     return 0;
1115                 }
1116             } else
1117                 return 0;
1118         }
1119     } else if (tls1_suiteb(s))
1120         return 0;
1121 # endif
1122
1123     /* Check signature matches a type we sent */
1124     sent_sigslen = tls12_get_psigalgs(s, &sent_sigs);
1125     for (i = 0; i < sent_sigslen; i += 2, sent_sigs += 2) {
1126         if (sig[0] == sent_sigs[0] && sig[1] == sent_sigs[1])
1127             break;
1128     }
1129     /* Allow fallback to SHA1 if not strict mode */
1130     if (i == sent_sigslen
1131         && (sig[0] != TLSEXT_hash_sha1
1132             || s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT)) {
1133         SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_WRONG_SIGNATURE_TYPE);
1134         return 0;
1135     }
1136     *pmd = tls12_get_hash(sig[0]);
1137     if (*pmd == NULL) {
1138         SSLerr(SSL_F_TLS12_CHECK_PEER_SIGALG, SSL_R_UNKNOWN_DIGEST);
1139         return 0;
1140     }
1141     /*
1142      * Store the digest used so applications can retrieve it if they wish.
1143      */
1144     if (s->session && s->session->sess_cert)
1145         s->session->sess_cert->peer_key->digest = *pmd;
1146     return 1;
1147 }
1148
1149 /*
1150  * Get a mask of disabled algorithms: an algorithm is disabled if it isn't
1151  * supported or doesn't appear in supported signature algorithms. Unlike
1152  * ssl_cipher_get_disabled this applies to a specific session and not global
1153  * settings.
1154  */
1155 void ssl_set_client_disabled(SSL *s)
1156 {
1157     CERT *c = s->cert;
1158     const unsigned char *sigalgs;
1159     size_t i, sigalgslen;
1160     int have_rsa = 0, have_dsa = 0, have_ecdsa = 0;
1161     c->mask_a = 0;
1162     c->mask_k = 0;
1163     /* Don't allow TLS 1.2 only ciphers if we don't suppport them */
1164     if (!SSL_CLIENT_USE_TLS1_2_CIPHERS(s))
1165         c->mask_ssl = SSL_TLSV1_2;
1166     else
1167         c->mask_ssl = 0;
1168     /*
1169      * Now go through all signature algorithms seeing if we support any for
1170      * RSA, DSA, ECDSA. Do this for all versions not just TLS 1.2.
1171      */
1172     sigalgslen = tls12_get_psigalgs(s, &sigalgs);
1173     for (i = 0; i < sigalgslen; i += 2, sigalgs += 2) {
1174         switch (sigalgs[1]) {
1175 # ifndef OPENSSL_NO_RSA
1176         case TLSEXT_signature_rsa:
1177             have_rsa = 1;
1178             break;
1179 # endif
1180 # ifndef OPENSSL_NO_DSA
1181         case TLSEXT_signature_dsa:
1182             have_dsa = 1;
1183             break;
1184 # endif
1185 # ifndef OPENSSL_NO_ECDSA
1186         case TLSEXT_signature_ecdsa:
1187             have_ecdsa = 1;
1188             break;
1189 # endif
1190         }
1191     }
1192     /*
1193      * Disable auth and static DH if we don't include any appropriate
1194      * signature algorithms.
1195      */
1196     if (!have_rsa) {
1197         c->mask_a |= SSL_aRSA;
1198         c->mask_k |= SSL_kDHr | SSL_kECDHr;
1199     }
1200     if (!have_dsa) {
1201         c->mask_a |= SSL_aDSS;
1202         c->mask_k |= SSL_kDHd;
1203     }
1204     if (!have_ecdsa) {
1205         c->mask_a |= SSL_aECDSA;
1206         c->mask_k |= SSL_kECDHe;
1207     }
1208 # ifndef OPENSSL_NO_KRB5
1209     if (!kssl_tgt_is_available(s->kssl_ctx)) {
1210         c->mask_a |= SSL_aKRB5;
1211         c->mask_k |= SSL_kKRB5;
1212     }
1213 # endif
1214 # ifndef OPENSSL_NO_PSK
1215     /* with PSK there must be client callback set */
1216     if (!s->psk_client_callback) {
1217         c->mask_a |= SSL_aPSK;
1218         c->mask_k |= SSL_kPSK;
1219     }
1220 # endif                         /* OPENSSL_NO_PSK */
1221 # ifndef OPENSSL_NO_SRP
1222     if (!(s->srp_ctx.srp_Mask & SSL_kSRP)) {
1223         c->mask_a |= SSL_aSRP;
1224         c->mask_k |= SSL_kSRP;
1225     }
1226 # endif
1227     c->valid = 1;
1228 }
1229
1230 unsigned char *ssl_add_clienthello_tlsext(SSL *s, unsigned char *buf,
1231                                           unsigned char *limit, int *al)
1232 {
1233     int extdatalen = 0;
1234     unsigned char *orig = buf;
1235     unsigned char *ret = buf;
1236 # ifndef OPENSSL_NO_EC
1237     /* See if we support any ECC ciphersuites */
1238     int using_ecc = 0;
1239     if (s->version >= TLS1_VERSION || SSL_IS_DTLS(s)) {
1240         int i;
1241         unsigned long alg_k, alg_a;
1242         STACK_OF(SSL_CIPHER) *cipher_stack = SSL_get_ciphers(s);
1243
1244         for (i = 0; i < sk_SSL_CIPHER_num(cipher_stack); i++) {
1245             SSL_CIPHER *c = sk_SSL_CIPHER_value(cipher_stack, i);
1246
1247             alg_k = c->algorithm_mkey;
1248             alg_a = c->algorithm_auth;
1249             if ((alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe)
1250                  || (alg_a & SSL_aECDSA))) {
1251                 using_ecc = 1;
1252                 break;
1253             }
1254         }
1255     }
1256 # endif
1257
1258     /* don't add extensions for SSLv3 unless doing secure renegotiation */
1259     if (s->client_version == SSL3_VERSION && !s->s3->send_connection_binding)
1260         return orig;
1261
1262     ret += 2;
1263
1264     if (ret >= limit)
1265         return NULL;            /* this really never occurs, but ... */
1266
1267     if (s->tlsext_hostname != NULL) {
1268         /* Add TLS extension servername to the Client Hello message */
1269         size_t size_str;
1270
1271         /*-
1272          * check for enough space.
1273          * 4 for the servername type and entension length
1274          * 2 for servernamelist length
1275          * 1 for the hostname type
1276          * 2 for hostname length
1277          * + hostname length
1278          */
1279         size_str = strlen(s->tlsext_hostname);
1280         if (CHECKLEN(ret, 9 + size_str, limit))
1281             return NULL;
1282
1283         /* extension type and length */
1284         s2n(TLSEXT_TYPE_server_name, ret);
1285         s2n(size_str + 5, ret);
1286
1287         /* length of servername list */
1288         s2n(size_str + 3, ret);
1289
1290         /* hostname type, length and hostname */
1291         *(ret++) = (unsigned char)TLSEXT_NAMETYPE_host_name;
1292         s2n(size_str, ret);
1293         memcpy(ret, s->tlsext_hostname, size_str);
1294         ret += size_str;
1295     }
1296
1297     /* Add RI if renegotiating */
1298     if (s->renegotiate) {
1299         int el;
1300
1301         if (!ssl_add_clienthello_renegotiate_ext(s, 0, &el, 0)) {
1302             SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1303             return NULL;
1304         }
1305
1306         if ((limit - ret - 4 - el) < 0)
1307             return NULL;
1308
1309         s2n(TLSEXT_TYPE_renegotiate, ret);
1310         s2n(el, ret);
1311
1312         if (!ssl_add_clienthello_renegotiate_ext(s, ret, &el, el)) {
1313             SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1314             return NULL;
1315         }
1316
1317         ret += el;
1318     }
1319 # ifndef OPENSSL_NO_SRP
1320     /* Add SRP username if there is one */
1321     if (s->srp_ctx.login != NULL) { /* Add TLS extension SRP username to the
1322                                      * Client Hello message */
1323
1324         size_t login_len = strlen(s->srp_ctx.login);
1325         if (login_len > 255 || login_len == 0) {
1326             SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1327             return NULL;
1328         }
1329
1330         /*-
1331          * check for enough space.
1332          * 4 for the srp type type and entension length
1333          * 1 for the srp user identity
1334          * + srp user identity length
1335          */
1336         if (CHECKLEN(ret, 5 + login_len, limit))
1337             return NULL;
1338
1339         /* fill in the extension */
1340         s2n(TLSEXT_TYPE_srp, ret);
1341         s2n(login_len + 1, ret);
1342         (*ret++) = (unsigned char)login_len;
1343         memcpy(ret, s->srp_ctx.login, login_len);
1344         ret += login_len;
1345     }
1346 # endif
1347
1348 # ifndef OPENSSL_NO_EC
1349     if (using_ecc) {
1350         /*
1351          * Add TLS extension ECPointFormats to the ClientHello message
1352          */
1353         const unsigned char *pcurves, *pformats;
1354         size_t num_curves, num_formats, curves_list_len;
1355
1356         tls1_get_formatlist(s, &pformats, &num_formats);
1357
1358         if (num_formats > 255) {
1359             SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1360             return NULL;
1361         }
1362         /*-
1363          * check for enough space.
1364          * 4 bytes for the ec point formats type and extension length
1365          * 1 byte for the length of the formats
1366          * + formats length
1367          */
1368         if (CHECKLEN(ret, 5 + num_formats, limit))
1369             return NULL;
1370
1371         s2n(TLSEXT_TYPE_ec_point_formats, ret);
1372         /* The point format list has 1-byte length. */
1373         s2n(num_formats + 1, ret);
1374         *(ret++) = (unsigned char)num_formats;
1375         memcpy(ret, pformats, num_formats);
1376         ret += num_formats;
1377
1378         /*
1379          * Add TLS extension EllipticCurves to the ClientHello message
1380          */
1381         pcurves = s->tlsext_ellipticcurvelist;
1382         if (!tls1_get_curvelist(s, 0, &pcurves, &num_curves))
1383             return NULL;
1384
1385         if (num_curves > 65532 / 2) {
1386             SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1387             return NULL;
1388         }
1389         curves_list_len = 2 * num_curves;
1390         /*-
1391          * check for enough space.
1392          * 4 bytes for the ec curves type and extension length
1393          * 2 bytes for the curve list length
1394          * + curve list length
1395          */
1396         if (CHECKLEN(ret, 6 + curves_list_len, limit))
1397             return NULL;
1398
1399         s2n(TLSEXT_TYPE_elliptic_curves, ret);
1400         s2n(curves_list_len + 2, ret);
1401         s2n(curves_list_len, ret);
1402         memcpy(ret, pcurves, curves_list_len);
1403         ret += curves_list_len;
1404     }
1405 # endif                         /* OPENSSL_NO_EC */
1406
1407     if (!(SSL_get_options(s) & SSL_OP_NO_TICKET)) {
1408         size_t ticklen;
1409         if (!s->new_session && s->session && s->session->tlsext_tick)
1410             ticklen = s->session->tlsext_ticklen;
1411         else if (s->session && s->tlsext_session_ticket &&
1412                  s->tlsext_session_ticket->data) {
1413             ticklen = s->tlsext_session_ticket->length;
1414             s->session->tlsext_tick = OPENSSL_malloc(ticklen);
1415             if (!s->session->tlsext_tick)
1416                 return NULL;
1417             memcpy(s->session->tlsext_tick,
1418                    s->tlsext_session_ticket->data, ticklen);
1419             s->session->tlsext_ticklen = ticklen;
1420         } else
1421             ticklen = 0;
1422         if (ticklen == 0 && s->tlsext_session_ticket &&
1423             s->tlsext_session_ticket->data == NULL)
1424             goto skip_ext;
1425         /*
1426          * Check for enough room 2 for extension type, 2 for len rest for
1427          * ticket
1428          */
1429         if (CHECKLEN(ret, 4 + ticklen, limit))
1430             return NULL;
1431         s2n(TLSEXT_TYPE_session_ticket, ret);
1432         s2n(ticklen, ret);
1433         if (ticklen > 0) {
1434             memcpy(ret, s->session->tlsext_tick, ticklen);
1435             ret += ticklen;
1436         }
1437     }
1438  skip_ext:
1439
1440     if (SSL_CLIENT_USE_SIGALGS(s)) {
1441         size_t salglen;
1442         const unsigned char *salg;
1443         salglen = tls12_get_psigalgs(s, &salg);
1444
1445         /*-
1446          * check for enough space.
1447          * 4 bytes for the sigalgs type and extension length
1448          * 2 bytes for the sigalg list length
1449          * + sigalg list length
1450          */
1451         if (CHECKLEN(ret, salglen + 6, limit))
1452             return NULL;
1453         s2n(TLSEXT_TYPE_signature_algorithms, ret);
1454         s2n(salglen + 2, ret);
1455         s2n(salglen, ret);
1456         memcpy(ret, salg, salglen);
1457         ret += salglen;
1458     }
1459 # ifdef TLSEXT_TYPE_opaque_prf_input
1460     if (s->s3->client_opaque_prf_input != NULL) {
1461         size_t col = s->s3->client_opaque_prf_input_len;
1462
1463         if ((long)(limit - ret - 6 - col < 0))
1464             return NULL;
1465         if (col > 0xFFFD)       /* can't happen */
1466             return NULL;
1467
1468         s2n(TLSEXT_TYPE_opaque_prf_input, ret);
1469         s2n(col + 2, ret);
1470         s2n(col, ret);
1471         memcpy(ret, s->s3->client_opaque_prf_input, col);
1472         ret += col;
1473     }
1474 # endif
1475
1476     if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp) {
1477         int i;
1478         size_t extlen, idlen;
1479         int lentmp;
1480         OCSP_RESPID *id;
1481
1482         idlen = 0;
1483         for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++) {
1484             id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
1485             lentmp = i2d_OCSP_RESPID(id, NULL);
1486             if (lentmp <= 0)
1487                 return NULL;
1488             idlen += (size_t)lentmp + 2;
1489         }
1490
1491         if (s->tlsext_ocsp_exts) {
1492             lentmp = i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, NULL);
1493             if (lentmp < 0)
1494                 return NULL;
1495             extlen = (size_t)lentmp;
1496         } else
1497             extlen = 0;
1498
1499         if (extlen + idlen > 0xFFF0)
1500             return NULL;
1501         /*
1502          * 2 bytes for status request type
1503          * 2 bytes for status request len
1504          * 1 byte for OCSP request type
1505          * 2 bytes for length of ids
1506          * 2 bytes for length of extensions
1507          * + length of ids
1508          * + length of extensions
1509          */
1510         if (CHECKLEN(ret, 9 + idlen + extlen, limit))
1511             return NULL;
1512
1513         s2n(TLSEXT_TYPE_status_request, ret);
1514         s2n(extlen + idlen + 5, ret);
1515         *(ret++) = TLSEXT_STATUSTYPE_ocsp;
1516         s2n(idlen, ret);
1517         for (i = 0; i < sk_OCSP_RESPID_num(s->tlsext_ocsp_ids); i++) {
1518             /* save position of id len */
1519             unsigned char *q = ret;
1520             id = sk_OCSP_RESPID_value(s->tlsext_ocsp_ids, i);
1521             /* skip over id len */
1522             ret += 2;
1523             lentmp = i2d_OCSP_RESPID(id, &ret);
1524             /* write id len */
1525             s2n(lentmp, q);
1526         }
1527         s2n(extlen, ret);
1528         if (extlen > 0)
1529             i2d_X509_EXTENSIONS(s->tlsext_ocsp_exts, &ret);
1530     }
1531 # ifndef OPENSSL_NO_HEARTBEATS
1532     /* Add Heartbeat extension */
1533
1534     /*-
1535      * check for enough space.
1536      * 4 bytes for the heartbeat ext type and extension length
1537      * 1 byte for the mode
1538      */
1539     if (CHECKLEN(ret, 5, limit))
1540         return NULL;
1541
1542     s2n(TLSEXT_TYPE_heartbeat, ret);
1543     s2n(1, ret);
1544     /*-
1545      * Set mode:
1546      * 1: peer may send requests
1547      * 2: peer not allowed to send requests
1548      */
1549     if (s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_RECV_REQUESTS)
1550         *(ret++) = SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
1551     else
1552         *(ret++) = SSL_TLSEXT_HB_ENABLED;
1553 # endif
1554
1555 # ifndef OPENSSL_NO_NEXTPROTONEG
1556     if (s->ctx->next_proto_select_cb && !s->s3->tmp.finish_md_len) {
1557         /*
1558          * The client advertises an emtpy extension to indicate its support
1559          * for Next Protocol Negotiation
1560          */
1561
1562         /*-
1563          * check for enough space.
1564          * 4 bytes for the NPN ext type and extension length
1565          */
1566         if (CHECKLEN(ret, 4, limit))
1567             return NULL;
1568         s2n(TLSEXT_TYPE_next_proto_neg, ret);
1569         s2n(0, ret);
1570     }
1571 # endif
1572
1573     if (s->alpn_client_proto_list && !s->s3->tmp.finish_md_len) {
1574         /*-
1575          * check for enough space.
1576          * 4 bytes for the ALPN type and extension length
1577          * 2 bytes for the ALPN protocol list length
1578          * + ALPN protocol list length
1579          */
1580         if (CHECKLEN(ret, 6 + s->alpn_client_proto_list_len, limit))
1581             return NULL;
1582         s2n(TLSEXT_TYPE_application_layer_protocol_negotiation, ret);
1583         s2n(2 + s->alpn_client_proto_list_len, ret);
1584         s2n(s->alpn_client_proto_list_len, ret);
1585         memcpy(ret, s->alpn_client_proto_list, s->alpn_client_proto_list_len);
1586         ret += s->alpn_client_proto_list_len;
1587         s->cert->alpn_sent = 1;
1588     }
1589 # ifndef OPENSSL_NO_SRTP
1590     if (SSL_IS_DTLS(s) && SSL_get_srtp_profiles(s)) {
1591         int el;
1592
1593         ssl_add_clienthello_use_srtp_ext(s, 0, &el, 0);
1594
1595         /*-
1596          * check for enough space.
1597          * 4 bytes for the SRTP type and extension length
1598          * + SRTP profiles length
1599          */
1600         if (CHECKLEN(ret, 4 + el, limit))
1601             return NULL;
1602
1603         s2n(TLSEXT_TYPE_use_srtp, ret);
1604         s2n(el, ret);
1605
1606         if (ssl_add_clienthello_use_srtp_ext(s, ret, &el, el)) {
1607             SSLerr(SSL_F_SSL_ADD_CLIENTHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1608             return NULL;
1609         }
1610         ret += el;
1611     }
1612 # endif
1613     custom_ext_init(&s->cert->cli_ext);
1614     /* Add custom TLS Extensions to ClientHello */
1615     if (!custom_ext_add(s, 0, &ret, limit, al))
1616         return NULL;
1617
1618     /*
1619      * Add padding to workaround bugs in F5 terminators. See
1620      * https://tools.ietf.org/html/draft-agl-tls-padding-03 NB: because this
1621      * code works out the length of all existing extensions it MUST always
1622      * appear last.
1623      */
1624     if (s->options & SSL_OP_TLSEXT_PADDING) {
1625         int hlen = ret - (unsigned char *)s->init_buf->data;
1626         /*
1627          * The code in s23_clnt.c to build ClientHello messages includes the
1628          * 5-byte record header in the buffer, while the code in s3_clnt.c
1629          * does not.
1630          */
1631         if (s->state == SSL23_ST_CW_CLNT_HELLO_A)
1632             hlen -= 5;
1633         if (hlen > 0xff && hlen < 0x200) {
1634             hlen = 0x200 - hlen;
1635             if (hlen >= 4)
1636                 hlen -= 4;
1637             else
1638                 hlen = 0;
1639
1640             /*-
1641              * check for enough space. Strictly speaking we know we've already
1642              * got enough space because to get here the message size is < 0x200,
1643              * but we know that we've allocated far more than that in the buffer
1644              * - but for consistency and robustness we're going to check anyway.
1645              *
1646              * 4 bytes for the padding type and extension length
1647              * + padding length
1648              */
1649             if (CHECKLEN(ret, 4 + hlen, limit))
1650                 return NULL;
1651             s2n(TLSEXT_TYPE_padding, ret);
1652             s2n(hlen, ret);
1653             memset(ret, 0, hlen);
1654             ret += hlen;
1655         }
1656     }
1657
1658     if ((extdatalen = ret - orig - 2) == 0)
1659         return orig;
1660
1661     s2n(extdatalen, orig);
1662     return ret;
1663 }
1664
1665 unsigned char *ssl_add_serverhello_tlsext(SSL *s, unsigned char *buf,
1666                                           unsigned char *limit, int *al)
1667 {
1668     int extdatalen = 0;
1669     unsigned char *orig = buf;
1670     unsigned char *ret = buf;
1671 # ifndef OPENSSL_NO_NEXTPROTONEG
1672     int next_proto_neg_seen;
1673 # endif
1674 # ifndef OPENSSL_NO_EC
1675     unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
1676     unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth;
1677     int using_ecc = (alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe))
1678         || (alg_a & SSL_aECDSA);
1679     using_ecc = using_ecc && (s->session->tlsext_ecpointformatlist != NULL);
1680 # endif
1681     /*
1682      * don't add extensions for SSLv3, unless doing secure renegotiation
1683      */
1684     if (s->version == SSL3_VERSION && !s->s3->send_connection_binding)
1685         return orig;
1686
1687     ret += 2;
1688     if (ret >= limit)
1689         return NULL;            /* this really never occurs, but ... */
1690
1691     if (!s->hit && s->servername_done == 1
1692         && s->session->tlsext_hostname != NULL) {
1693         if ((long)(limit - ret - 4) < 0)
1694             return NULL;
1695
1696         s2n(TLSEXT_TYPE_server_name, ret);
1697         s2n(0, ret);
1698     }
1699
1700     if (s->s3->send_connection_binding) {
1701         int el;
1702
1703         if (!ssl_add_serverhello_renegotiate_ext(s, 0, &el, 0)) {
1704             SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1705             return NULL;
1706         }
1707
1708         /*-
1709          * check for enough space.
1710          * 4 bytes for the reneg type and extension length
1711          * + reneg data length
1712          */
1713         if (CHECKLEN(ret, 4 + el, limit))
1714             return NULL;
1715
1716         s2n(TLSEXT_TYPE_renegotiate, ret);
1717         s2n(el, ret);
1718
1719         if (!ssl_add_serverhello_renegotiate_ext(s, ret, &el, el)) {
1720             SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1721             return NULL;
1722         }
1723
1724         ret += el;
1725     }
1726 # ifndef OPENSSL_NO_EC
1727     if (using_ecc) {
1728         const unsigned char *plist;
1729         size_t plistlen;
1730         /*
1731          * Add TLS extension ECPointFormats to the ServerHello message
1732          */
1733
1734         tls1_get_formatlist(s, &plist, &plistlen);
1735
1736         if (plistlen > 255) {
1737             SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1738             return NULL;
1739         }
1740
1741         /*-
1742          * check for enough space.
1743          * 4 bytes for the ec points format type and extension length
1744          * 1 byte for the points format list length
1745          * + length of points format list
1746          */
1747         if (CHECKLEN(ret, 5 + plistlen, limit))
1748             return NULL;
1749
1750         s2n(TLSEXT_TYPE_ec_point_formats, ret);
1751         s2n(plistlen + 1, ret);
1752         *(ret++) = (unsigned char)plistlen;
1753         memcpy(ret, plist, plistlen);
1754         ret += plistlen;
1755
1756     }
1757     /*
1758      * Currently the server should not respond with a SupportedCurves
1759      * extension
1760      */
1761 # endif                         /* OPENSSL_NO_EC */
1762
1763     if (s->tlsext_ticket_expected && !(SSL_get_options(s) & SSL_OP_NO_TICKET)) {
1764         /*-
1765          * check for enough space.
1766          * 4 bytes for the Ticket type and extension length
1767          */
1768         if (CHECKLEN(ret, 4, limit))
1769             return NULL;
1770         s2n(TLSEXT_TYPE_session_ticket, ret);
1771         s2n(0, ret);
1772     }
1773
1774     if (s->tlsext_status_expected) {
1775         /*-
1776          * check for enough space.
1777          * 4 bytes for the Status request type and extension length
1778          */
1779         if (CHECKLEN(ret, 4, limit))
1780             return NULL;
1781         s2n(TLSEXT_TYPE_status_request, ret);
1782         s2n(0, ret);
1783     }
1784 # ifdef TLSEXT_TYPE_opaque_prf_input
1785     if (s->s3->server_opaque_prf_input != NULL) {
1786         size_t sol = s->s3->server_opaque_prf_input_len;
1787
1788         if ((long)(limit - ret - 6 - sol) < 0)
1789             return NULL;
1790         if (sol > 0xFFFD)       /* can't happen */
1791             return NULL;
1792
1793         s2n(TLSEXT_TYPE_opaque_prf_input, ret);
1794         s2n(sol + 2, ret);
1795         s2n(sol, ret);
1796         memcpy(ret, s->s3->server_opaque_prf_input, sol);
1797         ret += sol;
1798     }
1799 # endif
1800
1801 # ifndef OPENSSL_NO_SRTP
1802     if (SSL_IS_DTLS(s) && s->srtp_profile) {
1803         int el;
1804
1805         ssl_add_serverhello_use_srtp_ext(s, 0, &el, 0);
1806
1807         /*-
1808          * check for enough space.
1809          * 4 bytes for the SRTP profiles type and extension length
1810          * + length of the SRTP profiles list
1811          */
1812         if (CHECKLEN(ret, 4 + el, limit))
1813             return NULL;
1814
1815         s2n(TLSEXT_TYPE_use_srtp, ret);
1816         s2n(el, ret);
1817
1818         if (ssl_add_serverhello_use_srtp_ext(s, ret, &el, el)) {
1819             SSLerr(SSL_F_SSL_ADD_SERVERHELLO_TLSEXT, ERR_R_INTERNAL_ERROR);
1820             return NULL;
1821         }
1822         ret += el;
1823     }
1824 # endif
1825
1826     if (((s->s3->tmp.new_cipher->id & 0xFFFF) == 0x80
1827          || (s->s3->tmp.new_cipher->id & 0xFFFF) == 0x81)
1828         && (SSL_get_options(s) & SSL_OP_CRYPTOPRO_TLSEXT_BUG)) {
1829         const unsigned char cryptopro_ext[36] = {
1830             0xfd, 0xe8,         /* 65000 */
1831             0x00, 0x20,         /* 32 bytes length */
1832             0x30, 0x1e, 0x30, 0x08, 0x06, 0x06, 0x2a, 0x85,
1833             0x03, 0x02, 0x02, 0x09, 0x30, 0x08, 0x06, 0x06,
1834             0x2a, 0x85, 0x03, 0x02, 0x02, 0x16, 0x30, 0x08,
1835             0x06, 0x06, 0x2a, 0x85, 0x03, 0x02, 0x02, 0x17
1836         };
1837
1838         /* check for enough space. */
1839         if (CHECKLEN(ret, sizeof(cryptopro_ext), limit))
1840             return NULL;
1841         memcpy(ret, cryptopro_ext, sizeof(cryptopro_ext));
1842         ret += sizeof(cryptopro_ext);
1843
1844     }
1845 # ifndef OPENSSL_NO_HEARTBEATS
1846     /* Add Heartbeat extension if we've received one */
1847     if (s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) {
1848         /*-
1849          * check for enough space.
1850          * 4 bytes for the Heartbeat type and extension length
1851          * 1 byte for the mode
1852          */
1853         if (CHECKLEN(ret, 5, limit))
1854             return NULL;
1855         s2n(TLSEXT_TYPE_heartbeat, ret);
1856         s2n(1, ret);
1857         /*-
1858          * Set mode:
1859          * 1: peer may send requests
1860          * 2: peer not allowed to send requests
1861          */
1862         if (s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_RECV_REQUESTS)
1863             *(ret++) = SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
1864         else
1865             *(ret++) = SSL_TLSEXT_HB_ENABLED;
1866
1867     }
1868 # endif
1869
1870 # ifndef OPENSSL_NO_NEXTPROTONEG
1871     next_proto_neg_seen = s->s3->next_proto_neg_seen;
1872     s->s3->next_proto_neg_seen = 0;
1873     if (next_proto_neg_seen && s->ctx->next_protos_advertised_cb) {
1874         const unsigned char *npa;
1875         unsigned int npalen;
1876         int r;
1877
1878         r = s->ctx->next_protos_advertised_cb(s, &npa, &npalen,
1879                                               s->
1880                                               ctx->next_protos_advertised_cb_arg);
1881         if (r == SSL_TLSEXT_ERR_OK) {
1882             /*-
1883              * check for enough space.
1884              * 4 bytes for the NPN type and extension length
1885              * + length of protocols list
1886              */
1887             if (CHECKLEN(ret, 4 + npalen, limit))
1888                 return NULL;
1889             s2n(TLSEXT_TYPE_next_proto_neg, ret);
1890             s2n(npalen, ret);
1891             memcpy(ret, npa, npalen);
1892             ret += npalen;
1893             s->s3->next_proto_neg_seen = 1;
1894         }
1895     }
1896 # endif
1897     if (!custom_ext_add(s, 1, &ret, limit, al))
1898         return NULL;
1899
1900     if (s->s3->alpn_selected) {
1901         const unsigned char *selected = s->s3->alpn_selected;
1902         size_t len = s->s3->alpn_selected_len;
1903
1904         /*-
1905          * check for enough space.
1906          * 4 bytes for the ALPN type and extension length
1907          * 2 bytes for ALPN data length
1908          * 1 byte for selected protocol length
1909          * + length of the selected protocol
1910          */
1911         if (CHECKLEN(ret, 7 + len, limit))
1912             return NULL;
1913         s2n(TLSEXT_TYPE_application_layer_protocol_negotiation, ret);
1914         s2n(3 + len, ret);
1915         s2n(1 + len, ret);
1916         *ret++ = len;
1917         memcpy(ret, selected, len);
1918         ret += len;
1919     }
1920
1921     if ((extdatalen = ret - orig - 2) == 0)
1922         return orig;
1923
1924     s2n(extdatalen, orig);
1925     return ret;
1926 }
1927
1928 # ifndef OPENSSL_NO_EC
1929 /*-
1930  * ssl_check_for_safari attempts to fingerprint Safari using OS X
1931  * SecureTransport using the TLS extension block in |d|, of length |n|.
1932  * Safari, since 10.6, sends exactly these extensions, in this order:
1933  *   SNI,
1934  *   elliptic_curves
1935  *   ec_point_formats
1936  *
1937  * We wish to fingerprint Safari because they broke ECDHE-ECDSA support in 10.8,
1938  * but they advertise support. So enabling ECDHE-ECDSA ciphers breaks them.
1939  * Sadly we cannot differentiate 10.6, 10.7 and 10.8.4 (which work), from
1940  * 10.8..10.8.3 (which don't work).
1941  */
1942 static void ssl_check_for_safari(SSL *s, const unsigned char *data,
1943                                  const unsigned char *limit)
1944 {
1945     unsigned short type, size;
1946     static const unsigned char kSafariExtensionsBlock[] = {
1947         0x00, 0x0a,             /* elliptic_curves extension */
1948         0x00, 0x08,             /* 8 bytes */
1949         0x00, 0x06,             /* 6 bytes of curve ids */
1950         0x00, 0x17,             /* P-256 */
1951         0x00, 0x18,             /* P-384 */
1952         0x00, 0x19,             /* P-521 */
1953
1954         0x00, 0x0b,             /* ec_point_formats */
1955         0x00, 0x02,             /* 2 bytes */
1956         0x01,                   /* 1 point format */
1957         0x00,                   /* uncompressed */
1958     };
1959
1960     /* The following is only present in TLS 1.2 */
1961     static const unsigned char kSafariTLS12ExtensionsBlock[] = {
1962         0x00, 0x0d,             /* signature_algorithms */
1963         0x00, 0x0c,             /* 12 bytes */
1964         0x00, 0x0a,             /* 10 bytes */
1965         0x05, 0x01,             /* SHA-384/RSA */
1966         0x04, 0x01,             /* SHA-256/RSA */
1967         0x02, 0x01,             /* SHA-1/RSA */
1968         0x04, 0x03,             /* SHA-256/ECDSA */
1969         0x02, 0x03,             /* SHA-1/ECDSA */
1970     };
1971
1972     if (limit - data <= 2)
1973         return;
1974     data += 2;
1975
1976     if (limit - data < 4)
1977         return;
1978     n2s(data, type);
1979     n2s(data, size);
1980
1981     if (type != TLSEXT_TYPE_server_name)
1982         return;
1983
1984     if (limit - data < size)
1985         return;
1986     data += size;
1987
1988     if (TLS1_get_client_version(s) >= TLS1_2_VERSION) {
1989         const size_t len1 = sizeof(kSafariExtensionsBlock);
1990         const size_t len2 = sizeof(kSafariTLS12ExtensionsBlock);
1991
1992         if (limit - data != (int)(len1 + len2))
1993             return;
1994         if (memcmp(data, kSafariExtensionsBlock, len1) != 0)
1995             return;
1996         if (memcmp(data + len1, kSafariTLS12ExtensionsBlock, len2) != 0)
1997             return;
1998     } else {
1999         const size_t len = sizeof(kSafariExtensionsBlock);
2000
2001         if (limit - data != (int)(len))
2002             return;
2003         if (memcmp(data, kSafariExtensionsBlock, len) != 0)
2004             return;
2005     }
2006
2007     s->s3->is_probably_safari = 1;
2008 }
2009 # endif                         /* !OPENSSL_NO_EC */
2010
2011 /*
2012  * tls1_alpn_handle_client_hello is called to save the ALPN extension in a
2013  * ClientHello.  data: the contents of the extension, not including the type
2014  * and length.  data_len: the number of bytes in |data| al: a pointer to the
2015  * alert value to send in the event of a non-zero return.  returns: 0 on
2016  * success.
2017  */
2018 static int tls1_alpn_handle_client_hello(SSL *s, const unsigned char *data,
2019                                          unsigned data_len, int *al)
2020 {
2021     unsigned i;
2022     unsigned proto_len;
2023
2024     if (data_len < 2)
2025         goto parse_error;
2026
2027     /*
2028      * data should contain a uint16 length followed by a series of 8-bit,
2029      * length-prefixed strings.
2030      */
2031     i = ((unsigned)data[0]) << 8 | ((unsigned)data[1]);
2032     data_len -= 2;
2033     data += 2;
2034     if (data_len != i)
2035         goto parse_error;
2036
2037     if (data_len < 2)
2038         goto parse_error;
2039
2040     for (i = 0; i < data_len;) {
2041         proto_len = data[i];
2042         i++;
2043
2044         if (proto_len == 0)
2045             goto parse_error;
2046
2047         if (i + proto_len < i || i + proto_len > data_len)
2048             goto parse_error;
2049
2050         i += proto_len;
2051     }
2052
2053     if (s->cert->alpn_proposed != NULL)
2054         OPENSSL_free(s->cert->alpn_proposed);
2055     s->cert->alpn_proposed = OPENSSL_malloc(data_len);
2056     if (s->cert->alpn_proposed == NULL) {
2057         *al = SSL_AD_INTERNAL_ERROR;
2058         return -1;
2059     }
2060     memcpy(s->cert->alpn_proposed, data, data_len);
2061     s->cert->alpn_proposed_len = data_len;
2062     return 0;
2063
2064  parse_error:
2065     *al = SSL_AD_DECODE_ERROR;
2066     return -1;
2067 }
2068
2069 /*
2070  * Process the ALPN extension in a ClientHello.
2071  * ret: a pointer to the TLSEXT return value: SSL_TLSEXT_ERR_*
2072  * al: a pointer to the alert value to send in the event of a failure.
2073  * returns 1 on success, 0 on failure: al/ret set only on failure
2074  */
2075 static int tls1_alpn_handle_client_hello_late(SSL *s, int *ret, int *al)
2076 {
2077     const unsigned char *selected = NULL;
2078     unsigned char selected_len = 0;
2079
2080     if (s->ctx->alpn_select_cb != NULL && s->cert->alpn_proposed != NULL) {
2081         int r = s->ctx->alpn_select_cb(s, &selected, &selected_len,
2082                                        s->cert->alpn_proposed,
2083                                        s->cert->alpn_proposed_len,
2084                                        s->ctx->alpn_select_cb_arg);
2085
2086         if (r == SSL_TLSEXT_ERR_OK) {
2087             OPENSSL_free(s->s3->alpn_selected);
2088             s->s3->alpn_selected = OPENSSL_malloc(selected_len);
2089             if (s->s3->alpn_selected == NULL) {
2090                 *al = SSL_AD_INTERNAL_ERROR;
2091                 *ret = SSL_TLSEXT_ERR_ALERT_FATAL;
2092                 return 0;
2093             }
2094             memcpy(s->s3->alpn_selected, selected, selected_len);
2095             s->s3->alpn_selected_len = selected_len;
2096 # ifndef OPENSSL_NO_NEXTPROTONEG
2097             /* ALPN takes precedence over NPN. */
2098             s->s3->next_proto_neg_seen = 0;
2099 # endif
2100         }
2101     }
2102
2103     return 1;
2104 }
2105
2106 static int ssl_scan_clienthello_tlsext(SSL *s, unsigned char **p,
2107                                        unsigned char *limit, int *al)
2108 {
2109     unsigned short type;
2110     unsigned short size;
2111     unsigned short len;
2112     unsigned char *data = *p;
2113     int renegotiate_seen = 0;
2114
2115     s->servername_done = 0;
2116     s->tlsext_status_type = -1;
2117 # ifndef OPENSSL_NO_NEXTPROTONEG
2118     s->s3->next_proto_neg_seen = 0;
2119 # endif
2120
2121     if (s->s3->alpn_selected) {
2122         OPENSSL_free(s->s3->alpn_selected);
2123         s->s3->alpn_selected = NULL;
2124     }
2125     s->s3->alpn_selected_len = 0;
2126     if (s->cert->alpn_proposed) {
2127         OPENSSL_free(s->cert->alpn_proposed);
2128         s->cert->alpn_proposed = NULL;
2129     }
2130     s->cert->alpn_proposed_len = 0;
2131 # ifndef OPENSSL_NO_HEARTBEATS
2132     s->tlsext_heartbeat &= ~(SSL_TLSEXT_HB_ENABLED |
2133                              SSL_TLSEXT_HB_DONT_SEND_REQUESTS);
2134 # endif
2135
2136 # ifndef OPENSSL_NO_EC
2137     if (s->options & SSL_OP_SAFARI_ECDHE_ECDSA_BUG)
2138         ssl_check_for_safari(s, data, limit);
2139 # endif                         /* !OPENSSL_NO_EC */
2140
2141     /* Clear any signature algorithms extension received */
2142     if (s->cert->peer_sigalgs) {
2143         OPENSSL_free(s->cert->peer_sigalgs);
2144         s->cert->peer_sigalgs = NULL;
2145     }
2146 # ifndef OPENSSL_NO_SRP
2147     if (s->srp_ctx.login != NULL) {
2148         OPENSSL_free(s->srp_ctx.login);
2149         s->srp_ctx.login = NULL;
2150     }
2151 # endif
2152
2153     s->srtp_profile = NULL;
2154
2155     if (data == limit)
2156         goto ri_check;
2157
2158     if (limit - data < 2)
2159         goto err;
2160
2161     n2s(data, len);
2162
2163     if (limit - data != len)
2164         goto err;
2165
2166     while (limit - data >= 4) {
2167         n2s(data, type);
2168         n2s(data, size);
2169
2170         if (limit - data < size)
2171             goto err;
2172 # if 0
2173         fprintf(stderr, "Received extension type %d size %d\n", type, size);
2174 # endif
2175         if (s->tlsext_debug_cb)
2176             s->tlsext_debug_cb(s, 0, type, data, size, s->tlsext_debug_arg);
2177 /*-
2178  * The servername extension is treated as follows:
2179  *
2180  * - Only the hostname type is supported with a maximum length of 255.
2181  * - The servername is rejected if too long or if it contains zeros,
2182  *   in which case an fatal alert is generated.
2183  * - The servername field is maintained together with the session cache.
2184  * - When a session is resumed, the servername call back invoked in order
2185  *   to allow the application to position itself to the right context.
2186  * - The servername is acknowledged if it is new for a session or when
2187  *   it is identical to a previously used for the same session.
2188  *   Applications can control the behaviour.  They can at any time
2189  *   set a 'desirable' servername for a new SSL object. This can be the
2190  *   case for example with HTTPS when a Host: header field is received and
2191  *   a renegotiation is requested. In this case, a possible servername
2192  *   presented in the new client hello is only acknowledged if it matches
2193  *   the value of the Host: field.
2194  * - Applications must  use SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION
2195  *   if they provide for changing an explicit servername context for the
2196  *   session, i.e. when the session has been established with a servername
2197  *   extension.
2198  * - On session reconnect, the servername extension may be absent.
2199  *
2200  */
2201
2202         if (type == TLSEXT_TYPE_server_name) {
2203             unsigned char *sdata;
2204             int servname_type;
2205             int dsize;
2206
2207             if (size < 2)
2208                 goto err;
2209             n2s(data, dsize);
2210             size -= 2;
2211             if (dsize > size)
2212                 goto err;
2213
2214             sdata = data;
2215             while (dsize > 3) {
2216                 servname_type = *(sdata++);
2217                 n2s(sdata, len);
2218                 dsize -= 3;
2219
2220                 if (len > dsize)
2221                     goto err;
2222
2223                 if (s->servername_done == 0)
2224                     switch (servname_type) {
2225                     case TLSEXT_NAMETYPE_host_name:
2226                         if (!s->hit) {
2227                             if (s->session->tlsext_hostname)
2228                                 goto err;
2229
2230                             if (len > TLSEXT_MAXLEN_host_name) {
2231                                 *al = TLS1_AD_UNRECOGNIZED_NAME;
2232                                 return 0;
2233                             }
2234                             if ((s->session->tlsext_hostname =
2235                                  OPENSSL_malloc(len + 1)) == NULL) {
2236                                 *al = TLS1_AD_INTERNAL_ERROR;
2237                                 return 0;
2238                             }
2239                             memcpy(s->session->tlsext_hostname, sdata, len);
2240                             s->session->tlsext_hostname[len] = '\0';
2241                             if (strlen(s->session->tlsext_hostname) != len) {
2242                                 OPENSSL_free(s->session->tlsext_hostname);
2243                                 s->session->tlsext_hostname = NULL;
2244                                 *al = TLS1_AD_UNRECOGNIZED_NAME;
2245                                 return 0;
2246                             }
2247                             s->servername_done = 1;
2248
2249                         } else
2250                             s->servername_done = s->session->tlsext_hostname
2251                                 && strlen(s->session->tlsext_hostname) == len
2252                                 && strncmp(s->session->tlsext_hostname,
2253                                            (char *)sdata, len) == 0;
2254
2255                         break;
2256
2257                     default:
2258                         break;
2259                     }
2260
2261                 dsize -= len;
2262             }
2263             if (dsize != 0)
2264                 goto err;
2265
2266         }
2267 # ifndef OPENSSL_NO_SRP
2268         else if (type == TLSEXT_TYPE_srp) {
2269             if (size == 0 || ((len = data[0])) != (size - 1))
2270                 goto err;
2271             if (s->srp_ctx.login != NULL)
2272                 goto err;
2273             if ((s->srp_ctx.login = OPENSSL_malloc(len + 1)) == NULL)
2274                 return -1;
2275             memcpy(s->srp_ctx.login, &data[1], len);
2276             s->srp_ctx.login[len] = '\0';
2277
2278             if (strlen(s->srp_ctx.login) != len)
2279                 goto err;
2280         }
2281 # endif
2282
2283 # ifndef OPENSSL_NO_EC
2284         else if (type == TLSEXT_TYPE_ec_point_formats) {
2285             unsigned char *sdata = data;
2286             int ecpointformatlist_length = *(sdata++);
2287
2288             if (ecpointformatlist_length != size - 1 ||
2289                 ecpointformatlist_length < 1)
2290                 goto err;
2291             if (!s->hit) {
2292                 if (s->session->tlsext_ecpointformatlist) {
2293                     OPENSSL_free(s->session->tlsext_ecpointformatlist);
2294                     s->session->tlsext_ecpointformatlist = NULL;
2295                 }
2296                 s->session->tlsext_ecpointformatlist_length = 0;
2297                 if ((s->session->tlsext_ecpointformatlist =
2298                      OPENSSL_malloc(ecpointformatlist_length)) == NULL) {
2299                     *al = TLS1_AD_INTERNAL_ERROR;
2300                     return 0;
2301                 }
2302                 s->session->tlsext_ecpointformatlist_length =
2303                     ecpointformatlist_length;
2304                 memcpy(s->session->tlsext_ecpointformatlist, sdata,
2305                        ecpointformatlist_length);
2306             }
2307 #  if 0
2308             fprintf(stderr,
2309                     "ssl_parse_clienthello_tlsext s->session->tlsext_ecpointformatlist (length=%i) ",
2310                     s->session->tlsext_ecpointformatlist_length);
2311             sdata = s->session->tlsext_ecpointformatlist;
2312             for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++)
2313                 fprintf(stderr, "%i ", *(sdata++));
2314             fprintf(stderr, "\n");
2315 #  endif
2316         } else if (type == TLSEXT_TYPE_elliptic_curves) {
2317             unsigned char *sdata = data;
2318             int ellipticcurvelist_length = (*(sdata++) << 8);
2319             ellipticcurvelist_length += (*(sdata++));
2320
2321             if (ellipticcurvelist_length != size - 2 ||
2322                 ellipticcurvelist_length < 1 ||
2323                 /* Each NamedCurve is 2 bytes. */
2324                 ellipticcurvelist_length & 1)
2325                     goto err;
2326
2327             if (!s->hit) {
2328                 if (s->session->tlsext_ellipticcurvelist)
2329                     goto err;
2330
2331                 s->session->tlsext_ellipticcurvelist_length = 0;
2332                 if ((s->session->tlsext_ellipticcurvelist =
2333                      OPENSSL_malloc(ellipticcurvelist_length)) == NULL) {
2334                     *al = TLS1_AD_INTERNAL_ERROR;
2335                     return 0;
2336                 }
2337                 s->session->tlsext_ellipticcurvelist_length =
2338                     ellipticcurvelist_length;
2339                 memcpy(s->session->tlsext_ellipticcurvelist, sdata,
2340                        ellipticcurvelist_length);
2341             }
2342 #  if 0
2343             fprintf(stderr,
2344                     "ssl_parse_clienthello_tlsext s->session->tlsext_ellipticcurvelist (length=%i) ",
2345                     s->session->tlsext_ellipticcurvelist_length);
2346             sdata = s->session->tlsext_ellipticcurvelist;
2347             for (i = 0; i < s->session->tlsext_ellipticcurvelist_length; i++)
2348                 fprintf(stderr, "%i ", *(sdata++));
2349             fprintf(stderr, "\n");
2350 #  endif
2351         }
2352 # endif                         /* OPENSSL_NO_EC */
2353 # ifdef TLSEXT_TYPE_opaque_prf_input
2354         else if (type == TLSEXT_TYPE_opaque_prf_input) {
2355             unsigned char *sdata = data;
2356
2357             if (size < 2) {
2358                 *al = SSL_AD_DECODE_ERROR;
2359                 return 0;
2360             }
2361             n2s(sdata, s->s3->client_opaque_prf_input_len);
2362             if (s->s3->client_opaque_prf_input_len != size - 2) {
2363                 *al = SSL_AD_DECODE_ERROR;
2364                 return 0;
2365             }
2366
2367             if (s->s3->client_opaque_prf_input != NULL) {
2368                 /* shouldn't really happen */
2369                 OPENSSL_free(s->s3->client_opaque_prf_input);
2370             }
2371
2372             /* dummy byte just to get non-NULL */
2373             if (s->s3->client_opaque_prf_input_len == 0)
2374                 s->s3->client_opaque_prf_input = OPENSSL_malloc(1);
2375             else
2376                 s->s3->client_opaque_prf_input =
2377                     BUF_memdup(sdata, s->s3->client_opaque_prf_input_len);
2378             if (s->s3->client_opaque_prf_input == NULL) {
2379                 *al = TLS1_AD_INTERNAL_ERROR;
2380                 return 0;
2381             }
2382         }
2383 # endif
2384         else if (type == TLSEXT_TYPE_session_ticket) {
2385             if (s->tls_session_ticket_ext_cb &&
2386                 !s->tls_session_ticket_ext_cb(s, data, size,
2387                                               s->tls_session_ticket_ext_cb_arg))
2388             {
2389                 *al = TLS1_AD_INTERNAL_ERROR;
2390                 return 0;
2391             }
2392         } else if (type == TLSEXT_TYPE_renegotiate) {
2393             if (!ssl_parse_clienthello_renegotiate_ext(s, data, size, al))
2394                 return 0;
2395             renegotiate_seen = 1;
2396         } else if (type == TLSEXT_TYPE_signature_algorithms) {
2397             int dsize;
2398             if (s->cert->peer_sigalgs || size < 2)
2399                 goto err;
2400             n2s(data, dsize);
2401             size -= 2;
2402             if (dsize != size || dsize & 1 || !dsize)
2403                 goto err;
2404             if (!tls1_save_sigalgs(s, data, dsize))
2405                 goto err;
2406         } else if (type == TLSEXT_TYPE_status_request) {
2407
2408             if (size < 5)
2409                 goto err;
2410
2411             s->tlsext_status_type = *data++;
2412             size--;
2413             if (s->tlsext_status_type == TLSEXT_STATUSTYPE_ocsp) {
2414                 const unsigned char *sdata;
2415                 int dsize;
2416                 /* Read in responder_id_list */
2417                 n2s(data, dsize);
2418                 size -= 2;
2419                 if (dsize > size)
2420                     goto err;
2421
2422                 /*
2423                  * We remove any OCSP_RESPIDs from a previous handshake
2424                  * to prevent unbounded memory growth - CVE-2016-6304
2425                  */
2426                 sk_OCSP_RESPID_pop_free(s->tlsext_ocsp_ids,
2427                                         OCSP_RESPID_free);
2428                 if (dsize > 0) {
2429                     s->tlsext_ocsp_ids = sk_OCSP_RESPID_new_null();
2430                     if (s->tlsext_ocsp_ids == NULL) {
2431                         *al = SSL_AD_INTERNAL_ERROR;
2432                         return 0;
2433                     }
2434                 } else {
2435                     s->tlsext_ocsp_ids = NULL;
2436                 }
2437
2438                 while (dsize > 0) {
2439                     OCSP_RESPID *id;
2440                     int idsize;
2441                     if (dsize < 4)
2442                         goto err;
2443                     n2s(data, idsize);
2444                     dsize -= 2 + idsize;
2445                     size -= 2 + idsize;
2446                     if (dsize < 0)
2447                         goto err;
2448                     sdata = data;
2449                     data += idsize;
2450                     id = d2i_OCSP_RESPID(NULL, &sdata, idsize);
2451                     if (!id)
2452                         goto err;
2453                     if (data != sdata) {
2454                         OCSP_RESPID_free(id);
2455                         goto err;
2456                     }
2457                     if (!sk_OCSP_RESPID_push(s->tlsext_ocsp_ids, id)) {
2458                         OCSP_RESPID_free(id);
2459                         *al = SSL_AD_INTERNAL_ERROR;
2460                         return 0;
2461                     }
2462                 }
2463
2464                 /* Read in request_extensions */
2465                 if (size < 2)
2466                     goto err;
2467                 n2s(data, dsize);
2468                 size -= 2;
2469                 if (dsize != size)
2470                     goto err;
2471                 sdata = data;
2472                 if (dsize > 0) {
2473                     if (s->tlsext_ocsp_exts) {
2474                         sk_X509_EXTENSION_pop_free(s->tlsext_ocsp_exts,
2475                                                    X509_EXTENSION_free);
2476                     }
2477
2478                     s->tlsext_ocsp_exts =
2479                         d2i_X509_EXTENSIONS(NULL, &sdata, dsize);
2480                     if (!s->tlsext_ocsp_exts || (data + dsize != sdata))
2481                         goto err;
2482                 }
2483             }
2484             /*
2485              * We don't know what to do with any other type * so ignore it.
2486              */
2487             else
2488                 s->tlsext_status_type = -1;
2489         }
2490 # ifndef OPENSSL_NO_HEARTBEATS
2491         else if (type == TLSEXT_TYPE_heartbeat) {
2492             switch (data[0]) {
2493             case 0x01:         /* Client allows us to send HB requests */
2494                 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2495                 break;
2496             case 0x02:         /* Client doesn't accept HB requests */
2497                 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2498                 s->tlsext_heartbeat |= SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
2499                 break;
2500             default:
2501                 *al = SSL_AD_ILLEGAL_PARAMETER;
2502                 return 0;
2503             }
2504         }
2505 # endif
2506 # ifndef OPENSSL_NO_NEXTPROTONEG
2507         else if (type == TLSEXT_TYPE_next_proto_neg &&
2508                  s->s3->tmp.finish_md_len == 0) {
2509             /*-
2510              * We shouldn't accept this extension on a
2511              * renegotiation.
2512              *
2513              * s->new_session will be set on renegotiation, but we
2514              * probably shouldn't rely that it couldn't be set on
2515              * the initial renegotation too in certain cases (when
2516              * there's some other reason to disallow resuming an
2517              * earlier session -- the current code won't be doing
2518              * anything like that, but this might change).
2519              *
2520              * A valid sign that there's been a previous handshake
2521              * in this connection is if s->s3->tmp.finish_md_len >
2522              * 0.  (We are talking about a check that will happen
2523              * in the Hello protocol round, well before a new
2524              * Finished message could have been computed.)
2525              */
2526             s->s3->next_proto_neg_seen = 1;
2527         }
2528 # endif
2529
2530         else if (type == TLSEXT_TYPE_application_layer_protocol_negotiation &&
2531                  s->s3->tmp.finish_md_len == 0) {
2532             if (tls1_alpn_handle_client_hello(s, data, size, al) != 0)
2533                 return 0;
2534         }
2535
2536         /* session ticket processed earlier */
2537 # ifndef OPENSSL_NO_SRTP
2538         else if (SSL_IS_DTLS(s) && SSL_get_srtp_profiles(s)
2539                  && type == TLSEXT_TYPE_use_srtp) {
2540             if (ssl_parse_clienthello_use_srtp_ext(s, data, size, al))
2541                 return 0;
2542         }
2543 # endif
2544
2545         data += size;
2546     }
2547
2548     /* Spurious data on the end */
2549     if (data != limit)
2550         goto err;
2551
2552     *p = data;
2553
2554  ri_check:
2555
2556     /* Need RI if renegotiating */
2557
2558     if (!renegotiate_seen && s->renegotiate &&
2559         !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
2560         *al = SSL_AD_HANDSHAKE_FAILURE;
2561         SSLerr(SSL_F_SSL_SCAN_CLIENTHELLO_TLSEXT,
2562                SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
2563         return 0;
2564     }
2565
2566     return 1;
2567 err:
2568     *al = SSL_AD_DECODE_ERROR;
2569     return 0;
2570 }
2571
2572 /*
2573  * Parse any custom extensions found.  "data" is the start of the extension data
2574  * and "limit" is the end of the record. TODO: add strict syntax checking.
2575  */
2576
2577 static int ssl_scan_clienthello_custom_tlsext(SSL *s,
2578                                               const unsigned char *data,
2579                                               const unsigned char *limit,
2580                                               int *al)
2581 {
2582     unsigned short type, size, len;
2583     /* If resumed session or no custom extensions nothing to do */
2584     if (s->hit || s->cert->srv_ext.meths_count == 0)
2585         return 1;
2586
2587     if (limit - data <= 2)
2588         return 1;
2589     n2s(data, len);
2590
2591     if (limit - data < len)
2592         return 1;
2593
2594     while (limit - data >= 4) {
2595         n2s(data, type);
2596         n2s(data, size);
2597
2598         if (limit - data < size)
2599             return 1;
2600         if (custom_ext_parse(s, 1 /* server */ , type, data, size, al) <= 0)
2601             return 0;
2602
2603         data += size;
2604     }
2605
2606     return 1;
2607 }
2608
2609 int ssl_parse_clienthello_tlsext(SSL *s, unsigned char **p,
2610                                  unsigned char *limit)
2611 {
2612     int al = -1;
2613     unsigned char *ptmp = *p;
2614     /*
2615      * Internally supported extensions are parsed first so SNI can be handled
2616      * before custom extensions. An application processing SNI will typically
2617      * switch the parent context using SSL_set_SSL_CTX and custom extensions
2618      * need to be handled by the new SSL_CTX structure.
2619      */
2620     if (ssl_scan_clienthello_tlsext(s, p, limit, &al) <= 0) {
2621         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2622         return 0;
2623     }
2624
2625     if (ssl_check_clienthello_tlsext_early(s) <= 0) {
2626         SSLerr(SSL_F_SSL_PARSE_CLIENTHELLO_TLSEXT, SSL_R_CLIENTHELLO_TLSEXT);
2627         return 0;
2628     }
2629
2630     custom_ext_init(&s->cert->srv_ext);
2631     if (ssl_scan_clienthello_custom_tlsext(s, ptmp, limit, &al) <= 0) {
2632         ssl3_send_alert(s, SSL3_AL_FATAL, al);
2633         return 0;
2634     }
2635
2636     return 1;
2637 }
2638
2639 # ifndef OPENSSL_NO_NEXTPROTONEG
2640 /*
2641  * ssl_next_proto_validate validates a Next Protocol Negotiation block. No
2642  * elements of zero length are allowed and the set of elements must exactly
2643  * fill the length of the block.
2644  */
2645 static char ssl_next_proto_validate(unsigned char *d, unsigned len)
2646 {
2647     unsigned int off = 0;
2648
2649     while (off < len) {
2650         if (d[off] == 0)
2651             return 0;
2652         off += d[off];
2653         off++;
2654     }
2655
2656     return off == len;
2657 }
2658 # endif
2659
2660 static int ssl_scan_serverhello_tlsext(SSL *s, unsigned char **p,
2661                                        unsigned char *d, int n, int *al)
2662 {
2663     unsigned short length;
2664     unsigned short type;
2665     unsigned short size;
2666     unsigned char *data = *p;
2667     int tlsext_servername = 0;
2668     int renegotiate_seen = 0;
2669
2670 # ifndef OPENSSL_NO_NEXTPROTONEG
2671     s->s3->next_proto_neg_seen = 0;
2672 # endif
2673     s->tlsext_ticket_expected = 0;
2674
2675     if (s->s3->alpn_selected) {
2676         OPENSSL_free(s->s3->alpn_selected);
2677         s->s3->alpn_selected = NULL;
2678     }
2679 # ifndef OPENSSL_NO_HEARTBEATS
2680     s->tlsext_heartbeat &= ~(SSL_TLSEXT_HB_ENABLED |
2681                              SSL_TLSEXT_HB_DONT_SEND_REQUESTS);
2682 # endif
2683
2684     if ((d + n) - data <= 2)
2685         goto ri_check;
2686
2687     n2s(data, length);
2688     if ((d + n) - data != length) {
2689         *al = SSL_AD_DECODE_ERROR;
2690         return 0;
2691     }
2692
2693     while ((d + n) - data >= 4) {
2694         n2s(data, type);
2695         n2s(data, size);
2696
2697         if ((d + n) - data < size)
2698             goto ri_check;
2699
2700         if (s->tlsext_debug_cb)
2701             s->tlsext_debug_cb(s, 1, type, data, size, s->tlsext_debug_arg);
2702
2703         if (type == TLSEXT_TYPE_server_name) {
2704             if (s->tlsext_hostname == NULL || size > 0) {
2705                 *al = TLS1_AD_UNRECOGNIZED_NAME;
2706                 return 0;
2707             }
2708             tlsext_servername = 1;
2709         }
2710 # ifndef OPENSSL_NO_EC
2711         else if (type == TLSEXT_TYPE_ec_point_formats) {
2712             unsigned char *sdata = data;
2713             int ecpointformatlist_length = *(sdata++);
2714
2715             if (ecpointformatlist_length != size - 1) {
2716                 *al = TLS1_AD_DECODE_ERROR;
2717                 return 0;
2718             }
2719             if (!s->hit) {
2720                 s->session->tlsext_ecpointformatlist_length = 0;
2721                 if (s->session->tlsext_ecpointformatlist != NULL)
2722                     OPENSSL_free(s->session->tlsext_ecpointformatlist);
2723                 if ((s->session->tlsext_ecpointformatlist =
2724                      OPENSSL_malloc(ecpointformatlist_length)) == NULL) {
2725                     *al = TLS1_AD_INTERNAL_ERROR;
2726                     return 0;
2727                 }
2728                 s->session->tlsext_ecpointformatlist_length =
2729                     ecpointformatlist_length;
2730                 memcpy(s->session->tlsext_ecpointformatlist, sdata,
2731                        ecpointformatlist_length);
2732             }
2733 #  if 0
2734             fprintf(stderr,
2735                     "ssl_parse_serverhello_tlsext s->session->tlsext_ecpointformatlist ");
2736             sdata = s->session->tlsext_ecpointformatlist;
2737             for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++)
2738                 fprintf(stderr, "%i ", *(sdata++));
2739             fprintf(stderr, "\n");
2740 #  endif
2741         }
2742 # endif                         /* OPENSSL_NO_EC */
2743
2744         else if (type == TLSEXT_TYPE_session_ticket) {
2745             if (s->tls_session_ticket_ext_cb &&
2746                 !s->tls_session_ticket_ext_cb(s, data, size,
2747                                               s->tls_session_ticket_ext_cb_arg))
2748             {
2749                 *al = TLS1_AD_INTERNAL_ERROR;
2750                 return 0;
2751             }
2752             if ((SSL_get_options(s) & SSL_OP_NO_TICKET)
2753                 || (size > 0)) {
2754                 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2755                 return 0;
2756             }
2757             s->tlsext_ticket_expected = 1;
2758         }
2759 # ifdef TLSEXT_TYPE_opaque_prf_input
2760         else if (type == TLSEXT_TYPE_opaque_prf_input) {
2761             unsigned char *sdata = data;
2762
2763             if (size < 2) {
2764                 *al = SSL_AD_DECODE_ERROR;
2765                 return 0;
2766             }
2767             n2s(sdata, s->s3->server_opaque_prf_input_len);
2768             if (s->s3->server_opaque_prf_input_len != size - 2) {
2769                 *al = SSL_AD_DECODE_ERROR;
2770                 return 0;
2771             }
2772
2773             if (s->s3->server_opaque_prf_input != NULL) {
2774                 /* shouldn't really happen */
2775                 OPENSSL_free(s->s3->server_opaque_prf_input);
2776             }
2777             if (s->s3->server_opaque_prf_input_len == 0) {
2778                 /* dummy byte just to get non-NULL */
2779                 s->s3->server_opaque_prf_input = OPENSSL_malloc(1);
2780             } else {
2781                 s->s3->server_opaque_prf_input =
2782                     BUF_memdup(sdata, s->s3->server_opaque_prf_input_len);
2783             }
2784
2785             if (s->s3->server_opaque_prf_input == NULL) {
2786                 *al = TLS1_AD_INTERNAL_ERROR;
2787                 return 0;
2788             }
2789         }
2790 # endif
2791         else if (type == TLSEXT_TYPE_status_request) {
2792             /*
2793              * MUST be empty and only sent if we've requested a status
2794              * request message.
2795              */
2796             if ((s->tlsext_status_type == -1) || (size > 0)) {
2797                 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2798                 return 0;
2799             }
2800             /* Set flag to expect CertificateStatus message */
2801             s->tlsext_status_expected = 1;
2802         }
2803 # ifndef OPENSSL_NO_NEXTPROTONEG
2804         else if (type == TLSEXT_TYPE_next_proto_neg &&
2805                  s->s3->tmp.finish_md_len == 0) {
2806             unsigned char *selected;
2807             unsigned char selected_len;
2808
2809             /* We must have requested it. */
2810             if (s->ctx->next_proto_select_cb == NULL) {
2811                 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2812                 return 0;
2813             }
2814             /* The data must be valid */
2815             if (!ssl_next_proto_validate(data, size)) {
2816                 *al = TLS1_AD_DECODE_ERROR;
2817                 return 0;
2818             }
2819             if (s->
2820                 ctx->next_proto_select_cb(s, &selected, &selected_len, data,
2821                                           size,
2822                                           s->ctx->next_proto_select_cb_arg) !=
2823                 SSL_TLSEXT_ERR_OK) {
2824                 *al = TLS1_AD_INTERNAL_ERROR;
2825                 return 0;
2826             }
2827             /*
2828              * Could be non-NULL if server has sent multiple NPN extensions in
2829              * a single Serverhello
2830              */
2831             OPENSSL_free(s->next_proto_negotiated);
2832             s->next_proto_negotiated = OPENSSL_malloc(selected_len);
2833             if (!s->next_proto_negotiated) {
2834                 *al = TLS1_AD_INTERNAL_ERROR;
2835                 return 0;
2836             }
2837             memcpy(s->next_proto_negotiated, selected, selected_len);
2838             s->next_proto_negotiated_len = selected_len;
2839             s->s3->next_proto_neg_seen = 1;
2840         }
2841 # endif
2842
2843         else if (type == TLSEXT_TYPE_application_layer_protocol_negotiation) {
2844             unsigned len;
2845
2846             /* We must have requested it. */
2847             if (!s->cert->alpn_sent) {
2848                 *al = TLS1_AD_UNSUPPORTED_EXTENSION;
2849                 return 0;
2850             }
2851             if (size < 4) {
2852                 *al = TLS1_AD_DECODE_ERROR;
2853                 return 0;
2854             }
2855             /*-
2856              * The extension data consists of:
2857              *   uint16 list_length
2858              *   uint8 proto_length;
2859              *   uint8 proto[proto_length];
2860              */
2861             len = data[0];
2862             len <<= 8;
2863             len |= data[1];
2864             if (len != (unsigned)size - 2) {
2865                 *al = TLS1_AD_DECODE_ERROR;
2866                 return 0;
2867             }
2868             len = data[2];
2869             if (len != (unsigned)size - 3) {
2870                 *al = TLS1_AD_DECODE_ERROR;
2871                 return 0;
2872             }
2873             if (s->s3->alpn_selected)
2874                 OPENSSL_free(s->s3->alpn_selected);
2875             s->s3->alpn_selected = OPENSSL_malloc(len);
2876             if (!s->s3->alpn_selected) {
2877                 *al = TLS1_AD_INTERNAL_ERROR;
2878                 return 0;
2879             }
2880             memcpy(s->s3->alpn_selected, data + 3, len);
2881             s->s3->alpn_selected_len = len;
2882         }
2883
2884         else if (type == TLSEXT_TYPE_renegotiate) {
2885             if (!ssl_parse_serverhello_renegotiate_ext(s, data, size, al))
2886                 return 0;
2887             renegotiate_seen = 1;
2888         }
2889 # ifndef OPENSSL_NO_HEARTBEATS
2890         else if (type == TLSEXT_TYPE_heartbeat) {
2891             switch (data[0]) {
2892             case 0x01:         /* Server allows us to send HB requests */
2893                 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2894                 break;
2895             case 0x02:         /* Server doesn't accept HB requests */
2896                 s->tlsext_heartbeat |= SSL_TLSEXT_HB_ENABLED;
2897                 s->tlsext_heartbeat |= SSL_TLSEXT_HB_DONT_SEND_REQUESTS;
2898                 break;
2899             default:
2900                 *al = SSL_AD_ILLEGAL_PARAMETER;
2901                 return 0;
2902             }
2903         }
2904 # endif
2905 # ifndef OPENSSL_NO_SRTP
2906         else if (SSL_IS_DTLS(s) && type == TLSEXT_TYPE_use_srtp) {
2907             if (ssl_parse_serverhello_use_srtp_ext(s, data, size, al))
2908                 return 0;
2909         }
2910 # endif
2911         /*
2912          * If this extension type was not otherwise handled, but matches a
2913          * custom_cli_ext_record, then send it to the c callback
2914          */
2915         else if (custom_ext_parse(s, 0, type, data, size, al) <= 0)
2916             return 0;
2917
2918         data += size;
2919     }
2920
2921     if (data != d + n) {
2922         *al = SSL_AD_DECODE_ERROR;
2923         return 0;
2924     }
2925
2926     if (!s->hit && tlsext_servername == 1) {
2927         if (s->tlsext_hostname) {
2928             if (s->session->tlsext_hostname == NULL) {
2929                 s->session->tlsext_hostname = BUF_strdup(s->tlsext_hostname);
2930                 if (!s->session->tlsext_hostname) {
2931                     *al = SSL_AD_UNRECOGNIZED_NAME;
2932                     return 0;
2933                 }
2934             } else {
2935                 *al = SSL_AD_DECODE_ERROR;
2936                 return 0;
2937             }
2938         }
2939     }
2940
2941     *p = data;
2942
2943  ri_check:
2944
2945     /*
2946      * Determine if we need to see RI. Strictly speaking if we want to avoid
2947      * an attack we should *always* see RI even on initial server hello
2948      * because the client doesn't see any renegotiation during an attack.
2949      * However this would mean we could not connect to any server which
2950      * doesn't support RI so for the immediate future tolerate RI absence on
2951      * initial connect only.
2952      */
2953     if (!renegotiate_seen && !(s->options & SSL_OP_LEGACY_SERVER_CONNECT)
2954         && !(s->options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)) {
2955         *al = SSL_AD_HANDSHAKE_FAILURE;
2956         SSLerr(SSL_F_SSL_SCAN_SERVERHELLO_TLSEXT,
2957                SSL_R_UNSAFE_LEGACY_RENEGOTIATION_DISABLED);
2958         return 0;
2959     }
2960
2961     return 1;
2962 }
2963
2964 int ssl_prepare_clienthello_tlsext(SSL *s)
2965 {
2966
2967 # ifdef TLSEXT_TYPE_opaque_prf_input
2968     {
2969         int r = 1;
2970
2971         if (s->ctx->tlsext_opaque_prf_input_callback != 0) {
2972             r = s->ctx->tlsext_opaque_prf_input_callback(s, NULL, 0,
2973                                                          s->
2974                                                          ctx->tlsext_opaque_prf_input_callback_arg);
2975             if (!r)
2976                 return -1;
2977         }
2978
2979         if (s->tlsext_opaque_prf_input != NULL) {
2980             if (s->s3->client_opaque_prf_input != NULL) {
2981                 /* shouldn't really happen */
2982                 OPENSSL_free(s->s3->client_opaque_prf_input);
2983             }
2984
2985             if (s->tlsext_opaque_prf_input_len == 0) {
2986                 /* dummy byte just to get non-NULL */
2987                 s->s3->client_opaque_prf_input = OPENSSL_malloc(1);
2988             } else {
2989                 s->s3->client_opaque_prf_input =
2990                     BUF_memdup(s->tlsext_opaque_prf_input,
2991                                s->tlsext_opaque_prf_input_len);
2992             }
2993             if (s->s3->client_opaque_prf_input == NULL) {
2994                 SSLerr(SSL_F_SSL_PREPARE_CLIENTHELLO_TLSEXT,
2995                        ERR_R_MALLOC_FAILURE);
2996                 return -1;
2997             }
2998             s->s3->client_opaque_prf_input_len =
2999                 s->tlsext_opaque_prf_input_len;
3000         }
3001
3002         if (r == 2)
3003             /*
3004              * at callback's request, insist on receiving an appropriate
3005              * server opaque PRF input
3006              */
3007             s->s3->server_opaque_prf_input_len =
3008                 s->tlsext_opaque_prf_input_len;
3009     }
3010 # endif
3011
3012     s->cert->alpn_sent = 0;
3013     return 1;
3014 }
3015
3016 int ssl_prepare_serverhello_tlsext(SSL *s)
3017 {
3018     return 1;
3019 }
3020
3021 static int ssl_check_clienthello_tlsext_early(SSL *s)
3022 {
3023     int ret = SSL_TLSEXT_ERR_NOACK;
3024     int al = SSL_AD_UNRECOGNIZED_NAME;
3025
3026 # ifndef OPENSSL_NO_EC
3027     /*
3028      * The handling of the ECPointFormats extension is done elsewhere, namely
3029      * in ssl3_choose_cipher in s3_lib.c.
3030      */
3031     /*
3032      * The handling of the EllipticCurves extension is done elsewhere, namely
3033      * in ssl3_choose_cipher in s3_lib.c.
3034      */
3035 # endif
3036
3037     if (s->ctx != NULL && s->ctx->tlsext_servername_callback != 0)
3038         ret =
3039             s->ctx->tlsext_servername_callback(s, &al,
3040                                                s->ctx->tlsext_servername_arg);
3041     else if (s->initial_ctx != NULL
3042              && s->initial_ctx->tlsext_servername_callback != 0)
3043         ret =
3044             s->initial_ctx->tlsext_servername_callback(s, &al,
3045                                                        s->
3046                                                        initial_ctx->tlsext_servername_arg);
3047
3048 # ifdef TLSEXT_TYPE_opaque_prf_input
3049     {
3050         /*
3051          * This sort of belongs into ssl_prepare_serverhello_tlsext(), but we
3052          * might be sending an alert in response to the client hello, so this
3053          * has to happen here in ssl_check_clienthello_tlsext_early().
3054          */
3055
3056         int r = 1;
3057
3058         if (s->ctx->tlsext_opaque_prf_input_callback != 0) {
3059             r = s->ctx->tlsext_opaque_prf_input_callback(s, NULL, 0,
3060                                                          s->
3061                                                          ctx->tlsext_opaque_prf_input_callback_arg);
3062             if (!r) {
3063                 ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3064                 al = SSL_AD_INTERNAL_ERROR;
3065                 goto err;
3066             }
3067         }
3068
3069         if (s->s3->server_opaque_prf_input != NULL) {
3070             /* shouldn't really happen */
3071             OPENSSL_free(s->s3->server_opaque_prf_input);
3072         }
3073         s->s3->server_opaque_prf_input = NULL;
3074
3075         if (s->tlsext_opaque_prf_input != NULL) {
3076             if (s->s3->client_opaque_prf_input != NULL &&
3077                 s->s3->client_opaque_prf_input_len ==
3078                 s->tlsext_opaque_prf_input_len) {
3079                 /*
3080                  * can only use this extension if we have a server opaque PRF
3081                  * input of the same length as the client opaque PRF input!
3082                  */
3083
3084                 if (s->tlsext_opaque_prf_input_len == 0) {
3085                     /* dummy byte just to get non-NULL */
3086                     s->s3->server_opaque_prf_input = OPENSSL_malloc(1);
3087                 } else {
3088                     s->s3->server_opaque_prf_input =
3089                         BUF_memdup(s->tlsext_opaque_prf_input,
3090                                    s->tlsext_opaque_prf_input_len);
3091                 }
3092                 if (s->s3->server_opaque_prf_input == NULL) {
3093                     ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3094                     al = SSL_AD_INTERNAL_ERROR;
3095                     goto err;
3096                 }
3097                 s->s3->server_opaque_prf_input_len =
3098                     s->tlsext_opaque_prf_input_len;
3099             }
3100         }
3101
3102         if (r == 2 && s->s3->server_opaque_prf_input == NULL) {
3103             /*
3104              * The callback wants to enforce use of the extension, but we
3105              * can't do that with the client opaque PRF input; abort the
3106              * handshake.
3107              */
3108             ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3109             al = SSL_AD_HANDSHAKE_FAILURE;
3110         }
3111     }
3112
3113  err:
3114 # endif
3115     switch (ret) {
3116     case SSL_TLSEXT_ERR_ALERT_FATAL:
3117         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3118         return -1;
3119
3120     case SSL_TLSEXT_ERR_ALERT_WARNING:
3121         ssl3_send_alert(s, SSL3_AL_WARNING, al);
3122         return 1;
3123
3124     case SSL_TLSEXT_ERR_NOACK:
3125         s->servername_done = 0;
3126     default:
3127         return 1;
3128     }
3129 }
3130
3131 int tls1_set_server_sigalgs(SSL *s)
3132 {
3133     int al;
3134     size_t i;
3135     /* Clear any shared sigtnature algorithms */
3136     if (s->cert->shared_sigalgs) {
3137         OPENSSL_free(s->cert->shared_sigalgs);
3138         s->cert->shared_sigalgs = NULL;
3139         s->cert->shared_sigalgslen = 0;
3140     }
3141     /* Clear certificate digests and validity flags */
3142     for (i = 0; i < SSL_PKEY_NUM; i++) {
3143         s->cert->pkeys[i].digest = NULL;
3144         s->cert->pkeys[i].valid_flags = 0;
3145     }
3146
3147     /* If sigalgs received process it. */
3148     if (s->cert->peer_sigalgs) {
3149         if (!tls1_process_sigalgs(s)) {
3150             SSLerr(SSL_F_TLS1_SET_SERVER_SIGALGS, ERR_R_MALLOC_FAILURE);
3151             al = SSL_AD_INTERNAL_ERROR;
3152             goto err;
3153         }
3154         /* Fatal error is no shared signature algorithms */
3155         if (!s->cert->shared_sigalgs) {
3156             SSLerr(SSL_F_TLS1_SET_SERVER_SIGALGS,
3157                    SSL_R_NO_SHARED_SIGATURE_ALGORITHMS);
3158             al = SSL_AD_ILLEGAL_PARAMETER;
3159             goto err;
3160         }
3161     } else
3162         ssl_cert_set_default_md(s->cert);
3163     return 1;
3164  err:
3165     ssl3_send_alert(s, SSL3_AL_FATAL, al);
3166     return 0;
3167 }
3168
3169 int ssl_check_clienthello_tlsext_late(SSL *s)
3170 {
3171     int ret = SSL_TLSEXT_ERR_OK;
3172     int al;
3173
3174     /*
3175      * If status request then ask callback what to do. Note: this must be
3176      * called after servername callbacks in case the certificate has changed,
3177      * and must be called after the cipher has been chosen because this may
3178      * influence which certificate is sent
3179      */
3180     if ((s->tlsext_status_type != -1) && s->ctx && s->ctx->tlsext_status_cb) {
3181         int r;
3182         CERT_PKEY *certpkey;
3183         certpkey = ssl_get_server_send_pkey(s);
3184         /* If no certificate can't return certificate status */
3185         if (certpkey == NULL) {
3186             s->tlsext_status_expected = 0;
3187             return 1;
3188         }
3189         /*
3190          * Set current certificate to one we will use so SSL_get_certificate
3191          * et al can pick it up.
3192          */
3193         s->cert->key = certpkey;
3194         r = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
3195         switch (r) {
3196             /* We don't want to send a status request response */
3197         case SSL_TLSEXT_ERR_NOACK:
3198             s->tlsext_status_expected = 0;
3199             break;
3200             /* status request response should be sent */
3201         case SSL_TLSEXT_ERR_OK:
3202             if (s->tlsext_ocsp_resp)
3203                 s->tlsext_status_expected = 1;
3204             else
3205                 s->tlsext_status_expected = 0;
3206             break;
3207             /* something bad happened */
3208         case SSL_TLSEXT_ERR_ALERT_FATAL:
3209             ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3210             al = SSL_AD_INTERNAL_ERROR;
3211             goto err;
3212         }
3213     } else
3214         s->tlsext_status_expected = 0;
3215
3216     if (!tls1_alpn_handle_client_hello_late(s, &ret, &al)) {
3217         goto err;
3218     }
3219
3220  err:
3221     switch (ret) {
3222     case SSL_TLSEXT_ERR_ALERT_FATAL:
3223         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3224         return -1;
3225
3226     case SSL_TLSEXT_ERR_ALERT_WARNING:
3227         ssl3_send_alert(s, SSL3_AL_WARNING, al);
3228         return 1;
3229
3230     default:
3231         return 1;
3232     }
3233 }
3234
3235 int ssl_check_serverhello_tlsext(SSL *s)
3236 {
3237     int ret = SSL_TLSEXT_ERR_NOACK;
3238     int al = SSL_AD_UNRECOGNIZED_NAME;
3239
3240 # ifndef OPENSSL_NO_EC
3241     /*
3242      * If we are client and using an elliptic curve cryptography cipher
3243      * suite, then if server returns an EC point formats lists extension it
3244      * must contain uncompressed.
3245      */
3246     unsigned long alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
3247     unsigned long alg_a = s->s3->tmp.new_cipher->algorithm_auth;
3248     if ((s->tlsext_ecpointformatlist != NULL)
3249         && (s->tlsext_ecpointformatlist_length > 0)
3250         && (s->session->tlsext_ecpointformatlist != NULL)
3251         && (s->session->tlsext_ecpointformatlist_length > 0)
3252         && ((alg_k & (SSL_kEECDH | SSL_kECDHr | SSL_kECDHe))
3253             || (alg_a & SSL_aECDSA))) {
3254         /* we are using an ECC cipher */
3255         size_t i;
3256         unsigned char *list;
3257         int found_uncompressed = 0;
3258         list = s->session->tlsext_ecpointformatlist;
3259         for (i = 0; i < s->session->tlsext_ecpointformatlist_length; i++) {
3260             if (*(list++) == TLSEXT_ECPOINTFORMAT_uncompressed) {
3261                 found_uncompressed = 1;
3262                 break;
3263             }
3264         }
3265         if (!found_uncompressed) {
3266             SSLerr(SSL_F_SSL_CHECK_SERVERHELLO_TLSEXT,
3267                    SSL_R_TLS_INVALID_ECPOINTFORMAT_LIST);
3268             return -1;
3269         }
3270     }
3271     ret = SSL_TLSEXT_ERR_OK;
3272 # endif                         /* OPENSSL_NO_EC */
3273
3274     if (s->ctx != NULL && s->ctx->tlsext_servername_callback != 0)
3275         ret =
3276             s->ctx->tlsext_servername_callback(s, &al,
3277                                                s->ctx->tlsext_servername_arg);
3278     else if (s->initial_ctx != NULL
3279              && s->initial_ctx->tlsext_servername_callback != 0)
3280         ret =
3281             s->initial_ctx->tlsext_servername_callback(s, &al,
3282                                                        s->
3283                                                        initial_ctx->tlsext_servername_arg);
3284
3285 # ifdef TLSEXT_TYPE_opaque_prf_input
3286     if (s->s3->server_opaque_prf_input_len > 0) {
3287         /*
3288          * This case may indicate that we, as a client, want to insist on
3289          * using opaque PRF inputs. So first verify that we really have a
3290          * value from the server too.
3291          */
3292
3293         if (s->s3->server_opaque_prf_input == NULL) {
3294             ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3295             al = SSL_AD_HANDSHAKE_FAILURE;
3296         }
3297
3298         /*
3299          * Anytime the server *has* sent an opaque PRF input, we need to
3300          * check that we have a client opaque PRF input of the same size.
3301          */
3302         if (s->s3->client_opaque_prf_input == NULL ||
3303             s->s3->client_opaque_prf_input_len !=
3304             s->s3->server_opaque_prf_input_len) {
3305             ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3306             al = SSL_AD_ILLEGAL_PARAMETER;
3307         }
3308     }
3309 # endif
3310
3311     OPENSSL_free(s->tlsext_ocsp_resp);
3312     s->tlsext_ocsp_resp = NULL;
3313     s->tlsext_ocsp_resplen = -1;
3314     /*
3315      * If we've requested certificate status and we wont get one tell the
3316      * callback
3317      */
3318     if ((s->tlsext_status_type != -1) && !(s->tlsext_status_expected)
3319         && !(s->hit) && s->ctx && s->ctx->tlsext_status_cb) {
3320         int r;
3321         /*
3322          * Call callback with resp == NULL and resplen == -1 so callback
3323          * knows there is no response
3324          */
3325         r = s->ctx->tlsext_status_cb(s, s->ctx->tlsext_status_arg);
3326         if (r == 0) {
3327             al = SSL_AD_BAD_CERTIFICATE_STATUS_RESPONSE;
3328             ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3329         }
3330         if (r < 0) {
3331             al = SSL_AD_INTERNAL_ERROR;
3332             ret = SSL_TLSEXT_ERR_ALERT_FATAL;
3333         }
3334     }
3335
3336     switch (ret) {
3337     case SSL_TLSEXT_ERR_ALERT_FATAL:
3338         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3339         return -1;
3340
3341     case SSL_TLSEXT_ERR_ALERT_WARNING:
3342         ssl3_send_alert(s, SSL3_AL_WARNING, al);
3343         return 1;
3344
3345     case SSL_TLSEXT_ERR_NOACK:
3346         s->servername_done = 0;
3347     default:
3348         return 1;
3349     }
3350 }
3351
3352 int ssl_parse_serverhello_tlsext(SSL *s, unsigned char **p, unsigned char *d,
3353                                  int n)
3354 {
3355     int al = -1;
3356     if (s->version < SSL3_VERSION)
3357         return 1;
3358     if (ssl_scan_serverhello_tlsext(s, p, d, n, &al) <= 0) {
3359         ssl3_send_alert(s, SSL3_AL_FATAL, al);
3360         return 0;
3361     }
3362
3363     if (ssl_check_serverhello_tlsext(s) <= 0) {
3364         SSLerr(SSL_F_SSL_PARSE_SERVERHELLO_TLSEXT, SSL_R_SERVERHELLO_TLSEXT);
3365         return 0;
3366     }
3367     return 1;
3368 }
3369
3370 /*-
3371  * Since the server cache lookup is done early on in the processing of the
3372  * ClientHello, and other operations depend on the result, we need to handle
3373  * any TLS session ticket extension at the same time.
3374  *
3375  *   session_id: points at the session ID in the ClientHello. This code will
3376  *       read past the end of this in order to parse out the session ticket
3377  *       extension, if any.
3378  *   len: the length of the session ID.
3379  *   limit: a pointer to the first byte after the ClientHello.
3380  *   ret: (output) on return, if a ticket was decrypted, then this is set to
3381  *       point to the resulting session.
3382  *
3383  * If s->tls_session_secret_cb is set then we are expecting a pre-shared key
3384  * ciphersuite, in which case we have no use for session tickets and one will
3385  * never be decrypted, nor will s->tlsext_ticket_expected be set to 1.
3386  *
3387  * Returns:
3388  *   -1: fatal error, either from parsing or decrypting the ticket.
3389  *    0: no ticket was found (or was ignored, based on settings).
3390  *    1: a zero length extension was found, indicating that the client supports
3391  *       session tickets but doesn't currently have one to offer.
3392  *    2: either s->tls_session_secret_cb was set, or a ticket was offered but
3393  *       couldn't be decrypted because of a non-fatal error.
3394  *    3: a ticket was successfully decrypted and *ret was set.
3395  *
3396  * Side effects:
3397  *   Sets s->tlsext_ticket_expected to 1 if the server will have to issue
3398  *   a new session ticket to the client because the client indicated support
3399  *   (and s->tls_session_secret_cb is NULL) but the client either doesn't have
3400  *   a session ticket or we couldn't use the one it gave us, or if
3401  *   s->ctx->tlsext_ticket_key_cb asked to renew the client's ticket.
3402  *   Otherwise, s->tlsext_ticket_expected is set to 0.
3403  */
3404 int tls1_process_ticket(SSL *s, unsigned char *session_id, int len,
3405                         const unsigned char *limit, SSL_SESSION **ret)
3406 {
3407     /* Point after session ID in client hello */
3408     const unsigned char *p = session_id + len;
3409     unsigned short i;
3410
3411     *ret = NULL;
3412     s->tlsext_ticket_expected = 0;
3413
3414     /*
3415      * If tickets disabled behave as if no ticket present to permit stateful
3416      * resumption.
3417      */
3418     if (SSL_get_options(s) & SSL_OP_NO_TICKET)
3419         return 0;
3420     if ((s->version <= SSL3_VERSION) || !limit)
3421         return 0;
3422     if (p >= limit)
3423         return -1;
3424     /* Skip past DTLS cookie */
3425     if (SSL_IS_DTLS(s)) {
3426         i = *(p++);
3427
3428         if (limit - p <= i)
3429             return -1;
3430
3431         p += i;
3432     }
3433     /* Skip past cipher list */
3434     n2s(p, i);
3435     if (limit - p <= i)
3436         return -1;
3437     p += i;
3438
3439     /* Skip past compression algorithm list */
3440     i = *(p++);
3441     if (limit - p < i)
3442         return -1;
3443     p += i;
3444
3445     /* Now at start of extensions */
3446     if (limit - p <= 2)
3447         return 0;
3448     n2s(p, i);
3449     while (limit - p >= 4) {
3450         unsigned short type, size;
3451         n2s(p, type);
3452         n2s(p, size);
3453         if (limit - p < size)
3454             return 0;
3455         if (type == TLSEXT_TYPE_session_ticket) {
3456             int r;
3457             if (size == 0) {
3458                 /*
3459                  * The client will accept a ticket but doesn't currently have
3460                  * one.
3461                  */
3462                 s->tlsext_ticket_expected = 1;
3463                 return 1;
3464             }
3465             if (s->tls_session_secret_cb) {
3466                 /*
3467                  * Indicate that the ticket couldn't be decrypted rather than
3468                  * generating the session from ticket now, trigger
3469                  * abbreviated handshake based on external mechanism to
3470                  * calculate the master secret later.
3471                  */
3472                 return 2;
3473             }
3474             r = tls_decrypt_ticket(s, p, size, session_id, len, ret);
3475             switch (r) {
3476             case 2:            /* ticket couldn't be decrypted */
3477                 s->tlsext_ticket_expected = 1;
3478                 return 2;
3479             case 3:            /* ticket was decrypted */
3480                 return r;
3481             case 4:            /* ticket decrypted but need to renew */
3482                 s->tlsext_ticket_expected = 1;
3483                 return 3;
3484             default:           /* fatal error */
3485                 return -1;
3486             }
3487         }
3488         p += size;
3489     }
3490     return 0;
3491 }
3492
3493 /*-
3494  * tls_decrypt_ticket attempts to decrypt a session ticket.
3495  *
3496  *   etick: points to the body of the session ticket extension.
3497  *   eticklen: the length of the session tickets extenion.
3498  *   sess_id: points at the session ID.
3499  *   sesslen: the length of the session ID.
3500  *   psess: (output) on return, if a ticket was decrypted, then this is set to
3501  *       point to the resulting session.
3502  *
3503  * Returns:
3504  *   -1: fatal error, either from parsing or decrypting the ticket.
3505  *    2: the ticket couldn't be decrypted.
3506  *    3: a ticket was successfully decrypted and *psess was set.
3507  *    4: same as 3, but the ticket needs to be renewed.
3508  */
3509 static int tls_decrypt_ticket(SSL *s, const unsigned char *etick,
3510                               int eticklen, const unsigned char *sess_id,
3511                               int sesslen, SSL_SESSION **psess)
3512 {
3513     SSL_SESSION *sess;
3514     unsigned char *sdec;
3515     const unsigned char *p;
3516     int slen, mlen, renew_ticket = 0;
3517     unsigned char tick_hmac[EVP_MAX_MD_SIZE];
3518     HMAC_CTX hctx;
3519     EVP_CIPHER_CTX ctx;
3520     SSL_CTX *tctx = s->initial_ctx;
3521
3522     /* Initialize session ticket encryption and HMAC contexts */
3523     HMAC_CTX_init(&hctx);
3524     EVP_CIPHER_CTX_init(&ctx);
3525     if (tctx->tlsext_ticket_key_cb) {
3526         unsigned char *nctick = (unsigned char *)etick;
3527         int rv = tctx->tlsext_ticket_key_cb(s, nctick, nctick + 16,
3528                                             &ctx, &hctx, 0);
3529         if (rv < 0)
3530             return -1;
3531         if (rv == 0)
3532             return 2;
3533         if (rv == 2)
3534             renew_ticket = 1;
3535     } else {
3536         /* Check key name matches */
3537         if (memcmp(etick, tctx->tlsext_tick_key_name, 16))
3538             return 2;
3539         if (HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16,
3540                          tlsext_tick_md(), NULL) <= 0
3541                 || EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
3542                                       tctx->tlsext_tick_aes_key,
3543                                       etick + 16) <= 0) {
3544             goto err;
3545        }
3546     }
3547     /*
3548      * Attempt to process session ticket, first conduct sanity and integrity
3549      * checks on ticket.
3550      */
3551     mlen = HMAC_size(&hctx);
3552     if (mlen < 0) {
3553         goto err;
3554     }
3555     /* Sanity check ticket length: must exceed keyname + IV + HMAC */
3556     if (eticklen <= 16 + EVP_CIPHER_CTX_iv_length(&ctx) + mlen) {
3557         HMAC_CTX_cleanup(&hctx);
3558         EVP_CIPHER_CTX_cleanup(&ctx);
3559         return 2;
3560     }
3561
3562     eticklen -= mlen;
3563     /* Check HMAC of encrypted ticket */
3564     if (HMAC_Update(&hctx, etick, eticklen) <= 0
3565             || HMAC_Final(&hctx, tick_hmac, NULL) <= 0) {
3566         goto err;
3567     }
3568     HMAC_CTX_cleanup(&hctx);
3569     if (CRYPTO_memcmp(tick_hmac, etick + eticklen, mlen)) {
3570         EVP_CIPHER_CTX_cleanup(&ctx);
3571         return 2;
3572     }
3573     /* Attempt to decrypt session data */
3574     /* Move p after IV to start of encrypted ticket, update length */
3575     p = etick + 16 + EVP_CIPHER_CTX_iv_length(&ctx);
3576     eticklen -= 16 + EVP_CIPHER_CTX_iv_length(&ctx);
3577     sdec = OPENSSL_malloc(eticklen);
3578     if (sdec == NULL
3579             || EVP_DecryptUpdate(&ctx, sdec, &slen, p, eticklen) <= 0) {
3580         EVP_CIPHER_CTX_cleanup(&ctx);
3581         OPENSSL_free(sdec);
3582         return -1;
3583     }
3584     if (EVP_DecryptFinal(&ctx, sdec + slen, &mlen) <= 0) {
3585         EVP_CIPHER_CTX_cleanup(&ctx);
3586         OPENSSL_free(sdec);
3587         return 2;
3588     }
3589     slen += mlen;
3590     EVP_CIPHER_CTX_cleanup(&ctx);
3591     p = sdec;
3592
3593     sess = d2i_SSL_SESSION(NULL, &p, slen);
3594     OPENSSL_free(sdec);
3595     if (sess) {
3596         /*
3597          * The session ID, if non-empty, is used by some clients to detect
3598          * that the ticket has been accepted. So we copy it to the session
3599          * structure. If it is empty set length to zero as required by
3600          * standard.
3601          */
3602         if (sesslen)
3603             memcpy(sess->session_id, sess_id, sesslen);
3604         sess->session_id_length = sesslen;
3605         *psess = sess;
3606         if (renew_ticket)
3607             return 4;
3608         else
3609             return 3;
3610     }
3611     ERR_clear_error();
3612     /*
3613      * For session parse failure, indicate that we need to send a new ticket.
3614      */
3615     return 2;
3616 err:
3617     EVP_CIPHER_CTX_cleanup(&ctx);
3618     HMAC_CTX_cleanup(&hctx);
3619     return -1;
3620 }
3621
3622 /* Tables to translate from NIDs to TLS v1.2 ids */
3623
3624 typedef struct {
3625     int nid;
3626     int id;
3627 } tls12_lookup;
3628
3629 static tls12_lookup tls12_md[] = {
3630     {NID_md5, TLSEXT_hash_md5},
3631     {NID_sha1, TLSEXT_hash_sha1},
3632     {NID_sha224, TLSEXT_hash_sha224},
3633     {NID_sha256, TLSEXT_hash_sha256},
3634     {NID_sha384, TLSEXT_hash_sha384},
3635     {NID_sha512, TLSEXT_hash_sha512}
3636 };
3637
3638 static tls12_lookup tls12_sig[] = {
3639     {EVP_PKEY_RSA, TLSEXT_signature_rsa},
3640     {EVP_PKEY_DSA, TLSEXT_signature_dsa},
3641     {EVP_PKEY_EC, TLSEXT_signature_ecdsa}
3642 };
3643
3644 static int tls12_find_id(int nid, tls12_lookup *table, size_t tlen)
3645 {
3646     size_t i;
3647     for (i = 0; i < tlen; i++) {
3648         if (table[i].nid == nid)
3649             return table[i].id;
3650     }
3651     return -1;
3652 }
3653
3654 static int tls12_find_nid(int id, tls12_lookup *table, size_t tlen)
3655 {
3656     size_t i;
3657     for (i = 0; i < tlen; i++) {
3658         if ((table[i].id) == id)
3659             return table[i].nid;
3660     }
3661     return NID_undef;
3662 }
3663
3664 int tls12_get_sigandhash(unsigned char *p, const EVP_PKEY *pk,
3665                          const EVP_MD *md)
3666 {
3667     int sig_id, md_id;
3668     if (!md)
3669         return 0;
3670     md_id = tls12_find_id(EVP_MD_type(md), tls12_md,
3671                           sizeof(tls12_md) / sizeof(tls12_lookup));
3672     if (md_id == -1)
3673         return 0;
3674     sig_id = tls12_get_sigid(pk);
3675     if (sig_id == -1)
3676         return 0;
3677     p[0] = (unsigned char)md_id;
3678     p[1] = (unsigned char)sig_id;
3679     return 1;
3680 }
3681
3682 int tls12_get_sigid(const EVP_PKEY *pk)
3683 {
3684     return tls12_find_id(pk->type, tls12_sig,
3685                          sizeof(tls12_sig) / sizeof(tls12_lookup));
3686 }
3687
3688 const EVP_MD *tls12_get_hash(unsigned char hash_alg)
3689 {
3690     switch (hash_alg) {
3691 # ifndef OPENSSL_NO_MD5
3692     case TLSEXT_hash_md5:
3693 #  ifdef OPENSSL_FIPS
3694         if (FIPS_mode())
3695             return NULL;
3696 #  endif
3697         return EVP_md5();
3698 # endif
3699 # ifndef OPENSSL_NO_SHA
3700     case TLSEXT_hash_sha1:
3701         return EVP_sha1();
3702 # endif
3703 # ifndef OPENSSL_NO_SHA256
3704     case TLSEXT_hash_sha224:
3705         return EVP_sha224();
3706
3707     case TLSEXT_hash_sha256:
3708         return EVP_sha256();
3709 # endif
3710 # ifndef OPENSSL_NO_SHA512
3711     case TLSEXT_hash_sha384:
3712         return EVP_sha384();
3713
3714     case TLSEXT_hash_sha512:
3715         return EVP_sha512();
3716 # endif
3717     default:
3718         return NULL;
3719
3720     }
3721 }
3722
3723 static int tls12_get_pkey_idx(unsigned char sig_alg)
3724 {
3725     switch (sig_alg) {
3726 # ifndef OPENSSL_NO_RSA
3727     case TLSEXT_signature_rsa:
3728         return SSL_PKEY_RSA_SIGN;
3729 # endif
3730 # ifndef OPENSSL_NO_DSA
3731     case TLSEXT_signature_dsa:
3732         return SSL_PKEY_DSA_SIGN;
3733 # endif
3734 # ifndef OPENSSL_NO_ECDSA
3735     case TLSEXT_signature_ecdsa:
3736         return SSL_PKEY_ECC;
3737 # endif
3738     }
3739     return -1;
3740 }
3741
3742 /* Convert TLS 1.2 signature algorithm extension values into NIDs */
3743 static void tls1_lookup_sigalg(int *phash_nid, int *psign_nid,
3744                                int *psignhash_nid, const unsigned char *data)
3745 {
3746     int sign_nid = NID_undef, hash_nid = NID_undef;
3747     if (!phash_nid && !psign_nid && !psignhash_nid)
3748         return;
3749     if (phash_nid || psignhash_nid) {
3750         hash_nid = tls12_find_nid(data[0], tls12_md,
3751                                   sizeof(tls12_md) / sizeof(tls12_lookup));
3752         if (phash_nid)
3753             *phash_nid = hash_nid;
3754     }
3755     if (psign_nid || psignhash_nid) {
3756         sign_nid = tls12_find_nid(data[1], tls12_sig,
3757                                   sizeof(tls12_sig) / sizeof(tls12_lookup));
3758         if (psign_nid)
3759             *psign_nid = sign_nid;
3760     }
3761     if (psignhash_nid) {
3762         if (sign_nid == NID_undef || hash_nid == NID_undef
3763                 || OBJ_find_sigid_by_algs(psignhash_nid, hash_nid,
3764                                           sign_nid) <= 0)
3765             *psignhash_nid = NID_undef;
3766     }
3767 }
3768
3769 /* Given preference and allowed sigalgs set shared sigalgs */
3770 static int tls12_do_shared_sigalgs(TLS_SIGALGS *shsig,
3771                                    const unsigned char *pref, size_t preflen,
3772                                    const unsigned char *allow,
3773                                    size_t allowlen)
3774 {
3775     const unsigned char *ptmp, *atmp;
3776     size_t i, j, nmatch = 0;
3777     for (i = 0, ptmp = pref; i < preflen; i += 2, ptmp += 2) {
3778         /* Skip disabled hashes or signature algorithms */
3779         if (tls12_get_hash(ptmp[0]) == NULL)
3780             continue;
3781         if (tls12_get_pkey_idx(ptmp[1]) == -1)
3782             continue;
3783         for (j = 0, atmp = allow; j < allowlen; j += 2, atmp += 2) {
3784             if (ptmp[0] == atmp[0] && ptmp[1] == atmp[1]) {
3785                 nmatch++;
3786                 if (shsig) {
3787                     shsig->rhash = ptmp[0];
3788                     shsig->rsign = ptmp[1];
3789                     tls1_lookup_sigalg(&shsig->hash_nid,
3790                                        &shsig->sign_nid,
3791                                        &shsig->signandhash_nid, ptmp);
3792                     shsig++;
3793                 }
3794                 break;
3795             }
3796         }
3797     }
3798     return nmatch;
3799 }
3800
3801 /* Set shared signature algorithms for SSL structures */
3802 static int tls1_set_shared_sigalgs(SSL *s)
3803 {
3804     const unsigned char *pref, *allow, *conf;
3805     size_t preflen, allowlen, conflen;
3806     size_t nmatch;
3807     TLS_SIGALGS *salgs = NULL;
3808     CERT *c = s->cert;
3809     unsigned int is_suiteb = tls1_suiteb(s);
3810     if (c->shared_sigalgs) {
3811         OPENSSL_free(c->shared_sigalgs);
3812         c->shared_sigalgs = NULL;
3813         c->shared_sigalgslen = 0;
3814     }
3815     /* If client use client signature algorithms if not NULL */
3816     if (!s->server && c->client_sigalgs && !is_suiteb) {
3817         conf = c->client_sigalgs;
3818         conflen = c->client_sigalgslen;
3819     } else if (c->conf_sigalgs && !is_suiteb) {
3820         conf = c->conf_sigalgs;
3821         conflen = c->conf_sigalgslen;
3822     } else
3823         conflen = tls12_get_psigalgs(s, &conf);
3824     if (s->options & SSL_OP_CIPHER_SERVER_PREFERENCE || is_suiteb) {
3825         pref = conf;
3826         preflen = conflen;
3827         allow = c->peer_sigalgs;
3828         allowlen = c->peer_sigalgslen;
3829     } else {
3830         allow = conf;
3831         allowlen = conflen;
3832         pref = c->peer_sigalgs;
3833         preflen = c->peer_sigalgslen;
3834     }
3835     nmatch = tls12_do_shared_sigalgs(NULL, pref, preflen, allow, allowlen);
3836     if (nmatch) {
3837         salgs = OPENSSL_malloc(nmatch * sizeof(TLS_SIGALGS));
3838         if (!salgs)
3839             return 0;
3840         nmatch = tls12_do_shared_sigalgs(salgs, pref, preflen, allow, allowlen);
3841     } else {
3842         salgs = NULL;
3843     }
3844     c->shared_sigalgs = salgs;
3845     c->shared_sigalgslen = nmatch;
3846     return 1;
3847 }
3848
3849 /* Set preferred digest for each key type */
3850
3851 int tls1_save_sigalgs(SSL *s, const unsigned char *data, int dsize)
3852 {
3853     CERT *c = s->cert;
3854     /* Extension ignored for inappropriate versions */
3855     if (!SSL_USE_SIGALGS(s))
3856         return 1;
3857     /* Should never happen */
3858     if (!c)
3859         return 0;
3860
3861     if (c->peer_sigalgs)
3862         OPENSSL_free(c->peer_sigalgs);
3863     c->peer_sigalgs = OPENSSL_malloc(dsize);
3864     if (!c->peer_sigalgs)
3865         return 0;
3866     c->peer_sigalgslen = dsize;
3867     memcpy(c->peer_sigalgs, data, dsize);
3868     return 1;
3869 }
3870
3871 int tls1_process_sigalgs(SSL *s)
3872 {
3873     int idx;
3874     size_t i;
3875     const EVP_MD *md;
3876     CERT *c = s->cert;
3877     TLS_SIGALGS *sigptr;
3878     if (!tls1_set_shared_sigalgs(s))
3879         return 0;
3880
3881 # ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
3882     if (s->cert->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL) {
3883         /*
3884          * Use first set signature preference to force message digest,
3885          * ignoring any peer preferences.
3886          */
3887         const unsigned char *sigs = NULL;
3888         if (s->server)
3889             sigs = c->conf_sigalgs;
3890         else
3891             sigs = c->client_sigalgs;
3892         if (sigs) {
3893             idx = tls12_get_pkey_idx(sigs[1]);
3894             md = tls12_get_hash(sigs[0]);
3895             c->pkeys[idx].digest = md;
3896             c->pkeys[idx].valid_flags = CERT_PKEY_EXPLICIT_SIGN;
3897             if (idx == SSL_PKEY_RSA_SIGN) {
3898                 c->pkeys[SSL_PKEY_RSA_ENC].valid_flags =
3899                     CERT_PKEY_EXPLICIT_SIGN;
3900                 c->pkeys[SSL_PKEY_RSA_ENC].digest = md;
3901             }
3902         }
3903     }
3904 # endif
3905
3906     for (i = 0, sigptr = c->shared_sigalgs;
3907          i < c->shared_sigalgslen; i++, sigptr++) {
3908         idx = tls12_get_pkey_idx(sigptr->rsign);
3909         if (idx > 0 && c->pkeys[idx].digest == NULL) {
3910             md = tls12_get_hash(sigptr->rhash);
3911             c->pkeys[idx].digest = md;
3912             c->pkeys[idx].valid_flags = CERT_PKEY_EXPLICIT_SIGN;
3913             if (idx == SSL_PKEY_RSA_SIGN) {
3914                 c->pkeys[SSL_PKEY_RSA_ENC].valid_flags =
3915                     CERT_PKEY_EXPLICIT_SIGN;
3916                 c->pkeys[SSL_PKEY_RSA_ENC].digest = md;
3917             }
3918         }
3919
3920     }
3921     /*
3922      * In strict mode leave unset digests as NULL to indicate we can't use
3923      * the certificate for signing.
3924      */
3925     if (!(s->cert->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT)) {
3926         /*
3927          * Set any remaining keys to default values. NOTE: if alg is not
3928          * supported it stays as NULL.
3929          */
3930 # ifndef OPENSSL_NO_DSA
3931         if (!c->pkeys[SSL_PKEY_DSA_SIGN].digest)
3932             c->pkeys[SSL_PKEY_DSA_SIGN].digest = EVP_sha1();
3933 # endif
3934 # ifndef OPENSSL_NO_RSA
3935         if (!c->pkeys[SSL_PKEY_RSA_SIGN].digest) {
3936             c->pkeys[SSL_PKEY_RSA_SIGN].digest = EVP_sha1();
3937             c->pkeys[SSL_PKEY_RSA_ENC].digest = EVP_sha1();
3938         }
3939 # endif
3940 # ifndef OPENSSL_NO_ECDSA
3941         if (!c->pkeys[SSL_PKEY_ECC].digest)
3942             c->pkeys[SSL_PKEY_ECC].digest = EVP_sha1();
3943 # endif
3944     }
3945     return 1;
3946 }
3947
3948 int SSL_get_sigalgs(SSL *s, int idx,
3949                     int *psign, int *phash, int *psignhash,
3950                     unsigned char *rsig, unsigned char *rhash)
3951 {
3952     const unsigned char *psig = s->cert->peer_sigalgs;
3953     if (psig == NULL)
3954         return 0;
3955     if (idx >= 0) {
3956         idx <<= 1;
3957         if (idx >= (int)s->cert->peer_sigalgslen)
3958             return 0;
3959         psig += idx;
3960         if (rhash)
3961             *rhash = psig[0];
3962         if (rsig)
3963             *rsig = psig[1];
3964         tls1_lookup_sigalg(phash, psign, psignhash, psig);
3965     }
3966     return s->cert->peer_sigalgslen / 2;
3967 }
3968
3969 int SSL_get_shared_sigalgs(SSL *s, int idx,
3970                            int *psign, int *phash, int *psignhash,
3971                            unsigned char *rsig, unsigned char *rhash)
3972 {
3973     TLS_SIGALGS *shsigalgs = s->cert->shared_sigalgs;
3974     if (!shsigalgs || idx >= (int)s->cert->shared_sigalgslen)
3975         return 0;
3976     shsigalgs += idx;
3977     if (phash)
3978         *phash = shsigalgs->hash_nid;
3979     if (psign)
3980         *psign = shsigalgs->sign_nid;
3981     if (psignhash)
3982         *psignhash = shsigalgs->signandhash_nid;
3983     if (rsig)
3984         *rsig = shsigalgs->rsign;
3985     if (rhash)
3986         *rhash = shsigalgs->rhash;
3987     return s->cert->shared_sigalgslen;
3988 }
3989
3990 # ifndef OPENSSL_NO_HEARTBEATS
3991 int tls1_process_heartbeat(SSL *s)
3992 {
3993     unsigned char *p = &s->s3->rrec.data[0], *pl;
3994     unsigned short hbtype;
3995     unsigned int payload;
3996     unsigned int padding = 16;  /* Use minimum padding */
3997
3998     if (s->msg_callback)
3999         s->msg_callback(0, s->version, TLS1_RT_HEARTBEAT,
4000                         &s->s3->rrec.data[0], s->s3->rrec.length,
4001                         s, s->msg_callback_arg);
4002
4003     /* Read type and payload length first */
4004     if (1 + 2 + 16 > s->s3->rrec.length)
4005         return 0;               /* silently discard */
4006     hbtype = *p++;
4007     n2s(p, payload);
4008     if (1 + 2 + payload + 16 > s->s3->rrec.length)
4009         return 0;               /* silently discard per RFC 6520 sec. 4 */
4010     pl = p;
4011
4012     if (hbtype == TLS1_HB_REQUEST) {
4013         unsigned char *buffer, *bp;
4014         int r;
4015
4016         /*
4017          * Allocate memory for the response, size is 1 bytes message type,
4018          * plus 2 bytes payload length, plus payload, plus padding
4019          */
4020         buffer = OPENSSL_malloc(1 + 2 + payload + padding);
4021         if (buffer == NULL)
4022             return -1;
4023         bp = buffer;
4024
4025         /* Enter response type, length and copy payload */
4026         *bp++ = TLS1_HB_RESPONSE;
4027         s2n(payload, bp);
4028         memcpy(bp, pl, payload);
4029         bp += payload;
4030         /* Random padding */
4031         if (RAND_bytes(bp, padding) <= 0) {
4032             OPENSSL_free(buffer);
4033             return -1;
4034         }
4035
4036         r = ssl3_write_bytes(s, TLS1_RT_HEARTBEAT, buffer,
4037                              3 + payload + padding);
4038
4039         if (r >= 0 && s->msg_callback)
4040             s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
4041                             buffer, 3 + payload + padding,
4042                             s, s->msg_callback_arg);
4043
4044         OPENSSL_free(buffer);
4045
4046         if (r < 0)
4047             return r;
4048     } else if (hbtype == TLS1_HB_RESPONSE) {
4049         unsigned int seq;
4050
4051         /*
4052          * We only send sequence numbers (2 bytes unsigned int), and 16
4053          * random bytes, so we just try to read the sequence number
4054          */
4055         n2s(pl, seq);
4056
4057         if (payload == 18 && seq == s->tlsext_hb_seq) {
4058             s->tlsext_hb_seq++;
4059             s->tlsext_hb_pending = 0;
4060         }
4061     }
4062
4063     return 0;
4064 }
4065
4066 int tls1_heartbeat(SSL *s)
4067 {
4068     unsigned char *buf, *p;
4069     int ret = -1;
4070     unsigned int payload = 18;  /* Sequence number + random bytes */
4071     unsigned int padding = 16;  /* Use minimum padding */
4072
4073     /* Only send if peer supports and accepts HB requests... */
4074     if (!(s->tlsext_heartbeat & SSL_TLSEXT_HB_ENABLED) ||
4075         s->tlsext_heartbeat & SSL_TLSEXT_HB_DONT_SEND_REQUESTS) {
4076         SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PEER_DOESNT_ACCEPT);
4077         return -1;
4078     }
4079
4080     /* ...and there is none in flight yet... */
4081     if (s->tlsext_hb_pending) {
4082         SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_TLS_HEARTBEAT_PENDING);
4083         return -1;
4084     }
4085
4086     /* ...and no handshake in progress. */
4087     if (SSL_in_init(s) || s->in_handshake) {
4088         SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_UNEXPECTED_MESSAGE);
4089         return -1;
4090     }
4091
4092     /*
4093      * Check if padding is too long, payload and padding must not exceed 2^14
4094      * - 3 = 16381 bytes in total.
4095      */
4096     OPENSSL_assert(payload + padding <= 16381);
4097
4098     /*-
4099      * Create HeartBeat message, we just use a sequence number
4100      * as payload to distuingish different messages and add
4101      * some random stuff.
4102      *  - Message Type, 1 byte
4103      *  - Payload Length, 2 bytes (unsigned int)
4104      *  - Payload, the sequence number (2 bytes uint)
4105      *  - Payload, random bytes (16 bytes uint)
4106      *  - Padding
4107      */
4108     buf = OPENSSL_malloc(1 + 2 + payload + padding);
4109     if (buf == NULL)
4110         return -1;
4111     p = buf;
4112     /* Message Type */
4113     *p++ = TLS1_HB_REQUEST;
4114     /* Payload length (18 bytes here) */
4115     s2n(payload, p);
4116     /* Sequence number */
4117     s2n(s->tlsext_hb_seq, p);
4118     /* 16 random bytes */
4119     if (RAND_bytes(p, 16) <= 0) {
4120         SSLerr(SSL_F_TLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR);
4121         goto err;
4122     }
4123     p += 16;
4124     /* Random padding */
4125     if (RAND_bytes(p, padding) <= 0) {
4126         SSLerr(SSL_F_TLS1_HEARTBEAT, ERR_R_INTERNAL_ERROR);
4127         goto err;
4128     }
4129
4130     ret = ssl3_write_bytes(s, TLS1_RT_HEARTBEAT, buf, 3 + payload + padding);
4131     if (ret >= 0) {
4132         if (s->msg_callback)
4133             s->msg_callback(1, s->version, TLS1_RT_HEARTBEAT,
4134                             buf, 3 + payload + padding,
4135                             s, s->msg_callback_arg);
4136
4137         s->tlsext_hb_pending = 1;
4138     }
4139
4140 err:
4141     OPENSSL_free(buf);
4142
4143     return ret;
4144 }
4145 # endif
4146
4147 # define MAX_SIGALGLEN   (TLSEXT_hash_num * TLSEXT_signature_num * 2)
4148
4149 typedef struct {
4150     size_t sigalgcnt;
4151     int sigalgs[MAX_SIGALGLEN];
4152 } sig_cb_st;
4153
4154 static int sig_cb(const char *elem, int len, void *arg)
4155 {
4156     sig_cb_st *sarg = arg;
4157     size_t i;
4158     char etmp[20], *p;
4159     int sig_alg, hash_alg;
4160     if (elem == NULL)
4161         return 0;
4162     if (sarg->sigalgcnt == MAX_SIGALGLEN)
4163         return 0;
4164     if (len > (int)(sizeof(etmp) - 1))
4165         return 0;
4166     memcpy(etmp, elem, len);
4167     etmp[len] = 0;
4168     p = strchr(etmp, '+');
4169     if (!p)
4170         return 0;
4171     *p = 0;
4172     p++;
4173     if (!*p)
4174         return 0;
4175
4176     if (!strcmp(etmp, "RSA"))
4177         sig_alg = EVP_PKEY_RSA;
4178     else if (!strcmp(etmp, "DSA"))
4179         sig_alg = EVP_PKEY_DSA;
4180     else if (!strcmp(etmp, "ECDSA"))
4181         sig_alg = EVP_PKEY_EC;
4182     else
4183         return 0;
4184
4185     hash_alg = OBJ_sn2nid(p);
4186     if (hash_alg == NID_undef)
4187         hash_alg = OBJ_ln2nid(p);
4188     if (hash_alg == NID_undef)
4189         return 0;
4190
4191     for (i = 0; i < sarg->sigalgcnt; i += 2) {
4192         if (sarg->sigalgs[i] == sig_alg && sarg->sigalgs[i + 1] == hash_alg)
4193             return 0;
4194     }
4195     sarg->sigalgs[sarg->sigalgcnt++] = hash_alg;
4196     sarg->sigalgs[sarg->sigalgcnt++] = sig_alg;
4197     return 1;
4198 }
4199
4200 /*
4201  * Set suppored signature algorithms based on a colon separated list of the
4202  * form sig+hash e.g. RSA+SHA512:DSA+SHA512
4203  */
4204 int tls1_set_sigalgs_list(CERT *c, const char *str, int client)
4205 {
4206     sig_cb_st sig;
4207     sig.sigalgcnt = 0;
4208     if (!CONF_parse_list(str, ':', 1, sig_cb, &sig))
4209         return 0;
4210     if (c == NULL)
4211         return 1;
4212     return tls1_set_sigalgs(c, sig.sigalgs, sig.sigalgcnt, client);
4213 }
4214
4215 int tls1_set_sigalgs(CERT *c, const int *psig_nids, size_t salglen,
4216                      int client)
4217 {
4218     unsigned char *sigalgs, *sptr;
4219     int rhash, rsign;
4220     size_t i;
4221     if (salglen & 1)
4222         return 0;
4223     sigalgs = OPENSSL_malloc(salglen);
4224     if (sigalgs == NULL)
4225         return 0;
4226     for (i = 0, sptr = sigalgs; i < salglen; i += 2) {
4227         rhash = tls12_find_id(*psig_nids++, tls12_md,
4228                               sizeof(tls12_md) / sizeof(tls12_lookup));
4229         rsign = tls12_find_id(*psig_nids++, tls12_sig,
4230                               sizeof(tls12_sig) / sizeof(tls12_lookup));
4231
4232         if (rhash == -1 || rsign == -1)
4233             goto err;
4234         *sptr++ = rhash;
4235         *sptr++ = rsign;
4236     }
4237
4238     if (client) {
4239         if (c->client_sigalgs)
4240             OPENSSL_free(c->client_sigalgs);
4241         c->client_sigalgs = sigalgs;
4242         c->client_sigalgslen = salglen;
4243     } else {
4244         if (c->conf_sigalgs)
4245             OPENSSL_free(c->conf_sigalgs);
4246         c->conf_sigalgs = sigalgs;
4247         c->conf_sigalgslen = salglen;
4248     }
4249
4250     return 1;
4251
4252  err:
4253     OPENSSL_free(sigalgs);
4254     return 0;
4255 }
4256
4257 static int tls1_check_sig_alg(CERT *c, X509 *x, int default_nid)
4258 {
4259     int sig_nid;
4260     size_t i;
4261     if (default_nid == -1)
4262         return 1;
4263     sig_nid = X509_get_signature_nid(x);
4264     if (default_nid)
4265         return sig_nid == default_nid ? 1 : 0;
4266     for (i = 0; i < c->shared_sigalgslen; i++)
4267         if (sig_nid == c->shared_sigalgs[i].signandhash_nid)
4268             return 1;
4269     return 0;
4270 }
4271
4272 /* Check to see if a certificate issuer name matches list of CA names */
4273 static int ssl_check_ca_name(STACK_OF(X509_NAME) *names, X509 *x)
4274 {
4275     X509_NAME *nm;
4276     int i;
4277     nm = X509_get_issuer_name(x);
4278     for (i = 0; i < sk_X509_NAME_num(names); i++) {
4279         if (!X509_NAME_cmp(nm, sk_X509_NAME_value(names, i)))
4280             return 1;
4281     }
4282     return 0;
4283 }
4284
4285 /*
4286  * Check certificate chain is consistent with TLS extensions and is usable by
4287  * server. This servers two purposes: it allows users to check chains before
4288  * passing them to the server and it allows the server to check chains before
4289  * attempting to use them.
4290  */
4291
4292 /* Flags which need to be set for a certificate when stict mode not set */
4293
4294 # define CERT_PKEY_VALID_FLAGS \
4295         (CERT_PKEY_EE_SIGNATURE|CERT_PKEY_EE_PARAM)
4296 /* Strict mode flags */
4297 # define CERT_PKEY_STRICT_FLAGS \
4298          (CERT_PKEY_VALID_FLAGS|CERT_PKEY_CA_SIGNATURE|CERT_PKEY_CA_PARAM \
4299          | CERT_PKEY_ISSUER_NAME|CERT_PKEY_CERT_TYPE)
4300
4301 int tls1_check_chain(SSL *s, X509 *x, EVP_PKEY *pk, STACK_OF(X509) *chain,
4302                      int idx)
4303 {
4304     int i;
4305     int rv = 0;
4306     int check_flags = 0, strict_mode;
4307     CERT_PKEY *cpk = NULL;
4308     CERT *c = s->cert;
4309     unsigned int suiteb_flags = tls1_suiteb(s);
4310     /* idx == -1 means checking server chains */
4311     if (idx != -1) {
4312         /* idx == -2 means checking client certificate chains */
4313         if (idx == -2) {
4314             cpk = c->key;
4315             idx = cpk - c->pkeys;
4316         } else
4317             cpk = c->pkeys + idx;
4318         x = cpk->x509;
4319         pk = cpk->privatekey;
4320         chain = cpk->chain;
4321         strict_mode = c->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT;
4322         /* If no cert or key, forget it */
4323         if (!x || !pk)
4324             goto end;
4325 # ifdef OPENSSL_SSL_DEBUG_BROKEN_PROTOCOL
4326         /* Allow any certificate to pass test */
4327         if (s->cert->cert_flags & SSL_CERT_FLAG_BROKEN_PROTOCOL) {
4328             rv = CERT_PKEY_STRICT_FLAGS | CERT_PKEY_EXPLICIT_SIGN |
4329                 CERT_PKEY_VALID | CERT_PKEY_SIGN;
4330             cpk->valid_flags = rv;
4331             return rv;
4332         }
4333 # endif
4334     } else {
4335         if (!x || !pk)
4336             return 0;
4337         idx = ssl_cert_type(x, pk);
4338         if (idx == -1)
4339             return 0;
4340         cpk = c->pkeys + idx;
4341         if (c->cert_flags & SSL_CERT_FLAGS_CHECK_TLS_STRICT)
4342             check_flags = CERT_PKEY_STRICT_FLAGS;
4343         else
4344             check_flags = CERT_PKEY_VALID_FLAGS;
4345         strict_mode = 1;
4346     }
4347
4348     if (suiteb_flags) {
4349         int ok;
4350         if (check_flags)
4351             check_flags |= CERT_PKEY_SUITEB;
4352         ok = X509_chain_check_suiteb(NULL, x, chain, suiteb_flags);
4353         if (ok == X509_V_OK)
4354             rv |= CERT_PKEY_SUITEB;
4355         else if (!check_flags)
4356             goto end;
4357     }
4358
4359     /*
4360      * Check all signature algorithms are consistent with signature
4361      * algorithms extension if TLS 1.2 or later and strict mode.
4362      */
4363     if (TLS1_get_version(s) >= TLS1_2_VERSION && strict_mode) {
4364         int default_nid;
4365         unsigned char rsign = 0;
4366         if (c->peer_sigalgs)
4367             default_nid = 0;
4368         /* If no sigalgs extension use defaults from RFC5246 */
4369         else {
4370             switch (idx) {
4371             case SSL_PKEY_RSA_ENC:
4372             case SSL_PKEY_RSA_SIGN:
4373             case SSL_PKEY_DH_RSA:
4374                 rsign = TLSEXT_signature_rsa;
4375                 default_nid = NID_sha1WithRSAEncryption;
4376                 break;
4377
4378             case SSL_PKEY_DSA_SIGN:
4379             case SSL_PKEY_DH_DSA:
4380                 rsign = TLSEXT_signature_dsa;
4381                 default_nid = NID_dsaWithSHA1;
4382                 break;
4383
4384             case SSL_PKEY_ECC:
4385                 rsign = TLSEXT_signature_ecdsa;
4386                 default_nid = NID_ecdsa_with_SHA1;
4387                 break;
4388
4389             default:
4390                 default_nid = -1;
4391                 break;
4392             }
4393         }
4394         /*
4395          * If peer sent no signature algorithms extension and we have set
4396          * preferred signature algorithms check we support sha1.
4397          */
4398         if (default_nid > 0 && c->conf_sigalgs) {
4399             size_t j;
4400             const unsigned char *p = c->conf_sigalgs;
4401             for (j = 0; j < c->conf_sigalgslen; j += 2, p += 2) {
4402                 if (p[0] == TLSEXT_hash_sha1 && p[1] == rsign)
4403                     break;
4404             }
4405             if (j == c->conf_sigalgslen) {
4406                 if (check_flags)
4407                     goto skip_sigs;
4408                 else
4409                     goto end;
4410             }
4411         }
4412         /* Check signature algorithm of each cert in chain */
4413         if (!tls1_check_sig_alg(c, x, default_nid)) {
4414             if (!check_flags)
4415                 goto end;
4416         } else
4417             rv |= CERT_PKEY_EE_SIGNATURE;
4418         rv |= CERT_PKEY_CA_SIGNATURE;
4419         for (i = 0; i < sk_X509_num(chain); i++) {
4420             if (!tls1_check_sig_alg(c, sk_X509_value(chain, i), default_nid)) {
4421                 if (check_flags) {
4422                     rv &= ~CERT_PKEY_CA_SIGNATURE;
4423                     break;
4424                 } else
4425                     goto end;
4426             }
4427         }
4428     }
4429     /* Else not TLS 1.2, so mark EE and CA signing algorithms OK */
4430     else if (check_flags)
4431         rv |= CERT_PKEY_EE_SIGNATURE | CERT_PKEY_CA_SIGNATURE;
4432  skip_sigs:
4433     /* Check cert parameters are consistent */
4434     if (tls1_check_cert_param(s, x, check_flags ? 1 : 2))
4435         rv |= CERT_PKEY_EE_PARAM;
4436     else if (!check_flags)
4437         goto end;
4438     if (!s->server)
4439         rv |= CERT_PKEY_CA_PARAM;
4440     /* In strict mode check rest of chain too */
4441     else if (strict_mode) {
4442         rv |= CERT_PKEY_CA_PARAM;
4443         for (i = 0; i < sk_X509_num(chain); i++) {
4444             X509 *ca = sk_X509_value(chain, i);
4445             if (!tls1_check_cert_param(s, ca, 0)) {
4446                 if (check_flags) {
4447                     rv &= ~CERT_PKEY_CA_PARAM;
4448                     break;
4449                 } else
4450                     goto end;
4451             }
4452         }
4453     }
4454     if (!s->server && strict_mode) {
4455         STACK_OF(X509_NAME) *ca_dn;
4456         int check_type = 0;
4457         switch (pk->type) {
4458         case EVP_PKEY_RSA:
4459             check_type = TLS_CT_RSA_SIGN;
4460             break;
4461         case EVP_PKEY_DSA:
4462             check_type = TLS_CT_DSS_SIGN;
4463             break;
4464         case EVP_PKEY_EC:
4465             check_type = TLS_CT_ECDSA_SIGN;
4466             break;
4467         case EVP_PKEY_DH:
4468         case EVP_PKEY_DHX:
4469             {
4470                 int cert_type = X509_certificate_type(x, pk);
4471                 if (cert_type & EVP_PKS_RSA)
4472                     check_type = TLS_CT_RSA_FIXED_DH;
4473                 if (cert_type & EVP_PKS_DSA)
4474                     check_type = TLS_CT_DSS_FIXED_DH;
4475             }
4476         }
4477         if (check_type) {
4478             const unsigned char *ctypes;
4479             int ctypelen;
4480             if (c->ctypes) {
4481                 ctypes = c->ctypes;
4482                 ctypelen = (int)c->ctype_num;
4483             } else {
4484                 ctypes = (unsigned char *)s->s3->tmp.ctype;
4485                 ctypelen = s->s3->tmp.ctype_num;
4486             }
4487             for (i = 0; i < ctypelen; i++) {
4488                 if (ctypes[i] == check_type) {
4489                     rv |= CERT_PKEY_CERT_TYPE;
4490                     break;
4491                 }
4492             }
4493             if (!(rv & CERT_PKEY_CERT_TYPE) && !check_flags)
4494                 goto end;
4495         } else
4496             rv |= CERT_PKEY_CERT_TYPE;
4497
4498         ca_dn = s->s3->tmp.ca_names;
4499
4500         if (!sk_X509_NAME_num(ca_dn))
4501             rv |= CERT_PKEY_ISSUER_NAME;
4502
4503         if (!(rv & CERT_PKEY_ISSUER_NAME)) {
4504             if (ssl_check_ca_name(ca_dn, x))
4505                 rv |= CERT_PKEY_ISSUER_NAME;
4506         }
4507         if (!(rv & CERT_PKEY_ISSUER_NAME)) {
4508             for (i = 0; i < sk_X509_num(chain); i++) {
4509                 X509 *xtmp = sk_X509_value(chain, i);
4510                 if (ssl_check_ca_name(ca_dn, xtmp)) {
4511                     rv |= CERT_PKEY_ISSUER_NAME;
4512                     break;
4513                 }
4514             }
4515         }
4516         if (!check_flags && !(rv & CERT_PKEY_ISSUER_NAME))
4517             goto end;
4518     } else
4519         rv |= CERT_PKEY_ISSUER_NAME | CERT_PKEY_CERT_TYPE;
4520
4521     if (!check_flags || (rv & check_flags) == check_flags)
4522         rv |= CERT_PKEY_VALID;
4523
4524  end:
4525
4526     if (TLS1_get_version(s) >= TLS1_2_VERSION) {
4527         if (cpk->valid_flags & CERT_PKEY_EXPLICIT_SIGN)
4528             rv |= CERT_PKEY_EXPLICIT_SIGN | CERT_PKEY_SIGN;
4529         else if (cpk->digest)
4530             rv |= CERT_PKEY_SIGN;
4531     } else
4532         rv |= CERT_PKEY_SIGN | CERT_PKEY_EXPLICIT_SIGN;
4533
4534     /*
4535      * When checking a CERT_PKEY structure all flags are irrelevant if the
4536      * chain is invalid.
4537      */
4538     if (!check_flags) {
4539         if (rv & CERT_PKEY_VALID)
4540             cpk->valid_flags = rv;
4541         else {
4542             /* Preserve explicit sign flag, clear rest */
4543             cpk->valid_flags &= CERT_PKEY_EXPLICIT_SIGN;
4544             return 0;
4545         }
4546     }
4547     return rv;
4548 }
4549
4550 /* Set validity of certificates in an SSL structure */
4551 void tls1_set_cert_validity(SSL *s)
4552 {
4553     tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_RSA_ENC);
4554     tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_RSA_SIGN);
4555     tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_DSA_SIGN);
4556     tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_DH_RSA);
4557     tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_DH_DSA);
4558     tls1_check_chain(s, NULL, NULL, NULL, SSL_PKEY_ECC);
4559 }
4560
4561 /* User level utiity function to check a chain is suitable */
4562 int SSL_check_chain(SSL *s, X509 *x, EVP_PKEY *pk, STACK_OF(X509) *chain)
4563 {
4564     return tls1_check_chain(s, x, pk, chain, -1);
4565 }
4566
4567 #endif