blob: 2fd77797ddedbec89d2ca0105adc8e3d6302f2f4 [file] [log] [blame]
[email protected]e34400c32012-01-24 02:49:331// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]e60e47a2010-07-14 03:37:182// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "net/socket/ssl_client_socket_pool.h"
6
[email protected]6ecf2b92011-12-15 01:14:527#include "base/bind.h"
8#include "base/bind_helpers.h"
[email protected]c63248d42011-02-18 17:54:399#include "base/metrics/field_trial.h"
[email protected]835d7c82010-10-14 04:38:3810#include "base/metrics/histogram.h"
[email protected]92a31242013-06-28 18:08:0811#include "base/metrics/sparse_histogram.h"
[email protected]ba00b492010-09-08 14:53:3812#include "base/values.h"
[email protected]4f4de7e62010-11-12 19:55:2713#include "net/base/host_port_pair.h"
[email protected]536fd0b2013-03-14 17:41:5714#include "net/base/net_errors.h"
[email protected]33b511c2010-08-11 00:04:4315#include "net/http/http_proxy_client_socket.h"
16#include "net/http/http_proxy_client_socket_pool.h"
[email protected]e60e47a2010-07-14 03:37:1817#include "net/socket/client_socket_factory.h"
18#include "net/socket/client_socket_handle.h"
[email protected]33b511c2010-08-11 00:04:4319#include "net/socket/socks_client_socket_pool.h"
20#include "net/socket/ssl_client_socket.h"
[email protected]ab739042011-04-07 15:22:2821#include "net/socket/transport_client_socket_pool.h"
[email protected]536fd0b2013-03-14 17:41:5722#include "net/ssl/ssl_cert_request_info.h"
[email protected]92a31242013-06-28 18:08:0823#include "net/ssl/ssl_connection_status_flags.h"
24#include "net/ssl/ssl_info.h"
[email protected]e60e47a2010-07-14 03:37:1825
26namespace net {
27
28SSLSocketParams::SSLSocketParams(
[email protected]ea79ba92013-08-15 21:56:2029 const scoped_refptr<TransportSocketParams>& direct_params,
30 const scoped_refptr<SOCKSSocketParams>& socks_proxy_params,
[email protected]2431756e2010-09-29 20:26:1331 const scoped_refptr<HttpProxySocketParams>& http_proxy_params,
[email protected]4f4de7e62010-11-12 19:55:2732 const HostPortPair& host_and_port,
[email protected]e60e47a2010-07-14 03:37:1833 const SSLConfig& ssl_config,
[email protected]5e5021a2013-07-17 05:23:3634 PrivacyMode privacy_mode,
[email protected]e60e47a2010-07-14 03:37:1835 int load_flags,
[email protected]9e9e842e2010-07-23 23:09:1536 bool force_spdy_over_ssl,
37 bool want_spdy_over_npn)
[email protected]ea79ba92013-08-15 21:56:2038 : direct_params_(direct_params),
39 socks_proxy_params_(socks_proxy_params),
[email protected]e60e47a2010-07-14 03:37:1840 http_proxy_params_(http_proxy_params),
[email protected]4f4de7e62010-11-12 19:55:2741 host_and_port_(host_and_port),
[email protected]e60e47a2010-07-14 03:37:1842 ssl_config_(ssl_config),
[email protected]5e5021a2013-07-17 05:23:3643 privacy_mode_(privacy_mode),
[email protected]e60e47a2010-07-14 03:37:1844 load_flags_(load_flags),
[email protected]9e9e842e2010-07-23 23:09:1545 force_spdy_over_ssl_(force_spdy_over_ssl),
[email protected]0e14e87d2011-06-21 21:24:1946 want_spdy_over_npn_(want_spdy_over_npn),
47 ignore_limits_(false) {
[email protected]ea79ba92013-08-15 21:56:2048 if (direct_params_) {
49 DCHECK(!socks_proxy_params_);
50 DCHECK(!http_proxy_params_);
51 ignore_limits_ = direct_params_->ignore_limits();
52 } else if (socks_proxy_params_) {
53 DCHECK(!http_proxy_params_);
54 ignore_limits_ = socks_proxy_params_->ignore_limits();
55 } else {
56 DCHECK(http_proxy_params_);
57 ignore_limits_ = http_proxy_params_->ignore_limits();
[email protected]e60e47a2010-07-14 03:37:1858 }
59}
60
61SSLSocketParams::~SSLSocketParams() {}
62
[email protected]ea79ba92013-08-15 21:56:2063SSLSocketParams::ConnectionType SSLSocketParams::GetConnectionType() const {
64 if (direct_params_) {
65 DCHECK(!socks_proxy_params_);
66 DCHECK(!http_proxy_params_);
67 return DIRECT;
68 }
69
70 if (socks_proxy_params_) {
71 DCHECK(!http_proxy_params_);
72 return SOCKS_PROXY;
73 }
74
75 DCHECK(http_proxy_params_);
76 return HTTP_PROXY;
77}
78
79const scoped_refptr<TransportSocketParams>&
80SSLSocketParams::GetDirectConnectionParams() const {
81 DCHECK_EQ(GetConnectionType(), DIRECT);
82 return direct_params_;
83}
84
85const scoped_refptr<SOCKSSocketParams>&
86SSLSocketParams::GetSocksProxyConnectionParams() const {
87 DCHECK_EQ(GetConnectionType(), SOCKS_PROXY);
88 return socks_proxy_params_;
89}
90
91const scoped_refptr<HttpProxySocketParams>&
92SSLSocketParams::GetHttpProxyConnectionParams() const {
93 DCHECK_EQ(GetConnectionType(), HTTP_PROXY);
94 return http_proxy_params_;
95}
96
[email protected]e60e47a2010-07-14 03:37:1897// Timeout for the SSL handshake portion of the connect.
98static const int kSSLHandshakeTimeoutInSeconds = 30;
99
[email protected]feb79bcd2011-07-21 16:55:17100SSLConnectJob::SSLConnectJob(const std::string& group_name,
[email protected]3f6007ab2013-08-22 19:45:39101 RequestPriority priority,
[email protected]feb79bcd2011-07-21 16:55:17102 const scoped_refptr<SSLSocketParams>& params,
103 const base::TimeDelta& timeout_duration,
104 TransportClientSocketPool* transport_pool,
105 SOCKSClientSocketPool* socks_pool,
106 HttpProxyClientSocketPool* http_proxy_pool,
107 ClientSocketFactory* client_socket_factory,
108 HostResolver* host_resolver,
109 const SSLClientSocketContext& context,
110 Delegate* delegate,
111 NetLog* net_log)
[email protected]5e5021a2013-07-17 05:23:36112 : ConnectJob(group_name,
113 timeout_duration,
[email protected]3f6007ab2013-08-22 19:45:39114 priority,
[email protected]5e5021a2013-07-17 05:23:36115 delegate,
[email protected]e60e47a2010-07-14 03:37:18116 BoundNetLog::Make(net_log, NetLog::SOURCE_CONNECT_JOB)),
117 params_(params),
[email protected]ab739042011-04-07 15:22:28118 transport_pool_(transport_pool),
[email protected]e60e47a2010-07-14 03:37:18119 socks_pool_(socks_pool),
[email protected]2431756e2010-09-29 20:26:13120 http_proxy_pool_(http_proxy_pool),
[email protected]e60e47a2010-07-14 03:37:18121 client_socket_factory_(client_socket_factory),
[email protected]822581d2010-12-16 17:27:15122 host_resolver_(host_resolver),
[email protected]5e5021a2013-07-17 05:23:36123 context_(context.cert_verifier,
[email protected]6b8a3c742014-07-25 00:25:35124 context.channel_id_service,
[email protected]5e5021a2013-07-17 05:23:36125 context.transport_security_state,
[email protected]284303b62013-11-28 15:11:54126 context.cert_transparency_verifier,
[email protected]314b03992014-04-01 01:28:53127 (params->privacy_mode() == PRIVACY_MODE_ENABLED
[email protected]5e5021a2013-07-17 05:23:36128 ? "pm/" + context.ssl_session_cache_shard
129 : context.ssl_session_cache_shard)),
[email protected]aa249b52013-04-30 01:04:32130 callback_(base::Bind(&SSLConnectJob::OnIOComplete,
131 base::Unretained(this))) {}
[email protected]e60e47a2010-07-14 03:37:18132
133SSLConnectJob::~SSLConnectJob() {}
134
135LoadState SSLConnectJob::GetLoadState() const {
136 switch (next_state_) {
[email protected]135e2262010-07-17 00:32:04137 case STATE_TUNNEL_CONNECT_COMPLETE:
138 if (transport_socket_handle_->socket())
139 return LOAD_STATE_ESTABLISHING_PROXY_TUNNEL;
140 // else, fall through.
[email protected]ab739042011-04-07 15:22:28141 case STATE_TRANSPORT_CONNECT:
142 case STATE_TRANSPORT_CONNECT_COMPLETE:
[email protected]e60e47a2010-07-14 03:37:18143 case STATE_SOCKS_CONNECT:
144 case STATE_SOCKS_CONNECT_COMPLETE:
145 case STATE_TUNNEL_CONNECT:
[email protected]e60e47a2010-07-14 03:37:18146 return transport_socket_handle_->GetLoadState();
147 case STATE_SSL_CONNECT:
148 case STATE_SSL_CONNECT_COMPLETE:
149 return LOAD_STATE_SSL_HANDSHAKE;
150 default:
151 NOTREACHED();
152 return LOAD_STATE_IDLE;
153 }
154}
155
[email protected]83039bb2011-12-09 18:43:55156void SSLConnectJob::GetAdditionalErrorState(ClientSocketHandle* handle) {
[email protected]ad74a592011-01-21 18:40:55157 // Headers in |error_response_info_| indicate a proxy tunnel setup
158 // problem. See DoTunnelConnectComplete.
[email protected]90499482013-06-01 00:39:50159 if (error_response_info_.headers.get()) {
[email protected]ad74a592011-01-21 18:40:55160 handle->set_pending_http_proxy_connection(
161 transport_socket_handle_.release());
[email protected]e60e47a2010-07-14 03:37:18162 }
[email protected]ad74a592011-01-21 18:40:55163 handle->set_ssl_error_response_info(error_response_info_);
[email protected]034df0f32013-01-07 23:17:48164 if (!connect_timing_.ssl_start.is_null())
[email protected]ad74a592011-01-21 18:40:55165 handle->set_is_ssl_error(true);
[email protected]e60e47a2010-07-14 03:37:18166}
167
168void SSLConnectJob::OnIOComplete(int result) {
169 int rv = DoLoop(result);
170 if (rv != ERR_IO_PENDING)
171 NotifyDelegateOfCompletion(rv); // Deletes |this|.
172}
173
174int SSLConnectJob::DoLoop(int result) {
175 DCHECK_NE(next_state_, STATE_NONE);
176
177 int rv = result;
178 do {
179 State state = next_state_;
180 next_state_ = STATE_NONE;
181 switch (state) {
[email protected]ab739042011-04-07 15:22:28182 case STATE_TRANSPORT_CONNECT:
[email protected]e60e47a2010-07-14 03:37:18183 DCHECK_EQ(OK, rv);
[email protected]ab739042011-04-07 15:22:28184 rv = DoTransportConnect();
[email protected]e60e47a2010-07-14 03:37:18185 break;
[email protected]ab739042011-04-07 15:22:28186 case STATE_TRANSPORT_CONNECT_COMPLETE:
187 rv = DoTransportConnectComplete(rv);
[email protected]e60e47a2010-07-14 03:37:18188 break;
189 case STATE_SOCKS_CONNECT:
190 DCHECK_EQ(OK, rv);
191 rv = DoSOCKSConnect();
192 break;
193 case STATE_SOCKS_CONNECT_COMPLETE:
194 rv = DoSOCKSConnectComplete(rv);
195 break;
196 case STATE_TUNNEL_CONNECT:
197 DCHECK_EQ(OK, rv);
198 rv = DoTunnelConnect();
199 break;
200 case STATE_TUNNEL_CONNECT_COMPLETE:
201 rv = DoTunnelConnectComplete(rv);
202 break;
203 case STATE_SSL_CONNECT:
204 DCHECK_EQ(OK, rv);
205 rv = DoSSLConnect();
206 break;
207 case STATE_SSL_CONNECT_COMPLETE:
208 rv = DoSSLConnectComplete(rv);
209 break;
210 default:
211 NOTREACHED() << "bad state";
212 rv = ERR_FAILED;
213 break;
214 }
215 } while (rv != ERR_IO_PENDING && next_state_ != STATE_NONE);
216
217 return rv;
218}
219
[email protected]ab739042011-04-07 15:22:28220int SSLConnectJob::DoTransportConnect() {
221 DCHECK(transport_pool_);
[email protected]899c3e92010-08-28 15:53:50222
[email protected]ab739042011-04-07 15:22:28223 next_state_ = STATE_TRANSPORT_CONNECT_COMPLETE;
[email protected]e60e47a2010-07-14 03:37:18224 transport_socket_handle_.reset(new ClientSocketHandle());
[email protected]ea79ba92013-08-15 21:56:20225 scoped_refptr<TransportSocketParams> direct_params =
226 params_->GetDirectConnectionParams();
[email protected]5109c1952013-08-20 18:44:10227 return transport_socket_handle_->Init(group_name(),
228 direct_params,
[email protected]3f6007ab2013-08-22 19:45:39229 priority(),
[email protected]5109c1952013-08-20 18:44:10230 callback_,
231 transport_pool_,
232 net_log());
[email protected]e60e47a2010-07-14 03:37:18233}
234
[email protected]ab739042011-04-07 15:22:28235int SSLConnectJob::DoTransportConnectComplete(int result) {
[email protected]e60e47a2010-07-14 03:37:18236 if (result == OK)
237 next_state_ = STATE_SSL_CONNECT;
238
239 return result;
240}
241
242int SSLConnectJob::DoSOCKSConnect() {
[email protected]2431756e2010-09-29 20:26:13243 DCHECK(socks_pool_);
[email protected]e60e47a2010-07-14 03:37:18244 next_state_ = STATE_SOCKS_CONNECT_COMPLETE;
245 transport_socket_handle_.reset(new ClientSocketHandle());
[email protected]ea79ba92013-08-15 21:56:20246 scoped_refptr<SOCKSSocketParams> socks_proxy_params =
247 params_->GetSocksProxyConnectionParams();
[email protected]5109c1952013-08-20 18:44:10248 return transport_socket_handle_->Init(group_name(),
249 socks_proxy_params,
[email protected]3f6007ab2013-08-22 19:45:39250 priority(),
[email protected]5109c1952013-08-20 18:44:10251 callback_,
252 socks_pool_,
253 net_log());
[email protected]e60e47a2010-07-14 03:37:18254}
255
256int SSLConnectJob::DoSOCKSConnectComplete(int result) {
257 if (result == OK)
258 next_state_ = STATE_SSL_CONNECT;
259
260 return result;
261}
262
263int SSLConnectJob::DoTunnelConnect() {
[email protected]2431756e2010-09-29 20:26:13264 DCHECK(http_proxy_pool_);
[email protected]e60e47a2010-07-14 03:37:18265 next_state_ = STATE_TUNNEL_CONNECT_COMPLETE;
[email protected]394816e92010-08-03 07:38:59266
[email protected]e60e47a2010-07-14 03:37:18267 transport_socket_handle_.reset(new ClientSocketHandle());
268 scoped_refptr<HttpProxySocketParams> http_proxy_params =
[email protected]ea79ba92013-08-15 21:56:20269 params_->GetHttpProxyConnectionParams();
[email protected]5109c1952013-08-20 18:44:10270 return transport_socket_handle_->Init(group_name(),
271 http_proxy_params,
[email protected]3f6007ab2013-08-22 19:45:39272 priority(),
[email protected]5109c1952013-08-20 18:44:10273 callback_,
274 http_proxy_pool_,
275 net_log());
[email protected]e60e47a2010-07-14 03:37:18276}
277
278int SSLConnectJob::DoTunnelConnectComplete(int result) {
[email protected]4f4de7e62010-11-12 19:55:27279 // Extract the information needed to prompt for appropriate proxy
280 // authentication so that when ClientSocketPoolBaseHelper calls
281 // |GetAdditionalErrorState|, we can easily set the state.
282 if (result == ERR_SSL_CLIENT_AUTH_CERT_NEEDED) {
283 error_response_info_ = transport_socket_handle_->ssl_error_response_info();
[email protected]511f6f52010-12-17 03:58:29284 } else if (result == ERR_PROXY_AUTH_REQUESTED ||
285 result == ERR_HTTPS_PROXY_TUNNEL_RESPONSE) {
[email protected]3268023f2011-05-05 00:08:10286 StreamSocket* socket = transport_socket_handle_->socket();
[email protected]fe3b7dc2012-02-03 19:52:09287 HttpProxyClientSocket* tunnel_socket =
288 static_cast<HttpProxyClientSocket*>(socket);
[email protected]511f6f52010-12-17 03:58:29289 error_response_info_ = *tunnel_socket->GetConnectResponseInfo();
[email protected]4f4de7e62010-11-12 19:55:27290 }
[email protected]e60e47a2010-07-14 03:37:18291 if (result < 0)
292 return result;
293
[email protected]e60e47a2010-07-14 03:37:18294 next_state_ = STATE_SSL_CONNECT;
295 return result;
296}
297
[email protected]e60e47a2010-07-14 03:37:18298int SSLConnectJob::DoSSLConnect() {
299 next_state_ = STATE_SSL_CONNECT_COMPLETE;
300 // Reset the timeout to just the time allowed for the SSL handshake.
301 ResetTimer(base::TimeDelta::FromSeconds(kSSLHandshakeTimeoutInSeconds));
[email protected]034df0f32013-01-07 23:17:48302
303 // If the handle has a fresh socket, get its connect start and DNS times.
304 // This should always be the case.
305 const LoadTimingInfo::ConnectTiming& socket_connect_timing =
306 transport_socket_handle_->connect_timing();
307 if (!transport_socket_handle_->is_reused() &&
308 !socket_connect_timing.connect_start.is_null()) {
309 // Overwriting |connect_start| serves two purposes - it adjusts timing so
310 // |connect_start| doesn't include dns times, and it adjusts the time so
311 // as not to include time spent waiting for an idle socket.
312 connect_timing_.connect_start = socket_connect_timing.connect_start;
313 connect_timing_.dns_start = socket_connect_timing.dns_start;
314 connect_timing_.dns_end = socket_connect_timing.dns_end;
315 }
316
317 connect_timing_.ssl_start = base::TimeTicks::Now();
[email protected]e60e47a2010-07-14 03:37:18318
[email protected]18ccfdb2013-08-15 00:13:44319 ssl_socket_ = client_socket_factory_->CreateSSLClientSocket(
320 transport_socket_handle_.Pass(),
[email protected]5e5021a2013-07-17 05:23:36321 params_->host_and_port(),
322 params_->ssl_config(),
[email protected]18ccfdb2013-08-15 00:13:44323 context_);
[email protected]83039bb2011-12-09 18:43:55324 return ssl_socket_->Connect(callback_);
[email protected]e60e47a2010-07-14 03:37:18325}
326
327int SSLConnectJob::DoSSLConnectComplete(int result) {
[email protected]034df0f32013-01-07 23:17:48328 connect_timing_.ssl_end = base::TimeTicks::Now();
329
[email protected]e60e47a2010-07-14 03:37:18330 SSLClientSocket::NextProtoStatus status =
331 SSLClientSocket::kNextProtoUnsupported;
332 std::string proto;
[email protected]55e973d2011-12-05 23:03:24333 std::string server_protos;
[email protected]e60e47a2010-07-14 03:37:18334 // GetNextProto will fail and and trigger a NOTREACHED if we pass in a socket
335 // that hasn't had SSL_ImportFD called on it. If we get a certificate error
336 // here, then we know that we called SSL_ImportFD.
337 if (result == OK || IsCertificateError(result))
[email protected]55e973d2011-12-05 23:03:24338 status = ssl_socket_->GetNextProto(&proto, &server_protos);
[email protected]e60e47a2010-07-14 03:37:18339
[email protected]9e9e842e2010-07-23 23:09:15340 // If we want spdy over npn, make sure it succeeded.
[email protected]e60e47a2010-07-14 03:37:18341 if (status == SSLClientSocket::kNextProtoNegotiated) {
[email protected]d7c9f422010-08-27 22:54:53342 ssl_socket_->set_was_npn_negotiated(true);
[email protected]8e3c78cb2012-03-31 03:58:46343 NextProto protocol_negotiated =
[email protected]bace48c2010-08-03 20:52:02344 SSLClientSocket::NextProtoFromString(proto);
[email protected]c30bcce2011-12-20 17:50:51345 ssl_socket_->set_protocol_negotiated(protocol_negotiated);
[email protected]63bf9662013-03-05 20:46:01346 // If we negotiated a SPDY version, it must have been present in
347 // SSLConfig::next_protos.
348 // TODO(mbelshe): Verify this.
349 if (protocol_negotiated >= kProtoSPDYMinimumVersion &&
350 protocol_negotiated <= kProtoSPDYMaximumVersion) {
[email protected]d7c9f422010-08-27 22:54:53351 ssl_socket_->set_was_spdy_negotiated(true);
[email protected]e60e47a2010-07-14 03:37:18352 }
353 }
[email protected]d7c9f422010-08-27 22:54:53354 if (params_->want_spdy_over_npn() && !ssl_socket_->was_spdy_negotiated())
[email protected]e60e47a2010-07-14 03:37:18355 return ERR_NPN_NEGOTIATION_FAILED;
356
[email protected]9e9e842e2010-07-23 23:09:15357 // Spdy might be turned on by default, or it might be over npn.
358 bool using_spdy = params_->force_spdy_over_ssl() ||
359 params_->want_spdy_over_npn();
360
[email protected]e60e47a2010-07-14 03:37:18361 if (result == OK ||
362 ssl_socket_->IgnoreCertError(result, params_->load_flags())) {
[email protected]034df0f32013-01-07 23:17:48363 DCHECK(!connect_timing_.ssl_start.is_null());
[email protected]e60e47a2010-07-14 03:37:18364 base::TimeDelta connect_duration =
[email protected]034df0f32013-01-07 23:17:48365 connect_timing_.ssl_end - connect_timing_.ssl_start;
[email protected]835d7c82010-10-14 04:38:38366 if (using_spdy) {
[email protected]847276962013-03-08 23:53:17367 UMA_HISTOGRAM_CUSTOM_TIMES("Net.SpdyConnectionLatency_2",
[email protected]e60e47a2010-07-14 03:37:18368 connect_duration,
369 base::TimeDelta::FromMilliseconds(1),
[email protected]847276962013-03-08 23:53:17370 base::TimeDelta::FromMinutes(1),
[email protected]e60e47a2010-07-14 03:37:18371 100);
[email protected]f906bfe2011-06-09 16:35:24372 }
[email protected]17ed3b82013-07-12 19:21:26373#if defined(SPDY_PROXY_AUTH_ORIGIN)
374 bool using_data_reduction_proxy = params_->host_and_port().Equals(
375 HostPortPair::FromURL(GURL(SPDY_PROXY_AUTH_ORIGIN)));
376 if (using_data_reduction_proxy) {
377 UMA_HISTOGRAM_CUSTOM_TIMES(
378 "Net.SSL_Connection_Latency_DataReductionProxy",
379 connect_duration,
380 base::TimeDelta::FromMilliseconds(1),
381 base::TimeDelta::FromMinutes(1),
382 100);
383 }
384#endif
[email protected]f906bfe2011-06-09 16:35:24385
[email protected]847276962013-03-08 23:53:17386 UMA_HISTOGRAM_CUSTOM_TIMES("Net.SSL_Connection_Latency_2",
[email protected]f906bfe2011-06-09 16:35:24387 connect_duration,
388 base::TimeDelta::FromMilliseconds(1),
[email protected]847276962013-03-08 23:53:17389 base::TimeDelta::FromMinutes(1),
[email protected]f906bfe2011-06-09 16:35:24390 100);
391
[email protected]b076d6c2011-06-29 14:47:51392 SSLInfo ssl_info;
393 ssl_socket_->GetSSLInfo(&ssl_info);
394
[email protected]92a31242013-06-28 18:08:08395 UMA_HISTOGRAM_SPARSE_SLOWLY("Net.SSL_CipherSuite",
396 SSLConnectionStatusToCipherSuite(
397 ssl_info.connection_status));
398
[email protected]b076d6c2011-06-29 14:47:51399 if (ssl_info.handshake_type == SSLInfo::HANDSHAKE_RESUME) {
400 UMA_HISTOGRAM_CUSTOM_TIMES("Net.SSL_Connection_Latency_Resume_Handshake",
401 connect_duration,
402 base::TimeDelta::FromMilliseconds(1),
403 base::TimeDelta::FromMinutes(1),
404 100);
405 } else if (ssl_info.handshake_type == SSLInfo::HANDSHAKE_FULL) {
406 UMA_HISTOGRAM_CUSTOM_TIMES("Net.SSL_Connection_Latency_Full_Handshake",
407 connect_duration,
408 base::TimeDelta::FromMilliseconds(1),
409 base::TimeDelta::FromMinutes(1),
410 100);
411 }
412
[email protected]f906bfe2011-06-09 16:35:24413 const std::string& host = params_->host_and_port().host();
414 bool is_google = host == "google.com" ||
415 (host.size() > 11 &&
416 host.rfind(".google.com") == host.size() - 11);
417 if (is_google) {
[email protected]847276962013-03-08 23:53:17418 UMA_HISTOGRAM_CUSTOM_TIMES("Net.SSL_Connection_Latency_Google2",
[email protected]e60e47a2010-07-14 03:37:18419 connect_duration,
420 base::TimeDelta::FromMilliseconds(1),
[email protected]847276962013-03-08 23:53:17421 base::TimeDelta::FromMinutes(1),
[email protected]e60e47a2010-07-14 03:37:18422 100);
[email protected]b076d6c2011-06-29 14:47:51423 if (ssl_info.handshake_type == SSLInfo::HANDSHAKE_RESUME) {
424 UMA_HISTOGRAM_CUSTOM_TIMES("Net.SSL_Connection_Latency_Google_"
425 "Resume_Handshake",
426 connect_duration,
427 base::TimeDelta::FromMilliseconds(1),
428 base::TimeDelta::FromMinutes(1),
429 100);
430 } else if (ssl_info.handshake_type == SSLInfo::HANDSHAKE_FULL) {
431 UMA_HISTOGRAM_CUSTOM_TIMES("Net.SSL_Connection_Latency_Google_"
432 "Full_Handshake",
433 connect_duration,
434 base::TimeDelta::FromMilliseconds(1),
435 base::TimeDelta::FromMinutes(1),
436 100);
437 }
[email protected]835d7c82010-10-14 04:38:38438 }
[email protected]e60e47a2010-07-14 03:37:18439 }
[email protected]8b498692010-07-16 17:11:43440
441 if (result == OK || IsCertificateError(result)) {
[email protected]18ccfdb2013-08-15 00:13:44442 SetSocket(ssl_socket_.PassAs<StreamSocket>());
[email protected]8b498692010-07-16 17:11:43443 } else if (result == ERR_SSL_CLIENT_AUTH_CERT_NEEDED) {
444 error_response_info_.cert_request_info = new SSLCertRequestInfo;
[email protected]90499482013-06-01 00:39:50445 ssl_socket_->GetSSLCertRequestInfo(
446 error_response_info_.cert_request_info.get());
[email protected]8b498692010-07-16 17:11:43447 }
[email protected]e60e47a2010-07-14 03:37:18448
449 return result;
450}
451
[email protected]ea79ba92013-08-15 21:56:20452SSLConnectJob::State SSLConnectJob::GetInitialState(
453 SSLSocketParams::ConnectionType connection_type) {
454 switch (connection_type) {
455 case SSLSocketParams::DIRECT:
456 return STATE_TRANSPORT_CONNECT;
457 case SSLSocketParams::HTTP_PROXY:
458 return STATE_TUNNEL_CONNECT;
459 case SSLSocketParams::SOCKS_PROXY:
460 return STATE_SOCKS_CONNECT;
[email protected]ad74a592011-01-21 18:40:55461 }
[email protected]ea79ba92013-08-15 21:56:20462 NOTREACHED();
463 return STATE_NONE;
464}
465
466int SSLConnectJob::ConnectInternal() {
467 next_state_ = GetInitialState(params_->GetConnectionType());
[email protected]ad74a592011-01-21 18:40:55468 return DoLoop(OK);
[email protected]e60e47a2010-07-14 03:37:18469}
470
471SSLClientSocketPool::SSLConnectJobFactory::SSLConnectJobFactory(
[email protected]ab739042011-04-07 15:22:28472 TransportClientSocketPool* transport_pool,
[email protected]2431756e2010-09-29 20:26:13473 SOCKSClientSocketPool* socks_pool,
474 HttpProxyClientSocketPool* http_proxy_pool,
[email protected]e60e47a2010-07-14 03:37:18475 ClientSocketFactory* client_socket_factory,
476 HostResolver* host_resolver,
[email protected]feb79bcd2011-07-21 16:55:17477 const SSLClientSocketContext& context,
[email protected]e60e47a2010-07-14 03:37:18478 NetLog* net_log)
[email protected]ab739042011-04-07 15:22:28479 : transport_pool_(transport_pool),
[email protected]e60e47a2010-07-14 03:37:18480 socks_pool_(socks_pool),
[email protected]2431756e2010-09-29 20:26:13481 http_proxy_pool_(http_proxy_pool),
[email protected]e60e47a2010-07-14 03:37:18482 client_socket_factory_(client_socket_factory),
483 host_resolver_(host_resolver),
[email protected]feb79bcd2011-07-21 16:55:17484 context_(context),
[email protected]e60e47a2010-07-14 03:37:18485 net_log_(net_log) {
486 base::TimeDelta max_transport_timeout = base::TimeDelta();
487 base::TimeDelta pool_timeout;
[email protected]ab739042011-04-07 15:22:28488 if (transport_pool_)
489 max_transport_timeout = transport_pool_->ConnectionTimeout();
[email protected]e60e47a2010-07-14 03:37:18490 if (socks_pool_) {
491 pool_timeout = socks_pool_->ConnectionTimeout();
492 if (pool_timeout > max_transport_timeout)
493 max_transport_timeout = pool_timeout;
494 }
495 if (http_proxy_pool_) {
496 pool_timeout = http_proxy_pool_->ConnectionTimeout();
497 if (pool_timeout > max_transport_timeout)
498 max_transport_timeout = pool_timeout;
499 }
500 timeout_ = max_transport_timeout +
501 base::TimeDelta::FromSeconds(kSSLHandshakeTimeoutInSeconds);
502}
503
504SSLClientSocketPool::SSLClientSocketPool(
505 int max_sockets,
506 int max_sockets_per_group,
[email protected]2431756e2010-09-29 20:26:13507 ClientSocketPoolHistograms* histograms,
[email protected]73c45322010-10-01 23:57:54508 HostResolver* host_resolver,
[email protected]822581d2010-12-16 17:27:15509 CertVerifier* cert_verifier,
[email protected]6b8a3c742014-07-25 00:25:35510 ChannelIDService* channel_id_service,
[email protected]a2a41972011-12-07 17:47:27511 TransportSecurityState* transport_security_state,
[email protected]284303b62013-11-28 15:11:54512 CTVerifier* cert_transparency_verifier,
[email protected]c3456bb2011-12-12 22:22:19513 const std::string& ssl_session_cache_shard,
[email protected]e60e47a2010-07-14 03:37:18514 ClientSocketFactory* client_socket_factory,
[email protected]ab739042011-04-07 15:22:28515 TransportClientSocketPool* transport_pool,
[email protected]2431756e2010-09-29 20:26:13516 SOCKSClientSocketPool* socks_pool,
517 HttpProxyClientSocketPool* http_proxy_pool,
[email protected]7abf7d22010-09-04 01:41:59518 SSLConfigService* ssl_config_service,
[email protected]e60e47a2010-07-14 03:37:18519 NetLog* net_log)
[email protected]ab739042011-04-07 15:22:28520 : transport_pool_(transport_pool),
[email protected]ba00b492010-09-08 14:53:38521 socks_pool_(socks_pool),
[email protected]2431756e2010-09-29 20:26:13522 http_proxy_pool_(http_proxy_pool),
[email protected]043b68c82013-08-22 23:41:52523 base_(this, max_sockets, max_sockets_per_group, histograms,
[email protected]82b8c962011-10-12 09:17:30524 ClientSocketPool::unused_idle_socket_timeout(),
525 ClientSocketPool::used_idle_socket_timeout(),
[email protected]ab739042011-04-07 15:22:28526 new SSLConnectJobFactory(transport_pool,
527 socks_pool,
528 http_proxy_pool,
529 client_socket_factory,
530 host_resolver,
[email protected]feb79bcd2011-07-21 16:55:17531 SSLClientSocketContext(
532 cert_verifier,
[email protected]6b8a3c742014-07-25 00:25:35533 channel_id_service,
[email protected]a2a41972011-12-07 17:47:27534 transport_security_state,
[email protected]284303b62013-11-28 15:11:54535 cert_transparency_verifier,
[email protected]c3456bb2011-12-12 22:22:19536 ssl_session_cache_shard),
[email protected]7ab5bbd12010-10-19 13:33:21537 net_log)),
[email protected]7abf7d22010-09-04 01:41:59538 ssl_config_service_(ssl_config_service) {
[email protected]90499482013-06-01 00:39:50539 if (ssl_config_service_.get())
[email protected]7abf7d22010-09-04 01:41:59540 ssl_config_service_->AddObserver(this);
[email protected]51fdc7c2012-04-10 19:19:48541 if (transport_pool_)
[email protected]043b68c82013-08-22 23:41:52542 base_.AddLowerLayeredPool(transport_pool_);
[email protected]51fdc7c2012-04-10 19:19:48543 if (socks_pool_)
[email protected]043b68c82013-08-22 23:41:52544 base_.AddLowerLayeredPool(socks_pool_);
[email protected]51fdc7c2012-04-10 19:19:48545 if (http_proxy_pool_)
[email protected]043b68c82013-08-22 23:41:52546 base_.AddLowerLayeredPool(http_proxy_pool_);
[email protected]7abf7d22010-09-04 01:41:59547}
[email protected]e60e47a2010-07-14 03:37:18548
[email protected]7abf7d22010-09-04 01:41:59549SSLClientSocketPool::~SSLClientSocketPool() {
[email protected]90499482013-06-01 00:39:50550 if (ssl_config_service_.get())
[email protected]7abf7d22010-09-04 01:41:59551 ssl_config_service_->RemoveObserver(this);
552}
[email protected]e60e47a2010-07-14 03:37:18553
[email protected]18ccfdb2013-08-15 00:13:44554scoped_ptr<ConnectJob>
555SSLClientSocketPool::SSLConnectJobFactory::NewConnectJob(
[email protected]ad74a592011-01-21 18:40:55556 const std::string& group_name,
557 const PoolBase::Request& request,
558 ConnectJob::Delegate* delegate) const {
[email protected]18ccfdb2013-08-15 00:13:44559 return scoped_ptr<ConnectJob>(
[email protected]3f6007ab2013-08-22 19:45:39560 new SSLConnectJob(group_name, request.priority(), request.params(),
561 ConnectionTimeout(), transport_pool_, socks_pool_,
562 http_proxy_pool_, client_socket_factory_,
563 host_resolver_, context_, delegate, net_log_));
[email protected]ad74a592011-01-21 18:40:55564}
565
[email protected]2a848e0e2012-08-09 22:27:31566base::TimeDelta
567SSLClientSocketPool::SSLConnectJobFactory::ConnectionTimeout() const {
568 return timeout_;
569}
570
[email protected]e60e47a2010-07-14 03:37:18571int SSLClientSocketPool::RequestSocket(const std::string& group_name,
572 const void* socket_params,
573 RequestPriority priority,
574 ClientSocketHandle* handle,
[email protected]49639fa2011-12-20 23:22:41575 const CompletionCallback& callback,
[email protected]e60e47a2010-07-14 03:37:18576 const BoundNetLog& net_log) {
577 const scoped_refptr<SSLSocketParams>* casted_socket_params =
578 static_cast<const scoped_refptr<SSLSocketParams>*>(socket_params);
579
580 return base_.RequestSocket(group_name, *casted_socket_params, priority,
581 handle, callback, net_log);
582}
583
[email protected]2c2bef152010-10-13 00:55:03584void SSLClientSocketPool::RequestSockets(
585 const std::string& group_name,
586 const void* params,
587 int num_sockets,
588 const BoundNetLog& net_log) {
589 const scoped_refptr<SSLSocketParams>* casted_params =
590 static_cast<const scoped_refptr<SSLSocketParams>*>(params);
591
592 base_.RequestSockets(group_name, *casted_params, num_sockets, net_log);
593}
594
[email protected]e60e47a2010-07-14 03:37:18595void SSLClientSocketPool::CancelRequest(const std::string& group_name,
[email protected]05ea9ff2010-07-15 19:08:21596 ClientSocketHandle* handle) {
[email protected]e60e47a2010-07-14 03:37:18597 base_.CancelRequest(group_name, handle);
598}
599
600void SSLClientSocketPool::ReleaseSocket(const std::string& group_name,
[email protected]18ccfdb2013-08-15 00:13:44601 scoped_ptr<StreamSocket> socket,
602 int id) {
603 base_.ReleaseSocket(group_name, socket.Pass(), id);
[email protected]e60e47a2010-07-14 03:37:18604}
605
[email protected]7af985a2012-12-14 22:40:42606void SSLClientSocketPool::FlushWithError(int error) {
607 base_.FlushWithError(error);
[email protected]e60e47a2010-07-14 03:37:18608}
609
610void SSLClientSocketPool::CloseIdleSockets() {
611 base_.CloseIdleSockets();
612}
613
[email protected]ddb1e5a2010-12-13 20:10:45614int SSLClientSocketPool::IdleSocketCount() const {
615 return base_.idle_socket_count();
616}
617
[email protected]e60e47a2010-07-14 03:37:18618int SSLClientSocketPool::IdleSocketCountInGroup(
619 const std::string& group_name) const {
620 return base_.IdleSocketCountInGroup(group_name);
621}
622
623LoadState SSLClientSocketPool::GetLoadState(
624 const std::string& group_name, const ClientSocketHandle* handle) const {
625 return base_.GetLoadState(group_name, handle);
626}
627
[email protected]ea5ef4c2013-06-13 22:50:27628base::DictionaryValue* SSLClientSocketPool::GetInfoAsValue(
[email protected]ba00b492010-09-08 14:53:38629 const std::string& name,
630 const std::string& type,
631 bool include_nested_pools) const {
[email protected]ea5ef4c2013-06-13 22:50:27632 base::DictionaryValue* dict = base_.GetInfoAsValue(name, type);
[email protected]ba00b492010-09-08 14:53:38633 if (include_nested_pools) {
[email protected]ea5ef4c2013-06-13 22:50:27634 base::ListValue* list = new base::ListValue();
[email protected]ab739042011-04-07 15:22:28635 if (transport_pool_) {
636 list->Append(transport_pool_->GetInfoAsValue("transport_socket_pool",
637 "transport_socket_pool",
638 false));
[email protected]ba00b492010-09-08 14:53:38639 }
[email protected]2431756e2010-09-29 20:26:13640 if (socks_pool_) {
[email protected]ba00b492010-09-08 14:53:38641 list->Append(socks_pool_->GetInfoAsValue("socks_pool",
642 "socks_pool",
643 true));
644 }
[email protected]2431756e2010-09-29 20:26:13645 if (http_proxy_pool_) {
646 list->Append(http_proxy_pool_->GetInfoAsValue("http_proxy_pool",
647 "http_proxy_pool",
648 true));
649 }
[email protected]ba00b492010-09-08 14:53:38650 dict->Set("nested_pools", list);
651 }
652 return dict;
653}
654
[email protected]ddb1e5a2010-12-13 20:10:45655base::TimeDelta SSLClientSocketPool::ConnectionTimeout() const {
656 return base_.ConnectionTimeout();
657}
658
659ClientSocketPoolHistograms* SSLClientSocketPool::histograms() const {
660 return base_.histograms();
661}
662
[email protected]043b68c82013-08-22 23:41:52663bool SSLClientSocketPool::IsStalled() const {
664 return base_.IsStalled();
665}
666
667void SSLClientSocketPool::AddHigherLayeredPool(HigherLayeredPool* higher_pool) {
668 base_.AddHigherLayeredPool(higher_pool);
669}
670
671void SSLClientSocketPool::RemoveHigherLayeredPool(
672 HigherLayeredPool* higher_pool) {
673 base_.RemoveHigherLayeredPool(higher_pool);
[email protected]ad74a592011-01-21 18:40:55674}
675
[email protected]51fdc7c2012-04-10 19:19:48676bool SSLClientSocketPool::CloseOneIdleConnection() {
677 if (base_.CloseOneIdleSocket())
678 return true;
[email protected]043b68c82013-08-22 23:41:52679 return base_.CloseOneIdleConnectionInHigherLayeredPool();
680}
681
682void SSLClientSocketPool::OnSSLConfigChanged() {
683 FlushWithError(ERR_NETWORK_CHANGED);
[email protected]51fdc7c2012-04-10 19:19:48684}
685
[email protected]e60e47a2010-07-14 03:37:18686} // namespace net