1 // Copyright (c) 2011 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.
5 #include "net/proxy/proxy_bypass_rules.h"
7 #include "base/stl_util.h"
8 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/string_piece.h"
10 #include "base/strings/string_tokenizer.h"
11 #include "base/strings/string_util.h"
12 #include "base/strings/stringprintf.h"
13 #include "net/base/host_port_pair.h"
14 #include "net/base/net_util.h"
20 class HostnamePatternRule
: public ProxyBypassRules::Rule
{
22 HostnamePatternRule(const std::string
& optional_scheme
,
23 const std::string
& hostname_pattern
,
25 : optional_scheme_(base::StringToLowerASCII(optional_scheme
)),
26 hostname_pattern_(base::StringToLowerASCII(hostname_pattern
)),
27 optional_port_(optional_port
) {
30 bool Matches(const GURL
& url
) const override
{
31 if (optional_port_
!= -1 && url
.EffectiveIntPort() != optional_port_
)
32 return false; // Didn't match port expectation.
34 if (!optional_scheme_
.empty() && url
.scheme() != optional_scheme_
)
35 return false; // Didn't match scheme expectation.
37 // Note it is necessary to lower-case the host, since GURL uses capital
38 // letters for percent-escaped characters.
39 return MatchPattern(base::StringToLowerASCII(url
.host()),
43 std::string
ToString() const override
{
45 if (!optional_scheme_
.empty())
46 base::StringAppendF(&str
, "%s://", optional_scheme_
.c_str());
47 str
+= hostname_pattern_
;
48 if (optional_port_
!= -1)
49 base::StringAppendF(&str
, ":%d", optional_port_
);
53 Rule
* Clone() const override
{
54 return new HostnamePatternRule(optional_scheme_
,
60 const std::string optional_scheme_
;
61 const std::string hostname_pattern_
;
62 const int optional_port_
;
65 class BypassLocalRule
: public ProxyBypassRules::Rule
{
67 bool Matches(const GURL
& url
) const override
{
68 const std::string
& host
= url
.host();
69 if (host
== "127.0.0.1" || host
== "[::1]")
71 return host
.find('.') == std::string::npos
;
74 std::string
ToString() const override
{ return "<local>"; }
76 Rule
* Clone() const override
{ return new BypassLocalRule(); }
79 // Rule for matching a URL that is an IP address, if that IP address falls
80 // within a certain numeric range. For example, you could use this rule to
81 // match all the IPs in the CIDR block 10.10.3.4/24.
82 class BypassIPBlockRule
: public ProxyBypassRules::Rule
{
84 // |ip_prefix| + |prefix_length| define the IP block to match.
85 BypassIPBlockRule(const std::string
& description
,
86 const std::string
& optional_scheme
,
87 const IPAddressNumber
& ip_prefix
,
88 size_t prefix_length_in_bits
)
89 : description_(description
),
90 optional_scheme_(optional_scheme
),
91 ip_prefix_(ip_prefix
),
92 prefix_length_in_bits_(prefix_length_in_bits
) {
95 bool Matches(const GURL
& url
) const override
{
96 if (!url
.HostIsIPAddress())
99 if (!optional_scheme_
.empty() && url
.scheme() != optional_scheme_
)
100 return false; // Didn't match scheme expectation.
102 // Parse the input IP literal to a number.
103 IPAddressNumber ip_number
;
104 if (!ParseIPLiteralToNumber(url
.HostNoBrackets(), &ip_number
))
107 // Test if it has the expected prefix.
108 return IPNumberMatchesPrefix(ip_number
, ip_prefix_
,
109 prefix_length_in_bits_
);
112 std::string
ToString() const override
{ return description_
; }
114 Rule
* Clone() const override
{
115 return new BypassIPBlockRule(description_
,
118 prefix_length_in_bits_
);
122 const std::string description_
;
123 const std::string optional_scheme_
;
124 const IPAddressNumber ip_prefix_
;
125 const size_t prefix_length_in_bits_
;
128 // Returns true if the given string represents an IP address.
129 // IPv6 addresses are expected to be bracketed.
130 bool IsIPAddress(const std::string
& domain
) {
131 // From GURL::HostIsIPAddress()
132 url::RawCanonOutputT
<char, 128> ignored_output
;
133 url::CanonHostInfo host_info
;
134 url::Component
domain_comp(0, domain
.size());
135 url::CanonicalizeIPAddress(domain
.c_str(), domain_comp
, &ignored_output
,
137 return host_info
.IsIPAddress();
142 ProxyBypassRules::Rule::Rule() {
145 ProxyBypassRules::Rule::~Rule() {
148 bool ProxyBypassRules::Rule::Equals(const Rule
& rule
) const {
149 return ToString() == rule
.ToString();
152 ProxyBypassRules::ProxyBypassRules() {
155 ProxyBypassRules::ProxyBypassRules(const ProxyBypassRules
& rhs
) {
159 ProxyBypassRules::~ProxyBypassRules() {
163 ProxyBypassRules
& ProxyBypassRules::operator=(const ProxyBypassRules
& rhs
) {
168 bool ProxyBypassRules::Matches(const GURL
& url
) const {
169 for (RuleList::const_iterator it
= rules_
.begin(); it
!= rules_
.end(); ++it
) {
170 if ((*it
)->Matches(url
))
176 bool ProxyBypassRules::Equals(const ProxyBypassRules
& other
) const {
177 if (rules_
.size() != other
.rules_
.size())
180 for (size_t i
= 0; i
< rules_
.size(); ++i
) {
181 if (!rules_
[i
]->Equals(*other
.rules_
[i
]))
187 void ProxyBypassRules::ParseFromString(const std::string
& raw
) {
188 ParseFromStringInternal(raw
, false);
191 void ProxyBypassRules::ParseFromStringUsingSuffixMatching(
192 const std::string
& raw
) {
193 ParseFromStringInternal(raw
, true);
196 bool ProxyBypassRules::AddRuleForHostname(const std::string
& optional_scheme
,
197 const std::string
& hostname_pattern
,
199 if (hostname_pattern
.empty())
202 rules_
.push_back(new HostnamePatternRule(optional_scheme
,
208 void ProxyBypassRules::AddRuleToBypassLocal() {
209 rules_
.push_back(new BypassLocalRule
);
212 bool ProxyBypassRules::AddRuleFromString(const std::string
& raw
) {
213 return AddRuleFromStringInternalWithLogging(raw
, false);
216 bool ProxyBypassRules::AddRuleFromStringUsingSuffixMatching(
217 const std::string
& raw
) {
218 return AddRuleFromStringInternalWithLogging(raw
, true);
221 std::string
ProxyBypassRules::ToString() const {
223 for (RuleList::const_iterator
rule(rules_
.begin());
224 rule
!= rules_
.end();
226 result
+= (*rule
)->ToString();
232 void ProxyBypassRules::Clear() {
233 STLDeleteElements(&rules_
);
236 void ProxyBypassRules::AssignFrom(const ProxyBypassRules
& other
) {
239 // Make a copy of the rules list.
240 for (RuleList::const_iterator it
= other
.rules_
.begin();
241 it
!= other
.rules_
.end(); ++it
) {
242 rules_
.push_back((*it
)->Clone());
246 void ProxyBypassRules::ParseFromStringInternal(
247 const std::string
& raw
,
248 bool use_hostname_suffix_matching
) {
251 base::StringTokenizer
entries(raw
, ",;");
252 while (entries
.GetNext()) {
253 AddRuleFromStringInternalWithLogging(entries
.token(),
254 use_hostname_suffix_matching
);
258 bool ProxyBypassRules::AddRuleFromStringInternal(
259 const std::string
& raw_untrimmed
,
260 bool use_hostname_suffix_matching
) {
262 base::TrimWhitespaceASCII(raw_untrimmed
, base::TRIM_ALL
, &raw
);
264 // This is the special syntax used by WinInet's bypass list -- we allow it
265 // on all platforms and interpret it the same way.
266 if (LowerCaseEqualsASCII(raw
, "<local>")) {
267 AddRuleToBypassLocal();
271 // Extract any scheme-restriction.
272 std::string::size_type scheme_pos
= raw
.find("://");
274 if (scheme_pos
!= std::string::npos
) {
275 scheme
= raw
.substr(0, scheme_pos
);
276 raw
= raw
.substr(scheme_pos
+ 3);
284 // If there is a forward slash in the input, it is probably a CIDR style
286 if (raw
.find('/') != std::string::npos
) {
287 IPAddressNumber ip_prefix
;
288 size_t prefix_length_in_bits
;
290 if (!ParseCIDRBlock(raw
, &ip_prefix
, &prefix_length_in_bits
))
294 new BypassIPBlockRule(raw
, scheme
, ip_prefix
, prefix_length_in_bits
));
299 // Check if we have an <ip-address>[:port] input. We need to treat this
300 // separately since the IP literal may not be in a canonical form.
303 if (ParseHostAndPort(raw
, &host
, &port
)) {
304 // Note that HostPortPair is used to merely to convert any IPv6 literals to
305 // a URL-safe format that can be used by canonicalization below.
306 std::string bracketed_host
= HostPortPair(host
, 80).HostForURL();
307 if (IsIPAddress(bracketed_host
)) {
308 // Canonicalize the IP literal before adding it as a string pattern.
309 GURL
tmp_url("http://" + bracketed_host
);
310 return AddRuleForHostname(scheme
, tmp_url
.host(), port
);
314 // Otherwise assume we have <hostname-pattern>[:port].
315 std::string::size_type pos_colon
= raw
.rfind(':');
318 if (pos_colon
!= std::string::npos
) {
319 if (!base::StringToInt(base::StringPiece(raw
.begin() + pos_colon
+ 1,
322 (port
< 0 || port
> 0xFFFF)) {
323 return false; // Port was invalid.
325 raw
= raw
.substr(0, pos_colon
);
328 // Special-case hostnames that begin with a period.
329 // For example, we remap ".google.com" --> "*.google.com".
330 if (StartsWithASCII(raw
, ".", false))
333 // If suffix matching was asked for, make sure the pattern starts with a
335 if (use_hostname_suffix_matching
&& !StartsWithASCII(raw
, "*", false))
338 return AddRuleForHostname(scheme
, raw
, port
);
341 bool ProxyBypassRules::AddRuleFromStringInternalWithLogging(
342 const std::string
& raw
,
343 bool use_hostname_suffix_matching
) {
344 return AddRuleFromStringInternal(raw
, use_hostname_suffix_matching
);