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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/api/declarative_net_request/ruleset_matcher_base.h"
#include <algorithm>
#include <string_view>
#include <tuple>
#include "base/strings/strcat.h"
#include "base/strings/string_util.h"
#include "components/url_pattern_index/flat/url_pattern_index_generated.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "extensions/browser/api/declarative_net_request/constants.h"
#include "extensions/browser/api/declarative_net_request/request_action.h"
#include "extensions/browser/api/declarative_net_request/request_params.h"
#include "extensions/browser/api/declarative_net_request/utils.h"
#include "extensions/common/api/declarative_net_request.h"
#include "net/base/url_util.h"
#include "url/gurl.h"
namespace extensions::declarative_net_request {
namespace flat_rule = url_pattern_index::flat;
namespace dnr_api = api::declarative_net_request;
namespace {
bool ShouldCollapseResourceType(flat_rule::ElementType type) {
// TODO(crbug.com/40578984): Add support for other element types like
// OBJECT.
return type == flat_rule::ElementType_IMAGE ||
type == flat_rule::ElementType_SUBDOCUMENT;
}
bool IsUpgradeableUrl(const GURL& url) {
return url.SchemeIs(url::kHttpScheme) || url.SchemeIs(url::kFtpScheme);
}
// Upgrades the url's scheme to HTTPS.
GURL GetUpgradedUrl(const GURL& url) {
DCHECK(IsUpgradeableUrl(url));
GURL::Replacements replacements;
replacements.SetSchemeStr(url::kHttpsScheme);
return url.ReplaceComponents(replacements);
}
// Returns true if the given |vec| is nullptr or empty.
template <typename T>
bool IsEmpty(const flatbuffers::Vector<T>* vec) {
return !vec || vec->size() == 0;
}
// Performs any required query transformations on the |url|. Returns true if the
// query should be modified and populates |modified_query|.
bool GetModifiedQuery(const GURL& url,
const flat::UrlTransform& transform,
std::string* modified_query) {
DCHECK(modified_query);
// |remove_query_params| should always be sorted.
DCHECK(
IsEmpty(transform.remove_query_params()) ||
std::is_sorted(transform.remove_query_params()->begin(),
transform.remove_query_params()->end(),
[](const flatbuffers::String* x1,
const flatbuffers::String* x2) { return *x1 < *x2; }));
// Return early if there's nothing to modify.
if (IsEmpty(transform.remove_query_params()) &&
IsEmpty(transform.add_or_replace_query_params())) {
return false;
}
std::vector<std::string_view> remove_query_params;
if (!IsEmpty(transform.remove_query_params())) {
remove_query_params.reserve(transform.remove_query_params()->size());
for (const ::flatbuffers::String* str : *transform.remove_query_params()) {
remove_query_params.push_back(str->string_view());
}
}
// We don't use a map from keys to vector of values to ensure the relative
// order of different params specified by the extension is respected. We use a
// std::list to support fast removal from middle of the list. Note that the
// key value pairs should already be escaped.
struct QueryReplace {
std::string_view key;
std::string_view value;
bool replace_only = false;
};
std::list<QueryReplace> add_or_replace_query_params;
if (!IsEmpty(transform.add_or_replace_query_params())) {
for (const flat::QueryKeyValue* query_pair :
*transform.add_or_replace_query_params()) {
DCHECK(query_pair->key());
DCHECK(query_pair->value());
add_or_replace_query_params.emplace_back(QueryReplace{
query_pair->key()->string_view(), query_pair->value()->string_view(),
query_pair->replace_only()});
}
}
std::vector<std::string> query_parts;
auto create_query_part = [](std::string_view key,
std::string_view value) -> std::string {
return base::StrCat({key, "=", value});
};
bool query_changed = false;
for (net::QueryIterator it(url); !it.IsAtEnd(); it.Advance()) {
const std::string_view key = it.GetKey();
// Remove query param.
if (std::binary_search(remove_query_params.begin(),
remove_query_params.end(), key)) {
query_changed = true;
continue;
}
auto replace_iterator =
std::ranges::find(add_or_replace_query_params, key, &QueryReplace::key);
// Nothing to do.
if (replace_iterator == add_or_replace_query_params.end()) {
query_parts.push_back(create_query_part(key, it.GetValue()));
continue;
}
// Replace query param.
query_changed = true;
query_parts.push_back(create_query_part(key, replace_iterator->value));
add_or_replace_query_params.erase(replace_iterator);
}
// Append any remaining query params.
for (const auto& params : add_or_replace_query_params) {
if (!params.replace_only) {
query_parts.push_back(create_query_part(params.key, params.value));
query_changed = true;
}
}
if (!query_changed) {
return false;
}
*modified_query = base::JoinString(query_parts, "&");
return true;
}
GURL GetTransformedURL(const RequestParams& params,
const flat::UrlTransform& transform) {
GURL::Replacements replacements;
if (transform.scheme()) {
replacements.SetSchemeStr(transform.scheme()->string_view());
}
if (transform.host()) {
replacements.SetHostStr(transform.host()->string_view());
}
DCHECK(!(transform.clear_port() && transform.port()));
if (transform.clear_port()) {
replacements.ClearPort();
} else if (transform.port()) {
replacements.SetPortStr(transform.port()->string_view());
}
DCHECK(!(transform.clear_path() && transform.path()));
if (transform.clear_path()) {
replacements.ClearPath();
} else if (transform.path()) {
replacements.SetPathStr(transform.path()->string_view());
}
// |query| is defined outside the if conditions since url::Replacements does
// not own the strings it uses.
std::string query;
if (transform.clear_query()) {
replacements.ClearQuery();
} else if (transform.query()) {
replacements.SetQueryStr(transform.query()->string_view());
} else if (GetModifiedQuery(*params.url, transform, &query)) {
if (query.empty()) {
replacements.ClearQuery();
} else {
replacements.SetQueryStr(query);
}
}
DCHECK(!(transform.clear_fragment() && transform.fragment()));
if (transform.clear_fragment()) {
replacements.ClearRef();
} else if (transform.fragment()) {
replacements.SetRefStr(transform.fragment()->string_view());
}
if (transform.password()) {
replacements.SetPasswordStr(transform.password()->string_view());
}
if (transform.username()) {
replacements.SetUsernameStr(transform.username()->string_view());
}
return params.url->ReplaceComponents(replacements);
}
} // namespace
RulesetMatcherBase::RulesetMatcherBase(const ExtensionId& extension_id,
RulesetID ruleset_id)
: extension_id_(extension_id), ruleset_id_(ruleset_id) {}
RulesetMatcherBase::~RulesetMatcherBase() = default;
std::optional<RequestAction> RulesetMatcherBase::GetAction(
const RequestParams& params,
RulesetMatchingStage stage) const {
std::optional<RequestAction> action =
GetActionIgnoringAncestors(params, stage);
std::optional<RequestAction> parent_action =
GetAllowlistedFrameAction(params.parent_routing_id);
return GetMaxPriorityAction(std::move(action), std::move(parent_action));
}
void RulesetMatcherBase::OnRenderFrameCreated(content::RenderFrameHost* host) {
DCHECK(host);
content::RenderFrameHost* parent = host->GetParentOrOuterDocument();
if (!parent) {
return;
}
// Some frames like srcdoc frames inherit URLLoaderFactories from their
// parents and can make network requests before a corresponding navigation
// commit for the frame is received in the browser (via DidFinishNavigation).
// Hence if the parent frame is allowlisted, we allow list the current frame
// as well in OnRenderFrameCreated.
std::optional<RequestAction> parent_action =
GetAllowlistedFrameAction(parent->GetGlobalId());
if (!parent_action) {
return;
}
bool inserted = false;
std::tie(std::ignore, inserted) = allowlisted_frames_.insert(
std::make_pair(host->GetGlobalId(), std::move(*parent_action)));
DCHECK(inserted);
}
void RulesetMatcherBase::OnRenderFrameDeleted(content::RenderFrameHost* host) {
DCHECK(host);
allowlisted_frames_.erase(host->GetGlobalId());
}
void RulesetMatcherBase::OnDidFinishNavigation(
content::NavigationHandle* navigation_handle) {
content::RenderFrameHost* host = navigation_handle->GetRenderFrameHost();
// Note: we only start tracking frames on navigation, since a document only
// issues network requests after the corresponding navigation is committed.
// Hence we need not listen to OnRenderFrameCreated.
DCHECK(host);
RequestParams params(host, navigation_handle->IsPost(),
/*response_headers=*/nullptr);
// Find the highest priority allowAllRequests action corresponding to this
// frame for rules that match in the onBeforeRequest request stage.
std::optional<RequestAction> frame_action =
GetAllowAllRequestsAction(params, RulesetMatchingStage::kOnBeforeRequest);
// The only navigation requests that match DNR rules in the OnHeadersReceived
// request phase are HTTP/HTTPS and will have response headers. So in this
// method, if a navigation request:
// - has response headers, then match it against rules for both the
// `kOnBeforeRequest` and `kOnHeadersReceived` stages.
// - has no response headers, then only match against rule for the
// `kOnBeforeRequest` stage.
// TODO(crbug.com/331846139): Add filtering logic to limit which requests can
// be matched here, similar to what's done in the webrequest event router for
// OnBeforeRequest and OnHeadersReceived.
if (navigation_handle->GetResponseHeaders()) {
// The allow rule cache from `params` does not need to be copied into
// `params_with_headers` since it won't have an effect on the final value of
// `frame_action`.
RequestParams params_with_headers(host, navigation_handle->IsPost(),
navigation_handle->GetResponseHeaders());
// Take the matching allowAllRequests action with the highest priority
// between all ruleset matching stages that this navigation request can be
// matched against.
frame_action = GetMaxPriorityAction(
std::move(frame_action),
GetAllowAllRequestsAction(params_with_headers,
RulesetMatchingStage::kOnHeadersReceived));
}
std::optional<RequestAction> action =
GetMaxPriorityAction(GetAllowlistedFrameAction(params.parent_routing_id),
std::move(frame_action));
content::GlobalRenderFrameHostId frame_id = host->GetGlobalId();
allowlisted_frames_.erase(frame_id);
if (action) {
allowlisted_frames_.insert(std::make_pair(frame_id, std::move(*action)));
}
}
std::optional<RequestAction>
RulesetMatcherBase::GetAllowlistedFrameActionForTesting(
content::RenderFrameHost* host) const {
DCHECK(host);
return GetAllowlistedFrameAction(host->GetGlobalId());
}
RequestAction RulesetMatcherBase::CreateBlockOrCollapseRequestAction(
const RequestParams& params,
const flat_rule::UrlRule& rule) const {
return CreateRequestAction(ShouldCollapseResourceType(params.element_type)
? RequestAction::Type::COLLAPSE
: RequestAction::Type::BLOCK,
rule);
}
RequestAction RulesetMatcherBase::CreateAllowAction(
const RequestParams& params,
const flat_rule::UrlRule& rule) const {
return CreateRequestAction(RequestAction::Type::ALLOW, rule);
}
RequestAction RulesetMatcherBase::CreateAllowAllRequestsAction(
const RequestParams& params,
const url_pattern_index::flat::UrlRule& rule) const {
return CreateRequestAction(RequestAction::Type::ALLOW_ALL_REQUESTS, rule);
}
std::optional<RequestAction> RulesetMatcherBase::CreateUpgradeAction(
const RequestParams& params,
const url_pattern_index::flat::UrlRule& rule) const {
if (!IsUpgradeableUrl(*params.url)) {
// TODO(crbug.com/40111509): this results in counterintuitive behavior.
return std::nullopt;
}
RequestAction upgrade_action =
CreateRequestAction(RequestAction::Type::UPGRADE, rule);
upgrade_action.redirect_url = GetUpgradedUrl(*params.url);
return upgrade_action;
}
std::optional<RequestAction>
RulesetMatcherBase::CreateRedirectActionFromMetadata(
const RequestParams& params,
const url_pattern_index::flat::UrlRule& rule,
const ExtensionMetadataList& metadata_list) const {
// Find the UrlRuleMetadata corresponding to |rule|. Since |metadata_list| is
// sorted by rule id, use LookupByKey which binary searches for fast lookup.
const flat::UrlRuleMetadata* metadata = metadata_list.LookupByKey(rule.id());
// There must be a UrlRuleMetadata object corresponding to the |rule|.
DCHECK(metadata);
DCHECK_EQ(metadata->id(), rule.id());
DCHECK(metadata->redirect_url() || metadata->transform());
GURL redirect_url;
if (metadata->redirect_url()) {
redirect_url = GURL(metadata->redirect_url()->string_view());
} else {
redirect_url = GetTransformedURL(params, *metadata->transform());
}
// Sanity check that we don't redirect to a javascript url. Specifying
// redirect to a javascript url and specifying javascript as a transform
// scheme is prohibited. In addition extensions can't intercept requests to
// javascript urls. Hence we should never end up with a javascript url here.
DCHECK(!redirect_url.SchemeIs(url::kJavaScriptScheme));
return CreateRedirectAction(params, rule, std::move(redirect_url));
}
std::optional<RequestAction> RulesetMatcherBase::CreateRedirectAction(
const RequestParams& params,
const url_pattern_index::flat::UrlRule& rule,
GURL redirect_url) const {
// Redirecting WebSocket handshake request is prohibited.
// TODO(crbug.com/40111509): this results in counterintuitive behavior.
if (params.element_type == flat_rule::ElementType_WEBSOCKET) {
return std::nullopt;
}
// Prevent a redirect loop where a URL continuously redirects to itself.
if (!redirect_url.is_valid() || *params.url == redirect_url) {
return std::nullopt;
}
RequestAction redirect_action =
CreateRequestAction(RequestAction::Type::REDIRECT, rule);
redirect_action.redirect_url = std::move(redirect_url);
return redirect_action;
}
std::vector<RequestAction>
RulesetMatcherBase::GetModifyHeadersActionsFromMetadata(
const RequestParams& params,
const std::vector<const url_pattern_index::flat::UrlRule*>& rules,
const ExtensionMetadataList& metadata_list) const {
using FlatHeaderList = flatbuffers::Vector<flatbuffers::Offset<
extensions::declarative_net_request::flat::ModifyHeaderInfo>>;
// Helper method to convert a list of headers from a rule's metadata to a list
// of RequestAction::HeaderInfo.
auto get_headers_for_action = [](const FlatHeaderList& headers_for_rule) {
std::vector<RequestAction::HeaderInfo> headers_for_action;
for (const auto* flat_header_info : headers_for_rule) {
headers_for_action.emplace_back(*flat_header_info);
}
return headers_for_action;
};
std::vector<RequestAction> actions;
for (const auto* rule : rules) {
const flat::UrlRuleMetadata* metadata =
metadata_list.LookupByKey(rule->id());
DCHECK(metadata);
DCHECK_EQ(metadata->id(), rule->id());
RequestAction action =
CreateRequestAction(RequestAction::Type::MODIFY_HEADERS, *rule);
action.request_headers_to_modify =
get_headers_for_action(*metadata->request_headers());
action.response_headers_to_modify =
get_headers_for_action(*metadata->response_headers());
actions.push_back(std::move(action));
}
return actions;
}
RequestAction RulesetMatcherBase::CreateRequestAction(
RequestAction::Type type,
const flat_rule::UrlRule& rule) const {
return RequestAction(type, rule.id(), rule.priority(), ruleset_id(),
extension_id());
}
std::optional<RequestAction> RulesetMatcherBase::GetAllowlistedFrameAction(
content::GlobalRenderFrameHostId frame_id) const {
auto it = allowlisted_frames_.find(frame_id);
if (it == allowlisted_frames_.end()) {
return std::nullopt;
}
return it->second.Clone();
}
} // namespace extensions::declarative_net_request
|