1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/socket/client_socket_pool.h"
#include <memory>
#include <string_view>
#include <utility>
#include <vector>
#include "base/check_op.h"
#include "base/feature_list.h"
#include "base/functional/bind.h"
#include "base/strings/strcat.h"
#include "net/base/features.h"
#include "net/base/host_port_pair.h"
#include "net/base/proxy_chain.h"
#include "net/base/session_usage.h"
#include "net/dns/public/secure_dns_policy.h"
#include "net/http/http_proxy_connect_job.h"
#include "net/log/net_log_event_type.h"
#include "net/log/net_log_with_source.h"
#include "net/socket/connect_job.h"
#include "net/socket/connect_job_factory.h"
#include "net/socket/socks_connect_job.h"
#include "net/socket/ssl_connect_job.h"
#include "net/socket/stream_socket.h"
#include "net/spdy/spdy_session.h"
#include "net/spdy/spdy_session_pool.h"
#include "net/ssl/ssl_config.h"
#include "url/gurl.h"
#include "url/scheme_host_port.h"
#include "url/url_constants.h"
namespace net {
namespace {
// The maximum duration, in seconds, to keep used idle persistent sockets alive.
int64_t g_used_idle_socket_timeout_s = 300; // 5 minutes
// Invoked by the transport socket pool after host resolution is complete
// to allow the connection to be aborted, if a matching SPDY session can
// be found. Returns OnHostResolutionCallbackResult::kMayBeDeletedAsync if such
// a session is found, as it will post a task that may delete the calling
// ConnectJob. Also returns kMayBeDeletedAsync if there may already be such
// a task posted.
OnHostResolutionCallbackResult OnHostResolution(
SpdySessionPool* spdy_session_pool,
const SpdySessionKey& spdy_session_key,
bool is_for_websockets,
const HostPortPair& host_port_pair,
const std::vector<HostResolverEndpointResult>& endpoint_results,
const std::set<std::string>& aliases) {
DCHECK(host_port_pair == spdy_session_key.host_port_pair());
// It is OK to dereference spdy_session_pool, because the
// ClientSocketPoolManager will be destroyed in the same callback that
// destroys the SpdySessionPool.
return spdy_session_pool->OnHostResolutionComplete(
spdy_session_key, is_for_websockets, endpoint_results, aliases);
}
} // namespace
ClientSocketPool::SocketParams::SocketParams(
const std::vector<SSLConfig::CertAndStatus>& allowed_bad_certs)
: allowed_bad_certs_(allowed_bad_certs) {}
ClientSocketPool::SocketParams::~SocketParams() = default;
scoped_refptr<ClientSocketPool::SocketParams>
ClientSocketPool::SocketParams::CreateForHttpForTesting() {
return base::MakeRefCounted<SocketParams>(
/*allowed_bad_certs=*/std::vector<SSLConfig::CertAndStatus>());
}
// static
std::string_view ClientSocketPool::GroupId::GetPrivacyModeGroupIdPrefix(
PrivacyMode privacy_mode) {
switch (privacy_mode) {
case PrivacyMode::PRIVACY_MODE_DISABLED:
return "";
case PrivacyMode::PRIVACY_MODE_ENABLED:
return "pm/";
case PrivacyMode::PRIVACY_MODE_ENABLED_WITHOUT_CLIENT_CERTS:
return "pmwocc/";
case PrivacyMode::PRIVACY_MODE_ENABLED_PARTITIONED_STATE_ALLOWED:
return "pmpsa/";
}
}
// static
std::string_view ClientSocketPool::GroupId::GetSecureDnsPolicyGroupIdPrefix(
SecureDnsPolicy secure_dns_policy) {
switch (secure_dns_policy) {
case SecureDnsPolicy::kAllow:
return "";
case SecureDnsPolicy::kDisable:
return "dsd/";
case SecureDnsPolicy::kBootstrap:
return "dns_bootstrap/";
}
}
ClientSocketPool::GroupId::GroupId()
: privacy_mode_(PrivacyMode::PRIVACY_MODE_DISABLED) {}
ClientSocketPool::GroupId::GroupId(
url::SchemeHostPort destination,
PrivacyMode privacy_mode,
NetworkAnonymizationKey network_anonymization_key,
SecureDnsPolicy secure_dns_policy,
bool disable_cert_network_fetches)
: destination_(std::move(destination)),
privacy_mode_(privacy_mode),
network_anonymization_key_(
NetworkAnonymizationKey::IsPartitioningEnabled()
? std::move(network_anonymization_key)
: NetworkAnonymizationKey()),
secure_dns_policy_(secure_dns_policy),
disable_cert_network_fetches_(disable_cert_network_fetches) {
DCHECK(destination_.IsValid());
// ClientSocketPool only expected to be used for HTTP/HTTPS/WS/WSS cases, and
// "ws"/"wss" schemes should be converted to "http"/"https" equivalent first.
DCHECK(destination_.scheme() == url::kHttpScheme ||
destination_.scheme() == url::kHttpsScheme);
}
ClientSocketPool::GroupId::GroupId(const GroupId& group_id) = default;
ClientSocketPool::GroupId::~GroupId() = default;
ClientSocketPool::GroupId& ClientSocketPool::GroupId::operator=(
const GroupId& group_id) = default;
ClientSocketPool::GroupId& ClientSocketPool::GroupId::operator=(
GroupId&& group_id) = default;
std::string ClientSocketPool::GroupId::ToString() const {
return base::StrCat(
{disable_cert_network_fetches_ ? "disable_cert_network_fetches/" : "",
GetSecureDnsPolicyGroupIdPrefix(secure_dns_policy_),
GetPrivacyModeGroupIdPrefix(privacy_mode_), destination_.Serialize(),
NetworkAnonymizationKey::IsPartitioningEnabled()
? base::StrCat(
{" <", network_anonymization_key_.ToDebugString(), ">"})
: ""});
}
ClientSocketPool::~ClientSocketPool() = default;
// static
base::TimeDelta ClientSocketPool::used_idle_socket_timeout() {
return base::Seconds(g_used_idle_socket_timeout_s);
}
// static
void ClientSocketPool::set_used_idle_socket_timeout(base::TimeDelta timeout) {
DCHECK_GT(timeout.InSeconds(), 0);
g_used_idle_socket_timeout_s = timeout.InSeconds();
}
ClientSocketPool::ClientSocketPool(
bool is_for_websockets,
const CommonConnectJobParams* common_connect_job_params,
std::unique_ptr<ConnectJobFactory> connect_job_factory)
: is_for_websockets_(is_for_websockets),
common_connect_job_params_(common_connect_job_params),
connect_job_factory_(std::move(connect_job_factory)) {}
void ClientSocketPool::NetLogTcpClientSocketPoolRequestedSocket(
const NetLogWithSource& net_log,
const GroupId& group_id) {
// TODO(eroman): Split out the host and port parameters.
net_log.AddEvent(NetLogEventType::TCP_CLIENT_SOCKET_POOL_REQUESTED_SOCKET,
[&] { return NetLogGroupIdParams(group_id); });
}
base::Value::Dict ClientSocketPool::NetLogGroupIdParams(
const GroupId& group_id) {
return base::Value::Dict().Set("group_id", group_id.ToString());
}
std::unique_ptr<ConnectJob> ClientSocketPool::CreateConnectJob(
GroupId group_id,
scoped_refptr<SocketParams> socket_params,
const ProxyChain& proxy_chain,
const std::optional<NetworkTrafficAnnotationTag>& proxy_annotation_tag,
RequestPriority request_priority,
SocketTag socket_tag,
ConnectJob::Delegate* delegate) {
bool using_ssl = GURL::SchemeIsCryptographic(group_id.destination().scheme());
// If applicable, set up a callback to handle checking for H2 IP pooling
// opportunities. We don't perform H2 IP pooling to or through proxy servers,
// so ignore those cases.
OnHostResolutionCallback resolution_callback;
if (using_ssl && proxy_chain.is_direct()) {
resolution_callback = base::BindRepeating(
&OnHostResolution, common_connect_job_params_->spdy_session_pool,
// TODO(crbug.com/40181080): Pass along as SchemeHostPort.
SpdySessionKey(HostPortPair::FromSchemeHostPort(group_id.destination()),
group_id.privacy_mode(), proxy_chain,
SessionUsage::kDestination, socket_tag,
group_id.network_anonymization_key(),
group_id.secure_dns_policy(),
group_id.disable_cert_network_fetches()),
is_for_websockets_);
}
// Force a CONNECT tunnel for websockets. If this is false, the connect job
// may still use a tunnel for other reasons.
bool force_tunnel = is_for_websockets_;
// Only offer HTTP/1.1 for WebSockets. Although RFC 8441 defines WebSockets
// over HTTP/2, a single WSS/HTTPS origin may support HTTP over HTTP/2
// without supporting WebSockets over HTTP/2. Offering HTTP/2 for a fresh
// connection would break such origins.
//
// However, still offer HTTP/1.1 rather than skipping ALPN entirely. While
// this will not change the application protocol (HTTP/1.1 is default), it
// provides hardening against cross-protocol attacks and allows for the False
// Start (RFC 7918) optimization.
ConnectJobFactory::AlpnMode alpn_mode =
is_for_websockets_ ? ConnectJobFactory::AlpnMode::kHttp11Only
: ConnectJobFactory::AlpnMode::kHttpAll;
return connect_job_factory_->CreateConnectJob(
group_id.destination(), proxy_chain, proxy_annotation_tag,
socket_params->allowed_bad_certs(), alpn_mode, force_tunnel,
group_id.privacy_mode(), resolution_callback, request_priority,
socket_tag, group_id.network_anonymization_key(),
group_id.secure_dns_policy(), group_id.disable_cert_network_fetches(),
common_connect_job_params_, delegate);
}
} // namespace net
|