Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Side by Side Diff: net/socket/ssl_session_cache_openssl.cc

Issue 353713005: Implements new, more robust design for communicating between SSLConnectJobs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implemented better memory management and callback handling. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 return it != key_index_.end();
wtc 2014/07/15 19:28:00 IMPORTANT: I found that this function also needs t
mshelley 2014/07/17 00:28:46 Done.
244 }
245
246 void SetSessionAddedCallback(SSL* ssl, const base::Closure& callback) {
247 // Add this SSL* to the SSLtoCallbackMap.
248 ssl_to_callback_map_.insert(SSLToCallbackMap::value_type(
249 ssl, CallbackAndCompletionCount(callback, 0)));
wtc 2014/07/15 19:28:00 Can we use the associative array notation? ssl_
mshelley 2014/07/17 00:28:46 Done.
250 }
251
252 // Determines if the session for |ssl| is in the cache, and calls the
253 // appropriate callback if that is the case.
254 void CheckIfSessionAdded(SSL* ssl) {
255 SSLToCallbackMap::iterator it = ssl_to_callback_map_.find(ssl);
256 if (it == ssl_to_callback_map_.end())
257 return;
258 // Increment the session's completion count.
259 if (++it->second.count == 2) {
260 // The session has been MarkedAsGood and Added, so it can be used.
261 // These two events can occur in either order.
262 base::Closure callback = it->second.callback;
263 ssl_to_callback_map_.erase(it);
264 callback.Run();
265 }
266 }
267
268 void RemoveSessionAddedCallback(SSL* ssl) { ssl_to_callback_map_.erase(ssl); }
269
239 void MarkSSLSessionAsGood(SSL* ssl) { 270 void MarkSSLSessionAsGood(SSL* ssl) {
240 SSL_SESSION* session = SSL_get_session(ssl); 271 SSL_SESSION* session = SSL_get_session(ssl);
241 if (!session) 272 if (!session)
242 return; 273 return;
243 274
244 // Mark the session as good, allowing it to be used for future connections. 275 // Mark the session as good, allowing it to be used for future connections.
245 SSL_SESSION_set_ex_data( 276 SSL_SESSION_set_ex_data(
246 session, GetSSLSessionExIndex(), reinterpret_cast<void*>(1)); 277 session, GetSSLSessionExIndex(), reinterpret_cast<void*>(1));
278
279 CheckIfSessionAdded(ssl);
247 } 280 }
248 281
249 // Flush all entries from the cache. 282 // Flush all entries from the cache.
250 void Flush() { 283 void Flush() {
251 base::AutoLock lock(lock_); 284 base::AutoLock lock(lock_);
252 id_index_.clear(); 285 id_index_.clear();
253 key_index_.clear(); 286 key_index_.clear();
254 while (!ordering_.empty()) { 287 while (!ordering_.empty()) {
255 SSL_SESSION* session = ordering_.front(); 288 SSL_SESSION* session = ordering_.front();
256 ordering_.pop_front(); 289 ordering_.pop_front();
257 SSL_SESSION_free(session); 290 SSL_SESSION_free(session);
258 } 291 }
259 } 292 }
260 293
261 private: 294 private:
295 // CallbackAndCompletionCounts are used to group callback a callback
296 // that should be run when a certian sesssion is added to the session
297 // cache with an integer indicating the status of that session.
298 struct CallbackAndCompletionCount {
299 CallbackAndCompletionCount(base::Closure completion_callback,
300 int completion_count)
301 : callback(completion_callback), count(completion_count) {}
302
303 const base::Closure callback;
304 // |count| < 2 means that the ssl session associated with this object
305 // has not been added to the session cache. |count| == 2 means that the
306 // session has been added to the cache and is ready for use.
307 int count;
308 };
309
262 // Type for list of SSL_SESSION handles, ordered in MRU order. 310 // Type for list of SSL_SESSION handles, ordered in MRU order.
263 typedef std::list<SSL_SESSION*> MRUSessionList; 311 typedef std::list<SSL_SESSION*> MRUSessionList;
264 // Type for a dictionary from unique cache keys to session list nodes. 312 // Type for a dictionary from unique cache keys to session list nodes.
265 typedef base::hash_map<std::string, MRUSessionList::iterator> KeyIndex; 313 typedef base::hash_map<std::string, MRUSessionList::iterator> KeyIndex;
266 // Type for a dictionary from SessionId values to key index nodes. 314 // Type for a dictionary from SessionId values to key index nodes.
267 typedef base::hash_map<SessionId, KeyIndex::iterator> SessionIdIndex; 315 typedef base::hash_map<SessionId, KeyIndex::iterator> SessionIdIndex;
316 // Type for a map from SSL* to associated callbacks
317 typedef std::map<SSL*, CallbackAndCompletionCount> SSLToCallbackMap;
268 318
269 // Return the key associated with a given session, or the empty string if 319 // Return the key associated with a given session, or the empty string if
270 // none exist. This shall only be used for debugging. 320 // none exist. This shall only be used for debugging.
271 std::string SessionKey(SSL_SESSION* session) { 321 std::string SessionKey(SSL_SESSION* session) {
272 if (!session) 322 if (!session)
273 return std::string("<null-session>"); 323 return std::string("<null-session>");
274 324
275 if (session->session_id_length == 0) 325 if (session->session_id_length == 0)
276 return std::string("<empty-session-id>"); 326 return std::string("<empty-session-id>");
277 327
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 return reinterpret_cast<SSLSessionCacheOpenSSLImpl*>(result); 386 return reinterpret_cast<SSLSessionCacheOpenSSLImpl*>(result);
337 } 387 }
338 388
339 // Called by OpenSSL when a new |session| was created and added to a given 389 // 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 390 // |ssl| connection. Note that the session's reference count was already
341 // incremented before the function is entered. The function must return 1 391 // 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 392 // to indicate that it took ownership of the session, i.e. that the caller
343 // should not decrement its reference count after completion. 393 // should not decrement its reference count after completion.
344 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) { 394 static int NewSessionCallbackStatic(SSL* ssl, SSL_SESSION* session) {
345 GetCache(ssl->ctx)->OnSessionAdded(ssl, session); 395 GetCache(ssl->ctx)->OnSessionAdded(ssl, session);
396 GetCache(ssl->ctx)->CheckIfSessionAdded(ssl);
wtc 2014/07/15 19:28:00 Nit: save the return value of GetCache(ssl->ctx) i
mshelley 2014/07/17 00:28:46 Done.
346 return 1; 397 return 1;
347 } 398 }
348 399
349 // Called by OpenSSL to indicate that a session must be removed from the 400 // Called by OpenSSL to indicate that a session must be removed from the
350 // cache. This happens when SSL_CTX is destroyed. 401 // cache. This happens when SSL_CTX is destroyed.
351 static void RemoveSessionCallbackStatic(SSL_CTX* ctx, SSL_SESSION* session) { 402 static void RemoveSessionCallbackStatic(SSL_CTX* ctx, SSL_SESSION* session) {
352 GetCache(ctx)->OnSessionRemoved(session); 403 GetCache(ctx)->OnSessionRemoved(session);
353 } 404 }
354 405
355 // Called by OpenSSL to generate a new session ID. This happens during a 406 // 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
459 if (id_index_.find(SessionId(id, id_len)) == id_index_.end()) 510 if (id_index_.find(SessionId(id, id_len)) == id_index_.end())
460 return true; 511 return true;
461 } 512 }
462 DLOG(ERROR) << "Couldn't generate unique session ID of " << id_len 513 DLOG(ERROR) << "Couldn't generate unique session ID of " << id_len
463 << "bytes after " << kMaxTries << " tries."; 514 << "bytes after " << kMaxTries << " tries.";
464 return false; 515 return false;
465 } 516 }
466 517
467 SSL_CTX* ctx_; 518 SSL_CTX* ctx_;
468 SSLSessionCacheOpenSSL::Config config_; 519 SSLSessionCacheOpenSSL::Config config_;
520 SSLToCallbackMap ssl_to_callback_map_;
469 521
470 // method to get the index which can later be used with SSL_CTX_get_ex_data() 522 // method to get the index which can later be used with SSL_CTX_get_ex_data()
471 // or SSL_CTX_set_ex_data(). 523 // or SSL_CTX_set_ex_data().
472 base::Lock lock_; // Protects access to containers below. 524 mutable base::Lock lock_; // Protects access to containers below.
473 525
474 MRUSessionList ordering_; 526 MRUSessionList ordering_;
475 KeyIndex key_index_; 527 KeyIndex key_index_;
476 SessionIdIndex id_index_; 528 SessionIdIndex id_index_;
477 529
478 size_t expiration_check_; 530 size_t expiration_check_;
479 }; 531 };
480 532
481 SSLSessionCacheOpenSSL::~SSLSessionCacheOpenSSL() { delete impl_; } 533 SSLSessionCacheOpenSSL::~SSLSessionCacheOpenSSL() { delete impl_; }
482 534
483 size_t SSLSessionCacheOpenSSL::size() const { return impl_->size(); } 535 size_t SSLSessionCacheOpenSSL::size() const { return impl_->size(); }
484 536
485 void SSLSessionCacheOpenSSL::Reset(SSL_CTX* ctx, const Config& config) { 537 void SSLSessionCacheOpenSSL::Reset(SSL_CTX* ctx, const Config& config) {
486 if (impl_) 538 if (impl_)
487 delete impl_; 539 delete impl_;
488 540
489 impl_ = new SSLSessionCacheOpenSSLImpl(ctx, config); 541 impl_ = new SSLSessionCacheOpenSSLImpl(ctx, config);
490 } 542 }
491 543
492 bool SSLSessionCacheOpenSSL::SetSSLSession(SSL* ssl) { 544 bool SSLSessionCacheOpenSSL::SetSSLSession(SSL* ssl) {
493 return impl_->SetSSLSession(ssl); 545 return impl_->SetSSLSession(ssl);
494 } 546 }
495 547
496 bool SSLSessionCacheOpenSSL::SetSSLSessionWithKey( 548 bool SSLSessionCacheOpenSSL::SetSSLSessionWithKey(
497 SSL* ssl, 549 SSL* ssl,
498 const std::string& cache_key) { 550 const std::string& cache_key) {
499 return impl_->SetSSLSessionWithKey(ssl, cache_key); 551 return impl_->SetSSLSessionWithKey(ssl, cache_key);
500 } 552 }
501 553
554 bool SSLSessionCacheOpenSSL::SSLSessionIsInCache(
555 const std::string& cache_key) const {
556 return impl_->SSLSessionIsInCache(cache_key);
557 }
558
559 void SSLSessionCacheOpenSSL::RemoveSessionAddedCallback(SSL* ssl) {
560 impl_->RemoveSessionAddedCallback(ssl);
561 }
562
563 void SSLSessionCacheOpenSSL::SetSessionAddedCallback(SSL* ssl,
564 const base::Closure& cb) {
565 impl_->SetSessionAddedCallback(ssl, cb);
566 }
567
502 void SSLSessionCacheOpenSSL::MarkSSLSessionAsGood(SSL* ssl) { 568 void SSLSessionCacheOpenSSL::MarkSSLSessionAsGood(SSL* ssl) {
503 return impl_->MarkSSLSessionAsGood(ssl); 569 return impl_->MarkSSLSessionAsGood(ssl);
504 } 570 }
505 571
506 void SSLSessionCacheOpenSSL::Flush() { impl_->Flush(); } 572 void SSLSessionCacheOpenSSL::Flush() { impl_->Flush(); }
507 573
508 } // namespace net 574 } // namespace net
OLDNEW
« net/socket/ssl_client_socket_pool.cc ('K') | « net/socket/ssl_session_cache_openssl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698