blob: a90ffc6a210e6f6c65aacec7506d14c067203d20 [file] [log] [blame]
[email protected]cf4cae32014-05-27 00:39:101// 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
3// found in the LICENSE file.
4
5#ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_
6#define NET_HTTP_HTTP_NETWORK_SESSION_H_
7
Avi Drissman13fc8932015-12-20 04:40:468#include <stddef.h>
9#include <stdint.h>
10
avifceb32f62016-10-07 16:30:5211#include <map>
12#include <memory>
[email protected]cf4cae32014-05-27 00:39:1013#include <set>
14#include <string>
rch74da0e1a2016-01-14 02:49:3215#include <unordered_set>
[email protected]cf4cae32014-05-27 00:39:1016#include <vector>
17
maksim.sisov0adf8592016-07-15 06:25:5618#include "base/bind.h"
hajimehoshi8156e7c2016-09-29 06:17:5219#include "base/memory/memory_coordinator_client.h"
maksim.sisov0adf8592016-07-15 06:25:5620#include "base/memory/memory_pressure_monitor.h"
[email protected]cf4cae32014-05-27 00:39:1021#include "base/memory/ref_counted.h"
22#include "base/memory/weak_ptr.h"
gab47aa7da2017-06-02 16:09:4323#include "base/threading/thread_checker.h"
mmenke0d700dd82017-05-26 20:36:1124#include "net/base/host_mapping_rules.h"
[email protected]cf4cae32014-05-27 00:39:1025#include "net/base/host_port_pair.h"
26#include "net/base/net_export.h"
27#include "net/dns/host_resolver.h"
28#include "net/http/http_auth_cache.h"
29#include "net/http/http_stream_factory.h"
rch675757b2016-07-29 16:40:1130#include "net/quic/chromium/quic_stream_factory.h"
[email protected]cf4cae32014-05-27 00:39:1031#include "net/socket/next_proto.h"
bnc8f8f7d302017-04-24 18:08:0632#include "net/spdy/chromium/spdy_session_pool.h"
33#include "net/spdy/core/spdy_protocol.h"
[email protected]cf4cae32014-05-27 00:39:1034#include "net/ssl/ssl_client_auth_cache.h"
35
36namespace base {
37class Value;
xunjieli9f8c5fb52016-12-07 22:59:3338namespace trace_event {
39class ProcessMemoryDump;
40}
[email protected]cf4cae32014-05-27 00:39:1041}
42
43namespace net {
44
estark6f9b3d82016-01-12 21:37:0545class CTPolicyEnforcer;
[email protected]cf4cae32014-05-27 00:39:1046class CertVerifier;
[email protected]6b8a3c742014-07-25 00:25:3547class ChannelIDService;
[email protected]cf4cae32014-05-27 00:39:1048class ClientSocketFactory;
49class ClientSocketPoolManager;
50class CTVerifier;
51class HostResolver;
[email protected]cf4cae32014-05-27 00:39:1052class HttpAuthHandlerFactory;
53class HttpNetworkSessionPeer;
54class HttpProxyClientSocketPool;
55class HttpResponseBodyDrainer;
56class HttpServerProperties;
57class NetLog;
tbansal16196a1e2017-06-09 01:50:0958class NetworkQualityProvider;
rdsmith1d343be52016-10-21 20:37:5059class NetworkThrottleManager;
bengr39e406102014-09-10 23:04:4660class ProxyDelegate;
[email protected]cf4cae32014-05-27 00:39:1061class ProxyService;
62class QuicClock;
63class QuicCryptoClientStreamFactory;
tbansalba8f4112015-09-03 21:57:1964class SocketPerformanceWatcherFactory;
[email protected]cf4cae32014-05-27 00:39:1065class SOCKSClientSocketPool;
66class SSLClientSocketPool;
67class SSLConfigService;
68class TransportClientSocketPool;
69class TransportSecurityState;
70
bnc3171a2432016-12-28 18:40:2671// Specifies the maximum HPACK dynamic table size the server is allowed to set.
72const uint32_t kSpdyMaxHeaderTableSize = 64 * 1024;
73
74// Specifies the maximum concurrent streams server could send (via push).
75const uint32_t kSpdyMaxConcurrentPushedStreams = 1000;
76
[email protected]cf4cae32014-05-27 00:39:1077// This class holds session objects used by HttpNetworkTransaction objects.
gab47aa7da2017-06-02 16:09:4378class NET_EXPORT HttpNetworkSession : public base::MemoryCoordinatorClient {
[email protected]cf4cae32014-05-27 00:39:1079 public:
mmenke6ddfbea2017-05-31 21:48:4180 // Self-contained structure with all the simple configuration options
81 // supported by the HttpNetworkSession.
[email protected]cf4cae32014-05-27 00:39:1082 struct NET_EXPORT Params {
83 Params();
vmpstracd23b72016-02-26 21:08:5584 Params(const Params& other);
[email protected]cf4cae32014-05-27 00:39:1085 ~Params();
86
zhongyid7dd2db12017-04-14 17:01:2587 bool enable_server_push_cancellation;
mmenke0d700dd82017-05-26 20:36:1188 HostMappingRules host_mapping_rules;
[email protected]cf4cae32014-05-27 00:39:1089 bool ignore_certificate_errors;
Avi Drissman13fc8932015-12-20 04:40:4690 uint16_t testing_fixed_http_port;
91 uint16_t testing_fixed_https_port;
jrif9b4bec2014-09-15 15:46:5492 bool enable_tcp_fast_open_for_ssl;
rch1546ccd2017-04-20 02:14:2393 bool enable_user_alternate_protocol_ports;
[email protected]cf4cae32014-05-27 00:39:1094
rchd502a302015-10-16 03:57:2195 // Use SPDY ping frames to test for connection health after idle.
[email protected]cf4cae32014-05-27 00:39:1096 bool enable_spdy_ping_based_connection_checking;
bnc3f0118e2016-02-02 15:42:2297 bool enable_http2;
bnc8f0f3b62015-04-08 04:37:2398 size_t spdy_session_max_recv_window_size;
bnc3171a2432016-12-28 18:40:2699 // HTTP/2 connection settings.
100 // Unknown settings will still be sent to the server.
101 SettingsMap http2_settings;
rchd502a302015-10-16 03:57:21102 // Source of time for SPDY connections.
[email protected]cf4cae32014-05-27 00:39:10103 SpdySessionPool::TimeFunc time_func;
bnca86731e2017-04-17 12:31:28104 // Whether to enable HTTP/2 Alt-Svc entries.
105 bool enable_http2_alternative_service;
[email protected]cf4cae32014-05-27 00:39:10106
rchd502a302015-10-16 03:57:21107 // Enables QUIC support.
[email protected]cf4cae32014-05-27 00:39:10108 bool enable_quic;
rch1546ccd2017-04-20 02:14:23109
110 // QUIC runtime configuration options.
111
112 // Versions of QUIC which may be used.
113 QuicVersionVector quic_supported_versions;
114 // User agent description to send in the QUIC handshake.
115 std::string quic_user_agent_id;
116 // Limit on the size of QUIC packets.
117 size_t quic_max_packet_length;
rch1546ccd2017-04-20 02:14:23118 // Maximum number of server configs that are to be stored in
119 // HttpServerProperties, instead of the disk cache.
120 size_t quic_max_server_configs_stored_in_properties;
121 // QUIC will be used for all connections in this set.
122 std::set<HostPortPair> origins_to_force_quic_on;
123 // Set of QUIC tags to send in the handshake's connection options.
124 QuicTagVector quic_connection_options;
125
126 // Active QUIC experiments
127
rch9ecde09b2017-04-08 00:18:23128 // Marks a QUIC server broken when a connection blackholes after the
129 // handshake is confirmed.
130 bool mark_quic_broken_when_network_blackholes;
rch2f2991c2017-04-13 19:28:17131 // Retry requests which fail with QUIC_PROTOCOL_ERROR, and mark QUIC
132 // broken if the retry succeeds.
133 bool retry_without_alt_svc_on_quic_errors;
jri8c44d692015-10-23 23:53:41134 // If true, all QUIC sessions are closed when any local IP address changes.
135 bool quic_close_sessions_on_ip_change;
zhongyi6ba0f4252016-08-23 05:20:04136 // Specifies QUIC idle connection state lifetime.
rtenneti41c09992015-11-30 18:24:01137 int quic_idle_connection_timeout_seconds;
zhongyidd1439f62016-09-02 02:02:26138 // Specifies the reduced ping timeout subsequent connections should use when
139 // a connection was timed out with open streams.
140 int quic_reduced_ping_timeout_seconds;
zhongyi6ba0f4252016-08-23 05:20:04141 // Specifies the maximum time duration that QUIC packet reader can perform
142 // consecutive packets reading.
143 int quic_packet_reader_yield_after_duration_milliseconds;
jrid36ada62016-02-06 02:42:08144 // If true, active QUIC sessions may be migrated onto a new network when
145 // the platform indicates that the default network is changing.
jri7e636642016-01-14 06:57:08146 bool quic_migrate_sessions_on_network_change;
jrid36ada62016-02-06 02:42:08147 // If true, active QUIC sessions experiencing poor connectivity may be
148 // migrated onto a new network.
149 bool quic_migrate_sessions_early;
jri217455a12016-07-13 20:15:09150 // If true, allows migration of QUIC connections to a server-specified
151 // alternate server address.
152 bool quic_allow_server_migration;
xunjieli888c29922016-03-18 21:05:09153 // If true, bidirectional streams over QUIC will be disabled.
154 bool quic_disable_bidirectional_streams;
ckrasicda193a82016-07-09 00:39:36155 // If true, enable force HOL blocking. For measurement purposes.
156 bool quic_force_hol_blocking;
rtennetid073dd22016-08-04 01:58:33157 // If true, race cert verification with host resolution.
158 bool quic_race_cert_verification;
rchd6163f32017-01-30 23:50:38159 // If true, estimate the initial RTT for QUIC connections based on network.
160 bool quic_estimate_initial_rtt;
xunjieli888c29922016-03-18 21:05:09161
nharperb7441ef2016-01-25 23:54:14162 // Enable support for Token Binding.
163 bool enable_token_binding;
mmenkea7da6da2016-09-01 21:56:52164
165 // Enable HTTP/0.9 for HTTP/HTTPS on ports other than the default one for
166 // each protocol.
167 bool http_09_on_non_default_ports_enabled;
[email protected]cf4cae32014-05-27 00:39:10168 };
169
mmenke6ddfbea2017-05-31 21:48:41170 // Structure with pointers to the dependencies of the HttpNetworkSession.
171 // These objects must all outlive the HttpNetworkSession.
172 struct NET_EXPORT Context {
173 Context();
174 Context(const Context& other);
175 ~Context();
176
177 ClientSocketFactory* client_socket_factory;
178 HostResolver* host_resolver;
179 CertVerifier* cert_verifier;
180 ChannelIDService* channel_id_service;
181 TransportSecurityState* transport_security_state;
182 CTVerifier* cert_transparency_verifier;
183 CTPolicyEnforcer* ct_policy_enforcer;
184 ProxyService* proxy_service;
185 SSLConfigService* ssl_config_service;
186 HttpAuthHandlerFactory* http_auth_handler_factory;
187 HttpServerProperties* http_server_properties;
188 NetLog* net_log;
189 SocketPerformanceWatcherFactory* socket_performance_watcher_factory;
tbansal16196a1e2017-06-09 01:50:09190 NetworkQualityProvider* network_quality_provider;
mmenke6ddfbea2017-05-31 21:48:41191
192 // Source of time for QUIC connections.
193 QuicClock* quic_clock;
194 // Source of entropy for QUIC connections.
195 QuicRandom* quic_random;
196 // Optional factory to use for creating QuicCryptoClientStreams.
197 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory;
198
199 ProxyDelegate* proxy_delegate;
200 };
201
[email protected]cf4cae32014-05-27 00:39:10202 enum SocketPoolType {
203 NORMAL_SOCKET_POOL,
204 WEBSOCKET_SOCKET_POOL,
205 NUM_SOCKET_POOL_TYPES
206 };
207
mmenke6ddfbea2017-05-31 21:48:41208 HttpNetworkSession(const Params& params, const Context& context);
hajimehoshi8156e7c2016-09-29 06:17:52209 ~HttpNetworkSession() override;
[email protected]cf4cae32014-05-27 00:39:10210
211 HttpAuthCache* http_auth_cache() { return &http_auth_cache_; }
212 SSLClientAuthCache* ssl_client_auth_cache() {
213 return &ssl_client_auth_cache_;
214 }
215
avifceb32f62016-10-07 16:30:52216 void AddResponseDrainer(std::unique_ptr<HttpResponseBodyDrainer> drainer);
[email protected]cf4cae32014-05-27 00:39:10217
avifceb32f62016-10-07 16:30:52218 // Removes the drainer from the session. Does not dispose of it.
[email protected]cf4cae32014-05-27 00:39:10219 void RemoveResponseDrainer(HttpResponseBodyDrainer* drainer);
220
221 TransportClientSocketPool* GetTransportSocketPool(SocketPoolType pool_type);
222 SSLClientSocketPool* GetSSLSocketPool(SocketPoolType pool_type);
223 SOCKSClientSocketPool* GetSocketPoolForSOCKSProxy(
224 SocketPoolType pool_type,
225 const HostPortPair& socks_proxy);
226 HttpProxyClientSocketPool* GetSocketPoolForHTTPProxy(
227 SocketPoolType pool_type,
228 const HostPortPair& http_proxy);
229 SSLClientSocketPool* GetSocketPoolForSSLWithProxy(
230 SocketPoolType pool_type,
231 const HostPortPair& proxy_server);
232
233 CertVerifier* cert_verifier() { return cert_verifier_; }
234 ProxyService* proxy_service() { return proxy_service_; }
235 SSLConfigService* ssl_config_service() { return ssl_config_service_.get(); }
236 SpdySessionPool* spdy_session_pool() { return &spdy_session_pool_; }
237 QuicStreamFactory* quic_stream_factory() { return &quic_stream_factory_; }
238 HttpAuthHandlerFactory* http_auth_handler_factory() {
239 return http_auth_handler_factory_;
240 }
bnc525e175a2016-06-20 12:36:40241 HttpServerProperties* http_server_properties() {
[email protected]cf4cae32014-05-27 00:39:10242 return http_server_properties_;
243 }
244 HttpStreamFactory* http_stream_factory() {
245 return http_stream_factory_.get();
246 }
247 HttpStreamFactory* http_stream_factory_for_websocket() {
248 return http_stream_factory_for_websocket_.get();
249 }
rdsmith1d343be52016-10-21 20:37:50250 NetworkThrottleManager* throttler() {
251 return network_stream_throttler_.get();
252 }
[email protected]cf4cae32014-05-27 00:39:10253 NetLog* net_log() {
254 return net_log_;
255 }
[email protected]cf4cae32014-05-27 00:39:10256
payal.pandey62a400292015-05-28 09:29:54257 // Creates a Value summary of the state of the socket pools.
danakj1fd259a02016-04-16 03:17:09258 std::unique_ptr<base::Value> SocketPoolInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10259
payal.pandey91cb2312015-05-27 07:41:51260 // Creates a Value summary of the state of the SPDY sessions.
danakj1fd259a02016-04-16 03:17:09261 std::unique_ptr<base::Value> SpdySessionPoolInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10262
263 // Creates a Value summary of the state of the QUIC sessions and
payal.pandeya18956a2015-05-27 05:57:55264 // configuration.
danakj1fd259a02016-04-16 03:17:09265 std::unique_ptr<base::Value> QuicInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10266
267 void CloseAllConnections();
268 void CloseIdleConnections();
269
270 // Returns the original Params used to construct this session.
271 const Params& params() const { return params_; }
mmenke6ddfbea2017-05-31 21:48:41272 // Returns the original Context used to construct this session.
273 const Context& context() const { return context_; }
[email protected]cf4cae32014-05-27 00:39:10274
bnc3472afd2016-11-17 15:27:21275 bool IsProtocolEnabled(NextProto protocol) const;
[email protected]cf4cae32014-05-27 00:39:10276
zhongyiaf257542016-12-19 03:36:01277 void SetServerPushDelegate(std::unique_ptr<ServerPushDelegate> push_delegate);
278
bnc1f295372015-10-21 23:24:22279 // Populates |*alpn_protos| with protocols to be used with ALPN.
280 void GetAlpnProtos(NextProtoVector* alpn_protos) const;
281
nharper8cdb0fb2016-04-22 21:34:59282 // Populates |server_config| and |proxy_config| based on this session and
283 // |request|.
284 void GetSSLConfig(const HttpRequestInfo& request,
285 SSLConfig* server_config,
286 SSLConfig* proxy_config) const;
287
xunjieli9f8c5fb52016-12-07 22:59:33288 // Dumps memory allocation stats. |parent_dump_absolute_name| is the name
289 // used by the parent MemoryAllocatorDump in the memory dump hierarchy.
290 void DumpMemoryStats(base::trace_event::ProcessMemoryDump* pmd,
291 const std::string& parent_absolute_name) const;
292
pmarko6ab8be242017-01-11 11:02:55293 // Evaluates if QUIC is enabled for new streams.
294 bool IsQuicEnabled() const;
295
296 // Disable QUIC for new streams.
297 void DisableQuic();
298
[email protected]cf4cae32014-05-27 00:39:10299 private:
[email protected]cf4cae32014-05-27 00:39:10300 friend class HttpNetworkSessionPeer;
301
[email protected]cf4cae32014-05-27 00:39:10302 ClientSocketPoolManager* GetSocketPoolManager(SocketPoolType pool_type);
303
maksim.sisov0adf8592016-07-15 06:25:56304 // Flush sockets on low memory notifications callback.
305 void OnMemoryPressure(
306 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level);
307
hajimehoshi8156e7c2016-09-29 06:17:52308 // base::MemoryCoordinatorClient implementation:
bashi56b23f302017-02-09 01:24:57309 void OnPurgeMemory() override;
hajimehoshi8156e7c2016-09-29 06:17:52310
[email protected]cf4cae32014-05-27 00:39:10311 NetLog* const net_log_;
bnc525e175a2016-06-20 12:36:40312 HttpServerProperties* const http_server_properties_;
[email protected]cf4cae32014-05-27 00:39:10313 CertVerifier* const cert_verifier_;
314 HttpAuthHandlerFactory* const http_auth_handler_factory_;
315
316 // Not const since it's modified by HttpNetworkSessionPeer for testing.
317 ProxyService* proxy_service_;
318 const scoped_refptr<SSLConfigService> ssl_config_service_;
319
320 HttpAuthCache http_auth_cache_;
321 SSLClientAuthCache ssl_client_auth_cache_;
danakj1fd259a02016-04-16 03:17:09322 std::unique_ptr<ClientSocketPoolManager> normal_socket_pool_manager_;
323 std::unique_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_;
zhongyiaf257542016-12-19 03:36:01324 std::unique_ptr<ServerPushDelegate> push_delegate_;
[email protected]cf4cae32014-05-27 00:39:10325 QuicStreamFactory quic_stream_factory_;
326 SpdySessionPool spdy_session_pool_;
danakj1fd259a02016-04-16 03:17:09327 std::unique_ptr<HttpStreamFactory> http_stream_factory_;
328 std::unique_ptr<HttpStreamFactory> http_stream_factory_for_websocket_;
avifceb32f62016-10-07 16:30:52329 std::map<HttpResponseBodyDrainer*, std::unique_ptr<HttpResponseBodyDrainer>>
330 response_drainers_;
rdsmith1d343be52016-10-21 20:37:50331 std::unique_ptr<NetworkThrottleManager> network_stream_throttler_;
[email protected]cf4cae32014-05-27 00:39:10332
bnc0d23cf42014-12-11 14:09:46333 NextProtoVector next_protos_;
[email protected]cf4cae32014-05-27 00:39:10334
335 Params params_;
mmenke6ddfbea2017-05-31 21:48:41336 Context context_;
maksim.sisov0adf8592016-07-15 06:25:56337
338 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
gab47aa7da2017-06-02 16:09:43339
340 THREAD_CHECKER(thread_checker_);
[email protected]cf4cae32014-05-27 00:39:10341};
342
343} // namespace net
344
345#endif // NET_HTTP_HTTP_NETWORK_SESSION_H_