2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsPrincipal_h__
|
|
|
|
#define nsPrincipal_h__
|
|
|
|
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsJSPrincipals.h"
|
2007-09-17 15:18:28 -07:00
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2015-05-11 13:16:36 -07:00
|
|
|
#include "nsIContentSecurityPolicy.h"
|
2012-08-20 11:34:33 -07:00
|
|
|
#include "nsIProtocolHandler.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsScriptSecurityManager.h"
|
2015-05-11 14:25:59 -07:00
|
|
|
#include "mozilla/BasePrincipal.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-05-11 14:25:59 -07:00
|
|
|
class nsPrincipal final : public mozilla::BasePrincipal
|
2012-06-10 16:44:50 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_NSISERIALIZABLE
|
2015-05-11 13:16:36 -07:00
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override;
|
2015-03-21 09:28:04 -07:00
|
|
|
NS_IMETHOD GetHashValue(uint32_t* aHashValue) override;
|
|
|
|
NS_IMETHOD GetURI(nsIURI** aURI) override;
|
|
|
|
NS_IMETHOD GetDomain(nsIURI** aDomain) override;
|
|
|
|
NS_IMETHOD SetDomain(nsIURI* aDomain) override;
|
|
|
|
NS_IMETHOD GetBaseDomain(nsACString& aBaseDomain) override;
|
|
|
|
virtual bool IsOnCSSUnprefixingWhitelist() override;
|
2015-06-03 13:40:46 -07:00
|
|
|
bool IsCodebasePrincipal() const override { return true; }
|
2015-05-14 16:50:44 -07:00
|
|
|
nsresult GetOriginInternal(nsACString& aOrigin) override;
|
2012-07-19 22:44:03 -07:00
|
|
|
|
|
|
|
nsPrincipal();
|
|
|
|
|
2012-10-21 23:29:55 -07:00
|
|
|
// Init() must be called before the principal is in a usable state.
|
2015-11-02 17:50:54 -08:00
|
|
|
nsresult Init(nsIURI* aCodebase, const mozilla::PrincipalOriginAttributes& aOriginAttributes);
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void GetScriptLocation(nsACString& aStr) override;
|
2012-06-10 16:44:50 -07:00
|
|
|
void SetURI(nsIURI* aURI);
|
|
|
|
|
2012-07-18 21:23:44 -07:00
|
|
|
/**
|
|
|
|
* Computes the puny-encoded origin of aURI.
|
|
|
|
*/
|
2015-05-12 15:08:20 -07:00
|
|
|
static nsresult GetOriginForURI(nsIURI* aURI, nsACString& aOrigin);
|
2012-07-18 21:23:44 -07:00
|
|
|
|
2015-03-13 13:15:09 -07:00
|
|
|
/**
|
|
|
|
* Called at startup to setup static data, e.g. about:config pref-observers.
|
|
|
|
*/
|
|
|
|
static void InitializeStatics();
|
|
|
|
|
2015-10-23 17:58:21 -07:00
|
|
|
PrincipalKind Kind() override { return eCodebasePrincipal; }
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
nsCOMPtr<nsIURI> mDomain;
|
|
|
|
nsCOMPtr<nsIURI> mCodebase;
|
2007-06-18 08:07:02 -07:00
|
|
|
// If mCodebaseImmutable is true, mCodebase is non-null and immutable
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mCodebaseImmutable;
|
|
|
|
bool mDomainImmutable;
|
2012-06-10 16:44:50 -07:00
|
|
|
bool mInitialized;
|
2015-03-13 13:15:09 -07:00
|
|
|
mozilla::Maybe<bool> mIsOnCSSUnprefixingWhitelist; // Lazily-computed
|
2012-07-19 22:44:03 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~nsPrincipal();
|
2015-05-14 11:15:56 -07:00
|
|
|
|
|
|
|
bool SubsumesInternal(nsIPrincipal* aOther, DocumentDomainConsideration aConsideration) override;
|
2015-09-30 20:03:36 -07:00
|
|
|
bool MayLoadInternal(nsIURI* aURI) override;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2015-05-11 14:25:59 -07:00
|
|
|
class nsExpandedPrincipal : public nsIExpandedPrincipal, public mozilla::BasePrincipal
|
2012-06-10 16:44:50 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-09-02 15:20:14 -07:00
|
|
|
explicit nsExpandedPrincipal(nsTArray< nsCOMPtr<nsIPrincipal> > &aWhiteList);
|
2012-06-10 16:44:50 -07:00
|
|
|
|
|
|
|
NS_DECL_NSIEXPANDEDPRINCIPAL
|
|
|
|
NS_DECL_NSISERIALIZABLE
|
2015-05-11 13:16:36 -07:00
|
|
|
NS_IMETHODIMP_(MozExternalRefCountType) AddRef() override { return nsJSPrincipals::AddRef(); };
|
|
|
|
NS_IMETHODIMP_(MozExternalRefCountType) Release() override { return nsJSPrincipals::Release(); };
|
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override;
|
2015-03-21 09:28:04 -07:00
|
|
|
NS_IMETHOD GetHashValue(uint32_t* aHashValue) override;
|
|
|
|
NS_IMETHOD GetURI(nsIURI** aURI) override;
|
|
|
|
NS_IMETHOD GetDomain(nsIURI** aDomain) override;
|
|
|
|
NS_IMETHOD SetDomain(nsIURI* aDomain) override;
|
|
|
|
NS_IMETHOD GetBaseDomain(nsACString& aBaseDomain) override;
|
|
|
|
virtual bool IsOnCSSUnprefixingWhitelist() override;
|
|
|
|
virtual void GetScriptLocation(nsACString &aStr) override;
|
2015-05-14 16:50:44 -07:00
|
|
|
nsresult GetOriginInternal(nsACString& aOrigin) override;
|
2012-06-10 16:44:50 -07:00
|
|
|
|
2015-10-23 17:58:21 -07:00
|
|
|
PrincipalKind Kind() override { return eExpandedPrincipal; }
|
|
|
|
|
2015-05-14 11:15:56 -07:00
|
|
|
protected:
|
|
|
|
virtual ~nsExpandedPrincipal();
|
|
|
|
|
|
|
|
bool SubsumesInternal(nsIPrincipal* aOther, DocumentDomainConsideration aConsideration) override;
|
2015-09-30 20:03:36 -07:00
|
|
|
bool MayLoadInternal(nsIURI* aURI) override;
|
2015-05-14 11:15:56 -07:00
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
private:
|
|
|
|
nsTArray< nsCOMPtr<nsIPrincipal> > mPrincipals;
|
|
|
|
};
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define NS_PRINCIPAL_CONTRACTID "@mozilla.org/principal;1"
|
|
|
|
#define NS_PRINCIPAL_CID \
|
2015-07-28 14:32:00 -07:00
|
|
|
{ 0x653e0e4d, 0x3ee4, 0x45fa, \
|
|
|
|
{ 0xb2, 0x72, 0x97, 0xc2, 0x0b, 0xc0, 0x1e, 0xb8 } }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
#define NS_EXPANDEDPRINCIPAL_CONTRACTID "@mozilla.org/expandedprincipal;1"
|
|
|
|
#define NS_EXPANDEDPRINCIPAL_CID \
|
2015-07-07 15:53:15 -07:00
|
|
|
{ 0xe8ee88b0, 0x5571, 0x4086, \
|
|
|
|
{ 0xa4, 0x5b, 0x39, 0xa7, 0x16, 0x90, 0x6b, 0xdb } }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#endif // nsPrincipal_h__
|