/* -*- 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/. */ /* * Base class for all our document implementations. */ #include "AudioChannelService.h" #include "mozilla/dom/Document.h" #include "DocumentInlines.h" #include "mozilla/AntiTrackingCommon.h" #include "mozilla/ArrayUtils.h" #include "mozilla/AutoRestore.h" #include "mozilla/BinarySearch.h" #include "mozilla/CSSEnabledState.h" #include "mozilla/DebugOnly.h" #include "mozilla/EditorCommands.h" #include "mozilla/EffectSet.h" #include "mozilla/EnumSet.h" #include "mozilla/HTMLEditor.h" #include "mozilla/IdentifierMapEntry.h" #include "mozilla/IntegerRange.h" #include "mozilla/MemoryReporting.h" #include "mozilla/Likely.h" #include "mozilla/LoadInfo.h" #include "mozilla/MediaFeatureChange.h" #include "mozilla/PresShell.h" #include "mozilla/PresShellInlines.h" #include "mozilla/RestyleManager.h" #include "mozilla/StaticPrefs_browser.h" #include "mozilla/StaticPrefs_dom.h" #include "mozilla/StaticPrefs_fission.h" #include "mozilla/StaticPrefs_full_screen_api.h" #include "mozilla/StaticPrefs_layout.h" #include "mozilla/StaticPrefs_network.h" #include "mozilla/StaticPrefs_page_load.h" #include "mozilla/StaticPrefs_plugins.h" #include "mozilla/StaticPrefs_privacy.h" #include "mozilla/StaticPrefs_security.h" #include "mozilla/StaticPresData.h" #include "mozilla/StorageAccess.h" #include "mozilla/TextControlElement.h" #include "mozilla/TextEditor.h" #include "mozilla/URLDecorationStripper.h" #include "mozilla/URLExtraData.h" #include "mozilla/Base64.h" #include "mozilla/BasePrincipal.h" #include #include "mozilla/Logging.h" #include "plstr.h" #include "mozilla/Sprintf.h" #include "mozilla/Telemetry.h" #include "nsIInlineSpellChecker.h" #include "nsIInterfaceRequestor.h" #include "nsIInterfaceRequestorUtils.h" #include "nsILoadContext.h" #include "nsITextControlFrame.h" #include "nsCommandManager.h" #include "nsCommandParams.h" #include "nsUnicharUtils.h" #include "nsContentList.h" #include "nsCSSPseudoElements.h" #include "nsIObserver.h" #include "nsIBaseWindow.h" #include "nsILayoutHistoryState.h" #include "mozilla/GlobalStyleSheetCache.h" #include "mozilla/css/Loader.h" #include "mozilla/css/ImageLoader.h" #include "nsDocShell.h" #include "nsDocShellLoadTypes.h" #include "nsIDocShellTreeItem.h" #include "nsCOMArray.h" #include "nsQueryObject.h" #include "mozilla/Services.h" #include "nsScreen.h" #include "ChildIterator.h" #include "nsSerializationHelper.h" #include "nsICertOverrideService.h" #include "nsIX509Cert.h" #include "nsIX509CertValidity.h" #include "nsITransportSecurityInfo.h" #include "nsINSSErrorsService.h" #include "nsISocketProvider.h" #include "nsISiteSecurityService.h" #include "PermissionDelegateHandler.h" #include "mozilla/AsyncEventDispatcher.h" #include "mozilla/BasicEvents.h" #include "mozilla/EventListenerManager.h" #include "mozilla/EventStateManager.h" #include "mozilla/FullscreenChange.h" #include "mozilla/PendingAnimationTracker.h" #include "mozilla/intl/LocaleService.h" #include "mozilla/dom/Attr.h" #include "mozilla/dom/BindingDeclarations.h" #include "mozilla/dom/BrowsingContext.h" #include "mozilla/dom/ContentChild.h" #include "mozilla/dom/CSSImportRule.h" #include "mozilla/dom/CSPDictionariesBinding.h" #include "mozilla/dom/DOMIntersectionObserver.h" #include "mozilla/dom/Element.h" #include "mozilla/dom/Event.h" #include "mozilla/dom/FeaturePolicy.h" #include "mozilla/dom/FeaturePolicyUtils.h" #include "mozilla/dom/FramingChecker.h" #include "mozilla/dom/HTMLAllCollection.h" #include "mozilla/dom/HTMLMetaElement.h" #include "mozilla/dom/HTMLSharedElement.h" #include "mozilla/dom/MutationObservers.h" #include "mozilla/dom/Navigator.h" #include "mozilla/dom/Performance.h" #include "mozilla/dom/TreeOrderedArrayInlines.h" #include "mozilla/dom/ResizeObserver.h" #include "mozilla/dom/ResizeObserverController.h" #include "mozilla/dom/ServiceWorkerContainer.h" #include "mozilla/dom/ScriptLoader.h" #include "mozilla/dom/ShadowIncludingTreeIterator.h" #include "mozilla/dom/StyleSheetList.h" #include "mozilla/dom/SVGUseElement.h" #include "mozilla/dom/UserActivation.h" #include "mozilla/net/CookieSettings.h" #include "nsGenericHTMLElement.h" #include "mozilla/dom/CDATASection.h" #include "mozilla/dom/ProcessingInstruction.h" #include "mozilla/dom/PostMessageEvent.h" #include "mozilla/ipc/IdleSchedulerChild.h" #include "nsDOMString.h" #include "nsLayoutUtils.h" // for GetFrameForPoint #include "nsIFrame.h" #include "nsIBrowserChild.h" #include "nsImportModule.h" #include "nsRange.h" #include "mozilla/dom/DocumentType.h" #include "mozilla/dom/NodeIterator.h" #include "mozilla/dom/Promise.h" #include "mozilla/dom/PromiseNativeHandler.h" #include "mozilla/dom/TreeWalker.h" #include "mozilla/dom/ServiceWorkerManager.h" #include "imgLoader.h" #include "nsAboutProtocolUtils.h" #include "nsCanvasFrame.h" #include "nsContentCID.h" #include "nsContentSecurityUtils.h" #include "nsError.h" #include "nsPresContext.h" #include "nsThreadUtils.h" #include "nsNodeInfoManager.h" #include "nsIBrowserUsage.h" #include "nsIEditingSession.h" #include "nsIFileChannel.h" #include "nsIMultiPartChannel.h" #include "nsIRefreshURI.h" #include "nsIWebNavigation.h" #include "nsIScriptError.h" #include "nsISimpleEnumerator.h" #include "nsIRequestContext.h" #include "nsStyleSheetService.h" #include "nsNetUtil.h" // for NS_NewURI #include "nsIInputStreamChannel.h" #include "nsIAuthPrompt.h" #include "nsIAuthPrompt2.h" #include "nsIScriptSecurityManager.h" #include "nsIPermission.h" #include "nsPermissionManager.h" #include "nsIPrincipal.h" #include "nsIPrivateBrowsingChannel.h" #include "ExpandedPrincipal.h" #include "mozilla/NullPrincipal.h" #include "nsPIDOMWindow.h" #include "nsFocusManager.h" #include "nsICookieService.h" #include "nsBidiUtils.h" #include "nsContentCreatorFunctions.h" #include "nsIScriptContext.h" #include "nsHTMLDocument.h" #include "nsIRequest.h" #include "mozilla/dom/BlobURLProtocolHandler.h" #include "nsCharsetSource.h" #include "nsIParser.h" #include "nsIContentSink.h" #include "mozilla/EventDispatcher.h" #include "mozilla/EventStates.h" #include "mozilla/InternalMutationEvent.h" #include "nsDOMCID.h" #include "jsapi.h" #include "xpcpublic.h" #include "nsCCUncollectableMarker.h" #include "nsIContentPolicy.h" #include "nsContentPolicyUtils.h" #include "nsICategoryManager.h" #include "nsIDocumentLoaderFactory.h" #include "nsIDocumentLoader.h" #include "nsIContentViewer.h" #include "nsIXMLContentSink.h" #include "nsIPrompt.h" #include "nsIPropertyBag2.h" #include "mozilla/dom/PageTransitionEvent.h" #include "mozilla/dom/StyleSheetApplicableStateChangeEvent.h" #include "nsJSUtils.h" #include "nsFrameLoader.h" #include "nsEscape.h" #include "nsObjectLoadingContent.h" #include "nsHtml5TreeOpExecutor.h" #include "mozilla/dom/HTMLFormElement.h" #include "mozilla/dom/HTMLLinkElement.h" #include "mozilla/dom/HTMLMediaElement.h" #include "mozilla/dom/HTMLIFrameElement.h" #include "mozilla/dom/HTMLImageElement.h" #include "mozilla/dom/HTMLTextAreaElement.h" #include "mozilla/dom/MediaSource.h" #include "mozAutoDocUpdate.h" #include "nsGlobalWindow.h" #include "mozilla/Encoding.h" #include "nsDOMNavigationTiming.h" #include "mozilla/SMILAnimationController.h" #include "imgIContainer.h" #include "nsSVGUtils.h" #include "nsRefreshDriver.h" // FOR CSP (autogenerated by xpidl) #include "nsIContentSecurityPolicy.h" #include "mozilla/dom/nsCSPContext.h" #include "mozilla/dom/nsCSPService.h" #include "mozilla/dom/nsCSPUtils.h" #include "nsHTMLStyleSheet.h" #include "nsHTMLCSSStyleSheet.h" #include "mozilla/dom/DOMImplementation.h" #include "mozilla/dom/ShadowRoot.h" #include "mozilla/dom/Comment.h" #include "nsTextNode.h" #include "mozilla/dom/Link.h" #include "mozilla/dom/HTMLCollectionBinding.h" #include "mozilla/dom/HTMLElementBinding.h" #include "nsXULAppAPI.h" #include "mozilla/dom/Touch.h" #include "mozilla/dom/TouchEvent.h" #include "mozilla/Preferences.h" #include "imgRequestProxy.h" #include "nsWrapperCacheInlines.h" #include "nsSandboxFlags.h" #include "mozilla/dom/AnimatableBinding.h" #include "mozilla/dom/AnonymousContent.h" #include "mozilla/dom/BindingUtils.h" #include "mozilla/dom/ClientInfo.h" #include "mozilla/dom/ClientState.h" #include "mozilla/dom/DocumentFragment.h" #include "mozilla/dom/DocumentTimeline.h" #include "mozilla/dom/Event.h" #include "mozilla/dom/HTMLBodyElement.h" #include "mozilla/dom/HTMLInputElement.h" #include "mozilla/dom/ImageTracker.h" #include "mozilla/dom/MediaQueryList.h" #include "mozilla/dom/NodeFilterBinding.h" #include "mozilla/OwningNonNull.h" #include "mozilla/dom/BrowserChild.h" #include "mozilla/dom/WebComponentsBinding.h" #include "mozilla/dom/CustomElementRegistryBinding.h" #include "mozilla/dom/CustomElementRegistry.h" #include "mozilla/dom/ServiceWorkerDescriptor.h" #include "mozilla/dom/TimeoutManager.h" #include "mozilla/dom/DocumentL10n.h" #include "mozilla/ExtensionPolicyService.h" #include "nsFrame.h" #include "nsDOMCaretPosition.h" #include "nsViewportInfo.h" #include "mozilla/StaticPtr.h" #include "nsIHttpChannelInternal.h" #include "nsISecurityConsoleMessage.h" #include "nsCharSeparatedTokenizer.h" #include "mozilla/dom/XPathEvaluator.h" #include "mozilla/dom/XPathNSResolverBinding.h" #include "mozilla/dom/XPathResult.h" #include "nsIDocumentEncoder.h" #include "nsIDocumentActivity.h" #include "nsIStructuredCloneContainer.h" #include "mozilla/dom/DOMStringList.h" #include "nsWindowSizes.h" #include "mozilla/dom/Location.h" #include "mozilla/dom/FontFaceSet.h" #include "mozilla/ServoStyleSet.h" #include "mozilla/StyleSheet.h" #include "mozilla/StyleSheetInlines.h" #include "mozilla/dom/SVGDocument.h" #include "mozilla/dom/SVGSVGElement.h" #include "mozilla/dom/DocGroup.h" #include "mozilla/dom/TabGroup.h" #include "mozilla/dom/ChromeObserver.h" #ifdef MOZ_XUL # include "mozilla/dom/XULBroadcastManager.h" # include "mozilla/dom/XULPersist.h" # include "nsIAppWindow.h" # include "nsXULPrototypeDocument.h" # include "nsXULCommandDispatcher.h" # include "nsXULPopupManager.h" # include "nsIDocShellTreeOwner.h" #endif #include "mozilla/DocLoadingTimelineMarker.h" #include "mozilla/dom/WindowGlobalChild.h" #include "nsISpeculativeConnect.h" #include "mozilla/MediaManager.h" #include "AutoplayPolicy.h" #include "nsIURIMutator.h" #include "mozilla/DocumentStyleRootIterator.h" #include "mozilla/PendingFullscreenEvent.h" #include "mozilla/RestyleManager.h" #include "mozilla/ClearOnShutdown.h" #include "mozilla/ResultExtensions.h" #include "nsHTMLTags.h" #include "MobileViewportManager.h" #include "NodeUbiReporting.h" #include "nsICookieService.h" #include "mozilla/net/ChannelEventQueue.h" #include "mozilla/net/RequestContextService.h" #include "StorageAccessPermissionRequest.h" #include "mozilla/dom/WindowProxyHolder.h" #include "ThirdPartyUtil.h" #include "nsHtml5Module.h" #include "nsHtml5Parser.h" #define XML_DECLARATION_BITS_DECLARATION_EXISTS (1 << 0) #define XML_DECLARATION_BITS_ENCODING_EXISTS (1 << 1) #define XML_DECLARATION_BITS_STANDALONE_EXISTS (1 << 2) #define XML_DECLARATION_BITS_STANDALONE_YES (1 << 3) #define NS_MAX_DOCUMENT_WRITE_DEPTH 20 mozilla::LazyLogModule gPageCacheLog("PageCache"); mozilla::LazyLogModule gTimeoutDeferralLog("TimeoutDefer"); namespace mozilla { namespace dom { typedef nsTArray LinkArray; AutoTArray* Document::sLoadingForegroundTopLevelContentDocument = nullptr; static LazyLogModule gDocumentLeakPRLog("DocumentLeak"); static LazyLogModule gCspPRLog("CSP"); LazyLogModule gUserInteractionPRLog("UserInteraction"); static nsresult GetHttpChannelHelper(nsIChannel* aChannel, nsIHttpChannel** aHttpChannel) { nsCOMPtr httpChannel = do_QueryInterface(aChannel); if (httpChannel) { httpChannel.forget(aHttpChannel); return NS_OK; } nsCOMPtr multipart = do_QueryInterface(aChannel); if (!multipart) { *aHttpChannel = nullptr; return NS_OK; } nsCOMPtr baseChannel; nsresult rv = multipart->GetBaseChannel(getter_AddRefs(baseChannel)); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } httpChannel = do_QueryInterface(baseChannel); httpChannel.forget(aHttpChannel); return NS_OK; } } // namespace dom #define NAME_NOT_VALID ((nsSimpleContentList*)1) IdentifierMapEntry::IdentifierMapEntry( const IdentifierMapEntry::DependentAtomOrString* aKey) : mKey(aKey ? *aKey : nullptr) {} IdentifierMapEntry::~IdentifierMapEntry() {} IdentifierMapEntry::IdentifierMapEntry(IdentifierMapEntry&& aOther) : PLDHashEntryHdr(std::move(aOther)), mKey(std::move(aOther.mKey)), mIdContentList(std::move(aOther.mIdContentList)), mNameContentList(std::move(aOther.mNameContentList)), mChangeCallbacks(std::move(aOther.mChangeCallbacks)), mImageElement(std::move(aOther.mImageElement)) {} void IdentifierMapEntry::Traverse( nsCycleCollectionTraversalCallback* aCallback) { NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*aCallback, "mIdentifierMap mNameContentList"); aCallback->NoteXPCOMChild(static_cast(mNameContentList)); if (mImageElement) { NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*aCallback, "mIdentifierMap mImageElement element"); nsIContent* imageElement = mImageElement; aCallback->NoteXPCOMChild(imageElement); } } bool IdentifierMapEntry::IsEmpty() { return mIdContentList->IsEmpty() && !mNameContentList && !mChangeCallbacks && !mImageElement; } bool IdentifierMapEntry::HasNameElement() const { return mNameContentList && mNameContentList->Length() != 0; } void IdentifierMapEntry::AddContentChangeCallback( Document::IDTargetObserver aCallback, void* aData, bool aForImage) { if (!mChangeCallbacks) { mChangeCallbacks = new nsTHashtable; } ChangeCallback cc = {aCallback, aData, aForImage}; mChangeCallbacks->PutEntry(cc); } void IdentifierMapEntry::RemoveContentChangeCallback( Document::IDTargetObserver aCallback, void* aData, bool aForImage) { if (!mChangeCallbacks) return; ChangeCallback cc = {aCallback, aData, aForImage}; mChangeCallbacks->RemoveEntry(cc); if (mChangeCallbacks->Count() == 0) { mChangeCallbacks = nullptr; } } void IdentifierMapEntry::FireChangeCallbacks(Element* aOldElement, Element* aNewElement, bool aImageOnly) { if (!mChangeCallbacks) return; for (auto iter = mChangeCallbacks->ConstIter(); !iter.Done(); iter.Next()) { IdentifierMapEntry::ChangeCallbackEntry* entry = iter.Get(); // Don't fire image changes for non-image observers, and don't fire element // changes for image observers when an image override is active. if (entry->mKey.mForImage ? (mImageElement && !aImageOnly) : aImageOnly) { continue; } if (!entry->mKey.mCallback(aOldElement, aNewElement, entry->mKey.mData)) { iter.Remove(); } } } void IdentifierMapEntry::AddIdElement(Element* aElement) { MOZ_ASSERT(aElement, "Must have element"); MOZ_ASSERT(!mIdContentList->Contains(nullptr), "Why is null in our list?"); size_t index = mIdContentList.Insert(*aElement); if (index == 0) { Element* oldElement = mIdContentList->SafeElementAt(1); FireChangeCallbacks(oldElement, aElement); } } void IdentifierMapEntry::RemoveIdElement(Element* aElement) { MOZ_ASSERT(aElement, "Missing element"); // This should only be called while the document is in an update. // Assertions near the call to this method guarantee this. // This could fire in OOM situations // Only assert this in HTML documents for now as XUL does all sorts of weird // crap. NS_ASSERTION(!aElement->OwnerDoc()->IsHTMLDocument() || mIdContentList->Contains(aElement), "Removing id entry that doesn't exist"); // XXXbz should this ever Compact() I guess when all the content is gone // we'll just get cleaned up in the natural order of things... Element* currentElement = mIdContentList->SafeElementAt(0); mIdContentList.RemoveElement(*aElement); if (currentElement == aElement) { FireChangeCallbacks(currentElement, mIdContentList->SafeElementAt(0)); } } void IdentifierMapEntry::SetImageElement(Element* aElement) { Element* oldElement = GetImageIdElement(); mImageElement = aElement; Element* newElement = GetImageIdElement(); if (oldElement != newElement) { FireChangeCallbacks(oldElement, newElement, true); } } void IdentifierMapEntry::ClearAndNotify() { Element* currentElement = mIdContentList->SafeElementAt(0); mIdContentList.Clear(); if (currentElement) { FireChangeCallbacks(currentElement, nullptr); } mNameContentList = nullptr; if (mImageElement) { SetImageElement(nullptr); } mChangeCallbacks = nullptr; } namespace dom { class SimpleHTMLCollection final : public nsSimpleContentList, public nsIHTMLCollection { public: explicit SimpleHTMLCollection(nsINode* aRoot) : nsSimpleContentList(aRoot) {} NS_DECL_ISUPPORTS_INHERITED virtual nsINode* GetParentObject() override { return nsSimpleContentList::GetParentObject(); } virtual uint32_t Length() override { return nsSimpleContentList::Length(); } virtual Element* GetElementAt(uint32_t aIndex) override { return mElements.SafeElementAt(aIndex)->AsElement(); } virtual Element* GetFirstNamedElement(const nsAString& aName, bool& aFound) override { aFound = false; RefPtr name = NS_Atomize(aName); for (uint32_t i = 0; i < mElements.Length(); i++) { MOZ_DIAGNOSTIC_ASSERT(mElements[i]); Element* element = mElements[i]->AsElement(); if (element->GetID() == name || (element->HasName() && element->GetParsedAttr(nsGkAtoms::name)->GetAtomValue() == name)) { aFound = true; return element; } } return nullptr; } virtual void GetSupportedNames(nsTArray& aNames) override { AutoTArray atoms; for (uint32_t i = 0; i < mElements.Length(); i++) { MOZ_DIAGNOSTIC_ASSERT(mElements[i]); Element* element = mElements[i]->AsElement(); nsAtom* id = element->GetID(); MOZ_ASSERT(id != nsGkAtoms::_empty); if (id && !atoms.Contains(id)) { atoms.AppendElement(id); } if (element->HasName()) { nsAtom* name = element->GetParsedAttr(nsGkAtoms::name)->GetAtomValue(); MOZ_ASSERT(name && name != nsGkAtoms::_empty); if (name && !atoms.Contains(name)) { atoms.AppendElement(name); } } } nsString* names = aNames.AppendElements(atoms.Length()); for (uint32_t i = 0; i < atoms.Length(); i++) { atoms[i]->ToString(names[i]); } } virtual JSObject* GetWrapperPreserveColorInternal() override { return nsWrapperCache::GetWrapperPreserveColor(); } virtual void PreserveWrapperInternal( nsISupports* aScriptObjectHolder) override { nsWrapperCache::PreserveWrapper(aScriptObjectHolder); } virtual JSObject* WrapObject(JSContext* aCx, JS::Handle aGivenProto) override { return HTMLCollection_Binding::Wrap(aCx, this, aGivenProto); } using nsBaseContentList::Item; private: virtual ~SimpleHTMLCollection() {} }; NS_IMPL_ISUPPORTS_INHERITED(SimpleHTMLCollection, nsSimpleContentList, nsIHTMLCollection) } // namespace dom void IdentifierMapEntry::AddNameElement(nsINode* aNode, Element* aElement) { if (!mNameContentList) { mNameContentList = new dom::SimpleHTMLCollection(aNode); } mNameContentList->AppendElement(aElement); } void IdentifierMapEntry::RemoveNameElement(Element* aElement) { if (mNameContentList) { mNameContentList->RemoveElement(aElement); } } bool IdentifierMapEntry::HasIdElementExposedAsHTMLDocumentProperty() { Element* idElement = GetIdElement(); return idElement && nsGenericHTMLElement::ShouldExposeIdAsHTMLDocumentProperty(idElement); } size_t IdentifierMapEntry::SizeOfExcludingThis( MallocSizeOf aMallocSizeOf) const { return mKey.mString.SizeOfExcludingThisIfUnshared(aMallocSizeOf); } // Helper structs for the content->subdoc map class SubDocMapEntry : public PLDHashEntryHdr { public: // Both of these are strong references Element* mKey; // must be first, to look like PLDHashEntryStub dom::Document* mSubDocument; }; class OnloadBlocker final : public nsIRequest { public: OnloadBlocker() {} NS_DECL_ISUPPORTS NS_DECL_NSIREQUEST private: ~OnloadBlocker() {} }; NS_IMPL_ISUPPORTS(OnloadBlocker, nsIRequest) NS_IMETHODIMP OnloadBlocker::GetName(nsACString& aResult) { aResult.AssignLiteral("about:document-onload-blocker"); return NS_OK; } NS_IMETHODIMP OnloadBlocker::IsPending(bool* _retval) { *_retval = true; return NS_OK; } NS_IMETHODIMP OnloadBlocker::GetStatus(nsresult* status) { *status = NS_OK; return NS_OK; } NS_IMETHODIMP OnloadBlocker::Cancel(nsresult status) { return NS_OK; } NS_IMETHODIMP OnloadBlocker::Suspend(void) { return NS_OK; } NS_IMETHODIMP OnloadBlocker::Resume(void) { return NS_OK; } NS_IMETHODIMP OnloadBlocker::GetLoadGroup(nsILoadGroup** aLoadGroup) { *aLoadGroup = nullptr; return NS_OK; } NS_IMETHODIMP OnloadBlocker::SetLoadGroup(nsILoadGroup* aLoadGroup) { return NS_OK; } NS_IMETHODIMP OnloadBlocker::GetLoadFlags(nsLoadFlags* aLoadFlags) { *aLoadFlags = nsIRequest::LOAD_NORMAL; return NS_OK; } NS_IMETHODIMP OnloadBlocker::GetTRRMode(nsIRequest::TRRMode* aTRRMode) { return GetTRRModeImpl(aTRRMode); } NS_IMETHODIMP OnloadBlocker::SetTRRMode(nsIRequest::TRRMode aTRRMode) { return SetTRRModeImpl(aTRRMode); } NS_IMETHODIMP OnloadBlocker::SetLoadFlags(nsLoadFlags aLoadFlags) { return NS_OK; } // ================================================================== namespace dom { ExternalResourceMap::ExternalResourceMap() : mHaveShutDown(false) {} Document* ExternalResourceMap::RequestResource( nsIURI* aURI, nsIReferrerInfo* aReferrerInfo, nsINode* aRequestingNode, Document* aDisplayDocument, ExternalResourceLoad** aPendingLoad) { // If we ever start allowing non-same-origin loads here, we might need to do // something interesting with aRequestingPrincipal even for the hashtable // gets. MOZ_ASSERT(aURI, "Must have a URI"); MOZ_ASSERT(aRequestingNode, "Must have a node"); MOZ_ASSERT(aReferrerInfo, "Must have a referrerInfo"); *aPendingLoad = nullptr; if (mHaveShutDown) { return nullptr; } // First, make sure we strip the ref from aURI. nsCOMPtr clone; nsresult rv = NS_GetURIWithoutRef(aURI, getter_AddRefs(clone)); if (NS_FAILED(rv) || !clone) { return nullptr; } ExternalResource* resource; mMap.Get(clone, &resource); if (resource) { return resource->mDocument; } RefPtr& loadEntry = mPendingLoads.GetOrInsert(clone); if (loadEntry) { RefPtr load(loadEntry); load.forget(aPendingLoad); return nullptr; } RefPtr load(new PendingLoad(aDisplayDocument)); loadEntry = load; if (NS_FAILED(load->StartLoad(clone, aReferrerInfo, aRequestingNode))) { // Make sure we don't thrash things by trying this load again, since // chances are it failed for good reasons (security check, etc). AddExternalResource(clone, nullptr, nullptr, aDisplayDocument); } else { load.forget(aPendingLoad); } return nullptr; } void ExternalResourceMap::EnumerateResources(SubDocEnumFunc aCallback, void* aData) { nsTArray> docs(mMap.Count()); for (const auto& entry : mMap) { if (Document* doc = entry.GetData()->mDocument) { docs.AppendElement(doc); } } for (auto& doc : docs) { if (aCallback(*doc, aData) == CallState::Stop) { return; } } } void ExternalResourceMap::Traverse( nsCycleCollectionTraversalCallback* aCallback) const { // mPendingLoads will get cleared out as the requests complete, so // no need to worry about those here. for (auto iter = mMap.ConstIter(); !iter.Done(); iter.Next()) { ExternalResourceMap::ExternalResource* resource = iter.UserData(); NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*aCallback, "mExternalResourceMap.mMap entry" "->mDocument"); aCallback->NoteXPCOMChild(ToSupports(resource->mDocument)); NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*aCallback, "mExternalResourceMap.mMap entry" "->mViewer"); aCallback->NoteXPCOMChild(resource->mViewer); NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(*aCallback, "mExternalResourceMap.mMap entry" "->mLoadGroup"); aCallback->NoteXPCOMChild(resource->mLoadGroup); } } void ExternalResourceMap::HideViewers() { for (auto iter = mMap.Iter(); !iter.Done(); iter.Next()) { nsCOMPtr viewer = iter.UserData()->mViewer; if (viewer) { viewer->Hide(); } } } void ExternalResourceMap::ShowViewers() { for (auto iter = mMap.Iter(); !iter.Done(); iter.Next()) { nsCOMPtr viewer = iter.UserData()->mViewer; if (viewer) { viewer->Show(); } } } void TransferZoomLevels(Document* aFromDoc, Document* aToDoc) { MOZ_ASSERT(aFromDoc && aToDoc, "transferring zoom levels from/to null doc"); nsPresContext* fromCtxt = aFromDoc->GetPresContext(); if (!fromCtxt) return; nsPresContext* toCtxt = aToDoc->GetPresContext(); if (!toCtxt) return; toCtxt->SetFullZoom(fromCtxt->GetFullZoom()); toCtxt->SetTextZoom(fromCtxt->TextZoom()); toCtxt->SetOverrideDPPX(fromCtxt->GetOverrideDPPX()); } void TransferShowingState(Document* aFromDoc, Document* aToDoc) { MOZ_ASSERT(aFromDoc && aToDoc, "transferring showing state from/to null doc"); if (aFromDoc->IsShowing()) { aToDoc->OnPageShow(true, nullptr); } } nsresult ExternalResourceMap::AddExternalResource(nsIURI* aURI, nsIContentViewer* aViewer, nsILoadGroup* aLoadGroup, Document* aDisplayDocument) { MOZ_ASSERT(aURI, "Unexpected call"); MOZ_ASSERT((aViewer && aLoadGroup) || (!aViewer && !aLoadGroup), "Must have both or neither"); RefPtr load; mPendingLoads.Remove(aURI, getter_AddRefs(load)); nsresult rv = NS_OK; nsCOMPtr doc; if (aViewer) { doc = aViewer->GetDocument(); NS_ASSERTION(doc, "Must have a document"); doc->SetDisplayDocument(aDisplayDocument); // Make sure that hiding our viewer will tear down its presentation. aViewer->SetSticky(false); rv = aViewer->Init(nullptr, nsIntRect(0, 0, 0, 0), nullptr); if (NS_SUCCEEDED(rv)) { rv = aViewer->Open(nullptr, nullptr); } if (NS_FAILED(rv)) { doc = nullptr; aViewer = nullptr; aLoadGroup = nullptr; } } ExternalResource* newResource = new ExternalResource(); mMap.Put(aURI, newResource); newResource->mDocument = doc; newResource->mViewer = aViewer; newResource->mLoadGroup = aLoadGroup; if (doc) { TransferZoomLevels(aDisplayDocument, doc); TransferShowingState(aDisplayDocument, doc); } const nsTArray>& obs = load->Observers(); for (uint32_t i = 0; i < obs.Length(); ++i) { obs[i]->Observe(ToSupports(doc), "external-resource-document-created", nullptr); } return rv; } NS_IMPL_ISUPPORTS(ExternalResourceMap::PendingLoad, nsIStreamListener, nsIRequestObserver) NS_IMETHODIMP ExternalResourceMap::PendingLoad::OnStartRequest(nsIRequest* aRequest) { ExternalResourceMap& map = mDisplayDocument->ExternalResourceMap(); if (map.HaveShutDown()) { return NS_BINDING_ABORTED; } nsCOMPtr viewer; nsCOMPtr loadGroup; nsresult rv = SetupViewer(aRequest, getter_AddRefs(viewer), getter_AddRefs(loadGroup)); // Make sure to do this no matter what nsresult rv2 = map.AddExternalResource(mURI, viewer, loadGroup, mDisplayDocument); if (NS_FAILED(rv)) { return rv; } if (NS_FAILED(rv2)) { mTargetListener = nullptr; return rv2; } return mTargetListener->OnStartRequest(aRequest); } nsresult ExternalResourceMap::PendingLoad::SetupViewer( nsIRequest* aRequest, nsIContentViewer** aViewer, nsILoadGroup** aLoadGroup) { MOZ_ASSERT(!mTargetListener, "Unexpected call to OnStartRequest"); *aViewer = nullptr; *aLoadGroup = nullptr; nsCOMPtr chan(do_QueryInterface(aRequest)); NS_ENSURE_TRUE(chan, NS_ERROR_UNEXPECTED); nsCOMPtr httpChannel(do_QueryInterface(aRequest)); if (httpChannel) { bool requestSucceeded; if (NS_FAILED(httpChannel->GetRequestSucceeded(&requestSucceeded)) || !requestSucceeded) { // Bail out on this load, since it looks like we have an HTTP error page return NS_BINDING_ABORTED; } } nsAutoCString type; chan->GetContentType(type); nsCOMPtr loadGroup; chan->GetLoadGroup(getter_AddRefs(loadGroup)); // Give this document its own loadgroup nsCOMPtr newLoadGroup = do_CreateInstance(NS_LOADGROUP_CONTRACTID); NS_ENSURE_TRUE(newLoadGroup, NS_ERROR_OUT_OF_MEMORY); newLoadGroup->SetLoadGroup(loadGroup); nsCOMPtr callbacks; loadGroup->GetNotificationCallbacks(getter_AddRefs(callbacks)); nsCOMPtr newCallbacks = new LoadgroupCallbacks(callbacks); newLoadGroup->SetNotificationCallbacks(newCallbacks); // This is some serious hackery cribbed from docshell nsCOMPtr catMan = do_GetService(NS_CATEGORYMANAGER_CONTRACTID); NS_ENSURE_TRUE(catMan, NS_ERROR_NOT_AVAILABLE); nsCString contractId; nsresult rv = catMan->GetCategoryEntry("Gecko-Content-Viewers", type, contractId); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr docLoaderFactory = do_GetService(contractId.get()); NS_ENSURE_TRUE(docLoaderFactory, NS_ERROR_NOT_AVAILABLE); nsCOMPtr viewer; nsCOMPtr listener; rv = docLoaderFactory->CreateInstance( "external-resource", chan, newLoadGroup, type, nullptr, nullptr, getter_AddRefs(listener), getter_AddRefs(viewer)); NS_ENSURE_SUCCESS(rv, rv); NS_ENSURE_TRUE(viewer, NS_ERROR_UNEXPECTED); nsCOMPtr parser = do_QueryInterface(listener); if (!parser) { /// We don't want to deal with the various fake documents yet return NS_ERROR_NOT_IMPLEMENTED; } // We can't handle HTML and other weird things here yet. nsIContentSink* sink = parser->GetContentSink(); nsCOMPtr xmlSink = do_QueryInterface(sink); if (!xmlSink) { return NS_ERROR_NOT_IMPLEMENTED; } listener.swap(mTargetListener); viewer.forget(aViewer); newLoadGroup.forget(aLoadGroup); return NS_OK; } NS_IMETHODIMP ExternalResourceMap::PendingLoad::OnDataAvailable(nsIRequest* aRequest, nsIInputStream* aStream, uint64_t aOffset, uint32_t aCount) { // mTargetListener might be null if SetupViewer or AddExternalResource failed. NS_ENSURE_TRUE(mTargetListener, NS_ERROR_FAILURE); if (mDisplayDocument->ExternalResourceMap().HaveShutDown()) { return NS_BINDING_ABORTED; } return mTargetListener->OnDataAvailable(aRequest, aStream, aOffset, aCount); } NS_IMETHODIMP ExternalResourceMap::PendingLoad::OnStopRequest(nsIRequest* aRequest, nsresult aStatus) { // mTargetListener might be null if SetupViewer or AddExternalResource failed if (mTargetListener) { nsCOMPtr listener; mTargetListener.swap(listener); return listener->OnStopRequest(aRequest, aStatus); } return NS_OK; } nsresult ExternalResourceMap::PendingLoad::StartLoad( nsIURI* aURI, nsIReferrerInfo* aReferrerInfo, nsINode* aRequestingNode) { MOZ_ASSERT(aURI, "Must have a URI"); MOZ_ASSERT(aRequestingNode, "Must have a node"); MOZ_ASSERT(aReferrerInfo, "Must have a referrerInfo"); nsCOMPtr loadGroup = aRequestingNode->OwnerDoc()->GetDocumentLoadGroup(); nsresult rv = NS_OK; nsCOMPtr channel; rv = NS_NewChannel(getter_AddRefs(channel), aURI, aRequestingNode, nsILoadInfo::SEC_REQUIRE_SAME_ORIGIN_DATA_INHERITS, nsIContentPolicy::TYPE_OTHER, nullptr, // aPerformanceStorage loadGroup); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr httpChannel(do_QueryInterface(channel)); if (httpChannel) { rv = httpChannel->SetReferrerInfo(aReferrerInfo); Unused << NS_WARN_IF(NS_FAILED(rv)); } mURI = aURI; return channel->AsyncOpen(this); } NS_IMPL_ISUPPORTS(ExternalResourceMap::LoadgroupCallbacks, nsIInterfaceRequestor) #define IMPL_SHIM(_i) \ NS_IMPL_ISUPPORTS(ExternalResourceMap::LoadgroupCallbacks::_i##Shim, _i) IMPL_SHIM(nsILoadContext) IMPL_SHIM(nsIProgressEventSink) IMPL_SHIM(nsIChannelEventSink) IMPL_SHIM(nsIApplicationCacheContainer) #undef IMPL_SHIM #define IID_IS(_i) aIID.Equals(NS_GET_IID(_i)) #define TRY_SHIM(_i) \ PR_BEGIN_MACRO \ if (IID_IS(_i)) { \ nsCOMPtr<_i> real = do_GetInterface(mCallbacks); \ if (!real) { \ return NS_NOINTERFACE; \ } \ nsCOMPtr<_i> shim = new _i##Shim(this, real); \ shim.forget(aSink); \ return NS_OK; \ } \ PR_END_MACRO NS_IMETHODIMP ExternalResourceMap::LoadgroupCallbacks::GetInterface(const nsIID& aIID, void** aSink) { if (mCallbacks && (IID_IS(nsIPrompt) || IID_IS(nsIAuthPrompt) || IID_IS(nsIAuthPrompt2) || IID_IS(nsIBrowserChild))) { return mCallbacks->GetInterface(aIID, aSink); } *aSink = nullptr; TRY_SHIM(nsILoadContext); TRY_SHIM(nsIProgressEventSink); TRY_SHIM(nsIChannelEventSink); TRY_SHIM(nsIApplicationCacheContainer); return NS_NOINTERFACE; } #undef TRY_SHIM #undef IID_IS ExternalResourceMap::ExternalResource::~ExternalResource() { if (mViewer) { mViewer->Close(nullptr); mViewer->Destroy(); } } // ================================================================== // = // ================================================================== // If we ever have an nsIDocumentObserver notification for stylesheet title // changes we should update the list from that instead of overriding // EnsureFresh. class DOMStyleSheetSetList final : public DOMStringList { public: explicit DOMStyleSheetSetList(Document* aDocument); void Disconnect() { mDocument = nullptr; } virtual void EnsureFresh() override; protected: Document* mDocument; // Our document; weak ref. It'll let us know if it // dies. }; DOMStyleSheetSetList::DOMStyleSheetSetList(Document* aDocument) : mDocument(aDocument) { NS_ASSERTION(mDocument, "Must have document!"); } void DOMStyleSheetSetList::EnsureFresh() { MOZ_ASSERT(NS_IsMainThread()); mNames.Clear(); if (!mDocument) { return; // Spec says "no exceptions", and we have no style sets if we have // no document, for sure } size_t count = mDocument->SheetCount(); nsAutoString title; for (size_t index = 0; index < count; index++) { StyleSheet* sheet = mDocument->SheetAt(index); NS_ASSERTION(sheet, "Null sheet in sheet list!"); sheet->GetTitle(title); if (!title.IsEmpty() && !mNames.Contains(title) && !Add(title)) { return; } } } // ================================================================== Document::SelectorCache::SelectorCache(nsIEventTarget* aEventTarget) : nsExpirationTracker(1000, "Document::SelectorCache", aEventTarget) {} Document::SelectorCache::~SelectorCache() { AgeAllGenerations(); } void Document::SelectorCache::NotifyExpired(SelectorCacheKey* aSelector) { MOZ_ASSERT(NS_IsMainThread()); MOZ_ASSERT(aSelector); // There is no guarantee that this method won't be re-entered when selector // matching is ongoing because "memory-pressure" could be notified immediately // when OOM happens according to the design of nsExpirationTracker. // The perfect solution is to delete the |aSelector| and its // RawServoSelectorList in mTable asynchronously. // We remove these objects synchronously for now because NotifyExpired() will // never be triggered by "memory-pressure" which is not implemented yet in // the stage 2 of mozalloc_handle_oom(). // Once these objects are removed asynchronously, we should update the warning // added in mozalloc_handle_oom() as well. RemoveObject(aSelector); mTable.Remove(aSelector->mKey); delete aSelector; } Document::FrameRequest::FrameRequest(FrameRequestCallback& aCallback, int32_t aHandle) : mCallback(&aCallback), mHandle(aHandle) {} // ================================================================== // = // ================================================================== Document::InternalCommandDataHashtable* Document::sInternalCommandDataHashtable = nullptr; // static void Document::Shutdown() { if (sInternalCommandDataHashtable) { sInternalCommandDataHashtable->Clear(); delete sInternalCommandDataHashtable; sInternalCommandDataHashtable = nullptr; } } Document::Document(const char* aContentType) : nsINode(nullptr), DocumentOrShadowRoot(this), mBlockAllMixedContent(false), mBlockAllMixedContentPreloads(false), mUpgradeInsecureRequests(false), mUpgradeInsecurePreloads(false), mDontWarnAboutMutationEventsAndAllowSlowDOMMutations(false), mCharacterSet(WINDOWS_1252_ENCODING), mCharacterSetSource(0), mParentDocument(nullptr), mCachedRootElement(nullptr), mNodeInfoManager(nullptr), #ifdef DEBUG mStyledLinksCleared(false), #endif mBidiEnabled(false), mMayNeedFontPrefsUpdate(true), mMathMLEnabled(false), mIsInitialDocumentInWindow(false), mIgnoreDocGroupMismatches(false), mLoadedAsData(false), mLoadedAsInteractiveData(false), mMayStartLayout(true), mHaveFiredTitleChange(false), mIsShowing(false), mVisible(true), mRemovedFromDocShell(false), // mAllowDNSPrefetch starts true, so that we can always reliably && it // with various values that might disable it. Since we never prefetch // unless we get a window, and in that case the docshell value will get // &&-ed in, this is safe. mAllowDNSPrefetch(true), mIsStaticDocument(false), mCreatingStaticClone(false), mInUnlinkOrDeletion(false), mHasHadScriptHandlingObject(false), mIsBeingUsedAsImage(false), mDocURISchemeIsChrome(false), mInChromeDocShell(false), mIsDevToolsDocument(false), mIsSyntheticDocument(false), mHasLinksToUpdateRunnable(false), mFlushingPendingLinkUpdates(false), mMayHaveDOMMutationObservers(false), mMayHaveAnimationObservers(false), mHasMixedActiveContentLoaded(false), mHasMixedActiveContentBlocked(false), mHasMixedDisplayContentLoaded(false), mHasMixedDisplayContentBlocked(false), mHasCSP(false), mHasUnsafeEvalCSP(false), mHasUnsafeInlineCSP(false), mBFCacheDisallowed(false), mHasHadDefaultView(false), mStyleSheetChangeEventsEnabled(false), mIsSrcdocDocument(false), mHasDisplayDocument(false), mFontFaceSetDirty(true), mDidFireDOMContentLoaded(true), mHasScrollLinkedEffect(false), mFrameRequestCallbacksScheduled(false), mIsTopLevelContentDocument(false), mIsContentDocument(false), mDidCallBeginLoad(false), mAllowPaymentRequest(false), mEncodingMenuDisabled(false), mLinksEnabled(true), mIsSVGGlyphsDocument(false), mInDestructor(false), mIsGoingAway(false), mInXBLUpdate(false), mNeedsReleaseAfterStackRefCntRelease(false), mStyleSetFilled(false), mQuirkSheetAdded(false), mContentEditableSheetAdded(false), mDesignModeSheetAdded(false), mSSApplicableStateNotificationPending(false), mMayHaveTitleElement(false), mDOMLoadingSet(false), mDOMInteractiveSet(false), mDOMCompleteSet(false), mAutoFocusFired(false), mScrolledToRefAlready(false), mChangeScrollPosWhenScrollingToRef(false), mDelayFrameLoaderInitialization(false), mSynchronousDOMContentLoaded(false), mMaybeServiceWorkerControlled(false), mAllowZoom(false), mValidScaleFloat(false), mValidMinScale(false), mValidMaxScale(false), mWidthStrEmpty(false), mParserAborted(false), mReportedUseCounters(false), mHasReportedShadowDOMUsage(false), mDocTreeHadAudibleMedia(false), mDocTreeHadPlayRevoked(false), mHasDelayedRefreshEvent(false), mLoadEventFiring(false), mSkipLoadEventAfterClose(false), mDisableCookieAccess(false), mDisableDocWrite(false), mTooDeepWriteRecursion(false), mPendingMaybeEditingStateChanged(false), mHasBeenEditable(false), mHasWarnedAboutZoom(false), mIsRunningExecCommand(false), mPendingFullscreenRequests(0), mXMLDeclarationBits(0), mOnloadBlockCount(0), mAsyncOnloadBlockCount(0), mWriteLevel(0), mContentEditableCount(0), mEditingState(EditingState::eOff), mCompatMode(eCompatibility_FullStandards), mReadyState(ReadyState::READYSTATE_UNINITIALIZED), mAncestorIsLoading(false), mVisibilityState(dom::VisibilityState::Hidden), mType(eUnknown), mDefaultElementType(0), mAllowXULXBL(eTriUnset), mSkipDTDSecurityChecks(false), mBidiOptions(IBMBIDI_DEFAULT_BIDI_OPTIONS), mSandboxFlags(0), mPartID(0), mMarkedCCGeneration(0), mPresShell(nullptr), mSubtreeModifiedDepth(0), mPreloadPictureDepth(0), mEventsSuppressed(0), mIgnoreDestructiveWritesCounter(0), mFrameRequestCallbackCounter(0), mStaticCloneCount(0), mWindow(nullptr), mBFCacheEntry(nullptr), mInSyncOperationCount(0), mBlockDOMContentLoaded(0), mUseCounters(0), mChildDocumentUseCounters(0), mUserHasInteracted(false), mHasUserInteractionTimerScheduled(false), mStackRefCnt(0), mUpdateNestLevel(0), mViewportType(Unknown), mViewportFit(ViewportFitType::Auto), mSubDocuments(nullptr), mHeaderData(nullptr), mFlashClassification(FlashClassification::Unknown), mScrollAnchorAdjustmentLength(0), mScrollAnchorAdjustmentCount(0), mServoRestyleRootDirtyBits(0), mThrowOnDynamicMarkupInsertionCounter(0), mIgnoreOpensDuringUnloadCounter(0), mDocLWTheme(Doc_Theme_Uninitialized), mSavedResolution(1.0f), mSavedResolutionBeforeMVM(1.0f), mPendingInitialTranslation(false), mGeneration(0), mCachedTabSizeGeneration(0), mNextFormNumber(0), mNextControlNumber(0) { MOZ_LOG(gDocumentLeakPRLog, LogLevel::Debug, ("DOCUMENT %p created", this)); SetIsInDocument(); SetIsConnected(true); // Create these unconditionally, they will be used to warn about the `zoom` // property, even if use counters are disabled. mStyleUseCounters = Servo_UseCounters_Create().Consume(); SetContentTypeInternal(nsDependentCString(aContentType)); // Start out mLastStyleSheetSet as null, per spec SetDOMStringToNull(mLastStyleSheetSet); // void state used to differentiate an empty source from an unselected source mPreloadPictureFoundSource.SetIsVoid(true); RecomputeLanguageFromCharset(); mPreloadReferrerInfo = new dom::ReferrerInfo(nullptr); mReferrerInfo = new dom::ReferrerInfo(nullptr); } #ifndef ANDROID // unused by GeckoView static bool IsAboutErrorPage(nsGlobalWindowInner* aWin, const char* aSpec) { if (NS_WARN_IF(!aWin)) { return false; } nsIURI* uri = aWin->GetDocumentURI(); if (NS_WARN_IF(!uri)) { return false; } // getSpec is an expensive operation, hence we first check the scheme // to see if the caller is actually an about: page. if (!uri->SchemeIs("about")) { return false; } nsAutoCString aboutSpec; nsresult rv = NS_GetAboutModuleName(uri, aboutSpec); NS_ENSURE_SUCCESS(rv, false); return aboutSpec.EqualsASCII(aSpec); } #endif bool Document::CallerIsTrustedAboutNetError(JSContext* aCx, JSObject* aObject) { nsGlobalWindowInner* win = xpc::WindowOrNull(aObject); #ifdef ANDROID // GeckoView uses data URLs for error pages, so for now just check for any // error page return win && win->GetDocument() && win->GetDocument()->IsErrorPage(); #else return IsAboutErrorPage(win, "neterror"); #endif } already_AddRefed Document::AddCertException( bool aIsTemporary) { nsIGlobalObject* global = GetScopeObject(); if (!global) { return nullptr; } ErrorResult er; RefPtr promise = Promise::Create(global, er, Promise::ePropagateUserInteraction); if (er.Failed()) { return nullptr; } nsCOMPtr info; nsCOMPtr tsi; nsresult rv = NS_OK; if (NS_WARN_IF(!mFailedChannel)) { promise->MaybeReject(NS_ERROR_DOM_INVALID_STATE_ERR); return promise.forget(); } rv = mFailedChannel->GetSecurityInfo(getter_AddRefs(info)); if (NS_WARN_IF(NS_FAILED(rv))) { promise->MaybeReject(rv); return promise.forget(); } nsCOMPtr failedChannelURI; NS_GetFinalChannelURI(mFailedChannel, getter_AddRefs(failedChannelURI)); if (!failedChannelURI) { promise->MaybeReject(NS_ERROR_DOM_INVALID_STATE_ERR); return promise.forget(); } nsAutoCString host; failedChannelURI->GetAsciiHost(host); int32_t port; failedChannelURI->GetPort(&port); tsi = do_QueryInterface(info); if (NS_WARN_IF(!tsi)) { promise->MaybeReject(NS_ERROR_DOM_INVALID_STATE_ERR); return promise.forget(); } bool isUntrusted = true; rv = tsi->GetIsUntrusted(&isUntrusted); if (NS_WARN_IF(NS_FAILED(rv))) { promise->MaybeReject(rv); return promise.forget(); } bool isDomainMismatch = true; rv = tsi->GetIsDomainMismatch(&isDomainMismatch); if (NS_WARN_IF(NS_FAILED(rv))) { promise->MaybeReject(rv); return promise.forget(); } bool isNotValidAtThisTime = true; rv = tsi->GetIsNotValidAtThisTime(&isNotValidAtThisTime); if (NS_WARN_IF(NS_FAILED(rv))) { promise->MaybeReject(rv); return promise.forget(); } nsCOMPtr cert; rv = tsi->GetServerCert(getter_AddRefs(cert)); if (NS_WARN_IF(NS_FAILED(rv))) { promise->MaybeReject(rv); return promise.forget(); } if (NS_WARN_IF(!cert)) { promise->MaybeReject(NS_ERROR_DOM_INVALID_STATE_ERR); return promise.forget(); } uint32_t flags = 0; if (isUntrusted) { flags |= nsICertOverrideService::ERROR_UNTRUSTED; } if (isDomainMismatch) { flags |= nsICertOverrideService::ERROR_MISMATCH; } if (isNotValidAtThisTime) { flags |= nsICertOverrideService::ERROR_TIME; } if (XRE_IsContentProcess()) { nsCOMPtr certSer = do_QueryInterface(cert); nsCString certSerialized; NS_SerializeToString(certSer, certSerialized); ContentChild* cc = ContentChild::GetSingleton(); MOZ_ASSERT(cc); cc->SendAddCertException(certSerialized, flags, host, port, aIsTemporary) ->Then(GetCurrentThreadSerialEventTarget(), __func__, [promise](const mozilla::MozPromise< nsresult, mozilla::ipc::ResponseRejectReason, true>::ResolveOrRejectValue& aValue) { if (aValue.IsResolve()) { promise->MaybeResolve(aValue.ResolveValue()); } else { promise->MaybeRejectWithUndefined(); } }); return promise.forget(); } if (XRE_IsParentProcess()) { nsCOMPtr overrideService = do_GetService(NS_CERTOVERRIDE_CONTRACTID); if (!overrideService) { promise->MaybeReject(NS_ERROR_FAILURE); return promise.forget(); } rv = overrideService->RememberValidityOverride(host, port, cert, flags, aIsTemporary); if (NS_WARN_IF(NS_FAILED(rv))) { promise->MaybeReject(rv); return promise.forget(); } promise->MaybeResolveWithUndefined(); return promise.forget(); } promise->MaybeReject(NS_ERROR_FAILURE); return promise.forget(); } void Document::GetNetErrorInfo(NetErrorInfo& aInfo, ErrorResult& aRv) { nsCOMPtr info; nsCOMPtr tsi; nsresult rv = NS_OK; if (NS_WARN_IF(!mFailedChannel)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } rv = mFailedChannel->GetSecurityInfo(getter_AddRefs(info)); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } tsi = do_QueryInterface(info); if (NS_WARN_IF(!tsi)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } nsAutoString errorCodeString; rv = tsi->GetErrorCodeString(errorCodeString); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } aInfo.mErrorCodeString.Assign(errorCodeString); } bool Document::CallerIsTrustedAboutCertError(JSContext* aCx, JSObject* aObject) { nsGlobalWindowInner* win = xpc::WindowOrNull(aObject); #ifdef ANDROID // GeckoView uses data URLs for error pages, so for now just check for any // error page return win && win->GetDocument() && win->GetDocument()->IsErrorPage(); #else return IsAboutErrorPage(win, "certerror"); #endif } bool Document::IsErrorPage() const { nsCOMPtr loadInfo = mChannel ? mChannel->LoadInfo() : nullptr; return loadInfo && loadInfo->GetLoadErrorPage(); } void Document::GetFailedCertSecurityInfo(FailedCertSecurityInfo& aInfo, ErrorResult& aRv) { nsCOMPtr info; nsCOMPtr tsi; nsresult rv = NS_OK; if (NS_WARN_IF(!mFailedChannel)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } rv = mFailedChannel->GetSecurityInfo(getter_AddRefs(info)); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } tsi = do_QueryInterface(info); if (NS_WARN_IF(!tsi)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } nsAutoString errorCodeString; rv = tsi->GetErrorCodeString(errorCodeString); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } aInfo.mErrorCodeString.Assign(errorCodeString); rv = tsi->GetIsUntrusted(&aInfo.mIsUntrusted); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } rv = tsi->GetIsDomainMismatch(&aInfo.mIsDomainMismatch); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } rv = tsi->GetIsNotValidAtThisTime(&aInfo.mIsNotValidAtThisTime); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } nsCOMPtr cert; nsCOMPtr validity; rv = tsi->GetServerCert(getter_AddRefs(cert)); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } if (NS_WARN_IF(!cert)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } rv = cert->GetValidity(getter_AddRefs(validity)); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } if (NS_WARN_IF(!validity)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } PRTime validityResult; rv = validity->GetNotBefore(&validityResult); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } aInfo.mValidNotBefore = DOMTimeStamp(validityResult / PR_USEC_PER_MSEC); rv = validity->GetNotAfter(&validityResult); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } aInfo.mValidNotAfter = DOMTimeStamp(validityResult / PR_USEC_PER_MSEC); nsAutoString subjectAltNames; rv = cert->GetSubjectAltNames(subjectAltNames); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } aInfo.mSubjectAltNames = subjectAltNames; nsAutoString issuerCommonName; nsAutoString certChainPEMString; Sequence& certChainStrings = aInfo.mCertChainStrings.Construct(); int64_t maxValidity = std::numeric_limits::max(); int64_t minValidity = 0; PRTime notBefore, notAfter; nsTArray> failedCertArray; rv = tsi->GetFailedCertChain(failedCertArray); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } if (NS_WARN_IF(failedCertArray.IsEmpty())) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } for (const auto& certificate : failedCertArray) { rv = certificate->GetIssuerCommonName(issuerCommonName); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } rv = certificate->GetValidity(getter_AddRefs(validity)); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } if (NS_WARN_IF(!validity)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } rv = validity->GetNotBefore(¬Before); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } rv = validity->GetNotAfter(¬After); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } notBefore = std::max(minValidity, notBefore); notAfter = std::min(maxValidity, notAfter); nsTArray certArray; rv = certificate->GetRawDER(certArray); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } certArray.AppendElement( 0); // Append null terminator, required by nsC*String. nsDependentCString derString(reinterpret_cast(certArray.Elements()), certArray.Length() - 1); nsAutoCString der64; rv = Base64Encode(derString, der64); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } if (!certChainStrings.AppendElement(NS_ConvertUTF8toUTF16(der64), fallible)) { aRv.Throw(NS_ERROR_OUT_OF_MEMORY); return; } } aInfo.mIssuerCommonName.Assign(issuerCommonName); aInfo.mCertValidityRangeNotAfter = DOMTimeStamp(notAfter / PR_USEC_PER_MSEC); aInfo.mCertValidityRangeNotBefore = DOMTimeStamp(notBefore / PR_USEC_PER_MSEC); int32_t errorCode; rv = tsi->GetErrorCode(&errorCode); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } nsCOMPtr nsserr = do_GetService("@mozilla.org/nss_errors_service;1"); if (NS_WARN_IF(!nsserr)) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_ERR); return; } nsresult res; rv = nsserr->GetXPCOMFromNSSError(errorCode, &res); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } rv = nsserr->GetErrorMessage(res, aInfo.mErrorMessage); if (NS_WARN_IF(NS_FAILED(rv))) { aRv.Throw(rv); return; } bool isPrivateBrowsing = nsContentUtils::IsInPrivateBrowsing(this); uint32_t flags = isPrivateBrowsing ? nsISocketProvider::NO_PERMANENT_STORAGE : 0; OriginAttributes attrs; attrs = nsContentUtils::GetOriginAttributes(this); nsCOMPtr aURI; mFailedChannel->GetURI(getter_AddRefs(aURI)); if (XRE_IsContentProcess()) { ContentChild* cc = ContentChild::GetSingleton(); MOZ_ASSERT(cc); mozilla::ipc::URIParams uri; SerializeURI(aURI, uri); cc->SendIsSecureURI(nsISiteSecurityService::HEADER_HSTS, uri, flags, attrs, &aInfo.mHasHSTS); cc->SendIsSecureURI(nsISiteSecurityService::HEADER_HPKP, uri, flags, attrs, &aInfo.mHasHPKP); } else { nsCOMPtr sss = do_GetService(NS_SSSERVICE_CONTRACTID); if (NS_WARN_IF(!sss)) { return; } Unused << NS_WARN_IF(NS_FAILED( sss->IsSecureURI(nsISiteSecurityService::HEADER_HSTS, aURI, flags, attrs, nullptr, nullptr, &aInfo.mHasHSTS))); Unused << NS_WARN_IF(NS_FAILED( sss->IsSecureURI(nsISiteSecurityService::HEADER_HPKP, aURI, flags, attrs, nullptr, nullptr, &aInfo.mHasHPKP))); } } bool Document::IsAboutPage() const { nsCOMPtr principal = NodePrincipal(); return principal->SchemeIs("about"); } void Document::ConstructUbiNode(void* storage) { JS::ubi::Concrete::construct(storage, this); } Document::~Document() { MOZ_LOG(gDocumentLeakPRLog, LogLevel::Debug, ("DOCUMENT %p destroyed", this)); MOZ_ASSERT(!IsTopLevelContentDocument() || !IsResourceDoc(), "Can't be top-level and a resource doc at the same time"); NS_ASSERTION(!mIsShowing, "Destroying a currently-showing document"); if (IsTopLevelContentDocument()) { RemoveToplevelLoadingDocument(this); // don't report for about: pages if (!IsAboutPage()) { // Record the page load uint32_t pageLoaded = 1; Accumulate(Telemetry::MIXED_CONTENT_UNBLOCK_COUNTER, pageLoaded); // Record the mixed content status of the docshell in Telemetry enum { NO_MIXED_CONTENT = 0, // There is no Mixed Content on the page MIXED_DISPLAY_CONTENT = 1, // The page attempted to load Mixed Display Content MIXED_ACTIVE_CONTENT = 2, // The page attempted to load Mixed Active Content MIXED_DISPLAY_AND_ACTIVE_CONTENT = 3 // The page attempted to load Mixed Display & Mixed Active // Content }; bool mixedActiveLoaded = GetHasMixedActiveContentLoaded(); bool mixedActiveBlocked = GetHasMixedActiveContentBlocked(); bool mixedDisplayLoaded = GetHasMixedDisplayContentLoaded(); bool mixedDisplayBlocked = GetHasMixedDisplayContentBlocked(); bool hasMixedDisplay = (mixedDisplayBlocked || mixedDisplayLoaded); bool hasMixedActive = (mixedActiveBlocked || mixedActiveLoaded); uint32_t mixedContentLevel = NO_MIXED_CONTENT; if (hasMixedDisplay && hasMixedActive) { mixedContentLevel = MIXED_DISPLAY_AND_ACTIVE_CONTENT; } else if (hasMixedActive) { mixedContentLevel = MIXED_ACTIVE_CONTENT; } else if (hasMixedDisplay) { mixedContentLevel = MIXED_DISPLAY_CONTENT; } Accumulate(Telemetry::MIXED_CONTENT_PAGE_LOAD, mixedContentLevel); // record CSP telemetry on this document if (mHasCSP) { Accumulate(Telemetry::CSP_DOCUMENTS_COUNT, 1); } if (mHasUnsafeInlineCSP) { Accumulate(Telemetry::CSP_UNSAFE_INLINE_DOCUMENTS_COUNT, 1); } if (mHasUnsafeEvalCSP) { Accumulate(Telemetry::CSP_UNSAFE_EVAL_DOCUMENTS_COUNT, 1); } if (MOZ_UNLIKELY(mMathMLEnabled)) { ScalarAdd(Telemetry::ScalarID::MATHML_DOC_COUNT, 1); } ScalarAdd(Telemetry::ScalarID::MEDIA_PAGE_COUNT, 1); if (mDocTreeHadAudibleMedia) { ScalarAdd(Telemetry::ScalarID::MEDIA_PAGE_HAD_MEDIA_COUNT, 1); } if (IsHTMLDocument()) { switch (GetCompatibilityMode()) { case eCompatibility_FullStandards: Telemetry::AccumulateCategorical( Telemetry::LABELS_QUIRKS_MODE::FullStandards); break; case eCompatibility_AlmostStandards: Telemetry::AccumulateCategorical( Telemetry::LABELS_QUIRKS_MODE::AlmostStandards); break; case eCompatibility_NavQuirks: Telemetry::AccumulateCategorical( Telemetry::LABELS_QUIRKS_MODE::NavQuirks); break; default: MOZ_ASSERT_UNREACHABLE("Unknown quirks mode"); break; } } } } mInDestructor = true; mInUnlinkOrDeletion = true; mozilla::DropJSObjects(this); // Clear mObservers to keep it in sync with the mutationobserver list mObservers.Clear(); mIntersectionObservers.Clear(); if (mStyleSheetSetList) { mStyleSheetSetList->Disconnect(); } if (mAnimationController) { mAnimationController->Disconnect(); } MOZ_ASSERT(mTimelines.isEmpty()); mParentDocument = nullptr; // Kill the subdocument map, doing this will release its strong // references, if any. delete mSubDocuments; mSubDocuments = nullptr; nsAutoScriptBlocker scriptBlocker; // Destroy link map now so we don't waste time removing // links one by one DestroyElementMaps(); // Invalidate cached array of child nodes InvalidateChildNodes(); // We should not have child nodes when destructor is called, // since child nodes keep their owner document alive. MOZ_ASSERT(!HasChildren()); mCachedRootElement = nullptr; for (auto& sheets : mAdditionalSheets) { for (StyleSheet* sheet : sheets) { sheet->ClearAssociatedDocumentOrShadowRoot(); } } if (mAttrStyleSheet) { mAttrStyleSheet->SetOwningDocument(nullptr); } if (mListenerManager) { mListenerManager->Disconnect(); UnsetFlags(NODE_HAS_LISTENERMANAGER); } if (mScriptLoader) { mScriptLoader->DropDocumentReference(); } if (mCSSLoader) { // Could be null here if Init() failed or if we have been unlinked. mCSSLoader->DropDocumentReference(); } if (mStyleImageLoader) { mStyleImageLoader->DropDocumentReference(); } if (mXULBroadcastManager) { mXULBroadcastManager->DropDocumentReference(); } if (mXULPersist) { mXULPersist->DropDocumentReference(); } if (mPermissionDelegateHandler) { mPermissionDelegateHandler->DropDocumentReference(); } delete mHeaderData; mPendingTitleChangeEvent.Revoke(); mPlugins.Clear(); MOZ_ASSERT(mDOMMediaQueryLists.isEmpty(), "must not have media query lists left"); if (mNodeInfoManager) { mNodeInfoManager->DropDocumentReference(); } if (mDocGroup) { mDocGroup->RemoveDocument(this); } UnlinkOriginalDocumentIfStatic(); } NS_INTERFACE_TABLE_HEAD(Document) NS_WRAPPERCACHE_INTERFACE_TABLE_ENTRY NS_INTERFACE_TABLE_BEGIN NS_INTERFACE_TABLE_ENTRY_AMBIGUOUS(Document, nsISupports, nsINode) NS_INTERFACE_TABLE_ENTRY(Document, nsINode) NS_INTERFACE_TABLE_ENTRY(Document, Document) NS_INTERFACE_TABLE_ENTRY(Document, nsIScriptObjectPrincipal) NS_INTERFACE_TABLE_ENTRY(Document, EventTarget) NS_INTERFACE_TABLE_ENTRY(Document, nsISupportsWeakReference) NS_INTERFACE_TABLE_ENTRY(Document, nsIRadioGroupContainer) NS_INTERFACE_TABLE_ENTRY(Document, nsIMutationObserver) NS_INTERFACE_TABLE_ENTRY(Document, nsIApplicationCacheContainer) NS_INTERFACE_TABLE_END NS_INTERFACE_TABLE_TO_MAP_SEGUE_CYCLE_COLLECTION(Document) NS_INTERFACE_MAP_END NS_IMPL_CYCLE_COLLECTING_ADDREF(Document) NS_IMETHODIMP_(MozExternalRefCountType) Document::Release() { MOZ_ASSERT(0 != mRefCnt, "dup release"); NS_ASSERT_OWNINGTHREAD(Document); nsISupports* base = NS_CYCLE_COLLECTION_CLASSNAME(Document)::Upcast(this); bool shouldDelete = false; nsrefcnt count = mRefCnt.decr(base, &shouldDelete); NS_LOG_RELEASE(this, count, "Document"); if (count == 0) { if (mStackRefCnt && !mNeedsReleaseAfterStackRefCntRelease) { mNeedsReleaseAfterStackRefCntRelease = true; NS_ADDREF_THIS(); return mRefCnt.get(); } mRefCnt.incr(base); LastRelease(); mRefCnt.decr(base); if (shouldDelete) { mRefCnt.stabilizeForDeletion(); DeleteCycleCollectable(); } } return count; } NS_IMETHODIMP_(void) Document::DeleteCycleCollectable() { delete this; } NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_BEGIN(Document) if (Element::CanSkip(tmp, aRemovingAllowed)) { EventListenerManager* elm = tmp->GetExistingListenerManager(); if (elm) { elm->MarkForCC(); } return true; } NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_END NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_BEGIN(Document) return Element::CanSkipInCC(tmp); NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_IN_CC_END NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_BEGIN(Document) return Element::CanSkipThis(tmp); NS_IMPL_CYCLE_COLLECTION_CAN_SKIP_THIS_END NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INTERNAL(Document) if (MOZ_UNLIKELY(cb.WantDebugInfo())) { char name[512]; nsAutoCString loadedAsData; if (tmp->IsLoadedAsData()) { loadedAsData.AssignLiteral("data"); } else { loadedAsData.AssignLiteral("normal"); } uint32_t nsid = tmp->GetDefaultNamespaceID(); nsAutoCString uri; if (tmp->mDocumentURI) uri = tmp->mDocumentURI->GetSpecOrDefault(); static const char* kNSURIs[] = {"([none])", "(xmlns)", "(xml)", "(xhtml)", "(XLink)", "(XSLT)", "(MathML)", "(RDF)", "(XUL)"}; if (nsid < ArrayLength(kNSURIs)) { SprintfLiteral(name, "Document %s %s %s", loadedAsData.get(), kNSURIs[nsid], uri.get()); } else { SprintfLiteral(name, "Document %s %s", loadedAsData.get(), uri.get()); } cb.DescribeRefCountedNode(tmp->mRefCnt.get(), name); } else { NS_IMPL_CYCLE_COLLECTION_DESCRIBE(Document, tmp->mRefCnt.get()) } if (!nsINode::Traverse(tmp, cb)) { return NS_SUCCESS_INTERRUPTED_TRAVERSE; } tmp->mExternalResourceMap.Traverse(&cb); // Traverse all Document pointer members. NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mSecurityInfo) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDisplayDocument) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFontFaceSet) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mReadyForIdle) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDocumentL10n) // Traverse all Document nsCOMPtrs. NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mParser) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mScriptGlobalObject) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mListenerManager) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mStyleSheetSetList) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mScriptLoader) DocumentOrShadowRoot::Traverse(tmp, cb); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mChannel) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mLayoutHistoryState) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mOnloadBlocker) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mLazyLoadImageObserver) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDOMImplementation) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mImageMaps) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mOrientationPendingPromise) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mOriginalDocument) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mCachedEncoder) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mStateObjectCached) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mDocumentTimeline) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPendingAnimationTracker) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mTemplateContentsOwner) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mChildrenCollection) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mImages); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mEmbeds); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mLinks); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mForms); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mScripts); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mApplets); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mAnchors); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mAnonymousContents) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mCommandDispatcher) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFeaturePolicy) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mSuppressedEventListener) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPrototypeDocument) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mMidasCommandManager) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mAll) // Traverse all our nsCOMArrays. NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mPreloadingImages) for (uint32_t i = 0; i < tmp->mFrameRequestCallbacks.Length(); ++i) { NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(cb, "mFrameRequestCallbacks[i]"); cb.NoteXPCOMChild(tmp->mFrameRequestCallbacks[i].mCallback); } // Traverse animation components if (tmp->mAnimationController) { tmp->mAnimationController->Traverse(&cb); } if (tmp->mSubDocuments) { for (auto iter = tmp->mSubDocuments->Iter(); !iter.Done(); iter.Next()) { auto entry = static_cast(iter.Get()); NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(cb, "mSubDocuments entry->mKey"); cb.NoteXPCOMChild(entry->mKey); NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(cb, "mSubDocuments entry->mSubDocument"); cb.NoteXPCOMChild(ToSupports(entry->mSubDocument)); } } NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mCSSLoader) // We own only the items in mDOMMediaQueryLists that have listeners; // this reference is managed by their AddListener and RemoveListener // methods. for (MediaQueryList* mql = tmp->mDOMMediaQueryLists.getFirst(); mql; mql = static_cast*>(mql)->getNext()) { if (mql->HasListeners() && NS_SUCCEEDED(mql->CheckCurrentGlobalCorrectness())) { NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(cb, "mDOMMediaQueryLists item"); cb.NoteXPCOMChild(mql); } } if (tmp->mResizeObserverController) { tmp->mResizeObserverController->Traverse(cb); } for (size_t i = 0; i < tmp->mMetaViewports.Length(); i++) { NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mMetaViewports[i].mElement); } // XXX: This should be not needed once bug 1569185 lands. for (auto it = tmp->mL10nProtoElements.ConstIter(); !it.Done(); it.Next()) { NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(cb, "mL10nProtoElements key"); cb.NoteXPCOMChild(it.Key()); CycleCollectionNoteChild(cb, it.UserData(), "mL10nProtoElements value"); } NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTION_CLASS(Document) NS_IMPL_CYCLE_COLLECTION_TRACE_WRAPPERCACHE(Document) NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(Document) tmp->mInUnlinkOrDeletion = true; // Clear out our external resources tmp->mExternalResourceMap.Shutdown(); nsAutoScriptBlocker scriptBlocker; nsINode::Unlink(tmp); while (tmp->HasChildren()) { // Hold a strong ref to the node when we remove it, because we may be // the last reference to it. // If this code changes, change the corresponding code in Document's // unlink impl and ContentUnbinder::UnbindSubtree. nsCOMPtr child = tmp->GetLastChild(); tmp->DisconnectChild(child); child->UnbindFromTree(); } tmp->UnlinkOriginalDocumentIfStatic(); tmp->mCachedRootElement = nullptr; // Avoid a dangling pointer NS_IMPL_CYCLE_COLLECTION_UNLINK(mDisplayDocument) NS_IMPL_CYCLE_COLLECTION_UNLINK(mLazyLoadImageObserver) NS_IMPL_CYCLE_COLLECTION_UNLINK(mDOMImplementation) NS_IMPL_CYCLE_COLLECTION_UNLINK(mImageMaps) NS_IMPL_CYCLE_COLLECTION_UNLINK(mCachedEncoder) NS_IMPL_CYCLE_COLLECTION_UNLINK(mDocumentTimeline) NS_IMPL_CYCLE_COLLECTION_UNLINK(mPendingAnimationTracker) NS_IMPL_CYCLE_COLLECTION_UNLINK(mTemplateContentsOwner) NS_IMPL_CYCLE_COLLECTION_UNLINK(mChildrenCollection) NS_IMPL_CYCLE_COLLECTION_UNLINK(mImages); NS_IMPL_CYCLE_COLLECTION_UNLINK(mEmbeds); NS_IMPL_CYCLE_COLLECTION_UNLINK(mLinks); NS_IMPL_CYCLE_COLLECTION_UNLINK(mForms); NS_IMPL_CYCLE_COLLECTION_UNLINK(mScripts); NS_IMPL_CYCLE_COLLECTION_UNLINK(mApplets); NS_IMPL_CYCLE_COLLECTION_UNLINK(mAnchors); NS_IMPL_CYCLE_COLLECTION_UNLINK(mOrientationPendingPromise) NS_IMPL_CYCLE_COLLECTION_UNLINK(mFontFaceSet) NS_IMPL_CYCLE_COLLECTION_UNLINK(mReadyForIdle); NS_IMPL_CYCLE_COLLECTION_UNLINK(mCommandDispatcher) NS_IMPL_CYCLE_COLLECTION_UNLINK(mDocumentL10n); NS_IMPL_CYCLE_COLLECTION_UNLINK(mFeaturePolicy) NS_IMPL_CYCLE_COLLECTION_UNLINK(mSuppressedEventListener) NS_IMPL_CYCLE_COLLECTION_UNLINK(mPrototypeDocument) NS_IMPL_CYCLE_COLLECTION_UNLINK(mMidasCommandManager) NS_IMPL_CYCLE_COLLECTION_UNLINK(mReferrerInfo) NS_IMPL_CYCLE_COLLECTION_UNLINK(mPreloadReferrerInfo) tmp->mParentDocument = nullptr; NS_IMPL_CYCLE_COLLECTION_UNLINK(mPreloadingImages) NS_IMPL_CYCLE_COLLECTION_UNLINK(mIntersectionObservers) if (tmp->mListenerManager) { tmp->mListenerManager->Disconnect(); tmp->UnsetFlags(NODE_HAS_LISTENERMANAGER); tmp->mListenerManager = nullptr; } if (tmp->mStyleSheetSetList) { tmp->mStyleSheetSetList->Disconnect(); tmp->mStyleSheetSetList = nullptr; } delete tmp->mSubDocuments; tmp->mSubDocuments = nullptr; tmp->mFrameRequestCallbacks.Clear(); MOZ_RELEASE_ASSERT(!tmp->mFrameRequestCallbacksScheduled, "How did we get here without our presshell going away " "first?"); DocumentOrShadowRoot::Unlink(tmp); // Document has a pretty complex destructor, so we're going to // assume that *most* cycles you actually want to break somewhere // else, and not unlink an awful lot here. tmp->mExpandoAndGeneration.OwnerUnlinked(); if (tmp->mAnimationController) { tmp->mAnimationController->Unlink(); } tmp->mPendingTitleChangeEvent.Revoke(); if (tmp->mCSSLoader) { tmp->mCSSLoader->DropDocumentReference(); NS_IMPL_CYCLE_COLLECTION_UNLINK(mCSSLoader) } // We own only the items in mDOMMediaQueryLists that have listeners; // this reference is managed by their AddListener and RemoveListener // methods. for (MediaQueryList* mql = tmp->mDOMMediaQueryLists.getFirst(); mql;) { MediaQueryList* next = static_cast*>(mql)->getNext(); mql->Disconnect(); mql = next; } tmp->mInUnlinkOrDeletion = false; if (tmp->mResizeObserverController) { tmp->mResizeObserverController->Unlink(); } tmp->mMetaViewports.Clear(); NS_IMPL_CYCLE_COLLECTION_UNLINK(mL10nProtoElements) NS_IMPL_CYCLE_COLLECTION_UNLINK_END nsresult Document::Init() { if (mCSSLoader || mStyleImageLoader || mNodeInfoManager || mScriptLoader) { return NS_ERROR_ALREADY_INITIALIZED; } // Force initialization. nsINode::nsSlots* slots = Slots(); // Prepend self as mutation-observer whether we need it or not (some // subclasses currently do, other don't). This is because the code in // MutationObservers always notifies the first observer first, expecting the // first observer to be the document. slots->mMutationObservers.PrependElementUnlessExists( static_cast(this)); mOnloadBlocker = new OnloadBlocker(); mCSSLoader = new css::Loader(this); // Assume we're not quirky, until we know otherwise mCSSLoader->SetCompatibilityMode(eCompatibility_FullStandards); mStyleImageLoader = new css::ImageLoader(this); mNodeInfoManager = new nsNodeInfoManager(); nsresult rv = mNodeInfoManager->Init(this); NS_ENSURE_SUCCESS(rv, rv); // mNodeInfo keeps NodeInfoManager alive! mNodeInfo = mNodeInfoManager->GetDocumentNodeInfo(); NS_ENSURE_TRUE(mNodeInfo, NS_ERROR_OUT_OF_MEMORY); MOZ_ASSERT(mNodeInfo->NodeType() == DOCUMENT_NODE, "Bad NodeType in aNodeInfo"); NS_ASSERTION(OwnerDoc() == this, "Our nodeinfo is busted!"); // If after creation the owner js global is not set for a document // we use the default compartment for this document, instead of creating // wrapper in some random compartment when the document is exposed to js // via some events. nsCOMPtr global = xpc::NativeGlobal(xpc::PrivilegedJunkScope()); NS_ENSURE_TRUE(global, NS_ERROR_FAILURE); mScopeObject = do_GetWeakReference(global); MOZ_ASSERT(mScopeObject); mScriptLoader = new dom::ScriptLoader(this); // we need to create a policy here so getting the policy within // ::Policy() can *always* return a non null policy mFeaturePolicy = new dom::FeaturePolicy(this); mFeaturePolicy->SetDefaultOrigin(NodePrincipal()); mStyleSet = MakeUnique(*this); mozilla::HoldJSObjects(this); return NS_OK; } void Document::RemoveAllProperties() { PropertyTable().RemoveAllProperties(); } void Document::RemoveAllPropertiesFor(nsINode* aNode) { PropertyTable().RemoveAllPropertiesFor(aNode); } bool Document::IsVisibleConsideringAncestors() const { const Document* parent = this; do { if (!parent->IsVisible()) { return false; } } while ((parent = parent->GetInProcessParentDocument())); return true; } void Document::Reset(nsIChannel* aChannel, nsILoadGroup* aLoadGroup) { nsCOMPtr uri; nsCOMPtr principal; nsCOMPtr storagePrincipal; if (aChannel) { // Note: this code is duplicated in PrototypeDocumentContentSink::Init and // nsScriptSecurityManager::GetChannelResultPrincipals. // Note: this should match nsDocShell::OnLoadingSite NS_GetFinalChannelURI(aChannel, getter_AddRefs(uri)); nsIScriptSecurityManager* securityManager = nsContentUtils::GetSecurityManager(); if (securityManager) { securityManager->GetChannelResultPrincipals( aChannel, getter_AddRefs(principal), getter_AddRefs(storagePrincipal)); } } bool equal = principal->Equals(storagePrincipal); principal = MaybeDowngradePrincipal(principal); if (equal) { storagePrincipal = principal; } else { storagePrincipal = MaybeDowngradePrincipal(storagePrincipal); } ResetToURI(uri, aLoadGroup, principal, storagePrincipal); // Note that, since mTiming does not change during a reset, the // navigationStart time remains unchanged and therefore any future new // timeline will have the same global clock time as the old one. mDocumentTimeline = nullptr; nsCOMPtr bag = do_QueryInterface(aChannel); if (bag) { nsCOMPtr baseURI; bag->GetPropertyAsInterface(NS_LITERAL_STRING("baseURI"), NS_GET_IID(nsIURI), getter_AddRefs(baseURI)); if (baseURI) { mDocumentBaseURI = baseURI; mChromeXHRDocBaseURI = nullptr; } } mChannel = aChannel; } void Document::DisconnectNodeTree() { // Delete references to sub-documents and kill the subdocument map, // if any. This is not strictly needed, but makes the node tree // teardown a bit faster. delete mSubDocuments; mSubDocuments = nullptr; bool oldVal = mInUnlinkOrDeletion; mInUnlinkOrDeletion = true; { // Scope for update MOZ_AUTO_DOC_UPDATE(this, true); // Destroy link map now so we don't waste time removing // links one by one DestroyElementMaps(); // Invalidate cached array of child nodes InvalidateChildNodes(); while (HasChildren()) { nsCOMPtr content = GetLastChild(); nsIContent* previousSibling = content->GetPreviousSibling(); DisconnectChild(content); if (content == mCachedRootElement) { // Immediately clear mCachedRootElement, now that it's been removed // from mChildren, so that GetRootElement() will stop returning this // now-stale value. mCachedRootElement = nullptr; } MutationObservers::NotifyContentRemoved(this, content, previousSibling); content->UnbindFromTree(); } MOZ_ASSERT(!mCachedRootElement, "After removing all children, there should be no root elem"); } mInUnlinkOrDeletion = oldVal; } void Document::ResetToURI(nsIURI* aURI, nsILoadGroup* aLoadGroup, nsIPrincipal* aPrincipal, nsIPrincipal* aStoragePrincipal) { MOZ_ASSERT(aURI, "Null URI passed to ResetToURI"); MOZ_ASSERT(!!aPrincipal == !!aStoragePrincipal); MOZ_LOG(gDocumentLeakPRLog, LogLevel::Debug, ("DOCUMENT %p ResetToURI %s", this, aURI->GetSpecOrDefault().get())); mSecurityInfo = nullptr; nsCOMPtr group = do_QueryReferent(mDocumentLoadGroup); if (!aLoadGroup || group != aLoadGroup) { mDocumentLoadGroup = nullptr; } DisconnectNodeTree(); // Reset our stylesheets ResetStylesheetsToURI(aURI); // Release the listener manager if (mListenerManager) { mListenerManager->Disconnect(); mListenerManager = nullptr; } // Release the stylesheets list. mDOMStyleSheets = nullptr; // Release our principal after tearing down the document, rather than before. // This ensures that, during teardown, the document and the dying window // (which already nulled out its document pointer and cached the principal) // have matching principals. SetPrincipals(nullptr, nullptr); // Clear the original URI so SetDocumentURI sets it. mOriginalURI = nullptr; SetDocumentURI(aURI); mChromeXHRDocURI = nullptr; // If mDocumentBaseURI is null, Document::GetBaseURI() returns // mDocumentURI. mDocumentBaseURI = nullptr; mChromeXHRDocBaseURI = nullptr; // Check if the current document is the top-level DevTools document. // For inner DevTools frames, mIsDevToolsDocument will be set when // calling SetDocumentParent. if (aURI && aURI->SchemeIs("about") && aURI->GetSpecOrDefault().EqualsLiteral("about:devtools-toolbox")) { mIsDevToolsDocument = true; } if (aLoadGroup) { mDocumentLoadGroup = do_GetWeakReference(aLoadGroup); // there was an assertion here that aLoadGroup was not null. This // is no longer valid: nsDocShell::SetDocument does not create a // load group, and it works just fine // XXXbz what does "just fine" mean exactly? And given that there // is no nsDocShell::SetDocument, what is this talking about? if (IsContentDocument()) { // Inform the associated request context about this load start so // any of its internal load progress flags gets reset. nsCOMPtr rcsvc = net::RequestContextService::GetOrCreate(); if (rcsvc) { nsCOMPtr rc; rcsvc->GetRequestContextFromLoadGroup(aLoadGroup, getter_AddRefs(rc)); if (rc) { rc->BeginLoad(); } } } } mLastModified.Truncate(); // XXXbz I guess we're assuming that the caller will either pass in // a channel with a useful type or call SetContentType? SetContentTypeInternal(EmptyCString()); mContentLanguage.Truncate(); mBaseTarget.Truncate(); mXMLDeclarationBits = 0; // Now get our new principal if (aPrincipal) { SetPrincipals(aPrincipal, aStoragePrincipal); } else { nsIScriptSecurityManager* securityManager = nsContentUtils::GetSecurityManager(); if (securityManager) { nsCOMPtr loadContext(mDocumentContainer); if (!loadContext && aLoadGroup) { nsCOMPtr cbs; aLoadGroup->GetNotificationCallbacks(getter_AddRefs(cbs)); loadContext = do_GetInterface(cbs); } MOZ_ASSERT(loadContext, "must have a load context or pass in an explicit principal"); nsCOMPtr principal; nsresult rv = securityManager->GetLoadContextContentPrincipal( mDocumentURI, loadContext, getter_AddRefs(principal)); if (NS_SUCCEEDED(rv)) { SetPrincipals(principal, principal); } } } if (mFontFaceSet) { mFontFaceSet->RefreshStandardFontLoadPrincipal(); } // Refresh the principal on the realm. if (nsPIDOMWindowInner* win = GetInnerWindow()) { nsGlobalWindowInner::Cast(win)->RefreshRealmPrincipal(); } } already_AddRefed Document::MaybeDowngradePrincipal( nsIPrincipal* aPrincipal) { if (!aPrincipal) { return nullptr; } // We can't load a document with an expanded principal. If we're given one, // automatically downgrade it to the last principal it subsumes (which is the // extension principal, in the case of extension content scripts). auto* basePrin = BasePrincipal::Cast(aPrincipal); if (basePrin->Is()) { MOZ_DIAGNOSTIC_ASSERT(false, "Should never try to create a document with " "an expanded principal"); auto* expanded = basePrin->As(); return do_AddRef(expanded->AllowList().LastElement()); } if (aPrincipal->IsSystemPrincipal()) { // We basically want the parent document here, but because this is very // early in the load, GetInProcessParentDocument() returns null, so we use // the docshell hierarchy to get this information instead. if (mDocumentContainer) { nsCOMPtr parentDocShellItem; mDocumentContainer->GetInProcessParent( getter_AddRefs(parentDocShellItem)); nsCOMPtr parentDocShell = do_QueryInterface(parentDocShellItem); if (parentDocShell) { nsCOMPtr parentDoc; parentDoc = parentDocShell->GetDocument(); if (!parentDoc || !parentDoc->NodePrincipal()->IsSystemPrincipal()) { nsCOMPtr nullPrincipal = do_CreateInstance("@mozilla.org/nullprincipal;1"); return nullPrincipal.forget(); } } } } nsCOMPtr principal(aPrincipal); return principal.forget(); } size_t Document::FindDocStyleSheetInsertionPoint(const StyleSheet& aSheet) { nsStyleSheetService* sheetService = nsStyleSheetService::GetInstance(); // lowest index first int32_t newDocIndex = StyleOrderIndexOfSheet(aSheet); size_t count = mStyleSet->SheetCount(StyleOrigin::Author); size_t index = 0; for (; index < count; index++) { auto* sheet = mStyleSet->SheetAt(StyleOrigin::Author, index); MOZ_ASSERT(sheet); int32_t sheetDocIndex = StyleOrderIndexOfSheet(*sheet); if (sheetDocIndex > newDocIndex) { break; } // If the sheet is not owned by the document it can be an author // sheet registered at nsStyleSheetService or an additional author // sheet on the document, which means the new // doc sheet should end up before it. if (sheetDocIndex < 0) { if (sheetService) { auto& authorSheets = *sheetService->AuthorStyleSheets(); if (authorSheets.IndexOf(sheet) != authorSheets.NoIndex) { break; } } if (sheet == GetFirstAdditionalAuthorSheet()) { break; } } } return index; } void Document::AppendAdoptedStyleSheet(StyleSheet& aSheet) { DocumentOrShadowRoot::InsertAdoptedSheetAt(mAdoptedStyleSheets.Length(), aSheet); if (aSheet.IsApplicable()) { AddStyleSheetToStyleSets(&aSheet); } } void Document::RemoveDocStyleSheetsFromStyleSets() { MOZ_ASSERT(mStyleSetFilled); // The stylesheets should forget us for (StyleSheet* sheet : Reversed(mStyleSheets)) { sheet->ClearAssociatedDocumentOrShadowRoot(); if (sheet->IsApplicable()) { mStyleSet->RemoveDocStyleSheet(sheet); } // XXX Tell observers? } } void Document::RemoveStyleSheetsFromStyleSets( const nsTArray>& aSheets, StyleOrigin aType) { // The stylesheets should forget us for (StyleSheet* sheet : Reversed(aSheets)) { sheet->ClearAssociatedDocumentOrShadowRoot(); if (mStyleSetFilled && sheet->IsApplicable()) { mStyleSet->RemoveStyleSheet(aType, sheet); } // XXX Tell observers? } } void Document::ResetStylesheetsToURI(nsIURI* aURI) { MOZ_ASSERT(aURI); if (mStyleSetFilled) { // Skip removing style sheets from the style set if we know we haven't // filled the style set. (This allows us to avoid calling // GetStyleBackendType() too early.) RemoveDocStyleSheetsFromStyleSets(); RemoveStyleSheetsFromStyleSets(mAdditionalSheets[eAgentSheet], StyleOrigin::UserAgent); RemoveStyleSheetsFromStyleSets(mAdditionalSheets[eUserSheet], StyleOrigin::User); RemoveStyleSheetsFromStyleSets(mAdditionalSheets[eAuthorSheet], StyleOrigin::Author); if (nsStyleSheetService* sheetService = nsStyleSheetService::GetInstance()) { RemoveStyleSheetsFromStyleSets(*sheetService->AuthorStyleSheets(), StyleOrigin::Author); } } // Release all the sheets mStyleSheets.Clear(); for (auto& sheets : mAdditionalSheets) { sheets.Clear(); } // NOTE: We don't release the catalog sheets. It doesn't really matter // now, but it could in the future -- in which case not releasing them // is probably the right thing to do. // Now reset our inline style and attribute sheets. if (mAttrStyleSheet) { mAttrStyleSheet->Reset(); mAttrStyleSheet->SetOwningDocument(this); } else { mAttrStyleSheet = new nsHTMLStyleSheet(this); } if (!mStyleAttrStyleSheet) { mStyleAttrStyleSheet = new nsHTMLCSSStyleSheet(); } if (mStyleSetFilled) { FillStyleSetDocumentSheets(); if (mStyleSet->StyleSheetsHaveChanged()) { ApplicableStylesChanged(); } } } static void AppendSheetsToStyleSet(ServoStyleSet* aStyleSet, const nsTArray>& aSheets, StyleOrigin aOrigin) { for (StyleSheet* sheet : Reversed(aSheets)) { aStyleSet->AppendStyleSheet(aOrigin, sheet); } } void Document::FillStyleSetUserAndUASheets() { // Make sure this does the same thing as PresShell::Add{User,Agent}Sheet wrt // ordering. // The document will fill in the document sheets when we create the presshell auto* cache = GlobalStyleSheetCache::Singleton(); nsStyleSheetService* sheetService = nsStyleSheetService::GetInstance(); MOZ_ASSERT(sheetService, "should never be creating a StyleSet after the style sheet " "service has gone"); for (StyleSheet* sheet : *sheetService->UserStyleSheets()) { mStyleSet->AppendStyleSheet(StyleOrigin::User, sheet); } StyleSheet* sheet = IsInChromeDocShell() ? cache->GetUserChromeSheet() : cache->GetUserContentSheet(); if (sheet) { mStyleSet->AppendStyleSheet(StyleOrigin::User, sheet); } mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->UASheet()); if (MOZ_LIKELY(NodeInfoManager()->MathMLEnabled())) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->MathMLSheet()); } if (MOZ_LIKELY(NodeInfoManager()->SVGEnabled())) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->SVGSheet()); } mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->HTMLSheet()); if (nsLayoutUtils::ShouldUseNoFramesSheet(this)) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->NoFramesSheet()); } if (nsLayoutUtils::ShouldUseNoScriptSheet(this)) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->NoScriptSheet()); } mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->CounterStylesSheet()); // Load the minimal XUL rules for scrollbars and a few other XUL things // that non-XUL (typically HTML) documents commonly use. mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->MinimalXULSheet()); // Only load the full XUL sheet if we'll need it. if (LoadsFullXULStyleSheetUpFront()) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->XULSheet()); } mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->FormsSheet()); mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->ScrollbarsSheet()); mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->PluginProblemSheet()); for (StyleSheet* sheet : *sheetService->AgentStyleSheets()) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, sheet); } MOZ_ASSERT(!mQuirkSheetAdded); if (NeedsQuirksSheet()) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->QuirkSheet()); mQuirkSheetAdded = true; } } void Document::FillStyleSet() { MOZ_ASSERT(!mStyleSetFilled); FillStyleSetUserAndUASheets(); FillStyleSetDocumentSheets(); mStyleSetFilled = true; } void Document::RemoveContentEditableStyleSheets() { MOZ_ASSERT(IsHTMLOrXHTML()); auto* cache = GlobalStyleSheetCache::Singleton(); bool changed = false; if (mDesignModeSheetAdded) { mStyleSet->RemoveStyleSheet(StyleOrigin::UserAgent, cache->DesignModeSheet()); mDesignModeSheetAdded = false; changed = true; } if (mContentEditableSheetAdded) { mStyleSet->RemoveStyleSheet(StyleOrigin::UserAgent, cache->ContentEditableSheet()); mContentEditableSheetAdded = false; changed = true; } if (changed) { MOZ_ASSERT(mStyleSetFilled); ApplicableStylesChanged(); } } void Document::AddContentEditableStyleSheetsToStyleSet(bool aDesignMode) { MOZ_ASSERT(IsHTMLOrXHTML()); MOZ_DIAGNOSTIC_ASSERT(mStyleSetFilled, "Caller should ensure we're being rendered"); auto* cache = GlobalStyleSheetCache::Singleton(); bool changed = false; if (!mContentEditableSheetAdded) { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->ContentEditableSheet()); mContentEditableSheetAdded = true; changed = true; } if (mDesignModeSheetAdded != aDesignMode) { if (mDesignModeSheetAdded) { mStyleSet->RemoveStyleSheet(StyleOrigin::UserAgent, cache->DesignModeSheet()); } else { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, cache->DesignModeSheet()); } mDesignModeSheetAdded = !mDesignModeSheetAdded; changed = true; } if (changed) { ApplicableStylesChanged(); } } void Document::FillStyleSetDocumentSheets() { MOZ_ASSERT(mStyleSet->SheetCount(StyleOrigin::Author) == 0, "Style set already has document sheets?"); // Sheets are added in reverse order to avoid worst-case // time complexity when looking up the index of a sheet for (StyleSheet* sheet : Reversed(mStyleSheets)) { if (sheet->IsApplicable()) { mStyleSet->AddDocStyleSheet(sheet); } } for (StyleSheet* sheet : Reversed(mAdoptedStyleSheets)) { if (sheet->IsApplicable()) { mStyleSet->AddDocStyleSheet(sheet); } } nsStyleSheetService* sheetService = nsStyleSheetService::GetInstance(); for (StyleSheet* sheet : *sheetService->AuthorStyleSheets()) { mStyleSet->AppendStyleSheet(StyleOrigin::Author, sheet); } AppendSheetsToStyleSet(mStyleSet.get(), mAdditionalSheets[eAgentSheet], StyleOrigin::UserAgent); AppendSheetsToStyleSet(mStyleSet.get(), mAdditionalSheets[eUserSheet], StyleOrigin::User); AppendSheetsToStyleSet(mStyleSet.get(), mAdditionalSheets[eAuthorSheet], StyleOrigin::Author); } void Document::CompatibilityModeChanged() { MOZ_ASSERT(IsHTMLOrXHTML()); CSSLoader()->SetCompatibilityMode(mCompatMode); mStyleSet->CompatibilityModeChanged(); if (PresShell* presShell = GetPresShell()) { // Selectors may have become case-sensitive / case-insensitive, the stylist // has already performed the relevant invalidation. presShell->EnsureStyleFlush(); } if (!mStyleSetFilled) { MOZ_ASSERT(!mQuirkSheetAdded); return; } if (mQuirkSheetAdded == NeedsQuirksSheet()) { return; } auto* cache = GlobalStyleSheetCache::Singleton(); StyleSheet* sheet = cache->QuirkSheet(); if (mQuirkSheetAdded) { mStyleSet->RemoveStyleSheet(StyleOrigin::UserAgent, sheet); } else { mStyleSet->AppendStyleSheet(StyleOrigin::UserAgent, sheet); } mQuirkSheetAdded = !mQuirkSheetAdded; ApplicableStylesChanged(); } void Document::SetCompatibilityMode(nsCompatibility aMode) { NS_ASSERTION(IsHTMLDocument() || aMode == eCompatibility_FullStandards, "Bad compat mode for XHTML document!"); if (mCompatMode == aMode) { return; } mCompatMode = aMode; CompatibilityModeChanged(); } static void WarnIfSandboxIneffective(nsIDocShell* aDocShell, uint32_t aSandboxFlags, nsIChannel* aChannel) { // If the document is sandboxed (via the HTML5 iframe sandbox // attribute) and both the allow-scripts and allow-same-origin // keywords are supplied, the sandboxed document can call into its // parent document and remove its sandboxing entirely - we print a // warning to the web console in this case. if (aSandboxFlags & SANDBOXED_NAVIGATION && !(aSandboxFlags & SANDBOXED_SCRIPTS) && !(aSandboxFlags & SANDBOXED_ORIGIN)) { RefPtr bc = aDocShell->GetBrowsingContext(); MOZ_ASSERT(bc->IsInProcess()); RefPtr parentBC = bc->GetParent(); if (!parentBC || !parentBC->IsInProcess()) { // If parent document is not in process, then by construction it // cannot be same origin. return; } // Don't warn if our parent is not the top-level document. if (!parentBC->IsTopContent()) { return; } nsCOMPtr parentDocShell = parentBC->GetDocShell(); MOZ_ASSERT(parentDocShell); nsCOMPtr parentChannel; parentDocShell->GetCurrentDocumentChannel(getter_AddRefs(parentChannel)); if (!parentChannel) { return; } nsresult rv = nsContentUtils::CheckSameOrigin(aChannel, parentChannel); if (NS_FAILED(rv)) { return; } nsCOMPtr parentDocument = parentDocShell->GetDocument(); nsCOMPtr iframeUri; parentChannel->GetURI(getter_AddRefs(iframeUri)); nsContentUtils::ReportToConsole( nsIScriptError::warningFlag, NS_LITERAL_CSTRING("Iframe Sandbox"), parentDocument, nsContentUtils::eSECURITY_PROPERTIES, "BothAllowScriptsAndSameOriginPresent", nsTArray(), iframeUri); } } bool Document::IsSynthesized() { nsCOMPtr loadInfo = mChannel ? mChannel->LoadInfo() : nullptr; return loadInfo && loadInfo->GetServiceWorkerTaintingSynthesized(); } // static bool Document::IsCallerChromeOrAddon(JSContext* aCx, JSObject* aObject) { nsIPrincipal* principal = nsContentUtils::SubjectPrincipal(aCx); return principal && (principal->IsSystemPrincipal() || principal->GetIsAddonOrExpandedAddonPrincipal()); } nsresult Document::StartDocumentLoad(const char* aCommand, nsIChannel* aChannel, nsILoadGroup* aLoadGroup, nsISupports* aContainer, nsIStreamListener** aDocListener, bool aReset, nsIContentSink* aSink) { if (MOZ_LOG_TEST(gDocumentLeakPRLog, LogLevel::Debug)) { nsCOMPtr uri; aChannel->GetURI(getter_AddRefs(uri)); MOZ_LOG(gDocumentLeakPRLog, LogLevel::Debug, ("DOCUMENT %p StartDocumentLoad %s", this, uri ? uri->GetSpecOrDefault().get() : "")); } MOZ_ASSERT(GetReadyStateEnum() == Document::READYSTATE_UNINITIALIZED, "Bad readyState"); SetReadyStateInternal(READYSTATE_LOADING); if (nsCRT::strcmp(kLoadAsData, aCommand) == 0) { mLoadedAsData = true; // We need to disable script & style loading in this case. // We leave them disabled even in EndLoad(), and let anyone // who puts the document on display to worry about enabling. // Do not load/process scripts when loading as data ScriptLoader()->SetEnabled(false); // styles CSSLoader()->SetEnabled( false); // Do not load/process styles when loading as data } else if (nsCRT::strcmp("external-resource", aCommand) == 0) { // Allow CSS, but not scripts ScriptLoader()->SetEnabled(false); } mMayStartLayout = false; MOZ_ASSERT(!mReadyForIdle, "We should never hit DOMContentLoaded before this point"); if (aReset) { Reset(aChannel, aLoadGroup); } nsAutoCString contentType; nsCOMPtr bag = do_QueryInterface(aChannel); if ((bag && NS_SUCCEEDED(bag->GetPropertyAsACString( NS_LITERAL_STRING("contentType"), contentType))) || NS_SUCCEEDED(aChannel->GetContentType(contentType))) { // XXX this is only necessary for viewsource: nsACString::const_iterator start, end, semicolon; contentType.BeginReading(start); contentType.EndReading(end); semicolon = start; FindCharInReadable(';', semicolon, end); SetContentTypeInternal(Substring(start, semicolon)); } RetrieveRelevantHeaders(aChannel); mChannel = aChannel; nsCOMPtr inStrmChan = do_QueryInterface(mChannel); if (inStrmChan) { bool isSrcdocChannel; inStrmChan->GetIsSrcdocChannel(&isSrcdocChannel); if (isSrcdocChannel) { mIsSrcdocDocument = true; } } if (mChannel) { nsLoadFlags loadFlags; mChannel->GetLoadFlags(&loadFlags); bool isDocument = false; mChannel->GetIsDocument(&isDocument); if (loadFlags & nsIRequest::LOAD_DOCUMENT_NEEDS_COOKIE && isDocument && IsSynthesized() && XRE_IsContentProcess()) { ContentChild::UpdateCookieStatus(mChannel); } // Store the security info for future use. mChannel->GetSecurityInfo(getter_AddRefs(mSecurityInfo)); } // If this document is being loaded by a docshell, copy its sandbox flags // to the document, and store the fullscreen enabled flag. These are // immutable after being set here. nsCOMPtr docShell = do_QueryInterface(aContainer); // If this is an error page, don't inherit sandbox flags nsCOMPtr loadInfo = aChannel->LoadInfo(); if (docShell && !loadInfo->GetLoadErrorPage()) { mSandboxFlags = loadInfo->GetSandboxFlags(); WarnIfSandboxIneffective(docShell, mSandboxFlags, GetChannel()); } // The CSP directives upgrade-insecure-requests as well as // block-all-mixed-content not only apply to the toplevel document, // but also to nested documents. The loadInfo of a subdocument // load already holds the correct flag, so let's just set it here // on the document. Please note that we set the appropriate preload // bits just for the sake of completeness here, because the preloader // does not reach into subdocuments. mUpgradeInsecureRequests = loadInfo->GetUpgradeInsecureRequests(); mUpgradeInsecurePreloads = mUpgradeInsecureRequests; mBlockAllMixedContent = loadInfo->GetBlockAllMixedContent(); mBlockAllMixedContentPreloads = mBlockAllMixedContent; nsresult rv = InitReferrerInfo(aChannel); NS_ENSURE_SUCCESS(rv, rv); // Check CSP navigate-to // We need to enforce the CSP of the document that initiated the load, // which is the CSP to inherit. nsCOMPtr cspToInherit = loadInfo->GetCspToInherit(); if (cspToInherit) { bool allowsNavigateTo = false; rv = cspToInherit->GetAllowsNavigateTo( mDocumentURI, loadInfo, !loadInfo->RedirectChain().IsEmpty(), /* aWasRedirected */ true, /* aEnforceWhitelist */ &allowsNavigateTo); NS_ENSURE_SUCCESS(rv, rv); if (!allowsNavigateTo) { aChannel->Cancel(NS_ERROR_CSP_NAVIGATE_TO_VIOLATION); return NS_OK; } } rv = InitCSP(aChannel); NS_ENSURE_SUCCESS(rv, rv); // Bug 1574372: Download should be fully done in the parent process. // Unfortunately we currently can not determine whether a load will // result in a download in the parent process. Hence, if running in // non-fission-mode then we will have to enforce checks for // frame-ancestors and x-frame-options here in the content process // but if we run in fission-mode then we do those two security // checks within DOMSecurityManager::Observe in the parent. bool fissionEnabled = StaticPrefs::fission_autostart(); if (!fissionEnabled) { nsContentPolicyType contentType = loadInfo->GetExternalContentPolicyType(); // frame-ancestor check only makes sense for subdocument and object loads, // if this is not a load of such type, there is nothing to do here. if (contentType == nsIContentPolicy::TYPE_SUBDOCUMENT || contentType == nsIContentPolicy::TYPE_OBJECT) { // we only enforce frame-ancestors if the load is an actual http // channel, otherwise we block dynamic iframes since about:blank // inherits the CSP. nsCOMPtr httpChannel; nsContentSecurityUtils::GetHttpChannelFromPotentialMultiPart( aChannel, getter_AddRefs(httpChannel)); if (httpChannel && mCSP) { bool safeAncestry = false; // PermitsAncestry sends violation reports when necessary rv = mCSP->PermitsAncestry(loadInfo, &safeAncestry); if (NS_FAILED(rv) || !safeAncestry) { // stop! ERROR page! aChannel->Cancel(NS_ERROR_CSP_FRAME_ANCESTOR_VIOLATION); } } } // the checks for type_subdoc or type_object happen within // CheckFrameOptions. if (!FramingChecker::CheckFrameOptions(aChannel, mCSP)) { // stop! ERROR page! // But before we have to reset the principal of the document // because the onload() event fires before the error page // is displayed and we do not want the enclosing document // to access the contentDocument. RefPtr nullPrincipal = NullPrincipal::CreateWithInheritedAttributes(NodePrincipal()); // Before calling SetPrincipals() we should ensure that mFontFaceSet // and also GetInnerWindow() is still null at this point, before // we can fix Bug 1614735: Evaluate calls to SetPrincipal // within Document.cpp MOZ_ASSERT(!mFontFaceSet && !GetInnerWindow()); SetPrincipals(nullPrincipal, nullPrincipal); aChannel->Cancel(NS_ERROR_XFO_VIOLATION); } } // Initialize FeaturePolicy rv = InitFeaturePolicy(aChannel); NS_ENSURE_SUCCESS(rv, rv); rv = loadInfo->GetCookieSettings(getter_AddRefs(mCookieSettings)); NS_ENSURE_SUCCESS(rv, rv); return NS_OK; } nsIContentSecurityPolicy* Document::GetCsp() const { return mCSP; } void Document::SetCsp(nsIContentSecurityPolicy* aCSP) { mCSP = aCSP; } nsIContentSecurityPolicy* Document::GetPreloadCsp() const { return mPreloadCSP; } void Document::SetPreloadCsp(nsIContentSecurityPolicy* aPreloadCSP) { mPreloadCSP = aPreloadCSP; } void Document::GetCspJSON(nsString& aJSON) { aJSON.Truncate(); if (!mCSP) { dom::CSPPolicies jsonPolicies; jsonPolicies.ToJSON(aJSON); return; } mCSP->ToJSON(aJSON); } void Document::SendToConsole(nsCOMArray& aMessages) { for (uint32_t i = 0; i < aMessages.Length(); ++i) { nsAutoString messageTag; aMessages[i]->GetTag(messageTag); nsAutoString category; aMessages[i]->GetCategory(category); nsContentUtils::ReportToConsole(nsIScriptError::warningFlag, NS_ConvertUTF16toUTF8(category), this, nsContentUtils::eSECURITY_PROPERTIES, NS_ConvertUTF16toUTF8(messageTag).get()); } } void Document::ApplySettingsFromCSP(bool aSpeculative) { nsresult rv = NS_OK; if (!aSpeculative) { // 1) apply settings from regular CSP if (mCSP) { // Set up 'block-all-mixed-content' if not already inherited // from the parent context or set by any other CSP. if (!mBlockAllMixedContent) { rv = mCSP->GetBlockAllMixedContent(&mBlockAllMixedContent); NS_ENSURE_SUCCESS_VOID(rv); } if (!mBlockAllMixedContentPreloads) { mBlockAllMixedContentPreloads = mBlockAllMixedContent; } // Set up 'upgrade-insecure-requests' if not already inherited // from the parent context or set by any other CSP. if (!mUpgradeInsecureRequests) { rv = mCSP->GetUpgradeInsecureRequests(&mUpgradeInsecureRequests); NS_ENSURE_SUCCESS_VOID(rv); } if (!mUpgradeInsecurePreloads) { mUpgradeInsecurePreloads = mUpgradeInsecureRequests; } } return; } // 2) apply settings from speculative csp if (mPreloadCSP) { if (!mBlockAllMixedContentPreloads) { rv = mPreloadCSP->GetBlockAllMixedContent(&mBlockAllMixedContentPreloads); NS_ENSURE_SUCCESS_VOID(rv); } if (!mUpgradeInsecurePreloads) { rv = mPreloadCSP->GetUpgradeInsecureRequests(&mUpgradeInsecurePreloads); NS_ENSURE_SUCCESS_VOID(rv); } } } nsresult Document::InitCSP(nsIChannel* aChannel) { MOZ_ASSERT(!mScriptGlobalObject, "CSP must be initialized before mScriptGlobalObject is set!"); if (!StaticPrefs::security_csp_enable()) { MOZ_LOG(gCspPRLog, LogLevel::Debug, ("CSP is disabled, skipping CSP init for document %p", this)); return NS_OK; } // If this is a data document - no need to set CSP. if (mLoadedAsData) { return NS_OK; } MOZ_ASSERT(!mCSP, "where did mCSP get set if not here?"); // If there is a CSP that needs to be inherited from whatever // global is considered the client of the document fetch then // we query it here from the loadinfo in case the newly created // document needs to inherit the CSP. See: // https://w3c.github.io/webappsec-csp/#initialize-document-csp if (CSP_ShouldResponseInheritCSP(aChannel)) { nsCOMPtr loadInfo = aChannel->LoadInfo(); mCSP = loadInfo->GetCspToInherit(); } // If there is no CSP to inherit, then we create a new CSP here so // that history entries always have the right reference in case a // Meta CSP gets dynamically added after the history entry has // already been created. if (!mCSP) { mCSP = new nsCSPContext(); } // Always overwrite the requesting context of the CSP so that any new // 'self' keyword added to an inherited CSP translates correctly. nsresult rv = mCSP->SetRequestContextWithDocument(this); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } nsAutoCString tCspHeaderValue, tCspROHeaderValue; nsCOMPtr httpChannel; rv = GetHttpChannelHelper(aChannel, getter_AddRefs(httpChannel)); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } if (httpChannel) { Unused << httpChannel->GetResponseHeader( NS_LITERAL_CSTRING("content-security-policy"), tCspHeaderValue); Unused << httpChannel->GetResponseHeader( NS_LITERAL_CSTRING("content-security-policy-report-only"), tCspROHeaderValue); } NS_ConvertASCIItoUTF16 cspHeaderValue(tCspHeaderValue); NS_ConvertASCIItoUTF16 cspROHeaderValue(tCspROHeaderValue); // Check if this is a document from a WebExtension. nsCOMPtr principal = NodePrincipal(); auto addonPolicy = BasePrincipal::Cast(principal)->AddonPolicy(); // If there's no CSP to apply, go ahead and return early if (!addonPolicy && cspHeaderValue.IsEmpty() && cspROHeaderValue.IsEmpty()) { if (MOZ_LOG_TEST(gCspPRLog, LogLevel::Debug)) { nsCOMPtr chanURI; aChannel->GetURI(getter_AddRefs(chanURI)); nsAutoCString aspec; chanURI->GetAsciiSpec(aspec); MOZ_LOG(gCspPRLog, LogLevel::Debug, ("no CSP for document, %s", aspec.get())); } return NS_OK; } MOZ_LOG(gCspPRLog, LogLevel::Debug, ("Document is an add-on or CSP header specified %p", this)); // ----- if the doc is an addon, apply its CSP. if (addonPolicy) { nsAutoString extensionPageCSP; Unused << ExtensionPolicyService::GetSingleton().GetBaseCSP( extensionPageCSP); mCSP->AppendPolicy(extensionPageCSP, false, false); mCSP->AppendPolicy(addonPolicy->ExtensionPageCSP(), false, false); // Bug 1548468: Move CSP off ExpandedPrincipal // Currently the LoadInfo holds the source of truth for every resource load // because LoadInfo::GetCSP() queries the CSP from an ExpandedPrincipal // (and not from the Client) if the load was triggered by an extension. auto* basePrin = BasePrincipal::Cast(principal); if (basePrin->Is()) { basePrin->As()->SetCsp(mCSP); } } // ----- if there's a full-strength CSP header, apply it. if (!cspHeaderValue.IsEmpty()) { rv = CSP_AppendCSPFromHeader(mCSP, cspHeaderValue, false); NS_ENSURE_SUCCESS(rv, rv); } // ----- if there's a report-only CSP header, apply it. if (!cspROHeaderValue.IsEmpty()) { rv = CSP_AppendCSPFromHeader(mCSP, cspROHeaderValue, true); NS_ENSURE_SUCCESS(rv, rv); } // ----- Enforce sandbox policy if supplied in CSP header // The document may already have some sandbox flags set (e.g. if the document // is an iframe with the sandbox attribute set). If we have a CSP sandbox // directive, intersect the CSP sandbox flags with the existing flags. This // corresponds to the _least_ permissive policy. uint32_t cspSandboxFlags = SANDBOXED_NONE; rv = mCSP->GetCSPSandboxFlags(&cspSandboxFlags); NS_ENSURE_SUCCESS(rv, rv); // Probably the iframe sandbox attribute already caused the creation of a // new NullPrincipal. Only create a new NullPrincipal if CSP requires so // and no one has been created yet. bool needNewNullPrincipal = (cspSandboxFlags & SANDBOXED_ORIGIN) && !(mSandboxFlags & SANDBOXED_ORIGIN); mSandboxFlags |= cspSandboxFlags; if (needNewNullPrincipal) { principal = NullPrincipal::CreateWithInheritedAttributes(principal); SetPrincipals(principal, principal); } ApplySettingsFromCSP(false); return NS_OK; } already_AddRefed Document::GetParentFeaturePolicy() { if (!mDocumentContainer) { return nullptr; } nsPIDOMWindowOuter* containerWindow = mDocumentContainer->GetWindow(); if (!containerWindow) { return nullptr; } BrowsingContext* context = containerWindow->GetBrowsingContext(); if (!context) { return nullptr; } RefPtr parentPolicy; if (context->IsContentSubframe() && !context->GetParent()->IsInProcess()) { // We are in cross process, so try to get feature policy from // container's BrowsingContext parentPolicy = context->GetFeaturePolicy(); return parentPolicy.forget(); } nsCOMPtr node = containerWindow->GetFrameElementInternal(); HTMLIFrameElement* iframe = HTMLIFrameElement::FromNodeOrNull(node); if (!iframe) { return nullptr; } parentPolicy = iframe->FeaturePolicy(); return parentPolicy.forget(); } nsresult Document::InitFeaturePolicy(nsIChannel* aChannel) { MOZ_ASSERT(mFeaturePolicy, "we should only call init once"); mFeaturePolicy->ResetDeclaredPolicy(); if (!StaticPrefs::dom_security_featurePolicy_enabled()) { return NS_OK; } mFeaturePolicy->SetDefaultOrigin(NodePrincipal()); RefPtr parentPolicy = GetParentFeaturePolicy(); if (parentPolicy) { // Let's inherit the policy from the parent HTMLIFrameElement if it exists. mFeaturePolicy->InheritPolicy(parentPolicy); } // We don't want to parse the http Feature-Policy header if this pref is off. if (!StaticPrefs::dom_security_featurePolicy_header_enabled()) { return NS_OK; } nsCOMPtr httpChannel; nsresult rv = GetHttpChannelHelper(aChannel, getter_AddRefs(httpChannel)); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } if (!httpChannel) { return NS_OK; } // query the policy from the header nsAutoCString value; rv = httpChannel->GetResponseHeader(NS_LITERAL_CSTRING("Feature-Policy"), value); if (NS_SUCCEEDED(rv)) { mFeaturePolicy->SetDeclaredPolicy(this, NS_ConvertUTF8toUTF16(value), NodePrincipal(), nullptr); } return NS_OK; } nsresult Document::InitReferrerInfo(nsIChannel* aChannel) { MOZ_ASSERT(mReferrerInfo); MOZ_ASSERT(mPreloadReferrerInfo); if (ReferrerInfo::ShouldResponseInheritReferrerInfo(aChannel)) { // The channel is loading `about:srcdoc`. Srcdoc loads should respond with // their parent's ReferrerInfo when asked for their ReferrerInfo, unless // they have an opaque origin. // https://w3c.github.io/webappsec-referrer-policy/#determine-requests-referrer if (BrowsingContext* bc = GetBrowsingContext()) { // At this point the document is not fully created and mParentDocument has // not been set yet, Document* parentDoc = bc->GetEmbedderElement() ? bc->GetEmbedderElement()->OwnerDoc() : nullptr; if (parentDoc) { mReferrerInfo = parentDoc->GetReferrerInfo(); mPreloadReferrerInfo = mReferrerInfo; return NS_OK; } MOZ_ASSERT(NodePrincipal()->GetIsNullPrincipal(), "srcdoc without null principal as toplevel!"); } } nsCOMPtr httpChannel; nsresult rv = GetHttpChannelHelper(aChannel, getter_AddRefs(httpChannel)); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } if (!httpChannel) { return NS_OK; } nsCOMPtr referrerInfo = httpChannel->GetReferrerInfo(); if (referrerInfo) { mReferrerInfo = referrerInfo; } // Override policy if we get one from Referrerr-Policy header mozilla::dom::ReferrerPolicy policy = nsContentUtils::GetReferrerPolicyFromChannel(aChannel); mReferrerInfo = static_cast(mReferrerInfo.get()) ->CloneWithNewPolicy(policy); mPreloadReferrerInfo = mReferrerInfo; return NS_OK; } void Document::StopDocumentLoad() { if (mParser) { mParserAborted = true; mParser->Terminate(); } } void Document::SetDocumentURI(nsIURI* aURI) { nsCOMPtr oldBase = GetDocBaseURI(); mDocumentURI = aURI; nsIURI* newBase = GetDocBaseURI(); mDocURISchemeIsChrome = aURI && IsChromeURI(aURI); bool equalBases = false; // Changing just the ref of a URI does not change how relative URIs would // resolve wrt to it, so we can treat the bases as equal as long as they're // equal ignoring the ref. if (oldBase && newBase) { oldBase->EqualsExceptRef(newBase, &equalBases); } else { equalBases = !oldBase && !newBase; } // If this is the first time we're setting the document's URI, set the // document's original URI. if (!mOriginalURI) mOriginalURI = mDocumentURI; // If changing the document's URI changed the base URI of the document, we // need to refresh the hrefs of all the links on the page. if (!equalBases) { RefreshLinkHrefs(); } // Recalculate our base domain mBaseDomain.Truncate(); ThirdPartyUtil* thirdPartyUtil = ThirdPartyUtil::GetInstance(); if (thirdPartyUtil) { Unused << thirdPartyUtil->GetBaseDomain(mDocumentURI, mBaseDomain); } // Tell our WindowGlobalParent that the document's URI has been changed. nsPIDOMWindowInner* inner = GetInnerWindow(); if (inner && inner->GetWindowGlobalChild()) { inner->GetWindowGlobalChild()->SetDocumentURI(mDocumentURI); } } static void GetFormattedTimeString(PRTime aTime, nsAString& aFormattedTimeString) { PRExplodedTime prtime; PR_ExplodeTime(aTime, PR_LocalTimeParameters, &prtime); // "MM/DD/YYYY hh:mm:ss" char formatedTime[24]; if (SprintfLiteral(formatedTime, "%02d/%02d/%04d %02d:%02d:%02d", prtime.tm_month + 1, prtime.tm_mday, int(prtime.tm_year), prtime.tm_hour, prtime.tm_min, prtime.tm_sec)) { CopyASCIItoUTF16(nsDependentCString(formatedTime), aFormattedTimeString); } else { // If we for whatever reason failed to find the last modified time // (or even the current time), fall back to what NS4.x returned. aFormattedTimeString.AssignLiteral(u"01/01/1970 00:00:00"); } } void Document::GetLastModified(nsAString& aLastModified) const { if (!mLastModified.IsEmpty()) { aLastModified.Assign(mLastModified); } else { GetFormattedTimeString(PR_Now(), aLastModified); } } static void IncrementExpandoGeneration(Document& aDoc) { ++aDoc.mExpandoAndGeneration.generation; } void Document::AddToNameTable(Element* aElement, nsAtom* aName) { MOZ_ASSERT( nsGenericHTMLElement::ShouldExposeNameAsHTMLDocumentProperty(aElement), "Only put elements that need to be exposed as document['name'] in " "the named table."); IdentifierMapEntry* entry = mIdentifierMap.PutEntry(aName); // Null for out-of-memory if (entry) { if (!entry->HasNameElement() && !entry->HasIdElementExposedAsHTMLDocumentProperty()) { IncrementExpandoGeneration(*this); } entry->AddNameElement(this, aElement); } } void Document::RemoveFromNameTable(Element* aElement, nsAtom* aName) { // Speed up document teardown if (mIdentifierMap.Count() == 0) return; IdentifierMapEntry* entry = mIdentifierMap.GetEntry(aName); if (!entry) // Could be false if the element was anonymous, hence never added return; entry->RemoveNameElement(aElement); if (!entry->HasNameElement() && !entry->HasIdElementExposedAsHTMLDocumentProperty()) { IncrementExpandoGeneration(*this); } } void Document::AddToIdTable(Element* aElement, nsAtom* aId) { IdentifierMapEntry* entry = mIdentifierMap.PutEntry(aId); if (entry) { /* True except on OOM */ if (nsGenericHTMLElement::ShouldExposeIdAsHTMLDocumentProperty(aElement) && !entry->HasNameElement() && !entry->HasIdElementExposedAsHTMLDocumentProperty()) { IncrementExpandoGeneration(*this); } entry->AddIdElement(aElement); } } void Document::RemoveFromIdTable(Element* aElement, nsAtom* aId) { NS_ASSERTION(aId, "huhwhatnow?"); // Speed up document teardown if (mIdentifierMap.Count() == 0) { return; } IdentifierMapEntry* entry = mIdentifierMap.GetEntry(aId); if (!entry) // Can be null for XML elements with changing ids. return; entry->RemoveIdElement(aElement); if (nsGenericHTMLElement::ShouldExposeIdAsHTMLDocumentProperty(aElement) && !entry->HasNameElement() && !entry->HasIdElementExposedAsHTMLDocumentProperty()) { IncrementExpandoGeneration(*this); } if (entry->IsEmpty()) { mIdentifierMap.RemoveEntry(entry); } } void Document::SetPrincipals(nsIPrincipal* aNewPrincipal, nsIPrincipal* aNewStoragePrincipal) { MOZ_ASSERT(!!aNewPrincipal == !!aNewStoragePrincipal); if (aNewPrincipal && mAllowDNSPrefetch && StaticPrefs::network_dns_disablePrefetchFromHTTPS()) { if (aNewPrincipal->SchemeIs("https")) { mAllowDNSPrefetch = false; } } mNodeInfoManager->SetDocumentPrincipal(aNewPrincipal); mIntrinsicStoragePrincipal = aNewStoragePrincipal; AntiTrackingCommon::ComputeContentBlockingAllowListPrincipal( aNewPrincipal, getter_AddRefs(mContentBlockingAllowListPrincipal)); #ifdef DEBUG // Validate that the docgroup is set correctly by calling its getter and // triggering its sanity check. // // If we're setting the principal to null, we don't want to perform the check, // as the document is entering an intermediate state where it does not have a // principal. It will be given another real principal shortly which we will // check. It's not unsafe to have a document which has a null principal in the // same docgroup as another document, so this should not be a problem. if (aNewPrincipal) { GetDocGroup(); } #endif } #ifdef DEBUG void Document::AssertDocGroupMatchesKey() const { // Sanity check that we have an up-to-date and accurate docgroup if (mDocGroup) { nsAutoCString docGroupKey; // GetKey() can fail, e.g. after the TLD service has shut down. nsresult rv = mozilla::dom::DocGroup::GetKey(NodePrincipal(), docGroupKey); if (NS_SUCCEEDED(rv)) { MOZ_ASSERT(mDocGroup->MatchesKey(docGroupKey)); } // XXX: Check that the TabGroup is correct as well! } } #endif nsresult Document::Dispatch(TaskCategory aCategory, already_AddRefed&& aRunnable) { // Note that this method may be called off the main thread. if (mDocGroup) { return mDocGroup->Dispatch(aCategory, std::move(aRunnable)); } return DispatcherTrait::Dispatch(aCategory, std::move(aRunnable)); } nsISerialEventTarget* Document::EventTargetFor(TaskCategory aCategory) const { if (mDocGroup) { return mDocGroup->EventTargetFor(aCategory); } return DispatcherTrait::EventTargetFor(aCategory); } AbstractThread* Document::AbstractMainThreadFor( mozilla::TaskCategory aCategory) { MOZ_ASSERT(NS_IsMainThread()); if (mDocGroup) { return mDocGroup->AbstractMainThreadFor(aCategory); } return DispatcherTrait::AbstractMainThreadFor(aCategory); } void Document::NoteScriptTrackingStatus(const nsACString& aURL, bool aIsTracking) { if (aIsTracking) { mTrackingScripts.PutEntry(aURL); } else { MOZ_ASSERT(!mTrackingScripts.Contains(aURL)); } } bool Document::IsScriptTracking(JSContext* aCx) const { JS::AutoFilename filename; uint32_t line = 0; uint32_t column = 0; if (!JS::DescribeScriptedCaller(aCx, &filename, &line, &column)) { return false; } return mTrackingScripts.Contains(nsDependentCString(filename.get())); } NS_IMETHODIMP Document::GetApplicationCache(nsIApplicationCache** aApplicationCache) { NS_IF_ADDREF(*aApplicationCache = mApplicationCache); return NS_OK; } NS_IMETHODIMP Document::SetApplicationCache(nsIApplicationCache* aApplicationCache) { mApplicationCache = aApplicationCache; return NS_OK; } void Document::GetContentType(nsAString& aContentType) { CopyUTF8toUTF16(GetContentTypeInternal(), aContentType); } void Document::SetContentType(const nsAString& aContentType) { SetContentTypeInternal(NS_ConvertUTF16toUTF8(aContentType)); } bool Document::GetAllowPlugins() { // First, we ask our docshell if it allows plugins. nsCOMPtr docShell(mDocumentContainer); if (docShell) { bool allowPlugins = false; docShell->GetAllowPlugins(&allowPlugins); if (!allowPlugins) { return false; } // If the docshell allows plugins, we check whether // we are sandboxed and plugins should not be allowed. if (mSandboxFlags & SANDBOXED_PLUGINS) { return false; } } FlashClassification classification = DocumentFlashClassification(); if (classification == FlashClassification::Denied) { return false; } return true; } void Document::InitializeLocalization(nsTArray& aResourceIds) { MOZ_ASSERT(!mDocumentL10n, "mDocumentL10n should not be initialized yet"); RefPtr l10n = new DocumentL10n(this); ErrorResult rv; l10n->Init(aResourceIds, rv); if (NS_WARN_IF(rv.Failed())) { return; } mDocumentL10n = l10n; } DocumentL10n* Document::GetL10n() { return mDocumentL10n; } bool Document::DocumentSupportsL10n(JSContext* aCx, JSObject* aObject) { nsCOMPtr callerPrincipal = nsContentUtils::SubjectPrincipal(aCx); nsGlobalWindowInner* win = xpc::WindowOrNull(aObject); return nsContentUtils::PrincipalAllowsL10n( *callerPrincipal, win ? win->GetDocumentURI() : nullptr); } void Document::LocalizationLinkAdded(Element* aLinkElement) { if (!AllowsL10n()) { return; } nsAutoString href; aLinkElement->GetAttr(kNameSpaceID_None, nsGkAtoms::href, href); // If the link is added after the DocumentL10n instance // has been initialized, just pass the resource ID to it. if (mDocumentL10n) { AutoTArray resourceIds; resourceIds.AppendElement(href); mDocumentL10n->AddResourceIds(resourceIds, false); } else if (mReadyState >= READYSTATE_INTERACTIVE) { // Otherwise, if the document has already been parsed // we need to lazily initialize the localization. AutoTArray resourceIds; resourceIds.AppendElement(href); InitializeLocalization(resourceIds); mDocumentL10n->TriggerInitialDocumentTranslation(); } else { // Otherwise, we're still parsing the document. // In that case, add it to the pending list. This list // will be resolved once the end of l10n resource // container is reached. mL10nResources.AppendElement(href); if (!mPendingInitialTranslation) { // Our initial translation is going to block layout start. Make sure we // don't fire the load event until after that stops happening and layout // has a chance to start. BlockOnload(); } mPendingInitialTranslation = true; } } void Document::LocalizationLinkRemoved(Element* aLinkElement) { if (!AllowsL10n()) { return; } nsAutoString href; aLinkElement->GetAttr(kNameSpaceID_None, nsGkAtoms::href, href); if (mDocumentL10n) { AutoTArray resourceIds; resourceIds.AppendElement(href); uint32_t remaining = mDocumentL10n->RemoveResourceIds(resourceIds); if (remaining == 0) { mDocumentL10n = nullptr; } } else { mL10nResources.RemoveElement(href); } } /** * This method should be called once the end of the l10n * resource container has been parsed. * * In XUL this is the end of the first , * In XHTML/HTML this is the end of . * * This milestone is used to allow for batch * localization context I/O and building done * once when all resources in the document have been * collected. */ void Document::OnL10nResourceContainerParsed() { if (!mL10nResources.IsEmpty()) { InitializeLocalization(mL10nResources); mL10nResources.Clear(); } } void Document::TriggerInitialDocumentTranslation() { // Let's call it again, in case the resource // container has not been closed, and only // now we're closing the document. OnL10nResourceContainerParsed(); if (mDocumentL10n) { mDocumentL10n->TriggerInitialDocumentTranslation(); } } void Document::InitialDocumentTranslationCompleted() { if (mPendingInitialTranslation) { // This means we blocked the load event in LocalizationLinkAdded. It's // important that the load blocker removal here be async, because our caller // will notify the content sink after us, and we want the content sync's // work to happen before the load event fires. UnblockOnload(/* aFireSync = */ false); } mPendingInitialTranslation = false; mL10nProtoElements.Clear(); nsXULPrototypeDocument* proto = GetPrototype(); if (proto) { proto->SetIsL10nCached(); } } bool Document::AllowsL10n() const { return nsContentUtils::PrincipalAllowsL10n(*NodePrincipal(), GetDocumentURI()); } bool Document::IsWebAnimationsEnabled(JSContext* aCx, JSObject* /*unused*/) { MOZ_ASSERT(NS_IsMainThread()); return nsContentUtils::IsSystemCaller(aCx) || StaticPrefs::dom_animations_api_core_enabled(); } bool Document::IsWebAnimationsEnabled(CallerType aCallerType) { MOZ_ASSERT(NS_IsMainThread()); return aCallerType == dom::CallerType::System || StaticPrefs::dom_animations_api_core_enabled(); } bool Document::IsWebAnimationsGetAnimationsEnabled(JSContext* aCx, JSObject* /*unused*/ ) { MOZ_ASSERT(NS_IsMainThread()); return nsContentUtils::IsSystemCaller(aCx) || StaticPrefs::dom_animations_api_getAnimations_enabled(); } bool Document::AreWebAnimationsImplicitKeyframesEnabled(JSContext* aCx, JSObject* /*unused*/ ) { MOZ_ASSERT(NS_IsMainThread()); return nsContentUtils::IsSystemCaller(aCx) || StaticPrefs::dom_animations_api_implicit_keyframes_enabled(); } bool Document::AreWebAnimationsTimelinesEnabled(JSContext* aCx, JSObject* /*unused*/ ) { MOZ_ASSERT(NS_IsMainThread()); return nsContentUtils::IsSystemCaller(aCx) || StaticPrefs::dom_animations_api_timelines_enabled(); } DocumentTimeline* Document::Timeline() { if (!mDocumentTimeline) { mDocumentTimeline = new DocumentTimeline(this, TimeDuration(0)); } return mDocumentTimeline; } SVGSVGElement* Document::GetSVGRootElement() const { Element* root = GetRootElement(); if (!root || !root->IsSVGElement(nsGkAtoms::svg)) { return nullptr; } return static_cast(root); } /* Return true if the document is in the focused top-level window, and is an * ancestor of the focused DOMWindow. */ bool Document::HasFocus(ErrorResult& rv) const { nsIFocusManager* fm = nsFocusManager::GetFocusManager(); if (!fm) { rv.Throw(NS_ERROR_NOT_AVAILABLE); return false; } // Is there a focused DOMWindow? nsCOMPtr focusedWindow; fm->GetFocusedWindow(getter_AddRefs(focusedWindow)); if (!focusedWindow) { return false; } nsPIDOMWindowOuter* piWindow = nsPIDOMWindowOuter::From(focusedWindow); // Are we an ancestor of the focused DOMWindow? for (Document* currentDoc = piWindow->GetDoc(); currentDoc; currentDoc = currentDoc->GetInProcessParentDocument()) { if (currentDoc == this) { // Yes, we are an ancestor return true; } } return false; } void Document::GetDesignMode(nsAString& aDesignMode) { if (HasFlag(NODE_IS_EDITABLE)) { aDesignMode.AssignLiteral("on"); } else { aDesignMode.AssignLiteral("off"); } } void Document::SetDesignMode(const nsAString& aDesignMode, nsIPrincipal& aSubjectPrincipal, ErrorResult& rv) { SetDesignMode(aDesignMode, Some(&aSubjectPrincipal), rv); } void Document::SetDesignMode(const nsAString& aDesignMode, const Maybe& aSubjectPrincipal, ErrorResult& rv) { if (aSubjectPrincipal.isSome() && !aSubjectPrincipal.value()->Subsumes(NodePrincipal())) { rv.Throw(NS_ERROR_DOM_PROP_ACCESS_DENIED); return; } bool editableMode = HasFlag(NODE_IS_EDITABLE); if (aDesignMode.LowerCaseEqualsASCII(editableMode ? "off" : "on")) { SetEditableFlag(!editableMode); rv = EditingStateChanged(); } } nsCommandManager* Document::GetMidasCommandManager() { // check if we have it cached if (mMidasCommandManager) { return mMidasCommandManager; } nsPIDOMWindowOuter* window = GetWindow(); if (!window) { return nullptr; } nsIDocShell* docshell = window->GetDocShell(); if (!docshell) { return nullptr; } mMidasCommandManager = docshell->GetCommandManager(); return mMidasCommandManager; } // static void Document::EnsureInitializeInternalCommandDataHashtable() { if (sInternalCommandDataHashtable) { return; } sInternalCommandDataHashtable = new InternalCommandDataHashtable(); // clang-format off sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("bold"), InternalCommandData( "cmd_bold", Command::FormatBold, ExecCommandParam::Ignore, StyleUpdatingCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("italic"), InternalCommandData( "cmd_italic", Command::FormatItalic, ExecCommandParam::Ignore, StyleUpdatingCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("underline"), InternalCommandData( "cmd_underline", Command::FormatUnderline, ExecCommandParam::Ignore, StyleUpdatingCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("strikethrough"), InternalCommandData( "cmd_strikethrough", Command::FormatStrikeThrough, ExecCommandParam::Ignore, StyleUpdatingCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("subscript"), InternalCommandData( "cmd_subscript", Command::FormatSubscript, ExecCommandParam::Ignore, StyleUpdatingCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("superscript"), InternalCommandData( "cmd_superscript", Command::FormatSuperscript, ExecCommandParam::Ignore, StyleUpdatingCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("cut"), InternalCommandData( "cmd_cut", Command::Cut, ExecCommandParam::Ignore, CutCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("copy"), InternalCommandData( "cmd_copy", Command::Copy, ExecCommandParam::Ignore, CopyCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("paste"), InternalCommandData( "cmd_paste", Command::Paste, ExecCommandParam::Ignore, PasteCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("delete"), InternalCommandData( "cmd_deleteCharBackward", Command::DeleteCharBackward, ExecCommandParam::Ignore, DeleteCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("forwarddelete"), InternalCommandData( "cmd_deleteCharForward", Command::DeleteCharForward, ExecCommandParam::Ignore, DeleteCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("selectall"), InternalCommandData( "cmd_selectAll", Command::SelectAll, ExecCommandParam::Ignore, SelectAllCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("undo"), InternalCommandData( "cmd_undo", Command::HistoryUndo, ExecCommandParam::Ignore, UndoCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("redo"), InternalCommandData( "cmd_redo", Command::HistoryRedo, ExecCommandParam::Ignore, RedoCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("indent"), InternalCommandData("cmd_indent", Command::FormatIndent, ExecCommandParam::Ignore, IndentCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("outdent"), InternalCommandData( "cmd_outdent", Command::FormatOutdent, ExecCommandParam::Ignore, OutdentCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("backcolor"), InternalCommandData( "cmd_highlight", Command::FormatBackColor, ExecCommandParam::String, HighlightColorStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("hilitecolor"), InternalCommandData( "cmd_highlight", Command::FormatBackColor, ExecCommandParam::String, HighlightColorStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("forecolor"), InternalCommandData( "cmd_fontColor", Command::FormatFontColor, ExecCommandParam::String, FontColorStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("fontname"), InternalCommandData( "cmd_fontFace", Command::FormatFontName, ExecCommandParam::String, FontFaceStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("fontsize"), InternalCommandData( "cmd_fontSize", Command::FormatFontSize, ExecCommandParam::String, FontSizeStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("increasefontsize"), InternalCommandData( "cmd_increaseFont", Command::FormatIncreaseFontSize, ExecCommandParam::Ignore, IncreaseFontSizeCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("decreasefontsize"), InternalCommandData( "cmd_decreaseFont", Command::FormatDecreaseFontSize, ExecCommandParam::Ignore, DecreaseFontSizeCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("inserthorizontalrule"), InternalCommandData( "cmd_insertHR", Command::InsertHorizontalRule, ExecCommandParam::Ignore, InsertTagCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("createlink"), InternalCommandData( "cmd_insertLinkNoUI", Command::InsertLink, ExecCommandParam::String, InsertTagCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("insertimage"), InternalCommandData( "cmd_insertImageNoUI", Command::InsertImage, ExecCommandParam::String, InsertTagCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("inserthtml"), InternalCommandData( "cmd_insertHTML", Command::InsertHTML, ExecCommandParam::String, InsertHTMLCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("inserttext"), InternalCommandData( "cmd_insertText", Command::InsertText, ExecCommandParam::String, InsertPlaintextCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("gethtml"), InternalCommandData( "cmd_getContents", Command::GetHTML, ExecCommandParam::Ignore, nullptr)); // Not defined in EditorCommands.h sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("justifyleft"), InternalCommandData( "cmd_align", Command::FormatJustifyLeft, ExecCommandParam::Ignore, // Will be set to "left" AlignCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("justifyright"), InternalCommandData( "cmd_align", Command::FormatJustifyRight, ExecCommandParam::Ignore, // Will be set to "right" AlignCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("justifycenter"), InternalCommandData( "cmd_align", Command::FormatJustifyCenter, ExecCommandParam::Ignore, // Will be set to "center" AlignCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("justifyfull"), InternalCommandData( "cmd_align", Command::FormatJustifyFull, ExecCommandParam::Ignore, // Will be set to "justify" AlignCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("removeformat"), InternalCommandData( "cmd_removeStyles", Command::FormatRemove, ExecCommandParam::Ignore, RemoveStylesCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("unlink"), InternalCommandData( "cmd_removeLinks", Command::FormatRemoveLink, ExecCommandParam::Ignore, StyleUpdatingCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("insertorderedlist"), InternalCommandData( "cmd_ol", Command::InsertOrderedList, ExecCommandParam::Ignore, ListCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("insertunorderedlist"), InternalCommandData( "cmd_ul", Command::InsertUnorderedList, ExecCommandParam::Ignore, ListCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("insertparagraph"), InternalCommandData( "cmd_insertParagraph", Command::InsertParagraph, ExecCommandParam::Ignore, InsertParagraphCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("insertlinebreak"), InternalCommandData( "cmd_insertLineBreak", Command::InsertLineBreak, ExecCommandParam::Ignore, InsertLineBreakCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("formatblock"), InternalCommandData( "cmd_paragraphState", Command::FormatBlock, ExecCommandParam::String, ParagraphStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("heading"), InternalCommandData( "cmd_paragraphState", Command::FormatBlock, ExecCommandParam::String, ParagraphStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("styleWithCSS"), InternalCommandData( "cmd_setDocumentUseCSS", Command::SetDocumentUseCSS, ExecCommandParam::Boolean, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("usecss"), // Legacy command InternalCommandData( "cmd_setDocumentUseCSS", Command::SetDocumentUseCSS, ExecCommandParam::InvertedBoolean, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("contentReadOnly"), InternalCommandData( "cmd_setDocumentReadOnly", Command::SetDocumentReadOnly, ExecCommandParam::Boolean, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("readonly"), // Legacy command InternalCommandData( "cmd_setDocumentReadOnly", Command::SetDocumentReadOnly, ExecCommandParam::InvertedBoolean, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("insertBrOnReturn"), InternalCommandData( "cmd_insertBrOnReturn", Command::SetDocumentInsertBROnEnterKeyPress, ExecCommandParam::Boolean, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("defaultParagraphSeparator"), InternalCommandData( "cmd_defaultParagraphSeparator", Command::SetDocumentDefaultParagraphSeparator, ExecCommandParam::String, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("enableObjectResizing"), InternalCommandData( "cmd_enableObjectResizing", Command::ToggleObjectResizers, ExecCommandParam::Boolean, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("enableInlineTableEditing"), InternalCommandData( "cmd_enableInlineTableEditing", Command::ToggleInlineTableEditor, ExecCommandParam::Boolean, SetDocumentStateCommand::GetInstance)); sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("enableAbsolutePositionEditing"), InternalCommandData( "cmd_enableAbsolutePositionEditing", Command::ToggleAbsolutePositionEditor, ExecCommandParam::Boolean, SetDocumentStateCommand::GetInstance)); #if 0 // with empty string sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("justifynone"), InternalCommandData( "cmd_align", Command::Undefined, ExecCommandParam::Ignore, nullptr)); // Not implemented yet. // REQUIRED SPECIAL REVIEW special review sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("saveas"), InternalCommandData( "cmd_saveAs", Command::Undefined, ExecCommandParam::Boolean, nullptr)); // Not implemented yet. // REQUIRED SPECIAL REVIEW special review sInternalCommandDataHashtable->Put( NS_LITERAL_STRING("print"), InternalCommandData( "cmd_print", Command::Undefined, ExecCommandParam::Boolean, nullptr)); // Not implemented yet. #endif // #if 0 // clang-format on } Document::InternalCommandData Document::ConvertToInternalCommand( const nsAString& aHTMLCommandName, const nsAString& aValue /* = EmptyString() */, nsAString* aAdjustedValue /* = nullptr */) { MOZ_ASSERT(!aAdjustedValue || aAdjustedValue->IsEmpty()); EnsureInitializeInternalCommandDataHashtable(); InternalCommandData commandData; if (!sInternalCommandDataHashtable->Get(aHTMLCommandName, &commandData)) { return InternalCommandData(); } if (!aAdjustedValue) { // No further work to do return commandData; } switch (commandData.mExecCommandParam) { case ExecCommandParam::Ignore: // Just have to copy it, no checking switch (commandData.mCommand) { case Command::FormatJustifyLeft: aAdjustedValue->AssignLiteral("left"); break; case Command::FormatJustifyRight: aAdjustedValue->AssignLiteral("right"); break; case Command::FormatJustifyCenter: aAdjustedValue->AssignLiteral("center"); break; case Command::FormatJustifyFull: aAdjustedValue->AssignLiteral("justify"); break; default: MOZ_ASSERT(EditorCommand::GetParamType(commandData.mCommand) == EditorCommandParamType::None); break; } return commandData; case ExecCommandParam::Boolean: MOZ_ASSERT(!!(EditorCommand::GetParamType(commandData.mCommand) & EditorCommandParamType::Bool)); // If this is a boolean value and it's not explicitly false (e.g. no // value). We default to "true" (see bug 301490). if (!aValue.LowerCaseEqualsLiteral("false")) { aAdjustedValue->AssignLiteral("true"); } else { aAdjustedValue->AssignLiteral("false"); } return commandData; case ExecCommandParam::InvertedBoolean: MOZ_ASSERT(!!(EditorCommand::GetParamType(commandData.mCommand) & EditorCommandParamType::Bool)); // For old backwards commands we invert the check. if (aValue.LowerCaseEqualsLiteral("false")) { aAdjustedValue->AssignLiteral("true"); } else { aAdjustedValue->AssignLiteral("false"); } return commandData; case ExecCommandParam::String: MOZ_ASSERT(!!( EditorCommand::GetParamType(commandData.mCommand) & (EditorCommandParamType::String | EditorCommandParamType::CString))); switch (commandData.mCommand) { case Command::FormatBlock: { const char16_t* start = aValue.BeginReading(); const char16_t* end = aValue.EndReading(); if (start != end && *start == '<' && *(end - 1) == '>') { ++start; --end; } // XXX Should we reorder this array with actual usage? static const nsStaticAtom* kFormattableBlockTags[] = { // clang-format off nsGkAtoms::address, nsGkAtoms::blockquote, nsGkAtoms::dd, nsGkAtoms::div, nsGkAtoms::dl, nsGkAtoms::dt, nsGkAtoms::h1, nsGkAtoms::h2, nsGkAtoms::h3, nsGkAtoms::h4, nsGkAtoms::h5, nsGkAtoms::h6, nsGkAtoms::p, nsGkAtoms::pre, // clang-format on }; nsAutoString value(nsDependentSubstring(start, end)); ToLowerCase(value); const nsStaticAtom* valueAtom = NS_GetStaticAtom(value); for (const nsStaticAtom* kTag : kFormattableBlockTags) { if (valueAtom == kTag) { kTag->ToString(*aAdjustedValue); return commandData; } } return InternalCommandData(); } case Command::FormatFontSize: { // Per editing spec as of April 23, 2012, we need to reject the value // if it's not a valid floating-point number surrounded by optional // whitespace. Otherwise, we parse it as a legacy font size. For // now, we just parse as a legacy font size regardless (matching // WebKit) -- bug 747879. int32_t size = nsContentUtils::ParseLegacyFontSize(aValue); if (!size) { return InternalCommandData(); } MOZ_ASSERT(aAdjustedValue->IsEmpty()); aAdjustedValue->AppendInt(size); return commandData; } case Command::InsertImage: case Command::InsertLink: if (aValue.IsEmpty()) { // Invalid value, return false return InternalCommandData(); } aAdjustedValue->Assign(aValue); return commandData; case Command::SetDocumentDefaultParagraphSeparator: if (!aValue.LowerCaseEqualsLiteral("div") && !aValue.LowerCaseEqualsLiteral("p") && !aValue.LowerCaseEqualsLiteral("br")) { // Invalid value return InternalCommandData(); } aAdjustedValue->Assign(aValue); return commandData; default: aAdjustedValue->Assign(aValue); return commandData; } default: MOZ_ASSERT_UNREACHABLE("New ExecCommandParam value hasn't been handled"); return InternalCommandData(); } } bool Document::ExecCommand(const nsAString& aHTMLCommandName, bool aShowUI, const nsAString& aValue, nsIPrincipal& aSubjectPrincipal, ErrorResult& aRv) { // Only allow on HTML documents. if (!IsHTMLOrXHTML()) { aRv.Throw(NS_ERROR_DOM_INVALID_STATE_DOCUMENT_EXEC_COMMAND); return false; } // if they are requesting UI from us, let's fail since we have no UI if (aShowUI) { return false; } // If we're running an execCommand, we should just return false. // https://github.com/w3c/editing/issues/200#issuecomment-575241816 if (!StaticPrefs::dom_document_exec_command_nested_calls_allowed() && mIsRunningExecCommand) { return false; } // for optional parameters see dom/src/base/nsHistory.cpp: HistoryImpl::Go() // this might add some ugly JS dependencies? nsAutoString adjustedValue; InternalCommandData commandData = ConvertToInternalCommand(aHTMLCommandName, aValue, &adjustedValue); if (commandData.mCommand == Command::DoNothing) { return false; } // if editing is not on, bail if (commandData.IsAvailableOnlyWhenEditable() && !IsEditingOnAfterFlush()) { return false; } if (commandData.mCommand == Command::GetHTML) { aRv.Throw(NS_ERROR_FAILURE); return false; } // Do security check first. if (commandData.IsCutOrCopyCommand()) { if (!nsContentUtils::IsCutCopyAllowed(this, aSubjectPrincipal)) { // We have rejected the event due to it not being performed in an // input-driven context therefore, we report the error to the console. nsContentUtils::ReportToConsole(nsIScriptError::warningFlag, NS_LITERAL_CSTRING("DOM"), this, nsContentUtils::eDOM_PROPERTIES, "ExecCommandCutCopyDeniedNotInputDriven"); return false; } } else if (commandData.IsPasteCommand()) { if (!nsContentUtils::PrincipalHasPermission(aSubjectPrincipal, nsGkAtoms::clipboardRead)) { return false; } } // Next, consider context of command handling which is automatically resolved // by order of controllers in `nsCommandManager::GetControllerForCommand()`. // The order is: // 1. HTMLEditor for the document, if there is. // 2. TextEditor if there is an active element and it has TextEditor like // or