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 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
|
/*
* Copyright (C) 2010 Apple Inc. All Rights Reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "third_party/blink/renderer/platform/weborigin/scheme_registry.h"
#include <algorithm>
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/web/blink.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
#include "third_party/blink/renderer/platform/wtf/thread_specific.h"
#include "third_party/blink/renderer/platform/wtf/threading.h"
#include "url/url_util.h"
namespace blink {
// Function defined in third_party/blink/public/web/blink.h.
void SetDomainRelaxationForbiddenForTest(bool forbidden,
const WebString& scheme) {
SchemeRegistry::SetDomainRelaxationForbiddenForURLSchemeForTest(
forbidden, String(scheme));
}
// Function defined in third_party/blink/public/web/blink.h.
void ResetDomainRelaxationForTest() {
SchemeRegistry::ResetDomainRelaxationForTest();
}
namespace {
struct PolicyAreasHashTraits : HashTraits<SchemeRegistry::PolicyAreas> {
static const bool kEmptyValueIsZero = true;
static SchemeRegistry::PolicyAreas EmptyValue() {
return SchemeRegistry::kPolicyAreaNone;
}
};
class URLSchemesRegistry final {
USING_FAST_MALLOC(URLSchemesRegistry);
public:
URLSchemesRegistry()
: // For ServiceWorker schemes: HTTP is required because http://localhost
// is considered secure. Additional checks are performed to ensure that
// other http pages are filtered out.
service_worker_schemes({"http", "https"}),
fetch_api_schemes({"http", "https"}),
allowed_in_referrer_schemes({"http", "https"}) {
for (auto& scheme : url::GetCorsEnabledSchemes())
cors_enabled_schemes.insert(scheme.c_str());
for (auto& scheme : url::GetCSPBypassingSchemes()) {
content_security_policy_bypassing_schemes.insert(
scheme.c_str(), SchemeRegistry::kPolicyAreaAll);
}
for (auto& scheme : url::GetEmptyDocumentSchemes())
empty_document_schemes.insert(scheme.c_str());
}
~URLSchemesRegistry() = default;
// As URLSchemesRegistry is accessed from multiple threads, be very careful to
// ensure that
// - URLSchemesRegistry is initialized/modified through
// GetMutableURLSchemesRegistry() before threads can be created, and
// - The URLSchemesRegistry members below aren't modified when accessed after
// initialization.
URLSchemesSet display_isolated_url_schemes;
URLSchemesSet empty_document_schemes;
URLSchemesSet schemes_forbidden_from_domain_relaxation;
URLSchemesSet not_allowing_javascript_urls_schemes;
URLSchemesSet cors_enabled_schemes;
URLSchemesSet service_worker_schemes;
URLSchemesSet fetch_api_schemes;
URLSchemesSet first_party_when_top_level_schemes;
URLSchemesSet first_party_when_top_level_with_secure_embedded_schemes;
URLSchemesMap<SchemeRegistry::PolicyAreas, PolicyAreasHashTraits>
content_security_policy_bypassing_schemes;
URLSchemesSet secure_context_bypassing_schemes;
URLSchemesSet allowed_in_referrer_schemes;
URLSchemesSet error_schemes;
URLSchemesSet wasm_eval_csp_schemes;
URLSchemesSet allowing_shared_array_buffer_schemes;
URLSchemesSet web_ui_schemes;
URLSchemesSet code_cache_with_hashing_schemes;
URLSchemesSet webui_bundled_bytecode_schemes;
private:
friend const URLSchemesRegistry& GetURLSchemesRegistry();
friend URLSchemesRegistry& GetMutableURLSchemesRegistry();
friend URLSchemesRegistry& GetMutableURLSchemesRegistryForTest();
static URLSchemesRegistry& GetInstance() {
DEFINE_THREAD_SAFE_STATIC_LOCAL(URLSchemesRegistry, schemes, ());
return schemes;
}
};
const URLSchemesRegistry& GetURLSchemesRegistry() {
return URLSchemesRegistry::GetInstance();
}
URLSchemesRegistry& GetMutableURLSchemesRegistry() {
#if DCHECK_IS_ON()
DCHECK(WTF::IsBeforeThreadCreated());
#endif
return URLSchemesRegistry::GetInstance();
}
URLSchemesRegistry& GetMutableURLSchemesRegistryForTest() {
// Bypasses thread check. This is used when TestRunner tries to mutate
// schemes_forbidden_from_domain_relaxation during a test or on resetting
// its internal states.
return URLSchemesRegistry::GetInstance();
}
} // namespace
void SchemeRegistry::RegisterURLSchemeAsDisplayIsolated(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().display_isolated_url_schemes.insert(scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsDisplayIsolated(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().display_isolated_url_schemes.Contains(scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsRestrictingMixedContent(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
return scheme == "https";
}
bool SchemeRegistry::ShouldLoadURLSchemeAsEmptyDocument(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().empty_document_schemes.Contains(scheme);
}
void SchemeRegistry::SetDomainRelaxationForbiddenForURLSchemeForTest(
bool forbidden,
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return;
if (forbidden) {
GetMutableURLSchemesRegistryForTest()
.schemes_forbidden_from_domain_relaxation.insert(scheme);
} else {
GetMutableURLSchemesRegistryForTest()
.schemes_forbidden_from_domain_relaxation.erase(scheme);
}
}
void SchemeRegistry::ResetDomainRelaxationForTest() {
GetMutableURLSchemesRegistryForTest()
.schemes_forbidden_from_domain_relaxation.clear();
}
bool SchemeRegistry::IsDomainRelaxationForbiddenForURLScheme(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry()
.schemes_forbidden_from_domain_relaxation.Contains(scheme);
}
bool SchemeRegistry::CanDisplayOnlyIfCanRequest(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
return scheme == "blob" || scheme == "filesystem";
}
void SchemeRegistry::RegisterURLSchemeAsNotAllowingJavascriptURLs(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().not_allowing_javascript_urls_schemes.insert(
scheme);
}
void SchemeRegistry::RemoveURLSchemeAsNotAllowingJavascriptURLs(
const String& scheme) {
GetMutableURLSchemesRegistry().not_allowing_javascript_urls_schemes.erase(
scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsNotAllowingJavascriptURLs(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().not_allowing_javascript_urls_schemes.Contains(
scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsCorsEnabled(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().cors_enabled_schemes.Contains(scheme);
}
String SchemeRegistry::ListOfCorsEnabledURLSchemes() {
Vector<String> sorted_schemes(GetURLSchemesRegistry().cors_enabled_schemes);
std::sort(sorted_schemes.begin(), sorted_schemes.end(),
[](const String& a, const String& b) {
return CodeUnitCompareLessThan(a, b);
});
StringBuilder builder;
bool add_separator = false;
for (const auto& scheme : sorted_schemes) {
if (add_separator)
builder.Append(", ");
else
add_separator = true;
builder.Append(scheme);
}
return builder.ToString();
}
bool SchemeRegistry::ShouldTrackUsageMetricsForScheme(const String& scheme) {
// This SchemeRegistry is primarily used by Blink UseCounter, which aims to
// match the tracking policy of page_load_metrics (see
// pageTrackDecider::ShouldTrack() for more details).
// The scheme represents content which likely cannot be easily updated.
// Specifically this includes internal pages such as about, devtools,
// etc.
// "chrome-extension" is not included because they have a single deployment
// point (the webstore) and are designed specifically for Chrome.
// "data" is not included because real sites shouldn't be using it for
// top-level pages and Chrome does use it internally (eg. PluginPlaceholder).
// "file" is not included because file:// navigations have different loading
// behaviors.
return scheme == "http" || scheme == "https";
}
void SchemeRegistry::RegisterURLSchemeAsAllowingServiceWorkers(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().service_worker_schemes.insert(scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsAllowingServiceWorkers(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().service_worker_schemes.Contains(scheme);
}
void SchemeRegistry::RegisterURLSchemeAsSupportingFetchAPI(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().fetch_api_schemes.insert(scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsSupportingFetchAPI(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().fetch_api_schemes.Contains(scheme);
}
// https://url.spec.whatwg.org/#special-scheme
bool SchemeRegistry::IsSpecialScheme(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
return scheme == "ftp" || scheme == "file" || scheme == "http" ||
scheme == "https" || scheme == "ws" || scheme == "wss";
}
void SchemeRegistry::RegisterURLSchemeAsFirstPartyWhenTopLevel(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().first_party_when_top_level_schemes.insert(
scheme);
}
void SchemeRegistry::RemoveURLSchemeAsFirstPartyWhenTopLevel(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().first_party_when_top_level_schemes.erase(
scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsFirstPartyWhenTopLevel(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().first_party_when_top_level_schemes.Contains(
scheme);
}
void SchemeRegistry::RegisterURLSchemeAsFirstPartyWhenTopLevelEmbeddingSecure(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry()
.first_party_when_top_level_with_secure_embedded_schemes.insert(scheme);
}
bool SchemeRegistry::
ShouldTreatURLSchemeAsFirstPartyWhenTopLevelEmbeddingSecure(
const String& top_level_scheme,
const String& child_scheme) {
DCHECK_EQ(top_level_scheme, top_level_scheme.LowerASCII());
DCHECK_EQ(child_scheme, child_scheme.LowerASCII());
// Matches GURL::SchemeIsCryptographic used by
// RenderFrameHostImpl::ComputeIsolationInfoInternal
if (child_scheme != "https" && child_scheme != "wss")
return false;
if (top_level_scheme.empty())
return false;
return GetURLSchemesRegistry()
.first_party_when_top_level_with_secure_embedded_schemes.Contains(
top_level_scheme);
}
void SchemeRegistry::RegisterURLSchemeAsAllowedForReferrer(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().allowed_in_referrer_schemes.insert(scheme);
}
void SchemeRegistry::RemoveURLSchemeAsAllowedForReferrer(const String& scheme) {
GetMutableURLSchemesRegistry().allowed_in_referrer_schemes.erase(scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsAllowedForReferrer(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().allowed_in_referrer_schemes.Contains(scheme);
}
void SchemeRegistry::RegisterURLSchemeAsError(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().error_schemes.insert(scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsError(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().error_schemes.Contains(scheme);
}
void SchemeRegistry::RegisterURLSchemeAsAllowingSharedArrayBuffers(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().allowing_shared_array_buffer_schemes.insert(
scheme);
}
bool SchemeRegistry::ShouldTreatURLSchemeAsAllowingSharedArrayBuffers(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
if (scheme.empty())
return false;
return GetURLSchemesRegistry().allowing_shared_array_buffer_schemes.Contains(
scheme);
}
void SchemeRegistry::RegisterURLSchemeAsBypassingContentSecurityPolicy(
const String& scheme,
PolicyAreas policy_areas) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry()
.content_security_policy_bypassing_schemes.insert(scheme, policy_areas);
}
void SchemeRegistry::RemoveURLSchemeRegisteredAsBypassingContentSecurityPolicy(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry()
.content_security_policy_bypassing_schemes.erase(scheme);
}
bool SchemeRegistry::SchemeShouldBypassContentSecurityPolicy(
const String& scheme,
PolicyAreas policy_areas) {
DCHECK_NE(policy_areas, kPolicyAreaNone);
if (scheme.empty() || policy_areas == kPolicyAreaNone)
return false;
const auto& bypassing_schemes =
GetURLSchemesRegistry().content_security_policy_bypassing_schemes;
const auto it = bypassing_schemes.find(scheme);
if (it == bypassing_schemes.end())
return false;
return (it->value & policy_areas) == policy_areas;
}
void SchemeRegistry::RegisterURLSchemeBypassingSecureContextCheck(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().secure_context_bypassing_schemes.insert(
scheme);
}
bool SchemeRegistry::SchemeShouldBypassSecureContextCheck(
const String& scheme) {
if (scheme.empty())
return false;
DCHECK_EQ(scheme, scheme.LowerASCII());
return GetURLSchemesRegistry().secure_context_bypassing_schemes.Contains(
scheme);
}
void SchemeRegistry::RegisterURLSchemeAsAllowingWasmEvalCSP(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().wasm_eval_csp_schemes.insert(scheme);
}
bool SchemeRegistry::SchemeSupportsWasmEvalCSP(const String& scheme) {
if (scheme.empty())
return false;
DCHECK_EQ(scheme, scheme.LowerASCII());
return GetURLSchemesRegistry().wasm_eval_csp_schemes.Contains(scheme);
}
void SchemeRegistry::RegisterURLSchemeAsWebUI(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().web_ui_schemes.insert(scheme);
}
void SchemeRegistry::RemoveURLSchemeAsWebUI(const String& scheme) {
GetMutableURLSchemesRegistry().web_ui_schemes.erase(scheme);
}
bool SchemeRegistry::IsWebUIScheme(const String& scheme) {
if (scheme.empty())
return false;
DCHECK_EQ(scheme, scheme.LowerASCII());
return GetURLSchemesRegistry().web_ui_schemes.Contains(scheme);
}
void SchemeRegistry::RegisterURLSchemeAsWebUIForTest(const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistryForTest().web_ui_schemes.insert(scheme);
}
void SchemeRegistry::RemoveURLSchemeAsWebUIForTest(const String& scheme) {
GetMutableURLSchemesRegistryForTest().web_ui_schemes.erase(scheme);
}
void SchemeRegistry::RegisterURLSchemeAsCodeCacheWithHashing(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().code_cache_with_hashing_schemes.insert(scheme);
}
void SchemeRegistry::RemoveURLSchemeAsCodeCacheWithHashing(
const String& scheme) {
GetMutableURLSchemesRegistry().code_cache_with_hashing_schemes.erase(scheme);
}
bool SchemeRegistry::SchemeSupportsCodeCacheWithHashing(const String& scheme) {
if (scheme.empty())
return false;
DCHECK_EQ(scheme, scheme.LowerASCII());
return GetURLSchemesRegistry().code_cache_with_hashing_schemes.Contains(
scheme);
}
void SchemeRegistry::RegisterURLSchemeAsWebUIBundledBytecode(
const String& scheme) {
DCHECK_EQ(scheme, scheme.LowerASCII());
GetMutableURLSchemesRegistry().webui_bundled_bytecode_schemes.insert(scheme);
}
void SchemeRegistry::RemoveURLSchemeAsWebUIBundledBytecodeForTesting(
const String& scheme) {
GetMutableURLSchemesRegistry().webui_bundled_bytecode_schemes.erase(scheme);
}
bool SchemeRegistry::SchemeSupportsWebUIBundledBytecode(const String& scheme) {
if (scheme.empty()) {
return false;
}
DCHECK_EQ(scheme, scheme.LowerASCII());
return GetURLSchemesRegistry().webui_bundled_bytecode_schemes.Contains(
scheme);
}
} // namespace blink
|