blob: ee2c7fe342fbfecebfc0dc900f92b6e7993aa2a4 [file] [log] [blame]
Adam Langley95c29f32014-06-20 12:00:00 -07001/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57/* ====================================================================
58 * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
59 *
60 * Redistribution and use in source and binary forms, with or without
61 * modification, are permitted provided that the following conditions
62 * are met:
63 *
64 * 1. Redistributions of source code must retain the above copyright
65 * notice, this list of conditions and the following disclaimer.
66 *
67 * 2. Redistributions in binary form must reproduce the above copyright
68 * notice, this list of conditions and the following disclaimer in
69 * the documentation and/or other materials provided with the
70 * distribution.
71 *
72 * 3. All advertising materials mentioning features or use of this
73 * software must display the following acknowledgment:
74 * "This product includes software developed by the OpenSSL Project
75 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
76 *
77 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
78 * endorse or promote products derived from this software without
79 * prior written permission. For written permission, please contact
80 * openssl-core@openssl.org.
81 *
82 * 5. Products derived from this software may not be called "OpenSSL"
83 * nor may "OpenSSL" appear in their names without prior written
84 * permission of the OpenSSL Project.
85 *
86 * 6. Redistributions of any form whatsoever must retain the following
87 * acknowledgment:
88 * "This product includes software developed by the OpenSSL Project
89 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
90 *
91 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
92 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
93 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
94 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
95 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
96 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
97 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
98 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
99 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
100 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
101 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 * OF THE POSSIBILITY OF SUCH DAMAGE.
103 * ====================================================================
104 *
105 * This product includes cryptographic software written by Eric Young
106 * (eay@cryptsoft.com). This product includes software written by Tim
107 * Hudson (tjh@cryptsoft.com). */
108
David Benjamin9e4e01e2015-09-15 01:48:04 -0400109#include <openssl/ssl.h>
110
David Benjaminf0ae1702015-04-07 23:05:04 -0400111#include <assert.h>
David Benjamine3aa1d92015-06-16 15:34:50 -0400112#include <limits.h>
David Benjamin35a7a442014-07-05 00:23:20 -0400113#include <stdlib.h>
David Benjaminf0ae1702015-04-07 23:05:04 -0400114#include <string.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700115
David Benjamin03973092014-06-24 23:27:17 -0400116#include <openssl/bytestring.h>
David Benjamind6a4ae92015-08-06 11:10:51 -0400117#include <openssl/digest.h>
David Benjaminf0ae1702015-04-07 23:05:04 -0400118#include <openssl/err.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700119#include <openssl/evp.h>
120#include <openssl/hmac.h>
121#include <openssl/mem.h>
David Benjamin98193672016-03-25 18:07:11 -0400122#include <openssl/nid.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700123#include <openssl/rand.h>
Matt Braithwaitee564a5b2015-09-30 15:24:05 -0700124#include <openssl/type_check.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700125
David Benjamin2ee94aa2015-04-07 22:38:30 -0400126#include "internal.h"
Adam Langleyfcf25832014-12-18 17:42:32 -0800127
128
David Benjamin0d56f882015-12-19 17:05:56 -0500129static int ssl_check_clienthello_tlsext(SSL *ssl);
130static int ssl_check_serverhello_tlsext(SSL *ssl);
Adam Langley95c29f32014-06-20 12:00:00 -0700131
Adam Langleyfcf25832014-12-18 17:42:32 -0800132static int compare_uint16_t(const void *p1, const void *p2) {
133 uint16_t u1 = *((const uint16_t *)p1);
134 uint16_t u2 = *((const uint16_t *)p2);
135 if (u1 < u2) {
136 return -1;
137 } else if (u1 > u2) {
138 return 1;
139 } else {
140 return 0;
141 }
142}
David Benjamin35a7a442014-07-05 00:23:20 -0400143
Adam Langleyfcf25832014-12-18 17:42:32 -0800144/* Per http://tools.ietf.org/html/rfc5246#section-7.4.1.4, there may not be
145 * more than one extension of the same type in a ClientHello or ServerHello.
146 * This function does an initial scan over the extensions block to filter those
David Benjamin35a7a442014-07-05 00:23:20 -0400147 * out. */
Adam Langleyfcf25832014-12-18 17:42:32 -0800148static int tls1_check_duplicate_extensions(const CBS *cbs) {
149 CBS extensions = *cbs;
150 size_t num_extensions = 0, i = 0;
151 uint16_t *extension_types = NULL;
152 int ret = 0;
David Benjamin35a7a442014-07-05 00:23:20 -0400153
Adam Langleyfcf25832014-12-18 17:42:32 -0800154 /* First pass: count the extensions. */
155 while (CBS_len(&extensions) > 0) {
156 uint16_t type;
157 CBS extension;
David Benjamin35a7a442014-07-05 00:23:20 -0400158
Adam Langleyfcf25832014-12-18 17:42:32 -0800159 if (!CBS_get_u16(&extensions, &type) ||
160 !CBS_get_u16_length_prefixed(&extensions, &extension)) {
161 goto done;
162 }
David Benjamin35a7a442014-07-05 00:23:20 -0400163
Adam Langleyfcf25832014-12-18 17:42:32 -0800164 num_extensions++;
165 }
David Benjamin35a7a442014-07-05 00:23:20 -0400166
Adam Langleyfcf25832014-12-18 17:42:32 -0800167 if (num_extensions == 0) {
168 return 1;
169 }
David Benjamin9a373592014-07-25 04:27:53 -0400170
Brian Smith5ba06892016-02-07 09:36:04 -1000171 extension_types = OPENSSL_malloc(sizeof(uint16_t) * num_extensions);
Adam Langleyfcf25832014-12-18 17:42:32 -0800172 if (extension_types == NULL) {
David Benjamin3570d732015-06-29 00:28:17 -0400173 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
Adam Langleyfcf25832014-12-18 17:42:32 -0800174 goto done;
175 }
David Benjamin35a7a442014-07-05 00:23:20 -0400176
Adam Langleyfcf25832014-12-18 17:42:32 -0800177 /* Second pass: gather the extension types. */
178 extensions = *cbs;
179 for (i = 0; i < num_extensions; i++) {
180 CBS extension;
David Benjamin35a7a442014-07-05 00:23:20 -0400181
Adam Langleyfcf25832014-12-18 17:42:32 -0800182 if (!CBS_get_u16(&extensions, &extension_types[i]) ||
183 !CBS_get_u16_length_prefixed(&extensions, &extension)) {
184 /* This should not happen. */
185 goto done;
186 }
187 }
188 assert(CBS_len(&extensions) == 0);
David Benjamin35a7a442014-07-05 00:23:20 -0400189
Adam Langleyfcf25832014-12-18 17:42:32 -0800190 /* Sort the extensions and make sure there are no duplicates. */
191 qsort(extension_types, num_extensions, sizeof(uint16_t), compare_uint16_t);
192 for (i = 1; i < num_extensions; i++) {
193 if (extension_types[i - 1] == extension_types[i]) {
194 goto done;
195 }
196 }
David Benjamin35a7a442014-07-05 00:23:20 -0400197
Adam Langleyfcf25832014-12-18 17:42:32 -0800198 ret = 1;
199
David Benjamin35a7a442014-07-05 00:23:20 -0400200done:
David Benjamin2755a3e2015-04-22 16:17:58 -0400201 OPENSSL_free(extension_types);
Adam Langleyfcf25832014-12-18 17:42:32 -0800202 return ret;
203}
David Benjamin35a7a442014-07-05 00:23:20 -0400204
Adam Langleyfcf25832014-12-18 17:42:32 -0800205char ssl_early_callback_init(struct ssl_early_callback_ctx *ctx) {
206 CBS client_hello, session_id, cipher_suites, compression_methods, extensions;
David Benjamin8f2c20e2014-07-09 09:30:38 -0400207
Adam Langleyfcf25832014-12-18 17:42:32 -0800208 CBS_init(&client_hello, ctx->client_hello, ctx->client_hello_len);
Adam Langleydc9b1412014-06-20 12:00:00 -0700209
Adam Langleyfcf25832014-12-18 17:42:32 -0800210 if (/* Skip client version. */
211 !CBS_skip(&client_hello, 2) ||
212 /* Skip client nonce. */
213 !CBS_skip(&client_hello, 32) ||
214 /* Extract session_id. */
215 !CBS_get_u8_length_prefixed(&client_hello, &session_id)) {
216 return 0;
217 }
Adam Langleydc9b1412014-06-20 12:00:00 -0700218
Adam Langleyfcf25832014-12-18 17:42:32 -0800219 ctx->session_id = CBS_data(&session_id);
220 ctx->session_id_len = CBS_len(&session_id);
Adam Langleydc9b1412014-06-20 12:00:00 -0700221
Adam Langleyfcf25832014-12-18 17:42:32 -0800222 /* Skip past DTLS cookie */
223 if (SSL_IS_DTLS(ctx->ssl)) {
224 CBS cookie;
Adam Langleydc9b1412014-06-20 12:00:00 -0700225
Adam Langleyfcf25832014-12-18 17:42:32 -0800226 if (!CBS_get_u8_length_prefixed(&client_hello, &cookie)) {
227 return 0;
228 }
229 }
Adam Langleydc9b1412014-06-20 12:00:00 -0700230
Adam Langleyfcf25832014-12-18 17:42:32 -0800231 /* Extract cipher_suites. */
232 if (!CBS_get_u16_length_prefixed(&client_hello, &cipher_suites) ||
233 CBS_len(&cipher_suites) < 2 || (CBS_len(&cipher_suites) & 1) != 0) {
234 return 0;
235 }
236 ctx->cipher_suites = CBS_data(&cipher_suites);
237 ctx->cipher_suites_len = CBS_len(&cipher_suites);
Adam Langleydc9b1412014-06-20 12:00:00 -0700238
Adam Langleyfcf25832014-12-18 17:42:32 -0800239 /* Extract compression_methods. */
240 if (!CBS_get_u8_length_prefixed(&client_hello, &compression_methods) ||
241 CBS_len(&compression_methods) < 1) {
242 return 0;
243 }
244 ctx->compression_methods = CBS_data(&compression_methods);
245 ctx->compression_methods_len = CBS_len(&compression_methods);
Adam Langleydc9b1412014-06-20 12:00:00 -0700246
Adam Langleyfcf25832014-12-18 17:42:32 -0800247 /* If the ClientHello ends here then it's valid, but doesn't have any
248 * extensions. (E.g. SSLv3.) */
249 if (CBS_len(&client_hello) == 0) {
250 ctx->extensions = NULL;
251 ctx->extensions_len = 0;
252 return 1;
253 }
Adam Langleydc9b1412014-06-20 12:00:00 -0700254
Adam Langleyfcf25832014-12-18 17:42:32 -0800255 /* Extract extensions and check it is valid. */
256 if (!CBS_get_u16_length_prefixed(&client_hello, &extensions) ||
257 !tls1_check_duplicate_extensions(&extensions) ||
258 CBS_len(&client_hello) != 0) {
259 return 0;
260 }
261 ctx->extensions = CBS_data(&extensions);
262 ctx->extensions_len = CBS_len(&extensions);
Adam Langleydc9b1412014-06-20 12:00:00 -0700263
Adam Langleyfcf25832014-12-18 17:42:32 -0800264 return 1;
265}
Adam Langleydc9b1412014-06-20 12:00:00 -0700266
David Benjamind4c2bce2015-10-17 12:28:18 -0400267int SSL_early_callback_ctx_extension_get(
Adam Langleyfcf25832014-12-18 17:42:32 -0800268 const struct ssl_early_callback_ctx *ctx, uint16_t extension_type,
269 const uint8_t **out_data, size_t *out_len) {
270 CBS extensions;
Adam Langleydc9b1412014-06-20 12:00:00 -0700271
Adam Langleyfcf25832014-12-18 17:42:32 -0800272 CBS_init(&extensions, ctx->extensions, ctx->extensions_len);
Adam Langleydc9b1412014-06-20 12:00:00 -0700273
Adam Langleyfcf25832014-12-18 17:42:32 -0800274 while (CBS_len(&extensions) != 0) {
275 uint16_t type;
276 CBS extension;
David Benjamin8f2c20e2014-07-09 09:30:38 -0400277
Adam Langleyfcf25832014-12-18 17:42:32 -0800278 /* Decode the next extension. */
279 if (!CBS_get_u16(&extensions, &type) ||
280 !CBS_get_u16_length_prefixed(&extensions, &extension)) {
281 return 0;
282 }
Adam Langleydc9b1412014-06-20 12:00:00 -0700283
Adam Langleyfcf25832014-12-18 17:42:32 -0800284 if (type == extension_type) {
285 *out_data = CBS_data(&extension);
286 *out_len = CBS_len(&extension);
287 return 1;
288 }
289 }
Adam Langleydc9b1412014-06-20 12:00:00 -0700290
Adam Langleyfcf25832014-12-18 17:42:32 -0800291 return 0;
292}
Adam Langley95c29f32014-06-20 12:00:00 -0700293
Steven Valdezce902a92016-05-17 11:47:53 -0400294static const uint16_t kDefaultGroups[] = {
David Benjamin9e68f192016-06-30 14:55:33 -0400295 SSL_CURVE_X25519,
296 SSL_CURVE_SECP256R1,
297 SSL_CURVE_SECP384R1,
Adam Langleyd98dc132015-09-23 16:41:33 -0700298#if defined(BORINGSSL_ANDROID_SYSTEM)
David Benjamin9e68f192016-06-30 14:55:33 -0400299 SSL_CURVE_SECP521R1,
Adam Langleyd98dc132015-09-23 16:41:33 -0700300#endif
Adam Langleyfcf25832014-12-18 17:42:32 -0800301};
Adam Langley95c29f32014-06-20 12:00:00 -0700302
Steven Valdezce902a92016-05-17 11:47:53 -0400303/* tls1_get_grouplist sets |*out_group_ids| and |*out_group_ids_len| to the
304 * list of allowed group IDs. If |get_peer_groups| is non-zero, return the
305 * peer's group list. Otherwise, return the preferred list. */
306static void tls1_get_grouplist(SSL *ssl, int get_peer_groups,
307 const uint16_t **out_group_ids,
308 size_t *out_group_ids_len) {
309 if (get_peer_groups) {
310 /* Only clients send a supported group list, so this function is only
311 * called on the server. */
David Benjamin0d56f882015-12-19 17:05:56 -0500312 assert(ssl->server);
Steven Valdezce902a92016-05-17 11:47:53 -0400313 *out_group_ids = ssl->s3->tmp.peer_supported_group_list;
314 *out_group_ids_len = ssl->s3->tmp.peer_supported_group_list_len;
Adam Langleyfcf25832014-12-18 17:42:32 -0800315 return;
316 }
Adam Langley95c29f32014-06-20 12:00:00 -0700317
Steven Valdezce902a92016-05-17 11:47:53 -0400318 *out_group_ids = ssl->supported_group_list;
319 *out_group_ids_len = ssl->supported_group_list_len;
320 if (!*out_group_ids) {
321 *out_group_ids = kDefaultGroups;
322 *out_group_ids_len = sizeof(kDefaultGroups) / sizeof(kDefaultGroups[0]);
Adam Langleyfcf25832014-12-18 17:42:32 -0800323 }
324}
David Benjamined439582014-07-14 19:13:02 -0400325
Steven Valdezce902a92016-05-17 11:47:53 -0400326int tls1_get_shared_group(SSL *ssl, uint16_t *out_group_id) {
327 const uint16_t *groups, *peer_groups, *pref, *supp;
328 size_t groups_len, peer_groups_len, pref_len, supp_len, i, j;
David Benjamin072334d2014-07-13 16:24:27 -0400329
Adam Langleyfcf25832014-12-18 17:42:32 -0800330 /* Can't do anything on client side */
David Benjamin4298d772015-12-19 00:18:25 -0500331 if (ssl->server == 0) {
332 return 0;
Adam Langleyfcf25832014-12-18 17:42:32 -0800333 }
334
Steven Valdezce902a92016-05-17 11:47:53 -0400335 tls1_get_grouplist(ssl, 0 /* local groups */, &groups, &groups_len);
336 tls1_get_grouplist(ssl, 1 /* peer groups */, &peer_groups, &peer_groups_len);
Adam Langleyfcf25832014-12-18 17:42:32 -0800337
Steven Valdezce902a92016-05-17 11:47:53 -0400338 if (peer_groups_len == 0) {
339 /* Clients are not required to send a supported_groups extension. In this
340 * case, the server is free to pick any group it likes. See RFC 4492,
David Benjamin4298d772015-12-19 00:18:25 -0500341 * section 4, paragraph 3.
342 *
343 * However, in the interests of compatibility, we will skip ECDH if the
344 * client didn't send an extension because we can't be sure that they'll
Steven Valdezce902a92016-05-17 11:47:53 -0400345 * support our favoured group. */
David Benjamin4298d772015-12-19 00:18:25 -0500346 return 0;
David Benjamin55a43642015-04-20 14:45:55 -0400347 }
348
David Benjamin4298d772015-12-19 00:18:25 -0500349 if (ssl->options & SSL_OP_CIPHER_SERVER_PREFERENCE) {
Steven Valdezce902a92016-05-17 11:47:53 -0400350 pref = groups;
351 pref_len = groups_len;
352 supp = peer_groups;
353 supp_len = peer_groups_len;
David Benjamin55a43642015-04-20 14:45:55 -0400354 } else {
Steven Valdezce902a92016-05-17 11:47:53 -0400355 pref = peer_groups;
356 pref_len = peer_groups_len;
357 supp = groups;
358 supp_len = groups_len;
David Benjamin55a43642015-04-20 14:45:55 -0400359 }
360
361 for (i = 0; i < pref_len; i++) {
362 for (j = 0; j < supp_len; j++) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800363 if (pref[i] == supp[j]) {
Steven Valdezce902a92016-05-17 11:47:53 -0400364 *out_group_id = pref[i];
David Benjamin4298d772015-12-19 00:18:25 -0500365 return 1;
Adam Langleyfcf25832014-12-18 17:42:32 -0800366 }
367 }
368 }
369
David Benjamin4298d772015-12-19 00:18:25 -0500370 return 0;
Adam Langleyfcf25832014-12-18 17:42:32 -0800371}
Adam Langley95c29f32014-06-20 12:00:00 -0700372
Steven Valdezce902a92016-05-17 11:47:53 -0400373int tls1_set_curves(uint16_t **out_group_ids, size_t *out_group_ids_len,
Adam Langleyfcf25832014-12-18 17:42:32 -0800374 const int *curves, size_t ncurves) {
Steven Valdezce902a92016-05-17 11:47:53 -0400375 uint16_t *group_ids;
Adam Langleyfcf25832014-12-18 17:42:32 -0800376 size_t i;
377
Steven Valdezce902a92016-05-17 11:47:53 -0400378 group_ids = OPENSSL_malloc(ncurves * sizeof(uint16_t));
379 if (group_ids == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800380 return 0;
381 }
382
383 for (i = 0; i < ncurves; i++) {
Steven Valdezce902a92016-05-17 11:47:53 -0400384 if (!ssl_nid_to_group_id(&group_ids[i], curves[i])) {
385 OPENSSL_free(group_ids);
Adam Langleyfcf25832014-12-18 17:42:32 -0800386 return 0;
387 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800388 }
389
Steven Valdezce902a92016-05-17 11:47:53 -0400390 OPENSSL_free(*out_group_ids);
391 *out_group_ids = group_ids;
392 *out_group_ids_len = ncurves;
Adam Langleyfcf25832014-12-18 17:42:32 -0800393
394 return 1;
395}
Adam Langley95c29f32014-06-20 12:00:00 -0700396
Steven Valdezce902a92016-05-17 11:47:53 -0400397/* tls1_curve_params_from_ec_key sets |*out_group_id| and |*out_comp_id| to the
398 * TLS group ID and point format, respectively, for |ec|. It returns one on
David Benjamin072334d2014-07-13 16:24:27 -0400399 * success and zero on failure. */
Steven Valdezce902a92016-05-17 11:47:53 -0400400static int tls1_curve_params_from_ec_key(uint16_t *out_group_id,
Adam Langleyfcf25832014-12-18 17:42:32 -0800401 uint8_t *out_comp_id, EC_KEY *ec) {
402 int nid;
403 uint16_t id;
404 const EC_GROUP *grp;
Adam Langley95c29f32014-06-20 12:00:00 -0700405
Adam Langleyfcf25832014-12-18 17:42:32 -0800406 if (ec == NULL) {
407 return 0;
408 }
Adam Langley95c29f32014-06-20 12:00:00 -0700409
Adam Langleyfcf25832014-12-18 17:42:32 -0800410 grp = EC_KEY_get0_group(ec);
411 if (grp == NULL) {
412 return 0;
413 }
David Benjamin072334d2014-07-13 16:24:27 -0400414
Steven Valdezce902a92016-05-17 11:47:53 -0400415 /* Determine group ID */
Adam Langleyfcf25832014-12-18 17:42:32 -0800416 nid = EC_GROUP_get_curve_name(grp);
Steven Valdezce902a92016-05-17 11:47:53 -0400417 if (!ssl_nid_to_group_id(&id, nid)) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800418 return 0;
419 }
David Benjamin072334d2014-07-13 16:24:27 -0400420
Steven Valdezce902a92016-05-17 11:47:53 -0400421 /* Set the named group ID. Arbitrary explicit groups are not supported. */
422 *out_group_id = id;
Adam Langleyfcf25832014-12-18 17:42:32 -0800423
424 if (out_comp_id) {
425 if (EC_KEY_get0_public_key(ec) == NULL) {
426 return 0;
427 }
428 if (EC_KEY_get_conv_form(ec) == POINT_CONVERSION_COMPRESSED) {
429 *out_comp_id = TLSEXT_ECPOINTFORMAT_ansiX962_compressed_prime;
430 } else {
431 *out_comp_id = TLSEXT_ECPOINTFORMAT_uncompressed;
432 }
433 }
434
435 return 1;
436}
David Benjamin072334d2014-07-13 16:24:27 -0400437
Steven Valdezce902a92016-05-17 11:47:53 -0400438/* tls1_check_group_id returns one if |group_id| is consistent with both our
439 * and the peer's group preferences. Note: if called as the client, only our
David Benjamin42e9a772014-09-02 23:18:44 -0400440 * preferences are checked; the peer (the server) does not send preferences. */
Steven Valdezce902a92016-05-17 11:47:53 -0400441int tls1_check_group_id(SSL *ssl, uint16_t group_id) {
442 const uint16_t *groups;
443 size_t groups_len, i, get_peer_groups;
David Benjamin42e9a772014-09-02 23:18:44 -0400444
Adam Langleyfcf25832014-12-18 17:42:32 -0800445 /* Check against our list, then the peer's list. */
Steven Valdezce902a92016-05-17 11:47:53 -0400446 for (get_peer_groups = 0; get_peer_groups <= 1; get_peer_groups++) {
447 if (get_peer_groups && !ssl->server) {
David Benjamin55a43642015-04-20 14:45:55 -0400448 /* Servers do not present a preference list so, if we are a client, only
449 * check our list. */
450 continue;
451 }
452
Steven Valdezce902a92016-05-17 11:47:53 -0400453 tls1_get_grouplist(ssl, get_peer_groups, &groups, &groups_len);
454 if (get_peer_groups && groups_len == 0) {
455 /* Clients are not required to send a supported_groups extension. In this
456 * case, the server is free to pick any group it likes. See RFC 4492,
David Benjamin55a43642015-04-20 14:45:55 -0400457 * section 4, paragraph 3. */
458 continue;
459 }
Steven Valdezce902a92016-05-17 11:47:53 -0400460 for (i = 0; i < groups_len; i++) {
461 if (groups[i] == group_id) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800462 break;
463 }
464 }
Adam Langley95c29f32014-06-20 12:00:00 -0700465
Steven Valdezce902a92016-05-17 11:47:53 -0400466 if (i == groups_len) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800467 return 0;
468 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800469 }
David Benjamin033e5f42014-11-13 18:47:41 -0500470
Adam Langleyfcf25832014-12-18 17:42:32 -0800471 return 1;
472}
David Benjamin033e5f42014-11-13 18:47:41 -0500473
David Benjamin0d56f882015-12-19 17:05:56 -0500474int tls1_check_ec_cert(SSL *ssl, X509 *x) {
David Benjamin75ea5bb2016-07-08 17:43:29 -0700475 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
476 /* In TLS 1.3, the ECDSA curve is negotiated via signature algorithms. */
477 return 1;
478 }
479
Adam Langleyfcf25832014-12-18 17:42:32 -0800480 EVP_PKEY *pkey = X509_get_pubkey(x);
David Benjamin75ea5bb2016-07-08 17:43:29 -0700481 if (pkey == NULL) {
482 return 0;
483 }
484
485 int ret = 0;
Steven Valdezce902a92016-05-17 11:47:53 -0400486 uint16_t group_id;
Adam Langleyfcf25832014-12-18 17:42:32 -0800487 uint8_t comp_id;
David Benjamin758d1272015-11-20 17:47:25 -0500488 EC_KEY *ec_key = EVP_PKEY_get0_EC_KEY(pkey);
489 if (ec_key == NULL ||
Steven Valdezce902a92016-05-17 11:47:53 -0400490 !tls1_curve_params_from_ec_key(&group_id, &comp_id, ec_key) ||
491 !tls1_check_group_id(ssl, group_id) ||
David Benjaminfc059942015-07-30 23:01:59 -0400492 comp_id != TLSEXT_ECPOINTFORMAT_uncompressed) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800493 goto done;
494 }
495
496 ret = 1;
David Benjamin033e5f42014-11-13 18:47:41 -0500497
498done:
David Benjamin2755a3e2015-04-22 16:17:58 -0400499 EVP_PKEY_free(pkey);
Adam Langleyfcf25832014-12-18 17:42:32 -0800500 return ret;
501}
David Benjamin42e9a772014-09-02 23:18:44 -0400502
Adam Langley95c29f32014-06-20 12:00:00 -0700503/* List of supported signature algorithms and hashes. Should make this
Adam Langleyfcf25832014-12-18 17:42:32 -0800504 * customisable at some point, for now include everything we support. */
Adam Langley95c29f32014-06-20 12:00:00 -0700505
Steven Valdez02563852016-06-23 13:33:05 -0400506static const uint16_t kDefaultSignatureAlgorithms[] = {
507 SSL_SIGN_RSA_PKCS1_SHA512,
508 SSL_SIGN_ECDSA_SECP521R1_SHA512,
Adam Langley95c29f32014-06-20 12:00:00 -0700509
Steven Valdez02563852016-06-23 13:33:05 -0400510 SSL_SIGN_RSA_PKCS1_SHA384,
511 SSL_SIGN_ECDSA_SECP384R1_SHA384,
Adam Langley95c29f32014-06-20 12:00:00 -0700512
Steven Valdez02563852016-06-23 13:33:05 -0400513 SSL_SIGN_RSA_PKCS1_SHA256,
514 SSL_SIGN_ECDSA_SECP256R1_SHA256,
Adam Langley95c29f32014-06-20 12:00:00 -0700515
Steven Valdez02563852016-06-23 13:33:05 -0400516 SSL_SIGN_RSA_PKCS1_SHA1,
517 SSL_SIGN_ECDSA_SHA1,
Adam Langley95c29f32014-06-20 12:00:00 -0700518};
David Benjamin05da6e12014-07-12 20:42:55 -0400519
Steven Valdezeff1e8d2016-07-06 14:24:47 -0400520static const uint16_t kDefaultTLS13SignatureAlgorithms[] = {
521 SSL_SIGN_RSA_PSS_SHA512,
522 SSL_SIGN_RSA_PKCS1_SHA512,
523 SSL_SIGN_ECDSA_SECP521R1_SHA512,
524
525 SSL_SIGN_RSA_PSS_SHA384,
526 SSL_SIGN_RSA_PKCS1_SHA384,
527 SSL_SIGN_ECDSA_SECP384R1_SHA384,
528
529 SSL_SIGN_RSA_PSS_SHA256,
530 SSL_SIGN_RSA_PKCS1_SHA256,
531 SSL_SIGN_ECDSA_SECP256R1_SHA256,
532
533 SSL_SIGN_RSA_PKCS1_SHA1,
534 SSL_SIGN_ECDSA_SHA1,
535};
536
Steven Valdez02563852016-06-23 13:33:05 -0400537size_t tls12_get_psigalgs(SSL *ssl, const uint16_t **psigs) {
Steven Valdezeff1e8d2016-07-06 14:24:47 -0400538 uint16_t version;
539 if (ssl->s3->have_version) {
540 version = ssl3_protocol_version(ssl);
541 } else {
542 version = ssl->method->version_from_wire(ssl->client_version);
543 }
544
545 if (version >= TLS1_3_VERSION) {
546 *psigs = kDefaultTLS13SignatureAlgorithms;
547 return sizeof(kDefaultTLS13SignatureAlgorithms) /
548 sizeof(kDefaultTLS13SignatureAlgorithms[0]);
549 }
550
Steven Valdez02563852016-06-23 13:33:05 -0400551 *psigs = kDefaultSignatureAlgorithms;
552 return sizeof(kDefaultSignatureAlgorithms) /
553 sizeof(kDefaultSignatureAlgorithms[0]);
Adam Langleyfcf25832014-12-18 17:42:32 -0800554}
Adam Langley95c29f32014-06-20 12:00:00 -0700555
David Benjamin887c3002016-07-08 16:15:32 -0700556int tls12_check_peer_sigalg(SSL *ssl, int *out_alert, uint16_t sigalg) {
Steven Valdez02563852016-06-23 13:33:05 -0400557 const uint16_t *sent_sigs;
558 size_t sent_sigslen, i;
Adam Langleyfcf25832014-12-18 17:42:32 -0800559
Adam Langleyfcf25832014-12-18 17:42:32 -0800560 /* Check signature matches a type we sent */
David Benjamin6e807652015-11-02 12:02:20 -0500561 sent_sigslen = tls12_get_psigalgs(ssl, &sent_sigs);
Steven Valdez02563852016-06-23 13:33:05 -0400562 for (i = 0; i < sent_sigslen; i++) {
Steven Valdezf0451ca2016-06-29 13:16:27 -0400563 if (sigalg == sent_sigs[i]) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800564 break;
565 }
566 }
567
David Benjamin788be4a2015-10-30 17:50:57 -0400568 if (i == sent_sigslen) {
David Benjamin3570d732015-06-29 00:28:17 -0400569 OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_SIGNATURE_TYPE);
Adam Langleyfcf25832014-12-18 17:42:32 -0800570 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
571 return 0;
572 }
573
Adam Langleyfcf25832014-12-18 17:42:32 -0800574 return 1;
575}
576
577/* Get a mask of disabled algorithms: an algorithm is disabled if it isn't
578 * supported or doesn't appear in supported signature algorithms. Unlike
579 * ssl_cipher_get_disabled this applies to a specific session and not global
580 * settings. */
David Benjamin4298d772015-12-19 00:18:25 -0500581void ssl_set_client_disabled(SSL *ssl) {
582 CERT *c = ssl->cert;
Steven Valdez02563852016-06-23 13:33:05 -0400583 const uint16_t *sigalgs;
Adam Langleyfcf25832014-12-18 17:42:32 -0800584 size_t i, sigalgslen;
585 int have_rsa = 0, have_ecdsa = 0;
586 c->mask_a = 0;
587 c->mask_k = 0;
588
Adam Langleyfcf25832014-12-18 17:42:32 -0800589 /* Now go through all signature algorithms seeing if we support any for RSA,
590 * DSA, ECDSA. Do this for all versions not just TLS 1.2. */
David Benjamin4298d772015-12-19 00:18:25 -0500591 sigalgslen = tls12_get_psigalgs(ssl, &sigalgs);
Steven Valdez02563852016-06-23 13:33:05 -0400592 for (i = 0; i < sigalgslen; i++) {
593 switch (sigalgs[i]) {
Steven Valdezeff1e8d2016-07-06 14:24:47 -0400594 case SSL_SIGN_RSA_PSS_SHA512:
595 case SSL_SIGN_RSA_PSS_SHA384:
596 case SSL_SIGN_RSA_PSS_SHA256:
Steven Valdez02563852016-06-23 13:33:05 -0400597 case SSL_SIGN_RSA_PKCS1_SHA512:
598 case SSL_SIGN_RSA_PKCS1_SHA384:
599 case SSL_SIGN_RSA_PKCS1_SHA256:
600 case SSL_SIGN_RSA_PKCS1_SHA1:
Adam Langleyfcf25832014-12-18 17:42:32 -0800601 have_rsa = 1;
602 break;
603
Steven Valdez02563852016-06-23 13:33:05 -0400604 case SSL_SIGN_ECDSA_SECP521R1_SHA512:
605 case SSL_SIGN_ECDSA_SECP384R1_SHA384:
606 case SSL_SIGN_ECDSA_SECP256R1_SHA256:
607 case SSL_SIGN_ECDSA_SHA1:
Adam Langleyfcf25832014-12-18 17:42:32 -0800608 have_ecdsa = 1;
609 break;
610 }
611 }
612
613 /* Disable auth if we don't include any appropriate signature algorithms. */
614 if (!have_rsa) {
615 c->mask_a |= SSL_aRSA;
616 }
617 if (!have_ecdsa) {
618 c->mask_a |= SSL_aECDSA;
619 }
620
621 /* with PSK there must be client callback set */
David Benjamin4298d772015-12-19 00:18:25 -0500622 if (!ssl->psk_client_callback) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800623 c->mask_a |= SSL_aPSK;
624 c->mask_k |= SSL_kPSK;
625 }
626}
Adam Langley95c29f32014-06-20 12:00:00 -0700627
Adam Langley614c66a2015-06-12 15:26:58 -0700628/* tls_extension represents a TLS extension that is handled internally. The
629 * |init| function is called for each handshake, before any other functions of
630 * the extension. Then the add and parse callbacks are called as needed.
631 *
632 * The parse callbacks receive a |CBS| that contains the contents of the
633 * extension (i.e. not including the type and length bytes). If an extension is
634 * not received then the parse callbacks will be called with a NULL CBS so that
635 * they can do any processing needed to handle the absence of an extension.
636 *
637 * The add callbacks receive a |CBB| to which the extension can be appended but
638 * the function is responsible for appending the type and length bytes too.
639 *
640 * All callbacks return one for success and zero for error. If a parse function
641 * returns zero then a fatal alert with value |*out_alert| will be sent. If
642 * |*out_alert| isn't set, then a |decode_error| alert will be sent. */
643struct tls_extension {
644 uint16_t value;
645 void (*init)(SSL *ssl);
646
647 int (*add_clienthello)(SSL *ssl, CBB *out);
648 int (*parse_serverhello)(SSL *ssl, uint8_t *out_alert, CBS *contents);
649
650 int (*parse_clienthello)(SSL *ssl, uint8_t *out_alert, CBS *contents);
651 int (*add_serverhello)(SSL *ssl, CBB *out);
652};
653
Steven Valdez6b8509a2016-07-12 13:38:32 -0400654static int forbid_parse_serverhello(SSL *ssl, uint8_t *out_alert, CBS *contents) {
655 if (contents != NULL) {
656 /* Servers MUST NOT send this extension. */
657 *out_alert = SSL_AD_UNSUPPORTED_EXTENSION;
658 OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_EXTENSION);
659 return 0;
660 }
661
662 return 1;
663}
664
665static int ignore_parse_clienthello(SSL *ssl, uint8_t *out_alert, CBS *contents) {
666 /* This extension from the client is handled elsewhere. */
667 return 1;
668}
669
670static int dont_add_serverhello(SSL *ssl, CBB *out) {
671 return 1;
672}
Adam Langley614c66a2015-06-12 15:26:58 -0700673
674/* Server name indication (SNI).
675 *
676 * https://tools.ietf.org/html/rfc6066#section-3. */
677
678static void ext_sni_init(SSL *ssl) {
679 ssl->s3->tmp.should_ack_sni = 0;
680}
681
682static int ext_sni_add_clienthello(SSL *ssl, CBB *out) {
683 if (ssl->tlsext_hostname == NULL) {
684 return 1;
685 }
686
687 CBB contents, server_name_list, name;
688 if (!CBB_add_u16(out, TLSEXT_TYPE_server_name) ||
689 !CBB_add_u16_length_prefixed(out, &contents) ||
690 !CBB_add_u16_length_prefixed(&contents, &server_name_list) ||
691 !CBB_add_u8(&server_name_list, TLSEXT_NAMETYPE_host_name) ||
692 !CBB_add_u16_length_prefixed(&server_name_list, &name) ||
693 !CBB_add_bytes(&name, (const uint8_t *)ssl->tlsext_hostname,
694 strlen(ssl->tlsext_hostname)) ||
695 !CBB_flush(out)) {
696 return 0;
697 }
698
699 return 1;
700}
701
David Benjamin0d56f882015-12-19 17:05:56 -0500702static int ext_sni_parse_serverhello(SSL *ssl, uint8_t *out_alert,
703 CBS *contents) {
Adam Langley614c66a2015-06-12 15:26:58 -0700704 if (contents == NULL) {
705 return 1;
706 }
707
708 if (CBS_len(contents) != 0) {
709 return 0;
710 }
711
712 assert(ssl->tlsext_hostname != NULL);
713
714 if (!ssl->hit) {
715 assert(ssl->session->tlsext_hostname == NULL);
716 ssl->session->tlsext_hostname = BUF_strdup(ssl->tlsext_hostname);
717 if (!ssl->session->tlsext_hostname) {
718 *out_alert = SSL_AD_INTERNAL_ERROR;
719 return 0;
720 }
721 }
722
723 return 1;
724}
725
David Benjamin0d56f882015-12-19 17:05:56 -0500726static int ext_sni_parse_clienthello(SSL *ssl, uint8_t *out_alert,
727 CBS *contents) {
Adam Langley614c66a2015-06-12 15:26:58 -0700728 if (contents == NULL) {
729 return 1;
730 }
731
David Benjamin9b611e22016-03-03 08:48:30 -0500732 CBS server_name_list, host_name;
733 uint8_t name_type;
Adam Langley614c66a2015-06-12 15:26:58 -0700734 if (!CBS_get_u16_length_prefixed(contents, &server_name_list) ||
David Benjamin9b611e22016-03-03 08:48:30 -0500735 !CBS_get_u8(&server_name_list, &name_type) ||
736 /* Although the server_name extension was intended to be extensible to
737 * new name types and multiple names, OpenSSL 1.0.x had a bug which meant
738 * different name types will cause an error. Further, RFC 4366 originally
739 * defined syntax inextensibly. RFC 6066 corrected this mistake, but
740 * adding new name types is no longer feasible.
741 *
742 * Act as if the extensibility does not exist to simplify parsing. */
743 !CBS_get_u16_length_prefixed(&server_name_list, &host_name) ||
744 CBS_len(&server_name_list) != 0 ||
Adam Langley614c66a2015-06-12 15:26:58 -0700745 CBS_len(contents) != 0) {
746 return 0;
747 }
748
David Benjamin9b611e22016-03-03 08:48:30 -0500749 if (name_type != TLSEXT_NAMETYPE_host_name ||
750 CBS_len(&host_name) == 0 ||
751 CBS_len(&host_name) > TLSEXT_MAXLEN_host_name ||
752 CBS_contains_zero_byte(&host_name)) {
753 *out_alert = SSL_AD_UNRECOGNIZED_NAME;
754 return 0;
755 }
Adam Langley614c66a2015-06-12 15:26:58 -0700756
David Benjamin9b611e22016-03-03 08:48:30 -0500757 /* TODO(davidben): SNI should be resolved before resumption. We have the
758 * early callback as a replacement, but we should fix the current callback
759 * and avoid the need for |SSL_CTX_set_session_id_context|. */
760 if (!ssl->hit) {
761 assert(ssl->session->tlsext_hostname == NULL);
762
763 /* Copy the hostname as a string. */
764 if (!CBS_strdup(&host_name, &ssl->session->tlsext_hostname)) {
765 *out_alert = SSL_AD_INTERNAL_ERROR;
Adam Langley614c66a2015-06-12 15:26:58 -0700766 return 0;
767 }
768
David Benjamin9b611e22016-03-03 08:48:30 -0500769 ssl->s3->tmp.should_ack_sni = 1;
Adam Langley614c66a2015-06-12 15:26:58 -0700770 }
771
772 return 1;
773}
774
775static int ext_sni_add_serverhello(SSL *ssl, CBB *out) {
776 if (ssl->hit ||
777 !ssl->s3->tmp.should_ack_sni ||
778 ssl->session->tlsext_hostname == NULL) {
779 return 1;
780 }
781
782 if (!CBB_add_u16(out, TLSEXT_TYPE_server_name) ||
783 !CBB_add_u16(out, 0 /* length */)) {
784 return 0;
785 }
786
787 return 1;
788}
789
790
Adam Langley5021b222015-06-12 18:27:58 -0700791/* Renegotiation indication.
792 *
793 * https://tools.ietf.org/html/rfc5746 */
794
795static int ext_ri_add_clienthello(SSL *ssl, CBB *out) {
796 CBB contents, prev_finished;
797 if (!CBB_add_u16(out, TLSEXT_TYPE_renegotiate) ||
798 !CBB_add_u16_length_prefixed(out, &contents) ||
799 !CBB_add_u8_length_prefixed(&contents, &prev_finished) ||
800 !CBB_add_bytes(&prev_finished, ssl->s3->previous_client_finished,
801 ssl->s3->previous_client_finished_len) ||
802 !CBB_flush(out)) {
803 return 0;
804 }
805
806 return 1;
807}
808
809static int ext_ri_parse_serverhello(SSL *ssl, uint8_t *out_alert,
810 CBS *contents) {
Steven Valdez143e8b32016-07-11 13:19:03 -0400811 if (contents != NULL && ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
812 return 0;
813 }
814
David Benjamin3e052de2015-11-25 20:10:31 -0500815 /* Servers may not switch between omitting the extension and supporting it.
816 * See RFC 5746, sections 3.5 and 4.2. */
817 if (ssl->s3->initial_handshake_complete &&
818 (contents != NULL) != ssl->s3->send_connection_binding) {
819 *out_alert = SSL_AD_HANDSHAKE_FAILURE;
820 OPENSSL_PUT_ERROR(SSL, SSL_R_RENEGOTIATION_MISMATCH);
821 return 0;
822 }
823
Adam Langley5021b222015-06-12 18:27:58 -0700824 if (contents == NULL) {
David Benjamine9cddb82015-11-23 14:36:40 -0500825 /* Strictly speaking, if we want to avoid an attack we should *always* see
Adam Langley5021b222015-06-12 18:27:58 -0700826 * RI even on initial ServerHello because the client doesn't see any
827 * renegotiation during an attack. However this would mean we could not
828 * connect to any server which doesn't support RI.
829 *
David Benjamine9cddb82015-11-23 14:36:40 -0500830 * OpenSSL has |SSL_OP_LEGACY_SERVER_CONNECT| to control this, but in
831 * practical terms every client sets it so it's just assumed here. */
832 return 1;
Adam Langley5021b222015-06-12 18:27:58 -0700833 }
834
835 const size_t expected_len = ssl->s3->previous_client_finished_len +
836 ssl->s3->previous_server_finished_len;
837
838 /* Check for logic errors */
839 assert(!expected_len || ssl->s3->previous_client_finished_len);
840 assert(!expected_len || ssl->s3->previous_server_finished_len);
841
842 /* Parse out the extension contents. */
843 CBS renegotiated_connection;
844 if (!CBS_get_u8_length_prefixed(contents, &renegotiated_connection) ||
845 CBS_len(contents) != 0) {
David Benjamin3570d732015-06-29 00:28:17 -0400846 OPENSSL_PUT_ERROR(SSL, SSL_R_RENEGOTIATION_ENCODING_ERR);
Adam Langley5021b222015-06-12 18:27:58 -0700847 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
848 return 0;
849 }
850
851 /* Check that the extension matches. */
852 if (CBS_len(&renegotiated_connection) != expected_len) {
David Benjamin3570d732015-06-29 00:28:17 -0400853 OPENSSL_PUT_ERROR(SSL, SSL_R_RENEGOTIATION_MISMATCH);
Adam Langley5021b222015-06-12 18:27:58 -0700854 *out_alert = SSL_AD_HANDSHAKE_FAILURE;
855 return 0;
856 }
857
858 const uint8_t *d = CBS_data(&renegotiated_connection);
859 if (CRYPTO_memcmp(d, ssl->s3->previous_client_finished,
860 ssl->s3->previous_client_finished_len)) {
David Benjamin3570d732015-06-29 00:28:17 -0400861 OPENSSL_PUT_ERROR(SSL, SSL_R_RENEGOTIATION_MISMATCH);
Adam Langley5021b222015-06-12 18:27:58 -0700862 *out_alert = SSL_AD_HANDSHAKE_FAILURE;
863 return 0;
864 }
865 d += ssl->s3->previous_client_finished_len;
866
867 if (CRYPTO_memcmp(d, ssl->s3->previous_server_finished,
868 ssl->s3->previous_server_finished_len)) {
David Benjamin3570d732015-06-29 00:28:17 -0400869 OPENSSL_PUT_ERROR(SSL, SSL_R_RENEGOTIATION_MISMATCH);
Adam Langley5021b222015-06-12 18:27:58 -0700870 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
871 return 0;
872 }
873 ssl->s3->send_connection_binding = 1;
874
875 return 1;
876}
877
878static int ext_ri_parse_clienthello(SSL *ssl, uint8_t *out_alert,
879 CBS *contents) {
880 /* Renegotiation isn't supported as a server so this function should never be
881 * called after the initial handshake. */
882 assert(!ssl->s3->initial_handshake_complete);
883
Steven Valdez143e8b32016-07-11 13:19:03 -0400884 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
885 return 1;
886 }
887
Adam Langley5021b222015-06-12 18:27:58 -0700888 CBS fake_contents;
889 static const uint8_t kFakeExtension[] = {0};
890
891 if (contents == NULL) {
892 if (ssl->s3->send_connection_binding) {
893 /* The renegotiation SCSV was received so pretend that we received a
894 * renegotiation extension. */
895 CBS_init(&fake_contents, kFakeExtension, sizeof(kFakeExtension));
896 contents = &fake_contents;
897 /* We require that the renegotiation extension is at index zero of
898 * kExtensions. */
899 ssl->s3->tmp.extensions.received |= (1u << 0);
900 } else {
901 return 1;
902 }
903 }
904
905 CBS renegotiated_connection;
906
907 if (!CBS_get_u8_length_prefixed(contents, &renegotiated_connection) ||
908 CBS_len(contents) != 0) {
David Benjamin3570d732015-06-29 00:28:17 -0400909 OPENSSL_PUT_ERROR(SSL, SSL_R_RENEGOTIATION_ENCODING_ERR);
Adam Langley5021b222015-06-12 18:27:58 -0700910 return 0;
911 }
912
913 /* Check that the extension matches */
David Benjamin0d56f882015-12-19 17:05:56 -0500914 if (!CBS_mem_equal(&renegotiated_connection,
915 ssl->s3->previous_client_finished,
Adam Langley5021b222015-06-12 18:27:58 -0700916 ssl->s3->previous_client_finished_len)) {
David Benjamin3570d732015-06-29 00:28:17 -0400917 OPENSSL_PUT_ERROR(SSL, SSL_R_RENEGOTIATION_MISMATCH);
Adam Langley5021b222015-06-12 18:27:58 -0700918 *out_alert = SSL_AD_HANDSHAKE_FAILURE;
919 return 0;
920 }
921
922 ssl->s3->send_connection_binding = 1;
923
924 return 1;
925}
926
927static int ext_ri_add_serverhello(SSL *ssl, CBB *out) {
Steven Valdez143e8b32016-07-11 13:19:03 -0400928 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
929 return 1;
930 }
931
Adam Langley5021b222015-06-12 18:27:58 -0700932 CBB contents, prev_finished;
933 if (!CBB_add_u16(out, TLSEXT_TYPE_renegotiate) ||
934 !CBB_add_u16_length_prefixed(out, &contents) ||
935 !CBB_add_u8_length_prefixed(&contents, &prev_finished) ||
936 !CBB_add_bytes(&prev_finished, ssl->s3->previous_client_finished,
937 ssl->s3->previous_client_finished_len) ||
938 !CBB_add_bytes(&prev_finished, ssl->s3->previous_server_finished,
939 ssl->s3->previous_server_finished_len) ||
940 !CBB_flush(out)) {
941 return 0;
942 }
943
944 return 1;
945}
946
Adam Langley0a056712015-07-01 15:03:33 -0700947
948/* Extended Master Secret.
949 *
David Benjamin43946d42016-02-01 08:42:19 -0500950 * https://tools.ietf.org/html/rfc7627 */
Adam Langley0a056712015-07-01 15:03:33 -0700951
952static void ext_ems_init(SSL *ssl) {
953 ssl->s3->tmp.extended_master_secret = 0;
954}
955
956static int ext_ems_add_clienthello(SSL *ssl, CBB *out) {
957 if (ssl->version == SSL3_VERSION) {
958 return 1;
959 }
960
961 if (!CBB_add_u16(out, TLSEXT_TYPE_extended_master_secret) ||
962 !CBB_add_u16(out, 0 /* length */)) {
963 return 0;
964 }
965
966 return 1;
967}
968
969static int ext_ems_parse_serverhello(SSL *ssl, uint8_t *out_alert,
970 CBS *contents) {
971 if (contents == NULL) {
972 return 1;
973 }
974
Steven Valdez143e8b32016-07-11 13:19:03 -0400975 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION ||
976 ssl->version == SSL3_VERSION) {
977 return 0;
978 }
979
980 if (CBS_len(contents) != 0) {
Adam Langley0a056712015-07-01 15:03:33 -0700981 return 0;
982 }
983
984 ssl->s3->tmp.extended_master_secret = 1;
985 return 1;
986}
987
David Benjamin0d56f882015-12-19 17:05:56 -0500988static int ext_ems_parse_clienthello(SSL *ssl, uint8_t *out_alert,
989 CBS *contents) {
Steven Valdez143e8b32016-07-11 13:19:03 -0400990 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION ||
991 ssl->version == SSL3_VERSION) {
992 return 1;
993 }
994
995 if (contents == NULL) {
Adam Langley0a056712015-07-01 15:03:33 -0700996 return 1;
997 }
998
999 if (CBS_len(contents) != 0) {
1000 return 0;
1001 }
1002
1003 ssl->s3->tmp.extended_master_secret = 1;
1004 return 1;
1005}
1006
1007static int ext_ems_add_serverhello(SSL *ssl, CBB *out) {
1008 if (!ssl->s3->tmp.extended_master_secret) {
1009 return 1;
1010 }
1011
1012 if (!CBB_add_u16(out, TLSEXT_TYPE_extended_master_secret) ||
1013 !CBB_add_u16(out, 0 /* length */)) {
1014 return 0;
1015 }
1016
1017 return 1;
1018}
1019
Adam Langley9b05bc52015-07-01 15:25:33 -07001020
1021/* Session tickets.
1022 *
1023 * https://tools.ietf.org/html/rfc5077 */
1024
1025static int ext_ticket_add_clienthello(SSL *ssl, CBB *out) {
1026 if (SSL_get_options(ssl) & SSL_OP_NO_TICKET) {
1027 return 1;
1028 }
1029
1030 const uint8_t *ticket_data = NULL;
1031 int ticket_len = 0;
1032
1033 /* Renegotiation does not participate in session resumption. However, still
1034 * advertise the extension to avoid potentially breaking servers which carry
1035 * over the state from the previous handshake, such as OpenSSL servers
1036 * without upstream's 3c3f0259238594d77264a78944d409f2127642c4. */
1037 if (!ssl->s3->initial_handshake_complete &&
1038 ssl->session != NULL &&
1039 ssl->session->tlsext_tick != NULL) {
1040 ticket_data = ssl->session->tlsext_tick;
1041 ticket_len = ssl->session->tlsext_ticklen;
1042 }
1043
1044 CBB ticket;
1045 if (!CBB_add_u16(out, TLSEXT_TYPE_session_ticket) ||
1046 !CBB_add_u16_length_prefixed(out, &ticket) ||
1047 !CBB_add_bytes(&ticket, ticket_data, ticket_len) ||
1048 !CBB_flush(out)) {
1049 return 0;
1050 }
1051
1052 return 1;
1053}
1054
1055static int ext_ticket_parse_serverhello(SSL *ssl, uint8_t *out_alert,
1056 CBS *contents) {
1057 ssl->tlsext_ticket_expected = 0;
1058
1059 if (contents == NULL) {
1060 return 1;
1061 }
1062
Steven Valdez143e8b32016-07-11 13:19:03 -04001063 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1064 return 0;
1065 }
1066
Adam Langley9b05bc52015-07-01 15:25:33 -07001067 /* If |SSL_OP_NO_TICKET| is set then no extension will have been sent and
1068 * this function should never be called, even if the server tries to send the
1069 * extension. */
1070 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0);
1071
1072 if (CBS_len(contents) != 0) {
1073 return 0;
1074 }
1075
1076 ssl->tlsext_ticket_expected = 1;
1077 return 1;
1078}
1079
Adam Langley9b05bc52015-07-01 15:25:33 -07001080static int ext_ticket_add_serverhello(SSL *ssl, CBB *out) {
1081 if (!ssl->tlsext_ticket_expected) {
1082 return 1;
1083 }
1084
1085 /* If |SSL_OP_NO_TICKET| is set, |tlsext_ticket_expected| should never be
1086 * true. */
1087 assert((SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0);
1088
1089 if (!CBB_add_u16(out, TLSEXT_TYPE_session_ticket) ||
1090 !CBB_add_u16(out, 0 /* length */)) {
1091 return 0;
1092 }
1093
1094 return 1;
1095}
1096
1097
Adam Langley2e857bd2015-07-01 16:09:19 -07001098/* Signature Algorithms.
1099 *
1100 * https://tools.ietf.org/html/rfc5246#section-7.4.1.4.1 */
1101
1102static int ext_sigalgs_add_clienthello(SSL *ssl, CBB *out) {
David Benjaminb6a0a512016-06-21 10:33:21 -04001103 if (ssl->method->version_from_wire(ssl->client_version) < TLS1_2_VERSION) {
Adam Langley2e857bd2015-07-01 16:09:19 -07001104 return 1;
1105 }
1106
Steven Valdez02563852016-06-23 13:33:05 -04001107 const uint16_t *sigalgs_data;
Adam Langley2e857bd2015-07-01 16:09:19 -07001108 const size_t sigalgs_len = tls12_get_psigalgs(ssl, &sigalgs_data);
1109
1110 CBB contents, sigalgs;
1111 if (!CBB_add_u16(out, TLSEXT_TYPE_signature_algorithms) ||
1112 !CBB_add_u16_length_prefixed(out, &contents) ||
Steven Valdez02563852016-06-23 13:33:05 -04001113 !CBB_add_u16_length_prefixed(&contents, &sigalgs)) {
1114 return 0;
1115 }
1116
1117 size_t i;
1118 for (i = 0; i < sigalgs_len; i++) {
1119 if (!CBB_add_u16(&sigalgs, sigalgs_data[i])) {
1120 return 0;
1121 }
1122 }
1123
1124 if (!CBB_flush(out)) {
Adam Langley2e857bd2015-07-01 16:09:19 -07001125 return 0;
1126 }
1127
1128 return 1;
1129}
1130
Adam Langley2e857bd2015-07-01 16:09:19 -07001131static int ext_sigalgs_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1132 CBS *contents) {
1133 OPENSSL_free(ssl->cert->peer_sigalgs);
1134 ssl->cert->peer_sigalgs = NULL;
1135 ssl->cert->peer_sigalgslen = 0;
1136
Adam Langley2e857bd2015-07-01 16:09:19 -07001137 if (contents == NULL) {
1138 return 1;
1139 }
1140
1141 CBS supported_signature_algorithms;
1142 if (!CBS_get_u16_length_prefixed(contents, &supported_signature_algorithms) ||
Steven Valdez0d62f262015-09-04 12:41:04 -04001143 CBS_len(contents) != 0 ||
1144 CBS_len(&supported_signature_algorithms) == 0 ||
1145 !tls1_parse_peer_sigalgs(ssl, &supported_signature_algorithms)) {
Adam Langley2e857bd2015-07-01 16:09:19 -07001146 return 0;
1147 }
1148
1149 return 1;
1150}
1151
Adam Langley2e857bd2015-07-01 16:09:19 -07001152
Adam Langleybb0bd042015-07-01 16:21:03 -07001153/* OCSP Stapling.
1154 *
1155 * https://tools.ietf.org/html/rfc6066#section-8 */
1156
1157static void ext_ocsp_init(SSL *ssl) {
1158 ssl->s3->tmp.certificate_status_expected = 0;
Adam Langleyce9d85e2016-01-24 15:58:39 -08001159 ssl->tlsext_status_type = -1;
Adam Langleybb0bd042015-07-01 16:21:03 -07001160}
1161
1162static int ext_ocsp_add_clienthello(SSL *ssl, CBB *out) {
1163 if (!ssl->ocsp_stapling_enabled) {
1164 return 1;
1165 }
1166
1167 CBB contents;
1168 if (!CBB_add_u16(out, TLSEXT_TYPE_status_request) ||
1169 !CBB_add_u16_length_prefixed(out, &contents) ||
1170 !CBB_add_u8(&contents, TLSEXT_STATUSTYPE_ocsp) ||
1171 !CBB_add_u16(&contents, 0 /* empty responder ID list */) ||
1172 !CBB_add_u16(&contents, 0 /* empty request extensions */) ||
1173 !CBB_flush(out)) {
1174 return 0;
1175 }
1176
Adam Langleyce9d85e2016-01-24 15:58:39 -08001177 ssl->tlsext_status_type = TLSEXT_STATUSTYPE_ocsp;
Adam Langleybb0bd042015-07-01 16:21:03 -07001178 return 1;
1179}
1180
1181static int ext_ocsp_parse_serverhello(SSL *ssl, uint8_t *out_alert,
Paul Lietaraeeff2c2015-08-12 11:47:11 +01001182 CBS *contents) {
Adam Langleybb0bd042015-07-01 16:21:03 -07001183 if (contents == NULL) {
1184 return 1;
1185 }
1186
David Benjamin942f4ed2016-07-16 19:03:49 +03001187 /* OCSP stapling is forbidden on a non-certificate cipher. */
1188 if (!ssl_cipher_uses_certificate_auth(ssl->s3->tmp.new_cipher)) {
Adam Langleybb0bd042015-07-01 16:21:03 -07001189 return 0;
1190 }
1191
David Benjamin942f4ed2016-07-16 19:03:49 +03001192 if (ssl3_protocol_version(ssl) < TLS1_3_VERSION) {
1193 if (CBS_len(contents) != 0) {
1194 return 0;
1195 }
1196
1197 ssl->s3->tmp.certificate_status_expected = 1;
1198 return 1;
1199 }
1200
1201 uint8_t status_type;
1202 CBS ocsp_response;
1203 if (!CBS_get_u8(contents, &status_type) ||
1204 status_type != TLSEXT_STATUSTYPE_ocsp ||
1205 !CBS_get_u24_length_prefixed(contents, &ocsp_response) ||
1206 CBS_len(&ocsp_response) == 0 ||
1207 CBS_len(contents) != 0) {
1208 return 0;
1209 }
1210
1211 if (!CBS_stow(&ocsp_response, &ssl->session->ocsp_response,
1212 &ssl->session->ocsp_response_length)) {
1213 *out_alert = SSL_AD_INTERNAL_ERROR;
1214 return 0;
1215 }
1216
Adam Langleybb0bd042015-07-01 16:21:03 -07001217 return 1;
1218}
1219
1220static int ext_ocsp_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1221 CBS *contents) {
Paul Lietaraeeff2c2015-08-12 11:47:11 +01001222 if (contents == NULL) {
1223 return 1;
1224 }
1225
1226 uint8_t status_type;
1227 if (!CBS_get_u8(contents, &status_type)) {
1228 return 0;
1229 }
1230
1231 /* We cannot decide whether OCSP stapling will occur yet because the correct
1232 * SSL_CTX might not have been selected. */
1233 ssl->s3->tmp.ocsp_stapling_requested = status_type == TLSEXT_STATUSTYPE_ocsp;
1234
Adam Langleybb0bd042015-07-01 16:21:03 -07001235 return 1;
1236}
1237
1238static int ext_ocsp_add_serverhello(SSL *ssl, CBB *out) {
David Benjamin942f4ed2016-07-16 19:03:49 +03001239 if (!ssl->s3->tmp.ocsp_stapling_requested ||
1240 ssl->ctx->ocsp_response_length == 0 ||
1241 !ssl_cipher_uses_certificate_auth(ssl->s3->tmp.new_cipher)) {
Steven Valdez143e8b32016-07-11 13:19:03 -04001242 return 1;
1243 }
1244
David Benjamin942f4ed2016-07-16 19:03:49 +03001245 if (ssl3_protocol_version(ssl) < TLS1_3_VERSION) {
1246 /* The extension shouldn't be sent when resuming sessions. */
1247 if (ssl->hit) {
1248 return 1;
1249 }
1250
1251 ssl->s3->tmp.certificate_status_expected = 1;
1252
1253 return CBB_add_u16(out, TLSEXT_TYPE_status_request) &&
1254 CBB_add_u16(out, 0 /* length */);
Paul Lietaraeeff2c2015-08-12 11:47:11 +01001255 }
1256
David Benjamin942f4ed2016-07-16 19:03:49 +03001257 CBB body, ocsp_response;
Paul Lietaraeeff2c2015-08-12 11:47:11 +01001258 return CBB_add_u16(out, TLSEXT_TYPE_status_request) &&
David Benjamin942f4ed2016-07-16 19:03:49 +03001259 CBB_add_u16_length_prefixed(out, &body) &&
1260 CBB_add_u8(&body, TLSEXT_STATUSTYPE_ocsp) &&
1261 CBB_add_u24_length_prefixed(&body, &ocsp_response) &&
1262 CBB_add_bytes(&ocsp_response, ssl->ctx->ocsp_response,
1263 ssl->ctx->ocsp_response_length) &&
1264 CBB_flush(out);
Adam Langleybb0bd042015-07-01 16:21:03 -07001265}
1266
1267
Adam Langley97dfcbf2015-07-01 18:35:20 -07001268/* Next protocol negotiation.
1269 *
1270 * https://htmlpreview.github.io/?https://github.com/agl/technotes/blob/master/nextprotoneg.html */
1271
1272static void ext_npn_init(SSL *ssl) {
1273 ssl->s3->next_proto_neg_seen = 0;
1274}
1275
1276static int ext_npn_add_clienthello(SSL *ssl, CBB *out) {
1277 if (ssl->s3->initial_handshake_complete ||
1278 ssl->ctx->next_proto_select_cb == NULL ||
David Benjamin091c4b92015-10-26 13:33:21 -04001279 (ssl->options & SSL_OP_DISABLE_NPN) ||
Adam Langley97dfcbf2015-07-01 18:35:20 -07001280 SSL_IS_DTLS(ssl)) {
1281 return 1;
1282 }
1283
1284 if (!CBB_add_u16(out, TLSEXT_TYPE_next_proto_neg) ||
1285 !CBB_add_u16(out, 0 /* length */)) {
1286 return 0;
1287 }
1288
1289 return 1;
1290}
1291
1292static int ext_npn_parse_serverhello(SSL *ssl, uint8_t *out_alert,
1293 CBS *contents) {
1294 if (contents == NULL) {
1295 return 1;
1296 }
1297
Steven Valdez143e8b32016-07-11 13:19:03 -04001298 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1299 return 0;
1300 }
1301
Adam Langley97dfcbf2015-07-01 18:35:20 -07001302 /* If any of these are false then we should never have sent the NPN
1303 * extension in the ClientHello and thus this function should never have been
1304 * called. */
1305 assert(!ssl->s3->initial_handshake_complete);
1306 assert(!SSL_IS_DTLS(ssl));
1307 assert(ssl->ctx->next_proto_select_cb != NULL);
David Benjamin091c4b92015-10-26 13:33:21 -04001308 assert(!(ssl->options & SSL_OP_DISABLE_NPN));
Adam Langley97dfcbf2015-07-01 18:35:20 -07001309
David Benjamin76c2efc2015-08-31 14:24:29 -04001310 if (ssl->s3->alpn_selected != NULL) {
1311 /* NPN and ALPN may not be negotiated in the same connection. */
1312 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
1313 OPENSSL_PUT_ERROR(SSL, SSL_R_NEGOTIATED_BOTH_NPN_AND_ALPN);
1314 return 0;
1315 }
1316
Adam Langley97dfcbf2015-07-01 18:35:20 -07001317 const uint8_t *const orig_contents = CBS_data(contents);
1318 const size_t orig_len = CBS_len(contents);
1319
1320 while (CBS_len(contents) != 0) {
1321 CBS proto;
1322 if (!CBS_get_u8_length_prefixed(contents, &proto) ||
1323 CBS_len(&proto) == 0) {
1324 return 0;
1325 }
1326 }
1327
1328 uint8_t *selected;
1329 uint8_t selected_len;
1330 if (ssl->ctx->next_proto_select_cb(
1331 ssl, &selected, &selected_len, orig_contents, orig_len,
1332 ssl->ctx->next_proto_select_cb_arg) != SSL_TLSEXT_ERR_OK) {
1333 *out_alert = SSL_AD_INTERNAL_ERROR;
1334 return 0;
1335 }
1336
David Benjamin79978df2015-12-25 15:56:49 -05001337 OPENSSL_free(ssl->s3->next_proto_negotiated);
1338 ssl->s3->next_proto_negotiated = BUF_memdup(selected, selected_len);
1339 if (ssl->s3->next_proto_negotiated == NULL) {
Adam Langley97dfcbf2015-07-01 18:35:20 -07001340 *out_alert = SSL_AD_INTERNAL_ERROR;
1341 return 0;
1342 }
1343
David Benjamin79978df2015-12-25 15:56:49 -05001344 ssl->s3->next_proto_negotiated_len = selected_len;
Adam Langley97dfcbf2015-07-01 18:35:20 -07001345 ssl->s3->next_proto_neg_seen = 1;
1346
1347 return 1;
1348}
1349
1350static int ext_npn_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1351 CBS *contents) {
Steven Valdez143e8b32016-07-11 13:19:03 -04001352 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1353 return 1;
1354 }
1355
Adam Langley97dfcbf2015-07-01 18:35:20 -07001356 if (contents != NULL && CBS_len(contents) != 0) {
1357 return 0;
1358 }
1359
1360 if (contents == NULL ||
1361 ssl->s3->initial_handshake_complete ||
1362 /* If the ALPN extension is seen before NPN, ignore it. (If ALPN is seen
1363 * afterwards, parsing the ALPN extension will clear
1364 * |next_proto_neg_seen|. */
1365 ssl->s3->alpn_selected != NULL ||
1366 ssl->ctx->next_protos_advertised_cb == NULL ||
1367 SSL_IS_DTLS(ssl)) {
1368 return 1;
1369 }
1370
1371 ssl->s3->next_proto_neg_seen = 1;
1372 return 1;
1373}
1374
1375static int ext_npn_add_serverhello(SSL *ssl, CBB *out) {
1376 /* |next_proto_neg_seen| might have been cleared when an ALPN extension was
1377 * parsed. */
1378 if (!ssl->s3->next_proto_neg_seen) {
1379 return 1;
1380 }
1381
1382 const uint8_t *npa;
1383 unsigned npa_len;
1384
1385 if (ssl->ctx->next_protos_advertised_cb(
1386 ssl, &npa, &npa_len, ssl->ctx->next_protos_advertised_cb_arg) !=
1387 SSL_TLSEXT_ERR_OK) {
1388 ssl->s3->next_proto_neg_seen = 0;
1389 return 1;
1390 }
1391
1392 CBB contents;
1393 if (!CBB_add_u16(out, TLSEXT_TYPE_next_proto_neg) ||
1394 !CBB_add_u16_length_prefixed(out, &contents) ||
1395 !CBB_add_bytes(&contents, npa, npa_len) ||
1396 !CBB_flush(out)) {
1397 return 0;
1398 }
1399
1400 return 1;
1401}
1402
1403
Adam Langleyab8d87d2015-07-10 12:21:39 -07001404/* Signed certificate timestamps.
1405 *
1406 * https://tools.ietf.org/html/rfc6962#section-3.3.1 */
1407
1408static int ext_sct_add_clienthello(SSL *ssl, CBB *out) {
1409 if (!ssl->signed_cert_timestamps_enabled) {
1410 return 1;
1411 }
1412
1413 if (!CBB_add_u16(out, TLSEXT_TYPE_certificate_timestamp) ||
1414 !CBB_add_u16(out, 0 /* length */)) {
1415 return 0;
1416 }
1417
1418 return 1;
1419}
1420
1421static int ext_sct_parse_serverhello(SSL *ssl, uint8_t *out_alert,
1422 CBS *contents) {
1423 if (contents == NULL) {
1424 return 1;
1425 }
1426
1427 /* If this is false then we should never have sent the SCT extension in the
1428 * ClientHello and thus this function should never have been called. */
1429 assert(ssl->signed_cert_timestamps_enabled);
1430
1431 if (CBS_len(contents) == 0) {
1432 *out_alert = SSL_AD_DECODE_ERROR;
1433 return 0;
1434 }
1435
1436 /* Session resumption uses the original session information. */
1437 if (!ssl->hit &&
1438 !CBS_stow(contents, &ssl->session->tlsext_signed_cert_timestamp_list,
1439 &ssl->session->tlsext_signed_cert_timestamp_list_length)) {
1440 *out_alert = SSL_AD_INTERNAL_ERROR;
1441 return 0;
1442 }
1443
1444 return 1;
1445}
1446
1447static int ext_sct_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1448 CBS *contents) {
Paul Lietar4fac72e2015-09-09 13:44:55 +01001449 return contents == NULL || CBS_len(contents) == 0;
Adam Langleyab8d87d2015-07-10 12:21:39 -07001450}
1451
1452static int ext_sct_add_serverhello(SSL *ssl, CBB *out) {
Paul Lietar62be8ac2015-09-16 10:03:30 +01001453 /* The extension shouldn't be sent when resuming sessions. */
1454 if (ssl->hit ||
1455 ssl->ctx->signed_cert_timestamp_list_length == 0) {
Paul Lietar4fac72e2015-09-09 13:44:55 +01001456 return 1;
1457 }
1458
1459 CBB contents;
1460 return CBB_add_u16(out, TLSEXT_TYPE_certificate_timestamp) &&
1461 CBB_add_u16_length_prefixed(out, &contents) &&
1462 CBB_add_bytes(&contents, ssl->ctx->signed_cert_timestamp_list,
1463 ssl->ctx->signed_cert_timestamp_list_length) &&
1464 CBB_flush(out);
Adam Langleyab8d87d2015-07-10 12:21:39 -07001465}
1466
1467
Adam Langleyf18e4532015-07-10 13:39:53 -07001468/* Application-level Protocol Negotiation.
1469 *
1470 * https://tools.ietf.org/html/rfc7301 */
1471
1472static void ext_alpn_init(SSL *ssl) {
1473 OPENSSL_free(ssl->s3->alpn_selected);
1474 ssl->s3->alpn_selected = NULL;
1475}
1476
1477static int ext_alpn_add_clienthello(SSL *ssl, CBB *out) {
1478 if (ssl->alpn_client_proto_list == NULL ||
1479 ssl->s3->initial_handshake_complete) {
1480 return 1;
1481 }
1482
1483 CBB contents, proto_list;
1484 if (!CBB_add_u16(out, TLSEXT_TYPE_application_layer_protocol_negotiation) ||
1485 !CBB_add_u16_length_prefixed(out, &contents) ||
1486 !CBB_add_u16_length_prefixed(&contents, &proto_list) ||
1487 !CBB_add_bytes(&proto_list, ssl->alpn_client_proto_list,
1488 ssl->alpn_client_proto_list_len) ||
1489 !CBB_flush(out)) {
1490 return 0;
1491 }
1492
1493 return 1;
1494}
1495
1496static int ext_alpn_parse_serverhello(SSL *ssl, uint8_t *out_alert,
1497 CBS *contents) {
1498 if (contents == NULL) {
1499 return 1;
1500 }
1501
1502 assert(!ssl->s3->initial_handshake_complete);
1503 assert(ssl->alpn_client_proto_list != NULL);
1504
David Benjamin76c2efc2015-08-31 14:24:29 -04001505 if (ssl->s3->next_proto_neg_seen) {
1506 /* NPN and ALPN may not be negotiated in the same connection. */
1507 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
1508 OPENSSL_PUT_ERROR(SSL, SSL_R_NEGOTIATED_BOTH_NPN_AND_ALPN);
1509 return 0;
1510 }
1511
Adam Langleyf18e4532015-07-10 13:39:53 -07001512 /* The extension data consists of a ProtocolNameList which must have
1513 * exactly one ProtocolName. Each of these is length-prefixed. */
1514 CBS protocol_name_list, protocol_name;
1515 if (!CBS_get_u16_length_prefixed(contents, &protocol_name_list) ||
1516 CBS_len(contents) != 0 ||
1517 !CBS_get_u8_length_prefixed(&protocol_name_list, &protocol_name) ||
1518 /* Empty protocol names are forbidden. */
1519 CBS_len(&protocol_name) == 0 ||
1520 CBS_len(&protocol_name_list) != 0) {
1521 return 0;
1522 }
1523
1524 if (!CBS_stow(&protocol_name, &ssl->s3->alpn_selected,
1525 &ssl->s3->alpn_selected_len)) {
1526 *out_alert = SSL_AD_INTERNAL_ERROR;
1527 return 0;
1528 }
1529
1530 return 1;
1531}
1532
1533static int ext_alpn_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1534 CBS *contents) {
1535 if (contents == NULL) {
1536 return 1;
1537 }
1538
1539 if (ssl->ctx->alpn_select_cb == NULL ||
1540 ssl->s3->initial_handshake_complete) {
1541 return 1;
1542 }
1543
1544 /* ALPN takes precedence over NPN. */
1545 ssl->s3->next_proto_neg_seen = 0;
1546
1547 CBS protocol_name_list;
1548 if (!CBS_get_u16_length_prefixed(contents, &protocol_name_list) ||
1549 CBS_len(contents) != 0 ||
1550 CBS_len(&protocol_name_list) < 2) {
1551 return 0;
1552 }
1553
1554 /* Validate the protocol list. */
1555 CBS protocol_name_list_copy = protocol_name_list;
1556 while (CBS_len(&protocol_name_list_copy) > 0) {
1557 CBS protocol_name;
1558
1559 if (!CBS_get_u8_length_prefixed(&protocol_name_list_copy, &protocol_name) ||
1560 /* Empty protocol names are forbidden. */
1561 CBS_len(&protocol_name) == 0) {
1562 return 0;
1563 }
1564 }
1565
1566 const uint8_t *selected;
1567 uint8_t selected_len;
1568 if (ssl->ctx->alpn_select_cb(
1569 ssl, &selected, &selected_len, CBS_data(&protocol_name_list),
1570 CBS_len(&protocol_name_list),
1571 ssl->ctx->alpn_select_cb_arg) == SSL_TLSEXT_ERR_OK) {
1572 OPENSSL_free(ssl->s3->alpn_selected);
1573 ssl->s3->alpn_selected = BUF_memdup(selected, selected_len);
1574 if (ssl->s3->alpn_selected == NULL) {
1575 *out_alert = SSL_AD_INTERNAL_ERROR;
1576 return 0;
1577 }
1578 ssl->s3->alpn_selected_len = selected_len;
1579 }
1580
1581 return 1;
1582}
1583
1584static int ext_alpn_add_serverhello(SSL *ssl, CBB *out) {
1585 if (ssl->s3->alpn_selected == NULL) {
1586 return 1;
1587 }
1588
1589 CBB contents, proto_list, proto;
1590 if (!CBB_add_u16(out, TLSEXT_TYPE_application_layer_protocol_negotiation) ||
1591 !CBB_add_u16_length_prefixed(out, &contents) ||
1592 !CBB_add_u16_length_prefixed(&contents, &proto_list) ||
1593 !CBB_add_u8_length_prefixed(&proto_list, &proto) ||
David Benjamin0d56f882015-12-19 17:05:56 -05001594 !CBB_add_bytes(&proto, ssl->s3->alpn_selected,
1595 ssl->s3->alpn_selected_len) ||
Adam Langleyf18e4532015-07-10 13:39:53 -07001596 !CBB_flush(out)) {
1597 return 0;
1598 }
1599
1600 return 1;
1601}
1602
1603
Adam Langley49c7af12015-07-10 14:33:46 -07001604/* Channel ID.
1605 *
1606 * https://tools.ietf.org/html/draft-balfanz-tls-channelid-01 */
1607
1608static void ext_channel_id_init(SSL *ssl) {
1609 ssl->s3->tlsext_channel_id_valid = 0;
1610}
1611
1612static int ext_channel_id_add_clienthello(SSL *ssl, CBB *out) {
1613 if (!ssl->tlsext_channel_id_enabled ||
1614 SSL_IS_DTLS(ssl)) {
1615 return 1;
1616 }
1617
1618 if (!CBB_add_u16(out, TLSEXT_TYPE_channel_id) ||
1619 !CBB_add_u16(out, 0 /* length */)) {
1620 return 0;
1621 }
1622
1623 return 1;
1624}
1625
1626static int ext_channel_id_parse_serverhello(SSL *ssl, uint8_t *out_alert,
1627 CBS *contents) {
1628 if (contents == NULL) {
1629 return 1;
1630 }
1631
Steven Valdez143e8b32016-07-11 13:19:03 -04001632 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1633 return 0;
1634 }
1635
Adam Langley49c7af12015-07-10 14:33:46 -07001636 assert(!SSL_IS_DTLS(ssl));
1637 assert(ssl->tlsext_channel_id_enabled);
1638
1639 if (CBS_len(contents) != 0) {
1640 return 0;
1641 }
1642
1643 ssl->s3->tlsext_channel_id_valid = 1;
1644 return 1;
1645}
1646
1647static int ext_channel_id_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1648 CBS *contents) {
1649 if (contents == NULL ||
1650 !ssl->tlsext_channel_id_enabled ||
1651 SSL_IS_DTLS(ssl)) {
1652 return 1;
1653 }
1654
1655 if (CBS_len(contents) != 0) {
1656 return 0;
1657 }
1658
1659 ssl->s3->tlsext_channel_id_valid = 1;
1660 return 1;
1661}
1662
1663static int ext_channel_id_add_serverhello(SSL *ssl, CBB *out) {
Steven Valdez143e8b32016-07-11 13:19:03 -04001664 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1665 return 1;
1666 }
1667
Adam Langley49c7af12015-07-10 14:33:46 -07001668 if (!ssl->s3->tlsext_channel_id_valid) {
1669 return 1;
1670 }
1671
1672 if (!CBB_add_u16(out, TLSEXT_TYPE_channel_id) ||
1673 !CBB_add_u16(out, 0 /* length */)) {
1674 return 0;
1675 }
1676
1677 return 1;
1678}
1679
Adam Langley391250d2015-07-15 19:06:07 -07001680
1681/* Secure Real-time Transport Protocol (SRTP) extension.
1682 *
1683 * https://tools.ietf.org/html/rfc5764 */
1684
Adam Langley391250d2015-07-15 19:06:07 -07001685
1686static void ext_srtp_init(SSL *ssl) {
1687 ssl->srtp_profile = NULL;
1688}
1689
1690static int ext_srtp_add_clienthello(SSL *ssl, CBB *out) {
1691 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles = SSL_get_srtp_profiles(ssl);
1692 if (profiles == NULL) {
1693 return 1;
1694 }
1695 const size_t num_profiles = sk_SRTP_PROTECTION_PROFILE_num(profiles);
1696 if (num_profiles == 0) {
1697 return 1;
1698 }
1699
1700 CBB contents, profile_ids;
1701 if (!CBB_add_u16(out, TLSEXT_TYPE_srtp) ||
1702 !CBB_add_u16_length_prefixed(out, &contents) ||
1703 !CBB_add_u16_length_prefixed(&contents, &profile_ids)) {
1704 return 0;
1705 }
1706
1707 size_t i;
1708 for (i = 0; i < num_profiles; i++) {
1709 if (!CBB_add_u16(&profile_ids,
1710 sk_SRTP_PROTECTION_PROFILE_value(profiles, i)->id)) {
1711 return 0;
1712 }
1713 }
1714
1715 if (!CBB_add_u8(&contents, 0 /* empty use_mki value */) ||
1716 !CBB_flush(out)) {
1717 return 0;
1718 }
1719
1720 return 1;
1721}
1722
1723static int ext_srtp_parse_serverhello(SSL *ssl, uint8_t *out_alert,
1724 CBS *contents) {
1725 if (contents == NULL) {
1726 return 1;
1727 }
1728
1729 /* The extension consists of a u16-prefixed profile ID list containing a
1730 * single uint16_t profile ID, then followed by a u8-prefixed srtp_mki field.
1731 *
1732 * See https://tools.ietf.org/html/rfc5764#section-4.1.1 */
1733 CBS profile_ids, srtp_mki;
1734 uint16_t profile_id;
1735 if (!CBS_get_u16_length_prefixed(contents, &profile_ids) ||
1736 !CBS_get_u16(&profile_ids, &profile_id) ||
1737 CBS_len(&profile_ids) != 0 ||
1738 !CBS_get_u8_length_prefixed(contents, &srtp_mki) ||
1739 CBS_len(contents) != 0) {
1740 OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST);
1741 return 0;
1742 }
1743
1744 if (CBS_len(&srtp_mki) != 0) {
1745 /* Must be no MKI, since we never offer one. */
1746 OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_SRTP_MKI_VALUE);
1747 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
1748 return 0;
1749 }
1750
1751 STACK_OF(SRTP_PROTECTION_PROFILE) *profiles = SSL_get_srtp_profiles(ssl);
1752
1753 /* Check to see if the server gave us something we support (and presumably
1754 * offered). */
1755 size_t i;
1756 for (i = 0; i < sk_SRTP_PROTECTION_PROFILE_num(profiles); i++) {
1757 const SRTP_PROTECTION_PROFILE *profile =
1758 sk_SRTP_PROTECTION_PROFILE_value(profiles, i);
1759
1760 if (profile->id == profile_id) {
1761 ssl->srtp_profile = profile;
1762 return 1;
1763 }
1764 }
1765
1766 OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST);
1767 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
1768 return 0;
1769}
1770
1771static int ext_srtp_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1772 CBS *contents) {
1773 if (contents == NULL) {
1774 return 1;
1775 }
1776
1777 CBS profile_ids, srtp_mki;
1778 if (!CBS_get_u16_length_prefixed(contents, &profile_ids) ||
1779 CBS_len(&profile_ids) < 2 ||
1780 !CBS_get_u8_length_prefixed(contents, &srtp_mki) ||
1781 CBS_len(contents) != 0) {
1782 OPENSSL_PUT_ERROR(SSL, SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST);
1783 return 0;
1784 }
1785 /* Discard the MKI value for now. */
1786
1787 const STACK_OF(SRTP_PROTECTION_PROFILE) *server_profiles =
1788 SSL_get_srtp_profiles(ssl);
1789
1790 /* Pick the server's most preferred profile. */
1791 size_t i;
1792 for (i = 0; i < sk_SRTP_PROTECTION_PROFILE_num(server_profiles); i++) {
1793 const SRTP_PROTECTION_PROFILE *server_profile =
1794 sk_SRTP_PROTECTION_PROFILE_value(server_profiles, i);
1795
1796 CBS profile_ids_tmp;
1797 CBS_init(&profile_ids_tmp, CBS_data(&profile_ids), CBS_len(&profile_ids));
1798
1799 while (CBS_len(&profile_ids_tmp) > 0) {
1800 uint16_t profile_id;
1801 if (!CBS_get_u16(&profile_ids_tmp, &profile_id)) {
1802 return 0;
1803 }
1804
1805 if (server_profile->id == profile_id) {
1806 ssl->srtp_profile = server_profile;
1807 return 1;
1808 }
1809 }
1810 }
1811
1812 return 1;
1813}
1814
1815static int ext_srtp_add_serverhello(SSL *ssl, CBB *out) {
1816 if (ssl->srtp_profile == NULL) {
1817 return 1;
1818 }
1819
1820 CBB contents, profile_ids;
1821 if (!CBB_add_u16(out, TLSEXT_TYPE_srtp) ||
1822 !CBB_add_u16_length_prefixed(out, &contents) ||
1823 !CBB_add_u16_length_prefixed(&contents, &profile_ids) ||
1824 !CBB_add_u16(&profile_ids, ssl->srtp_profile->id) ||
1825 !CBB_add_u8(&contents, 0 /* empty MKI */) ||
1826 !CBB_flush(out)) {
1827 return 0;
1828 }
1829
1830 return 1;
1831}
1832
Adam Langleybdd5d662015-07-20 16:19:08 -07001833
1834/* EC point formats.
1835 *
1836 * https://tools.ietf.org/html/rfc4492#section-5.1.2 */
1837
1838static int ssl_any_ec_cipher_suites_enabled(const SSL *ssl) {
1839 if (ssl->version < TLS1_VERSION && !SSL_IS_DTLS(ssl)) {
1840 return 0;
1841 }
1842
1843 const STACK_OF(SSL_CIPHER) *cipher_stack = SSL_get_ciphers(ssl);
1844
1845 size_t i;
1846 for (i = 0; i < sk_SSL_CIPHER_num(cipher_stack); i++) {
1847 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(cipher_stack, i);
1848
1849 const uint32_t alg_k = cipher->algorithm_mkey;
1850 const uint32_t alg_a = cipher->algorithm_auth;
1851 if ((alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA)) {
1852 return 1;
1853 }
1854 }
1855
1856 return 0;
1857}
1858
Adam Langleybdd5d662015-07-20 16:19:08 -07001859static int ext_ec_point_add_extension(SSL *ssl, CBB *out) {
David Benjaminfc059942015-07-30 23:01:59 -04001860 CBB contents, formats;
Adam Langleybdd5d662015-07-20 16:19:08 -07001861 if (!CBB_add_u16(out, TLSEXT_TYPE_ec_point_formats) ||
1862 !CBB_add_u16_length_prefixed(out, &contents) ||
David Benjaminfc059942015-07-30 23:01:59 -04001863 !CBB_add_u8_length_prefixed(&contents, &formats) ||
1864 !CBB_add_u8(&formats, TLSEXT_ECPOINTFORMAT_uncompressed) ||
Adam Langleybdd5d662015-07-20 16:19:08 -07001865 !CBB_flush(out)) {
1866 return 0;
1867 }
1868
1869 return 1;
1870}
1871
1872static int ext_ec_point_add_clienthello(SSL *ssl, CBB *out) {
1873 if (!ssl_any_ec_cipher_suites_enabled(ssl)) {
1874 return 1;
1875 }
1876
1877 return ext_ec_point_add_extension(ssl, out);
1878}
1879
1880static int ext_ec_point_parse_serverhello(SSL *ssl, uint8_t *out_alert,
1881 CBS *contents) {
1882 if (contents == NULL) {
1883 return 1;
1884 }
1885
Steven Valdez143e8b32016-07-11 13:19:03 -04001886 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1887 return 0;
1888 }
1889
Adam Langleybdd5d662015-07-20 16:19:08 -07001890 CBS ec_point_format_list;
1891 if (!CBS_get_u8_length_prefixed(contents, &ec_point_format_list) ||
1892 CBS_len(contents) != 0) {
1893 return 0;
1894 }
1895
David Benjaminfc059942015-07-30 23:01:59 -04001896 /* Per RFC 4492, section 5.1.2, implementations MUST support the uncompressed
1897 * point format. */
1898 if (memchr(CBS_data(&ec_point_format_list), TLSEXT_ECPOINTFORMAT_uncompressed,
1899 CBS_len(&ec_point_format_list)) == NULL) {
1900 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
Adam Langleybdd5d662015-07-20 16:19:08 -07001901 return 0;
1902 }
1903
1904 return 1;
1905}
1906
1907static int ext_ec_point_parse_clienthello(SSL *ssl, uint8_t *out_alert,
1908 CBS *contents) {
Steven Valdez143e8b32016-07-11 13:19:03 -04001909 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1910 return 1;
1911 }
1912
Adam Langleybdd5d662015-07-20 16:19:08 -07001913 return ext_ec_point_parse_serverhello(ssl, out_alert, contents);
1914}
1915
1916static int ext_ec_point_add_serverhello(SSL *ssl, CBB *out) {
Steven Valdez143e8b32016-07-11 13:19:03 -04001917 if (ssl3_protocol_version(ssl) >= TLS1_3_VERSION) {
1918 return 1;
1919 }
1920
Adam Langleybdd5d662015-07-20 16:19:08 -07001921 const uint32_t alg_k = ssl->s3->tmp.new_cipher->algorithm_mkey;
1922 const uint32_t alg_a = ssl->s3->tmp.new_cipher->algorithm_auth;
David Benjaminfc059942015-07-30 23:01:59 -04001923 const int using_ecc = (alg_k & SSL_kECDHE) || (alg_a & SSL_aECDSA);
Adam Langleybdd5d662015-07-20 16:19:08 -07001924
1925 if (!using_ecc) {
1926 return 1;
1927 }
1928
1929 return ext_ec_point_add_extension(ssl, out);
1930}
1931
Adam Langley273d49c2015-07-20 16:38:52 -07001932
Steven Valdez143e8b32016-07-11 13:19:03 -04001933/* Draft Version Extension */
1934
1935static int ext_draft_version_add_clienthello(SSL *ssl, CBB *out) {
1936 uint16_t min_version, max_version;
1937 if (!ssl_get_version_range(ssl, &min_version, &max_version) ||
1938 max_version >= TLS1_3_VERSION) {
1939 return 1;
1940 }
1941
1942 CBB contents;
1943 if (!CBB_add_u16(out, TLSEXT_TYPE_draft_version) ||
1944 !CBB_add_u16_length_prefixed(out, &contents) ||
1945 !CBB_add_u16(&contents, TLS1_3_DRAFT_VERSION)) {
1946 return 0;
1947 }
1948
1949 return CBB_flush(out);
1950}
1951
1952
1953/* Key Share
1954 *
1955 * https://tools.ietf.org/html/draft-ietf-tls-tls13-12 */
1956
1957static int ext_key_share_add_clienthello(SSL *ssl, CBB *out) {
1958 uint16_t min_version, max_version;
1959 if (!ssl_get_version_range(ssl, &min_version, &max_version)) {
1960 return 0;
1961 }
1962
1963 if (max_version < TLS1_3_VERSION || !ssl_any_ec_cipher_suites_enabled(ssl)) {
1964 return 1;
1965 }
1966
1967 CBB contents, kse_bytes;
1968 if (!CBB_add_u16(out, TLSEXT_TYPE_key_share) ||
1969 !CBB_add_u16_length_prefixed(out, &contents) ||
1970 !CBB_add_u16_length_prefixed(&contents, &kse_bytes)) {
1971 return 0;
1972 }
1973
1974 const uint16_t *groups;
1975 size_t groups_len;
1976 tls1_get_grouplist(ssl, 0 /* local groups */, &groups, &groups_len);
1977
1978 ssl->s3->hs->groups = OPENSSL_malloc(groups_len * sizeof(SSL_ECDH_CTX));
1979 if (ssl->s3->hs->groups == NULL) {
1980 return 0;
1981 }
1982 memset(ssl->s3->hs->groups, 0, groups_len * sizeof(SSL_ECDH_CTX));
1983 ssl->s3->hs->groups_len = groups_len;
1984
1985 for (size_t i = 0; i < groups_len; i++) {
1986 if (!CBB_add_u16(&kse_bytes, groups[i])) {
1987 return 0;
1988 }
1989
1990 CBB key_exchange;
1991 if (!CBB_add_u16_length_prefixed(&kse_bytes, &key_exchange) ||
1992 !SSL_ECDH_CTX_init(&ssl->s3->hs->groups[i], groups[i]) ||
1993 !SSL_ECDH_CTX_offer(&ssl->s3->hs->groups[i], &key_exchange) ||
1994 !CBB_flush(&kse_bytes)) {
1995 return 0;
1996 }
1997 }
1998
1999 return CBB_flush(out);
2000}
2001
2002int ext_key_share_parse_serverhello(SSL *ssl, uint8_t **out_secret,
2003 size_t *out_secret_len, uint8_t *out_alert,
2004 CBS *contents) {
2005 CBS peer_key;
2006 uint16_t group;
2007 if (!CBS_get_u16(contents, &group) ||
2008 !CBS_get_u16_length_prefixed(contents, &peer_key)) {
2009 *out_alert = SSL_AD_DECODE_ERROR;
2010 return 0;
2011 }
2012
2013 SSL_ECDH_CTX *group_ctx = NULL;
2014 for (size_t i = 0; i < ssl->s3->hs->groups_len; i++) {
2015 if (SSL_ECDH_CTX_get_id(&ssl->s3->hs->groups[i]) == group) {
2016 group_ctx = &ssl->s3->hs->groups[i];
2017 break;
2018 }
2019 }
2020
2021 if (group_ctx == NULL) {
2022 *out_alert = SSL_AD_ILLEGAL_PARAMETER;
2023 OPENSSL_PUT_ERROR(SSL, SSL_R_WRONG_CURVE);
2024 return 0;
2025 }
2026
2027 if (!SSL_ECDH_CTX_finish(group_ctx, out_secret, out_secret_len, out_alert,
2028 CBS_data(&peer_key), CBS_len(&peer_key))) {
2029 *out_alert = SSL_AD_INTERNAL_ERROR;
2030 return 0;
2031 }
2032
2033 for (size_t i = 0; i < ssl->s3->hs->groups_len; i++) {
2034 SSL_ECDH_CTX_cleanup(&ssl->s3->hs->groups[i]);
2035 }
2036 OPENSSL_free(ssl->s3->hs->groups);
2037 ssl->s3->hs->groups = NULL;
2038
2039 return 1;
2040}
2041
2042int ext_key_share_parse_clienthello(SSL *ssl, uint8_t **out_secret,
2043 size_t *out_secret_len, uint8_t *out_alert,
2044 CBS *contents) {
2045 uint16_t group_id;
2046 CBS key_shares;
2047 if (!tls1_get_shared_group(ssl, &group_id) ||
2048 !CBS_get_u16_length_prefixed(contents, &key_shares)) {
2049 return 0;
2050 }
2051
2052 int found = 0;
2053 while (CBS_len(&key_shares) > 0) {
2054 uint16_t id;
2055 CBS peer_key;
2056 if (!CBS_get_u16(&key_shares, &id) ||
2057 !CBS_get_u16_length_prefixed(&key_shares, &peer_key)) {
2058 return 0;
2059 }
2060
2061 if (id != group_id || found) {
2062 continue;
2063 }
2064
2065 SSL_ECDH_CTX group;
2066 memset(&group, 0, sizeof(SSL_ECDH_CTX));
2067 CBB public_key;
2068 if (!CBB_init(&public_key, 0) ||
2069 !SSL_ECDH_CTX_init(&group, group_id) ||
2070 !SSL_ECDH_CTX_accept(&group, &public_key, out_secret, out_secret_len,
2071 out_alert, CBS_data(&peer_key),
2072 CBS_len(&peer_key)) ||
2073 !CBB_finish(&public_key, &ssl->s3->hs->public_key,
2074 &ssl->s3->hs->public_key_len)) {
2075 SSL_ECDH_CTX_cleanup(&group);
2076 CBB_cleanup(&public_key);
2077 return 0;
2078 }
2079 SSL_ECDH_CTX_cleanup(&group);
2080
2081 found = 1;
2082 }
2083
2084 return found;
2085}
2086
2087int ext_key_share_add_serverhello(SSL *ssl, CBB *out) {
2088 if (ssl->s3->tmp.new_cipher->algorithm_mkey != SSL_kECDHE) {
2089 return 1;
2090 }
2091
2092 uint16_t group_id;
2093 CBB kse_bytes, public_key;
2094 if (!tls1_get_shared_group(ssl, &group_id) ||
2095 !CBB_add_u16(out, TLSEXT_TYPE_key_share) ||
2096 !CBB_add_u16_length_prefixed(out, &kse_bytes) ||
2097 !CBB_add_u16(&kse_bytes, group_id) ||
2098 !CBB_add_u16_length_prefixed(&kse_bytes, &public_key) ||
2099 !CBB_add_bytes(&public_key, ssl->s3->hs->public_key,
2100 ssl->s3->hs->public_key_len) ||
2101 !CBB_flush(out)) {
2102 return 0;
2103 }
2104
2105 return 1;
2106}
2107
2108
Steven Valdezce902a92016-05-17 11:47:53 -04002109/* Negotiated Groups
Adam Langley273d49c2015-07-20 16:38:52 -07002110 *
Steven Valdezce902a92016-05-17 11:47:53 -04002111 * https://tools.ietf.org/html/rfc4492#section-5.1.2
2112 * https://tools.ietf.org/html/draft-ietf-tls-tls13-12#section-6.3.2.2 */
Adam Langley273d49c2015-07-20 16:38:52 -07002113
Steven Valdezce902a92016-05-17 11:47:53 -04002114static void ext_supported_groups_init(SSL *ssl) {
2115 OPENSSL_free(ssl->s3->tmp.peer_supported_group_list);
2116 ssl->s3->tmp.peer_supported_group_list = NULL;
2117 ssl->s3->tmp.peer_supported_group_list_len = 0;
Adam Langley273d49c2015-07-20 16:38:52 -07002118}
2119
Steven Valdezce902a92016-05-17 11:47:53 -04002120static int ext_supported_groups_add_clienthello(SSL *ssl, CBB *out) {
Adam Langley273d49c2015-07-20 16:38:52 -07002121 if (!ssl_any_ec_cipher_suites_enabled(ssl)) {
2122 return 1;
2123 }
2124
Steven Valdezce902a92016-05-17 11:47:53 -04002125 CBB contents, groups_bytes;
2126 if (!CBB_add_u16(out, TLSEXT_TYPE_supported_groups) ||
Adam Langley273d49c2015-07-20 16:38:52 -07002127 !CBB_add_u16_length_prefixed(out, &contents) ||
Steven Valdezce902a92016-05-17 11:47:53 -04002128 !CBB_add_u16_length_prefixed(&contents, &groups_bytes)) {
Adam Langley273d49c2015-07-20 16:38:52 -07002129 return 0;
2130 }
2131
Steven Valdezce902a92016-05-17 11:47:53 -04002132 const uint16_t *groups;
2133 size_t groups_len;
2134 tls1_get_grouplist(ssl, 0, &groups, &groups_len);
Adam Langley273d49c2015-07-20 16:38:52 -07002135
2136 size_t i;
Steven Valdezce902a92016-05-17 11:47:53 -04002137 for (i = 0; i < groups_len; i++) {
2138 if (!CBB_add_u16(&groups_bytes, groups[i])) {
Adam Langley273d49c2015-07-20 16:38:52 -07002139 return 0;
2140 }
2141 }
2142
2143 return CBB_flush(out);
2144}
2145
Steven Valdezce902a92016-05-17 11:47:53 -04002146static int ext_supported_groups_parse_serverhello(SSL *ssl, uint8_t *out_alert,
2147 CBS *contents) {
Adam Langley273d49c2015-07-20 16:38:52 -07002148 /* This extension is not expected to be echoed by servers and is ignored. */
2149 return 1;
2150}
2151
Steven Valdezce902a92016-05-17 11:47:53 -04002152static int ext_supported_groups_parse_clienthello(SSL *ssl, uint8_t *out_alert,
2153 CBS *contents) {
Adam Langley273d49c2015-07-20 16:38:52 -07002154 if (contents == NULL) {
2155 return 1;
2156 }
2157
Steven Valdezce902a92016-05-17 11:47:53 -04002158 CBS supported_group_list;
2159 if (!CBS_get_u16_length_prefixed(contents, &supported_group_list) ||
2160 CBS_len(&supported_group_list) == 0 ||
2161 (CBS_len(&supported_group_list) & 1) != 0 ||
Adam Langley273d49c2015-07-20 16:38:52 -07002162 CBS_len(contents) != 0) {
2163 return 0;
2164 }
2165
Steven Valdezce902a92016-05-17 11:47:53 -04002166 ssl->s3->tmp.peer_supported_group_list = OPENSSL_malloc(
2167 CBS_len(&supported_group_list));
2168 if (ssl->s3->tmp.peer_supported_group_list == NULL) {
Adam Langley273d49c2015-07-20 16:38:52 -07002169 *out_alert = SSL_AD_INTERNAL_ERROR;
2170 return 0;
2171 }
2172
Steven Valdezce902a92016-05-17 11:47:53 -04002173 const size_t num_groups = CBS_len(&supported_group_list) / 2;
Adam Langley273d49c2015-07-20 16:38:52 -07002174 size_t i;
Steven Valdezce902a92016-05-17 11:47:53 -04002175 for (i = 0; i < num_groups; i++) {
2176 if (!CBS_get_u16(&supported_group_list,
2177 &ssl->s3->tmp.peer_supported_group_list[i])) {
Adam Langley273d49c2015-07-20 16:38:52 -07002178 goto err;
2179 }
2180 }
2181
Steven Valdezce902a92016-05-17 11:47:53 -04002182 assert(CBS_len(&supported_group_list) == 0);
2183 ssl->s3->tmp.peer_supported_group_list_len = num_groups;
Adam Langley273d49c2015-07-20 16:38:52 -07002184
2185 return 1;
2186
2187err:
Steven Valdezce902a92016-05-17 11:47:53 -04002188 OPENSSL_free(ssl->s3->tmp.peer_supported_group_list);
2189 ssl->s3->tmp.peer_supported_group_list = NULL;
Adam Langley273d49c2015-07-20 16:38:52 -07002190 *out_alert = SSL_AD_INTERNAL_ERROR;
2191 return 0;
2192}
2193
Steven Valdezce902a92016-05-17 11:47:53 -04002194static int ext_supported_groups_add_serverhello(SSL *ssl, CBB *out) {
Adam Langley273d49c2015-07-20 16:38:52 -07002195 /* Servers don't echo this extension. */
2196 return 1;
2197}
2198
2199
Adam Langley614c66a2015-06-12 15:26:58 -07002200/* kExtensions contains all the supported extensions. */
2201static const struct tls_extension kExtensions[] = {
2202 {
Adam Langley5021b222015-06-12 18:27:58 -07002203 /* The renegotiation extension must always be at index zero because the
2204 * |received| and |sent| bitsets need to be tweaked when the "extension" is
2205 * sent as an SCSV. */
2206 TLSEXT_TYPE_renegotiate,
2207 NULL,
2208 ext_ri_add_clienthello,
2209 ext_ri_parse_serverhello,
2210 ext_ri_parse_clienthello,
2211 ext_ri_add_serverhello,
2212 },
2213 {
Adam Langley614c66a2015-06-12 15:26:58 -07002214 TLSEXT_TYPE_server_name,
2215 ext_sni_init,
2216 ext_sni_add_clienthello,
2217 ext_sni_parse_serverhello,
2218 ext_sni_parse_clienthello,
2219 ext_sni_add_serverhello,
2220 },
Adam Langley0a056712015-07-01 15:03:33 -07002221 {
2222 TLSEXT_TYPE_extended_master_secret,
2223 ext_ems_init,
2224 ext_ems_add_clienthello,
2225 ext_ems_parse_serverhello,
2226 ext_ems_parse_clienthello,
2227 ext_ems_add_serverhello,
2228 },
Adam Langley9b05bc52015-07-01 15:25:33 -07002229 {
2230 TLSEXT_TYPE_session_ticket,
2231 NULL,
2232 ext_ticket_add_clienthello,
2233 ext_ticket_parse_serverhello,
Steven Valdez6b8509a2016-07-12 13:38:32 -04002234 /* Ticket extension client parsing is handled in ssl_session.c */
2235 ignore_parse_clienthello,
Adam Langley9b05bc52015-07-01 15:25:33 -07002236 ext_ticket_add_serverhello,
2237 },
Adam Langley2e857bd2015-07-01 16:09:19 -07002238 {
2239 TLSEXT_TYPE_signature_algorithms,
2240 NULL,
2241 ext_sigalgs_add_clienthello,
Steven Valdez6b8509a2016-07-12 13:38:32 -04002242 forbid_parse_serverhello,
Adam Langley2e857bd2015-07-01 16:09:19 -07002243 ext_sigalgs_parse_clienthello,
Steven Valdez6b8509a2016-07-12 13:38:32 -04002244 dont_add_serverhello,
Adam Langley2e857bd2015-07-01 16:09:19 -07002245 },
Adam Langleybb0bd042015-07-01 16:21:03 -07002246 {
2247 TLSEXT_TYPE_status_request,
2248 ext_ocsp_init,
2249 ext_ocsp_add_clienthello,
2250 ext_ocsp_parse_serverhello,
2251 ext_ocsp_parse_clienthello,
2252 ext_ocsp_add_serverhello,
2253 },
Adam Langley97dfcbf2015-07-01 18:35:20 -07002254 {
2255 TLSEXT_TYPE_next_proto_neg,
2256 ext_npn_init,
2257 ext_npn_add_clienthello,
2258 ext_npn_parse_serverhello,
2259 ext_npn_parse_clienthello,
2260 ext_npn_add_serverhello,
2261 },
Adam Langleyab8d87d2015-07-10 12:21:39 -07002262 {
2263 TLSEXT_TYPE_certificate_timestamp,
2264 NULL,
2265 ext_sct_add_clienthello,
2266 ext_sct_parse_serverhello,
2267 ext_sct_parse_clienthello,
2268 ext_sct_add_serverhello,
2269 },
Adam Langleyf18e4532015-07-10 13:39:53 -07002270 {
2271 TLSEXT_TYPE_application_layer_protocol_negotiation,
2272 ext_alpn_init,
2273 ext_alpn_add_clienthello,
2274 ext_alpn_parse_serverhello,
2275 ext_alpn_parse_clienthello,
2276 ext_alpn_add_serverhello,
2277 },
Adam Langley49c7af12015-07-10 14:33:46 -07002278 {
2279 TLSEXT_TYPE_channel_id,
2280 ext_channel_id_init,
2281 ext_channel_id_add_clienthello,
2282 ext_channel_id_parse_serverhello,
2283 ext_channel_id_parse_clienthello,
2284 ext_channel_id_add_serverhello,
2285 },
Adam Langley391250d2015-07-15 19:06:07 -07002286 {
2287 TLSEXT_TYPE_srtp,
2288 ext_srtp_init,
2289 ext_srtp_add_clienthello,
2290 ext_srtp_parse_serverhello,
2291 ext_srtp_parse_clienthello,
2292 ext_srtp_add_serverhello,
2293 },
Adam Langleybdd5d662015-07-20 16:19:08 -07002294 {
2295 TLSEXT_TYPE_ec_point_formats,
David Benjaminfc059942015-07-30 23:01:59 -04002296 NULL,
Adam Langleybdd5d662015-07-20 16:19:08 -07002297 ext_ec_point_add_clienthello,
2298 ext_ec_point_parse_serverhello,
2299 ext_ec_point_parse_clienthello,
2300 ext_ec_point_add_serverhello,
2301 },
Steven Valdez143e8b32016-07-11 13:19:03 -04002302 {
2303 TLSEXT_TYPE_draft_version,
2304 NULL,
2305 ext_draft_version_add_clienthello,
2306 forbid_parse_serverhello,
2307 ignore_parse_clienthello,
2308 dont_add_serverhello,
2309 },
2310 {
2311 TLSEXT_TYPE_key_share,
2312 NULL,
2313 ext_key_share_add_clienthello,
2314 forbid_parse_serverhello,
2315 ignore_parse_clienthello,
2316 dont_add_serverhello,
2317 },
David Benjamin1e4ae002016-03-25 18:56:10 -04002318 /* The final extension must be non-empty. WebSphere Application Server 7.0 is
2319 * intolerant to the last extension being zero-length. See
2320 * https://crbug.com/363583. */
Adam Langley273d49c2015-07-20 16:38:52 -07002321 {
Steven Valdezce902a92016-05-17 11:47:53 -04002322 TLSEXT_TYPE_supported_groups,
2323 ext_supported_groups_init,
2324 ext_supported_groups_add_clienthello,
2325 ext_supported_groups_parse_serverhello,
2326 ext_supported_groups_parse_clienthello,
2327 ext_supported_groups_add_serverhello,
Adam Langley273d49c2015-07-20 16:38:52 -07002328 },
Adam Langley614c66a2015-06-12 15:26:58 -07002329};
2330
2331#define kNumExtensions (sizeof(kExtensions) / sizeof(struct tls_extension))
2332
Adam Langley4cfa96b2015-07-01 11:56:55 -07002333OPENSSL_COMPILE_ASSERT(kNumExtensions <=
2334 sizeof(((SSL *)NULL)->s3->tmp.extensions.sent) * 8,
David Benjamin7ca4b422015-07-13 16:43:47 -04002335 too_many_extensions_for_sent_bitset);
Adam Langley4cfa96b2015-07-01 11:56:55 -07002336OPENSSL_COMPILE_ASSERT(kNumExtensions <=
2337 sizeof(((SSL *)NULL)->s3->tmp.extensions.received) *
2338 8,
David Benjamin7ca4b422015-07-13 16:43:47 -04002339 too_many_extensions_for_received_bitset);
Adam Langley4cfa96b2015-07-01 11:56:55 -07002340
Adam Langley614c66a2015-06-12 15:26:58 -07002341static const struct tls_extension *tls_extension_find(uint32_t *out_index,
2342 uint16_t value) {
2343 unsigned i;
2344 for (i = 0; i < kNumExtensions; i++) {
2345 if (kExtensions[i].value == value) {
2346 *out_index = i;
2347 return &kExtensions[i];
2348 }
2349 }
2350
2351 return NULL;
2352}
2353
Adam Langley09505632015-07-30 18:10:13 -07002354int SSL_extension_supported(unsigned extension_value) {
2355 uint32_t index;
2356 return extension_value == TLSEXT_TYPE_padding ||
2357 tls_extension_find(&index, extension_value) != NULL;
2358}
2359
David Benjamine8d53502015-10-10 14:13:23 -04002360int ssl_add_clienthello_tlsext(SSL *ssl, CBB *out, size_t header_len) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002361 /* don't add extensions for SSLv3 unless doing secure renegotiation */
David Benjamine8d53502015-10-10 14:13:23 -04002362 if (ssl->client_version == SSL3_VERSION &&
2363 !ssl->s3->send_connection_binding) {
2364 return 1;
Adam Langleyfcf25832014-12-18 17:42:32 -08002365 }
Adam Langley95c29f32014-06-20 12:00:00 -07002366
David Benjamine8d53502015-10-10 14:13:23 -04002367 CBB extensions;
2368 if (!CBB_add_u16_length_prefixed(out, &extensions)) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002369 goto err;
Adam Langleyfcf25832014-12-18 17:42:32 -08002370 }
Adam Langley95c29f32014-06-20 12:00:00 -07002371
David Benjamine8d53502015-10-10 14:13:23 -04002372 ssl->s3->tmp.extensions.sent = 0;
2373 ssl->s3->tmp.custom_extensions.sent = 0;
Adam Langley95c29f32014-06-20 12:00:00 -07002374
Adam Langley614c66a2015-06-12 15:26:58 -07002375 size_t i;
2376 for (i = 0; i < kNumExtensions; i++) {
2377 if (kExtensions[i].init != NULL) {
David Benjamine8d53502015-10-10 14:13:23 -04002378 kExtensions[i].init(ssl);
Adam Langley614c66a2015-06-12 15:26:58 -07002379 }
2380 }
Adam Langley95c29f32014-06-20 12:00:00 -07002381
Adam Langley614c66a2015-06-12 15:26:58 -07002382 for (i = 0; i < kNumExtensions; i++) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002383 const size_t len_before = CBB_len(&extensions);
David Benjamine8d53502015-10-10 14:13:23 -04002384 if (!kExtensions[i].add_clienthello(ssl, &extensions)) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002385 OPENSSL_PUT_ERROR(SSL, SSL_R_ERROR_ADDING_EXTENSION);
2386 ERR_add_error_dataf("extension: %u", (unsigned)kExtensions[i].value);
2387 goto err;
Adam Langleyfcf25832014-12-18 17:42:32 -08002388 }
Adam Langley95c29f32014-06-20 12:00:00 -07002389
Adam Langley33ad2b52015-07-20 17:43:53 -07002390 if (CBB_len(&extensions) != len_before) {
David Benjamine8d53502015-10-10 14:13:23 -04002391 ssl->s3->tmp.extensions.sent |= (1u << i);
Adam Langley614c66a2015-06-12 15:26:58 -07002392 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002393 }
Adam Langley75712922014-10-10 16:23:43 -07002394
David Benjamine8d53502015-10-10 14:13:23 -04002395 if (!custom_ext_add_clienthello(ssl, &extensions)) {
Adam Langley09505632015-07-30 18:10:13 -07002396 goto err;
2397 }
2398
David Benjamine8d53502015-10-10 14:13:23 -04002399 if (!SSL_IS_DTLS(ssl)) {
David Benjamina01deee2015-12-08 18:56:31 -05002400 header_len += 2 + CBB_len(&extensions);
Adam Langleyfcf25832014-12-18 17:42:32 -08002401 if (header_len > 0xff && header_len < 0x200) {
Adam Langley10a1a9d2015-10-21 14:49:23 -07002402 /* Add padding to workaround bugs in F5 terminators. See RFC 7685.
Adam Langleyfcf25832014-12-18 17:42:32 -08002403 *
2404 * NB: because this code works out the length of all existing extensions
2405 * it MUST always appear last. */
David Benjamin0a968592015-07-21 22:06:19 -04002406 size_t padding_len = 0x200 - header_len;
David Benjamin1e4ae002016-03-25 18:56:10 -04002407 /* Extensions take at least four bytes to encode. Always include at least
Adam Langleyfcf25832014-12-18 17:42:32 -08002408 * one byte of data if including the extension. WebSphere Application
David Benjamin1e4ae002016-03-25 18:56:10 -04002409 * Server 7.0 is intolerant to the last extension being zero-length. See
2410 * https://crbug.com/363583. */
Adam Langleyfcf25832014-12-18 17:42:32 -08002411 if (padding_len >= 4 + 1) {
2412 padding_len -= 4;
2413 } else {
2414 padding_len = 1;
2415 }
Adam Langley95c29f32014-06-20 12:00:00 -07002416
Adam Langley33ad2b52015-07-20 17:43:53 -07002417 uint8_t *padding_bytes;
2418 if (!CBB_add_u16(&extensions, TLSEXT_TYPE_padding) ||
2419 !CBB_add_u16(&extensions, padding_len) ||
2420 !CBB_add_space(&extensions, &padding_bytes, padding_len)) {
2421 goto err;
Adam Langleyfcf25832014-12-18 17:42:32 -08002422 }
Adam Langley75712922014-10-10 16:23:43 -07002423
Adam Langley33ad2b52015-07-20 17:43:53 -07002424 memset(padding_bytes, 0, padding_len);
Adam Langleyfcf25832014-12-18 17:42:32 -08002425 }
2426 }
Adam Langley75712922014-10-10 16:23:43 -07002427
David Benjamina01deee2015-12-08 18:56:31 -05002428 /* Discard empty extensions blocks. */
2429 if (CBB_len(&extensions) == 0) {
David Benjamine8d53502015-10-10 14:13:23 -04002430 CBB_discard_child(out);
Adam Langley33ad2b52015-07-20 17:43:53 -07002431 }
2432
David Benjamine8d53502015-10-10 14:13:23 -04002433 return CBB_flush(out);
Adam Langley33ad2b52015-07-20 17:43:53 -07002434
2435err:
Adam Langley33ad2b52015-07-20 17:43:53 -07002436 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
David Benjamine8d53502015-10-10 14:13:23 -04002437 return 0;
Adam Langleyfcf25832014-12-18 17:42:32 -08002438}
Adam Langley95c29f32014-06-20 12:00:00 -07002439
David Benjamin56380462015-10-10 14:59:09 -04002440int ssl_add_serverhello_tlsext(SSL *ssl, CBB *out) {
David Benjamin56380462015-10-10 14:59:09 -04002441 CBB extensions;
2442 if (!CBB_add_u16_length_prefixed(out, &extensions)) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002443 goto err;
Adam Langley614c66a2015-06-12 15:26:58 -07002444 }
2445
2446 unsigned i;
2447 for (i = 0; i < kNumExtensions; i++) {
David Benjamin56380462015-10-10 14:59:09 -04002448 if (!(ssl->s3->tmp.extensions.received & (1u << i))) {
Adam Langley614c66a2015-06-12 15:26:58 -07002449 /* Don't send extensions that were not received. */
2450 continue;
Adam Langleyfcf25832014-12-18 17:42:32 -08002451 }
Adam Langley95c29f32014-06-20 12:00:00 -07002452
David Benjamin56380462015-10-10 14:59:09 -04002453 if (!kExtensions[i].add_serverhello(ssl, &extensions)) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002454 OPENSSL_PUT_ERROR(SSL, SSL_R_ERROR_ADDING_EXTENSION);
2455 ERR_add_error_dataf("extension: %u", (unsigned)kExtensions[i].value);
2456 goto err;
Adam Langley614c66a2015-06-12 15:26:58 -07002457 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002458 }
Adam Langley95c29f32014-06-20 12:00:00 -07002459
David Benjamin56380462015-10-10 14:59:09 -04002460 if (!custom_ext_add_serverhello(ssl, &extensions)) {
Adam Langley09505632015-07-30 18:10:13 -07002461 goto err;
2462 }
2463
Steven Valdez143e8b32016-07-11 13:19:03 -04002464 /* Discard empty extensions blocks before TLS 1.3. */
2465 if (ssl3_protocol_version(ssl) < TLS1_3_VERSION &&
2466 CBB_len(&extensions) == 0) {
David Benjamin56380462015-10-10 14:59:09 -04002467 CBB_discard_child(out);
Adam Langley33ad2b52015-07-20 17:43:53 -07002468 }
2469
David Benjamin56380462015-10-10 14:59:09 -04002470 return CBB_flush(out);
Adam Langley33ad2b52015-07-20 17:43:53 -07002471
2472err:
Adam Langley33ad2b52015-07-20 17:43:53 -07002473 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
David Benjamin56380462015-10-10 14:59:09 -04002474 return 0;
Adam Langleyfcf25832014-12-18 17:42:32 -08002475}
Adam Langley95c29f32014-06-20 12:00:00 -07002476
David Benjamin0d56f882015-12-19 17:05:56 -05002477static int ssl_scan_clienthello_tlsext(SSL *ssl, CBS *cbs, int *out_alert) {
Adam Langley614c66a2015-06-12 15:26:58 -07002478 size_t i;
2479 for (i = 0; i < kNumExtensions; i++) {
2480 if (kExtensions[i].init != NULL) {
David Benjamin0d56f882015-12-19 17:05:56 -05002481 kExtensions[i].init(ssl);
Adam Langley614c66a2015-06-12 15:26:58 -07002482 }
2483 }
2484
David Benjamin0d56f882015-12-19 17:05:56 -05002485 ssl->s3->tmp.extensions.received = 0;
2486 ssl->s3->tmp.custom_extensions.received = 0;
Adam Langley5021b222015-06-12 18:27:58 -07002487 /* The renegotiation extension must always be at index zero because the
2488 * |received| and |sent| bitsets need to be tweaked when the "extension" is
2489 * sent as an SCSV. */
2490 assert(kExtensions[0].value == TLSEXT_TYPE_renegotiate);
Adam Langley614c66a2015-06-12 15:26:58 -07002491
Adam Langleyfcf25832014-12-18 17:42:32 -08002492 /* There may be no extensions. */
Adam Langley33ad2b52015-07-20 17:43:53 -07002493 if (CBS_len(cbs) != 0) {
2494 /* Decode the extensions block and check it is valid. */
2495 CBS extensions;
2496 if (!CBS_get_u16_length_prefixed(cbs, &extensions) ||
2497 !tls1_check_duplicate_extensions(&extensions)) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002498 *out_alert = SSL_AD_DECODE_ERROR;
2499 return 0;
2500 }
Adam Langley95c29f32014-06-20 12:00:00 -07002501
Adam Langley33ad2b52015-07-20 17:43:53 -07002502 while (CBS_len(&extensions) != 0) {
2503 uint16_t type;
2504 CBS extension;
Adam Langley95c29f32014-06-20 12:00:00 -07002505
Adam Langley33ad2b52015-07-20 17:43:53 -07002506 /* Decode the next extension. */
2507 if (!CBS_get_u16(&extensions, &type) ||
2508 !CBS_get_u16_length_prefixed(&extensions, &extension)) {
2509 *out_alert = SSL_AD_DECODE_ERROR;
2510 return 0;
2511 }
2512
David Benjaminc7ce9772015-10-09 19:32:41 -04002513 /* RFC 5746 made the existence of extensions in SSL 3.0 somewhat
2514 * ambiguous. Ignore all but the renegotiation_info extension. */
David Benjamin0d56f882015-12-19 17:05:56 -05002515 if (ssl->version == SSL3_VERSION && type != TLSEXT_TYPE_renegotiate) {
David Benjaminc7ce9772015-10-09 19:32:41 -04002516 continue;
2517 }
2518
Adam Langley33ad2b52015-07-20 17:43:53 -07002519 unsigned ext_index;
2520 const struct tls_extension *const ext =
2521 tls_extension_find(&ext_index, type);
2522
2523 if (ext == NULL) {
David Benjamin0d56f882015-12-19 17:05:56 -05002524 if (!custom_ext_parse_clienthello(ssl, out_alert, type, &extension)) {
Adam Langley09505632015-07-30 18:10:13 -07002525 OPENSSL_PUT_ERROR(SSL, SSL_R_ERROR_PARSING_EXTENSION);
2526 return 0;
2527 }
Adam Langley33ad2b52015-07-20 17:43:53 -07002528 continue;
2529 }
2530
David Benjamin0d56f882015-12-19 17:05:56 -05002531 ssl->s3->tmp.extensions.received |= (1u << ext_index);
Adam Langley614c66a2015-06-12 15:26:58 -07002532 uint8_t alert = SSL_AD_DECODE_ERROR;
David Benjamin0d56f882015-12-19 17:05:56 -05002533 if (!ext->parse_clienthello(ssl, &alert, &extension)) {
Adam Langley614c66a2015-06-12 15:26:58 -07002534 *out_alert = alert;
Adam Langley33ad2b52015-07-20 17:43:53 -07002535 OPENSSL_PUT_ERROR(SSL, SSL_R_ERROR_PARSING_EXTENSION);
2536 ERR_add_error_dataf("extension: %u", (unsigned)type);
Adam Langleyfcf25832014-12-18 17:42:32 -08002537 return 0;
2538 }
Adam Langley614c66a2015-06-12 15:26:58 -07002539 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002540 }
Adam Langley75712922014-10-10 16:23:43 -07002541
Adam Langley614c66a2015-06-12 15:26:58 -07002542 for (i = 0; i < kNumExtensions; i++) {
David Benjamin0d56f882015-12-19 17:05:56 -05002543 if (!(ssl->s3->tmp.extensions.received & (1u << i))) {
Adam Langley614c66a2015-06-12 15:26:58 -07002544 /* Extension wasn't observed so call the callback with a NULL
2545 * parameter. */
2546 uint8_t alert = SSL_AD_DECODE_ERROR;
David Benjamin0d56f882015-12-19 17:05:56 -05002547 if (!kExtensions[i].parse_clienthello(ssl, &alert, NULL)) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002548 OPENSSL_PUT_ERROR(SSL, SSL_R_MISSING_EXTENSION);
2549 ERR_add_error_dataf("extension: %u", (unsigned)kExtensions[i].value);
Adam Langley614c66a2015-06-12 15:26:58 -07002550 *out_alert = alert;
2551 return 0;
2552 }
2553 }
2554 }
2555
Adam Langleyfcf25832014-12-18 17:42:32 -08002556 return 1;
2557}
Adam Langley95c29f32014-06-20 12:00:00 -07002558
David Benjamin0d56f882015-12-19 17:05:56 -05002559int ssl_parse_clienthello_tlsext(SSL *ssl, CBS *cbs) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002560 int alert = -1;
David Benjamin0d56f882015-12-19 17:05:56 -05002561 if (ssl_scan_clienthello_tlsext(ssl, cbs, &alert) <= 0) {
2562 ssl3_send_alert(ssl, SSL3_AL_FATAL, alert);
Adam Langleyfcf25832014-12-18 17:42:32 -08002563 return 0;
2564 }
Adam Langley95c29f32014-06-20 12:00:00 -07002565
David Benjamin0d56f882015-12-19 17:05:56 -05002566 if (ssl_check_clienthello_tlsext(ssl) <= 0) {
David Benjamin3570d732015-06-29 00:28:17 -04002567 OPENSSL_PUT_ERROR(SSL, SSL_R_CLIENTHELLO_TLSEXT);
Adam Langleyfcf25832014-12-18 17:42:32 -08002568 return 0;
2569 }
Adam Langley95c29f32014-06-20 12:00:00 -07002570
Adam Langleyfcf25832014-12-18 17:42:32 -08002571 return 1;
2572}
Adam Langley95c29f32014-06-20 12:00:00 -07002573
Matt Braithwaitee564a5b2015-09-30 15:24:05 -07002574OPENSSL_COMPILE_ASSERT(kNumExtensions <= sizeof(uint32_t) * 8, too_many_bits);
2575
David Benjamin0d56f882015-12-19 17:05:56 -05002576static int ssl_scan_serverhello_tlsext(SSL *ssl, CBS *cbs, int *out_alert) {
Steven Valdez143e8b32016-07-11 13:19:03 -04002577 /* Before TLS 1.3, ServerHello extensions blocks may be omitted if empty. */
2578 if (CBS_len(cbs) == 0 && ssl3_protocol_version(ssl) < TLS1_3_VERSION) {
2579 return 1;
2580 }
Adam Langley614c66a2015-06-12 15:26:58 -07002581
Steven Valdez143e8b32016-07-11 13:19:03 -04002582 /* Decode the extensions block and check it is valid. */
2583 CBS extensions;
2584 if (!CBS_get_u16_length_prefixed(cbs, &extensions) ||
2585 !tls1_check_duplicate_extensions(&extensions)) {
2586 *out_alert = SSL_AD_DECODE_ERROR;
2587 return 0;
2588 }
2589
2590 uint32_t received = 0;
2591 while (CBS_len(&extensions) != 0) {
2592 uint16_t type;
2593 CBS extension;
2594
2595 /* Decode the next extension. */
2596 if (!CBS_get_u16(&extensions, &type) ||
2597 !CBS_get_u16_length_prefixed(&extensions, &extension)) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002598 *out_alert = SSL_AD_DECODE_ERROR;
2599 return 0;
2600 }
Adam Langley95c29f32014-06-20 12:00:00 -07002601
Steven Valdez143e8b32016-07-11 13:19:03 -04002602 unsigned ext_index;
2603 const struct tls_extension *const ext =
2604 tls_extension_find(&ext_index, type);
Adam Langley614c66a2015-06-12 15:26:58 -07002605
Steven Valdez143e8b32016-07-11 13:19:03 -04002606 if (ext == NULL) {
2607 if (!custom_ext_parse_serverhello(ssl, out_alert, type, &extension)) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002608 return 0;
2609 }
Steven Valdez143e8b32016-07-11 13:19:03 -04002610 continue;
2611 }
Adam Langley33ad2b52015-07-20 17:43:53 -07002612
Steven Valdez143e8b32016-07-11 13:19:03 -04002613 if (!(ssl->s3->tmp.extensions.sent & (1u << ext_index))) {
2614 /* If the extension was never sent then it is illegal. */
2615 OPENSSL_PUT_ERROR(SSL, SSL_R_UNEXPECTED_EXTENSION);
2616 ERR_add_error_dataf("extension :%u", (unsigned)type);
2617 *out_alert = SSL_AD_DECODE_ERROR;
2618 return 0;
2619 }
Adam Langley33ad2b52015-07-20 17:43:53 -07002620
Steven Valdez143e8b32016-07-11 13:19:03 -04002621 received |= (1u << ext_index);
Adam Langley09505632015-07-30 18:10:13 -07002622
Steven Valdez143e8b32016-07-11 13:19:03 -04002623 uint8_t alert = SSL_AD_DECODE_ERROR;
2624 if (!ext->parse_serverhello(ssl, &alert, &extension)) {
2625 OPENSSL_PUT_ERROR(SSL, SSL_R_ERROR_PARSING_EXTENSION);
2626 ERR_add_error_dataf("extension: %u", (unsigned)type);
2627 *out_alert = alert;
2628 return 0;
Adam Langley614c66a2015-06-12 15:26:58 -07002629 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002630 }
Adam Langley95c29f32014-06-20 12:00:00 -07002631
Adam Langley33ad2b52015-07-20 17:43:53 -07002632 size_t i;
Adam Langley614c66a2015-06-12 15:26:58 -07002633 for (i = 0; i < kNumExtensions; i++) {
2634 if (!(received & (1u << i))) {
2635 /* Extension wasn't observed so call the callback with a NULL
2636 * parameter. */
2637 uint8_t alert = SSL_AD_DECODE_ERROR;
David Benjamin0d56f882015-12-19 17:05:56 -05002638 if (!kExtensions[i].parse_serverhello(ssl, &alert, NULL)) {
Adam Langley33ad2b52015-07-20 17:43:53 -07002639 OPENSSL_PUT_ERROR(SSL, SSL_R_MISSING_EXTENSION);
2640 ERR_add_error_dataf("extension: %u", (unsigned)kExtensions[i].value);
Adam Langley614c66a2015-06-12 15:26:58 -07002641 *out_alert = alert;
Adam Langleyfcf25832014-12-18 17:42:32 -08002642 return 0;
2643 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002644 }
2645 }
Adam Langley95c29f32014-06-20 12:00:00 -07002646
Adam Langleyfcf25832014-12-18 17:42:32 -08002647 return 1;
2648}
Adam Langley95c29f32014-06-20 12:00:00 -07002649
David Benjamin0d56f882015-12-19 17:05:56 -05002650static int ssl_check_clienthello_tlsext(SSL *ssl) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002651 int ret = SSL_TLSEXT_ERR_NOACK;
2652 int al = SSL_AD_UNRECOGNIZED_NAME;
Adam Langleyed8270a2014-09-02 13:52:56 -07002653
David Benjamin78f8aab2016-03-10 16:33:58 -05002654 if (ssl->ctx->tlsext_servername_callback != 0) {
David Benjamin0d56f882015-12-19 17:05:56 -05002655 ret = ssl->ctx->tlsext_servername_callback(ssl, &al,
David Benjamin78f8aab2016-03-10 16:33:58 -05002656 ssl->ctx->tlsext_servername_arg);
2657 } else if (ssl->initial_ctx->tlsext_servername_callback != 0) {
David Benjamin0d56f882015-12-19 17:05:56 -05002658 ret = ssl->initial_ctx->tlsext_servername_callback(
2659 ssl, &al, ssl->initial_ctx->tlsext_servername_arg);
Adam Langleyfcf25832014-12-18 17:42:32 -08002660 }
Adam Langley95c29f32014-06-20 12:00:00 -07002661
Adam Langleyfcf25832014-12-18 17:42:32 -08002662 switch (ret) {
2663 case SSL_TLSEXT_ERR_ALERT_FATAL:
David Benjamin0d56f882015-12-19 17:05:56 -05002664 ssl3_send_alert(ssl, SSL3_AL_FATAL, al);
Adam Langleyfcf25832014-12-18 17:42:32 -08002665 return -1;
Adam Langley95c29f32014-06-20 12:00:00 -07002666
Adam Langleyfcf25832014-12-18 17:42:32 -08002667 case SSL_TLSEXT_ERR_ALERT_WARNING:
David Benjamin0d56f882015-12-19 17:05:56 -05002668 ssl3_send_alert(ssl, SSL3_AL_WARNING, al);
Adam Langleyfcf25832014-12-18 17:42:32 -08002669 return 1;
Adam Langley95c29f32014-06-20 12:00:00 -07002670
Adam Langleyfcf25832014-12-18 17:42:32 -08002671 case SSL_TLSEXT_ERR_NOACK:
David Benjamin0d56f882015-12-19 17:05:56 -05002672 ssl->s3->tmp.should_ack_sni = 0;
Adam Langleyfcf25832014-12-18 17:42:32 -08002673 return 1;
Adam Langley95c29f32014-06-20 12:00:00 -07002674
Adam Langleyfcf25832014-12-18 17:42:32 -08002675 default:
2676 return 1;
2677 }
2678}
Adam Langleyed8270a2014-09-02 13:52:56 -07002679
David Benjamin0d56f882015-12-19 17:05:56 -05002680static int ssl_check_serverhello_tlsext(SSL *ssl) {
David Benjaminfc059942015-07-30 23:01:59 -04002681 int ret = SSL_TLSEXT_ERR_OK;
Adam Langleyfcf25832014-12-18 17:42:32 -08002682 int al = SSL_AD_UNRECOGNIZED_NAME;
Adam Langley95c29f32014-06-20 12:00:00 -07002683
David Benjamin78f8aab2016-03-10 16:33:58 -05002684 if (ssl->ctx->tlsext_servername_callback != 0) {
David Benjamin0d56f882015-12-19 17:05:56 -05002685 ret = ssl->ctx->tlsext_servername_callback(ssl, &al,
David Benjamin78f8aab2016-03-10 16:33:58 -05002686 ssl->ctx->tlsext_servername_arg);
2687 } else if (ssl->initial_ctx->tlsext_servername_callback != 0) {
David Benjamin0d56f882015-12-19 17:05:56 -05002688 ret = ssl->initial_ctx->tlsext_servername_callback(
2689 ssl, &al, ssl->initial_ctx->tlsext_servername_arg);
Adam Langleyfcf25832014-12-18 17:42:32 -08002690 }
Adam Langley95c29f32014-06-20 12:00:00 -07002691
Adam Langleyfcf25832014-12-18 17:42:32 -08002692 switch (ret) {
2693 case SSL_TLSEXT_ERR_ALERT_FATAL:
David Benjamin0d56f882015-12-19 17:05:56 -05002694 ssl3_send_alert(ssl, SSL3_AL_FATAL, al);
Adam Langleyfcf25832014-12-18 17:42:32 -08002695 return -1;
David Benjamin03973092014-06-24 23:27:17 -04002696
Adam Langleyfcf25832014-12-18 17:42:32 -08002697 case SSL_TLSEXT_ERR_ALERT_WARNING:
David Benjamin0d56f882015-12-19 17:05:56 -05002698 ssl3_send_alert(ssl, SSL3_AL_WARNING, al);
Adam Langleyfcf25832014-12-18 17:42:32 -08002699 return 1;
2700
2701 default:
2702 return 1;
2703 }
2704}
2705
David Benjamin0d56f882015-12-19 17:05:56 -05002706int ssl_parse_serverhello_tlsext(SSL *ssl, CBS *cbs) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002707 int alert = -1;
David Benjamin0d56f882015-12-19 17:05:56 -05002708 if (ssl_scan_serverhello_tlsext(ssl, cbs, &alert) <= 0) {
2709 ssl3_send_alert(ssl, SSL3_AL_FATAL, alert);
Adam Langleyfcf25832014-12-18 17:42:32 -08002710 return 0;
2711 }
2712
David Benjamin0d56f882015-12-19 17:05:56 -05002713 if (ssl_check_serverhello_tlsext(ssl) <= 0) {
David Benjamin3570d732015-06-29 00:28:17 -04002714 OPENSSL_PUT_ERROR(SSL, SSL_R_SERVERHELLO_TLSEXT);
Adam Langleyfcf25832014-12-18 17:42:32 -08002715 return 0;
2716 }
2717
2718 return 1;
2719}
Adam Langley95c29f32014-06-20 12:00:00 -07002720
David Benjamine3aa1d92015-06-16 15:34:50 -04002721int tls_process_ticket(SSL *ssl, SSL_SESSION **out_session,
David Benjaminef1b0092015-11-21 14:05:44 -05002722 int *out_renew_ticket, const uint8_t *ticket,
David Benjamine3aa1d92015-06-16 15:34:50 -04002723 size_t ticket_len, const uint8_t *session_id,
2724 size_t session_id_len) {
2725 int ret = 1; /* Most errors are non-fatal. */
2726 SSL_CTX *ssl_ctx = ssl->initial_ctx;
2727 uint8_t *plaintext = NULL;
Adam Langley95c29f32014-06-20 12:00:00 -07002728
David Benjamine3aa1d92015-06-16 15:34:50 -04002729 HMAC_CTX hmac_ctx;
2730 HMAC_CTX_init(&hmac_ctx);
2731 EVP_CIPHER_CTX cipher_ctx;
2732 EVP_CIPHER_CTX_init(&cipher_ctx);
2733
David Benjaminef1b0092015-11-21 14:05:44 -05002734 *out_renew_ticket = 0;
David Benjamine3aa1d92015-06-16 15:34:50 -04002735 *out_session = NULL;
2736
2737 if (session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
2738 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002739 }
2740
David Benjaminadcc3952015-04-26 13:07:57 -04002741 /* Ensure there is room for the key name and the largest IV
2742 * |tlsext_ticket_key_cb| may try to consume. The real limit may be lower, but
2743 * the maximum IV length should be well under the minimum size for the
2744 * session material and HMAC. */
David Benjamine3aa1d92015-06-16 15:34:50 -04002745 if (ticket_len < SSL_TICKET_KEY_NAME_LEN + EVP_MAX_IV_LENGTH) {
2746 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002747 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002748 const uint8_t *iv = ticket + SSL_TICKET_KEY_NAME_LEN;
Adam Langleyfcf25832014-12-18 17:42:32 -08002749
David Benjamine3aa1d92015-06-16 15:34:50 -04002750 if (ssl_ctx->tlsext_ticket_key_cb != NULL) {
David Benjamin0d56f882015-12-19 17:05:56 -05002751 int cb_ret = ssl_ctx->tlsext_ticket_key_cb(
2752 ssl, (uint8_t *)ticket /* name */, (uint8_t *)iv, &cipher_ctx,
2753 &hmac_ctx, 0 /* decrypt */);
David Benjamine3aa1d92015-06-16 15:34:50 -04002754 if (cb_ret < 0) {
2755 ret = 0;
2756 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002757 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002758 if (cb_ret == 0) {
2759 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002760 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002761 if (cb_ret == 2) {
David Benjaminef1b0092015-11-21 14:05:44 -05002762 *out_renew_ticket = 1;
Adam Langleyfcf25832014-12-18 17:42:32 -08002763 }
2764 } else {
David Benjamine3aa1d92015-06-16 15:34:50 -04002765 /* Check the key name matches. */
2766 if (memcmp(ticket, ssl_ctx->tlsext_tick_key_name,
2767 SSL_TICKET_KEY_NAME_LEN) != 0) {
2768 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002769 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002770 if (!HMAC_Init_ex(&hmac_ctx, ssl_ctx->tlsext_tick_hmac_key,
2771 sizeof(ssl_ctx->tlsext_tick_hmac_key), tlsext_tick_md(),
Adam Langleyfcf25832014-12-18 17:42:32 -08002772 NULL) ||
David Benjamine3aa1d92015-06-16 15:34:50 -04002773 !EVP_DecryptInit_ex(&cipher_ctx, EVP_aes_128_cbc(), NULL,
2774 ssl_ctx->tlsext_tick_aes_key, iv)) {
2775 ret = 0;
2776 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002777 }
2778 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002779 size_t iv_len = EVP_CIPHER_CTX_iv_length(&cipher_ctx);
Adam Langleyfcf25832014-12-18 17:42:32 -08002780
David Benjamine3aa1d92015-06-16 15:34:50 -04002781 /* Check the MAC at the end of the ticket. */
2782 uint8_t mac[EVP_MAX_MD_SIZE];
2783 size_t mac_len = HMAC_size(&hmac_ctx);
2784 if (ticket_len < SSL_TICKET_KEY_NAME_LEN + iv_len + 1 + mac_len) {
David Benjaminadcc3952015-04-26 13:07:57 -04002785 /* The ticket must be large enough for key name, IV, data, and MAC. */
David Benjamine3aa1d92015-06-16 15:34:50 -04002786 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002787 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002788 HMAC_Update(&hmac_ctx, ticket, ticket_len - mac_len);
2789 HMAC_Final(&hmac_ctx, mac, NULL);
2790 if (CRYPTO_memcmp(mac, ticket + (ticket_len - mac_len), mac_len) != 0) {
2791 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002792 }
2793
David Benjamine3aa1d92015-06-16 15:34:50 -04002794 /* Decrypt the session data. */
2795 const uint8_t *ciphertext = ticket + SSL_TICKET_KEY_NAME_LEN + iv_len;
2796 size_t ciphertext_len = ticket_len - SSL_TICKET_KEY_NAME_LEN - iv_len -
2797 mac_len;
2798 plaintext = OPENSSL_malloc(ciphertext_len);
2799 if (plaintext == NULL) {
2800 ret = 0;
2801 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002802 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002803 if (ciphertext_len >= INT_MAX) {
2804 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002805 }
David Benjamine3aa1d92015-06-16 15:34:50 -04002806 int len1, len2;
2807 if (!EVP_DecryptUpdate(&cipher_ctx, plaintext, &len1, ciphertext,
2808 (int)ciphertext_len) ||
2809 !EVP_DecryptFinal_ex(&cipher_ctx, plaintext + len1, &len2)) {
2810 ERR_clear_error(); /* Don't leave an error on the queue. */
2811 goto done;
Adam Langleyfcf25832014-12-18 17:42:32 -08002812 }
2813
David Benjamine3aa1d92015-06-16 15:34:50 -04002814 /* Decode the session. */
2815 SSL_SESSION *session = SSL_SESSION_from_bytes(plaintext, len1 + len2);
2816 if (session == NULL) {
2817 ERR_clear_error(); /* Don't leave an error on the queue. */
2818 goto done;
2819 }
2820
2821 /* Copy the client's session ID into the new session, to denote the ticket has
2822 * been accepted. */
2823 memcpy(session->session_id, session_id, session_id_len);
2824 session->session_id_length = session_id_len;
2825
2826 *out_session = session;
2827
2828done:
2829 OPENSSL_free(plaintext);
2830 HMAC_CTX_cleanup(&hmac_ctx);
2831 EVP_CIPHER_CTX_cleanup(&cipher_ctx);
2832 return ret;
Adam Langleyfcf25832014-12-18 17:42:32 -08002833}
Adam Langley95c29f32014-06-20 12:00:00 -07002834
Steven Valdez0d62f262015-09-04 12:41:04 -04002835int tls1_parse_peer_sigalgs(SSL *ssl, const CBS *in_sigalgs) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002836 /* Extension ignored for inappropriate versions */
David Benjamina1e9cab2015-12-30 00:08:49 -05002837 if (ssl3_protocol_version(ssl) < TLS1_2_VERSION) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002838 return 1;
2839 }
David Benjamincd996942014-07-20 16:23:51 -04002840
Steven Valdez0d62f262015-09-04 12:41:04 -04002841 CERT *const cert = ssl->cert;
2842 OPENSSL_free(cert->peer_sigalgs);
2843 cert->peer_sigalgs = NULL;
2844 cert->peer_sigalgslen = 0;
2845
2846 size_t num_sigalgs = CBS_len(in_sigalgs);
2847
2848 if (num_sigalgs % 2 != 0) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002849 return 0;
2850 }
Steven Valdez0d62f262015-09-04 12:41:04 -04002851 num_sigalgs /= 2;
2852
2853 /* supported_signature_algorithms in the certificate request is
2854 * allowed to be empty. */
2855 if (num_sigalgs == 0) {
2856 return 1;
2857 }
2858
Steven Valdez02563852016-06-23 13:33:05 -04002859 /* This multiplication doesn't overflow because sizeof(uint16_t) is two
2860 * and we just divided |num_sigalgs| by two. */
2861 cert->peer_sigalgs = OPENSSL_malloc(num_sigalgs * sizeof(uint16_t));
Steven Valdez0d62f262015-09-04 12:41:04 -04002862 if (cert->peer_sigalgs == NULL) {
2863 return 0;
2864 }
2865 cert->peer_sigalgslen = num_sigalgs;
2866
2867 CBS sigalgs;
2868 CBS_init(&sigalgs, CBS_data(in_sigalgs), CBS_len(in_sigalgs));
2869
2870 size_t i;
2871 for (i = 0; i < num_sigalgs; i++) {
Steven Valdez02563852016-06-23 13:33:05 -04002872 if (!CBS_get_u16(&sigalgs, &cert->peer_sigalgs[i])) {
Steven Valdez0d62f262015-09-04 12:41:04 -04002873 return 0;
2874 }
2875 }
Adam Langley95c29f32014-06-20 12:00:00 -07002876
Adam Langleyfcf25832014-12-18 17:42:32 -08002877 return 1;
2878}
David Benjaminec2f27d2014-11-13 19:17:25 -05002879
David Benjaminea9a0d52016-07-08 15:52:59 -07002880int tls1_choose_signature_algorithm(SSL *ssl, uint16_t *out) {
David Benjamind1d80782015-07-05 11:54:09 -04002881 CERT *cert = ssl->cert;
Steven Valdez0d62f262015-09-04 12:41:04 -04002882 size_t i, j;
David Benjaminec2f27d2014-11-13 19:17:25 -05002883
Steven Valdezf0451ca2016-06-29 13:16:27 -04002884 /* Before TLS 1.2, the signature algorithm isn't negotiated as part of the
2885 * handshake. It is fixed at MD5-SHA1 for RSA and SHA1 for ECDSA. */
2886 if (ssl3_protocol_version(ssl) < TLS1_2_VERSION) {
David Benjamin0c0b7e12016-07-14 13:47:55 -04002887 int type = ssl_private_key_type(ssl);
2888 if (type == NID_rsaEncryption) {
David Benjaminea9a0d52016-07-08 15:52:59 -07002889 *out = SSL_SIGN_RSA_PKCS1_MD5_SHA1;
David Benjamin0c0b7e12016-07-14 13:47:55 -04002890 return 1;
Steven Valdezf0451ca2016-06-29 13:16:27 -04002891 }
David Benjamin0c0b7e12016-07-14 13:47:55 -04002892 if (ssl_is_ecdsa_key_type(type)) {
2893 *out = SSL_SIGN_ECDSA_SHA1;
2894 return 1;
2895 }
2896 OPENSSL_PUT_ERROR(SSL, SSL_R_NO_COMMON_SIGNATURE_ALGORITHMS);
2897 return 0;
Steven Valdezf0451ca2016-06-29 13:16:27 -04002898 }
2899
Steven Valdezeff1e8d2016-07-06 14:24:47 -04002900 const uint16_t *sigalgs;
2901 size_t sigalgs_len = tls12_get_psigalgs(ssl, &sigalgs);
David Benjamind246b812016-07-08 15:07:02 -07002902 if (cert->sigalgs != NULL) {
2903 sigalgs = cert->sigalgs;
2904 sigalgs_len = cert->sigalgs_len;
Steven Valdez0d62f262015-09-04 12:41:04 -04002905 }
2906
David Benjaminea9a0d52016-07-08 15:52:59 -07002907 const uint16_t *peer_sigalgs = cert->peer_sigalgs;
2908 size_t peer_sigalgs_len = cert->peer_sigalgslen;
David Benjamin51dd7d62016-07-08 16:07:01 -07002909 if (peer_sigalgs_len == 0 && ssl3_protocol_version(ssl) < TLS1_3_VERSION) {
David Benjaminea9a0d52016-07-08 15:52:59 -07002910 /* If the client didn't specify any signature_algorithms extension then
2911 * we can assume that it supports SHA1. See
2912 * http://tools.ietf.org/html/rfc5246#section-7.4.1.4.1 */
2913 static const uint16_t kDefaultPeerAlgorithms[] = {SSL_SIGN_RSA_PKCS1_SHA1,
2914 SSL_SIGN_ECDSA_SHA1};
2915 peer_sigalgs = kDefaultPeerAlgorithms;
2916 peer_sigalgs_len =
2917 sizeof(kDefaultPeerAlgorithms) / sizeof(kDefaultPeerAlgorithms);
2918 }
2919
David Benjamind246b812016-07-08 15:07:02 -07002920 for (i = 0; i < sigalgs_len; i++) {
David Benjamin1fb125c2016-07-08 18:52:12 -07002921 uint16_t sigalg = sigalgs[i];
2922 /* SSL_SIGN_RSA_PKCS1_MD5_SHA1 is an internal value and should never be
2923 * negotiated. */
2924 if (sigalg == SSL_SIGN_RSA_PKCS1_MD5_SHA1 ||
2925 !ssl_private_key_supports_signature_algorithm(ssl, sigalgs[i])) {
2926 continue;
2927 }
2928
David Benjaminea9a0d52016-07-08 15:52:59 -07002929 for (j = 0; j < peer_sigalgs_len; j++) {
David Benjamin1fb125c2016-07-08 18:52:12 -07002930 if (sigalg == peer_sigalgs[j]) {
2931 *out = sigalg;
David Benjaminea9a0d52016-07-08 15:52:59 -07002932 return 1;
Steven Valdezf0451ca2016-06-29 13:16:27 -04002933 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002934 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002935 }
Adam Langley95c29f32014-06-20 12:00:00 -07002936
David Benjaminea9a0d52016-07-08 15:52:59 -07002937 OPENSSL_PUT_ERROR(SSL, SSL_R_NO_COMMON_SIGNATURE_ALGORITHMS);
2938 return 0;
Adam Langleyfcf25832014-12-18 17:42:32 -08002939}
Adam Langley95c29f32014-06-20 12:00:00 -07002940
David Benjamind6a4ae92015-08-06 11:10:51 -04002941int tls1_channel_id_hash(SSL *ssl, uint8_t *out, size_t *out_len) {
2942 int ret = 0;
Adam Langleyfcf25832014-12-18 17:42:32 -08002943 EVP_MD_CTX ctx;
Adam Langleyfcf25832014-12-18 17:42:32 -08002944
2945 EVP_MD_CTX_init(&ctx);
David Benjamind6a4ae92015-08-06 11:10:51 -04002946 if (!EVP_DigestInit_ex(&ctx, EVP_sha256(), NULL)) {
2947 goto err;
Adam Langleyfcf25832014-12-18 17:42:32 -08002948 }
Adam Langleyfcf25832014-12-18 17:42:32 -08002949
David Benjamind6a4ae92015-08-06 11:10:51 -04002950 static const char kClientIDMagic[] = "TLS Channel ID signature";
2951 EVP_DigestUpdate(&ctx, kClientIDMagic, sizeof(kClientIDMagic));
2952
2953 if (ssl->hit) {
2954 static const char kResumptionMagic[] = "Resumption";
2955 EVP_DigestUpdate(&ctx, kResumptionMagic, sizeof(kResumptionMagic));
2956 if (ssl->session->original_handshake_hash_len == 0) {
2957 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
2958 goto err;
2959 }
2960 EVP_DigestUpdate(&ctx, ssl->session->original_handshake_hash,
2961 ssl->session->original_handshake_hash_len);
2962 }
2963
2964 uint8_t handshake_hash[EVP_MAX_MD_SIZE];
2965 int handshake_hash_len = tls1_handshake_digest(ssl, handshake_hash,
2966 sizeof(handshake_hash));
2967 if (handshake_hash_len < 0) {
2968 goto err;
2969 }
2970 EVP_DigestUpdate(&ctx, handshake_hash, (size_t)handshake_hash_len);
2971 unsigned len_u;
2972 EVP_DigestFinal_ex(&ctx, out, &len_u);
2973 *out_len = len_u;
2974
2975 ret = 1;
2976
2977err:
2978 EVP_MD_CTX_cleanup(&ctx);
2979 return ret;
Adam Langleyfcf25832014-12-18 17:42:32 -08002980}
Adam Langley1258b6a2014-06-20 12:00:00 -07002981
2982/* tls1_record_handshake_hashes_for_channel_id records the current handshake
David Benjamin0d56f882015-12-19 17:05:56 -05002983 * hashes in |ssl->session| so that Channel ID resumptions can sign that
2984 * data. */
2985int tls1_record_handshake_hashes_for_channel_id(SSL *ssl) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002986 int digest_len;
2987 /* This function should never be called for a resumed session because the
2988 * handshake hashes that we wish to record are for the original, full
2989 * handshake. */
David Benjamin0d56f882015-12-19 17:05:56 -05002990 if (ssl->hit) {
Adam Langleyfcf25832014-12-18 17:42:32 -08002991 return -1;
2992 }
Adam Langley1258b6a2014-06-20 12:00:00 -07002993
Adam Langleyfcf25832014-12-18 17:42:32 -08002994 digest_len =
David Benjamin0d56f882015-12-19 17:05:56 -05002995 tls1_handshake_digest(ssl, ssl->session->original_handshake_hash,
2996 sizeof(ssl->session->original_handshake_hash));
Adam Langleyfcf25832014-12-18 17:42:32 -08002997 if (digest_len < 0) {
2998 return -1;
2999 }
Adam Langley1258b6a2014-06-20 12:00:00 -07003000
David Benjamin0d56f882015-12-19 17:05:56 -05003001 ssl->session->original_handshake_hash_len = digest_len;
Adam Langley1258b6a2014-06-20 12:00:00 -07003002
Adam Langleyfcf25832014-12-18 17:42:32 -08003003 return 1;
3004}