blob: 7c1b196d131b7280478b4f9a32a82dcd2ef688e9 [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"
Yixin Wang10f477ed2017-11-21 04:20:2019#include "base/containers/flat_set.h"
hajimehoshi8156e7c2016-09-29 06:17:5220#include "base/memory/memory_coordinator_client.h"
maksim.sisov0adf8592016-07-15 06:25:5621#include "base/memory/memory_pressure_monitor.h"
[email protected]cf4cae32014-05-27 00:39:1022#include "base/memory/ref_counted.h"
23#include "base/memory/weak_ptr.h"
gab47aa7da2017-06-02 16:09:4324#include "base/threading/thread_checker.h"
mmenke0d700dd82017-05-26 20:36:1125#include "net/base/host_mapping_rules.h"
[email protected]cf4cae32014-05-27 00:39:1026#include "net/base/host_port_pair.h"
27#include "net/base/net_export.h"
28#include "net/dns/host_resolver.h"
29#include "net/http/http_auth_cache.h"
30#include "net/http/http_stream_factory.h"
rch675757b2016-07-29 16:40:1131#include "net/quic/chromium/quic_stream_factory.h"
[email protected]cf4cae32014-05-27 00:39:1032#include "net/socket/next_proto.h"
bnc8f8f7d302017-04-24 18:08:0633#include "net/spdy/chromium/spdy_session_pool.h"
34#include "net/spdy/core/spdy_protocol.h"
[email protected]cf4cae32014-05-27 00:39:1035#include "net/ssl/ssl_client_auth_cache.h"
36
37namespace base {
38class Value;
xunjieli9f8c5fb52016-12-07 22:59:3339namespace trace_event {
40class ProcessMemoryDump;
41}
[email protected]cf4cae32014-05-27 00:39:1042}
43
44namespace net {
45
estark6f9b3d82016-01-12 21:37:0546class CTPolicyEnforcer;
[email protected]cf4cae32014-05-27 00:39:1047class CertVerifier;
[email protected]6b8a3c742014-07-25 00:25:3548class ChannelIDService;
[email protected]cf4cae32014-05-27 00:39:1049class ClientSocketFactory;
50class ClientSocketPoolManager;
51class CTVerifier;
52class HostResolver;
[email protected]cf4cae32014-05-27 00:39:1053class HttpAuthHandlerFactory;
54class HttpNetworkSessionPeer;
55class HttpProxyClientSocketPool;
56class HttpResponseBodyDrainer;
57class HttpServerProperties;
58class NetLog;
tbansal16196a1e2017-06-09 01:50:0959class NetworkQualityProvider;
bengr39e406102014-09-10 23:04:4660class ProxyDelegate;
Lily Houghton8c2f97d2018-01-22 05:06:5961class ProxyResolutionService;
[email protected]cf4cae32014-05-27 00:39:1062class 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;
Bence Békyda280c62018-04-12 15:08:3770class WebSocketEndpointLockManager;
[email protected]cf4cae32014-05-27 00:39:1071
bnc3171a2432016-12-28 18:40:2672// Specifies the maximum HPACK dynamic table size the server is allowed to set.
73const uint32_t kSpdyMaxHeaderTableSize = 64 * 1024;
74
75// Specifies the maximum concurrent streams server could send (via push).
76const uint32_t kSpdyMaxConcurrentPushedStreams = 1000;
77
[email protected]cf4cae32014-05-27 00:39:1078// This class holds session objects used by HttpNetworkTransaction objects.
gab47aa7da2017-06-02 16:09:4379class NET_EXPORT HttpNetworkSession : public base::MemoryCoordinatorClient {
[email protected]cf4cae32014-05-27 00:39:1080 public:
mmenke6ddfbea2017-05-31 21:48:4181 // Self-contained structure with all the simple configuration options
82 // supported by the HttpNetworkSession.
[email protected]cf4cae32014-05-27 00:39:1083 struct NET_EXPORT Params {
84 Params();
vmpstracd23b72016-02-26 21:08:5585 Params(const Params& other);
[email protected]cf4cae32014-05-27 00:39:1086 ~Params();
87
Matt Menke53c59762017-09-14 16:38:1288 enum class TcpFastOpenMode {
89 DISABLED,
90 // If true, TCP fast open will be used for all HTTPS connections.
91 ENABLED_FOR_SSL_ONLY,
92 // TCP fast open will be used for all HTTP/HTTPS connections.
93 // TODO(mmenke): With 0-RTT session resumption, does this option make
94 // sense?
95 ENABLED_FOR_ALL,
96 };
97
zhongyid7dd2db12017-04-14 17:01:2598 bool enable_server_push_cancellation;
mmenke0d700dd82017-05-26 20:36:1199 HostMappingRules host_mapping_rules;
[email protected]cf4cae32014-05-27 00:39:10100 bool ignore_certificate_errors;
Avi Drissman13fc8932015-12-20 04:40:46101 uint16_t testing_fixed_http_port;
102 uint16_t testing_fixed_https_port;
Matt Menke53c59762017-09-14 16:38:12103 TcpFastOpenMode tcp_fast_open_mode;
rch1546ccd2017-04-20 02:14:23104 bool enable_user_alternate_protocol_ports;
[email protected]cf4cae32014-05-27 00:39:10105
rchd502a302015-10-16 03:57:21106 // Use SPDY ping frames to test for connection health after idle.
[email protected]cf4cae32014-05-27 00:39:10107 bool enable_spdy_ping_based_connection_checking;
bnc3f0118e2016-02-02 15:42:22108 bool enable_http2;
bnc8f0f3b62015-04-08 04:37:23109 size_t spdy_session_max_recv_window_size;
bnc3171a2432016-12-28 18:40:26110 // HTTP/2 connection settings.
111 // Unknown settings will still be sent to the server.
112 SettingsMap http2_settings;
rchd502a302015-10-16 03:57:21113 // Source of time for SPDY connections.
[email protected]cf4cae32014-05-27 00:39:10114 SpdySessionPool::TimeFunc time_func;
bnca86731e2017-04-17 12:31:28115 // Whether to enable HTTP/2 Alt-Svc entries.
116 bool enable_http2_alternative_service;
Bence Béky58b423222018-01-24 15:16:54117 // Whether to enable Websocket over HTTP/2.
118 bool enable_websocket_over_http2;
[email protected]cf4cae32014-05-27 00:39:10119
rchd502a302015-10-16 03:57:21120 // Enables QUIC support.
[email protected]cf4cae32014-05-27 00:39:10121 bool enable_quic;
rch1546ccd2017-04-20 02:14:23122
123 // QUIC runtime configuration options.
124
125 // Versions of QUIC which may be used.
Michael Warres74ee3ce2017-10-09 15:26:37126 QuicTransportVersionVector quic_supported_versions;
rch1546ccd2017-04-20 02:14:23127 // User agent description to send in the QUIC handshake.
128 std::string quic_user_agent_id;
129 // Limit on the size of QUIC packets.
130 size_t quic_max_packet_length;
rch1546ccd2017-04-20 02:14:23131 // Maximum number of server configs that are to be stored in
132 // HttpServerProperties, instead of the disk cache.
133 size_t quic_max_server_configs_stored_in_properties;
134 // QUIC will be used for all connections in this set.
135 std::set<HostPortPair> origins_to_force_quic_on;
136 // Set of QUIC tags to send in the handshake's connection options.
137 QuicTagVector quic_connection_options;
Yixin Wang46a425f2017-08-10 23:02:20138 // Set of QUIC tags to send in the handshake's connection options that only
139 // affect the client.
140 QuicTagVector quic_client_connection_options;
kapishnikov7f8dd1e2018-01-24 06:10:49141 // Enables experimental optimization for receiving data in UDPSocket.
142 bool quic_enable_socket_recv_optimization;
rch1546ccd2017-04-20 02:14:23143
144 // Active QUIC experiments
145
rch9ecde09b2017-04-08 00:18:23146 // Marks a QUIC server broken when a connection blackholes after the
147 // handshake is confirmed.
148 bool mark_quic_broken_when_network_blackholes;
rch2f2991c2017-04-13 19:28:17149 // Retry requests which fail with QUIC_PROTOCOL_ERROR, and mark QUIC
150 // broken if the retry succeeds.
151 bool retry_without_alt_svc_on_quic_errors;
Yixin Wanga9afead2017-10-19 20:23:10152 // If true, alt-svc headers advertising QUIC in IETF format will be
153 // supported.
154 bool support_ietf_format_quic_altsvc;
Jana Iyengar903dec22017-11-28 00:44:23155 // If true, all QUIC sessions are closed when any local IP address changes.
156 bool quic_close_sessions_on_ip_change;
zhongyi6ba0f4252016-08-23 05:20:04157 // Specifies QUIC idle connection state lifetime.
rtenneti41c09992015-11-30 18:24:01158 int quic_idle_connection_timeout_seconds;
zhongyidd1439f62016-09-02 02:02:26159 // Specifies the reduced ping timeout subsequent connections should use when
160 // a connection was timed out with open streams.
161 int quic_reduced_ping_timeout_seconds;
Yixin Wang469da562017-11-15 21:34:58162 // Maximum time the session can be alive before crypto handshake is
163 // finished.
164 int quic_max_time_before_crypto_handshake_seconds;
165 // Maximum idle time before the crypto handshake has completed.
166 int quic_max_idle_time_before_crypto_handshake_seconds;
Zhongyi Shi1a605d22017-09-29 20:09:48167 // If true, QUIC will attempt to explicitly use default network for sockets.
168 bool quic_connect_using_default_network;
jrid36ada62016-02-06 02:42:08169 // If true, active QUIC sessions may be migrated onto a new network when
170 // the platform indicates that the default network is changing.
jri7e636642016-01-14 06:57:08171 bool quic_migrate_sessions_on_network_change;
Zhongyi Shif4683a32017-12-01 00:03:28172 // If true, active QUIC sessions experiencing poor connectivity may be
173 // migrated onto a new network.
174 bool quic_migrate_sessions_early;
Zhongyi Shi64795622017-11-20 02:21:49175 // If true, connection migration v2 will be used to migrate existing
176 // sessions to network when the platform indicates that the default network
177 // is changing.
178 bool quic_migrate_sessions_on_network_change_v2;
Zhongyi Shif4683a32017-12-01 00:03:28179 // If true, connection migration v2 may be used to migrate active QUIC
180 // sessions to alternative network if current network connectivity is poor.
181 bool quic_migrate_sessions_early_v2;
Zhongyi Shi8b1e43f2017-12-13 20:46:30182 // Maximum time the session could be on the non-default network before
183 // migrates back to default network. Defaults to
184 // kMaxTimeOnNonDefaultNetwork.
Zhongyi Shi73f23ca872017-12-13 18:37:13185 base::TimeDelta quic_max_time_on_non_default_network;
Zhongyi Shi8b1e43f2017-12-13 20:46:30186 // Maximum number of migrations to the non-default network on path
187 // degrading per network for each session.
188 int quic_max_migrations_to_non_default_network_on_path_degrading;
jri217455a12016-07-13 20:15:09189 // If true, allows migration of QUIC connections to a server-specified
190 // alternate server address.
191 bool quic_allow_server_migration;
Ryan Hamiltonc84473f2017-11-23 03:18:34192 // If true, allows QUIC to use alternative services with a different
193 // hostname from the origin.
194 bool quic_allow_remote_alt_svc;
xunjieli888c29922016-03-18 21:05:09195 // If true, bidirectional streams over QUIC will be disabled.
196 bool quic_disable_bidirectional_streams;
ckrasicda193a82016-07-09 00:39:36197 // If true, enable force HOL blocking. For measurement purposes.
198 bool quic_force_hol_blocking;
rtennetid073dd22016-08-04 01:58:33199 // If true, race cert verification with host resolution.
200 bool quic_race_cert_verification;
rchd6163f32017-01-30 23:50:38201 // If true, estimate the initial RTT for QUIC connections based on network.
202 bool quic_estimate_initial_rtt;
Yixin Wang079ad542018-01-11 04:06:05203 // If true, client headers will include HTTP/2 stream dependency info
204 // derived from the request priority.
205 bool quic_headers_include_h2_stream_dependency;
Yixin Wang10f477ed2017-11-21 04:20:20206 // If non-empty, QUIC will only be spoken to hosts in this list.
207 base::flat_set<std::string> quic_host_whitelist;
xunjieli888c29922016-03-18 21:05:09208
nharperb7441ef2016-01-25 23:54:14209 // Enable support for Token Binding.
210 bool enable_token_binding;
mmenkea7da6da2016-09-01 21:56:52211
212 // Enable HTTP/0.9 for HTTP/HTTPS on ports other than the default one for
213 // each protocol.
214 bool http_09_on_non_default_ports_enabled;
yucliu48f235d2018-01-11 00:59:55215
216 // If true, idle sockets won't be closed when memory pressure happens.
217 bool disable_idle_sockets_close_on_memory_pressure;
[email protected]cf4cae32014-05-27 00:39:10218 };
219
mmenke6ddfbea2017-05-31 21:48:41220 // Structure with pointers to the dependencies of the HttpNetworkSession.
221 // These objects must all outlive the HttpNetworkSession.
222 struct NET_EXPORT Context {
223 Context();
224 Context(const Context& other);
225 ~Context();
226
227 ClientSocketFactory* client_socket_factory;
228 HostResolver* host_resolver;
229 CertVerifier* cert_verifier;
230 ChannelIDService* channel_id_service;
231 TransportSecurityState* transport_security_state;
232 CTVerifier* cert_transparency_verifier;
233 CTPolicyEnforcer* ct_policy_enforcer;
Lily Houghton8c2f97d2018-01-22 05:06:59234 ProxyResolutionService* proxy_resolution_service;
mmenke6ddfbea2017-05-31 21:48:41235 SSLConfigService* ssl_config_service;
236 HttpAuthHandlerFactory* http_auth_handler_factory;
237 HttpServerProperties* http_server_properties;
238 NetLog* net_log;
239 SocketPerformanceWatcherFactory* socket_performance_watcher_factory;
tbansal16196a1e2017-06-09 01:50:09240 NetworkQualityProvider* network_quality_provider;
mmenke6ddfbea2017-05-31 21:48:41241
242 // Source of time for QUIC connections.
243 QuicClock* quic_clock;
244 // Source of entropy for QUIC connections.
245 QuicRandom* quic_random;
246 // Optional factory to use for creating QuicCryptoClientStreams.
247 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory;
248
249 ProxyDelegate* proxy_delegate;
250 };
251
[email protected]cf4cae32014-05-27 00:39:10252 enum SocketPoolType {
253 NORMAL_SOCKET_POOL,
254 WEBSOCKET_SOCKET_POOL,
255 NUM_SOCKET_POOL_TYPES
256 };
257
mmenke6ddfbea2017-05-31 21:48:41258 HttpNetworkSession(const Params& params, const Context& context);
hajimehoshi8156e7c2016-09-29 06:17:52259 ~HttpNetworkSession() override;
[email protected]cf4cae32014-05-27 00:39:10260
261 HttpAuthCache* http_auth_cache() { return &http_auth_cache_; }
262 SSLClientAuthCache* ssl_client_auth_cache() {
263 return &ssl_client_auth_cache_;
264 }
265
avifceb32f62016-10-07 16:30:52266 void AddResponseDrainer(std::unique_ptr<HttpResponseBodyDrainer> drainer);
[email protected]cf4cae32014-05-27 00:39:10267
avifceb32f62016-10-07 16:30:52268 // Removes the drainer from the session. Does not dispose of it.
[email protected]cf4cae32014-05-27 00:39:10269 void RemoveResponseDrainer(HttpResponseBodyDrainer* drainer);
270
271 TransportClientSocketPool* GetTransportSocketPool(SocketPoolType pool_type);
272 SSLClientSocketPool* GetSSLSocketPool(SocketPoolType pool_type);
273 SOCKSClientSocketPool* GetSocketPoolForSOCKSProxy(
274 SocketPoolType pool_type,
275 const HostPortPair& socks_proxy);
276 HttpProxyClientSocketPool* GetSocketPoolForHTTPProxy(
277 SocketPoolType pool_type,
278 const HostPortPair& http_proxy);
279 SSLClientSocketPool* GetSocketPoolForSSLWithProxy(
280 SocketPoolType pool_type,
281 const HostPortPair& proxy_server);
282
283 CertVerifier* cert_verifier() { return cert_verifier_; }
Lily Houghton8c2f97d2018-01-22 05:06:59284 ProxyResolutionService* proxy_resolution_service() {
285 return proxy_resolution_service_;
286 }
[email protected]cf4cae32014-05-27 00:39:10287 SSLConfigService* ssl_config_service() { return ssl_config_service_.get(); }
Bence Békyda280c62018-04-12 15:08:37288 WebSocketEndpointLockManager* websocket_endpoint_lock_manager() {
289 return websocket_endpoint_lock_manager_.get();
290 }
[email protected]cf4cae32014-05-27 00:39:10291 SpdySessionPool* spdy_session_pool() { return &spdy_session_pool_; }
292 QuicStreamFactory* quic_stream_factory() { return &quic_stream_factory_; }
293 HttpAuthHandlerFactory* http_auth_handler_factory() {
294 return http_auth_handler_factory_;
295 }
bnc525e175a2016-06-20 12:36:40296 HttpServerProperties* http_server_properties() {
[email protected]cf4cae32014-05-27 00:39:10297 return http_server_properties_;
298 }
299 HttpStreamFactory* http_stream_factory() {
300 return http_stream_factory_.get();
301 }
[email protected]cf4cae32014-05-27 00:39:10302 NetLog* net_log() {
303 return net_log_;
304 }
[email protected]cf4cae32014-05-27 00:39:10305
payal.pandey62a400292015-05-28 09:29:54306 // Creates a Value summary of the state of the socket pools.
danakj1fd259a02016-04-16 03:17:09307 std::unique_ptr<base::Value> SocketPoolInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10308
payal.pandey91cb2312015-05-27 07:41:51309 // Creates a Value summary of the state of the SPDY sessions.
danakj1fd259a02016-04-16 03:17:09310 std::unique_ptr<base::Value> SpdySessionPoolInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10311
312 // Creates a Value summary of the state of the QUIC sessions and
payal.pandeya18956a2015-05-27 05:57:55313 // configuration.
danakj1fd259a02016-04-16 03:17:09314 std::unique_ptr<base::Value> QuicInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10315
316 void CloseAllConnections();
317 void CloseIdleConnections();
318
319 // Returns the original Params used to construct this session.
320 const Params& params() const { return params_; }
mmenke6ddfbea2017-05-31 21:48:41321 // Returns the original Context used to construct this session.
322 const Context& context() const { return context_; }
[email protected]cf4cae32014-05-27 00:39:10323
bnc3472afd2016-11-17 15:27:21324 bool IsProtocolEnabled(NextProto protocol) const;
[email protected]cf4cae32014-05-27 00:39:10325
zhongyiaf257542016-12-19 03:36:01326 void SetServerPushDelegate(std::unique_ptr<ServerPushDelegate> push_delegate);
327
bnc1f295372015-10-21 23:24:22328 // Populates |*alpn_protos| with protocols to be used with ALPN.
329 void GetAlpnProtos(NextProtoVector* alpn_protos) const;
330
nharper8cdb0fb2016-04-22 21:34:59331 // Populates |server_config| and |proxy_config| based on this session and
332 // |request|.
333 void GetSSLConfig(const HttpRequestInfo& request,
334 SSLConfig* server_config,
335 SSLConfig* proxy_config) const;
336
xunjieli9f8c5fb52016-12-07 22:59:33337 // Dumps memory allocation stats. |parent_dump_absolute_name| is the name
338 // used by the parent MemoryAllocatorDump in the memory dump hierarchy.
339 void DumpMemoryStats(base::trace_event::ProcessMemoryDump* pmd,
340 const std::string& parent_absolute_name) const;
341
pmarko6ab8be242017-01-11 11:02:55342 // Evaluates if QUIC is enabled for new streams.
343 bool IsQuicEnabled() const;
344
345 // Disable QUIC for new streams.
346 void DisableQuic();
347
[email protected]cf4cae32014-05-27 00:39:10348 private:
[email protected]cf4cae32014-05-27 00:39:10349 friend class HttpNetworkSessionPeer;
350
[email protected]cf4cae32014-05-27 00:39:10351 ClientSocketPoolManager* GetSocketPoolManager(SocketPoolType pool_type);
352
maksim.sisov0adf8592016-07-15 06:25:56353 // Flush sockets on low memory notifications callback.
354 void OnMemoryPressure(
355 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level);
356
hajimehoshi8156e7c2016-09-29 06:17:52357 // base::MemoryCoordinatorClient implementation:
bashi56b23f302017-02-09 01:24:57358 void OnPurgeMemory() override;
hajimehoshi8156e7c2016-09-29 06:17:52359
[email protected]cf4cae32014-05-27 00:39:10360 NetLog* const net_log_;
bnc525e175a2016-06-20 12:36:40361 HttpServerProperties* const http_server_properties_;
[email protected]cf4cae32014-05-27 00:39:10362 CertVerifier* const cert_verifier_;
363 HttpAuthHandlerFactory* const http_auth_handler_factory_;
364
Bence Békybf1c67f22018-04-12 09:26:26365 ProxyResolutionService* const proxy_resolution_service_;
[email protected]cf4cae32014-05-27 00:39:10366 const scoped_refptr<SSLConfigService> ssl_config_service_;
367
368 HttpAuthCache http_auth_cache_;
369 SSLClientAuthCache ssl_client_auth_cache_;
Bence Békyda280c62018-04-12 15:08:37370 std::unique_ptr<WebSocketEndpointLockManager>
371 websocket_endpoint_lock_manager_;
danakj1fd259a02016-04-16 03:17:09372 std::unique_ptr<ClientSocketPoolManager> normal_socket_pool_manager_;
373 std::unique_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_;
zhongyiaf257542016-12-19 03:36:01374 std::unique_ptr<ServerPushDelegate> push_delegate_;
[email protected]cf4cae32014-05-27 00:39:10375 QuicStreamFactory quic_stream_factory_;
376 SpdySessionPool spdy_session_pool_;
danakj1fd259a02016-04-16 03:17:09377 std::unique_ptr<HttpStreamFactory> http_stream_factory_;
avifceb32f62016-10-07 16:30:52378 std::map<HttpResponseBodyDrainer*, std::unique_ptr<HttpResponseBodyDrainer>>
379 response_drainers_;
bnc0d23cf42014-12-11 14:09:46380 NextProtoVector next_protos_;
[email protected]cf4cae32014-05-27 00:39:10381
382 Params params_;
mmenke6ddfbea2017-05-31 21:48:41383 Context context_;
maksim.sisov0adf8592016-07-15 06:25:56384
385 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
gab47aa7da2017-06-02 16:09:43386
387 THREAD_CHECKER(thread_checker_);
[email protected]cf4cae32014-05-27 00:39:10388};
389
390} // namespace net
391
392#endif // NET_HTTP_HTTP_NETWORK_SESSION_H_