2020-05-11 18:12:20 -04:00
|
|
|
diff --git content/browser/child_process_security_policy_impl.cc content/browser/child_process_security_policy_impl.cc
|
2021-03-04 17:36:57 -05:00
|
|
|
index 52ebdbbc7c2e..822f2e41afec 100644
|
2020-05-11 18:12:20 -04:00
|
|
|
--- content/browser/child_process_security_policy_impl.cc
|
|
|
|
+++ content/browser/child_process_security_policy_impl.cc
|
2021-03-04 17:36:57 -05:00
|
|
|
@@ -1706,6 +1706,16 @@ bool ChildProcessSecurityPolicyImpl::CanAccessDataForOrigin(
|
2020-12-02 17:31:49 -05:00
|
|
|
// DeclarativeApiTest.PersistRules.
|
|
|
|
if (actual_process_lock.matches_scheme(url::kDataScheme))
|
|
|
|
return true;
|
2020-05-11 18:12:20 -04:00
|
|
|
+
|
2020-12-02 17:31:49 -05:00
|
|
|
+ // Allow other schemes that are non-standard, non-local and WebSafe.
|
|
|
|
+ if (lock_url.is_valid() &&
|
|
|
|
+ !lock_url.IsStandard() &&
|
|
|
|
+ !base::Contains(url::GetLocalSchemes(),
|
|
|
|
+ lock_url.scheme_piece()) &&
|
|
|
|
+ base::Contains(schemes_okay_to_request_in_any_process_,
|
2021-01-27 18:13:12 -05:00
|
|
|
+ lock_url.scheme())) {
|
2020-12-02 17:31:49 -05:00
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
}
|
2020-05-11 18:12:20 -04:00
|
|
|
|
2020-12-02 17:31:49 -05:00
|
|
|
// TODO(wjmaclean): We should update the ProcessLock comparison API
|
2021-04-12 13:55:48 -04:00
|
|
|
diff --git content/browser/renderer_host/navigation_request.cc content/browser/renderer_host/navigation_request.cc
|
|
|
|
index dae1c91d2d72..c48bd5ea1fb7 100644
|
|
|
|
--- content/browser/renderer_host/navigation_request.cc
|
|
|
|
+++ content/browser/renderer_host/navigation_request.cc
|
|
|
|
@@ -4871,6 +4871,12 @@ url::Origin NavigationRequest::GetOriginForURLLoaderFactory() {
|
|
|
|
|
|
|
|
// Calculate an approximation of the origin. The sandbox/csp are ignored.
|
|
|
|
url::Origin origin = GetOriginForURLLoaderFactoryUnchecked(this);
|
|
|
|
+ if (!origin.GetURL().IsStandard()) {
|
|
|
|
+ // Always return an opaque origin for non-standard URLs. Otherwise, the
|
|
|
|
+ // below CanAccessDataForOrigin() check may fail for unregistered custom
|
|
|
|
+ // scheme requests in CEF.
|
|
|
|
+ return origin.DeriveNewOpaqueOrigin();
|
|
|
|
+ }
|
|
|
|
|
|
|
|
// Apply sandbox flags.
|
|
|
|
// See https://html.spec.whatwg.org/#sandboxed-origin-browsing-context-flag
|