2003-07-24 09:15:20 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2003-07-24 09:15:20 +04:00
|
|
|
|
2018-07-17 22:38:48 +03:00
|
|
|
#ifndef mozilla_ContentPrincipal_h
|
|
|
|
#define mozilla_ContentPrincipal_h
|
2003-07-24 09:15:20 +04:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsJSPrincipals.h"
|
2007-09-18 02:18:28 +04:00
|
|
|
#include "nsTArray.h"
|
2015-05-11 23:16:36 +03:00
|
|
|
#include "nsIContentSecurityPolicy.h"
|
2012-08-20 22:34:33 +04:00
|
|
|
#include "nsIProtocolHandler.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsScriptSecurityManager.h"
|
2015-05-12 00:25:59 +03:00
|
|
|
#include "mozilla/BasePrincipal.h"
|
2017-09-05 21:04:43 +03:00
|
|
|
#include "mozilla/extensions/WebExtensionPolicy.h"
|
2003-07-24 09:15:20 +04:00
|
|
|
|
2019-06-03 15:37:12 +03:00
|
|
|
namespace Json {
|
|
|
|
class Value;
|
|
|
|
}
|
|
|
|
|
2018-07-17 22:38:48 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class ContentPrincipal final : public BasePrincipal {
|
2012-06-11 03:44:50 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_NSISERIALIZABLE
|
2015-05-11 23:16:36 +03:00
|
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr) override;
|
2018-11-20 04:17:52 +03:00
|
|
|
uint32_t GetHashValue() override;
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetURI(nsIURI** aURI) override;
|
|
|
|
NS_IMETHOD GetDomain(nsIURI** aDomain) override;
|
|
|
|
NS_IMETHOD SetDomain(nsIURI* aDomain) override;
|
|
|
|
NS_IMETHOD GetBaseDomain(nsACString& aBaseDomain) override;
|
2016-11-06 08:38:17 +03:00
|
|
|
NS_IMETHOD GetAddonId(nsAString& aAddonId) override;
|
2018-09-05 06:22:16 +03:00
|
|
|
NS_IMETHOD GetSiteOrigin(nsACString& aSiteOrigin) override;
|
2015-06-03 23:40:46 +03:00
|
|
|
bool IsCodebasePrincipal() const override { return true; }
|
2012-07-20 09:44:03 +04:00
|
|
|
|
2017-03-22 13:39:31 +03:00
|
|
|
ContentPrincipal();
|
2012-07-20 09:44:03 +04:00
|
|
|
|
2017-04-16 23:32:42 +03:00
|
|
|
static PrincipalKind Kind() { return eCodebasePrincipal; }
|
|
|
|
|
2012-10-22 10:29:55 +04:00
|
|
|
// Init() must be called before the principal is in a usable state.
|
2018-07-17 22:38:48 +03:00
|
|
|
nsresult Init(nsIURI* aCodebase, const OriginAttributes& aOriginAttributes,
|
2017-03-29 09:24:01 +03:00
|
|
|
const nsACString& aOriginNoSuffix);
|
2018-12-21 14:56:47 +03:00
|
|
|
nsresult Init(ContentPrincipal* aOther,
|
|
|
|
const OriginAttributes& aOriginAttributes);
|
2012-06-11 03:44:50 +04:00
|
|
|
|
2016-08-30 07:22:04 +03:00
|
|
|
virtual nsresult GetScriptLocation(nsACString& aStr) override;
|
2012-06-11 03:44:50 +04:00
|
|
|
|
2018-09-11 12:01:14 +03:00
|
|
|
nsresult GetSiteIdentifier(SiteIdentifier& aSite) override;
|
|
|
|
|
2017-03-29 09:24:01 +03:00
|
|
|
static nsresult GenerateOriginNoSuffixFromURI(nsIURI* aURI,
|
|
|
|
nsACString& aOrigin);
|
|
|
|
|
2018-07-17 22:38:48 +03:00
|
|
|
extensions::WebExtensionPolicy* AddonPolicy();
|
2017-09-05 21:04:43 +03:00
|
|
|
|
2012-06-11 03:44:50 +04:00
|
|
|
nsCOMPtr<nsIURI> mDomain;
|
|
|
|
nsCOMPtr<nsIURI> mCodebase;
|
2012-07-20 09:44:03 +04:00
|
|
|
|
2019-06-03 15:37:12 +03:00
|
|
|
virtual nsresult PopulateJSONObject(Json::Value& aObject) override;
|
|
|
|
// Serializable keys are the valid enum fields the serialization supports
|
|
|
|
enum SerializableKeys { eCodebase = 0, eDomain, eSuffix, eMax = eSuffix };
|
|
|
|
// KeyVal is a lightweight storage that passes
|
|
|
|
// SerializableKeys and values after JSON parsing in the BasePrincipal to
|
|
|
|
// FromProperties
|
|
|
|
struct KeyVal {
|
|
|
|
bool valueWasSerialized;
|
|
|
|
nsCString value;
|
|
|
|
SerializableKeys key;
|
|
|
|
};
|
|
|
|
static already_AddRefed<BasePrincipal> FromProperties(
|
|
|
|
nsTArray<ContentPrincipal::KeyVal>& aFields);
|
|
|
|
|
2012-07-20 09:44:03 +04:00
|
|
|
protected:
|
2017-03-22 13:39:31 +03:00
|
|
|
virtual ~ContentPrincipal();
|
2015-05-14 21:15:56 +03:00
|
|
|
|
2017-03-22 13:39:31 +03:00
|
|
|
bool SubsumesInternal(nsIPrincipal* aOther,
|
|
|
|
DocumentDomainConsideration aConsideration) override;
|
2015-10-01 06:03:36 +03:00
|
|
|
bool MayLoadInternal(nsIURI* aURI) override;
|
2016-11-06 08:38:17 +03:00
|
|
|
|
|
|
|
private:
|
2018-07-17 22:38:48 +03:00
|
|
|
Maybe<WeakPtr<extensions::WebExtensionPolicy>> mAddon;
|
2003-07-24 09:15:20 +04:00
|
|
|
};
|
|
|
|
|
2018-07-17 22:38:48 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2003-07-24 09:15:20 +04:00
|
|
|
#define NS_PRINCIPAL_CONTRACTID "@mozilla.org/principal;1"
|
|
|
|
#define NS_PRINCIPAL_CID \
|
2018-11-30 13:46:48 +03:00
|
|
|
{ \
|
2015-07-29 00:32:00 +03:00
|
|
|
0x653e0e4d, 0x3ee4, 0x45fa, { \
|
|
|
|
0xb2, 0x72, 0x97, 0xc2, 0x0b, 0xc0, 0x1e, 0xb8 \
|
|
|
|
} \
|
|
|
|
}
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-07-17 22:38:48 +03:00
|
|
|
#endif // mozilla_ContentPrincipal_h
|