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

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

Issue 994263002: Rewrite session cache in OpenSSL ports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reebase Created 5 years, 8 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
« no previous file with comments | « net/socket/ssl_client_socket_openssl.h ('k') | net/socket/ssl_client_socket_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // OpenSSL binding for SSLClientSocket. The class layout and general principle 5 // OpenSSL binding for SSLClientSocket. The class layout and general principle
6 // of operation is derived from SSLClientSocketNSS. 6 // of operation is derived from SSLClientSocketNSS.
7 7
8 #include "net/socket/ssl_client_socket_openssl.h" 8 #include "net/socket/ssl_client_socket_openssl.h"
9 9
10 #include <errno.h> 10 #include <errno.h>
(...skipping 16 matching lines...) Expand all
27 #include "crypto/scoped_openssl_types.h" 27 #include "crypto/scoped_openssl_types.h"
28 #include "net/base/net_errors.h" 28 #include "net/base/net_errors.h"
29 #include "net/cert/cert_policy_enforcer.h" 29 #include "net/cert/cert_policy_enforcer.h"
30 #include "net/cert/cert_verifier.h" 30 #include "net/cert/cert_verifier.h"
31 #include "net/cert/ct_ev_whitelist.h" 31 #include "net/cert/ct_ev_whitelist.h"
32 #include "net/cert/ct_verifier.h" 32 #include "net/cert/ct_verifier.h"
33 #include "net/cert/single_request_cert_verifier.h" 33 #include "net/cert/single_request_cert_verifier.h"
34 #include "net/cert/x509_certificate_net_log_param.h" 34 #include "net/cert/x509_certificate_net_log_param.h"
35 #include "net/cert/x509_util_openssl.h" 35 #include "net/cert/x509_util_openssl.h"
36 #include "net/http/transport_security_state.h" 36 #include "net/http/transport_security_state.h"
37 #include "net/socket/ssl_session_cache_openssl.h"
38 #include "net/ssl/scoped_openssl_types.h" 37 #include "net/ssl/scoped_openssl_types.h"
39 #include "net/ssl/ssl_cert_request_info.h" 38 #include "net/ssl/ssl_cert_request_info.h"
39 #include "net/ssl/ssl_client_session_cache_openssl.h"
40 #include "net/ssl/ssl_connection_status_flags.h" 40 #include "net/ssl/ssl_connection_status_flags.h"
41 #include "net/ssl/ssl_info.h" 41 #include "net/ssl/ssl_info.h"
42 42
43 #if defined(OS_WIN) 43 #if defined(OS_WIN)
44 #include "base/win/windows_version.h" 44 #include "base/win/windows_version.h"
45 #endif 45 #endif
46 46
47 #if defined(USE_OPENSSL_CERTS) 47 #if defined(USE_OPENSSL_CERTS)
48 #include "net/ssl/openssl_client_key_store.h" 48 #include "net/ssl/openssl_client_key_store.h"
49 #else 49 #else
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 return false; 157 return false;
158 #endif 158 #endif
159 } 159 }
160 160
161 } // namespace 161 } // namespace
162 162
163 class SSLClientSocketOpenSSL::SSLContext { 163 class SSLClientSocketOpenSSL::SSLContext {
164 public: 164 public:
165 static SSLContext* GetInstance() { return Singleton<SSLContext>::get(); } 165 static SSLContext* GetInstance() { return Singleton<SSLContext>::get(); }
166 SSL_CTX* ssl_ctx() { return ssl_ctx_.get(); } 166 SSL_CTX* ssl_ctx() { return ssl_ctx_.get(); }
167 SSLSessionCacheOpenSSL* session_cache() { return &session_cache_; } 167 SSLClientSessionCacheOpenSSL* session_cache() { return &session_cache_; }
168 168
169 SSLClientSocketOpenSSL* GetClientSocketFromSSL(const SSL* ssl) { 169 SSLClientSocketOpenSSL* GetClientSocketFromSSL(const SSL* ssl) {
170 DCHECK(ssl); 170 DCHECK(ssl);
171 SSLClientSocketOpenSSL* socket = static_cast<SSLClientSocketOpenSSL*>( 171 SSLClientSocketOpenSSL* socket = static_cast<SSLClientSocketOpenSSL*>(
172 SSL_get_ex_data(ssl, ssl_socket_data_index_)); 172 SSL_get_ex_data(ssl, ssl_socket_data_index_));
173 DCHECK(socket); 173 DCHECK(socket);
174 return socket; 174 return socket;
175 } 175 }
176 176
177 bool SetClientSocketForSSL(SSL* ssl, SSLClientSocketOpenSSL* socket) { 177 bool SetClientSocketForSSL(SSL* ssl, SSLClientSocketOpenSSL* socket) {
178 return SSL_set_ex_data(ssl, ssl_socket_data_index_, socket) != 0; 178 return SSL_set_ex_data(ssl, ssl_socket_data_index_, socket) != 0;
179 } 179 }
180 180
181 private: 181 private:
182 friend struct DefaultSingletonTraits<SSLContext>; 182 friend struct DefaultSingletonTraits<SSLContext>;
183 183
184 SSLContext() { 184 SSLContext() : session_cache_(SSLClientSessionCacheOpenSSL::Config()) {
185 crypto::EnsureOpenSSLInit(); 185 crypto::EnsureOpenSSLInit();
186 ssl_socket_data_index_ = SSL_get_ex_new_index(0, 0, 0, 0, 0); 186 ssl_socket_data_index_ = SSL_get_ex_new_index(0, 0, 0, 0, 0);
187 DCHECK_NE(ssl_socket_data_index_, -1); 187 DCHECK_NE(ssl_socket_data_index_, -1);
188 ssl_ctx_.reset(SSL_CTX_new(SSLv23_client_method())); 188 ssl_ctx_.reset(SSL_CTX_new(SSLv23_client_method()));
189 session_cache_.Reset(ssl_ctx_.get(), kDefaultSessionCacheConfig);
190 SSL_CTX_set_cert_verify_callback(ssl_ctx_.get(), CertVerifyCallback, NULL); 189 SSL_CTX_set_cert_verify_callback(ssl_ctx_.get(), CertVerifyCallback, NULL);
191 SSL_CTX_set_cert_cb(ssl_ctx_.get(), ClientCertRequestCallback, NULL); 190 SSL_CTX_set_cert_cb(ssl_ctx_.get(), ClientCertRequestCallback, NULL);
192 SSL_CTX_set_verify(ssl_ctx_.get(), SSL_VERIFY_PEER, NULL); 191 SSL_CTX_set_verify(ssl_ctx_.get(), SSL_VERIFY_PEER, NULL);
193 // This stops |SSL_shutdown| from generating the close_notify message, which 192 // This stops |SSL_shutdown| from generating the close_notify message, which
194 // is currently not sent on the network. 193 // is currently not sent on the network.
195 // TODO(haavardm): Remove setting quiet shutdown once 118366 is fixed. 194 // TODO(haavardm): Remove setting quiet shutdown once 118366 is fixed.
196 SSL_CTX_set_quiet_shutdown(ssl_ctx_.get(), 1); 195 SSL_CTX_set_quiet_shutdown(ssl_ctx_.get(), 1);
197 // TODO(kristianm): Only select this if ssl_config_.next_proto is not empty. 196 // TODO(kristianm): Only select this if ssl_config_.next_proto is not empty.
198 // It would be better if the callback were not a global setting, 197 // It would be better if the callback were not a global setting,
199 // but that is an OpenSSL issue. 198 // but that is an OpenSSL issue.
200 SSL_CTX_set_next_proto_select_cb(ssl_ctx_.get(), SelectNextProtoCallback, 199 SSL_CTX_set_next_proto_select_cb(ssl_ctx_.get(), SelectNextProtoCallback,
201 NULL); 200 NULL);
202 ssl_ctx_->tlsext_channel_id_enabled_new = 1; 201 ssl_ctx_->tlsext_channel_id_enabled_new = 1;
202 SSL_CTX_set_info_callback(ssl_ctx_.get(), InfoCallback);
203
204 // Disable the internal session cache. Session caching is handled
205 // externally (i.e. by SSLClientSessionCacheOpenSSL).
206 SSL_CTX_set_session_cache_mode(
207 ssl_ctx_.get(), SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL);
203 208
204 scoped_ptr<base::Environment> env(base::Environment::Create()); 209 scoped_ptr<base::Environment> env(base::Environment::Create());
205 std::string ssl_keylog_file; 210 std::string ssl_keylog_file;
206 if (env->GetVar("SSLKEYLOGFILE", &ssl_keylog_file) && 211 if (env->GetVar("SSLKEYLOGFILE", &ssl_keylog_file) &&
207 !ssl_keylog_file.empty()) { 212 !ssl_keylog_file.empty()) {
208 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); 213 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE);
209 BIO* bio = BIO_new_file(ssl_keylog_file.c_str(), "a"); 214 BIO* bio = BIO_new_file(ssl_keylog_file.c_str(), "a");
210 if (!bio) { 215 if (!bio) {
211 LOG(ERROR) << "Failed to open " << ssl_keylog_file; 216 LOG(ERROR) << "Failed to open " << ssl_keylog_file;
212 ERR_print_errors_cb(&LogErrorCallback, NULL); 217 ERR_print_errors_cb(&LogErrorCallback, NULL);
213 } else { 218 } else {
214 SSL_CTX_set_keylog_bio(ssl_ctx_.get(), bio); 219 SSL_CTX_set_keylog_bio(ssl_ctx_.get(), bio);
215 } 220 }
216 } 221 }
217 } 222 }
218 223
219 static std::string GetSessionCacheKey(const SSL* ssl) {
220 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl);
221 CHECK(socket);
222 return socket->GetSessionCacheKey();
223 }
224
225 static SSLSessionCacheOpenSSL::Config kDefaultSessionCacheConfig;
226
227 static int ClientCertRequestCallback(SSL* ssl, void* arg) { 224 static int ClientCertRequestCallback(SSL* ssl, void* arg) {
228 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl); 225 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl);
229 DCHECK(socket); 226 DCHECK(socket);
230 return socket->ClientCertRequestCallback(ssl); 227 return socket->ClientCertRequestCallback(ssl);
231 } 228 }
232 229
233 static int CertVerifyCallback(X509_STORE_CTX *store_ctx, void *arg) { 230 static int CertVerifyCallback(X509_STORE_CTX *store_ctx, void *arg) {
234 SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data( 231 SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data(
235 store_ctx, SSL_get_ex_data_X509_STORE_CTX_idx())); 232 store_ctx, SSL_get_ex_data_X509_STORE_CTX_idx()));
236 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl); 233 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl);
237 CHECK(socket); 234 CHECK(socket);
238 235
239 return socket->CertVerifyCallback(store_ctx); 236 return socket->CertVerifyCallback(store_ctx);
240 } 237 }
241 238
242 static int SelectNextProtoCallback(SSL* ssl, 239 static int SelectNextProtoCallback(SSL* ssl,
243 unsigned char** out, unsigned char* outlen, 240 unsigned char** out, unsigned char* outlen,
244 const unsigned char* in, 241 const unsigned char* in,
245 unsigned int inlen, void* arg) { 242 unsigned int inlen, void* arg) {
246 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl); 243 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl);
247 return socket->SelectNextProtoCallback(out, outlen, in, inlen); 244 return socket->SelectNextProtoCallback(out, outlen, in, inlen);
248 } 245 }
249 246
247 static void InfoCallback(const SSL* ssl, int type, int val) {
248 SSLClientSocketOpenSSL* socket = GetInstance()->GetClientSocketFromSSL(ssl);
249 socket->InfoCallback(type, val);
250 }
251
250 // This is the index used with SSL_get_ex_data to retrieve the owner 252 // This is the index used with SSL_get_ex_data to retrieve the owner
251 // SSLClientSocketOpenSSL object from an SSL instance. 253 // SSLClientSocketOpenSSL object from an SSL instance.
252 int ssl_socket_data_index_; 254 int ssl_socket_data_index_;
253 255
254 ScopedSSL_CTX ssl_ctx_; 256 ScopedSSL_CTX ssl_ctx_;
255 // |session_cache_| must be destroyed before |ssl_ctx_|. 257
256 SSLSessionCacheOpenSSL session_cache_; 258 // TODO(davidben): Use a separate cache per URLRequestContext.
259 // https://crbug.com/458365
260 //
261 // TODO(davidben): Sessions should be invalidated on fatal
262 // alerts. https://crbug.com/466352
263 SSLClientSessionCacheOpenSSL session_cache_;
257 }; 264 };
258 265
259 // PeerCertificateChain is a helper object which extracts the certificate 266 // PeerCertificateChain is a helper object which extracts the certificate
260 // chain, as given by the server, from an OpenSSL socket and performs the needed 267 // chain, as given by the server, from an OpenSSL socket and performs the needed
261 // resource management. The first element of the chain is the leaf certificate 268 // resource management. The first element of the chain is the leaf certificate
262 // and the other elements are in the order given by the server. 269 // and the other elements are in the order given by the server.
263 class SSLClientSocketOpenSSL::PeerCertificateChain { 270 class SSLClientSocketOpenSSL::PeerCertificateChain {
264 public: 271 public:
265 explicit PeerCertificateChain(STACK_OF(X509)* chain) { Reset(chain); } 272 explicit PeerCertificateChain(STACK_OF(X509)* chain) { Reset(chain); }
266 PeerCertificateChain(const PeerCertificateChain& other) { *this = other; } 273 PeerCertificateChain(const PeerCertificateChain& other) { *this = other; }
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 if (!x509_util::GetDER(x, &der)) 338 if (!x509_util::GetDER(x, &der))
332 return NULL; 339 return NULL;
333 der_chain.push_back(der); 340 der_chain.push_back(der);
334 } 341 }
335 342
336 return make_scoped_refptr(X509Certificate::CreateFromDERCertChain(der_chain)); 343 return make_scoped_refptr(X509Certificate::CreateFromDERCertChain(der_chain));
337 #endif 344 #endif
338 } 345 }
339 346
340 // static 347 // static
341 SSLSessionCacheOpenSSL::Config
342 SSLClientSocketOpenSSL::SSLContext::kDefaultSessionCacheConfig = {
343 &GetSessionCacheKey, // key_func
344 1024, // max_entries
345 256, // expiration_check_count
346 60 * 60, // timeout_seconds
347 };
348
349 // static
350 void SSLClientSocket::ClearSessionCache() { 348 void SSLClientSocket::ClearSessionCache() {
351 SSLClientSocketOpenSSL::SSLContext* context = 349 SSLClientSocketOpenSSL::SSLContext* context =
352 SSLClientSocketOpenSSL::SSLContext::GetInstance(); 350 SSLClientSocketOpenSSL::SSLContext::GetInstance();
353 context->session_cache()->Flush(); 351 context->session_cache()->Flush();
354 } 352 }
355 353
356 // static 354 // static
357 uint16 SSLClientSocket::GetMaxSupportedSSLVersion() { 355 uint16 SSLClientSocket::GetMaxSupportedSSLVersion() {
358 return SSL_PROTOCOL_VERSION_TLS1_2; 356 return SSL_PROTOCOL_VERSION_TLS1_2;
359 } 357 }
(...skipping 15 matching lines...) Expand all
375 client_auth_cert_needed_(false), 373 client_auth_cert_needed_(false),
376 cert_verifier_(context.cert_verifier), 374 cert_verifier_(context.cert_verifier),
377 cert_transparency_verifier_(context.cert_transparency_verifier), 375 cert_transparency_verifier_(context.cert_transparency_verifier),
378 channel_id_service_(context.channel_id_service), 376 channel_id_service_(context.channel_id_service),
379 ssl_(NULL), 377 ssl_(NULL),
380 transport_bio_(NULL), 378 transport_bio_(NULL),
381 transport_(transport_socket.Pass()), 379 transport_(transport_socket.Pass()),
382 host_and_port_(host_and_port), 380 host_and_port_(host_and_port),
383 ssl_config_(ssl_config), 381 ssl_config_(ssl_config),
384 ssl_session_cache_shard_(context.ssl_session_cache_shard), 382 ssl_session_cache_shard_(context.ssl_session_cache_shard),
385 trying_cached_session_(false),
386 next_handshake_state_(STATE_NONE), 383 next_handshake_state_(STATE_NONE),
387 npn_status_(kNextProtoUnsupported), 384 npn_status_(kNextProtoUnsupported),
388 channel_id_xtn_negotiated_(false), 385 channel_id_xtn_negotiated_(false),
386 handshake_completed_(false),
387 certificate_verified_(false),
389 transport_security_state_(context.transport_security_state), 388 transport_security_state_(context.transport_security_state),
390 policy_enforcer_(context.cert_policy_enforcer), 389 policy_enforcer_(context.cert_policy_enforcer),
391 net_log_(transport_->socket()->NetLog()), 390 net_log_(transport_->socket()->NetLog()),
392 weak_factory_(this) { 391 weak_factory_(this) {
393 } 392 }
394 393
395 SSLClientSocketOpenSSL::~SSLClientSocketOpenSSL() { 394 SSLClientSocketOpenSSL::~SSLClientSocketOpenSSL() {
396 Disconnect(); 395 Disconnect();
397 } 396 }
398 397
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 SSLContext* context = SSLContext::GetInstance(); 691 SSLContext* context = SSLContext::GetInstance();
693 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); 692 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE);
694 693
695 ssl_ = SSL_new(context->ssl_ctx()); 694 ssl_ = SSL_new(context->ssl_ctx());
696 if (!ssl_ || !context->SetClientSocketForSSL(ssl_, this)) 695 if (!ssl_ || !context->SetClientSocketForSSL(ssl_, this))
697 return ERR_UNEXPECTED; 696 return ERR_UNEXPECTED;
698 697
699 if (!SSL_set_tlsext_host_name(ssl_, host_and_port_.host().c_str())) 698 if (!SSL_set_tlsext_host_name(ssl_, host_and_port_.host().c_str()))
700 return ERR_UNEXPECTED; 699 return ERR_UNEXPECTED;
701 700
702 trying_cached_session_ = context->session_cache()->SetSSLSessionWithKey( 701 SSL_SESSION* session = context->session_cache()->Lookup(GetSessionCacheKey());
703 ssl_, GetSessionCacheKey()); 702 if (session != nullptr)
703 SSL_set_session(ssl_, session);
704 704
705 send_buffer_ = new GrowableIOBuffer(); 705 send_buffer_ = new GrowableIOBuffer();
706 send_buffer_->SetCapacity(KDefaultOpenSSLBufferSize); 706 send_buffer_->SetCapacity(KDefaultOpenSSLBufferSize);
707 recv_buffer_ = new GrowableIOBuffer(); 707 recv_buffer_ = new GrowableIOBuffer();
708 recv_buffer_->SetCapacity(KDefaultOpenSSLBufferSize); 708 recv_buffer_->SetCapacity(KDefaultOpenSSLBufferSize);
709 709
710 BIO* ssl_bio = NULL; 710 BIO* ssl_bio = NULL;
711 711
712 // SSLClientSocketOpenSSL retains ownership of the BIO buffers. 712 // SSLClientSocketOpenSSL retains ownership of the BIO buffers.
713 if (!BIO_new_bio_pair_external_buf( 713 if (!BIO_new_bio_pair_external_buf(
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 FROM_HERE_WITH_EXPLICIT_FUNCTION("424386 SSL_do_handshake()")); 911 FROM_HERE_WITH_EXPLICIT_FUNCTION("424386 SSL_do_handshake()"));
912 912
913 rv = SSL_do_handshake(ssl_); 913 rv = SSL_do_handshake(ssl_);
914 } else { 914 } else {
915 g_first_run_completed.Get().Set(true); 915 g_first_run_completed.Get().Set(true);
916 rv = SSL_do_handshake(ssl_); 916 rv = SSL_do_handshake(ssl_);
917 } 917 }
918 } 918 }
919 919
920 if (rv == 1) { 920 if (rv == 1) {
921 if (trying_cached_session_ && logging::DEBUG_MODE) {
922 DVLOG(2) << "Result of session reuse for " << host_and_port_.ToString()
923 << " is: " << (SSL_session_reused(ssl_) ? "Success" : "Fail");
924 }
925
926 if (ssl_config_.version_fallback && 921 if (ssl_config_.version_fallback &&
927 ssl_config_.version_max < ssl_config_.version_fallback_min) { 922 ssl_config_.version_max < ssl_config_.version_fallback_min) {
928 return ERR_SSL_FALLBACK_BEYOND_MINIMUM_VERSION; 923 return ERR_SSL_FALLBACK_BEYOND_MINIMUM_VERSION;
929 } 924 }
930 925
931 // SSL handshake is completed. If NPN wasn't negotiated, see if ALPN was. 926 // SSL handshake is completed. If NPN wasn't negotiated, see if ALPN was.
932 if (npn_status_ == kNextProtoUnsupported) { 927 if (npn_status_ == kNextProtoUnsupported) {
933 const uint8_t* alpn_proto = NULL; 928 const uint8_t* alpn_proto = NULL;
934 unsigned alpn_len = 0; 929 unsigned alpn_len = 0;
935 SSL_get0_alpn_selected(ssl_, &alpn_proto, &alpn_len); 930 SSL_get0_alpn_selected(ssl_, &alpn_proto, &alpn_len);
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 server_cert_verify_result_.public_key_hashes, 1133 server_cert_verify_result_.public_key_hashes,
1139 &pinning_failure_log_)) { 1134 &pinning_failure_log_)) {
1140 result = ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN; 1135 result = ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN;
1141 } 1136 }
1142 1137
1143 if (result == OK) { 1138 if (result == OK) {
1144 // Only check Certificate Transparency if there were no other errors with 1139 // Only check Certificate Transparency if there were no other errors with
1145 // the connection. 1140 // the connection.
1146 VerifyCT(); 1141 VerifyCT();
1147 1142
1148 // TODO(joth): Work out if we need to remember the intermediate CA certs 1143 DCHECK(!certificate_verified_);
1149 // when the server sends them to us, and do so here. 1144 certificate_verified_ = true;
1150 SSLContext::GetInstance()->session_cache()->MarkSSLSessionAsGood(ssl_); 1145 MaybeCacheSession();
1151 } else { 1146 } else {
1152 DVLOG(1) << "DoVerifyCertComplete error " << ErrorToString(result) 1147 DVLOG(1) << "DoVerifyCertComplete error " << ErrorToString(result)
1153 << " (" << result << ")"; 1148 << " (" << result << ")";
1154 } 1149 }
1155 1150
1156 completed_connect_ = true; 1151 completed_connect_ = true;
1157 // Exit DoHandshakeLoop and return the result to the caller to Connect. 1152 // Exit DoHandshakeLoop and return the result to the caller to Connect.
1158 DCHECK_EQ(STATE_NONE, next_handshake_state_); 1153 DCHECK_EQ(STATE_NONE, next_handshake_state_);
1159 return result; 1154 return result;
1160 } 1155 }
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
1835 int cmd, 1830 int cmd,
1836 const char *argp, int argi, long argl, 1831 const char *argp, int argi, long argl,
1837 long retvalue) { 1832 long retvalue) {
1838 SSLClientSocketOpenSSL* socket = reinterpret_cast<SSLClientSocketOpenSSL*>( 1833 SSLClientSocketOpenSSL* socket = reinterpret_cast<SSLClientSocketOpenSSL*>(
1839 BIO_get_callback_arg(bio)); 1834 BIO_get_callback_arg(bio));
1840 CHECK(socket); 1835 CHECK(socket);
1841 return socket->MaybeReplayTransportError( 1836 return socket->MaybeReplayTransportError(
1842 bio, cmd, argp, argi, argl, retvalue); 1837 bio, cmd, argp, argi, argl, retvalue);
1843 } 1838 }
1844 1839
1840 void SSLClientSocketOpenSSL::MaybeCacheSession() {
1841 // Only cache the session once both the handshake has completed and the
1842 // certificate has been verified.
1843 if (!handshake_completed_ || !certificate_verified_ ||
1844 SSL_session_reused(ssl_)) {
1845 return;
1846 }
1847
1848 SSLContext::GetInstance()->session_cache()->Insert(GetSessionCacheKey(),
1849 SSL_get_session(ssl_));
1850 }
1851
1852 void SSLClientSocketOpenSSL::InfoCallback(int type, int val) {
1853 // Note that SSL_CB_HANDSHAKE_DONE may be signaled multiple times if the
1854 // socket renegotiates.
1855 if (type != SSL_CB_HANDSHAKE_DONE || handshake_completed_)
1856 return;
1857
1858 handshake_completed_ = true;
1859 MaybeCacheSession();
1860 }
1861
1845 void SSLClientSocketOpenSSL::AddSCTInfoToSSLInfo(SSLInfo* ssl_info) const { 1862 void SSLClientSocketOpenSSL::AddSCTInfoToSSLInfo(SSLInfo* ssl_info) const {
1846 for (ct::SCTList::const_iterator iter = 1863 for (ct::SCTList::const_iterator iter =
1847 ct_verify_result_.verified_scts.begin(); 1864 ct_verify_result_.verified_scts.begin();
1848 iter != ct_verify_result_.verified_scts.end(); ++iter) { 1865 iter != ct_verify_result_.verified_scts.end(); ++iter) {
1849 ssl_info->signed_certificate_timestamps.push_back( 1866 ssl_info->signed_certificate_timestamps.push_back(
1850 SignedCertificateTimestampAndStatus(*iter, ct::SCT_STATUS_OK)); 1867 SignedCertificateTimestampAndStatus(*iter, ct::SCT_STATUS_OK));
1851 } 1868 }
1852 for (ct::SCTList::const_iterator iter = 1869 for (ct::SCTList::const_iterator iter =
1853 ct_verify_result_.invalid_scts.begin(); 1870 ct_verify_result_.invalid_scts.begin();
1854 iter != ct_verify_result_.invalid_scts.end(); ++iter) { 1871 iter != ct_verify_result_.invalid_scts.end(); ++iter) {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
1895 1912
1896 return result; 1913 return result;
1897 } 1914 }
1898 1915
1899 scoped_refptr<X509Certificate> 1916 scoped_refptr<X509Certificate>
1900 SSLClientSocketOpenSSL::GetUnverifiedServerCertificateChain() const { 1917 SSLClientSocketOpenSSL::GetUnverifiedServerCertificateChain() const {
1901 return server_cert_; 1918 return server_cert_;
1902 } 1919 }
1903 1920
1904 } // namespace net 1921 } // namespace net
OLDNEW
« no previous file with comments | « net/socket/ssl_client_socket_openssl.h ('k') | net/socket/ssl_client_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698