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
|
// Copyright 2023 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/base/proxy_chain.h"
#include <algorithm>
#include <ostream>
#include <vector>
#include "base/check.h"
#include "base/no_destructor.h"
#include "base/pickle.h"
#include "base/strings/stringprintf.h"
#include "build/buildflag.h"
#include "net/base/proxy_server.h"
#include "net/base/proxy_string_util.h"
#include "net/net_buildflags.h"
namespace net {
namespace {
bool ShouldAllowQuicForAllChains() {
bool should_allow = false;
#if BUILDFLAG(ENABLE_QUIC_PROXY_SUPPORT)
should_allow = true;
#endif // BUILDFLAG(ENABLE_QUIC_PROXY_SUPPORT)
return should_allow;
}
} // namespace
ProxyChain::ProxyChain() {
proxy_server_list_ = std::nullopt;
}
ProxyChain::ProxyChain(const ProxyChain& other) = default;
ProxyChain::ProxyChain(ProxyChain&& other) noexcept = default;
ProxyChain& ProxyChain::operator=(const ProxyChain& other) = default;
ProxyChain& ProxyChain::operator=(ProxyChain&& other) noexcept = default;
ProxyChain::~ProxyChain() = default;
ProxyChain::ProxyChain(ProxyServer proxy_server)
: ProxyChain(std::vector<ProxyServer>{std::move(proxy_server)}) {}
ProxyChain::ProxyChain(ProxyServer::Scheme scheme,
const HostPortPair& host_port_pair)
: ProxyChain(ProxyServer(scheme, host_port_pair)) {}
ProxyChain::ProxyChain(std::vector<ProxyServer> proxy_server_list)
: proxy_server_list_(std::move(proxy_server_list)) {
if (!IsValidInternal()) {
proxy_server_list_ = std::nullopt;
}
}
bool ProxyChain::InitFromPickle(base::PickleIterator* pickle_iter) {
if (!pickle_iter->ReadInt(&ip_protection_chain_id_)) {
return false;
}
size_t chain_length = 0;
if (!pickle_iter->ReadLength(&chain_length)) {
return false;
}
std::vector<ProxyServer> proxy_server_list;
for (size_t i = 0; i < chain_length; ++i) {
proxy_server_list.push_back(ProxyServer::CreateFromPickle(pickle_iter));
}
proxy_server_list_ = std::move(proxy_server_list);
if (!IsValidInternal()) {
proxy_server_list_ = std::nullopt;
return false;
}
return true;
}
void ProxyChain::Persist(base::Pickle* pickle) const {
DCHECK(IsValid());
pickle->WriteInt(ip_protection_chain_id_);
if (length() > static_cast<size_t>(INT_MAX) - 1) {
pickle->WriteInt(0);
return;
}
pickle->WriteInt(static_cast<int>(length()));
for (const auto& proxy_server : proxy_server_list_.value()) {
proxy_server.Persist(pickle);
}
}
const ProxyServer& ProxyChain::GetProxyServer(size_t chain_index) const {
DCHECK(IsValid());
CHECK_LT(chain_index, proxy_server_list_.value().size());
return proxy_server_list_.value().at(chain_index);
}
const std::vector<ProxyServer>& ProxyChain::proxy_servers() const {
DCHECK(IsValid());
return proxy_server_list_.value();
}
std::pair<ProxyChain, const ProxyServer&> ProxyChain::SplitLast() const {
DCHECK(IsValid());
DCHECK_NE(length(), 0u);
ProxyChain new_chain =
ProxyChain({proxy_server_list_->begin(), proxy_server_list_->end() - 1},
ip_protection_chain_id_, opaque_data_);
return std::make_pair(new_chain, std::ref(proxy_server_list_->back()));
}
ProxyChain ProxyChain::Prefix(size_t len) const {
DCHECK(IsValid());
DCHECK_LE(len, length());
return ProxyChain(
{proxy_server_list_->begin(), proxy_server_list_->begin() + len},
ip_protection_chain_id_, opaque_data_);
}
const ProxyServer& ProxyChain::First() const {
DCHECK(IsValid());
DCHECK_NE(length(), 0u);
return proxy_server_list_->front();
}
const ProxyServer& ProxyChain::Last() const {
DCHECK(IsValid());
DCHECK_NE(length(), 0u);
return proxy_server_list_->back();
}
std::string ProxyChain::ToDebugString() const {
if (!IsValid()) {
return "INVALID PROXY CHAIN";
}
std::string debug_string =
proxy_server_list_.value().empty() ? "direct://" : "";
for (const ProxyServer& proxy_server : proxy_server_list_.value()) {
if (!debug_string.empty()) {
debug_string += ", ";
}
debug_string += ProxyServerToProxyUri(proxy_server);
}
debug_string = "[" + debug_string + "]";
if (ip_protection_chain_id_ == 0) {
debug_string += " (IP Protection)";
} else if (ip_protection_chain_id_ >= 0) {
debug_string += base::StringPrintf(" (IP Protection chain %d)",
ip_protection_chain_id_);
}
if (opaque_data_.has_value()) {
debug_string += base::StringPrintf(" (Opaque data %d)", *opaque_data_);
}
return debug_string;
}
ProxyChain::ProxyChain(std::vector<ProxyServer> proxy_server_list,
int ip_protection_chain_id,
std::optional<int> opaque_data)
: proxy_server_list_(std::move(proxy_server_list)),
ip_protection_chain_id_(ip_protection_chain_id),
opaque_data_(opaque_data) {
CHECK(IsValidInternal());
}
bool ProxyChain::IsValidInternal() const {
if (!proxy_server_list_.has_value()) {
return false;
}
if (is_direct()) {
return true;
}
bool should_allow_quic =
is_for_ip_protection() || ShouldAllowQuicForAllChains();
if (is_single_proxy()) {
bool is_valid = proxy_server_list_.value().at(0).is_valid();
if (proxy_server_list_.value().at(0).is_quic()) {
is_valid = is_valid && should_allow_quic;
}
return is_valid;
}
DCHECK(is_multi_proxy());
#if !BUILDFLAG(ENABLE_BRACKETED_PROXY_URIS)
// A chain can only be multi-proxy in release builds if it is for ip
// protection.
if (!is_for_ip_protection() && is_multi_proxy()) {
return false;
}
#endif // !BUILDFLAG(ENABLE_BRACKETED_PROXY_URIS)
// Verify that the chain is zero or more SCHEME_QUIC servers followed by zero
// or more SCHEME_HTTPS servers.
bool seen_quic = false;
bool seen_https = false;
for (const auto& proxy_server : proxy_server_list_.value()) {
if (proxy_server.is_quic()) {
if (seen_https) {
// SCHEME_QUIC cannot follow SCHEME_HTTPS.
return false;
}
seen_quic = true;
} else if (proxy_server.is_https()) {
seen_https = true;
} else {
return false;
}
}
// QUIC is only allowed for IP protection unless in debug builds where it is
// generally available.
return !seen_quic || should_allow_quic;
}
std::ostream& operator<<(std::ostream& os, const ProxyChain& proxy_chain) {
return os << proxy_chain.ToDebugString();
}
} // namespace net
|