Use EXPECT_EQ when possible.
[chromium-blink-merge.git] / net / socket / ssl_session_cache_openssl.cc
blob92ae44b9ac526a1e9b84137e04de0923c461d7ba
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/socket/ssl_session_cache_openssl.h"
7 #include <list>
8 #include <map>
10 #include <openssl/rand.h>
11 #include <openssl/ssl.h>
13 #include "base/containers/hash_tables.h"
14 #include "base/lazy_instance.h"
15 #include "base/logging.h"
16 #include "base/synchronization/lock.h"
18 namespace net {
20 namespace {
22 // A helper class to lazily create a new EX_DATA index to map SSL_CTX handles
23 // to their corresponding SSLSessionCacheOpenSSLImpl object.
24 class SSLContextExIndex {
25 public:
26 SSLContextExIndex() {
27 context_index_ = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
28 DCHECK_NE(-1, context_index_);
29 session_index_ = SSL_SESSION_get_ex_new_index(0, NULL, NULL, NULL, NULL);
30 DCHECK_NE(-1, session_index_);
33 int context_index() const { return context_index_; }
34 int session_index() const { return session_index_; }
36 private:
37 int context_index_;
38 int session_index_;
41 // static
42 base::LazyInstance<SSLContextExIndex>::Leaky s_ssl_context_ex_instance =
43 LAZY_INSTANCE_INITIALIZER;
45 // Retrieve the global EX_DATA index, created lazily on first call, to
46 // be used with SSL_CTX_set_ex_data() and SSL_CTX_get_ex_data().
47 static int GetSSLContextExIndex() {
48 return s_ssl_context_ex_instance.Get().context_index();
51 // Retrieve the global EX_DATA index, created lazily on first call, to
52 // be used with SSL_SESSION_set_ex_data() and SSL_SESSION_get_ex_data().
53 static int GetSSLSessionExIndex() {
54 return s_ssl_context_ex_instance.Get().session_index();
57 // Helper struct used to store session IDs in a SessionIdIndex container
58 // (see definition below). To save memory each entry only holds a pointer
59 // to the session ID buffer, which must outlive the entry itself. On the
60 // other hand, a hash is included to minimize the number of hashing
61 // computations during cache operations.
62 struct SessionId {
63 SessionId(const unsigned char* a_id, unsigned a_id_len)
64 : id(a_id), id_len(a_id_len), hash(ComputeHash(a_id, a_id_len)) {}
66 explicit SessionId(const SessionId& other)
67 : id(other.id), id_len(other.id_len), hash(other.hash) {}
69 explicit SessionId(SSL_SESSION* session)
70 : id(session->session_id),
71 id_len(session->session_id_length),
72 hash(ComputeHash(session->session_id, session->session_id_length)) {}
74 bool operator==(const SessionId& other) const {
75 return hash == other.hash && id_len == other.id_len &&
76 !memcmp(id, other.id, id_len);
79 const unsigned char* id;
80 unsigned id_len;
81 size_t hash;
83 private:
84 // Session ID are random strings of bytes. This happens to compute the same
85 // value as std::hash<std::string> without the extra string copy. See
86 // base/containers/hash_tables.h. Other hashing computations are possible,
87 // this one is just simple enough to do the job.
88 size_t ComputeHash(const unsigned char* id, unsigned id_len) {
89 size_t result = 0;
90 for (unsigned n = 0; n < id_len; ++n) {
91 result = (result * 131) + id[n];
93 return result;
97 } // namespace
99 } // namespace net
101 namespace BASE_HASH_NAMESPACE {
103 template <>
104 struct hash<net::SessionId> {
105 std::size_t operator()(const net::SessionId& entry) const {
106 return entry.hash;
110 } // namespace BASE_HASH_NAMESPACE
112 namespace net {
114 // Implementation of the real SSLSessionCache.
116 // The implementation is inspired by base::MRUCache, except that the deletor
117 // also needs to remove the entry from other containers. In a nutshell, this
118 // uses several basic containers:
120 // |ordering_| is a doubly-linked list of SSL_SESSION handles, ordered in
121 // MRU order.
123 // |key_index_| is a hash table mapping unique cache keys (e.g. host/port
124 // values) to a single iterator of |ordering_|. It is used to efficiently
125 // find the cached session associated with a given key.
127 // |id_index_| is a hash table mapping SessionId values to iterators
128 // of |key_index_|. If is used to efficiently remove sessions from the cache,
129 // as well as check for the existence of a session ID value in the cache.
131 // SSL_SESSION objects are reference-counted, and owned by the cache. This
132 // means that their reference count is incremented when they are added, and
133 // decremented when they are removed.
135 // Assuming an average key size of 100 characters, each node requires the
136 // following memory usage on 32-bit Android, when linked against STLport:
138 // 12 (ordering_ node, including SSL_SESSION handle)
139 // 100 (key characters)
140 // + 24 (std::string header/minimum size)
141 // + 8 (key_index_ node, excluding the 2 lines above for the key).
142 // + 20 (id_index_ node)
143 // --------
144 // 164 bytes/node
146 // Hence, 41 KiB for a full cache with a maximum of 1024 entries, excluding
147 // the size of SSL_SESSION objects and heap fragmentation.
150 class SSLSessionCacheOpenSSLImpl {
151 public:
152 // Construct new instance. This registers various hooks into the SSL_CTX
153 // context |ctx|. OpenSSL will call back during SSL connection
154 // operations. |key_func| is used to map a SSL handle to a unique cache
155 // string, according to the client's preferences.
156 SSLSessionCacheOpenSSLImpl(SSL_CTX* ctx,
157 const SSLSessionCacheOpenSSL::Config& config)
158 : ctx_(ctx), config_(config), expiration_check_(0) {
159 DCHECK(ctx);
161 // NO_INTERNAL_STORE disables OpenSSL's builtin cache, and
162 // NO_AUTO_CLEAR disables the call to SSL_CTX_flush_sessions
163 // every 256 connections (this number is hard-coded in the library
164 // and can't be changed).
165 SSL_CTX_set_session_cache_mode(ctx_,
166 SSL_SESS_CACHE_CLIENT |
167 SSL_SESS_CACHE_NO_INTERNAL_STORE |
168 SSL_SESS_CACHE_NO_AUTO_CLEAR);
170 SSL_CTX_sess_set_new_cb(ctx_, NewSessionCallbackStatic);
171 SSL_CTX_sess_set_remove_cb(ctx_, RemoveSessionCallbackStatic);
172 SSL_CTX_set_generate_session_id(ctx_, GenerateSessionIdStatic);
173 SSL_CTX_set_timeout(ctx_, config_.timeout_seconds);
175 SSL_CTX_set_ex_data(ctx_, GetSSLContextExIndex(), this);
178 // Destroy this instance. Must happen before |ctx_| is destroyed.
179 ~SSLSessionCacheOpenSSLImpl() {
180 Flush();
181 SSL_CTX_set_ex_data(ctx_, GetSSLContextExIndex(), NULL);
182 SSL_CTX_sess_set_new_cb(ctx_, NULL);
183 SSL_CTX_sess_set_remove_cb(ctx_, NULL);
184 SSL_CTX_set_generate_session_id(ctx_, NULL);
187 // Return the number of items in this cache.
188 size_t size() const { return key_index_.size(); }
190 // Retrieve the cache key from |ssl| and look for a corresponding
191 // cached session ID. If one is found, call SSL_set_session() to associate
192 // it with the |ssl| connection.
194 // Will also check for expired sessions every |expiration_check_count|
195 // calls.
197 // Return true if a cached session ID was found, false otherwise.
198 bool SetSSLSession(SSL* ssl) {
199 std::string cache_key = config_.key_func(ssl);
200 if (cache_key.empty())
201 return false;
203 return SetSSLSessionWithKey(ssl, cache_key);
206 // Variant of SetSSLSession to be used when the client already has computed
207 // the cache key. Avoid a call to the configuration's |key_func| function.
208 bool SetSSLSessionWithKey(SSL* ssl, const std::string& cache_key) {
209 base::AutoLock locked(lock_);
211 DCHECK_EQ(config_.key_func(ssl), cache_key);
213 if (++expiration_check_ >= config_.expiration_check_count) {
214 expiration_check_ = 0;
215 FlushExpiredSessionsLocked();
218 KeyIndex::iterator it = key_index_.find(cache_key);
219 if (it == key_index_.end())
220 return false;
222 SSL_SESSION* session = *it->second;
223 DCHECK(session);
225 DVLOG(2) << "Lookup session: " << session << " for " << cache_key;
227 void* session_is_good =
228 SSL_SESSION_get_ex_data(session, GetSSLSessionExIndex());
229 if (!session_is_good)
230 return false; // Session has not yet been marked good. Treat as a miss.
232 // Move to front of MRU list.
233 ordering_.push_front(session);
234 ordering_.erase(it->second);
235 it->second = ordering_.begin();
237 return SSL_set_session(ssl, session) == 1;
240 // Return true iff a cached session was associated with the given |cache_key|.
241 bool SSLSessionIsInCache(const std::string& cache_key) const {
242 base::AutoLock locked(lock_);
243 KeyIndex::const_iterator it = key_index_.find(cache_key);
244 if (it == key_index_.end())
245 return false;
247 SSL_SESSION* session = *it->second;
248 DCHECK(session);
250 void* session_is_good =
251 SSL_SESSION_get_ex_data(session, GetSSLSessionExIndex());
253 return session_is_good != NULL;
256 void MarkSSLSessionAsGood(SSL* ssl) {
257 SSL_SESSION* session = SSL_get_session(ssl);
258 CHECK(session);
260 // Mark the session as good, allowing it to be used for future connections.
261 SSL_SESSION_set_ex_data(
262 session, GetSSLSessionExIndex(), reinterpret_cast<void*>(1));
265 // Flush all entries from the cache.
266 void Flush() {
267 base::AutoLock lock(lock_);
268 id_index_.clear();
269 key_index_.clear();
270 while (!ordering_.empty()) {
271 SSL_SESSION* session = ordering_.front();
272 ordering_.pop_front();
273 SSL_SESSION_free(session);
277 private:
278 // Type for list of SSL_SESSION handles, ordered in MRU order.
279 typedef std::list<SSL_SESSION*> MRUSessionList;
280 // Type for a dictionary from unique cache keys to session list nodes.
281 typedef base::hash_map<std::string, MRUSessionList::iterator> KeyIndex;
282 // Type for a dictionary from SessionId values to key index nodes.
283 typedef base::hash_map<SessionId, KeyIndex::iterator> SessionIdIndex;
285 // Return the key associated with a given session, or the empty string if
286 // none exist. This shall only be used for debugging.
287 std::string SessionKey(SSL_SESSION* session) {
288 if (!session)
289 return std::string("<null-session>");
291 if (session->session_id_length == 0)
292 return std::string("<empty-session-id>");
294 SessionIdIndex::iterator it = id_index_.find(SessionId(session));
295 if (it == id_index_.end())
296 return std::string("<unknown-session>");
298 return it->second->first;
301 // Remove a given |session| from the cache. Lock must be held.
302 void RemoveSessionLocked(SSL_SESSION* session) {
303 lock_.AssertAcquired();
304 DCHECK(session);
305 DCHECK_GT(session->session_id_length, 0U);
306 SessionId session_id(session);
307 SessionIdIndex::iterator id_it = id_index_.find(session_id);
308 if (id_it == id_index_.end()) {
309 LOG(ERROR) << "Trying to remove unknown session from cache: " << session;
310 return;
312 KeyIndex::iterator key_it = id_it->second;
313 DCHECK(key_it != key_index_.end());
314 DCHECK_EQ(session, *key_it->second);
316 id_index_.erase(session_id);
317 ordering_.erase(key_it->second);
318 key_index_.erase(key_it);
320 SSL_SESSION_free(session);
322 DCHECK_EQ(key_index_.size(), id_index_.size());
325 // Used internally to flush expired sessions. Lock must be held.
326 void FlushExpiredSessionsLocked() {
327 lock_.AssertAcquired();
329 // Unfortunately, OpenSSL initializes |session->time| with a time()
330 // timestamps, which makes mocking / unit testing difficult.
331 long timeout_secs = static_cast<long>(::time(NULL));
332 MRUSessionList::iterator it = ordering_.begin();
333 while (it != ordering_.end()) {
334 SSL_SESSION* session = *it++;
336 // Important, use <= instead of < here to allow unit testing to
337 // work properly. That's because unit tests that check the expiration
338 // behaviour will use a session timeout of 0 seconds.
339 if (session->time + session->timeout <= timeout_secs) {
340 DVLOG(2) << "Expiring session " << session << " for "
341 << SessionKey(session);
342 RemoveSessionLocked(session);
347 // Retrieve the cache associated with a given SSL context |ctx|.
348 static SSLSessionCacheOpenSSLImpl* GetCache(SSL_CTX* ctx) {
349 DCHECK(ctx);
350 void* result = SSL_CTX_get_ex_data(ctx, GetSSLContextExIndex());
351 DCHECK(result);
352 return reinterpret_cast<SSLSessionCacheOpenSSLImpl*>(result);
355 // Called by OpenSSL when a new |session| was created and added to a given
356 // |ssl| connection. Note that the session's reference count was already
357 // incremented before the function is entered. The function must return 1
358 // to indicate that it took ownership of the session, i.e. that the caller
359 // should not decrement its reference count after completion.
360 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) {
361 SSLSessionCacheOpenSSLImpl* cache = GetCache(ssl->ctx);
362 cache->OnSessionAdded(ssl, session);
363 return 1;
366 // Called by OpenSSL to indicate that a session must be removed from the
367 // cache. This happens when SSL_CTX is destroyed.
368 static void RemoveSessionCallbackStatic(SSL_CTX* ctx, SSL_SESSION* session) {
369 GetCache(ctx)->OnSessionRemoved(session);
372 // Called by OpenSSL to generate a new session ID. This happens during a
373 // SSL connection operation, when the SSL object doesn't have a session yet.
375 // A session ID is a random string of bytes used to uniquely identify the
376 // session between a client and a server.
378 // |ssl| is a SSL connection handle. Ignored here.
379 // |id| is the target buffer where the ID must be generated.
380 // |*id_len| is, on input, the size of the desired ID. It will be 16 for
381 // SSLv2, and 32 for anything else. OpenSSL allows an implementation
382 // to change it on output, but this will not happen here.
384 // The function must ensure the generated ID is really unique, i.e. that
385 // another session in the cache doesn't already use the same value. It must
386 // return 1 to indicate success, or 0 for failure.
387 static int GenerateSessionIdStatic(const SSL* ssl,
388 unsigned char* id,
389 unsigned* id_len) {
390 if (!GetCache(ssl->ctx)->OnGenerateSessionId(id, *id_len))
391 return 0;
393 return 1;
396 // Add |session| to the cache in association with |cache_key|. If a session
397 // already exists, it is replaced with the new one. This assumes that the
398 // caller already incremented the session's reference count.
399 void OnSessionAdded(SSL* ssl, SSL_SESSION* session) {
400 base::AutoLock locked(lock_);
401 DCHECK(ssl);
402 DCHECK_GT(session->session_id_length, 0U);
403 std::string cache_key = config_.key_func(ssl);
404 KeyIndex::iterator it = key_index_.find(cache_key);
405 if (it == key_index_.end()) {
406 DVLOG(2) << "Add session " << session << " for " << cache_key;
407 // This is a new session. Add it to the cache.
408 ordering_.push_front(session);
409 std::pair<KeyIndex::iterator, bool> ret =
410 key_index_.insert(std::make_pair(cache_key, ordering_.begin()));
411 DCHECK(ret.second);
412 it = ret.first;
413 DCHECK(it != key_index_.end());
414 } else {
415 // An existing session exists for this key, so replace it if needed.
416 DVLOG(2) << "Replace session " << *it->second << " with " << session
417 << " for " << cache_key;
418 SSL_SESSION* old_session = *it->second;
419 if (old_session != session) {
420 id_index_.erase(SessionId(old_session));
421 SSL_SESSION_free(old_session);
423 ordering_.erase(it->second);
424 ordering_.push_front(session);
425 it->second = ordering_.begin();
428 id_index_[SessionId(session)] = it;
430 if (key_index_.size() > config_.max_entries)
431 ShrinkCacheLocked();
433 DCHECK_EQ(key_index_.size(), id_index_.size());
434 DCHECK_LE(key_index_.size(), config_.max_entries);
437 // Shrink the cache to ensure no more than config_.max_entries entries,
438 // starting with older entries first. Lock must be acquired.
439 void ShrinkCacheLocked() {
440 lock_.AssertAcquired();
441 DCHECK_EQ(key_index_.size(), ordering_.size());
442 DCHECK_EQ(key_index_.size(), id_index_.size());
444 while (key_index_.size() > config_.max_entries) {
445 MRUSessionList::reverse_iterator it = ordering_.rbegin();
446 DCHECK(it != ordering_.rend());
448 SSL_SESSION* session = *it;
449 DCHECK(session);
450 DVLOG(2) << "Evicting session " << session << " for "
451 << SessionKey(session);
452 RemoveSessionLocked(session);
456 // Remove |session| from the cache.
457 void OnSessionRemoved(SSL_SESSION* session) {
458 base::AutoLock locked(lock_);
459 DVLOG(2) << "Remove session " << session << " for " << SessionKey(session);
460 RemoveSessionLocked(session);
463 // See GenerateSessionIdStatic for a description of what this function does.
464 bool OnGenerateSessionId(unsigned char* id, unsigned id_len) {
465 base::AutoLock locked(lock_);
466 // This mimics def_generate_session_id() in openssl/ssl/ssl_sess.cc,
467 // I.e. try to generate a pseudo-random bit string, and check that no
468 // other entry in the cache has the same value.
469 const size_t kMaxTries = 10;
470 for (size_t tries = 0; tries < kMaxTries; ++tries) {
471 if (RAND_pseudo_bytes(id, id_len) <= 0) {
472 DLOG(ERROR) << "Couldn't generate " << id_len
473 << " pseudo random bytes?";
474 return false;
476 if (id_index_.find(SessionId(id, id_len)) == id_index_.end())
477 return true;
479 DLOG(ERROR) << "Couldn't generate unique session ID of " << id_len
480 << "bytes after " << kMaxTries << " tries.";
481 return false;
484 SSL_CTX* ctx_;
485 SSLSessionCacheOpenSSL::Config config_;
487 // method to get the index which can later be used with SSL_CTX_get_ex_data()
488 // or SSL_CTX_set_ex_data().
489 mutable base::Lock lock_; // Protects access to containers below.
491 MRUSessionList ordering_;
492 KeyIndex key_index_;
493 SessionIdIndex id_index_;
495 size_t expiration_check_;
498 SSLSessionCacheOpenSSL::~SSLSessionCacheOpenSSL() { delete impl_; }
500 size_t SSLSessionCacheOpenSSL::size() const { return impl_->size(); }
502 void SSLSessionCacheOpenSSL::Reset(SSL_CTX* ctx, const Config& config) {
503 if (impl_)
504 delete impl_;
506 impl_ = new SSLSessionCacheOpenSSLImpl(ctx, config);
509 bool SSLSessionCacheOpenSSL::SetSSLSession(SSL* ssl) {
510 return impl_->SetSSLSession(ssl);
513 bool SSLSessionCacheOpenSSL::SetSSLSessionWithKey(
514 SSL* ssl,
515 const std::string& cache_key) {
516 return impl_->SetSSLSessionWithKey(ssl, cache_key);
519 bool SSLSessionCacheOpenSSL::SSLSessionIsInCache(
520 const std::string& cache_key) const {
521 return impl_->SSLSessionIsInCache(cache_key);
524 void SSLSessionCacheOpenSSL::MarkSSLSessionAsGood(SSL* ssl) {
525 return impl_->MarkSSLSessionAsGood(ssl);
528 void SSLSessionCacheOpenSSL::Flush() { impl_->Flush(); }
530 } // namespace net