blob: d6d7dabdbcc74f0355b88a9f47a5a1f44dfbc1e0 [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-2006 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 *
109 */
110/* ====================================================================
111 * Copyright 2005 Nokia. All rights reserved.
112 *
113 * The portions of the attached software ("Contribution") is developed by
114 * Nokia Corporation and is licensed pursuant to the OpenSSL open source
115 * license.
116 *
117 * The Contribution, originally written by Mika Kousa and Pasi Eronen of
118 * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites
119 * support (see RFC 4279) to OpenSSL.
120 *
121 * No patent licenses or other rights except those expressly stated in
122 * the OpenSSL open source license shall be deemed granted or received
123 * expressly, by implication, estoppel, or otherwise.
124 *
125 * No assurances are provided by Nokia that the Contribution does not
126 * infringe the patent or other intellectual property rights of any third
127 * party or that the license provides you with all the necessary rights
128 * to make use of the Contribution.
129 *
130 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN
131 * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA
132 * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY
133 * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR
134 * OTHERWISE. */
135
David Benjamin9e4e01e2015-09-15 01:48:04 -0400136#include <openssl/ssl.h>
137
David Benjamine3aa1d92015-06-16 15:34:50 -0400138#include <assert.h>
David Benjamin4d0be242016-09-01 01:10:07 -0400139#include <stdlib.h>
David Benjaminf0ae1702015-04-07 23:05:04 -0400140#include <string.h>
Adam Langley95c29f32014-06-20 12:00:00 -0700141
Adam Langley95c29f32014-06-20 12:00:00 -0700142#include <openssl/err.h>
143#include <openssl/lhash.h>
144#include <openssl/mem.h>
145#include <openssl/rand.h>
146
David Benjamin2ee94aa2015-04-07 22:38:30 -0400147#include "internal.h"
David Benjamin546f1a52015-04-15 16:46:09 -0400148#include "../crypto/internal.h"
149
Adam Langley95c29f32014-06-20 12:00:00 -0700150
Adam Langleyb2ce0582014-06-20 12:00:00 -0700151/* The address of this is a magic value, a pointer to which is returned by
152 * SSL_magic_pending_session_ptr(). It allows a session callback to indicate
153 * that it needs to asynchronously fetch session information. */
Brian Smithefed2212015-01-28 16:20:02 -0800154static const char g_pending_session_magic = 0;
Adam Langleyb2ce0582014-06-20 12:00:00 -0700155
David Benjaminaa585132015-06-29 23:36:17 -0400156static CRYPTO_EX_DATA_CLASS g_ex_data_class =
157 CRYPTO_EX_DATA_CLASS_INIT_WITH_APP_DATA;
David Benjamin9f33fc62015-04-15 17:29:53 -0400158
David Benjamindafbdd42015-09-14 01:40:10 -0400159static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *session);
160static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *session);
161static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *session, int lock);
Adam Langley95c29f32014-06-20 12:00:00 -0700162
David Benjaminabb6c1c2015-09-13 14:46:26 -0400163SSL_SESSION *SSL_SESSION_new(void) {
Brian Smith5ba06892016-02-07 09:36:04 -1000164 SSL_SESSION *session = OPENSSL_malloc(sizeof(SSL_SESSION));
David Benjaminabb6c1c2015-09-13 14:46:26 -0400165 if (session == NULL) {
166 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
167 return 0;
168 }
169 memset(session, 0, sizeof(SSL_SESSION));
170
Adam Langley9498e742016-07-18 10:17:16 -0700171 session->verify_result = X509_V_ERR_INVALID_CALL;
David Benjaminabb6c1c2015-09-13 14:46:26 -0400172 session->references = 1;
173 session->timeout = SSL_DEFAULT_SESSION_TIMEOUT;
David Benjamin721e8b72016-08-03 13:13:17 -0400174 session->time = (long)time(NULL);
David Benjamin8a589332015-12-04 23:14:35 -0500175 CRYPTO_new_ex_data(&session->ex_data);
David Benjaminabb6c1c2015-09-13 14:46:26 -0400176 return session;
177}
178
Steven Valdez4aa154e2016-07-29 14:32:55 -0400179SSL_SESSION *SSL_SESSION_dup(SSL_SESSION *session, int dup_flags) {
Steven Valdez87eab492016-06-27 16:34:59 -0400180 SSL_SESSION *new_session = SSL_SESSION_new();
181 if (new_session == NULL) {
182 goto err;
183 }
184
Adam Langley364f7a62016-12-12 10:51:00 -0800185 new_session->is_server = session->is_server;
Steven Valdez87eab492016-06-27 16:34:59 -0400186 new_session->ssl_version = session->ssl_version;
Steven Valdez4aa154e2016-07-29 14:32:55 -0400187 new_session->sid_ctx_length = session->sid_ctx_length;
188 memcpy(new_session->sid_ctx, session->sid_ctx, session->sid_ctx_length);
189
190 /* Copy the key material. */
Steven Valdez87eab492016-06-27 16:34:59 -0400191 new_session->master_key_length = session->master_key_length;
192 memcpy(new_session->master_key, session->master_key,
193 session->master_key_length);
Steven Valdez4aa154e2016-07-29 14:32:55 -0400194 new_session->cipher = session->cipher;
195
196 /* Copy authentication state. */
Steven Valdez87eab492016-06-27 16:34:59 -0400197 if (session->psk_identity != NULL) {
198 new_session->psk_identity = BUF_strdup(session->psk_identity);
199 if (new_session->psk_identity == NULL) {
200 goto err;
201 }
202 }
Adam Langley68e71242016-12-12 11:06:16 -0800203 if (session->certs != NULL) {
204 new_session->certs = sk_CRYPTO_BUFFER_new_null();
205 if (new_session->certs == NULL) {
206 goto err;
207 }
208 for (size_t i = 0; i < sk_CRYPTO_BUFFER_num(session->certs); i++) {
209 CRYPTO_BUFFER *buffer = sk_CRYPTO_BUFFER_value(session->certs, i);
210 if (!sk_CRYPTO_BUFFER_push(new_session->certs, buffer)) {
211 goto err;
212 }
213 CRYPTO_BUFFER_up_ref(buffer);
214 }
215 }
Adam Langleyc5ac2b62016-11-07 12:02:35 -0800216 if (session->x509_peer != NULL) {
217 X509_up_ref(session->x509_peer);
218 new_session->x509_peer = session->x509_peer;
Steven Valdez87eab492016-06-27 16:34:59 -0400219 }
Adam Langleyc5ac2b62016-11-07 12:02:35 -0800220 if (session->x509_chain != NULL) {
221 new_session->x509_chain = X509_chain_up_ref(session->x509_chain);
222 if (new_session->x509_chain == NULL) {
Steven Valdez87eab492016-06-27 16:34:59 -0400223 goto err;
224 }
225 }
226 new_session->verify_result = session->verify_result;
Steven Valdez4aa154e2016-07-29 14:32:55 -0400227
228 new_session->ocsp_response_length = session->ocsp_response_length;
229 if (session->ocsp_response != NULL) {
230 new_session->ocsp_response = BUF_memdup(session->ocsp_response,
231 session->ocsp_response_length);
232 if (new_session->ocsp_response == NULL) {
Steven Valdez87eab492016-06-27 16:34:59 -0400233 goto err;
234 }
235 }
Steven Valdez87eab492016-06-27 16:34:59 -0400236
237 new_session->tlsext_signed_cert_timestamp_list_length =
238 session->tlsext_signed_cert_timestamp_list_length;
239 if (session->tlsext_signed_cert_timestamp_list != NULL) {
240 new_session->tlsext_signed_cert_timestamp_list =
241 BUF_memdup(session->tlsext_signed_cert_timestamp_list,
242 session->tlsext_signed_cert_timestamp_list_length);
243 if (new_session->tlsext_signed_cert_timestamp_list == NULL) {
244 goto err;
245 }
246 }
Steven Valdez4aa154e2016-07-29 14:32:55 -0400247
Steven Valdez87eab492016-06-27 16:34:59 -0400248 memcpy(new_session->peer_sha256, session->peer_sha256, SHA256_DIGEST_LENGTH);
Steven Valdez87eab492016-06-27 16:34:59 -0400249 new_session->peer_sha256_valid = session->peer_sha256_valid;
Steven Valdez4aa154e2016-07-29 14:32:55 -0400250
David Benjamin4eb95cc2016-11-16 17:08:23 +0900251 if (session->tlsext_hostname != NULL) {
252 new_session->tlsext_hostname = BUF_strdup(session->tlsext_hostname);
253 if (new_session->tlsext_hostname == NULL) {
254 goto err;
255 }
256 }
257
David Benjaminf1050fd2016-12-13 20:05:36 -0500258 new_session->peer_signature_algorithm = session->peer_signature_algorithm;
259
David Benjamin01a90572016-09-22 00:11:43 -0400260 new_session->timeout = session->timeout;
261 new_session->time = session->time;
262
Steven Valdez4aa154e2016-07-29 14:32:55 -0400263 /* Copy non-authentication connection properties. */
264 if (dup_flags & SSL_SESSION_INCLUDE_NONAUTH) {
265 new_session->session_id_length = session->session_id_length;
266 memcpy(new_session->session_id, session->session_id,
267 session->session_id_length);
268
David Benjamin4882a6c2016-12-11 02:48:12 -0500269 new_session->group_id = session->group_id;
Steven Valdez4aa154e2016-07-29 14:32:55 -0400270
Steven Valdez4aa154e2016-07-29 14:32:55 -0400271 memcpy(new_session->original_handshake_hash,
272 session->original_handshake_hash,
273 session->original_handshake_hash_len);
274 new_session->original_handshake_hash_len =
275 session->original_handshake_hash_len;
276 new_session->tlsext_tick_lifetime_hint = session->tlsext_tick_lifetime_hint;
Steven Valdez4aa154e2016-07-29 14:32:55 -0400277 new_session->ticket_age_add = session->ticket_age_add;
278 new_session->extended_master_secret = session->extended_master_secret;
279 }
280
281 /* Copy the ticket. */
282 if (dup_flags & SSL_SESSION_INCLUDE_TICKET) {
283 if (session->tlsext_tick != NULL) {
284 new_session->tlsext_tick =
285 BUF_memdup(session->tlsext_tick, session->tlsext_ticklen);
286 if (new_session->tlsext_tick == NULL) {
287 goto err;
288 }
289 }
290 new_session->tlsext_ticklen = session->tlsext_ticklen;
291 }
292
293 /* The new_session does not get a copy of the ex_data. */
294
Steven Valdez87eab492016-06-27 16:34:59 -0400295 new_session->not_resumable = 1;
296 return new_session;
297
298err:
299 SSL_SESSION_free(new_session);
300 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
301 return 0;
302}
303
David Benjamin123db572016-11-03 16:59:25 -0400304void ssl_session_refresh_time(SSL *ssl, SSL_SESSION *session) {
305 struct timeval now;
306 ssl_get_current_time(ssl, &now);
307
308 /* To avoid overflows and underflows, if we've gone back in time or any value
309 * is negative, update the time, but mark the session expired. */
310 if (session->time > now.tv_sec ||
311 session->time < 0 ||
312 now.tv_sec < 0) {
313 session->time = now.tv_sec;
314 session->timeout = 0;
315 return;
316 }
317
318 /* Adjust the session time and timeout. If the session has already expired,
319 * clamp the timeout at zero. */
320 long delta = now.tv_sec - session->time;
321 session->time = now.tv_sec;
322 if (session->timeout < delta) {
323 session->timeout = 0;
324 } else {
325 session->timeout -= delta;
326 }
327}
328
David Benjaminb9195402016-08-05 10:51:43 -0400329int SSL_SESSION_up_ref(SSL_SESSION *session) {
330 CRYPTO_refcount_inc(&session->references);
331 return 1;
David Benjaminabb6c1c2015-09-13 14:46:26 -0400332}
333
334void SSL_SESSION_free(SSL_SESSION *session) {
335 if (session == NULL ||
336 !CRYPTO_refcount_dec_and_test_zero(&session->references)) {
337 return;
338 }
339
340 CRYPTO_free_ex_data(&g_ex_data_class, session, &session->ex_data);
341
342 OPENSSL_cleanse(session->master_key, sizeof(session->master_key));
343 OPENSSL_cleanse(session->session_id, sizeof(session->session_id));
Adam Langley68e71242016-12-12 11:06:16 -0800344 sk_CRYPTO_BUFFER_pop_free(session->certs, CRYPTO_BUFFER_free);
Adam Langleyc5ac2b62016-11-07 12:02:35 -0800345 X509_free(session->x509_peer);
346 sk_X509_pop_free(session->x509_chain, X509_free);
Adam Langley364f7a62016-12-12 10:51:00 -0800347 sk_X509_pop_free(session->x509_chain_without_leaf, X509_free);
David Benjaminabb6c1c2015-09-13 14:46:26 -0400348 OPENSSL_free(session->tlsext_hostname);
349 OPENSSL_free(session->tlsext_tick);
350 OPENSSL_free(session->tlsext_signed_cert_timestamp_list);
351 OPENSSL_free(session->ocsp_response);
352 OPENSSL_free(session->psk_identity);
353 OPENSSL_cleanse(session, sizeof(*session));
354 OPENSSL_free(session);
355}
356
357const uint8_t *SSL_SESSION_get_id(const SSL_SESSION *session,
358 unsigned *out_len) {
359 if (out_len != NULL) {
360 *out_len = session->session_id_length;
361 }
362 return session->session_id;
363}
364
365long SSL_SESSION_get_timeout(const SSL_SESSION *session) {
366 return session->timeout;
367}
368
369long SSL_SESSION_get_time(const SSL_SESSION *session) {
David Benjamin20c0e902015-10-01 16:13:22 -0400370 if (session == NULL) {
371 /* NULL should crash, but silently accept it here for compatibility. */
372 return 0;
373 }
David Benjaminabb6c1c2015-09-13 14:46:26 -0400374 return session->time;
375}
376
David Benjamin14e2b502015-09-13 14:48:12 -0400377X509 *SSL_SESSION_get0_peer(const SSL_SESSION *session) {
Adam Langleyc5ac2b62016-11-07 12:02:35 -0800378 return session->x509_peer;
David Benjamin14e2b502015-09-13 14:48:12 -0400379}
David Benjaminabb6c1c2015-09-13 14:46:26 -0400380
David Benjamin818aff02016-04-21 16:58:49 -0400381size_t SSL_SESSION_get_master_key(const SSL_SESSION *session, uint8_t *out,
382 size_t max_out) {
383 /* TODO(davidben): Fix master_key_length's type and remove these casts. */
384 if (max_out == 0) {
385 return (size_t)session->master_key_length;
386 }
387 if (max_out > (size_t)session->master_key_length) {
388 max_out = (size_t)session->master_key_length;
389 }
390 memcpy(out, session->master_key, max_out);
391 return max_out;
392}
393
David Benjaminabb6c1c2015-09-13 14:46:26 -0400394long SSL_SESSION_set_time(SSL_SESSION *session, long time) {
395 if (session == NULL) {
396 return 0;
397 }
398
399 session->time = time;
400 return time;
401}
402
403long SSL_SESSION_set_timeout(SSL_SESSION *session, long timeout) {
404 if (session == NULL) {
405 return 0;
406 }
407
408 session->timeout = timeout;
409 return 1;
410}
411
412int SSL_SESSION_set1_id_context(SSL_SESSION *session, const uint8_t *sid_ctx,
David Benjamin30c4c302016-12-07 22:35:24 -0500413 size_t sid_ctx_len) {
414 if (sid_ctx_len > sizeof(session->sid_ctx)) {
David Benjaminabb6c1c2015-09-13 14:46:26 -0400415 OPENSSL_PUT_ERROR(SSL, SSL_R_SSL_SESSION_ID_CONTEXT_TOO_LONG);
416 return 0;
417 }
418
David Benjamin30c4c302016-12-07 22:35:24 -0500419 assert(sizeof(session->sid_ctx) < 256);
420 session->sid_ctx_length = (uint8_t)sid_ctx_len;
David Benjaminabb6c1c2015-09-13 14:46:26 -0400421 memcpy(session->sid_ctx, sid_ctx, sid_ctx_len);
422
423 return 1;
424}
425
Adam Langleyfcf25832014-12-18 17:42:32 -0800426SSL_SESSION *SSL_magic_pending_session_ptr(void) {
427 return (SSL_SESSION *)&g_pending_session_magic;
Adam Langley95c29f32014-06-20 12:00:00 -0700428}
429
Adam Langleyd4aae0f2016-08-01 12:29:38 -0700430SSL_SESSION *SSL_get_session(const SSL *ssl) {
Steven Valdez87eab492016-06-27 16:34:59 -0400431 /* Once the handshake completes we return the established session. Otherwise
432 * we return the intermediate session, either |session| (for resumption) or
433 * |new_session| if doing a full handshake. */
434 if (!SSL_in_init(ssl)) {
435 return ssl->s3->established_session;
436 }
437 if (ssl->s3->new_session != NULL) {
438 return ssl->s3->new_session;
439 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800440 return ssl->session;
441}
Adam Langley95c29f32014-06-20 12:00:00 -0700442
Adam Langleyfcf25832014-12-18 17:42:32 -0800443SSL_SESSION *SSL_get1_session(SSL *ssl) {
David Benjaminb9195402016-08-05 10:51:43 -0400444 SSL_SESSION *ret = SSL_get_session(ssl);
445 if (ret != NULL) {
446 SSL_SESSION_up_ref(ret);
447 }
448 return ret;
Adam Langleyfcf25832014-12-18 17:42:32 -0800449}
Adam Langley8eaaa862014-08-11 17:18:25 -0700450
David Benjamin8a589332015-12-04 23:14:35 -0500451int SSL_SESSION_get_ex_new_index(long argl, void *argp,
452 CRYPTO_EX_unused *unused,
Adam Langleyfcf25832014-12-18 17:42:32 -0800453 CRYPTO_EX_dup *dup_func,
454 CRYPTO_EX_free *free_func) {
David Benjamin9f33fc62015-04-15 17:29:53 -0400455 int index;
David Benjamin8a589332015-12-04 23:14:35 -0500456 if (!CRYPTO_get_ex_new_index(&g_ex_data_class, &index, argl, argp, dup_func,
457 free_func)) {
David Benjamin9f33fc62015-04-15 17:29:53 -0400458 return -1;
459 }
460 return index;
Adam Langleyfcf25832014-12-18 17:42:32 -0800461}
Adam Langley95c29f32014-06-20 12:00:00 -0700462
David Benjamin190ab7f2015-09-13 14:20:58 -0400463int SSL_SESSION_set_ex_data(SSL_SESSION *session, int idx, void *arg) {
464 return CRYPTO_set_ex_data(&session->ex_data, idx, arg);
Adam Langleyfcf25832014-12-18 17:42:32 -0800465}
Adam Langley95c29f32014-06-20 12:00:00 -0700466
David Benjamin190ab7f2015-09-13 14:20:58 -0400467void *SSL_SESSION_get_ex_data(const SSL_SESSION *session, int idx) {
468 return CRYPTO_get_ex_data(&session->ex_data, idx);
Adam Langleyfcf25832014-12-18 17:42:32 -0800469}
Adam Langley95c29f32014-06-20 12:00:00 -0700470
David Benjaminf3c8f8d2016-11-17 17:20:47 +0900471int ssl_get_new_session(SSL_HANDSHAKE *hs, int is_server) {
472 SSL *const ssl = hs->ssl;
David Benjamindc2aea22015-10-18 12:50:32 -0400473 if (ssl->mode & SSL_MODE_NO_SESSION_CREATION) {
David Benjamin3570d732015-06-29 00:28:17 -0400474 OPENSSL_PUT_ERROR(SSL, SSL_R_SESSION_MAY_NOT_BE_CREATED);
Adam Langleyfcf25832014-12-18 17:42:32 -0800475 return 0;
476 }
477
David Benjamindc2aea22015-10-18 12:50:32 -0400478 SSL_SESSION *session = SSL_SESSION_new();
479 if (session == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800480 return 0;
481 }
482
Adam Langley364f7a62016-12-12 10:51:00 -0800483 session->is_server = is_server;
484 session->ssl_version = ssl->version;
485
David Benjamin721e8b72016-08-03 13:13:17 -0400486 /* Fill in the time from the |SSL_CTX|'s clock. */
487 struct timeval now;
488 ssl_get_current_time(ssl, &now);
489 session->time = now.tv_sec;
490
Alessandro Ghedinibf483642016-11-22 18:56:46 +0000491 session->timeout = ssl->session_timeout;
Adam Langleyfcf25832014-12-18 17:42:32 -0800492
David Benjamindc2aea22015-10-18 12:50:32 -0400493 if (is_server) {
David Benjaminf3c8f8d2016-11-17 17:20:47 +0900494 if (hs->ticket_expected) {
David Benjamindc2aea22015-10-18 12:50:32 -0400495 /* Don't set session IDs for sessions resumed with tickets. This will keep
496 * them out of the session cache. */
497 session->session_id_length = 0;
Adam Langleyfcf25832014-12-18 17:42:32 -0800498 } else {
David Benjamindc2aea22015-10-18 12:50:32 -0400499 session->session_id_length = SSL3_SSL_SESSION_ID_LENGTH;
500 if (!RAND_bytes(session->session_id, session->session_id_length)) {
501 goto err;
502 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800503 }
504
David Benjamindc2aea22015-10-18 12:50:32 -0400505 if (ssl->tlsext_hostname != NULL) {
506 session->tlsext_hostname = BUF_strdup(ssl->tlsext_hostname);
507 if (session->tlsext_hostname == NULL) {
508 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
509 goto err;
Adam Langleyfcf25832014-12-18 17:42:32 -0800510 }
511 }
512 } else {
David Benjamindc2aea22015-10-18 12:50:32 -0400513 session->session_id_length = 0;
Adam Langleyfcf25832014-12-18 17:42:32 -0800514 }
515
David Benjamindc2aea22015-10-18 12:50:32 -0400516 if (ssl->sid_ctx_length > sizeof(session->sid_ctx)) {
David Benjamin3570d732015-06-29 00:28:17 -0400517 OPENSSL_PUT_ERROR(SSL, ERR_R_INTERNAL_ERROR);
David Benjamindc2aea22015-10-18 12:50:32 -0400518 goto err;
Adam Langleyfcf25832014-12-18 17:42:32 -0800519 }
David Benjamindc2aea22015-10-18 12:50:32 -0400520 memcpy(session->sid_ctx, ssl->sid_ctx, ssl->sid_ctx_length);
521 session->sid_ctx_length = ssl->sid_ctx_length;
Adam Langleyfcf25832014-12-18 17:42:32 -0800522
Steven Valdez87eab492016-06-27 16:34:59 -0400523 /* The session is marked not resumable until it is completely filled in. */
524 session->not_resumable = 1;
Adam Langley9498e742016-07-18 10:17:16 -0700525 session->verify_result = X509_V_ERR_INVALID_CALL;
Adam Langleyfcf25832014-12-18 17:42:32 -0800526
Steven Valdez87eab492016-06-27 16:34:59 -0400527 SSL_SESSION_free(ssl->s3->new_session);
528 ssl->s3->new_session = session;
David Benjamin4d0be242016-09-01 01:10:07 -0400529 ssl_set_session(ssl, NULL);
Adam Langleyfcf25832014-12-18 17:42:32 -0800530 return 1;
David Benjamindc2aea22015-10-18 12:50:32 -0400531
532err:
533 SSL_SESSION_free(session);
534 return 0;
Adam Langleyfcf25832014-12-18 17:42:32 -0800535}
Adam Langley95c29f32014-06-20 12:00:00 -0700536
Adam Langley68e71242016-12-12 11:06:16 -0800537int ssl_session_x509_cache_objects(SSL_SESSION *sess) {
538 STACK_OF(X509) *chain = NULL;
539 const size_t num_certs = sk_CRYPTO_BUFFER_num(sess->certs);
540
541 if (num_certs > 0) {
542 chain = sk_X509_new_null();
543 if (chain == NULL) {
544 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
545 goto err;
546 }
547 }
548
549 X509 *leaf = NULL;
550 for (size_t i = 0; i < num_certs; i++) {
551 X509 *x509 = X509_parse_from_buffer(sk_CRYPTO_BUFFER_value(sess->certs, i));
552 if (x509 == NULL) {
553 OPENSSL_PUT_ERROR(SSL, SSL_R_DECODE_ERROR);
554 goto err;
555 }
556 if (!sk_X509_push(chain, x509)) {
557 OPENSSL_PUT_ERROR(SSL, ERR_R_MALLOC_FAILURE);
558 X509_free(x509);
559 goto err;
560 }
561 if (i == 0) {
562 leaf = x509;
563 }
564 }
565
566 sk_X509_pop_free(sess->x509_chain, X509_free);
567 sess->x509_chain = chain;
568 sk_X509_pop_free(sess->x509_chain_without_leaf, X509_free);
569 sess->x509_chain_without_leaf = NULL;
570
571 X509_free(sess->x509_peer);
572 if (leaf != NULL) {
573 X509_up_ref(leaf);
574 }
575 sess->x509_peer = leaf;
576
577 return 1;
578
579err:
580 sk_X509_pop_free(chain, X509_free);
581 return 0;
582}
583
Steven Valdez1e6f11a2016-07-27 11:10:52 -0400584int ssl_encrypt_ticket(SSL *ssl, CBB *out, const SSL_SESSION *session) {
585 int ret = 0;
586
587 /* Serialize the SSL_SESSION to be encoded into the ticket. */
588 uint8_t *session_buf = NULL;
589 size_t session_len;
590 if (!SSL_SESSION_to_bytes_for_ticket(session, &session_buf, &session_len)) {
591 return -1;
592 }
593
594 EVP_CIPHER_CTX ctx;
595 EVP_CIPHER_CTX_init(&ctx);
596 HMAC_CTX hctx;
597 HMAC_CTX_init(&hctx);
598
599 /* If the session is too long, emit a dummy value rather than abort the
600 * connection. */
601 static const size_t kMaxTicketOverhead =
602 16 + EVP_MAX_IV_LENGTH + EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE;
603 if (session_len > 0xffff - kMaxTicketOverhead) {
604 static const char kTicketPlaceholder[] = "TICKET TOO LARGE";
605 if (CBB_add_bytes(out, (const uint8_t *)kTicketPlaceholder,
606 strlen(kTicketPlaceholder))) {
607 ret = 1;
608 }
609 goto err;
610 }
611
612 /* Initialize HMAC and cipher contexts. If callback present it does all the
613 * work otherwise use generated values from parent ctx. */
614 SSL_CTX *tctx = ssl->initial_ctx;
615 uint8_t iv[EVP_MAX_IV_LENGTH];
616 uint8_t key_name[16];
617 if (tctx->tlsext_ticket_key_cb != NULL) {
618 if (tctx->tlsext_ticket_key_cb(ssl, key_name, iv, &ctx, &hctx,
619 1 /* encrypt */) < 0) {
620 goto err;
621 }
622 } else {
623 if (!RAND_bytes(iv, 16) ||
624 !EVP_EncryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL,
625 tctx->tlsext_tick_aes_key, iv) ||
626 !HMAC_Init_ex(&hctx, tctx->tlsext_tick_hmac_key, 16, tlsext_tick_md(),
627 NULL)) {
628 goto err;
629 }
630 memcpy(key_name, tctx->tlsext_tick_key_name, 16);
631 }
632
633 uint8_t *ptr;
634 if (!CBB_add_bytes(out, key_name, 16) ||
635 !CBB_add_bytes(out, iv, EVP_CIPHER_CTX_iv_length(&ctx)) ||
636 !CBB_reserve(out, &ptr, session_len + EVP_MAX_BLOCK_LENGTH)) {
637 goto err;
638 }
639
Steven Valdez1e6f11a2016-07-27 11:10:52 -0400640 size_t total = 0;
David Benjaminfbc45d72016-09-22 01:21:24 -0400641#if defined(BORINGSSL_UNSAFE_FUZZER_MODE)
642 memcpy(ptr, session_buf, session_len);
643 total = session_len;
644#else
645 int len;
Steven Valdez1e6f11a2016-07-27 11:10:52 -0400646 if (!EVP_EncryptUpdate(&ctx, ptr + total, &len, session_buf, session_len)) {
647 goto err;
648 }
649 total += len;
650 if (!EVP_EncryptFinal_ex(&ctx, ptr + total, &len)) {
651 goto err;
652 }
653 total += len;
David Benjaminfbc45d72016-09-22 01:21:24 -0400654#endif
Steven Valdez1e6f11a2016-07-27 11:10:52 -0400655 if (!CBB_did_write(out, total)) {
656 goto err;
657 }
658
659 unsigned hlen;
660 if (!HMAC_Update(&hctx, CBB_data(out), CBB_len(out)) ||
661 !CBB_reserve(out, &ptr, EVP_MAX_MD_SIZE) ||
662 !HMAC_Final(&hctx, ptr, &hlen) ||
663 !CBB_did_write(out, hlen)) {
664 goto err;
665 }
666
667 ret = 1;
668
669err:
670 OPENSSL_free(session_buf);
671 EVP_CIPHER_CTX_cleanup(&ctx);
672 HMAC_CTX_cleanup(&hctx);
673 return ret;
674}
675
Steven Valdez4aa154e2016-07-29 14:32:55 -0400676int ssl_session_is_context_valid(const SSL *ssl, const SSL_SESSION *session) {
677 if (session == NULL) {
678 return 0;
679 }
680
681 return session->sid_ctx_length == ssl->sid_ctx_length &&
682 memcmp(session->sid_ctx, ssl->sid_ctx, ssl->sid_ctx_length) == 0;
683}
684
685int ssl_session_is_time_valid(const SSL *ssl, const SSL_SESSION *session) {
686 if (session == NULL) {
687 return 0;
688 }
689
690 struct timeval now;
691 ssl_get_current_time(ssl, &now);
David Benjamin1b22f852016-10-27 16:36:32 -0400692
693 /* Reject tickets from the future to avoid underflow. */
694 if ((long)now.tv_sec < session->time) {
695 return 0;
696 }
697
David Benjamin8e816eb2016-11-02 23:24:29 -0400698 return session->timeout > (long)now.tv_sec - session->time;
Steven Valdez4aa154e2016-07-29 14:32:55 -0400699}
700
David Benjamin75f99142016-11-12 12:36:06 +0900701int ssl_session_is_resumable(const SSL *ssl, const SSL_SESSION *session) {
702 return ssl_session_is_context_valid(ssl, session) &&
Adam Langley364f7a62016-12-12 10:51:00 -0800703 /* The session must have been created by the same type of end point as
704 * we're now using it with. */
705 session->is_server == ssl->server &&
David Benjamin75f99142016-11-12 12:36:06 +0900706 /* The session must not be expired. */
707 ssl_session_is_time_valid(ssl, session) &&
708 /* Only resume if the session's version matches the negotiated
709 * version. */
710 ssl->version == session->ssl_version &&
David Benjaminf01f42a2016-11-16 19:05:33 +0900711 /* Only resume if the session's cipher matches the negotiated one. */
David Benjaminbbaf3672016-11-17 10:53:09 +0900712 ssl->s3->tmp.new_cipher == session->cipher &&
713 /* If the session contains a client certificate (either the full
714 * certificate or just the hash) then require that the form of the
715 * certificate matches the current configuration. */
716 ((session->x509_peer == NULL && !session->peer_sha256_valid) ||
717 session->peer_sha256_valid ==
718 ssl->retain_only_sha256_of_client_certs);
David Benjamin75f99142016-11-12 12:36:06 +0900719}
720
David Benjamine3aa1d92015-06-16 15:34:50 -0400721/* ssl_lookup_session looks up |session_id| in the session cache and sets
722 * |*out_session| to an |SSL_SESSION| object if found. The caller takes
723 * ownership of the result. */
724static enum ssl_session_result_t ssl_lookup_session(
725 SSL *ssl, SSL_SESSION **out_session, const uint8_t *session_id,
726 size_t session_id_len) {
727 *out_session = NULL;
Adam Langley95c29f32014-06-20 12:00:00 -0700728
David Benjamine3aa1d92015-06-16 15:34:50 -0400729 if (session_id_len == 0 || session_id_len > SSL_MAX_SSL_SESSION_ID_LENGTH) {
730 return ssl_session_success;
Adam Langleyfcf25832014-12-18 17:42:32 -0800731 }
Adam Langley95c29f32014-06-20 12:00:00 -0700732
Steven Valdez4aa154e2016-07-29 14:32:55 -0400733 SSL_SESSION *session = NULL;
David Benjamine3aa1d92015-06-16 15:34:50 -0400734 /* Try the internal cache, if it exists. */
735 if (!(ssl->initial_ctx->session_cache_mode &
Adam Langleyfcf25832014-12-18 17:42:32 -0800736 SSL_SESS_CACHE_NO_INTERNAL_LOOKUP)) {
737 SSL_SESSION data;
David Benjamine3aa1d92015-06-16 15:34:50 -0400738 data.ssl_version = ssl->version;
739 data.session_id_length = session_id_len;
740 memcpy(data.session_id, session_id, session_id_len);
741
742 CRYPTO_MUTEX_lock_read(&ssl->initial_ctx->lock);
743 session = lh_SSL_SESSION_retrieve(ssl->initial_ctx->sessions, &data);
744 if (session != NULL) {
745 SSL_SESSION_up_ref(session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800746 }
David Benjamin0f653952015-10-18 14:28:01 -0400747 /* TODO(davidben): This should probably move it to the front of the list. */
David Benjamin29270de2016-05-24 15:28:36 +0000748 CRYPTO_MUTEX_unlock_read(&ssl->initial_ctx->lock);
Adam Langleyfcf25832014-12-18 17:42:32 -0800749 }
Adam Langley95c29f32014-06-20 12:00:00 -0700750
David Benjamine3aa1d92015-06-16 15:34:50 -0400751 /* Fall back to the external cache, if it exists. */
Steven Valdez4aa154e2016-07-29 14:32:55 -0400752 if (session == NULL &&
753 ssl->initial_ctx->get_session_cb != NULL) {
754 int copy = 1;
755 session = ssl->initial_ctx->get_session_cb(ssl, (uint8_t *)session_id,
756 session_id_len, &copy);
757
Adam Langley81f43352016-08-26 09:22:56 -0700758 if (session == NULL) {
759 return ssl_session_success;
760 }
761
Steven Valdez4aa154e2016-07-29 14:32:55 -0400762 if (session == SSL_magic_pending_session_ptr()) {
763 return ssl_session_retry;
764 }
765
766 /* Increment reference count now if the session callback asks us to do so
767 * (note that if the session structures returned by the callback are shared
768 * between threads, it must handle the reference count itself [i.e. copy ==
769 * 0], or things won't be thread-safe). */
770 if (copy) {
771 SSL_SESSION_up_ref(session);
772 }
773
774 /* Add the externally cached session to the internal cache if necessary. */
Adam Langley81f43352016-08-26 09:22:56 -0700775 if (!(ssl->initial_ctx->session_cache_mode &
Steven Valdez4aa154e2016-07-29 14:32:55 -0400776 SSL_SESS_CACHE_NO_INTERNAL_STORE)) {
777 SSL_CTX_add_session(ssl->initial_ctx, session);
778 }
David Benjamine3aa1d92015-06-16 15:34:50 -0400779 }
Steven Valdez4aa154e2016-07-29 14:32:55 -0400780
David Benjamin75f99142016-11-12 12:36:06 +0900781 if (session != NULL &&
782 !ssl_session_is_time_valid(ssl, session)) {
Steven Valdez4aa154e2016-07-29 14:32:55 -0400783 /* The session was from the cache, so remove it. */
784 SSL_CTX_remove_session(ssl->initial_ctx, session);
785 SSL_SESSION_free(session);
786 session = NULL;
David Benjamine3aa1d92015-06-16 15:34:50 -0400787 }
788
789 *out_session = session;
790 return ssl_session_success;
791}
792
793enum ssl_session_result_t ssl_get_prev_session(
David Benjamin75f99142016-11-12 12:36:06 +0900794 SSL *ssl, SSL_SESSION **out_session, int *out_tickets_supported,
David Benjamin731058e2016-12-03 23:15:13 -0500795 int *out_renew_ticket, const SSL_CLIENT_HELLO *client_hello) {
David Benjamine3aa1d92015-06-16 15:34:50 -0400796 /* This is used only by servers. */
797 assert(ssl->server);
798 SSL_SESSION *session = NULL;
David Benjaminef1b0092015-11-21 14:05:44 -0500799 int renew_ticket = 0;
David Benjamine3aa1d92015-06-16 15:34:50 -0400800
801 /* If tickets are disabled, always behave as if no tickets are present. */
David Benjamin3e536332015-07-01 18:45:03 -0400802 const uint8_t *ticket = NULL;
803 size_t ticket_len = 0;
David Benjamine3aa1d92015-06-16 15:34:50 -0400804 const int tickets_supported =
805 !(SSL_get_options(ssl) & SSL_OP_NO_TICKET) &&
David Benjaminc7ce9772015-10-09 19:32:41 -0400806 ssl->version > SSL3_VERSION &&
David Benjamin731058e2016-12-03 23:15:13 -0500807 SSL_early_callback_ctx_extension_get(
808 client_hello, TLSEXT_TYPE_session_ticket, &ticket, &ticket_len);
David Benjaminef1b0092015-11-21 14:05:44 -0500809 if (tickets_supported && ticket_len > 0) {
810 if (!tls_process_ticket(ssl, &session, &renew_ticket, ticket, ticket_len,
David Benjamin731058e2016-12-03 23:15:13 -0500811 client_hello->session_id,
812 client_hello->session_id_len)) {
David Benjamine3aa1d92015-06-16 15:34:50 -0400813 return ssl_session_error;
814 }
815 } else {
David Benjaminef1b0092015-11-21 14:05:44 -0500816 /* The client didn't send a ticket, so the session ID is a real ID. */
David Benjamine3aa1d92015-06-16 15:34:50 -0400817 enum ssl_session_result_t lookup_ret = ssl_lookup_session(
David Benjamin731058e2016-12-03 23:15:13 -0500818 ssl, &session, client_hello->session_id, client_hello->session_id_len);
David Benjamine3aa1d92015-06-16 15:34:50 -0400819 if (lookup_ret != ssl_session_success) {
820 return lookup_ret;
821 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800822 }
Adam Langley95c29f32014-06-20 12:00:00 -0700823
David Benjamine3aa1d92015-06-16 15:34:50 -0400824 *out_session = session;
David Benjamin75f99142016-11-12 12:36:06 +0900825 *out_tickets_supported = tickets_supported;
826 *out_renew_ticket = renew_ticket;
David Benjamine3aa1d92015-06-16 15:34:50 -0400827 return ssl_session_success;
Adam Langley95c29f32014-06-20 12:00:00 -0700828}
829
David Benjamindafbdd42015-09-14 01:40:10 -0400830int SSL_CTX_add_session(SSL_CTX *ctx, SSL_SESSION *session) {
David Benjamin415660b2015-10-18 15:08:57 -0400831 /* Although |session| is inserted into two structures (a doubly-linked list
832 * and the hash table), |ctx| only takes one reference. */
David Benjamindafbdd42015-09-14 01:40:10 -0400833 SSL_SESSION_up_ref(session);
Adam Langley95c29f32014-06-20 12:00:00 -0700834
David Benjamin415660b2015-10-18 15:08:57 -0400835 SSL_SESSION *old_session;
Adam Langley4bdb6e42015-05-15 15:29:21 -0700836 CRYPTO_MUTEX_lock_write(&ctx->lock);
David Benjamindafbdd42015-09-14 01:40:10 -0400837 if (!lh_SSL_SESSION_insert(ctx->sessions, &old_session, session)) {
David Benjamin29270de2016-05-24 15:28:36 +0000838 CRYPTO_MUTEX_unlock_write(&ctx->lock);
David Benjamindafbdd42015-09-14 01:40:10 -0400839 SSL_SESSION_free(session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800840 return 0;
841 }
Adam Langley95c29f32014-06-20 12:00:00 -0700842
David Benjamin415660b2015-10-18 15:08:57 -0400843 if (old_session != NULL) {
844 if (old_session == session) {
845 /* |session| was already in the cache. */
David Benjamin29270de2016-05-24 15:28:36 +0000846 CRYPTO_MUTEX_unlock_write(&ctx->lock);
David Benjamin415660b2015-10-18 15:08:57 -0400847 SSL_SESSION_free(old_session);
848 return 0;
849 }
850
851 /* There was a session ID collision. |old_session| must be removed from
852 * the linked list and released. */
David Benjamindafbdd42015-09-14 01:40:10 -0400853 SSL_SESSION_list_remove(ctx, old_session);
854 SSL_SESSION_free(old_session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800855 }
Adam Langley95c29f32014-06-20 12:00:00 -0700856
David Benjamin415660b2015-10-18 15:08:57 -0400857 SSL_SESSION_list_add(ctx, session);
Adam Langley95c29f32014-06-20 12:00:00 -0700858
David Benjamin415660b2015-10-18 15:08:57 -0400859 /* Enforce any cache size limits. */
860 if (SSL_CTX_sess_get_cache_size(ctx) > 0) {
861 while (SSL_CTX_sess_number(ctx) > SSL_CTX_sess_get_cache_size(ctx)) {
862 if (!remove_session_lock(ctx, ctx->session_cache_tail, 0)) {
863 break;
Adam Langleyfcf25832014-12-18 17:42:32 -0800864 }
865 }
866 }
Adam Langley95c29f32014-06-20 12:00:00 -0700867
David Benjamin29270de2016-05-24 15:28:36 +0000868 CRYPTO_MUTEX_unlock_write(&ctx->lock);
David Benjamin415660b2015-10-18 15:08:57 -0400869 return 1;
Adam Langleyfcf25832014-12-18 17:42:32 -0800870}
Adam Langley95c29f32014-06-20 12:00:00 -0700871
David Benjamindafbdd42015-09-14 01:40:10 -0400872int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *session) {
873 return remove_session_lock(ctx, session, 1);
Adam Langleyfcf25832014-12-18 17:42:32 -0800874}
Adam Langley95c29f32014-06-20 12:00:00 -0700875
David Benjamindafbdd42015-09-14 01:40:10 -0400876static int remove_session_lock(SSL_CTX *ctx, SSL_SESSION *session, int lock) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800877 int ret = 0;
Adam Langley95c29f32014-06-20 12:00:00 -0700878
David Benjamindafbdd42015-09-14 01:40:10 -0400879 if (session != NULL && session->session_id_length != 0) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800880 if (lock) {
Adam Langley4bdb6e42015-05-15 15:29:21 -0700881 CRYPTO_MUTEX_lock_write(&ctx->lock);
Adam Langleyfcf25832014-12-18 17:42:32 -0800882 }
David Benjamindafbdd42015-09-14 01:40:10 -0400883 SSL_SESSION *found_session = lh_SSL_SESSION_retrieve(ctx->sessions,
884 session);
885 if (found_session == session) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800886 ret = 1;
David Benjamindafbdd42015-09-14 01:40:10 -0400887 found_session = lh_SSL_SESSION_delete(ctx->sessions, session);
888 SSL_SESSION_list_remove(ctx, session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800889 }
Adam Langley95c29f32014-06-20 12:00:00 -0700890
Adam Langleyfcf25832014-12-18 17:42:32 -0800891 if (lock) {
David Benjamin29270de2016-05-24 15:28:36 +0000892 CRYPTO_MUTEX_unlock_write(&ctx->lock);
Adam Langleyfcf25832014-12-18 17:42:32 -0800893 }
Adam Langley95c29f32014-06-20 12:00:00 -0700894
Adam Langleyfcf25832014-12-18 17:42:32 -0800895 if (ret) {
David Benjamindafbdd42015-09-14 01:40:10 -0400896 found_session->not_resumable = 1;
Adam Langleyfcf25832014-12-18 17:42:32 -0800897 if (ctx->remove_session_cb != NULL) {
David Benjamindafbdd42015-09-14 01:40:10 -0400898 ctx->remove_session_cb(ctx, found_session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800899 }
David Benjamindafbdd42015-09-14 01:40:10 -0400900 SSL_SESSION_free(found_session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800901 }
902 }
Adam Langley95c29f32014-06-20 12:00:00 -0700903
Adam Langleyfcf25832014-12-18 17:42:32 -0800904 return ret;
905}
Adam Langley95c29f32014-06-20 12:00:00 -0700906
David Benjamindafbdd42015-09-14 01:40:10 -0400907int SSL_set_session(SSL *ssl, SSL_SESSION *session) {
David Benjamin4d0be242016-09-01 01:10:07 -0400908 /* SSL_set_session may only be called before the handshake has started. */
David Benjamincb0c29f2016-12-12 17:00:50 -0500909 if (SSL_state(ssl) != SSL_ST_INIT || ssl->s3->initial_handshake_complete) {
David Benjamin4d0be242016-09-01 01:10:07 -0400910 abort();
911 }
912
913 ssl_set_session(ssl, session);
914 return 1;
915}
916
917void ssl_set_session(SSL *ssl, SSL_SESSION *session) {
David Benjamindafbdd42015-09-14 01:40:10 -0400918 if (ssl->session == session) {
David Benjamin4d0be242016-09-01 01:10:07 -0400919 return;
Adam Langleyfcf25832014-12-18 17:42:32 -0800920 }
Adam Langley95c29f32014-06-20 12:00:00 -0700921
David Benjamindafbdd42015-09-14 01:40:10 -0400922 SSL_SESSION_free(ssl->session);
923 ssl->session = session;
Adam Langleyfcf25832014-12-18 17:42:32 -0800924 if (session != NULL) {
David Benjamin33639842015-02-09 03:34:47 -0500925 SSL_SESSION_up_ref(session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800926 }
Adam Langleyfcf25832014-12-18 17:42:32 -0800927}
Adam Langley95c29f32014-06-20 12:00:00 -0700928
David Benjamindafbdd42015-09-14 01:40:10 -0400929long SSL_CTX_set_timeout(SSL_CTX *ctx, long timeout) {
930 if (ctx == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800931 return 0;
932 }
933
David Benjamindafbdd42015-09-14 01:40:10 -0400934 long old_timeout = ctx->session_timeout;
935 ctx->session_timeout = timeout;
936 return old_timeout;
Adam Langleyfcf25832014-12-18 17:42:32 -0800937}
938
David Benjamindafbdd42015-09-14 01:40:10 -0400939long SSL_CTX_get_timeout(const SSL_CTX *ctx) {
940 if (ctx == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800941 return 0;
942 }
943
David Benjamindafbdd42015-09-14 01:40:10 -0400944 return ctx->session_timeout;
Adam Langleyfcf25832014-12-18 17:42:32 -0800945}
946
Alessandro Ghedinibf483642016-11-22 18:56:46 +0000947long SSL_set_session_timeout(SSL *ssl, long timeout) {
948 long old_timeout = ssl->session_timeout;
949 ssl->session_timeout = timeout;
950 return old_timeout;
951}
952
Adam Langleyfcf25832014-12-18 17:42:32 -0800953typedef struct timeout_param_st {
954 SSL_CTX *ctx;
955 long time;
David Benjamin60da0cd2015-05-03 15:21:28 -0400956 LHASH_OF(SSL_SESSION) *cache;
Adam Langleyfcf25832014-12-18 17:42:32 -0800957} TIMEOUT_PARAM;
958
David Benjamindafbdd42015-09-14 01:40:10 -0400959static void timeout_doall_arg(SSL_SESSION *session, void *void_param) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800960 TIMEOUT_PARAM *param = void_param;
961
962 if (param->time == 0 ||
David Benjamindafbdd42015-09-14 01:40:10 -0400963 param->time > (session->time + session->timeout)) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800964 /* timeout */
965 /* The reason we don't call SSL_CTX_remove_session() is to
966 * save on locking overhead */
David Benjamindafbdd42015-09-14 01:40:10 -0400967 (void) lh_SSL_SESSION_delete(param->cache, session);
968 SSL_SESSION_list_remove(param->ctx, session);
969 session->not_resumable = 1;
Adam Langleyfcf25832014-12-18 17:42:32 -0800970 if (param->ctx->remove_session_cb != NULL) {
David Benjamindafbdd42015-09-14 01:40:10 -0400971 param->ctx->remove_session_cb(param->ctx, session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800972 }
David Benjamindafbdd42015-09-14 01:40:10 -0400973 SSL_SESSION_free(session);
Adam Langleyfcf25832014-12-18 17:42:32 -0800974 }
975}
976
David Benjamindafbdd42015-09-14 01:40:10 -0400977void SSL_CTX_flush_sessions(SSL_CTX *ctx, long time) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800978 TIMEOUT_PARAM tp;
979
Adam Langley4bdb6e42015-05-15 15:29:21 -0700980 tp.ctx = ctx;
981 tp.cache = ctx->sessions;
Adam Langleyfcf25832014-12-18 17:42:32 -0800982 if (tp.cache == NULL) {
983 return;
984 }
David Benjamindafbdd42015-09-14 01:40:10 -0400985 tp.time = time;
Adam Langley4bdb6e42015-05-15 15:29:21 -0700986 CRYPTO_MUTEX_lock_write(&ctx->lock);
Adam Langleyfcf25832014-12-18 17:42:32 -0800987 lh_SSL_SESSION_doall_arg(tp.cache, timeout_doall_arg, &tp);
David Benjamin29270de2016-05-24 15:28:36 +0000988 CRYPTO_MUTEX_unlock_write(&ctx->lock);
Adam Langleyfcf25832014-12-18 17:42:32 -0800989}
990
Adam Langley95c29f32014-06-20 12:00:00 -0700991/* locked by SSL_CTX in the calling function */
David Benjamindafbdd42015-09-14 01:40:10 -0400992static void SSL_SESSION_list_remove(SSL_CTX *ctx, SSL_SESSION *session) {
993 if (session->next == NULL || session->prev == NULL) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800994 return;
995 }
Adam Langley95c29f32014-06-20 12:00:00 -0700996
David Benjamindafbdd42015-09-14 01:40:10 -0400997 if (session->next == (SSL_SESSION *)&ctx->session_cache_tail) {
Adam Langleyfcf25832014-12-18 17:42:32 -0800998 /* last element in list */
David Benjamindafbdd42015-09-14 01:40:10 -0400999 if (session->prev == (SSL_SESSION *)&ctx->session_cache_head) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001000 /* only one element in list */
1001 ctx->session_cache_head = NULL;
1002 ctx->session_cache_tail = NULL;
1003 } else {
David Benjamindafbdd42015-09-14 01:40:10 -04001004 ctx->session_cache_tail = session->prev;
1005 session->prev->next = (SSL_SESSION *)&(ctx->session_cache_tail);
Adam Langleyfcf25832014-12-18 17:42:32 -08001006 }
1007 } else {
David Benjamindafbdd42015-09-14 01:40:10 -04001008 if (session->prev == (SSL_SESSION *)&ctx->session_cache_head) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001009 /* first element in list */
David Benjamindafbdd42015-09-14 01:40:10 -04001010 ctx->session_cache_head = session->next;
1011 session->next->prev = (SSL_SESSION *)&(ctx->session_cache_head);
Adam Langleyfcf25832014-12-18 17:42:32 -08001012 } else { /* middle of list */
David Benjamindafbdd42015-09-14 01:40:10 -04001013 session->next->prev = session->prev;
1014 session->prev->next = session->next;
Adam Langleyfcf25832014-12-18 17:42:32 -08001015 }
1016 }
David Benjamindafbdd42015-09-14 01:40:10 -04001017 session->prev = session->next = NULL;
Adam Langleyfcf25832014-12-18 17:42:32 -08001018}
Adam Langley95c29f32014-06-20 12:00:00 -07001019
David Benjamindafbdd42015-09-14 01:40:10 -04001020static void SSL_SESSION_list_add(SSL_CTX *ctx, SSL_SESSION *session) {
1021 if (session->next != NULL && session->prev != NULL) {
1022 SSL_SESSION_list_remove(ctx, session);
Adam Langleyfcf25832014-12-18 17:42:32 -08001023 }
Adam Langley95c29f32014-06-20 12:00:00 -07001024
Adam Langleyfcf25832014-12-18 17:42:32 -08001025 if (ctx->session_cache_head == NULL) {
David Benjamindafbdd42015-09-14 01:40:10 -04001026 ctx->session_cache_head = session;
1027 ctx->session_cache_tail = session;
1028 session->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1029 session->next = (SSL_SESSION *)&(ctx->session_cache_tail);
Adam Langleyfcf25832014-12-18 17:42:32 -08001030 } else {
David Benjamindafbdd42015-09-14 01:40:10 -04001031 session->next = ctx->session_cache_head;
1032 session->next->prev = session;
1033 session->prev = (SSL_SESSION *)&(ctx->session_cache_head);
1034 ctx->session_cache_head = session;
Adam Langleyfcf25832014-12-18 17:42:32 -08001035 }
1036}
Adam Langley95c29f32014-06-20 12:00:00 -07001037
1038void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx,
David Benjamindafbdd42015-09-14 01:40:10 -04001039 int (*cb)(SSL *ssl, SSL_SESSION *session)) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001040 ctx->new_session_cb = cb;
1041}
Adam Langley95c29f32014-06-20 12:00:00 -07001042
David Benjamindafbdd42015-09-14 01:40:10 -04001043int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(SSL *ssl, SSL_SESSION *session) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001044 return ctx->new_session_cb;
1045}
Adam Langley95c29f32014-06-20 12:00:00 -07001046
David Benjamindafbdd42015-09-14 01:40:10 -04001047void SSL_CTX_sess_set_remove_cb(
1048 SSL_CTX *ctx, void (*cb)(SSL_CTX *ctx, SSL_SESSION *session)) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001049 ctx->remove_session_cb = cb;
1050}
Adam Langley95c29f32014-06-20 12:00:00 -07001051
Adam Langleyfcf25832014-12-18 17:42:32 -08001052void (*SSL_CTX_sess_get_remove_cb(SSL_CTX *ctx))(SSL_CTX *ctx,
David Benjamindafbdd42015-09-14 01:40:10 -04001053 SSL_SESSION *session) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001054 return ctx->remove_session_cb;
1055}
Adam Langley95c29f32014-06-20 12:00:00 -07001056
1057void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx,
David Benjamindafbdd42015-09-14 01:40:10 -04001058 SSL_SESSION *(*cb)(SSL *ssl,
1059 uint8_t *id, int id_len,
1060 int *out_copy)) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001061 ctx->get_session_cb = cb;
1062}
Adam Langley95c29f32014-06-20 12:00:00 -07001063
David Benjamindafbdd42015-09-14 01:40:10 -04001064SSL_SESSION *(*SSL_CTX_sess_get_get_cb(SSL_CTX *ctx))(
1065 SSL *ssl, uint8_t *id, int id_len, int *out_copy) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001066 return ctx->get_session_cb;
1067}
Adam Langley95c29f32014-06-20 12:00:00 -07001068
David Benjamin82170242015-10-17 22:51:17 -04001069void SSL_CTX_set_info_callback(
1070 SSL_CTX *ctx, void (*cb)(const SSL *ssl, int type, int value)) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001071 ctx->info_callback = cb;
1072}
Adam Langley95c29f32014-06-20 12:00:00 -07001073
Adam Langleyfcf25832014-12-18 17:42:32 -08001074void (*SSL_CTX_get_info_callback(SSL_CTX *ctx))(const SSL *ssl, int type,
David Benjamin82170242015-10-17 22:51:17 -04001075 int value) {
Adam Langleyfcf25832014-12-18 17:42:32 -08001076 return ctx->info_callback;
1077}
Adam Langley95c29f32014-06-20 12:00:00 -07001078
Adam Langley1258b6a2014-06-20 12:00:00 -07001079void SSL_CTX_set_channel_id_cb(SSL_CTX *ctx,
Adam Langleyfcf25832014-12-18 17:42:32 -08001080 void (*cb)(SSL *ssl, EVP_PKEY **pkey)) {
1081 ctx->channel_id_cb = cb;
1082}
Adam Langley1258b6a2014-06-20 12:00:00 -07001083
Adam Langleyfcf25832014-12-18 17:42:32 -08001084void (*SSL_CTX_get_channel_id_cb(SSL_CTX *ctx))(SSL *ssl, EVP_PKEY **pkey) {
1085 return ctx->channel_id_cb;
1086}