OLD | NEW |
---|---|
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 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
7 | 7 |
8 #include <map> | |
8 #include <string> | 9 #include <string> |
10 #include <vector> | |
9 | 11 |
10 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
12 #include "base/time/time.h" | 14 #include "base/time/time.h" |
13 #include "net/base/privacy_mode.h" | 15 #include "net/base/privacy_mode.h" |
14 #include "net/dns/host_resolver.h" | 16 #include "net/dns/host_resolver.h" |
15 #include "net/http/http_response_info.h" | 17 #include "net/http/http_response_info.h" |
16 #include "net/socket/client_socket_pool.h" | 18 #include "net/socket/client_socket_pool.h" |
17 #include "net/socket/client_socket_pool_base.h" | 19 #include "net/socket/client_socket_pool_base.h" |
18 #include "net/socket/client_socket_pool_histograms.h" | 20 #include "net/socket/client_socket_pool_histograms.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
87 const SSLConfig ssl_config_; | 89 const SSLConfig ssl_config_; |
88 const PrivacyMode privacy_mode_; | 90 const PrivacyMode privacy_mode_; |
89 const int load_flags_; | 91 const int load_flags_; |
90 const bool force_spdy_over_ssl_; | 92 const bool force_spdy_over_ssl_; |
91 const bool want_spdy_over_npn_; | 93 const bool want_spdy_over_npn_; |
92 bool ignore_limits_; | 94 bool ignore_limits_; |
93 | 95 |
94 DISALLOW_COPY_AND_ASSIGN(SSLSocketParams); | 96 DISALLOW_COPY_AND_ASSIGN(SSLSocketParams); |
95 }; | 97 }; |
96 | 98 |
99 // SSLConnectJobMessenger handles communication between concurrent | |
100 // SSLConnectJobs that share the same SSL session cache key. | |
101 // | |
102 // SSLConnectJobMessengers tell the session cache when a certain | |
103 // connection should be monitored for success or failure, and | |
104 // tell SSLConnectJobs when to pause or resume thier connections. | |
Ryan Sleevi
2014/07/18 22:01:17
typo: thier -> their
mshelley
2014/07/21 23:00:09
Done.
| |
105 class SSLConnectJobMessenger { | |
106 public: | |
107 struct SocketAndCallback { | |
108 SocketAndCallback(SSLClientSocket* ssl_socket, | |
109 const base::Closure& job_resumption_callback) | |
110 : socket(ssl_socket), callback(job_resumption_callback) {} | |
111 | |
112 SSLClientSocket* socket; | |
113 base::Closure callback; | |
114 }; | |
115 | |
116 typedef std::vector<SocketAndCallback> SSLPendingSocketsAndCallbacks; | |
117 | |
118 // Removes |socket| from |pending_sockets_and_callbacks_| if it is present. | |
Ryan Sleevi
2014/07/18 22:01:17
Rather than talking strictly about what this does,
mshelley
2014/07/21 23:00:08
Done.
| |
119 void RemovePendingSocket(SSLClientSocket* ssl_socket); | |
120 | |
121 // Returns true if |ssl_socket|'s Connect() method should be called. | |
122 bool CanProceed(SSLClientSocket* ssl_socket); | |
123 | |
124 // Configures the SSLConnectJobMessenger to begin monitoring |ssl_socket|'s | |
125 // connection status. After a successful connection, or an error, | |
126 // the messenger will determine which sockets that have been added | |
127 // via AddPendingSocket() to allow to proceed. | |
128 void MonitorConnectionResult(SSLClientSocket* ssl_socket); | |
129 | |
130 // Adds |socket| to the list of sockets waiting to Connect(). When | |
131 // the messenger has determined that it's an appropriate time for |socket| | |
132 // to connect, it will asynchronously invoke |callback|. | |
133 // | |
134 // Note: It is an error to call AddPendingSocket() without having first | |
135 // called MonitorConnectionResult() and configuring a socket that WILL | |
136 // have Connect() called on it. | |
137 void AddPendingSocket(SSLClientSocket* socket, const base::Closure& callback); | |
Ryan Sleevi
2014/07/18 22:01:17
nit: variable naming - you call this ssl_socket fo
mshelley
2014/07/21 23:00:09
Done.
| |
138 | |
139 private: | |
140 // Processes pending callbacks when a socket successfully completes | |
141 // its connection. | |
142 void OnJobSucceeded(); | |
143 | |
144 // Processes pending callbacks when a socket encounters an error | |
145 // while completing its connection. | |
146 void OnJobFailed(); | |
147 | |
148 // Runs all callbacks stored in |pending_sockets_and_callbacks_|. | |
149 void RunAllCallbacks( | |
150 const SSLPendingSocketsAndCallbacks& pending_socket_and_callbacks); | |
151 | |
152 SSLPendingSocketsAndCallbacks pending_sockets_and_callbacks_; | |
153 // Note: this field is a vector to allow for future design changes. Currently, | |
154 // this vector should only ever have one entry. | |
155 std::vector<SSLClientSocket*> connecting_sockets_; | |
156 }; | |
157 | |
97 // SSLConnectJob handles the SSL handshake after setting up the underlying | 158 // SSLConnectJob handles the SSL handshake after setting up the underlying |
98 // connection as specified in the params. | 159 // connection as specified in the params. |
99 class SSLConnectJob : public ConnectJob { | 160 class SSLConnectJob : public ConnectJob { |
100 public: | 161 public: |
101 SSLConnectJob( | 162 // Note: the SSLConnectJob does not own |messenger| so it must outlive the |
102 const std::string& group_name, | 163 // job. |
103 RequestPriority priority, | 164 SSLConnectJob(const std::string& group_name, |
104 const scoped_refptr<SSLSocketParams>& params, | 165 RequestPriority priority, |
105 const base::TimeDelta& timeout_duration, | 166 const scoped_refptr<SSLSocketParams>& params, |
106 TransportClientSocketPool* transport_pool, | 167 const base::TimeDelta& timeout_duration, |
107 SOCKSClientSocketPool* socks_pool, | 168 TransportClientSocketPool* transport_pool, |
108 HttpProxyClientSocketPool* http_proxy_pool, | 169 SOCKSClientSocketPool* socks_pool, |
109 ClientSocketFactory* client_socket_factory, | 170 HttpProxyClientSocketPool* http_proxy_pool, |
110 HostResolver* host_resolver, | 171 ClientSocketFactory* client_socket_factory, |
111 const SSLClientSocketContext& context, | 172 HostResolver* host_resolver, |
112 Delegate* delegate, | 173 const SSLClientSocketContext& context, |
113 NetLog* net_log); | 174 SSLConnectJobMessenger* messenger, |
175 Delegate* delegate, | |
176 NetLog* net_log); | |
114 virtual ~SSLConnectJob(); | 177 virtual ~SSLConnectJob(); |
115 | 178 |
116 // ConnectJob methods. | 179 // ConnectJob methods. |
117 virtual LoadState GetLoadState() const OVERRIDE; | 180 virtual LoadState GetLoadState() const OVERRIDE; |
118 | 181 |
119 virtual void GetAdditionalErrorState(ClientSocketHandle * handle) OVERRIDE; | 182 virtual void GetAdditionalErrorState(ClientSocketHandle * handle) OVERRIDE; |
120 | 183 |
121 private: | 184 private: |
122 enum State { | 185 enum State { |
123 STATE_TRANSPORT_CONNECT, | 186 STATE_TRANSPORT_CONNECT, |
124 STATE_TRANSPORT_CONNECT_COMPLETE, | 187 STATE_TRANSPORT_CONNECT_COMPLETE, |
125 STATE_SOCKS_CONNECT, | 188 STATE_SOCKS_CONNECT, |
126 STATE_SOCKS_CONNECT_COMPLETE, | 189 STATE_SOCKS_CONNECT_COMPLETE, |
127 STATE_TUNNEL_CONNECT, | 190 STATE_TUNNEL_CONNECT, |
128 STATE_TUNNEL_CONNECT_COMPLETE, | 191 STATE_TUNNEL_CONNECT_COMPLETE, |
192 STATE_CREATE_SSL_SOCKET, | |
193 STATE_CHECK_FOR_RESUME, | |
129 STATE_SSL_CONNECT, | 194 STATE_SSL_CONNECT, |
130 STATE_SSL_CONNECT_COMPLETE, | 195 STATE_SSL_CONNECT_COMPLETE, |
131 STATE_NONE, | 196 STATE_NONE, |
132 }; | 197 }; |
133 | 198 |
134 void OnIOComplete(int result); | 199 void OnIOComplete(int result); |
135 | 200 |
136 // Runs the state transition loop. | 201 // Runs the state transition loop. |
137 int DoLoop(int result); | 202 int DoLoop(int result); |
138 | 203 |
139 int DoTransportConnect(); | 204 int DoTransportConnect(); |
140 int DoTransportConnectComplete(int result); | 205 int DoTransportConnectComplete(int result); |
141 int DoSOCKSConnect(); | 206 int DoSOCKSConnect(); |
142 int DoSOCKSConnectComplete(int result); | 207 int DoSOCKSConnectComplete(int result); |
143 int DoTunnelConnect(); | 208 int DoTunnelConnect(); |
144 int DoTunnelConnectComplete(int result); | 209 int DoTunnelConnectComplete(int result); |
210 int DoCreateSSLSocket(); | |
211 int DoCheckForResume(); | |
145 int DoSSLConnect(); | 212 int DoSSLConnect(); |
146 int DoSSLConnectComplete(int result); | 213 int DoSSLConnectComplete(int result); |
147 | 214 |
215 // Tells a waiting SSLConnectJob to resume its SSL connection. | |
216 void ResumeSSLConnection(); | |
217 | |
148 // Returns the initial state for the state machine based on the | 218 // Returns the initial state for the state machine based on the |
149 // |connection_type|. | 219 // |connection_type|. |
150 static State GetInitialState(SSLSocketParams::ConnectionType connection_type); | 220 static State GetInitialState(SSLSocketParams::ConnectionType connection_type); |
151 | 221 |
152 // Starts the SSL connection process. Returns OK on success and | 222 // Starts the SSL connection process. Returns OK on success and |
153 // ERR_IO_PENDING if it cannot immediately service the request. | 223 // ERR_IO_PENDING if it cannot immediately service the request. |
154 // Otherwise, it returns a net error code. | 224 // Otherwise, it returns a net error code. |
155 virtual int ConnectInternal() OVERRIDE; | 225 virtual int ConnectInternal() OVERRIDE; |
156 | 226 |
157 scoped_refptr<SSLSocketParams> params_; | 227 scoped_refptr<SSLSocketParams> params_; |
158 TransportClientSocketPool* const transport_pool_; | 228 TransportClientSocketPool* const transport_pool_; |
159 SOCKSClientSocketPool* const socks_pool_; | 229 SOCKSClientSocketPool* const socks_pool_; |
160 HttpProxyClientSocketPool* const http_proxy_pool_; | 230 HttpProxyClientSocketPool* const http_proxy_pool_; |
161 ClientSocketFactory* const client_socket_factory_; | 231 ClientSocketFactory* const client_socket_factory_; |
162 HostResolver* const host_resolver_; | 232 HostResolver* const host_resolver_; |
163 | 233 |
164 const SSLClientSocketContext context_; | 234 const SSLClientSocketContext context_; |
165 | 235 |
166 State next_state_; | 236 State next_state_; |
167 CompletionCallback callback_; | 237 CompletionCallback io_callback_; |
168 scoped_ptr<ClientSocketHandle> transport_socket_handle_; | 238 scoped_ptr<ClientSocketHandle> transport_socket_handle_; |
169 scoped_ptr<SSLClientSocket> ssl_socket_; | 239 scoped_ptr<SSLClientSocket> ssl_socket_; |
170 | 240 |
241 SSLConnectJobMessenger* messenger_; | |
171 HttpResponseInfo error_response_info_; | 242 HttpResponseInfo error_response_info_; |
172 | 243 |
244 base::WeakPtrFactory<SSLConnectJob> weak_factory_; | |
245 | |
173 DISALLOW_COPY_AND_ASSIGN(SSLConnectJob); | 246 DISALLOW_COPY_AND_ASSIGN(SSLConnectJob); |
174 }; | 247 }; |
175 | 248 |
176 class NET_EXPORT_PRIVATE SSLClientSocketPool | 249 class NET_EXPORT_PRIVATE SSLClientSocketPool |
177 : public ClientSocketPool, | 250 : public ClientSocketPool, |
178 public HigherLayeredPool, | 251 public HigherLayeredPool, |
179 public SSLConfigService::Observer { | 252 public SSLConfigService::Observer { |
180 public: | 253 public: |
181 typedef SSLSocketParams SocketParams; | 254 typedef SSLSocketParams SocketParams; |
182 | 255 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
246 // LowerLayeredPool implementation. | 319 // LowerLayeredPool implementation. |
247 virtual bool IsStalled() const OVERRIDE; | 320 virtual bool IsStalled() const OVERRIDE; |
248 | 321 |
249 virtual void AddHigherLayeredPool(HigherLayeredPool* higher_pool) OVERRIDE; | 322 virtual void AddHigherLayeredPool(HigherLayeredPool* higher_pool) OVERRIDE; |
250 | 323 |
251 virtual void RemoveHigherLayeredPool(HigherLayeredPool* higher_pool) OVERRIDE; | 324 virtual void RemoveHigherLayeredPool(HigherLayeredPool* higher_pool) OVERRIDE; |
252 | 325 |
253 // HigherLayeredPool implementation. | 326 // HigherLayeredPool implementation. |
254 virtual bool CloseOneIdleConnection() OVERRIDE; | 327 virtual bool CloseOneIdleConnection() OVERRIDE; |
255 | 328 |
329 // Enables SSLConnectJob waiting if |enable| is true. | |
330 static NET_EXPORT void set_enable_connect_job_waiting(bool enable); | |
331 | |
332 static NET_EXPORT bool get_enable_connect_job_waiting(); | |
333 | |
256 private: | 334 private: |
257 typedef ClientSocketPoolBase<SSLSocketParams> PoolBase; | 335 typedef ClientSocketPoolBase<SSLSocketParams> PoolBase; |
258 | 336 |
259 // SSLConfigService::Observer implementation. | 337 // SSLConfigService::Observer implementation. |
260 | 338 |
261 // When the user changes the SSL config, we flush all idle sockets so they | 339 // When the user changes the SSL config, we flush all idle sockets so they |
262 // won't get re-used. | 340 // won't get re-used. |
263 virtual void OnSSLConfigChanged() OVERRIDE; | 341 virtual void OnSSLConfigChanged() OVERRIDE; |
264 | 342 |
265 class SSLConnectJobFactory : public PoolBase::ConnectJobFactory { | 343 class SSLConnectJobFactory : public PoolBase::ConnectJobFactory { |
266 public: | 344 public: |
267 SSLConnectJobFactory( | 345 SSLConnectJobFactory( |
268 TransportClientSocketPool* transport_pool, | 346 TransportClientSocketPool* transport_pool, |
269 SOCKSClientSocketPool* socks_pool, | 347 SOCKSClientSocketPool* socks_pool, |
270 HttpProxyClientSocketPool* http_proxy_pool, | 348 HttpProxyClientSocketPool* http_proxy_pool, |
271 ClientSocketFactory* client_socket_factory, | 349 ClientSocketFactory* client_socket_factory, |
272 HostResolver* host_resolver, | 350 HostResolver* host_resolver, |
273 const SSLClientSocketContext& context, | 351 const SSLClientSocketContext& context, |
274 NetLog* net_log); | 352 NetLog* net_log); |
275 | 353 |
276 virtual ~SSLConnectJobFactory() {} | 354 virtual ~SSLConnectJobFactory(); |
277 | 355 |
278 // ClientSocketPoolBase::ConnectJobFactory methods. | 356 // ClientSocketPoolBase::ConnectJobFactory methods. |
279 virtual scoped_ptr<ConnectJob> NewConnectJob( | 357 virtual scoped_ptr<ConnectJob> NewConnectJob( |
280 const std::string& group_name, | 358 const std::string& group_name, |
281 const PoolBase::Request& request, | 359 const PoolBase::Request& request, |
282 ConnectJob::Delegate* delegate) const OVERRIDE; | 360 ConnectJob::Delegate* delegate) const OVERRIDE; |
283 | 361 |
284 virtual base::TimeDelta ConnectionTimeout() const OVERRIDE; | 362 virtual base::TimeDelta ConnectionTimeout() const OVERRIDE; |
285 | 363 |
286 private: | 364 private: |
365 // Maps SSLConnectJob cache keys to SSLConnectJobMessenger objects. | |
366 typedef std::map<std::string, SSLConnectJobMessenger*> MessengerMap; | |
367 | |
287 TransportClientSocketPool* const transport_pool_; | 368 TransportClientSocketPool* const transport_pool_; |
288 SOCKSClientSocketPool* const socks_pool_; | 369 SOCKSClientSocketPool* const socks_pool_; |
289 HttpProxyClientSocketPool* const http_proxy_pool_; | 370 HttpProxyClientSocketPool* const http_proxy_pool_; |
290 ClientSocketFactory* const client_socket_factory_; | 371 ClientSocketFactory* const client_socket_factory_; |
291 HostResolver* const host_resolver_; | 372 HostResolver* const host_resolver_; |
292 const SSLClientSocketContext context_; | 373 const SSLClientSocketContext context_; |
293 base::TimeDelta timeout_; | 374 base::TimeDelta timeout_; |
294 NetLog* net_log_; | 375 NetLog* net_log_; |
376 // TODO(mshelley) Change this to a non-pointer. | |
377 scoped_ptr<MessengerMap> messenger_map_; | |
295 | 378 |
296 DISALLOW_COPY_AND_ASSIGN(SSLConnectJobFactory); | 379 DISALLOW_COPY_AND_ASSIGN(SSLConnectJobFactory); |
297 }; | 380 }; |
298 | 381 |
299 TransportClientSocketPool* const transport_pool_; | 382 TransportClientSocketPool* const transport_pool_; |
300 SOCKSClientSocketPool* const socks_pool_; | 383 SOCKSClientSocketPool* const socks_pool_; |
301 HttpProxyClientSocketPool* const http_proxy_pool_; | 384 HttpProxyClientSocketPool* const http_proxy_pool_; |
302 PoolBase base_; | 385 PoolBase base_; |
303 const scoped_refptr<SSLConfigService> ssl_config_service_; | 386 const scoped_refptr<SSLConfigService> ssl_config_service_; |
304 | 387 |
388 static bool enable_connect_job_waiting_; | |
389 | |
305 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); | 390 DISALLOW_COPY_AND_ASSIGN(SSLClientSocketPool); |
306 }; | 391 }; |
307 | 392 |
308 } // namespace net | 393 } // namespace net |
309 | 394 |
310 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ | 395 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_POOL_H_ |
OLD | NEW |