зеркало из https://github.com/mozilla/gecko-dev.git
292 строки
10 KiB
C++
292 строки
10 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "FramingChecker.h"
|
|
#include "nsCharSeparatedTokenizer.h"
|
|
#include "nsCSPUtils.h"
|
|
#include "nsDocShell.h"
|
|
#include "nsHttpChannel.h"
|
|
#include "nsIChannel.h"
|
|
#include "nsIConsoleService.h"
|
|
#include "nsIContentSecurityPolicy.h"
|
|
#include "nsIScriptError.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsQueryObject.h"
|
|
#include "mozilla/dom/nsCSPUtils.h"
|
|
#include "mozilla/dom/LoadURIOptionsBinding.h"
|
|
#include "mozilla/NullPrincipal.h"
|
|
#include "nsIStringBundle.h"
|
|
|
|
#include "nsIObserverService.h"
|
|
|
|
using namespace mozilla;
|
|
|
|
/* static */
|
|
void FramingChecker::ReportError(const char* aMessageTag, nsIURI* aParentURI,
|
|
nsIURI* aChildURI, const nsAString& aPolicy,
|
|
uint64_t aInnerWindowID) {
|
|
MOZ_ASSERT(aParentURI, "Need a parent URI");
|
|
if (!aChildURI || !aParentURI) {
|
|
return;
|
|
}
|
|
|
|
// Get the parent URL spec
|
|
nsAutoCString parentSpec;
|
|
nsresult rv;
|
|
rv = aParentURI->GetAsciiSpec(parentSpec);
|
|
if (NS_FAILED(rv)) {
|
|
return;
|
|
}
|
|
|
|
// Get the child URL spec
|
|
nsAutoCString childSpec;
|
|
rv = aChildURI->GetAsciiSpec(childSpec);
|
|
if (NS_FAILED(rv)) {
|
|
return;
|
|
}
|
|
|
|
nsCOMPtr<nsIStringBundleService> bundleService =
|
|
mozilla::services::GetStringBundleService();
|
|
nsCOMPtr<nsIStringBundle> bundle;
|
|
rv = bundleService->CreateBundle(
|
|
"chrome://global/locale/security/security.properties",
|
|
getter_AddRefs(bundle));
|
|
if (NS_FAILED(rv)) {
|
|
return;
|
|
}
|
|
|
|
if (NS_WARN_IF(!bundle)) {
|
|
return;
|
|
}
|
|
|
|
nsCOMPtr<nsIConsoleService> console(
|
|
do_GetService(NS_CONSOLESERVICE_CONTRACTID));
|
|
nsCOMPtr<nsIScriptError> error(do_CreateInstance(NS_SCRIPTERROR_CONTRACTID));
|
|
if (!console || !error) {
|
|
return;
|
|
}
|
|
|
|
// Localize the error message
|
|
nsAutoString message;
|
|
AutoTArray<nsString, 3> formatStrings;
|
|
formatStrings.AppendElement(aPolicy);
|
|
CopyASCIItoUTF16(childSpec, *formatStrings.AppendElement());
|
|
CopyASCIItoUTF16(parentSpec, *formatStrings.AppendElement());
|
|
rv = bundle->FormatStringFromName(aMessageTag, formatStrings, message);
|
|
if (NS_FAILED(rv)) {
|
|
return;
|
|
}
|
|
|
|
rv = error->InitWithWindowID(message, EmptyString(), EmptyString(), 0, 0,
|
|
nsIScriptError::errorFlag, "X-Frame-Options",
|
|
aInnerWindowID);
|
|
if (NS_FAILED(rv)) {
|
|
return;
|
|
}
|
|
console->LogMessage(error);
|
|
}
|
|
|
|
/* static */
|
|
void FramingChecker::ReportError(const char* aMessageTag,
|
|
BrowsingContext* aParentContext,
|
|
nsIURI* aChildURI, const nsAString& aPolicy,
|
|
uint64_t aInnerWindowID) {
|
|
nsCOMPtr<nsIURI> parentURI;
|
|
if (aParentContext) {
|
|
BrowsingContext* topContext = aParentContext->Top();
|
|
WindowGlobalParent* window =
|
|
topContext->Canonical()->GetCurrentWindowGlobal();
|
|
if (window) {
|
|
parentURI = window->GetDocumentURI();
|
|
}
|
|
}
|
|
ReportError(aMessageTag, parentURI, aChildURI, aPolicy, aInnerWindowID);
|
|
}
|
|
|
|
/* static */
|
|
bool FramingChecker::CheckOneFrameOptionsPolicy(nsIHttpChannel* aHttpChannel,
|
|
const nsAString& aPolicy) {
|
|
nsCOMPtr<nsIURI> uri;
|
|
aHttpChannel->GetURI(getter_AddRefs(uri));
|
|
|
|
nsCOMPtr<nsILoadInfo> loadInfo = aHttpChannel->LoadInfo();
|
|
uint64_t innerWindowID = loadInfo->GetInnerWindowID();
|
|
RefPtr<mozilla::dom::BrowsingContext> ctx;
|
|
loadInfo->GetBrowsingContext(getter_AddRefs(ctx));
|
|
|
|
// return early if header does not have one of the values with meaning
|
|
if (!aPolicy.LowerCaseEqualsLiteral("deny") &&
|
|
!aPolicy.LowerCaseEqualsLiteral("sameorigin")) {
|
|
ReportError("XFOInvalid", ctx, uri, aPolicy, innerWindowID);
|
|
return true;
|
|
}
|
|
|
|
// If the X-Frame-Options value is SAMEORIGIN, then the top frame in the
|
|
// parent chain must be from the same origin as this document.
|
|
bool checkSameOrigin = aPolicy.LowerCaseEqualsLiteral("sameorigin");
|
|
nsCOMPtr<nsIScriptSecurityManager> ssm = nsContentUtils::GetSecurityManager();
|
|
nsCOMPtr<nsIURI> topUri;
|
|
|
|
while (ctx) {
|
|
WindowGlobalParent* window = ctx->Canonical()->GetCurrentWindowGlobal();
|
|
if (window) {
|
|
if (window->DocumentPrincipal()->IsSystemPrincipal()) {
|
|
return true;
|
|
}
|
|
// Using the URI of the Principal and not the document because e.g.
|
|
// window.open inherits the principal and hence the URI of the
|
|
// opening context needed for same origin checks.
|
|
nsCOMPtr<nsIPrincipal> principal = window->DocumentPrincipal();
|
|
principal->GetURI(getter_AddRefs(topUri));
|
|
|
|
if (checkSameOrigin) {
|
|
bool isPrivateWin =
|
|
principal->OriginAttributesRef().mPrivateBrowsingId > 0;
|
|
nsresult rv = ssm->CheckSameOriginURI(uri, topUri, true, isPrivateWin);
|
|
// one of the ancestors is not same origin as this document
|
|
if (NS_FAILED(rv)) {
|
|
ReportError("XFOSameOrigin", topUri, uri, aPolicy, innerWindowID);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
ctx = ctx->GetParent();
|
|
}
|
|
|
|
// If the value of the header is DENY, and the previous condition is
|
|
// not met (current docshell is not the top docshell), prohibit the
|
|
// load.
|
|
if (aPolicy.LowerCaseEqualsLiteral("deny")) {
|
|
RefPtr<mozilla::dom::BrowsingContext> ctx;
|
|
loadInfo->GetBrowsingContext(getter_AddRefs(ctx));
|
|
ReportError("XFODeny", ctx, uri, aPolicy, innerWindowID);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// Ignore x-frame-options if CSP with frame-ancestors exists
|
|
static bool ShouldIgnoreFrameOptions(nsIChannel* aChannel,
|
|
nsIContentSecurityPolicy* aCSP) {
|
|
NS_ENSURE_TRUE(aChannel, false);
|
|
NS_ENSURE_TRUE(aCSP, false);
|
|
|
|
bool enforcesFrameAncestors = false;
|
|
aCSP->GetEnforcesFrameAncestors(&enforcesFrameAncestors);
|
|
if (!enforcesFrameAncestors) {
|
|
// if CSP does not contain frame-ancestors, then there
|
|
// is nothing to do here.
|
|
return false;
|
|
}
|
|
|
|
// log warning to console that xfo is ignored because of CSP
|
|
nsCOMPtr<nsILoadInfo> loadInfo = aChannel->LoadInfo();
|
|
uint64_t innerWindowID = loadInfo->GetInnerWindowID();
|
|
bool privateWindow = !!loadInfo->GetOriginAttributes().mPrivateBrowsingId;
|
|
AutoTArray<nsString, 2> params = {NS_LITERAL_STRING("x-frame-options"),
|
|
NS_LITERAL_STRING("frame-ancestors")};
|
|
CSP_LogLocalizedStr("IgnoringSrcBecauseOfDirective", params,
|
|
EmptyString(), // no sourcefile
|
|
EmptyString(), // no scriptsample
|
|
0, // no linenumber
|
|
0, // no columnnumber
|
|
nsIScriptError::warningFlag,
|
|
NS_LITERAL_CSTRING("IgnoringSrcBecauseOfDirective"),
|
|
innerWindowID, privateWindow);
|
|
|
|
return true;
|
|
}
|
|
|
|
// Check if X-Frame-Options permits this document to be loaded as a subdocument.
|
|
// This will iterate through and check any number of X-Frame-Options policies
|
|
// in the request (comma-separated in a header, multiple headers, etc).
|
|
/* static */
|
|
bool FramingChecker::CheckFrameOptions(nsIChannel* aChannel,
|
|
nsIContentSecurityPolicy* aCsp) {
|
|
MOZ_ASSERT(XRE_IsParentProcess(), "x-frame-options check only in parent");
|
|
|
|
if (!aChannel) {
|
|
return true;
|
|
}
|
|
|
|
nsCOMPtr<nsILoadInfo> loadInfo = aChannel->LoadInfo();
|
|
nsContentPolicyType contentType = loadInfo->GetExternalContentPolicyType();
|
|
|
|
// xfo check only makes sense for subdocument and object loads, if this is
|
|
// not a load of such type, there is nothing to do here.
|
|
if (contentType != nsIContentPolicy::TYPE_SUBDOCUMENT &&
|
|
contentType != nsIContentPolicy::TYPE_OBJECT) {
|
|
return true;
|
|
}
|
|
|
|
// xfo checks are ignored in case CSP frame-ancestors is present,
|
|
// if so, there is nothing to do here.
|
|
if (ShouldIgnoreFrameOptions(aChannel, aCsp)) {
|
|
return true;
|
|
}
|
|
|
|
// if the load is triggered by an extension, then xfo should
|
|
// not apply and we should allow the load.
|
|
if (loadInfo->TriggeringPrincipal()->GetIsAddonOrExpandedAddonPrincipal()) {
|
|
return true;
|
|
}
|
|
|
|
nsCOMPtr<nsIHttpChannel> httpChannel;
|
|
nsresult rv = nsContentSecurityUtils::GetHttpChannelFromPotentialMultiPart(
|
|
aChannel, getter_AddRefs(httpChannel));
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return true;
|
|
}
|
|
|
|
// xfo can only hang off an httpchannel, if this is not an httpChannel
|
|
// then there is nothing to do here.
|
|
if (!httpChannel) {
|
|
return true;
|
|
}
|
|
|
|
// ignore XFO checks on channels that will be redirected
|
|
uint32_t responseStatus;
|
|
rv = httpChannel->GetResponseStatus(&responseStatus);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return true;
|
|
}
|
|
if (mozilla::net::nsHttpChannel::IsRedirectStatus(responseStatus)) {
|
|
return true;
|
|
}
|
|
|
|
nsAutoCString xfoHeaderCValue;
|
|
Unused << httpChannel->GetResponseHeader(
|
|
NS_LITERAL_CSTRING("X-Frame-Options"), xfoHeaderCValue);
|
|
NS_ConvertUTF8toUTF16 xfoHeaderValue(xfoHeaderCValue);
|
|
|
|
// if no header value, there's nothing to do.
|
|
if (xfoHeaderValue.IsEmpty()) {
|
|
return true;
|
|
}
|
|
|
|
// iterate through all the header values (usually there's only one, but can
|
|
// be many. If any want to deny the load, deny the load.
|
|
nsCharSeparatedTokenizer tokenizer(xfoHeaderValue, ',');
|
|
while (tokenizer.hasMoreTokens()) {
|
|
const nsAString& tok = tokenizer.nextToken();
|
|
if (!CheckOneFrameOptionsPolicy(httpChannel, tok)) {
|
|
// if xfo blocks the load we are notifying observers for
|
|
// testing purposes because there is no event to gather
|
|
// what an iframe load was blocked or not.
|
|
nsCOMPtr<nsIURI> uri;
|
|
httpChannel->GetURI(getter_AddRefs(uri));
|
|
nsCOMPtr<nsIObserverService> observerService =
|
|
mozilla::services::GetObserverService();
|
|
nsAutoString policy(tok);
|
|
observerService->NotifyObservers(uri, "xfo-on-violate-policy",
|
|
policy.get());
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|