Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(289)

Unified Diff: third_party/WebKit/Source/core/dom/SecurityContext.cpp

Issue 1723753002: Make Document::isSecureContext() work for OOPIFs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/SecurityContext.cpp
diff --git a/third_party/WebKit/Source/core/dom/SecurityContext.cpp b/third_party/WebKit/Source/core/dom/SecurityContext.cpp
index a37ff6b8230baa1b56ff5bf886d6a06243d97da4..c96466ef5ff4c57a37a3d665a7f882ae19bbc8c4 100644
--- a/third_party/WebKit/Source/core/dom/SecurityContext.cpp
+++ b/third_party/WebKit/Source/core/dom/SecurityContext.cpp
@@ -27,6 +27,7 @@
#include "core/dom/SecurityContext.h"
#include "core/frame/csp/ContentSecurityPolicy.h"
+#include "platform/weborigin/SchemeRegistry.h"
#include "platform/weborigin/SecurityOrigin.h"
namespace blink {
@@ -37,6 +38,8 @@ SecurityContext::SecurityContext()
, m_hostedInReservedIPRange(false)
, m_insecureRequestsPolicy(InsecureRequestsDoNotUpgrade)
, m_enforceStrictMixedContentChecking(false)
+ , m_isPotentiallyTrustworthySandboxedOrigin(false)
+ , m_bypassSecureContextCheckForSandboxedOrigin(false)
{
}
@@ -74,9 +77,17 @@ bool SecurityContext::isSecureTransitionTo(const KURL& url) const
void SecurityContext::enforceSandboxFlags(SandboxFlags mask)
{
+ // The security origin must be set already in order to determine a sandboxed origin's potential trustworthiness.
+ ASSERT(securityOrigin());
estark 2016/02/23 21:45:52 I'm not sure if this will actually work... I looke
Mike West 2016/02/24 08:40:59 This should be the case, but there might be some w
m_sandboxFlags |= mask;
- if (isSandboxed(SandboxOrigin) && securityOrigin() && !securityOrigin()->isUnique()) {
+ if (isSandboxed(SandboxOrigin) && !securityOrigin()->isUnique()) {
+ // Before overwriting the original origin, compute secure
+ // context properties from it. These properties are used to do
+ // secure context checks involving unique origins in remote
+ // frames.
+ m_isPotentiallyTrustworthySandboxedOrigin = securityOrigin()->isPotentiallyTrustworthy();
+ m_bypassSecureContextCheckForSandboxedOrigin = m_isPotentiallyTrustworthySandboxedOrigin && SchemeRegistry::schemeShouldBypassSecureContextCheck(securityOrigin()->protocol());
setSecurityOrigin(SecurityOrigin::createUnique());
Mike West 2016/02/24 08:40:59 Following on from above, this might look something
estark 2016/02/24 21:59:52 Done.
didUpdateSecurityOrigin();
}

Powered by Google App Engine
This is Rietveld 408576698