Bug 1690340 - Part 1: Hide all the panel tools in the developer tools menu. r=jdescottes
[gecko.git] / caps / ContentPrincipal.cpp
blobd17679e714fa2d9e6c61279b53cc57c96835b7a3
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 sw=2 et tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #include "ContentPrincipal.h"
9 #include "mozIThirdPartyUtil.h"
10 #include "nsContentUtils.h"
11 #include "nscore.h"
12 #include "nsScriptSecurityManager.h"
13 #include "nsString.h"
14 #include "nsReadableUtils.h"
15 #include "pratom.h"
16 #include "nsIURI.h"
17 #include "nsIURL.h"
18 #include "nsIStandardURL.h"
19 #include "nsIURIWithSpecialOrigin.h"
20 #include "nsIURIMutator.h"
21 #include "nsJSPrincipals.h"
22 #include "nsIEffectiveTLDService.h"
23 #include "nsIClassInfoImpl.h"
24 #include "nsIObjectInputStream.h"
25 #include "nsIObjectOutputStream.h"
26 #include "nsIProtocolHandler.h"
27 #include "nsError.h"
28 #include "nsIContentSecurityPolicy.h"
29 #include "nsNetCID.h"
30 #include "js/Wrapper.h"
32 #include "mozilla/dom/BlobURLProtocolHandler.h"
33 #include "mozilla/dom/ScriptSettings.h"
34 #include "mozilla/ClearOnShutdown.h"
35 #include "mozilla/ExtensionPolicyService.h"
36 #include "mozilla/Preferences.h"
37 #include "mozilla/HashFunctions.h"
39 #include "nsSerializationHelper.h"
40 #include "json/json.h"
42 using namespace mozilla;
44 static inline ExtensionPolicyService& EPS() {
45 return ExtensionPolicyService::GetSingleton();
48 NS_IMPL_CLASSINFO(ContentPrincipal, nullptr, nsIClassInfo::MAIN_THREAD_ONLY,
49 NS_PRINCIPAL_CID)
50 NS_IMPL_QUERY_INTERFACE_CI(ContentPrincipal, nsIPrincipal, nsISerializable)
51 NS_IMPL_CI_INTERFACE_GETTER(ContentPrincipal, nsIPrincipal, nsISerializable)
53 ContentPrincipal::ContentPrincipal() : BasePrincipal(eContentPrincipal) {}
55 ContentPrincipal::~ContentPrincipal() {}
57 nsresult ContentPrincipal::Init(nsIURI* aURI,
58 const OriginAttributes& aOriginAttributes,
59 const nsACString& aOriginNoSuffix) {
60 NS_ENSURE_ARG(aURI);
62 // Assert that the URI we get here isn't any of the schemes that we know we
63 // should not get here. These schemes always either inherit their principal
64 // or fall back to a null principal. These are schemes which return
65 // URI_INHERITS_SECURITY_CONTEXT from their protocol handler's
66 // GetProtocolFlags function.
67 bool hasFlag = false;
68 Unused << hasFlag; // silence possible compiler warnings.
69 MOZ_DIAGNOSTIC_ASSERT(
70 NS_SUCCEEDED(NS_URIChainHasFlags(
71 aURI, nsIProtocolHandler::URI_INHERITS_SECURITY_CONTEXT, &hasFlag)) &&
72 !hasFlag);
74 mURI = aURI;
75 FinishInit(aOriginNoSuffix, aOriginAttributes);
77 return NS_OK;
80 nsresult ContentPrincipal::Init(ContentPrincipal* aOther,
81 const OriginAttributes& aOriginAttributes) {
82 NS_ENSURE_ARG(aOther);
84 mURI = aOther->mURI;
85 FinishInit(aOther, aOriginAttributes);
87 mDomain = aOther->mDomain;
88 mAddon = aOther->mAddon;
89 return NS_OK;
92 nsresult ContentPrincipal::GetScriptLocation(nsACString& aStr) {
93 return mURI->GetSpec(aStr);
96 /* static */
97 nsresult ContentPrincipal::GenerateOriginNoSuffixFromURI(
98 nsIURI* aURI, nsACString& aOriginNoSuffix) {
99 if (!aURI) {
100 return NS_ERROR_FAILURE;
103 nsCOMPtr<nsIURI> origin = NS_GetInnermostURI(aURI);
104 if (!origin) {
105 return NS_ERROR_FAILURE;
108 MOZ_ASSERT(!NS_IsAboutBlank(origin),
109 "The inner URI for about:blank must be moz-safe-about:blank");
111 // Handle non-strict file:// uris.
112 if (!nsScriptSecurityManager::GetStrictFileOriginPolicy() &&
113 NS_URIIsLocalFile(origin)) {
114 // If strict file origin policy is not in effect, all local files are
115 // considered to be same-origin, so return a known dummy origin here.
116 aOriginNoSuffix.AssignLiteral("file://UNIVERSAL_FILE_URI_ORIGIN");
117 return NS_OK;
120 nsresult rv;
121 // NB: This is only compiled for Thunderbird/Suite.
122 #if IS_ORIGIN_IS_FULL_SPEC_DEFINED
123 bool fullSpec = false;
124 rv = NS_URIChainHasFlags(origin, nsIProtocolHandler::ORIGIN_IS_FULL_SPEC,
125 &fullSpec);
126 NS_ENSURE_SUCCESS(rv, rv);
127 if (fullSpec) {
128 return origin->GetAsciiSpec(aOriginNoSuffix);
130 #endif
132 // We want the invariant that prinA.origin == prinB.origin i.f.f.
133 // prinA.equals(prinB). However, this requires that we impose certain
134 // constraints on the behavior and origin semantics of principals, and in
135 // particular, forbid creating origin strings for principals whose equality
136 // constraints are not expressible as strings (i.e. object equality).
137 // Moreover, we want to forbid URIs containing the magic "^" we use as a
138 // separating character for origin attributes.
140 // These constraints can generally be achieved by restricting .origin to
141 // nsIStandardURL-based URIs, but there are a few other URI schemes that we
142 // need to handle.
143 if (origin->SchemeIs("about") ||
144 (origin->SchemeIs("moz-safe-about") &&
145 // We generally consider two about:foo origins to be same-origin, but
146 // about:blank is special since it can be generated from different
147 // sources. We check for moz-safe-about:blank since origin is an
148 // innermost URI.
149 !StringBeginsWith(origin->GetSpecOrDefault(),
150 "moz-safe-about:blank"_ns))) {
151 rv = origin->GetAsciiSpec(aOriginNoSuffix);
152 NS_ENSURE_SUCCESS(rv, rv);
154 int32_t pos = aOriginNoSuffix.FindChar('?');
155 int32_t hashPos = aOriginNoSuffix.FindChar('#');
157 if (hashPos != kNotFound && (pos == kNotFound || hashPos < pos)) {
158 pos = hashPos;
161 if (pos != kNotFound) {
162 aOriginNoSuffix.Truncate(pos);
165 // These URIs could technically contain a '^', but they never should.
166 if (NS_WARN_IF(aOriginNoSuffix.FindChar('^', 0) != -1)) {
167 aOriginNoSuffix.Truncate();
168 return NS_ERROR_FAILURE;
170 return NS_OK;
173 // This URL can be a blobURL. In this case, we should use the 'parent'
174 // principal instead.
175 nsCOMPtr<nsIPrincipal> blobPrincipal;
176 if (dom::BlobURLProtocolHandler::GetBlobURLPrincipal(
177 origin, getter_AddRefs(blobPrincipal))) {
178 MOZ_ASSERT(blobPrincipal);
179 return blobPrincipal->GetOriginNoSuffix(aOriginNoSuffix);
182 // If we reached this branch, we can only create an origin if we have a
183 // nsIStandardURL. So, we query to a nsIStandardURL, and fail if we aren't
184 // an instance of an nsIStandardURL nsIStandardURLs have the good property
185 // of escaping the '^' character in their specs, which means that we can be
186 // sure that the caret character (which is reserved for delimiting the end
187 // of the spec, and the beginning of the origin attributes) is not present
188 // in the origin string
189 nsCOMPtr<nsIStandardURL> standardURL = do_QueryInterface(origin);
190 if (!standardURL) {
191 return NS_ERROR_FAILURE;
194 // See whether we have a useful hostPort. If we do, use that.
195 nsAutoCString hostPort;
196 if (!origin->SchemeIs("chrome")) {
197 rv = origin->GetAsciiHostPort(hostPort);
198 NS_ENSURE_SUCCESS(rv, rv);
200 if (!hostPort.IsEmpty()) {
201 rv = origin->GetScheme(aOriginNoSuffix);
202 NS_ENSURE_SUCCESS(rv, rv);
203 aOriginNoSuffix.AppendLiteral("://");
204 aOriginNoSuffix.Append(hostPort);
205 return NS_OK;
208 rv = aURI->GetAsciiSpec(aOriginNoSuffix);
209 NS_ENSURE_SUCCESS(rv, rv);
211 // The origin, when taken from the spec, should not contain the ref part of
212 // the URL.
214 int32_t pos = aOriginNoSuffix.FindChar('?');
215 int32_t hashPos = aOriginNoSuffix.FindChar('#');
217 if (hashPos != kNotFound && (pos == kNotFound || hashPos < pos)) {
218 pos = hashPos;
221 if (pos != kNotFound) {
222 aOriginNoSuffix.Truncate(pos);
225 return NS_OK;
228 bool ContentPrincipal::SubsumesInternal(
229 nsIPrincipal* aOther,
230 BasePrincipal::DocumentDomainConsideration aConsideration) {
231 MOZ_ASSERT(aOther);
233 // For ContentPrincipal, Subsumes is equivalent to Equals.
234 if (aOther == this) {
235 return true;
238 // If either the subject or the object has changed its principal by
239 // explicitly setting document.domain then the other must also have
240 // done so in order to be considered the same origin. This prevents
241 // DNS spoofing based on document.domain (154930)
242 nsresult rv;
243 if (aConsideration == ConsiderDocumentDomain) {
244 // Get .domain on each principal.
245 nsCOMPtr<nsIURI> thisDomain, otherDomain;
246 GetDomain(getter_AddRefs(thisDomain));
247 aOther->GetDomain(getter_AddRefs(otherDomain));
249 // If either has .domain set, we have equality i.f.f. the domains match.
250 // Otherwise, we fall through to the non-document-domain-considering case.
251 if (thisDomain || otherDomain) {
252 bool isMatch =
253 nsScriptSecurityManager::SecurityCompareURIs(thisDomain, otherDomain);
254 #ifdef DEBUG
255 if (isMatch) {
256 nsAutoCString thisSiteOrigin, otherSiteOrigin;
257 MOZ_ALWAYS_SUCCEEDS(GetSiteOrigin(thisSiteOrigin));
258 MOZ_ALWAYS_SUCCEEDS(aOther->GetSiteOrigin(otherSiteOrigin));
259 MOZ_ASSERT(
260 thisSiteOrigin == otherSiteOrigin,
261 "SubsumesConsideringDomain passed with mismatched siteOrigin!");
263 #endif
264 return isMatch;
268 // Compare uris.
269 bool isSameOrigin = false;
270 rv = aOther->IsSameOrigin(mURI, false, &isSameOrigin);
271 NS_ENSURE_SUCCESS(rv, false);
272 return isSameOrigin;
275 NS_IMETHODIMP
276 ContentPrincipal::GetURI(nsIURI** aURI) {
277 NS_ADDREF(*aURI = mURI);
278 return NS_OK;
281 bool ContentPrincipal::MayLoadInternal(nsIURI* aURI) {
282 MOZ_ASSERT(aURI);
284 #if defined(MOZ_THUNDERBIRD) || defined(MOZ_SUITE)
285 nsCOMPtr<nsIURIWithSpecialOrigin> uriWithSpecialOrigin =
286 do_QueryInterface(aURI);
287 if (uriWithSpecialOrigin) {
288 nsCOMPtr<nsIURI> origin;
289 nsresult rv = uriWithSpecialOrigin->GetOrigin(getter_AddRefs(origin));
290 if (NS_WARN_IF(NS_FAILED(rv))) {
291 return false;
293 MOZ_ASSERT(origin);
294 OriginAttributes attrs;
295 RefPtr<BasePrincipal> principal =
296 BasePrincipal::CreateContentPrincipal(origin, attrs);
297 return nsIPrincipal::Subsumes(principal);
299 #endif
301 nsCOMPtr<nsIPrincipal> blobPrincipal;
302 if (dom::BlobURLProtocolHandler::GetBlobURLPrincipal(
303 aURI, getter_AddRefs(blobPrincipal))) {
304 MOZ_ASSERT(blobPrincipal);
305 return nsIPrincipal::Subsumes(blobPrincipal);
308 // If this principal is associated with an addon, check whether that addon
309 // has been given permission to load from this domain.
310 if (AddonAllowsLoad(aURI)) {
311 return true;
314 if (nsScriptSecurityManager::SecurityCompareURIs(mURI, aURI)) {
315 return true;
318 // If strict file origin policy is in effect, local files will always fail
319 // SecurityCompareURIs unless they are identical. Explicitly check file origin
320 // policy, in that case.
321 if (nsScriptSecurityManager::GetStrictFileOriginPolicy() &&
322 NS_URIIsLocalFile(aURI) && NS_RelaxStrictFileOriginPolicy(aURI, mURI)) {
323 return true;
326 return false;
329 uint32_t ContentPrincipal::GetHashValue() {
330 MOZ_ASSERT(mURI, "Need a principal URI");
332 nsCOMPtr<nsIURI> uri;
333 GetDomain(getter_AddRefs(uri));
334 if (!uri) {
335 GetURI(getter_AddRefs(uri));
337 return NS_SecurityHashURI(uri);
340 NS_IMETHODIMP
341 ContentPrincipal::GetDomain(nsIURI** aDomain) {
342 if (!mDomain) {
343 *aDomain = nullptr;
344 return NS_OK;
347 NS_ADDREF(*aDomain = mDomain);
348 return NS_OK;
351 NS_IMETHODIMP
352 ContentPrincipal::SetDomain(nsIURI* aDomain) {
353 MOZ_ASSERT(aDomain);
355 mDomain = aDomain;
356 SetHasExplicitDomain();
358 // Set the changed-document-domain flag on compartments containing realms
359 // using this principal.
360 auto cb = [](JSContext*, void*, JS::Realm* aRealm,
361 const JS::AutoRequireNoGC& nogc) {
362 JS::Compartment* comp = JS::GetCompartmentForRealm(aRealm);
363 xpc::SetCompartmentChangedDocumentDomain(comp);
365 JSPrincipals* principals =
366 nsJSPrincipals::get(static_cast<nsIPrincipal*>(this));
368 dom::AutoJSAPI jsapi;
369 jsapi.Init();
370 JS::IterateRealmsWithPrincipals(jsapi.cx(), principals, nullptr, cb);
372 return NS_OK;
375 static nsresult GetSpecialBaseDomain(const nsCOMPtr<nsIURI>& aURI,
376 bool* aHandled, nsACString& aBaseDomain) {
377 *aHandled = false;
379 // Special handling for a file URI.
380 if (NS_URIIsLocalFile(aURI)) {
381 // If strict file origin policy is not in effect, all local files are
382 // considered to be same-origin, so return a known dummy domain here.
383 if (!nsScriptSecurityManager::GetStrictFileOriginPolicy()) {
384 *aHandled = true;
385 aBaseDomain.AssignLiteral("UNIVERSAL_FILE_URI_ORIGIN");
386 return NS_OK;
389 // Otherwise, we return the file path.
390 nsCOMPtr<nsIURL> url = do_QueryInterface(aURI);
392 if (url) {
393 *aHandled = true;
394 return url->GetFilePath(aBaseDomain);
398 bool hasNoRelativeFlag;
399 nsresult rv = NS_URIChainHasFlags(aURI, nsIProtocolHandler::URI_NORELATIVE,
400 &hasNoRelativeFlag);
401 if (NS_WARN_IF(NS_FAILED(rv))) {
402 return rv;
405 // In case of FTP we want to get base domain via TLD service even if FTP
406 // protocol handler is disabled and the scheme is handled by external protocol
407 // handler which returns URI_NORELATIVE flag.
408 if (hasNoRelativeFlag && !aURI->SchemeIs("ftp")) {
409 *aHandled = true;
410 return aURI->GetSpec(aBaseDomain);
413 if (aURI->SchemeIs("indexeddb")) {
414 *aHandled = true;
415 return aURI->GetSpec(aBaseDomain);
418 return NS_OK;
421 NS_IMETHODIMP
422 ContentPrincipal::GetBaseDomain(nsACString& aBaseDomain) {
423 // Handle some special URIs first.
424 bool handled;
425 nsresult rv = GetSpecialBaseDomain(mURI, &handled, aBaseDomain);
426 NS_ENSURE_SUCCESS(rv, rv);
428 if (handled) {
429 return NS_OK;
432 // For everything else, we ask the TLD service via the ThirdPartyUtil.
433 nsCOMPtr<mozIThirdPartyUtil> thirdPartyUtil =
434 do_GetService(THIRDPARTYUTIL_CONTRACTID);
435 if (!thirdPartyUtil) {
436 return NS_ERROR_FAILURE;
439 return thirdPartyUtil->GetBaseDomain(mURI, aBaseDomain);
442 NS_IMETHODIMP
443 ContentPrincipal::GetSiteOriginNoSuffix(nsACString& aSiteOrigin) {
444 // Handle some special URIs first.
445 nsAutoCString baseDomain;
446 bool handled;
447 nsresult rv = GetSpecialBaseDomain(mURI, &handled, baseDomain);
448 NS_ENSURE_SUCCESS(rv, rv);
450 if (handled) {
451 // This is a special URI ("file:", "about:", "view-source:", etc). Just
452 // return the origin.
453 return GetOriginNoSuffix(aSiteOrigin);
456 // For everything else, we ask the TLD service. Note that, unlike in
457 // GetBaseDomain, we don't use ThirdPartyUtil.getBaseDomain because if the
458 // host is an IP address that returns the raw address and we can't use it with
459 // SetHost below because SetHost expects '[' and ']' around IPv6 addresses.
460 // See bug 1491728.
461 nsCOMPtr<nsIEffectiveTLDService> tldService =
462 do_GetService(NS_EFFECTIVETLDSERVICE_CONTRACTID);
463 if (!tldService) {
464 return NS_ERROR_FAILURE;
467 bool gotBaseDomain = false;
468 rv = tldService->GetBaseDomain(mURI, 0, baseDomain);
469 if (NS_SUCCEEDED(rv)) {
470 gotBaseDomain = true;
471 } else {
472 // If this is an IP address or something like "localhost", we just continue
473 // with gotBaseDomain = false.
474 if (rv != NS_ERROR_HOST_IS_IP_ADDRESS &&
475 rv != NS_ERROR_INSUFFICIENT_DOMAIN_LEVELS) {
476 return rv;
480 // NOTE: Calling `SetHostPort` with a portless domain is insufficient to clear
481 // the port, so an extra `SetPort` call has to be made.
482 nsCOMPtr<nsIURI> siteUri;
483 NS_MutateURI mutator(mURI);
484 mutator.SetUserPass(""_ns).SetPort(-1);
485 if (gotBaseDomain) {
486 mutator.SetHost(baseDomain);
488 rv = mutator.Finalize(siteUri);
489 MOZ_ASSERT(NS_SUCCEEDED(rv), "failed to create siteUri");
490 NS_ENSURE_SUCCESS(rv, rv);
492 rv = GenerateOriginNoSuffixFromURI(siteUri, aSiteOrigin);
493 MOZ_ASSERT(NS_SUCCEEDED(rv), "failed to create siteOriginNoSuffix");
494 return rv;
497 nsresult ContentPrincipal::GetSiteIdentifier(SiteIdentifier& aSite) {
498 nsCString siteOrigin;
499 nsresult rv = GetSiteOrigin(siteOrigin);
500 NS_ENSURE_SUCCESS(rv, rv);
502 RefPtr<BasePrincipal> principal = CreateContentPrincipal(siteOrigin);
503 if (!principal) {
504 NS_WARNING("could not instantiate content principal");
505 return NS_ERROR_FAILURE;
508 aSite.Init(principal);
509 return NS_OK;
512 WebExtensionPolicy* ContentPrincipal::AddonPolicy() {
513 if (!mAddon.isSome()) {
514 NS_ENSURE_TRUE(mURI, nullptr);
516 if (mURI->SchemeIs("moz-extension")) {
517 mAddon.emplace(EPS().GetByURL(mURI.get()));
518 } else {
519 mAddon.emplace(nullptr);
523 return mAddon.value();
526 NS_IMETHODIMP
527 ContentPrincipal::GetAddonId(nsAString& aAddonId) {
528 auto policy = AddonPolicy();
529 if (policy) {
530 policy->GetId(aAddonId);
531 } else {
532 aAddonId.Truncate();
534 return NS_OK;
537 NS_IMETHODIMP
538 ContentPrincipal::Read(nsIObjectInputStream* aStream) {
539 nsCOMPtr<nsISupports> supports;
540 nsCOMPtr<nsIURI> principalURI;
541 nsresult rv = NS_ReadOptionalObject(aStream, true, getter_AddRefs(supports));
542 if (NS_FAILED(rv)) {
543 return rv;
546 principalURI = do_QueryInterface(supports);
547 // Enforce re-parsing about: URIs so that if they change, we continue to use
548 // their new principals correctly.
549 if (principalURI->SchemeIs("about")) {
550 nsAutoCString spec;
551 principalURI->GetSpec(spec);
552 NS_ENSURE_SUCCESS(NS_NewURI(getter_AddRefs(principalURI), spec),
553 NS_ERROR_FAILURE);
556 nsCOMPtr<nsIURI> domain;
557 rv = NS_ReadOptionalObject(aStream, true, getter_AddRefs(supports));
558 if (NS_FAILED(rv)) {
559 return rv;
562 domain = do_QueryInterface(supports);
564 nsAutoCString suffix;
565 rv = aStream->ReadCString(suffix);
566 NS_ENSURE_SUCCESS(rv, rv);
568 OriginAttributes attrs;
569 bool ok = attrs.PopulateFromSuffix(suffix);
570 NS_ENSURE_TRUE(ok, NS_ERROR_FAILURE);
572 // Since Bug 965637 we do not serialize the CSP within the
573 // Principal anymore. Nevertheless there might still be
574 // serialized Principals that do have a serialized CSP.
575 // For now, we just read the CSP here but do not actually
576 // consume it. Please note that we deliberately ignore
577 // the return value to avoid CSP deserialization problems.
578 // After Bug 1508939 we will have a new serialization for
579 // Principals which allows us to update the code here.
580 // Additionally, the format for serialized CSPs changed
581 // within Bug 965637 which also can cause failures within
582 // the CSP deserialization code.
583 Unused << NS_ReadOptionalObject(aStream, true, getter_AddRefs(supports));
585 nsAutoCString originNoSuffix;
586 rv = GenerateOriginNoSuffixFromURI(principalURI, originNoSuffix);
587 NS_ENSURE_SUCCESS(rv, rv);
589 rv = Init(principalURI, attrs, originNoSuffix);
590 NS_ENSURE_SUCCESS(rv, rv);
592 // Note: we don't call SetDomain here because we don't need the wrapper
593 // recomputation code there (we just created this principal).
594 mDomain = domain;
595 if (mDomain) {
596 SetHasExplicitDomain();
599 return NS_OK;
602 NS_IMETHODIMP
603 ContentPrincipal::Write(nsIObjectOutputStream* aStream) {
604 // Read is used still for legacy principals
605 MOZ_RELEASE_ASSERT(false, "Old style serialization is removed");
606 return NS_OK;
609 nsresult ContentPrincipal::PopulateJSONObject(Json::Value& aObject) {
610 nsAutoCString principalURI;
611 nsresult rv = mURI->GetSpec(principalURI);
612 NS_ENSURE_SUCCESS(rv, rv);
614 // We turn each int enum field into a JSON string key of the object
615 // aObject is the inner JSON object that has stringified enum keys
616 // An example aObject might be:
618 // eURI eSuffix
619 // | |
620 // {"0": "https://mozilla.com", "2": "^privateBrowsingId=1"}
621 // | | | |
622 // ----------------------------- |
623 // | | |
624 // Key ----------------------
625 // |
626 // Value
627 aObject[std::to_string(eURI)] = principalURI.get();
629 if (mDomain) {
630 nsAutoCString domainStr;
631 rv = mDomain->GetSpec(domainStr);
632 NS_ENSURE_SUCCESS(rv, rv);
633 aObject[std::to_string(eDomain)] = domainStr.get();
636 nsAutoCString suffix;
637 OriginAttributesRef().CreateSuffix(suffix);
638 if (suffix.Length() > 0) {
639 aObject[std::to_string(eSuffix)] = suffix.get();
642 return NS_OK;
645 already_AddRefed<BasePrincipal> ContentPrincipal::FromProperties(
646 nsTArray<ContentPrincipal::KeyVal>& aFields) {
647 MOZ_ASSERT(aFields.Length() == eMax + 1, "Must have all the keys");
648 nsresult rv;
649 nsCOMPtr<nsIURI> principalURI;
650 nsCOMPtr<nsIURI> domain;
651 nsCOMPtr<nsIContentSecurityPolicy> csp;
652 OriginAttributes attrs;
654 // The odd structure here is to make the code to not compile
655 // if all the switch enum cases haven't been codified
656 for (const auto& field : aFields) {
657 switch (field.key) {
658 case ContentPrincipal::eURI:
659 if (!field.valueWasSerialized) {
660 MOZ_ASSERT(
661 false,
662 "Content principals require a principal URI in serialized JSON");
663 return nullptr;
665 rv = NS_NewURI(getter_AddRefs(principalURI), field.value.get());
666 NS_ENSURE_SUCCESS(rv, nullptr);
669 // Enforce re-parsing about: URIs so that if they change, we
670 // continue to use their new principals correctly.
671 if (principalURI->SchemeIs("about")) {
672 nsAutoCString spec;
673 principalURI->GetSpec(spec);
674 if (NS_FAILED(NS_NewURI(getter_AddRefs(principalURI), spec))) {
675 return nullptr;
679 break;
680 case ContentPrincipal::eDomain:
681 if (field.valueWasSerialized) {
682 rv = NS_NewURI(getter_AddRefs(domain), field.value.get());
683 NS_ENSURE_SUCCESS(rv, nullptr);
685 break;
686 case ContentPrincipal::eSuffix:
687 if (field.valueWasSerialized) {
688 bool ok = attrs.PopulateFromSuffix(field.value);
689 if (!ok) {
690 return nullptr;
693 break;
696 nsAutoCString originNoSuffix;
697 rv = ContentPrincipal::GenerateOriginNoSuffixFromURI(principalURI,
698 originNoSuffix);
699 if (NS_FAILED(rv)) {
700 return nullptr;
703 RefPtr<ContentPrincipal> principal = new ContentPrincipal();
704 rv = principal->Init(principalURI, attrs, originNoSuffix);
705 if (NS_FAILED(rv)) {
706 return nullptr;
709 principal->mDomain = domain;
710 if (principal->mDomain) {
711 principal->SetHasExplicitDomain();
714 return principal.forget();