blob: 1b118c939984f3965e926abf18b53dacf9b9a47f [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;
rchbedd57452016-08-30 19:11:48159 // If true, configure QUIC sockets to not fragment packets.
160 bool quic_do_not_fragment;
rchd6163f32017-01-30 23:50:38161 // If true, estimate the initial RTT for QUIC connections based on network.
162 bool quic_estimate_initial_rtt;
xunjieli888c29922016-03-18 21:05:09163
nharperb7441ef2016-01-25 23:54:14164 // Enable support for Token Binding.
165 bool enable_token_binding;
mmenkea7da6da2016-09-01 21:56:52166
167 // Enable HTTP/0.9 for HTTP/HTTPS on ports other than the default one for
168 // each protocol.
169 bool http_09_on_non_default_ports_enabled;
[email protected]cf4cae32014-05-27 00:39:10170 };
171
mmenke6ddfbea2017-05-31 21:48:41172 // Structure with pointers to the dependencies of the HttpNetworkSession.
173 // These objects must all outlive the HttpNetworkSession.
174 struct NET_EXPORT Context {
175 Context();
176 Context(const Context& other);
177 ~Context();
178
179 ClientSocketFactory* client_socket_factory;
180 HostResolver* host_resolver;
181 CertVerifier* cert_verifier;
182 ChannelIDService* channel_id_service;
183 TransportSecurityState* transport_security_state;
184 CTVerifier* cert_transparency_verifier;
185 CTPolicyEnforcer* ct_policy_enforcer;
186 ProxyService* proxy_service;
187 SSLConfigService* ssl_config_service;
188 HttpAuthHandlerFactory* http_auth_handler_factory;
189 HttpServerProperties* http_server_properties;
190 NetLog* net_log;
191 SocketPerformanceWatcherFactory* socket_performance_watcher_factory;
tbansal16196a1e2017-06-09 01:50:09192 NetworkQualityProvider* network_quality_provider;
mmenke6ddfbea2017-05-31 21:48:41193
194 // Source of time for QUIC connections.
195 QuicClock* quic_clock;
196 // Source of entropy for QUIC connections.
197 QuicRandom* quic_random;
198 // Optional factory to use for creating QuicCryptoClientStreams.
199 QuicCryptoClientStreamFactory* quic_crypto_client_stream_factory;
200
201 ProxyDelegate* proxy_delegate;
202 };
203
[email protected]cf4cae32014-05-27 00:39:10204 enum SocketPoolType {
205 NORMAL_SOCKET_POOL,
206 WEBSOCKET_SOCKET_POOL,
207 NUM_SOCKET_POOL_TYPES
208 };
209
mmenke6ddfbea2017-05-31 21:48:41210 HttpNetworkSession(const Params& params, const Context& context);
hajimehoshi8156e7c2016-09-29 06:17:52211 ~HttpNetworkSession() override;
[email protected]cf4cae32014-05-27 00:39:10212
213 HttpAuthCache* http_auth_cache() { return &http_auth_cache_; }
214 SSLClientAuthCache* ssl_client_auth_cache() {
215 return &ssl_client_auth_cache_;
216 }
217
avifceb32f62016-10-07 16:30:52218 void AddResponseDrainer(std::unique_ptr<HttpResponseBodyDrainer> drainer);
[email protected]cf4cae32014-05-27 00:39:10219
avifceb32f62016-10-07 16:30:52220 // Removes the drainer from the session. Does not dispose of it.
[email protected]cf4cae32014-05-27 00:39:10221 void RemoveResponseDrainer(HttpResponseBodyDrainer* drainer);
222
223 TransportClientSocketPool* GetTransportSocketPool(SocketPoolType pool_type);
224 SSLClientSocketPool* GetSSLSocketPool(SocketPoolType pool_type);
225 SOCKSClientSocketPool* GetSocketPoolForSOCKSProxy(
226 SocketPoolType pool_type,
227 const HostPortPair& socks_proxy);
228 HttpProxyClientSocketPool* GetSocketPoolForHTTPProxy(
229 SocketPoolType pool_type,
230 const HostPortPair& http_proxy);
231 SSLClientSocketPool* GetSocketPoolForSSLWithProxy(
232 SocketPoolType pool_type,
233 const HostPortPair& proxy_server);
234
235 CertVerifier* cert_verifier() { return cert_verifier_; }
236 ProxyService* proxy_service() { return proxy_service_; }
237 SSLConfigService* ssl_config_service() { return ssl_config_service_.get(); }
238 SpdySessionPool* spdy_session_pool() { return &spdy_session_pool_; }
239 QuicStreamFactory* quic_stream_factory() { return &quic_stream_factory_; }
240 HttpAuthHandlerFactory* http_auth_handler_factory() {
241 return http_auth_handler_factory_;
242 }
bnc525e175a2016-06-20 12:36:40243 HttpServerProperties* http_server_properties() {
[email protected]cf4cae32014-05-27 00:39:10244 return http_server_properties_;
245 }
246 HttpStreamFactory* http_stream_factory() {
247 return http_stream_factory_.get();
248 }
249 HttpStreamFactory* http_stream_factory_for_websocket() {
250 return http_stream_factory_for_websocket_.get();
251 }
rdsmith1d343be52016-10-21 20:37:50252 NetworkThrottleManager* throttler() {
253 return network_stream_throttler_.get();
254 }
[email protected]cf4cae32014-05-27 00:39:10255 NetLog* net_log() {
256 return net_log_;
257 }
[email protected]cf4cae32014-05-27 00:39:10258
payal.pandey62a400292015-05-28 09:29:54259 // Creates a Value summary of the state of the socket pools.
danakj1fd259a02016-04-16 03:17:09260 std::unique_ptr<base::Value> SocketPoolInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10261
payal.pandey91cb2312015-05-27 07:41:51262 // Creates a Value summary of the state of the SPDY sessions.
danakj1fd259a02016-04-16 03:17:09263 std::unique_ptr<base::Value> SpdySessionPoolInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10264
265 // Creates a Value summary of the state of the QUIC sessions and
payal.pandeya18956a2015-05-27 05:57:55266 // configuration.
danakj1fd259a02016-04-16 03:17:09267 std::unique_ptr<base::Value> QuicInfoToValue() const;
[email protected]cf4cae32014-05-27 00:39:10268
269 void CloseAllConnections();
270 void CloseIdleConnections();
271
272 // Returns the original Params used to construct this session.
273 const Params& params() const { return params_; }
mmenke6ddfbea2017-05-31 21:48:41274 // Returns the original Context used to construct this session.
275 const Context& context() const { return context_; }
[email protected]cf4cae32014-05-27 00:39:10276
bnc3472afd2016-11-17 15:27:21277 bool IsProtocolEnabled(NextProto protocol) const;
[email protected]cf4cae32014-05-27 00:39:10278
zhongyiaf257542016-12-19 03:36:01279 void SetServerPushDelegate(std::unique_ptr<ServerPushDelegate> push_delegate);
280
bnc1f295372015-10-21 23:24:22281 // Populates |*alpn_protos| with protocols to be used with ALPN.
282 void GetAlpnProtos(NextProtoVector* alpn_protos) const;
283
nharper8cdb0fb2016-04-22 21:34:59284 // Populates |server_config| and |proxy_config| based on this session and
285 // |request|.
286 void GetSSLConfig(const HttpRequestInfo& request,
287 SSLConfig* server_config,
288 SSLConfig* proxy_config) const;
289
xunjieli9f8c5fb52016-12-07 22:59:33290 // Dumps memory allocation stats. |parent_dump_absolute_name| is the name
291 // used by the parent MemoryAllocatorDump in the memory dump hierarchy.
292 void DumpMemoryStats(base::trace_event::ProcessMemoryDump* pmd,
293 const std::string& parent_absolute_name) const;
294
pmarko6ab8be242017-01-11 11:02:55295 // Evaluates if QUIC is enabled for new streams.
296 bool IsQuicEnabled() const;
297
298 // Disable QUIC for new streams.
299 void DisableQuic();
300
[email protected]cf4cae32014-05-27 00:39:10301 private:
[email protected]cf4cae32014-05-27 00:39:10302 friend class HttpNetworkSessionPeer;
303
[email protected]cf4cae32014-05-27 00:39:10304 ClientSocketPoolManager* GetSocketPoolManager(SocketPoolType pool_type);
305
maksim.sisov0adf8592016-07-15 06:25:56306 // Flush sockets on low memory notifications callback.
307 void OnMemoryPressure(
308 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level);
309
hajimehoshi8156e7c2016-09-29 06:17:52310 // base::MemoryCoordinatorClient implementation:
bashi56b23f302017-02-09 01:24:57311 void OnPurgeMemory() override;
hajimehoshi8156e7c2016-09-29 06:17:52312
[email protected]cf4cae32014-05-27 00:39:10313 NetLog* const net_log_;
bnc525e175a2016-06-20 12:36:40314 HttpServerProperties* const http_server_properties_;
[email protected]cf4cae32014-05-27 00:39:10315 CertVerifier* const cert_verifier_;
316 HttpAuthHandlerFactory* const http_auth_handler_factory_;
317
318 // Not const since it's modified by HttpNetworkSessionPeer for testing.
319 ProxyService* proxy_service_;
320 const scoped_refptr<SSLConfigService> ssl_config_service_;
321
322 HttpAuthCache http_auth_cache_;
323 SSLClientAuthCache ssl_client_auth_cache_;
danakj1fd259a02016-04-16 03:17:09324 std::unique_ptr<ClientSocketPoolManager> normal_socket_pool_manager_;
325 std::unique_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_;
zhongyiaf257542016-12-19 03:36:01326 std::unique_ptr<ServerPushDelegate> push_delegate_;
[email protected]cf4cae32014-05-27 00:39:10327 QuicStreamFactory quic_stream_factory_;
328 SpdySessionPool spdy_session_pool_;
danakj1fd259a02016-04-16 03:17:09329 std::unique_ptr<HttpStreamFactory> http_stream_factory_;
330 std::unique_ptr<HttpStreamFactory> http_stream_factory_for_websocket_;
avifceb32f62016-10-07 16:30:52331 std::map<HttpResponseBodyDrainer*, std::unique_ptr<HttpResponseBodyDrainer>>
332 response_drainers_;
rdsmith1d343be52016-10-21 20:37:50333 std::unique_ptr<NetworkThrottleManager> network_stream_throttler_;
[email protected]cf4cae32014-05-27 00:39:10334
bnc0d23cf42014-12-11 14:09:46335 NextProtoVector next_protos_;
[email protected]cf4cae32014-05-27 00:39:10336
337 Params params_;
mmenke6ddfbea2017-05-31 21:48:41338 Context context_;
maksim.sisov0adf8592016-07-15 06:25:56339
340 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_;
gab47aa7da2017-06-02 16:09:43341
342 THREAD_CHECKER(thread_checker_);
[email protected]cf4cae32014-05-27 00:39:10343};
344
345} // namespace net
346
347#endif // NET_HTTP_HTTP_NETWORK_SESSION_H_