2015-05-11 21:25:59 +00:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_BasePrincipal_h
|
|
|
|
#define mozilla_BasePrincipal_h
|
|
|
|
|
|
|
|
#include "nsJSPrincipals.h"
|
|
|
|
|
2016-08-15 10:22:44 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2015-06-03 06:35:09 +00:00
|
|
|
#include "mozilla/dom/ChromeUtilsBinding.h"
|
2017-01-12 16:38:48 +00:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2015-05-14 23:24:25 +00:00
|
|
|
|
2015-06-04 18:51:57 +00:00
|
|
|
class nsIContentSecurityPolicy;
|
2015-05-14 20:56:37 +00:00
|
|
|
class nsIObjectOutputStream;
|
|
|
|
class nsIObjectInputStream;
|
2015-11-03 01:50:54 +00:00
|
|
|
class nsIURI;
|
2015-05-14 20:56:37 +00:00
|
|
|
|
2015-10-01 03:03:36 +00:00
|
|
|
class nsExpandedPrincipal;
|
|
|
|
|
2015-05-11 21:25:59 +00:00
|
|
|
namespace mozilla {
|
|
|
|
|
2015-11-03 01:50:54 +00:00
|
|
|
// Base OriginAttributes class. This has several subclass flavors, and is not
|
|
|
|
// directly constructable itself.
|
2015-05-15 20:43:11 +00:00
|
|
|
class OriginAttributes : public dom::OriginAttributesDictionary
|
|
|
|
{
|
|
|
|
public:
|
2017-01-12 16:38:48 +00:00
|
|
|
OriginAttributes() {}
|
|
|
|
|
|
|
|
OriginAttributes(uint32_t aAppId, bool aInIsolatedMozBrowser)
|
|
|
|
{
|
|
|
|
mAppId = aAppId;
|
|
|
|
mInIsolatedMozBrowser = aInIsolatedMozBrowser;
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit OriginAttributes(const OriginAttributesDictionary& aOther)
|
|
|
|
: OriginAttributesDictionary(aOther)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// This method 'clones' the OriginAttributes ignoring the addonId value becaue
|
|
|
|
// this is computed from the principal URI and never propagated.
|
|
|
|
void Inherit(const OriginAttributes& aAttrs);
|
|
|
|
|
|
|
|
void SetFirstPartyDomain(const bool aIsTopLevelDocument, nsIURI* aURI);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
STRIP_FIRST_PARTY_DOMAIN = 0x01,
|
|
|
|
STRIP_ADDON_ID = 0x02,
|
|
|
|
STRIP_USER_CONTEXT_ID = 0x04,
|
|
|
|
};
|
|
|
|
|
|
|
|
inline void StripAttributes(uint32_t aFlags)
|
|
|
|
{
|
|
|
|
if (aFlags & STRIP_FIRST_PARTY_DOMAIN) {
|
|
|
|
mFirstPartyDomain.Truncate();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFlags & STRIP_ADDON_ID) {
|
|
|
|
mAddonId.Truncate();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFlags & STRIP_USER_CONTEXT_ID) {
|
|
|
|
mUserContextId = nsIScriptSecurityManager::DEFAULT_USER_CONTEXT_ID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-15 20:43:11 +00:00
|
|
|
bool operator==(const OriginAttributes& aOther) const
|
|
|
|
{
|
|
|
|
return mAppId == aOther.mAppId &&
|
2016-02-05 01:42:44 +00:00
|
|
|
mInIsolatedMozBrowser == aOther.mInIsolatedMozBrowser &&
|
2015-07-28 21:32:00 +00:00
|
|
|
mAddonId == aOther.mAddonId &&
|
2015-09-18 07:11:58 +00:00
|
|
|
mUserContextId == aOther.mUserContextId &&
|
2016-08-09 08:34:53 +00:00
|
|
|
mPrivateBrowsingId == aOther.mPrivateBrowsingId &&
|
|
|
|
mFirstPartyDomain == aOther.mFirstPartyDomain;
|
2015-05-15 20:43:11 +00:00
|
|
|
}
|
2017-01-12 16:38:48 +00:00
|
|
|
|
2015-05-15 20:43:11 +00:00
|
|
|
bool operator!=(const OriginAttributes& aOther) const
|
|
|
|
{
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
|
2015-06-04 18:51:57 +00:00
|
|
|
// Serializes/Deserializes non-default values into the suffix format, i.e.
|
2015-05-15 20:43:11 +00:00
|
|
|
// |!key1=value1&key2=value2|. If there are no non-default attributes, this
|
|
|
|
// returns an empty string.
|
2015-06-03 08:43:43 +00:00
|
|
|
void CreateSuffix(nsACString& aStr) const;
|
2016-11-17 13:52:16 +00:00
|
|
|
|
|
|
|
// Don't use this method for anything else than debugging!
|
|
|
|
void CreateAnonymizedSuffix(nsACString& aStr) const;
|
|
|
|
|
2016-08-15 10:22:44 +00:00
|
|
|
MOZ_MUST_USE bool PopulateFromSuffix(const nsACString& aStr);
|
2015-06-03 06:38:55 +00:00
|
|
|
|
2015-06-05 04:39:34 +00:00
|
|
|
// Populates the attributes from a string like
|
|
|
|
// |uri!key1=value1&key2=value2| and returns the uri without the suffix.
|
2016-08-15 10:22:44 +00:00
|
|
|
MOZ_MUST_USE bool PopulateFromOrigin(const nsACString& aOrigin,
|
2016-11-17 13:52:16 +00:00
|
|
|
nsACString& aOriginNoSuffix);
|
2015-11-03 01:50:54 +00:00
|
|
|
|
2016-06-02 21:02:29 +00:00
|
|
|
// Helper function to match mIsPrivateBrowsing to existing private browsing
|
|
|
|
// flags. Once all other flags are removed, this can be removed too.
|
|
|
|
void SyncAttributesWithPrivateBrowsing(bool aInPrivateBrowsing);
|
|
|
|
|
2016-11-10 06:20:38 +00:00
|
|
|
// check if "privacy.firstparty.isolate" is enabled.
|
|
|
|
static bool IsFirstPartyEnabled();
|
|
|
|
|
2016-12-07 17:07:09 +00:00
|
|
|
// returns true if the originAttributes suffix has mPrivateBrowsingId value
|
|
|
|
// different than 0.
|
|
|
|
static bool IsPrivateBrowsing(const nsACString& aOrigin);
|
2015-05-15 20:43:11 +00:00
|
|
|
};
|
|
|
|
|
2015-07-09 18:36:35 +00:00
|
|
|
class OriginAttributesPattern : public dom::OriginAttributesPatternDictionary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// To convert a JSON string to an OriginAttributesPattern, do the following:
|
|
|
|
//
|
|
|
|
// OriginAttributesPattern pattern;
|
|
|
|
// if (!pattern.Init(aJSONString)) {
|
|
|
|
// ... // handle failure.
|
|
|
|
// }
|
|
|
|
OriginAttributesPattern() {}
|
|
|
|
|
|
|
|
explicit OriginAttributesPattern(const OriginAttributesPatternDictionary& aOther)
|
|
|
|
: OriginAttributesPatternDictionary(aOther) {}
|
|
|
|
|
|
|
|
// Performs a match of |aAttrs| against this pattern.
|
|
|
|
bool Matches(const OriginAttributes& aAttrs) const
|
|
|
|
{
|
|
|
|
if (mAppId.WasPassed() && mAppId.Value() != aAttrs.mAppId) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-05 01:42:44 +00:00
|
|
|
if (mInIsolatedMozBrowser.WasPassed() && mInIsolatedMozBrowser.Value() != aAttrs.mInIsolatedMozBrowser) {
|
2015-07-09 18:36:35 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mAddonId.WasPassed() && mAddonId.Value() != aAttrs.mAddonId) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-28 21:32:00 +00:00
|
|
|
if (mUserContextId.WasPassed() && mUserContextId.Value() != aAttrs.mUserContextId) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-02 21:02:29 +00:00
|
|
|
if (mPrivateBrowsingId.WasPassed() && mPrivateBrowsingId.Value() != aAttrs.mPrivateBrowsingId) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-08-09 08:34:53 +00:00
|
|
|
if (mFirstPartyDomain.WasPassed() && mFirstPartyDomain.Value() != aAttrs.mFirstPartyDomain) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-09 18:36:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-06-05 19:42:48 +00:00
|
|
|
|
|
|
|
bool Overlaps(const OriginAttributesPattern& aOther) const
|
|
|
|
{
|
|
|
|
if (mAppId.WasPassed() && aOther.mAppId.WasPassed() &&
|
|
|
|
mAppId.Value() != aOther.mAppId.Value()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mInIsolatedMozBrowser.WasPassed() &&
|
|
|
|
aOther.mInIsolatedMozBrowser.WasPassed() &&
|
|
|
|
mInIsolatedMozBrowser.Value() != aOther.mInIsolatedMozBrowser.Value()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mAddonId.WasPassed() && aOther.mAddonId.WasPassed() &&
|
|
|
|
mAddonId.Value() != aOther.mAddonId.Value()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mUserContextId.WasPassed() && aOther.mUserContextId.WasPassed() &&
|
|
|
|
mUserContextId.Value() != aOther.mUserContextId.Value()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mPrivateBrowsingId.WasPassed() && aOther.mPrivateBrowsingId.WasPassed() &&
|
|
|
|
mPrivateBrowsingId.Value() != aOther.mPrivateBrowsingId.Value()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-08-09 08:34:53 +00:00
|
|
|
if (mFirstPartyDomain.WasPassed() && aOther.mFirstPartyDomain.WasPassed() &&
|
|
|
|
mFirstPartyDomain.Value() != aOther.mFirstPartyDomain.Value()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-05 19:42:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-09 18:36:35 +00:00
|
|
|
};
|
|
|
|
|
2015-05-11 21:25:59 +00:00
|
|
|
/*
|
|
|
|
* Base class from which all nsIPrincipal implementations inherit. Use this for
|
|
|
|
* default implementations and other commonalities between principal
|
|
|
|
* implementations.
|
|
|
|
*
|
|
|
|
* We should merge nsJSPrincipals into this class at some point.
|
|
|
|
*/
|
|
|
|
class BasePrincipal : public nsJSPrincipals
|
|
|
|
{
|
|
|
|
public:
|
2015-06-04 18:51:57 +00:00
|
|
|
BasePrincipal();
|
2015-05-14 01:25:40 +00:00
|
|
|
|
2015-05-14 18:15:56 +00:00
|
|
|
enum DocumentDomainConsideration { DontConsiderDocumentDomain, ConsiderDocumentDomain};
|
|
|
|
bool Subsumes(nsIPrincipal* aOther, DocumentDomainConsideration aConsideration);
|
|
|
|
|
2015-05-14 23:50:44 +00:00
|
|
|
NS_IMETHOD GetOrigin(nsACString& aOrigin) final;
|
2015-05-14 23:55:52 +00:00
|
|
|
NS_IMETHOD GetOriginNoSuffix(nsACString& aOrigin) final;
|
2015-05-14 18:15:56 +00:00
|
|
|
NS_IMETHOD Equals(nsIPrincipal* other, bool* _retval) final;
|
|
|
|
NS_IMETHOD EqualsConsideringDomain(nsIPrincipal* other, bool* _retval) final;
|
|
|
|
NS_IMETHOD Subsumes(nsIPrincipal* other, bool* _retval) final;
|
|
|
|
NS_IMETHOD SubsumesConsideringDomain(nsIPrincipal* other, bool* _retval) final;
|
2015-10-01 03:03:36 +00:00
|
|
|
NS_IMETHOD CheckMayLoad(nsIURI* uri, bool report, bool allowIfInheritsPrincipal) final;
|
2015-05-15 21:54:21 +00:00
|
|
|
NS_IMETHOD GetCsp(nsIContentSecurityPolicy** aCsp) override;
|
2016-01-14 21:21:31 +00:00
|
|
|
NS_IMETHOD EnsureCSP(nsIDOMDocument* aDocument, nsIContentSecurityPolicy** aCSP) override;
|
2015-11-15 03:28:23 +00:00
|
|
|
NS_IMETHOD GetPreloadCsp(nsIContentSecurityPolicy** aPreloadCSP) override;
|
2016-01-14 21:21:31 +00:00
|
|
|
NS_IMETHOD EnsurePreloadCSP(nsIDOMDocument* aDocument, nsIContentSecurityPolicy** aCSP) override;
|
2015-05-21 18:16:04 +00:00
|
|
|
NS_IMETHOD GetCspJSON(nsAString& outCSPinJSON) override;
|
2015-10-24 00:58:21 +00:00
|
|
|
NS_IMETHOD GetIsNullPrincipal(bool* aResult) override;
|
|
|
|
NS_IMETHOD GetIsCodebasePrincipal(bool* aResult) override;
|
|
|
|
NS_IMETHOD GetIsExpandedPrincipal(bool* aResult) override;
|
|
|
|
NS_IMETHOD GetIsSystemPrincipal(bool* aResult) override;
|
2015-05-14 23:24:25 +00:00
|
|
|
NS_IMETHOD GetOriginAttributes(JSContext* aCx, JS::MutableHandle<JS::Value> aVal) final;
|
|
|
|
NS_IMETHOD GetOriginSuffix(nsACString& aOriginSuffix) final;
|
2015-05-14 01:25:40 +00:00
|
|
|
NS_IMETHOD GetAppStatus(uint16_t* aAppStatus) final;
|
|
|
|
NS_IMETHOD GetAppId(uint32_t* aAppStatus) final;
|
2016-04-24 03:56:56 +00:00
|
|
|
NS_IMETHOD GetAddonId(nsAString& aAddonId) final;
|
2016-02-05 01:42:44 +00:00
|
|
|
NS_IMETHOD GetIsInIsolatedMozBrowserElement(bool* aIsInIsolatedMozBrowserElement) final;
|
2015-05-14 01:25:40 +00:00
|
|
|
NS_IMETHOD GetUnknownAppId(bool* aUnknownAppId) final;
|
2015-07-30 18:15:00 +00:00
|
|
|
NS_IMETHOD GetUserContextId(uint32_t* aUserContextId) final;
|
2016-06-29 12:01:00 +00:00
|
|
|
NS_IMETHOD GetPrivateBrowsingId(uint32_t* aPrivateBrowsingId) final;
|
2015-05-11 21:36:56 +00:00
|
|
|
|
2016-11-02 17:04:13 +00:00
|
|
|
bool EqualsIgnoringAddonId(nsIPrincipal *aOther);
|
|
|
|
|
2016-07-09 00:19:17 +00:00
|
|
|
virtual bool AddonHasPermission(const nsAString& aPerm);
|
|
|
|
|
2015-05-11 21:36:56 +00:00
|
|
|
virtual bool IsOnCSSUnprefixingWhitelist() override { return false; }
|
2015-05-11 21:25:59 +00:00
|
|
|
|
2015-06-03 20:40:46 +00:00
|
|
|
virtual bool IsCodebasePrincipal() const { return false; };
|
2015-06-03 08:43:43 +00:00
|
|
|
|
2015-05-14 18:15:56 +00:00
|
|
|
static BasePrincipal* Cast(nsIPrincipal* aPrin) { return static_cast<BasePrincipal*>(aPrin); }
|
2015-09-23 10:19:06 +00:00
|
|
|
static already_AddRefed<BasePrincipal>
|
2017-01-12 16:38:48 +00:00
|
|
|
CreateCodebasePrincipal(nsIURI* aURI, const OriginAttributes& aAttrs);
|
2015-08-26 11:12:13 +00:00
|
|
|
static already_AddRefed<BasePrincipal> CreateCodebasePrincipal(const nsACString& aOrigin);
|
2015-05-14 19:24:03 +00:00
|
|
|
|
2017-01-12 16:38:48 +00:00
|
|
|
const OriginAttributes& OriginAttributesRef() override { return mOriginAttributes; }
|
2015-05-14 19:24:03 +00:00
|
|
|
uint32_t AppId() const { return mOriginAttributes.mAppId; }
|
2015-07-30 18:15:00 +00:00
|
|
|
uint32_t UserContextId() const { return mOriginAttributes.mUserContextId; }
|
2016-06-29 12:01:00 +00:00
|
|
|
uint32_t PrivateBrowsingId() const { return mOriginAttributes.mPrivateBrowsingId; }
|
2016-02-05 01:42:44 +00:00
|
|
|
bool IsInIsolatedMozBrowserElement() const { return mOriginAttributes.mInIsolatedMozBrowser; }
|
2015-05-14 19:24:03 +00:00
|
|
|
|
2015-10-24 00:58:21 +00:00
|
|
|
enum PrincipalKind {
|
|
|
|
eNullPrincipal,
|
|
|
|
eCodebasePrincipal,
|
|
|
|
eExpandedPrincipal,
|
|
|
|
eSystemPrincipal
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual PrincipalKind Kind() = 0;
|
|
|
|
|
2016-09-20 08:35:21 +00:00
|
|
|
already_AddRefed<BasePrincipal> CloneStrippingUserContextIdAndFirstPartyDomain();
|
|
|
|
|
2015-05-11 21:25:59 +00:00
|
|
|
protected:
|
2015-06-04 18:51:57 +00:00
|
|
|
virtual ~BasePrincipal();
|
2015-05-11 21:25:59 +00:00
|
|
|
|
2015-05-14 23:50:44 +00:00
|
|
|
virtual nsresult GetOriginInternal(nsACString& aOrigin) = 0;
|
2016-11-02 17:04:13 +00:00
|
|
|
// Note that this does not check OriginAttributes. Callers that depend on
|
|
|
|
// those must call Subsumes instead.
|
2015-05-14 18:15:56 +00:00
|
|
|
virtual bool SubsumesInternal(nsIPrincipal* aOther, DocumentDomainConsideration aConsider) = 0;
|
|
|
|
|
2015-10-01 03:03:36 +00:00
|
|
|
// Internal, side-effect-free check to determine whether the concrete
|
|
|
|
// principal would allow the load ignoring any common behavior implemented in
|
|
|
|
// BasePrincipal::CheckMayLoad.
|
|
|
|
virtual bool MayLoadInternal(nsIURI* aURI) = 0;
|
|
|
|
friend class ::nsExpandedPrincipal;
|
|
|
|
|
2015-07-08 00:53:15 +00:00
|
|
|
// Helper to check whether this principal is associated with an addon that
|
|
|
|
// allows unprivileged code to load aURI.
|
|
|
|
bool AddonAllowsLoad(nsIURI* aURI);
|
|
|
|
|
2015-05-11 21:25:59 +00:00
|
|
|
nsCOMPtr<nsIContentSecurityPolicy> mCSP;
|
2015-11-15 03:28:23 +00:00
|
|
|
nsCOMPtr<nsIContentSecurityPolicy> mPreloadCSP;
|
2017-01-12 16:38:48 +00:00
|
|
|
OriginAttributes mOriginAttributes;
|
2015-05-11 21:25:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_BasePrincipal_h */
|