2014-07-09 23:56:37 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-02-13 11:36:47 -08:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-07-09 23:56:37 -07:00
|
|
|
/* 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 "mozilla/LoadInfo.h"
|
|
|
|
|
|
|
|
#include "mozilla/Assertions.h"
|
2015-07-19 19:11:03 -07:00
|
|
|
#include "mozilla/dom/ToJSValue.h"
|
2015-05-08 12:52:49 -07:00
|
|
|
#include "nsFrameLoader.h"
|
|
|
|
#include "nsIDocShell.h"
|
2014-07-16 13:16:12 -07:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
2015-05-08 12:52:49 -07:00
|
|
|
#include "nsIFrameLoader.h"
|
2014-07-09 23:56:37 -07:00
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
#include "nsISupportsUtils.h"
|
2015-06-16 21:18:16 -07:00
|
|
|
#include "nsContentUtils.h"
|
2014-07-09 23:56:37 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2014-11-14 08:55:59 -08:00
|
|
|
LoadInfo::LoadInfo(nsIPrincipal* aLoadingPrincipal,
|
|
|
|
nsIPrincipal* aTriggeringPrincipal,
|
2014-07-16 13:16:12 -07:00
|
|
|
nsINode* aLoadingContext,
|
|
|
|
nsSecurityFlags aSecurityFlags,
|
2014-11-04 16:34:00 -08:00
|
|
|
nsContentPolicyType aContentPolicyType,
|
|
|
|
nsIURI* aBaseURI)
|
2014-12-10 15:36:03 -08:00
|
|
|
: mLoadingPrincipal(aLoadingContext ?
|
|
|
|
aLoadingContext->NodePrincipal() : aLoadingPrincipal)
|
2014-11-14 08:55:59 -08:00
|
|
|
, mTriggeringPrincipal(aTriggeringPrincipal ?
|
2014-12-10 15:36:03 -08:00
|
|
|
aTriggeringPrincipal : mLoadingPrincipal.get())
|
2014-07-16 13:16:12 -07:00
|
|
|
, mLoadingContext(do_GetWeakReference(aLoadingContext))
|
|
|
|
, mSecurityFlags(aSecurityFlags)
|
|
|
|
, mContentPolicyType(aContentPolicyType)
|
2014-11-04 16:34:00 -08:00
|
|
|
, mBaseURI(aBaseURI)
|
2015-07-10 13:57:55 -07:00
|
|
|
, mUpgradeInsecureRequests(false)
|
2015-05-08 12:52:49 -07:00
|
|
|
, mInnerWindowID(0)
|
|
|
|
, mOuterWindowID(0)
|
|
|
|
, mParentOuterWindowID(0)
|
2014-07-09 23:56:37 -07:00
|
|
|
{
|
2014-12-10 15:36:03 -08:00
|
|
|
MOZ_ASSERT(mLoadingPrincipal);
|
2014-11-14 08:55:59 -08:00
|
|
|
MOZ_ASSERT(mTriggeringPrincipal);
|
2014-12-10 15:36:03 -08:00
|
|
|
|
|
|
|
// if consumers pass both, aLoadingContext and aLoadingPrincipal
|
|
|
|
// then the loadingPrincipal must be the same as the node's principal
|
|
|
|
MOZ_ASSERT(!aLoadingContext || !aLoadingPrincipal ||
|
|
|
|
aLoadingContext->NodePrincipal() == aLoadingPrincipal);
|
|
|
|
|
2014-07-16 13:16:12 -07:00
|
|
|
// if the load is sandboxed, we can not also inherit the principal
|
|
|
|
if (mSecurityFlags & nsILoadInfo::SEC_SANDBOXED) {
|
|
|
|
mSecurityFlags ^= nsILoadInfo::SEC_FORCE_INHERIT_PRINCIPAL;
|
|
|
|
}
|
2015-05-08 12:52:49 -07:00
|
|
|
|
|
|
|
if (aLoadingContext) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> outerWindow;
|
|
|
|
|
|
|
|
// When the element being loaded is a frame, we choose the frame's window
|
|
|
|
// for the window ID and the frame element's window as the parent
|
|
|
|
// window. This is the behavior that Chrome exposes to add-ons.
|
|
|
|
nsCOMPtr<nsIFrameLoaderOwner> frameLoaderOwner = do_QueryInterface(aLoadingContext);
|
|
|
|
if (frameLoaderOwner) {
|
|
|
|
nsCOMPtr<nsIFrameLoader> fl = frameLoaderOwner->GetFrameLoader();
|
|
|
|
nsCOMPtr<nsIDocShell> docShell;
|
|
|
|
if (fl && NS_SUCCEEDED(fl->GetDocShell(getter_AddRefs(docShell))) && docShell) {
|
|
|
|
outerWindow = do_GetInterface(docShell);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
outerWindow = aLoadingContext->OwnerDoc()->GetWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outerWindow) {
|
|
|
|
nsCOMPtr<nsPIDOMWindow> inner = outerWindow->GetCurrentInnerWindow();
|
|
|
|
mInnerWindowID = inner ? inner->WindowID() : 0;
|
|
|
|
mOuterWindowID = outerWindow->WindowID();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> parent;
|
|
|
|
outerWindow->GetParent(getter_AddRefs(parent));
|
|
|
|
nsCOMPtr<nsPIDOMWindow> piParent = do_QueryInterface(parent);
|
|
|
|
mParentOuterWindowID = piParent->WindowID();
|
|
|
|
}
|
2015-07-10 13:57:55 -07:00
|
|
|
|
|
|
|
mUpgradeInsecureRequests = aLoadingContext->OwnerDoc()->GetUpgradeInsecureRequests();
|
2015-05-08 12:52:49 -07:00
|
|
|
}
|
2014-07-09 23:56:37 -07:00
|
|
|
}
|
|
|
|
|
2015-01-07 15:51:20 -08:00
|
|
|
LoadInfo::LoadInfo(nsIPrincipal* aLoadingPrincipal,
|
|
|
|
nsIPrincipal* aTriggeringPrincipal,
|
|
|
|
nsSecurityFlags aSecurityFlags,
|
|
|
|
nsContentPolicyType aContentPolicyType,
|
2015-07-10 13:57:55 -07:00
|
|
|
bool aUpgradeInsecureRequests,
|
2015-05-08 12:52:49 -07:00
|
|
|
uint64_t aInnerWindowID,
|
|
|
|
uint64_t aOuterWindowID,
|
2015-07-19 19:11:03 -07:00
|
|
|
uint64_t aParentOuterWindowID,
|
|
|
|
nsTArray<nsCOMPtr<nsIPrincipal>>& aRedirectChain)
|
2015-01-07 15:51:20 -08:00
|
|
|
: mLoadingPrincipal(aLoadingPrincipal)
|
|
|
|
, mTriggeringPrincipal(aTriggeringPrincipal)
|
|
|
|
, mSecurityFlags(aSecurityFlags)
|
|
|
|
, mContentPolicyType(aContentPolicyType)
|
2015-07-10 13:57:55 -07:00
|
|
|
, mUpgradeInsecureRequests(aUpgradeInsecureRequests)
|
2015-01-07 15:51:20 -08:00
|
|
|
, mInnerWindowID(aInnerWindowID)
|
2015-05-08 12:52:49 -07:00
|
|
|
, mOuterWindowID(aOuterWindowID)
|
|
|
|
, mParentOuterWindowID(aParentOuterWindowID)
|
2015-01-07 15:51:20 -08:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mLoadingPrincipal);
|
|
|
|
MOZ_ASSERT(mTriggeringPrincipal);
|
2015-07-19 19:11:03 -07:00
|
|
|
|
|
|
|
mRedirectChain.SwapElements(aRedirectChain);
|
2015-01-07 15:51:20 -08:00
|
|
|
}
|
|
|
|
|
2014-07-09 23:56:37 -07:00
|
|
|
LoadInfo::~LoadInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(LoadInfo, nsILoadInfo)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-11-14 08:55:59 -08:00
|
|
|
LoadInfo::GetLoadingPrincipal(nsIPrincipal** aLoadingPrincipal)
|
2014-07-09 23:56:37 -07:00
|
|
|
{
|
2014-11-14 08:55:59 -08:00
|
|
|
NS_ADDREF(*aLoadingPrincipal = mLoadingPrincipal);
|
2014-07-09 23:56:37 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPrincipal*
|
|
|
|
LoadInfo::LoadingPrincipal()
|
|
|
|
{
|
2014-11-14 08:55:59 -08:00
|
|
|
return mLoadingPrincipal;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetTriggeringPrincipal(nsIPrincipal** aTriggeringPrincipal)
|
|
|
|
{
|
|
|
|
NS_ADDREF(*aTriggeringPrincipal = mTriggeringPrincipal);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPrincipal*
|
|
|
|
LoadInfo::TriggeringPrincipal()
|
|
|
|
{
|
|
|
|
return mTriggeringPrincipal;
|
2014-07-09 23:56:37 -07:00
|
|
|
}
|
|
|
|
|
2014-07-16 13:16:12 -07:00
|
|
|
NS_IMETHODIMP
|
2015-02-13 11:36:37 -08:00
|
|
|
LoadInfo::GetLoadingDocument(nsIDOMDocument** aResult)
|
2014-07-16 13:16:12 -07:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsINode> node = do_QueryReferent(mLoadingContext);
|
|
|
|
if (node) {
|
|
|
|
nsCOMPtr<nsIDOMDocument> context = do_QueryInterface(node->OwnerDoc());
|
2015-02-13 11:36:37 -08:00
|
|
|
context.forget(aResult);
|
2014-07-16 13:16:12 -07:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsINode*
|
|
|
|
LoadInfo::LoadingNode()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsINode> node = do_QueryReferent(mLoadingContext);
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2015-02-13 11:36:37 -08:00
|
|
|
LoadInfo::GetSecurityFlags(nsSecurityFlags* aResult)
|
2014-07-16 13:16:12 -07:00
|
|
|
{
|
2015-02-13 11:36:37 -08:00
|
|
|
*aResult = mSecurityFlags;
|
2014-07-16 13:16:12 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-07-09 23:56:37 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetForceInheritPrincipal(bool* aInheritPrincipal)
|
|
|
|
{
|
2015-02-13 11:36:37 -08:00
|
|
|
*aInheritPrincipal =
|
|
|
|
(mSecurityFlags & nsILoadInfo::SEC_FORCE_INHERIT_PRINCIPAL);
|
2014-07-09 23:56:37 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetLoadingSandboxed(bool* aLoadingSandboxed)
|
|
|
|
{
|
2014-07-16 13:16:12 -07:00
|
|
|
*aLoadingSandboxed = (mSecurityFlags & nsILoadInfo::SEC_SANDBOXED);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2015-02-13 11:36:37 -08:00
|
|
|
LoadInfo::GetContentPolicyType(nsContentPolicyType* aResult)
|
2014-07-16 13:16:12 -07:00
|
|
|
{
|
2015-06-16 21:18:16 -07:00
|
|
|
*aResult = nsContentUtils::InternalContentPolicyTypeToExternal(mContentPolicyType);
|
2014-07-09 23:56:37 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-16 21:18:16 -07:00
|
|
|
nsContentPolicyType
|
|
|
|
LoadInfo::InternalContentPolicyType()
|
|
|
|
{
|
|
|
|
return mContentPolicyType;
|
|
|
|
}
|
|
|
|
|
2014-11-04 16:34:00 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetBaseURI(nsIURI** aBaseURI)
|
|
|
|
{
|
|
|
|
*aBaseURI = mBaseURI;
|
|
|
|
NS_IF_ADDREF(*aBaseURI);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-12-07 19:53:33 -08:00
|
|
|
nsIURI*
|
|
|
|
LoadInfo::BaseURI()
|
|
|
|
{
|
|
|
|
return mBaseURI;
|
|
|
|
}
|
|
|
|
|
2015-07-10 13:57:55 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetUpgradeInsecureRequests(bool* aResult)
|
|
|
|
{
|
|
|
|
*aResult = mUpgradeInsecureRequests;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-01-07 15:51:20 -08:00
|
|
|
NS_IMETHODIMP
|
2015-05-08 12:52:49 -07:00
|
|
|
LoadInfo::GetInnerWindowID(uint64_t* aResult)
|
2015-01-07 15:51:20 -08:00
|
|
|
{
|
2015-02-13 11:36:37 -08:00
|
|
|
*aResult = mInnerWindowID;
|
2015-01-07 15:51:20 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-05-08 12:52:49 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetOuterWindowID(uint64_t* aResult)
|
|
|
|
{
|
|
|
|
*aResult = mOuterWindowID;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetParentOuterWindowID(uint64_t* aResult)
|
|
|
|
{
|
|
|
|
*aResult = mParentOuterWindowID;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-19 19:11:03 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::AppendRedirectedPrincipal(nsIPrincipal* aPrincipal)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aPrincipal);
|
|
|
|
mRedirectChain.AppendElement(aPrincipal);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
LoadInfo::GetRedirectChain(JSContext* aCx, JS::MutableHandle<JS::Value> aChain)
|
|
|
|
{
|
|
|
|
if (!ToJSValue(aCx, mRedirectChain, aChain)) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsTArray<nsCOMPtr<nsIPrincipal>>&
|
|
|
|
LoadInfo::RedirectChain()
|
|
|
|
{
|
|
|
|
return mRedirectChain;
|
|
|
|
}
|
|
|
|
|
2014-07-09 23:56:37 -07:00
|
|
|
} // namespace mozilla
|