OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/socket/ssl_session_cache_openssl.h" | 5 #include "net/socket/ssl_session_cache_openssl.h" |
6 | 6 |
7 #include <list> | 7 #include <list> |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include <openssl/rand.h> | 10 #include <openssl/rand.h> |
11 #include <openssl/ssl.h> | 11 #include <openssl/ssl.h> |
12 | 12 |
13 #include "base/callback.h" | |
13 #include "base/containers/hash_tables.h" | 14 #include "base/containers/hash_tables.h" |
14 #include "base/lazy_instance.h" | 15 #include "base/lazy_instance.h" |
15 #include "base/logging.h" | 16 #include "base/logging.h" |
16 #include "base/synchronization/lock.h" | 17 #include "base/synchronization/lock.h" |
17 | 18 |
18 namespace net { | 19 namespace net { |
19 | 20 |
20 namespace { | 21 namespace { |
21 | 22 |
22 // A helper class to lazily create a new EX_DATA index to map SSL_CTX handles | 23 // A helper class to lazily create a new EX_DATA index to map SSL_CTX handles |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
229 return false; // Session has not yet been marked good. Treat as a miss. | 230 return false; // Session has not yet been marked good. Treat as a miss. |
230 | 231 |
231 // Move to front of MRU list. | 232 // Move to front of MRU list. |
232 ordering_.push_front(session); | 233 ordering_.push_front(session); |
233 ordering_.erase(it->second); | 234 ordering_.erase(it->second); |
234 it->second = ordering_.begin(); | 235 it->second = ordering_.begin(); |
235 | 236 |
236 return SSL_set_session(ssl, session) == 1; | 237 return SSL_set_session(ssl, session) == 1; |
237 } | 238 } |
238 | 239 |
240 bool SSLSessionIsInCache(const std::string& cache_key) const { | |
241 base::AutoLock locked(lock_); | |
242 KeyIndex::const_iterator it = key_index_.find(cache_key); | |
243 if (it == key_index.end()) | |
244 return false; | |
245 | |
246 SSL_SESSION* session = *it->second; | |
247 DCHECK(session); | |
248 | |
249 void* session_is_good = | |
250 SSL_SESSION_get_ex_data(session, GetSSLSessionExIndex()); | |
251 | |
252 return session_is_good; | |
253 } | |
254 | |
255 void SetSessionAddedCallback(SSL* ssl, const base::Closure& callback) { | |
256 // Add this SSL* to the SSLtoCallbackMap. | |
257 ssl_to_callback_map_[ssl] = CallbackAndCompletionCount(callback, 0); | |
258 } | |
259 | |
260 // Determines if the session for |ssl| is in the cache, and calls the | |
261 // appropriate callback if that is the case. | |
262 void CheckIfSessionAdded(SSL* ssl) { | |
Ryan Sleevi
2014/07/18 22:01:18
naming: CheckIfSessionFinished() ? Complete?
mshelley
2014/07/21 23:00:09
Done.
| |
263 SSLToCallbackMap::iterator it = ssl_to_callback_map_.find(ssl); | |
264 if (it == ssl_to_callback_map_.end()) | |
265 return; | |
266 // Increment the session's completion count. | |
267 if (++it->second.count == 2) { | |
268 // The session has been MarkedAsGood and Added, so it can be used. | |
269 // These two events can occur in either order. | |
270 base::Closure callback = it->second.callback; | |
271 ssl_to_callback_map_.erase(it); | |
272 callback.Run(); | |
273 } | |
274 } | |
275 | |
276 void RemoveSessionAddedCallback(SSL* ssl) { ssl_to_callback_map_.erase(ssl); } | |
277 | |
239 void MarkSSLSessionAsGood(SSL* ssl) { | 278 void MarkSSLSessionAsGood(SSL* ssl) { |
240 SSL_SESSION* session = SSL_get_session(ssl); | 279 SSL_SESSION* session = SSL_get_session(ssl); |
241 if (!session) | 280 |
281 if (!session) { | |
282 base::Closure callback = ssl_to_callback_map_[ssl].callback; | |
283 ssl_to_callback_map_.erase(ssl); | |
284 callback.Run(); | |
242 return; | 285 return; |
286 } | |
243 | 287 |
244 // Mark the session as good, allowing it to be used for future connections. | 288 // Mark the session as good, allowing it to be used for future connections. |
245 SSL_SESSION_set_ex_data( | 289 SSL_SESSION_set_ex_data( |
246 session, GetSSLSessionExIndex(), reinterpret_cast<void*>(1)); | 290 session, GetSSLSessionExIndex(), reinterpret_cast<void*>(1)); |
291 | |
292 CheckIfSessionAdded(ssl); | |
247 } | 293 } |
248 | 294 |
249 // Flush all entries from the cache. | 295 // Flush all entries from the cache. |
250 void Flush() { | 296 void Flush() { |
251 base::AutoLock lock(lock_); | 297 base::AutoLock lock(lock_); |
252 id_index_.clear(); | 298 id_index_.clear(); |
253 key_index_.clear(); | 299 key_index_.clear(); |
254 while (!ordering_.empty()) { | 300 while (!ordering_.empty()) { |
255 SSL_SESSION* session = ordering_.front(); | 301 SSL_SESSION* session = ordering_.front(); |
256 ordering_.pop_front(); | 302 ordering_.pop_front(); |
257 SSL_SESSION_free(session); | 303 SSL_SESSION_free(session); |
258 } | 304 } |
259 } | 305 } |
260 | 306 |
261 private: | 307 private: |
308 // CallbackAndCompletionCounts are used to group a callback that should be | |
309 // run when a certian sesssion is added to the session cache with an integer | |
310 // indicating the status of that session. | |
311 struct CallbackAndCompletionCount { | |
312 CallbackAndCompletionCount(const base::Closure& completion_callback, | |
313 int completion_count) | |
314 : callback(completion_callback), count(completion_count) {} | |
315 | |
316 const base::Closure callback; | |
317 // |count| < 2 means that the ssl session associated with this object | |
318 // has not been added to the session cache or has not been marked as good. | |
319 // |count| is incremented when a session is added to the cache or marked as | |
320 // good, | |
321 // thus |count| == 2 means that the session is ready for use. | |
Ryan Sleevi
2014/07/18 22:01:17
formatting
mshelley
2014/07/21 23:00:09
Done.
| |
322 int count; | |
323 }; | |
324 | |
262 // Type for list of SSL_SESSION handles, ordered in MRU order. | 325 // Type for list of SSL_SESSION handles, ordered in MRU order. |
263 typedef std::list<SSL_SESSION*> MRUSessionList; | 326 typedef std::list<SSL_SESSION*> MRUSessionList; |
264 // Type for a dictionary from unique cache keys to session list nodes. | 327 // Type for a dictionary from unique cache keys to session list nodes. |
265 typedef base::hash_map<std::string, MRUSessionList::iterator> KeyIndex; | 328 typedef base::hash_map<std::string, MRUSessionList::iterator> KeyIndex; |
266 // Type for a dictionary from SessionId values to key index nodes. | 329 // Type for a dictionary from SessionId values to key index nodes. |
267 typedef base::hash_map<SessionId, KeyIndex::iterator> SessionIdIndex; | 330 typedef base::hash_map<SessionId, KeyIndex::iterator> SessionIdIndex; |
331 // Type for a map from SSL* to associated callbacks | |
332 typedef std::map<SSL*, CallbackAndCompletionCount> SSLToCallbackMap; | |
268 | 333 |
269 // Return the key associated with a given session, or the empty string if | 334 // Return the key associated with a given session, or the empty string if |
270 // none exist. This shall only be used for debugging. | 335 // none exist. This shall only be used for debugging. |
271 std::string SessionKey(SSL_SESSION* session) { | 336 std::string SessionKey(SSL_SESSION* session) { |
272 if (!session) | 337 if (!session) |
273 return std::string("<null-session>"); | 338 return std::string("<null-session>"); |
274 | 339 |
275 if (session->session_id_length == 0) | 340 if (session->session_id_length == 0) |
276 return std::string("<empty-session-id>"); | 341 return std::string("<empty-session-id>"); |
277 | 342 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
335 DCHECK(result); | 400 DCHECK(result); |
336 return reinterpret_cast<SSLSessionCacheOpenSSLImpl*>(result); | 401 return reinterpret_cast<SSLSessionCacheOpenSSLImpl*>(result); |
337 } | 402 } |
338 | 403 |
339 // Called by OpenSSL when a new |session| was created and added to a given | 404 // Called by OpenSSL when a new |session| was created and added to a given |
340 // |ssl| connection. Note that the session's reference count was already | 405 // |ssl| connection. Note that the session's reference count was already |
341 // incremented before the function is entered. The function must return 1 | 406 // incremented before the function is entered. The function must return 1 |
342 // to indicate that it took ownership of the session, i.e. that the caller | 407 // to indicate that it took ownership of the session, i.e. that the caller |
343 // should not decrement its reference count after completion. | 408 // should not decrement its reference count after completion. |
344 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) { | 409 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) { |
345 GetCache(ssl->ctx)->OnSessionAdded(ssl, session); | 410 SSLSessionCacheOpenSSLImpl* cache = GetCache(ssl->ctx); |
411 cache->OnSessionAdded(ssl, session); | |
412 cache->CheckIfSessionAdded(ssl); | |
346 return 1; | 413 return 1; |
347 } | 414 } |
348 | 415 |
349 // Called by OpenSSL to indicate that a session must be removed from the | 416 // Called by OpenSSL to indicate that a session must be removed from the |
350 // cache. This happens when SSL_CTX is destroyed. | 417 // cache. This happens when SSL_CTX is destroyed. |
351 static void RemoveSessionCallbackStatic(SSL_CTX* ctx, SSL_SESSION* session) { | 418 static void RemoveSessionCallbackStatic(SSL_CTX* ctx, SSL_SESSION* session) { |
352 GetCache(ctx)->OnSessionRemoved(session); | 419 GetCache(ctx)->OnSessionRemoved(session); |
353 } | 420 } |
354 | 421 |
355 // Called by OpenSSL to generate a new session ID. This happens during a | 422 // Called by OpenSSL to generate a new session ID. This happens during a |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
459 if (id_index_.find(SessionId(id, id_len)) == id_index_.end()) | 526 if (id_index_.find(SessionId(id, id_len)) == id_index_.end()) |
460 return true; | 527 return true; |
461 } | 528 } |
462 DLOG(ERROR) << "Couldn't generate unique session ID of " << id_len | 529 DLOG(ERROR) << "Couldn't generate unique session ID of " << id_len |
463 << "bytes after " << kMaxTries << " tries."; | 530 << "bytes after " << kMaxTries << " tries."; |
464 return false; | 531 return false; |
465 } | 532 } |
466 | 533 |
467 SSL_CTX* ctx_; | 534 SSL_CTX* ctx_; |
468 SSLSessionCacheOpenSSL::Config config_; | 535 SSLSessionCacheOpenSSL::Config config_; |
536 SSLToCallbackMap ssl_to_callback_map_; | |
469 | 537 |
470 // method to get the index which can later be used with SSL_CTX_get_ex_data() | 538 // method to get the index which can later be used with SSL_CTX_get_ex_data() |
471 // or SSL_CTX_set_ex_data(). | 539 // or SSL_CTX_set_ex_data(). |
472 base::Lock lock_; // Protects access to containers below. | 540 mutable base::Lock lock_; // Protects access to containers below. |
473 | 541 |
474 MRUSessionList ordering_; | 542 MRUSessionList ordering_; |
475 KeyIndex key_index_; | 543 KeyIndex key_index_; |
476 SessionIdIndex id_index_; | 544 SessionIdIndex id_index_; |
477 | 545 |
478 size_t expiration_check_; | 546 size_t expiration_check_; |
479 }; | 547 }; |
480 | 548 |
481 SSLSessionCacheOpenSSL::~SSLSessionCacheOpenSSL() { delete impl_; } | 549 SSLSessionCacheOpenSSL::~SSLSessionCacheOpenSSL() { delete impl_; } |
482 | 550 |
483 size_t SSLSessionCacheOpenSSL::size() const { return impl_->size(); } | 551 size_t SSLSessionCacheOpenSSL::size() const { return impl_->size(); } |
484 | 552 |
485 void SSLSessionCacheOpenSSL::Reset(SSL_CTX* ctx, const Config& config) { | 553 void SSLSessionCacheOpenSSL::Reset(SSL_CTX* ctx, const Config& config) { |
486 if (impl_) | 554 if (impl_) |
487 delete impl_; | 555 delete impl_; |
488 | 556 |
489 impl_ = new SSLSessionCacheOpenSSLImpl(ctx, config); | 557 impl_ = new SSLSessionCacheOpenSSLImpl(ctx, config); |
490 } | 558 } |
491 | 559 |
492 bool SSLSessionCacheOpenSSL::SetSSLSession(SSL* ssl) { | 560 bool SSLSessionCacheOpenSSL::SetSSLSession(SSL* ssl) { |
493 return impl_->SetSSLSession(ssl); | 561 return impl_->SetSSLSession(ssl); |
494 } | 562 } |
495 | 563 |
496 bool SSLSessionCacheOpenSSL::SetSSLSessionWithKey( | 564 bool SSLSessionCacheOpenSSL::SetSSLSessionWithKey( |
497 SSL* ssl, | 565 SSL* ssl, |
498 const std::string& cache_key) { | 566 const std::string& cache_key) { |
499 return impl_->SetSSLSessionWithKey(ssl, cache_key); | 567 return impl_->SetSSLSessionWithKey(ssl, cache_key); |
500 } | 568 } |
501 | 569 |
570 bool SSLSessionCacheOpenSSL::SSLSessionIsInCache( | |
571 const std::string& cache_key) const { | |
572 return impl_->SSLSessionIsInCache(cache_key); | |
573 } | |
574 | |
575 void SSLSessionCacheOpenSSL::RemoveSessionAddedCallback(SSL* ssl) { | |
576 impl_->RemoveSessionAddedCallback(ssl); | |
577 } | |
578 | |
579 void SSLSessionCacheOpenSSL::SetSessionAddedCallback(SSL* ssl, | |
580 const base::Closure& cb) { | |
581 impl_->SetSessionAddedCallback(ssl, cb); | |
582 } | |
583 | |
502 void SSLSessionCacheOpenSSL::MarkSSLSessionAsGood(SSL* ssl) { | 584 void SSLSessionCacheOpenSSL::MarkSSLSessionAsGood(SSL* ssl) { |
503 return impl_->MarkSSLSessionAsGood(ssl); | 585 return impl_->MarkSSLSessionAsGood(ssl); |
504 } | 586 } |
505 | 587 |
506 void SSLSessionCacheOpenSSL::Flush() { impl_->Flush(); } | 588 void SSLSessionCacheOpenSSL::Flush() { impl_->Flush(); } |
507 | 589 |
508 } // namespace net | 590 } // namespace net |
OLD | NEW |