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 241 242 243 244 245 246 247 248 249
|
// 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.
#ifndef NET_PROXY_RESOLUTION_PROXY_CONFIG_H_
#define NET_PROXY_RESOLUTION_PROXY_CONFIG_H_
#include <string>
#include "net/base/net_export.h"
#include "net/base/proxy_server.h"
#include "net/proxy_resolution/proxy_bypass_rules.h"
#include "net/proxy_resolution/proxy_list.h"
#include "url/gurl.h"
namespace base {
class Value;
}
namespace net {
class ProxyInfo;
// ProxyConfig describes a user's proxy settings.
//
// There are two categories of proxy settings:
// (1) Automatic (indicates the methods to obtain a PAC script)
// (2) Manual (simple set of proxy servers per scheme, and bypass patterns)
//
// When both automatic and manual settings are specified, the Automatic ones
// take precedence over the manual ones.
//
// For more details see:
// http://www.chromium.org/developers/design-documents/network-stack/proxy-settings-fallback
class NET_EXPORT ProxyConfig {
public:
// ProxyRules describes the "manual" proxy settings.
struct NET_EXPORT ProxyRules {
// A `Type` other than `EMPTY` does not guarantee the presence of a valid
// proxy chain.
enum class Type {
EMPTY,
PROXY_LIST,
PROXY_LIST_PER_SCHEME,
};
// Note that the default of Type::EMPTY results in direct connections
// being made when using this ProxyConfig.
ProxyRules();
ProxyRules(const ProxyRules& other);
~ProxyRules();
bool empty() const { return type == Type::EMPTY; }
// Sets |result| with the proxies to use for |url| based on the current
// rules.
void Apply(const GURL& url, ProxyInfo* result) const;
// Parses the rules from a string, indicating which proxies to use.
//
// proxy-uri = [<proxy-scheme>"://"]<proxy-host>[":"<proxy-port>]
//
// proxy-uri-list = <proxy-uri>[","<proxy-uri-list>]
//
// url-scheme = "http" | "https" | "ftp" | "socks"
//
// scheme-proxies = [<url-scheme>"="]<proxy-uri-list>
//
// proxy-rules = scheme-proxies[";"<scheme-proxies>]
//
// Thus, the proxy-rules string should be a semicolon-separated list of
// ordered proxies that apply to a particular URL scheme. Unless specified,
// the proxy scheme for proxy-uris is assumed to be http.
//
// Some special cases:
// * If the scheme is omitted from the first proxy list, that list applies
// to all URL schemes and subsequent lists are ignored.
// * If a scheme is omitted from any proxy list after a list where a scheme
// has been provided, the list without a scheme is ignored.
// * If the url-scheme is set to 'socks', that sets a fallback list that
// to all otherwise unspecified url-schemes, however the default proxy-
// scheme for proxy urls in the 'socks' list is understood to be
// socks4:// if unspecified.
// * In debug mode, allow_bracketed_proxy_chains can be set to true. In
// this case, brackets can be used to format multi-proxy chains.
//
// For example:
// "http=foopy:80;ftp=foopy2" -- use HTTP proxy "foopy:80" for http://
// URLs, and HTTP proxy "foopy2:80" for
// ftp:// URLs.
// "foopy:80" -- use HTTP proxy "foopy:80" for all URLs.
// "foopy:80,bar,direct://" -- use HTTP proxy "foopy:80" for all URLs,
// failing over to "bar" if "foopy:80" is
// unavailable, and after that using no
// proxy.
// "socks4://foopy" -- use SOCKS v4 proxy "foopy:1080" for all
// URLs.
// "http=foop,socks5://bar.com -- use HTTP proxy "foopy" for http URLs,
// and fail over to the SOCKS5 proxy
// "bar.com" if "foop" is unavailable.
// "http=foopy,direct:// -- use HTTP proxy "foopy" for http URLs,
// and use no proxy if "foopy" is
// unavailable.
// "http=foopy;socks=foopy2 -- use HTTP proxy "foopy" for http URLs,
// and use socks4://foopy2 for all other
// URLs.
void ParseFromString(std::string_view proxy_rules,
bool allow_bracketed_proxy_chains = false,
bool is_quic_allowed = false);
// Returns one of {&proxies_for_http, &proxies_for_https, &proxies_for_ftp,
// &fallback_proxies}, or NULL if there is no proxy to use.
// Should only call this if the type is Type::PROXY_LIST_PER_SCHEME.
const ProxyList* MapUrlSchemeToProxyList(
const std::string& url_scheme) const;
// Returns true if |*this| describes the same configuration as |other|.
bool Equals(const ProxyRules& other) const;
static ProxyRules CreateForTesting(const ProxyList& proxy_list) {
ProxyRules proxy_rules;
proxy_rules.type = Type::PROXY_LIST;
proxy_rules.single_proxies = proxy_list;
return proxy_rules;
}
// Exceptions for when not to use a proxy.
ProxyBypassRules bypass_rules;
// Reverse the meaning of |bypass_rules|.
bool reverse_bypass = false;
Type type = Type::EMPTY;
// Set if |type| is Type::PROXY_LIST.
ProxyList single_proxies;
// Set if |type| is Type::PROXY_LIST_PER_SCHEME.
ProxyList proxies_for_http;
ProxyList proxies_for_https;
ProxyList proxies_for_ftp;
// Used when a fallback has been defined and the url to be proxied doesn't
// match any of the standard schemes.
ProxyList fallback_proxies;
private:
// Returns one of {&proxies_for_http, &proxies_for_https, &proxies_for_ftp}
// or NULL if it is a scheme that we don't have a mapping for. Should only
// call this if the type is Type::PROXY_LIST_PER_SCHEME. Intentionally
// returns NULL for "ws" and "wss" as those are handled specially by
// GetProxyListForWebSocketScheme().
ProxyList* MapUrlSchemeToProxyListNoFallback(std::string_view scheme);
// Returns the first of {&fallback_proxies, &proxies_for_https,
// &proxies_for_http} that is non-empty, or NULL.
const ProxyList* GetProxyListForWebSocketScheme() const;
};
ProxyConfig();
ProxyConfig(const ProxyConfig& config);
ProxyConfig(ProxyConfig&& config);
ProxyConfig& operator=(const ProxyConfig& config);
ProxyConfig& operator=(ProxyConfig&& config);
~ProxyConfig();
// Returns true if the given config is equivalent to this config.
bool Equals(const ProxyConfig& other) const;
// Returns true if this config contains any "automatic" settings. See the
// class description for what that means.
bool HasAutomaticSettings() const;
void ClearAutomaticSettings();
// Creates a Value dump of this configuration.
base::Value ToValue() const;
ProxyRules& proxy_rules() { return proxy_rules_; }
const ProxyRules& proxy_rules() const { return proxy_rules_; }
void set_pac_url(const GURL& url) { pac_url_ = url; }
const GURL& pac_url() const { return pac_url_; }
void set_pac_mandatory(bool enable_pac_mandatory) {
pac_mandatory_ = enable_pac_mandatory;
}
bool pac_mandatory() const { return pac_mandatory_; }
bool has_pac_url() const { return pac_url_.is_valid(); }
void set_auto_detect(bool enable_auto_detect) {
auto_detect_ = enable_auto_detect;
}
bool auto_detect() const { return auto_detect_; }
void set_from_system(bool from_system) { from_system_ = from_system; }
bool from_system() const { return from_system_; }
// Helpers to construct some common proxy configurations.
static ProxyConfig CreateDirect() { return ProxyConfig(); }
static ProxyConfig CreateAutoDetect() {
ProxyConfig config;
config.set_auto_detect(true);
return config;
}
static ProxyConfig CreateFromCustomPacURL(const GURL& pac_url) {
ProxyConfig config;
config.set_pac_url(pac_url);
// By default fall back to direct connection in case PAC script fails.
config.set_pac_mandatory(false);
return config;
}
static ProxyConfig CreateForTesting(const ProxyList& proxy_list) {
ProxyConfig config;
config.proxy_rules_ = ProxyRules::CreateForTesting(proxy_list);
return config;
}
private:
// True if the proxy configuration should be auto-detected.
bool auto_detect_ = false;
// True if the proxy configuration was created from system settings.
bool from_system_ = false;
// If non-empty, indicates the URL of the proxy auto-config file to use.
GURL pac_url_;
// If true, blocks all traffic in case fetching the PAC script from |pac_url_|
// fails. Only valid if |pac_url_| is non-empty.
bool pac_mandatory_ = false;
// Manual proxy settings.
ProxyRules proxy_rules_;
};
} // namespace net
#endif // NET_PROXY_RESOLUTION_PROXY_CONFIG_H_
|