/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set sw=2 ts=8 et 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/. */ // HttpLog.h should generally be included first #include "HttpLog.h" #include "mozilla/ipc/FileDescriptorSetParent.h" #include "mozilla/ipc/IPCStreamUtils.h" #include "mozilla/net/HttpChannelParent.h" #include "mozilla/dom/ContentParent.h" #include "mozilla/dom/Element.h" #include "mozilla/dom/TabParent.h" #include "mozilla/net/NeckoParent.h" #include "mozilla/IntegerPrintfMacros.h" #include "mozilla/UniquePtr.h" #include "mozilla/Unused.h" #include "HttpBackgroundChannelParent.h" #include "HttpChannelParentListener.h" #include "nsHttpHandler.h" #include "nsNetCID.h" #include "nsNetUtil.h" #include "nsISupportsPriority.h" #include "nsIAuthPromptProvider.h" #include "nsIBackgroundChannelRegistrar.h" #include "nsSerializationHelper.h" #include "nsISerializable.h" #include "nsIAssociatedContentSecurity.h" #include "nsIApplicationCacheService.h" #include "mozilla/ipc/InputStreamUtils.h" #include "mozilla/ipc/URIUtils.h" #include "SerializedLoadContext.h" #include "nsIAuthInformation.h" #include "nsIAuthPromptCallback.h" #include "nsIContentPolicy.h" #include "mozilla/ipc/BackgroundUtils.h" #include "nsICachingChannel.h" #include "mozilla/LoadInfo.h" #include "nsQueryObject.h" #include "mozilla/BasePrincipal.h" #include "nsCORSListenerProxy.h" #include "nsIIPCSerializableInputStream.h" #include "nsIPrompt.h" #include "nsIRedirectChannelRegistrar.h" #include "nsIWindowWatcher.h" #include "nsIDocument.h" #include "nsStreamUtils.h" #include "nsStringStream.h" #include "nsIStorageStream.h" #include "nsThreadUtils.h" #include "nsQueryObject.h" #include "nsIURIClassifier.h" using mozilla::BasePrincipal; using namespace mozilla::dom; using namespace mozilla::ipc; namespace mozilla { namespace net { HttpChannelParent::HttpChannelParent(const PBrowserOrId& iframeEmbedding, nsILoadContext* aLoadContext, PBOverrideStatus aOverrideStatus) : mIPCClosed(false) , mIgnoreProgress(false) , mSentRedirect1BeginFailed(false) , mReceivedRedirect2Verify(false) , mPBOverride(aOverrideStatus) , mLoadContext(aLoadContext) , mStatus(NS_OK) , mPendingDiversion(false) , mDivertingFromChild(false) , mDivertedOnStartRequest(false) , mSuspendedForDiversion(false) , mSuspendAfterSynthesizeResponse(false) , mWillSynthesizeResponse(false) , mNestedFrameId(0) { LOG(("Creating HttpChannelParent [this=%p]\n", this)); // Ensure gHttpHandler is initialized: we need the atom table up and running. nsCOMPtr dummyInitializer = do_GetService(NS_NETWORK_PROTOCOL_CONTRACTID_PREFIX "http"); MOZ_ASSERT(gHttpHandler); mHttpHandler = gHttpHandler; if (iframeEmbedding.type() == PBrowserOrId::TPBrowserParent) { mTabParent = static_cast(iframeEmbedding.get_PBrowserParent()); } else { mNestedFrameId = iframeEmbedding.get_TabId(); } mEventQ = new ChannelEventQueue(static_cast(this)); } HttpChannelParent::~HttpChannelParent() { LOG(("Destroying HttpChannelParent [this=%p]\n", this)); CleanupBackgroundChannel(); } void HttpChannelParent::ActorDestroy(ActorDestroyReason why) { // We may still have refcount>0 if nsHttpChannel hasn't called OnStopRequest // yet, but child process has crashed. We must not try to send any more msgs // to child, or IPDL will kill chrome process, too. mIPCClosed = true; // If this is an intercepted channel, we need to make sure that any resources are // cleaned up to avoid leaks. if (mParentListener) { mParentListener->ClearInterceptedChannel(this); } CleanupBackgroundChannel(); } bool HttpChannelParent::Init(const HttpChannelCreationArgs& aArgs) { LOG(("HttpChannelParent::Init [this=%p]\n", this)); switch (aArgs.type()) { case HttpChannelCreationArgs::THttpChannelOpenArgs: { const HttpChannelOpenArgs& a = aArgs.get_HttpChannelOpenArgs(); return DoAsyncOpen(a.uri(), a.original(), a.doc(), a.referrer(), a.referrerPolicy(), a.apiRedirectTo(), a.topWindowURI(), a.loadFlags(), a.requestHeaders(), a.requestMethod(), a.uploadStream(), a.uploadStreamHasHeaders(), a.priority(), a.classOfService(), a.redirectionLimit(), a.allowSTS(), a.thirdPartyFlags(), a.resumeAt(), a.startPos(), a.entityID(), a.chooseApplicationCache(), a.appCacheClientID(), a.allowSpdy(), a.allowAltSvc(), a.beConservative(), a.tlsFlags(), a.loadInfo(), a.synthesizedResponseHead(), a.synthesizedSecurityInfoSerialization(), a.cacheKey(), a.requestContextID(), a.preflightArgs(), a.initialRwin(), a.blockAuthPrompt(), a.suspendAfterSynthesizeResponse(), a.allowStaleCacheContent(), a.contentTypeHint(), a.channelId(), a.contentWindowId(), a.preferredAlternativeType(), a.topLevelOuterContentWindowId(), a.launchServiceWorkerStart(), a.launchServiceWorkerEnd(), a.dispatchFetchEventStart(), a.dispatchFetchEventEnd(), a.handleFetchEventStart(), a.handleFetchEventEnd(), a.forceMainDocumentChannel()); } case HttpChannelCreationArgs::THttpChannelConnectArgs: { const HttpChannelConnectArgs& cArgs = aArgs.get_HttpChannelConnectArgs(); return ConnectChannel(cArgs.registrarId(), cArgs.shouldIntercept()); } default: NS_NOTREACHED("unknown open type"); return false; } } void HttpChannelParent::TryInvokeAsyncOpen(nsresult aRv) { LOG(("HttpChannelParent::TryInvokeAsyncOpen [this=%p barrier=%u rv=%" PRIx32 "]\n", this, mAsyncOpenBarrier, static_cast(aRv))); MOZ_ASSERT(NS_IsMainThread()); // TryInvokeAsyncOpen is called more than we expected. // Assert in nightly build but ignore it in release channel. MOZ_DIAGNOSTIC_ASSERT(mAsyncOpenBarrier > 0); if (NS_WARN_IF(!mAsyncOpenBarrier)) { return; } if (--mAsyncOpenBarrier > 0 && NS_SUCCEEDED(aRv)) { // Need to wait for more events. return; } InvokeAsyncOpen(aRv); } void HttpChannelParent::OnBackgroundParentReady( HttpBackgroundChannelParent* aBgParent) { LOG(("HttpChannelParent::OnBackgroundParentReady [this=%p bgParent=%p]\n", this, aBgParent)); MOZ_ASSERT(NS_IsMainThread()); MOZ_ASSERT(!mBgParent); mBgParent = aBgParent; mPromise.ResolveIfExists(true, __func__); } void HttpChannelParent::OnBackgroundParentDestroyed() { LOG(("HttpChannelParent::OnBackgroundParentDestroyed [this=%p]\n", this)); MOZ_ASSERT(NS_IsMainThread()); if (!mPromise.IsEmpty()) { MOZ_ASSERT(!mBgParent); mPromise.Reject(NS_ERROR_FAILURE, __func__); return; } if (!mBgParent) { return; } // Background channel is closed unexpectly, abort PHttpChannel operation. mBgParent = nullptr; Delete(); } void HttpChannelParent::CleanupBackgroundChannel() { LOG(("HttpChannelParent::CleanupBackgroundChannel [this=%p bgParent=%p]\n", this, mBgParent.get())); MOZ_ASSERT(NS_IsMainThread()); if (mBgParent) { RefPtr bgParent = mBgParent.forget(); bgParent->OnChannelClosed(); return; } // The nsHttpChannel may have a reference to this parent, release it // to avoid circular references. RefPtr httpChannelImpl = do_QueryObject(mChannel); if (httpChannelImpl) { httpChannelImpl->SetWarningReporter(nullptr); } if (!mPromise.IsEmpty()) { mRequest.DisconnectIfExists(); mPromise.Reject(NS_ERROR_FAILURE, __func__); if (!mChannel) { return; } // This HttpChannelParent might still have a reference from // BackgroundChannelRegistrar. nsCOMPtr registrar = do_GetService(NS_BACKGROUNDCHANNELREGISTRAR_CONTRACTID); MOZ_ASSERT(registrar); registrar->DeleteChannel(mChannel->ChannelId()); // If mAsyncOpenBarrier is greater than zero, it means AsyncOpen procedure // is still on going. we need to abort AsyncOpen with failure to destroy // PHttpChannel actor. if (mAsyncOpenBarrier) { TryInvokeAsyncOpen(NS_ERROR_FAILURE); } } } //----------------------------------------------------------------------------- // HttpChannelParent::nsISupports //----------------------------------------------------------------------------- NS_IMPL_ADDREF(HttpChannelParent) NS_IMPL_RELEASE(HttpChannelParent) NS_INTERFACE_MAP_BEGIN(HttpChannelParent) NS_INTERFACE_MAP_ENTRY(nsIInterfaceRequestor) NS_INTERFACE_MAP_ENTRY(nsIProgressEventSink) NS_INTERFACE_MAP_ENTRY(nsIRequestObserver) NS_INTERFACE_MAP_ENTRY(nsIStreamListener) NS_INTERFACE_MAP_ENTRY(nsIParentChannel) NS_INTERFACE_MAP_ENTRY(nsIAuthPromptProvider) NS_INTERFACE_MAP_ENTRY(nsIParentRedirectingChannel) NS_INTERFACE_MAP_ENTRY(nsIDeprecationWarner) NS_INTERFACE_MAP_ENTRY(nsIAsyncVerifyRedirectReadyCallback) NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIParentRedirectingChannel) if (aIID.Equals(NS_GET_IID(HttpChannelParent))) { foundInterface = static_cast(this); } else NS_INTERFACE_MAP_END //----------------------------------------------------------------------------- // HttpChannelParent::nsIInterfaceRequestor //----------------------------------------------------------------------------- NS_IMETHODIMP HttpChannelParent::GetInterface(const nsIID& aIID, void **result) { if (aIID.Equals(NS_GET_IID(nsIAuthPromptProvider)) || aIID.Equals(NS_GET_IID(nsISecureBrowserUI))) { if (mTabParent) { return mTabParent->QueryInterface(aIID, result); } } // Only support nsIAuthPromptProvider in Content process if (XRE_IsParentProcess() && aIID.Equals(NS_GET_IID(nsIAuthPromptProvider))) { *result = nullptr; return NS_OK; } // Only support nsILoadContext if child channel's callbacks did too if (aIID.Equals(NS_GET_IID(nsILoadContext)) && mLoadContext) { nsCOMPtr copy = mLoadContext; copy.forget(result); return NS_OK; } if (mTabParent && aIID.Equals(NS_GET_IID(nsIPrompt))) { nsCOMPtr frameElement = mTabParent->GetOwnerElement(); if (frameElement) { nsCOMPtr win =frameElement->OwnerDoc()->GetWindow(); NS_ENSURE_TRUE(win, NS_ERROR_UNEXPECTED); nsresult rv; nsCOMPtr wwatch = do_GetService(NS_WINDOWWATCHER_CONTRACTID, &rv); if (NS_WARN_IF(!NS_SUCCEEDED(rv))) { return rv; } nsCOMPtr prompt; rv = wwatch->GetNewPrompter(win, getter_AddRefs(prompt)); if (NS_WARN_IF(!NS_SUCCEEDED(rv))) { return rv; } prompt.forget(result); return NS_OK; } } return QueryInterface(aIID, result); } //----------------------------------------------------------------------------- // HttpChannelParent::PHttpChannelParent //----------------------------------------------------------------------------- void HttpChannelParent::AsyncOpenFailed(nsresult aRv) { MOZ_ASSERT(NS_IsMainThread()); MOZ_ASSERT(NS_FAILED(aRv)); // Break the reference cycle among HttpChannelParent, // HttpChannelParentListener, and nsHttpChannel to avoid memory leakage. mChannel = nullptr; mParentListener = nullptr; if (!mIPCClosed) { Unused << SendFailedAsyncOpen(aRv); } } void HttpChannelParent::InvokeAsyncOpen(nsresult rv) { LOG(("HttpChannelParent::InvokeAsyncOpen [this=%p rv=%" PRIx32 "]\n", this, static_cast(rv))); MOZ_ASSERT(NS_IsMainThread()); if (NS_FAILED(rv)) { AsyncOpenFailed(rv); return; } nsCOMPtr loadInfo; rv = mChannel->GetLoadInfo(getter_AddRefs(loadInfo)); if (NS_FAILED(rv)) { AsyncOpenFailed(rv); return; } if (loadInfo && loadInfo->GetEnforceSecurity()) { rv = mChannel->AsyncOpen2(mParentListener); } else { rv = mChannel->AsyncOpen(mParentListener, nullptr); } if (NS_FAILED(rv)) { AsyncOpenFailed(rv); } } namespace { class InvokeAsyncOpen : public Runnable { nsMainThreadPtrHandle mChannel; nsresult mStatus; public: InvokeAsyncOpen(const nsMainThreadPtrHandle& aChannel, nsresult aStatus) : Runnable("net::InvokeAsyncOpen") , mChannel(aChannel) , mStatus(aStatus) { } NS_IMETHOD Run() { RefPtr channel = do_QueryObject(mChannel.get()); channel->TryInvokeAsyncOpen(mStatus); return NS_OK; } }; struct UploadStreamClosure { nsMainThreadPtrHandle mChannel; explicit UploadStreamClosure(const nsMainThreadPtrHandle& aChannel) : mChannel(aChannel) { } }; void UploadCopyComplete(void* aClosure, nsresult aStatus) { // Called on the Stream Transport Service thread by NS_AsyncCopy MOZ_ASSERT(!NS_IsMainThread()); UniquePtr closure(static_cast(aClosure)); nsCOMPtr event = new InvokeAsyncOpen(closure->mChannel, aStatus); NS_DispatchToMainThread(event); } } // anonymous namespace bool HttpChannelParent::DoAsyncOpen( const URIParams& aURI, const OptionalURIParams& aOriginalURI, const OptionalURIParams& aDocURI, const OptionalURIParams& aReferrerURI, const uint32_t& aReferrerPolicy, const OptionalURIParams& aAPIRedirectToURI, const OptionalURIParams& aTopWindowURI, const uint32_t& aLoadFlags, const RequestHeaderTuples& requestHeaders, const nsCString& requestMethod, const OptionalIPCStream& uploadStream, const bool& uploadStreamHasHeaders, const int16_t& priority, const uint32_t& classOfService, const uint8_t& redirectionLimit, const bool& allowSTS, const uint32_t& thirdPartyFlags, const bool& doResumeAt, const uint64_t& startPos, const nsCString& entityID, const bool& chooseApplicationCache, const nsCString& appCacheClientID, const bool& allowSpdy, const bool& allowAltSvc, const bool& beConservative, const uint32_t& tlsFlags, const OptionalLoadInfoArgs& aLoadInfoArgs, const OptionalHttpResponseHead& aSynthesizedResponseHead, const nsCString& aSecurityInfoSerialization, const uint32_t& aCacheKey, const uint64_t& aRequestContextID, const OptionalCorsPreflightArgs& aCorsPreflightArgs, const uint32_t& aInitialRwin, const bool& aBlockAuthPrompt, const bool& aSuspendAfterSynthesizeResponse, const bool& aAllowStaleCacheContent, const nsCString& aContentTypeHint, const uint64_t& aChannelId, const uint64_t& aContentWindowId, const nsCString& aPreferredAlternativeType, const uint64_t& aTopLevelOuterContentWindowId, const TimeStamp& aLaunchServiceWorkerStart, const TimeStamp& aLaunchServiceWorkerEnd, const TimeStamp& aDispatchFetchEventStart, const TimeStamp& aDispatchFetchEventEnd, const TimeStamp& aHandleFetchEventStart, const TimeStamp& aHandleFetchEventEnd, const bool& aForceMainDocumentChannel) { nsCOMPtr uri = DeserializeURI(aURI); if (!uri) { // URIParams does MOZ_ASSERT if null, but we need to protect opt builds from // null deref here. return false; } nsCOMPtr originalUri = DeserializeURI(aOriginalURI); nsCOMPtr docUri = DeserializeURI(aDocURI); nsCOMPtr referrerUri = DeserializeURI(aReferrerURI); nsCOMPtr apiRedirectToUri = DeserializeURI(aAPIRedirectToURI); nsCOMPtr topWindowUri = DeserializeURI(aTopWindowURI); LOG(("HttpChannelParent RecvAsyncOpen [this=%p uri=%s, gid=%" PRIu64 " topwinid=%" PRIx64 "]\n", this, uri->GetSpecOrDefault().get(), aChannelId, aTopLevelOuterContentWindowId)); nsresult rv; nsCOMPtr ios(do_GetIOService(&rv)); if (NS_FAILED(rv)) return SendFailedAsyncOpen(rv); nsCOMPtr loadInfo; rv = mozilla::ipc::LoadInfoArgsToLoadInfo(aLoadInfoArgs, getter_AddRefs(loadInfo)); if (NS_FAILED(rv)) { return SendFailedAsyncOpen(rv); } if (!loadInfo) { return SendFailedAsyncOpen(NS_ERROR_UNEXPECTED); } nsCOMPtr channel; rv = NS_NewChannelInternal(getter_AddRefs(channel), uri, loadInfo, nullptr, nullptr, aLoadFlags, ios); if (NS_FAILED(rv)) { return SendFailedAsyncOpen(rv); } RefPtr httpChannel = do_QueryObject(channel, &rv); if (NS_FAILED(rv)) { return SendFailedAsyncOpen(rv); } // Set the channelId allocated in child to the parent instance httpChannel->SetChannelId(aChannelId); httpChannel->SetTopLevelContentWindowId(aContentWindowId); httpChannel->SetTopLevelOuterContentWindowId(aTopLevelOuterContentWindowId); RefPtr httpChannelImpl = do_QueryObject(httpChannel); if (httpChannelImpl) { httpChannelImpl->SetWarningReporter(this); } httpChannel->SetTimingEnabled(true); if (mPBOverride != kPBOverride_Unset) { httpChannel->SetPrivate(mPBOverride == kPBOverride_Private ? true : false); } if (doResumeAt) httpChannel->ResumeAt(startPos, entityID); if (originalUri) httpChannel->SetOriginalURI(originalUri); if (docUri) httpChannel->SetDocumentURI(docUri); if (referrerUri) { rv = httpChannel->SetReferrerWithPolicyInternal(referrerUri, aReferrerPolicy); MOZ_ASSERT(NS_SUCCEEDED(rv)); } if (apiRedirectToUri) httpChannel->RedirectTo(apiRedirectToUri); if (topWindowUri) { rv = httpChannel->SetTopWindowURI(topWindowUri); MOZ_ASSERT(NS_SUCCEEDED(rv)); } if (aLoadFlags != nsIRequest::LOAD_NORMAL) httpChannel->SetLoadFlags(aLoadFlags); if (aForceMainDocumentChannel) { httpChannel->SetIsMainDocumentChannel(true); } for (uint32_t i = 0; i < requestHeaders.Length(); i++) { if (requestHeaders[i].mEmpty) { httpChannel->SetEmptyRequestHeader(requestHeaders[i].mHeader); } else { httpChannel->SetRequestHeader(requestHeaders[i].mHeader, requestHeaders[i].mValue, requestHeaders[i].mMerge); } } RefPtr parentListener = new HttpChannelParentListener(this); httpChannel->SetRequestMethod(nsDependentCString(requestMethod.get())); if (aCorsPreflightArgs.type() == OptionalCorsPreflightArgs::TCorsPreflightArgs) { const CorsPreflightArgs& args = aCorsPreflightArgs.get_CorsPreflightArgs(); httpChannel->SetCorsPreflightParameters(args.unsafeHeaders()); } nsCOMPtr stream = DeserializeIPCStream(uploadStream); if (stream) { // FIXME: The fast path of using the existing stream currently only applies to streams // that have had their entire contents serialized from the child at this point. // Once bug 1294446 and bug 1294450 are fixed it is worth revisiting this heuristic. nsCOMPtr completeStream = do_QueryInterface(stream); if (!completeStream) { // Wait for completion of async copying IPC upload stream to a local input stream. ++mAsyncOpenBarrier; // buffer size matches PChildToParentStream transfer size. const uint32_t kBufferSize = 32768; nsCOMPtr storageStream; nsresult rv = NS_NewStorageStream(kBufferSize, UINT32_MAX, getter_AddRefs(storageStream)); if (NS_WARN_IF(NS_FAILED(rv))) { return SendFailedAsyncOpen(rv); } nsCOMPtr newUploadStream; rv = storageStream->NewInputStream(0, getter_AddRefs(newUploadStream)); if (NS_WARN_IF(NS_FAILED(rv))) { return SendFailedAsyncOpen(rv); } nsCOMPtr sink; rv = storageStream->GetOutputStream(0, getter_AddRefs(sink)); if (NS_WARN_IF(NS_FAILED(rv))) { return SendFailedAsyncOpen(rv); } nsCOMPtr target = do_GetService(NS_STREAMTRANSPORTSERVICE_CONTRACTID, &rv); if (NS_FAILED(rv) || !target) { return SendFailedAsyncOpen(rv); } nsCOMPtr iir = static_cast(this); nsMainThreadPtrHandle handle = nsMainThreadPtrHandle( new nsMainThreadPtrHolder( "nsIInterfaceRequestor", iir)); UniquePtr closure(new UploadStreamClosure(handle)); // Accumulate the stream contents as the child sends it. We will continue with // the AsyncOpen process once the full stream has been received. rv = NS_AsyncCopy(stream, sink, target, NS_ASYNCCOPY_VIA_READSEGMENTS, kBufferSize, // copy segment size UploadCopyComplete, closure.release()); if (NS_WARN_IF(NS_FAILED(rv))) { return SendFailedAsyncOpen(rv); } httpChannel->InternalSetUploadStream(newUploadStream); } else { httpChannel->InternalSetUploadStream(stream); } httpChannel->SetUploadStreamHasHeaders(uploadStreamHasHeaders); } if (aSynthesizedResponseHead.type() == OptionalHttpResponseHead::TnsHttpResponseHead) { parentListener->SetupInterception(aSynthesizedResponseHead.get_nsHttpResponseHead()); mWillSynthesizeResponse = true; httpChannelImpl->SetCouldBeSynthesized(); if (!aSecurityInfoSerialization.IsEmpty()) { nsCOMPtr secInfo; NS_DeserializeObject(aSecurityInfoSerialization, getter_AddRefs(secInfo)); rv = httpChannel->OverrideSecurityInfo(secInfo); MOZ_ASSERT(NS_SUCCEEDED(rv)); } } else { nsLoadFlags newLoadFlags; httpChannel->GetLoadFlags(&newLoadFlags); newLoadFlags |= nsIChannel::LOAD_BYPASS_SERVICE_WORKER; httpChannel->SetLoadFlags(newLoadFlags); } nsCOMPtr cacheKey = do_CreateInstance(NS_SUPPORTS_PRUINT32_CONTRACTID, &rv); if (NS_FAILED(rv)) { return SendFailedAsyncOpen(rv); } rv = cacheKey->SetData(aCacheKey); if (NS_FAILED(rv)) { return SendFailedAsyncOpen(rv); } nsCOMPtr cacheChannel = do_QueryInterface(static_cast(httpChannel.get())); if (cacheChannel) { cacheChannel->SetCacheKey(cacheKey); cacheChannel->PreferAlternativeDataType(aPreferredAlternativeType); cacheChannel->SetAllowStaleCacheContent(aAllowStaleCacheContent); } httpChannel->SetContentType(aContentTypeHint); if (priority != nsISupportsPriority::PRIORITY_NORMAL) { httpChannel->SetPriority(priority); } if (classOfService) { httpChannel->SetClassFlags(classOfService); } httpChannel->SetRedirectionLimit(redirectionLimit); httpChannel->SetAllowSTS(allowSTS); httpChannel->SetThirdPartyFlags(thirdPartyFlags); httpChannel->SetAllowSpdy(allowSpdy); httpChannel->SetAllowAltSvc(allowAltSvc); httpChannel->SetBeConservative(beConservative); httpChannel->SetTlsFlags(tlsFlags); httpChannel->SetInitialRwin(aInitialRwin); httpChannel->SetBlockAuthPrompt(aBlockAuthPrompt); httpChannel->SetLaunchServiceWorkerStart(aLaunchServiceWorkerStart); httpChannel->SetLaunchServiceWorkerEnd(aLaunchServiceWorkerEnd); httpChannel->SetDispatchFetchEventStart(aDispatchFetchEventStart); httpChannel->SetDispatchFetchEventEnd(aDispatchFetchEventEnd); httpChannel->SetHandleFetchEventStart(aHandleFetchEventStart); httpChannel->SetHandleFetchEventEnd(aHandleFetchEventEnd); nsCOMPtr appCacheChan = do_QueryObject(httpChannel); nsCOMPtr appCacheService = do_GetService(NS_APPLICATIONCACHESERVICE_CONTRACTID); bool setChooseApplicationCache = chooseApplicationCache; if (appCacheChan && appCacheService) { // We might potentially want to drop this flag (that is TRUE by default) // after we successfully associate the channel with an application cache // reported by the channel child. Dropping it here may be too early. appCacheChan->SetInheritApplicationCache(false); if (!appCacheClientID.IsEmpty()) { nsCOMPtr appCache; rv = appCacheService->GetApplicationCache(appCacheClientID, getter_AddRefs(appCache)); if (NS_SUCCEEDED(rv)) { appCacheChan->SetApplicationCache(appCache); setChooseApplicationCache = false; } } if (setChooseApplicationCache) { OriginAttributes attrs; NS_GetOriginAttributes(httpChannel, attrs); nsCOMPtr principal = BasePrincipal::CreateCodebasePrincipal(uri, attrs); bool chooseAppCache = false; // This works because we've already called SetNotificationCallbacks and // done mPBOverride logic by this point. chooseAppCache = NS_ShouldCheckAppCache(principal); appCacheChan->SetChooseApplicationCache(chooseAppCache); } } httpChannel->SetRequestContextID(aRequestContextID); // Store the strong reference of channel and parent listener object until // all the initialization procedure is complete without failure, to remove // cycle reference in fail case and to avoid memory leakage. mChannel = httpChannel.forget(); mParentListener = parentListener.forget(); mChannel->SetNotificationCallbacks(mParentListener); mSuspendAfterSynthesizeResponse = aSuspendAfterSynthesizeResponse; MOZ_ASSERT(!mBgParent); MOZ_ASSERT(mPromise.IsEmpty()); // Wait for HttpBackgrounChannel to continue the async open procedure. ++mAsyncOpenBarrier; RefPtr promise = WaitForBgParent(); RefPtr self = this; promise->Then(GetMainThreadSerialEventTarget(), __func__, [self]() { self->mRequest.Complete(); self->TryInvokeAsyncOpen(NS_OK); }, [self](nsresult aStatus) { self->mRequest.Complete(); self->TryInvokeAsyncOpen(aStatus); }) ->Track(mRequest); return true; } already_AddRefed HttpChannelParent::WaitForBgParent() { LOG(("HttpChannelParent::WaitForBgParent [this=%p]\n", this)); MOZ_ASSERT(!mBgParent); MOZ_ASSERT(mChannel); nsCOMPtr registrar = do_GetService(NS_BACKGROUNDCHANNELREGISTRAR_CONTRACTID); MOZ_ASSERT(registrar); registrar->LinkHttpChannel(mChannel->ChannelId(), this); if (mBgParent) { already_AddRefed promise = mPromise.Ensure(__func__); // resolve promise immediatedly if bg channel is ready. mPromise.Resolve(true, __func__); return promise; } return mPromise.Ensure(__func__);; } bool HttpChannelParent::ConnectChannel(const uint32_t& registrarId, const bool& shouldIntercept) { nsresult rv; LOG(("HttpChannelParent::ConnectChannel: Looking for a registered channel " "[this=%p, id=%" PRIu32 "]\n", this, registrarId)); nsCOMPtr channel; rv = NS_LinkRedirectChannels(registrarId, this, getter_AddRefs(channel)); if (NS_FAILED(rv)) { NS_ERROR("Could not find the http channel to connect its IPC parent"); // This makes the channel delete itself safely. It's the only thing // we can do now, since this parent channel cannot be used and there is // no other way to tell the child side there were something wrong. Delete(); return true; } LOG((" found channel %p, rv=%08" PRIx32, channel.get(), static_cast(rv))); mChannel = do_QueryObject(channel); if (!mChannel) { LOG((" but it's not HttpBaseChannel")); Delete(); return true; } LOG((" and it is HttpBaseChannel %p", mChannel.get())); RefPtr httpChannelImpl = do_QueryObject(mChannel); if (httpChannelImpl) { httpChannelImpl->SetWarningReporter(this); } nsCOMPtr controller; NS_QueryNotificationCallbacks(channel, controller); RefPtr parentListener = do_QueryObject(controller); MOZ_ASSERT(parentListener); parentListener->SetupInterceptionAfterRedirect(shouldIntercept); if (mPBOverride != kPBOverride_Unset) { // redirected-to channel may not support PB nsCOMPtr pbChannel = do_QueryObject(mChannel); if (pbChannel) { pbChannel->SetPrivate(mPBOverride == kPBOverride_Private ? true : false); } } MOZ_ASSERT(!mBgParent); MOZ_ASSERT(mPromise.IsEmpty()); // Waiting for background channel RefPtr promise = WaitForBgParent(); RefPtr self = this; promise->Then(GetMainThreadSerialEventTarget(), __func__, [self]() { self->mRequest.Complete(); }, [self](const nsresult& aResult) { NS_ERROR("failed to establish the background channel"); self->mRequest.Complete(); }) ->Track(mRequest); return true; } mozilla::ipc::IPCResult HttpChannelParent::RecvSetPriority(const int16_t& priority) { LOG(("HttpChannelParent::RecvSetPriority [this=%p, priority=%d]\n", this, priority)); if (mChannel) { mChannel->SetPriority(priority); } nsCOMPtr priorityRedirectChannel = do_QueryInterface(mRedirectChannel); if (priorityRedirectChannel) priorityRedirectChannel->SetPriority(priority); return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvSetClassOfService(const uint32_t& cos) { if (mChannel) { mChannel->SetClassFlags(cos); } return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvSuspend() { LOG(("HttpChannelParent::RecvSuspend [this=%p]\n", this)); if (mChannel) { mChannel->Suspend(); } return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvResume() { LOG(("HttpChannelParent::RecvResume [this=%p]\n", this)); if (mChannel) { mChannel->Resume(); } return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvCancel(const nsresult& status) { LOG(("HttpChannelParent::RecvCancel [this=%p]\n", this)); // May receive cancel before channel has been constructed! if (mChannel) { mChannel->Cancel(status); } return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvSetCacheTokenCachedCharset(const nsCString& charset) { if (mCacheEntry) mCacheEntry->SetMetaDataElement("charset", charset.get()); return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvUpdateAssociatedContentSecurity(const int32_t& broken, const int32_t& no) { if (mAssociatedContentSecurity) { mAssociatedContentSecurity->SetCountSubRequestsBrokenSecurity(broken); mAssociatedContentSecurity->SetCountSubRequestsNoSecurity(no); } return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvRedirect2Verify(const nsresult& result, const RequestHeaderTuples& changedHeaders, const uint32_t& loadFlags, const uint32_t& referrerPolicy, const OptionalURIParams& aReferrerURI, const OptionalURIParams& aAPIRedirectURI, const OptionalCorsPreflightArgs& aCorsPreflightArgs, const bool& aForceHSTSPriming, const bool& aMixedContentWouldBlock, const bool& aChooseAppcache) { LOG(("HttpChannelParent::RecvRedirect2Verify [this=%p result=%" PRIx32 "]\n", this, static_cast(result))); nsresult rv; if (NS_SUCCEEDED(result)) { nsCOMPtr newHttpChannel = do_QueryInterface(mRedirectChannel); if (newHttpChannel) { nsCOMPtr apiRedirectUri = DeserializeURI(aAPIRedirectURI); if (apiRedirectUri) { rv = newHttpChannel->RedirectTo(apiRedirectUri); MOZ_ASSERT(NS_SUCCEEDED(rv)); } for (uint32_t i = 0; i < changedHeaders.Length(); i++) { if (changedHeaders[i].mEmpty) { rv = newHttpChannel->SetEmptyRequestHeader(changedHeaders[i].mHeader); } else { rv = newHttpChannel->SetRequestHeader(changedHeaders[i].mHeader, changedHeaders[i].mValue, changedHeaders[i].mMerge); } MOZ_ASSERT(NS_SUCCEEDED(rv)); } // A successfully redirected channel must have the LOAD_REPLACE flag. MOZ_ASSERT(loadFlags & nsIChannel::LOAD_REPLACE); if (loadFlags & nsIChannel::LOAD_REPLACE) { newHttpChannel->SetLoadFlags(loadFlags); } if (aCorsPreflightArgs.type() == OptionalCorsPreflightArgs::TCorsPreflightArgs) { nsCOMPtr newInternalChannel = do_QueryInterface(newHttpChannel); MOZ_RELEASE_ASSERT(newInternalChannel); const CorsPreflightArgs& args = aCorsPreflightArgs.get_CorsPreflightArgs(); newInternalChannel->SetCorsPreflightParameters(args.unsafeHeaders()); } if (aForceHSTSPriming) { nsCOMPtr newLoadInfo; rv = newHttpChannel->GetLoadInfo(getter_AddRefs(newLoadInfo)); if (NS_SUCCEEDED(rv) && newLoadInfo) { newLoadInfo->SetHSTSPriming(aMixedContentWouldBlock); } } nsCOMPtr referrerUri = DeserializeURI(aReferrerURI); rv = newHttpChannel->SetReferrerWithPolicy(referrerUri, referrerPolicy); MOZ_ASSERT(NS_SUCCEEDED(rv)); nsCOMPtr appCacheChannel = do_QueryInterface(newHttpChannel); if (appCacheChannel) { appCacheChannel->SetChooseApplicationCache(aChooseAppcache); } } } // Continue the verification procedure if child has veto the redirection. if (NS_FAILED(result)) { ContinueRedirect2Verify(result); return IPC_OK(); } // Wait for background channel ready on target channel nsCOMPtr redirectReg = do_GetService(NS_REDIRECTCHANNELREGISTRAR_CONTRACTID); MOZ_ASSERT(redirectReg); nsCOMPtr redirectParentChannel; rv = redirectReg->GetParentChannel(mRedirectRegistrarId, getter_AddRefs(redirectParentChannel)); MOZ_ASSERT(redirectParentChannel); if (!redirectParentChannel) { ContinueRedirect2Verify(rv); return IPC_OK(); } nsCOMPtr redirectedParent = do_QueryInterface(redirectParentChannel); if (!redirectedParent) { // Continue verification procedure if redirecting to non-Http protocol ContinueRedirect2Verify(result); return IPC_OK(); } // Ask redirected channel if verification can proceed. // ContinueRedirect2Verify will be invoked when redirected channel is ready. redirectedParent->ContinueVerification(this); return IPC_OK(); } // from nsIParentRedirectingChannel NS_IMETHODIMP HttpChannelParent::ContinueVerification(nsIAsyncVerifyRedirectReadyCallback* aCallback) { LOG(("HttpChannelParent::ContinueVerification [this=%p callback=%p]\n", this, aCallback)); MOZ_ASSERT(NS_IsMainThread()); MOZ_ASSERT(aCallback); // Continue the verification procedure if background channel is ready. if (mBgParent) { aCallback->ReadyToVerify(NS_OK); return NS_OK; } // ConnectChannel must be received before Redirect2Verify. MOZ_ASSERT(!mPromise.IsEmpty()); // Otherwise, wait for the background channel. RefPtr promise = WaitForBgParent(); nsCOMPtr callback = aCallback; promise->Then(GetMainThreadSerialEventTarget(), __func__, [callback]() { callback->ReadyToVerify(NS_OK); }, [callback](const nsresult& aResult) { NS_ERROR("failed to establish the background channel"); callback->ReadyToVerify(aResult); }); return NS_OK; } void HttpChannelParent::ContinueRedirect2Verify(const nsresult& aResult) { LOG(("HttpChannelParent::ContinueRedirect2Verify [this=%p result=%" PRIx32 "]\n", this, static_cast(aResult))); if (!mRedirectCallback) { // This should according the logic never happen, log the situation. if (mReceivedRedirect2Verify) LOG(("RecvRedirect2Verify[%p]: Duplicate fire", this)); if (mSentRedirect1BeginFailed) LOG(("RecvRedirect2Verify[%p]: Send to child failed", this)); if ((mRedirectRegistrarId > 0) && NS_FAILED(aResult)) LOG(("RecvRedirect2Verify[%p]: Redirect failed", this)); if ((mRedirectRegistrarId > 0) && NS_SUCCEEDED(aResult)) LOG(("RecvRedirect2Verify[%p]: Redirect succeeded", this)); if (!mRedirectChannel) LOG(("RecvRedirect2Verify[%p]: Missing redirect channel", this)); NS_ERROR("Unexpcted call to HttpChannelParent::RecvRedirect2Verify, " "mRedirectCallback null"); } mReceivedRedirect2Verify = true; if (mRedirectCallback) { LOG(("HttpChannelParent::ContinueRedirect2Verify call OnRedirectVerifyCallback" " [this=%p result=%" PRIx32 ", mRedirectCallback=%p]\n", this, static_cast(aResult), mRedirectCallback.get())); mRedirectCallback->OnRedirectVerifyCallback(aResult); mRedirectCallback = nullptr; } } mozilla::ipc::IPCResult HttpChannelParent::RecvDocumentChannelCleanup(const bool& clearCacheEntry) { // From now on only using mAssociatedContentSecurity. Free everything else. CleanupBackgroundChannel(); // Background channel can be closed. mChannel = nullptr; // Reclaim some memory sooner. if (clearCacheEntry) { mCacheEntry = nullptr; // Else we'll block other channels reading same URI } return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvMarkOfflineCacheEntryAsForeign() { if (mOfflineForeignMarker) { mOfflineForeignMarker->MarkAsForeign(); mOfflineForeignMarker = 0; } return IPC_OK(); } class DivertDataAvailableEvent : public MainThreadChannelEvent { public: DivertDataAvailableEvent(HttpChannelParent* aParent, const nsCString& data, const uint64_t& offset, const uint32_t& count) : mParent(aParent) , mData(data) , mOffset(offset) , mCount(count) { } void Run() { mParent->DivertOnDataAvailable(mData, mOffset, mCount); } private: HttpChannelParent* mParent; nsCString mData; uint64_t mOffset; uint32_t mCount; }; mozilla::ipc::IPCResult HttpChannelParent::RecvDivertOnDataAvailable(const nsCString& data, const uint64_t& offset, const uint32_t& count) { LOG(("HttpChannelParent::RecvDivertOnDataAvailable [this=%p]\n", this)); MOZ_ASSERT(mParentListener); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot RecvDivertOnDataAvailable if diverting is not set!"); FailDiversion(NS_ERROR_UNEXPECTED); return IPC_FAIL_NO_REASON(this); } // Drop OnDataAvailables if the parent was canceled already. if (NS_FAILED(mStatus)) { return IPC_OK(); } mEventQ->RunOrEnqueue(new DivertDataAvailableEvent(this, data, offset, count)); return IPC_OK(); } void HttpChannelParent::DivertOnDataAvailable(const nsCString& data, const uint64_t& offset, const uint32_t& count) { LOG(("HttpChannelParent::DivertOnDataAvailable [this=%p]\n", this)); MOZ_ASSERT(mParentListener); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot DivertOnDataAvailable if diverting is not set!"); FailDiversion(NS_ERROR_UNEXPECTED); return; } // Drop OnDataAvailables if the parent was canceled already. if (NS_FAILED(mStatus)) { return; } nsCOMPtr stringStream; nsresult rv = NS_NewByteInputStream(getter_AddRefs(stringStream), data.get(), count, NS_ASSIGNMENT_DEPEND); if (NS_FAILED(rv)) { if (mChannel) { mChannel->Cancel(rv); } mStatus = rv; return; } AutoEventEnqueuer ensureSerialDispatch(mEventQ); rv = mParentListener->OnDataAvailable(mChannel, nullptr, stringStream, offset, count); stringStream->Close(); if (NS_FAILED(rv)) { if (mChannel) { mChannel->Cancel(rv); } mStatus = rv; } } class DivertStopRequestEvent : public MainThreadChannelEvent { public: DivertStopRequestEvent(HttpChannelParent* aParent, const nsresult& statusCode) : mParent(aParent) , mStatusCode(statusCode) { } void Run() { mParent->DivertOnStopRequest(mStatusCode); } private: HttpChannelParent* mParent; nsresult mStatusCode; }; mozilla::ipc::IPCResult HttpChannelParent::RecvDivertOnStopRequest(const nsresult& statusCode) { LOG(("HttpChannelParent::RecvDivertOnStopRequest [this=%p]\n", this)); MOZ_ASSERT(mParentListener); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot RecvDivertOnStopRequest if diverting is not set!"); FailDiversion(NS_ERROR_UNEXPECTED); return IPC_FAIL_NO_REASON(this); } mEventQ->RunOrEnqueue(new DivertStopRequestEvent(this, statusCode)); return IPC_OK(); } void HttpChannelParent::DivertOnStopRequest(const nsresult& statusCode) { LOG(("HttpChannelParent::DivertOnStopRequest [this=%p]\n", this)); MOZ_ASSERT(mParentListener); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot DivertOnStopRequest if diverting is not set!"); FailDiversion(NS_ERROR_UNEXPECTED); return; } // Honor the channel's status even if the underlying transaction completed. nsresult status = NS_FAILED(mStatus) ? mStatus : statusCode; // Reset fake pending status in case OnStopRequest has already been called. if (mChannel) { mChannel->ForcePending(false); } AutoEventEnqueuer ensureSerialDispatch(mEventQ); mParentListener->OnStopRequest(mChannel, nullptr, status); } class DivertCompleteEvent : public MainThreadChannelEvent { public: explicit DivertCompleteEvent(HttpChannelParent* aParent) : mParent(aParent) { } void Run() { mParent->DivertComplete(); } private: HttpChannelParent* mParent; }; mozilla::ipc::IPCResult HttpChannelParent::RecvDivertComplete() { LOG(("HttpChannelParent::RecvDivertComplete [this=%p]\n", this)); MOZ_ASSERT(mParentListener); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot RecvDivertComplete if diverting is not set!"); FailDiversion(NS_ERROR_UNEXPECTED); return IPC_FAIL_NO_REASON(this); } mEventQ->RunOrEnqueue(new DivertCompleteEvent(this)); return IPC_OK(); } void HttpChannelParent::DivertComplete() { LOG(("HttpChannelParent::DivertComplete [this=%p]\n", this)); MOZ_ASSERT(mParentListener); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot DivertComplete if diverting is not set!"); FailDiversion(NS_ERROR_UNEXPECTED); return; } nsresult rv = ResumeForDiversion(); if (NS_WARN_IF(NS_FAILED(rv))) { FailDiversion(NS_ERROR_UNEXPECTED); return; } mParentListener = nullptr; } void HttpChannelParent::MaybeFlushPendingDiversion() { if (!mPendingDiversion) { return; } mPendingDiversion = false; nsresult rv = SuspendForDiversion(); if (NS_WARN_IF(NS_FAILED(rv))) { return; } if (mDivertListener) { DivertTo(mDivertListener); } } void HttpChannelParent::ResponseSynthesized() { // Suspend now even though the FinishSynthesizeResponse runnable has // not executed. We want to suspend after we get far enough to trigger // the synthesis, but not actually allow the nsHttpChannel to trigger // any OnStartRequests(). if (mSuspendAfterSynthesizeResponse) { mChannel->Suspend(); } mWillSynthesizeResponse = false; MaybeFlushPendingDiversion(); } mozilla::ipc::IPCResult HttpChannelParent::RecvRemoveCorsPreflightCacheEntry(const URIParams& uri, const mozilla::ipc::PrincipalInfo& requestingPrincipal) { nsCOMPtr deserializedURI = DeserializeURI(uri); if (!deserializedURI) { return IPC_FAIL_NO_REASON(this); } nsCOMPtr principal = PrincipalInfoToPrincipal(requestingPrincipal); if (!principal) { return IPC_FAIL_NO_REASON(this); } nsCORSListenerProxy::RemoveFromCorsPreflightCache(deserializedURI, principal); return IPC_OK(); } //----------------------------------------------------------------------------- // HttpChannelParent::nsIRequestObserver //----------------------------------------------------------------------------- NS_IMETHODIMP HttpChannelParent::OnStartRequest(nsIRequest *aRequest, nsISupports *aContext) { LOG(("HttpChannelParent::OnStartRequest [this=%p, aRequest=%p]\n", this, aRequest)); MOZ_ASSERT(NS_IsMainThread()); MOZ_RELEASE_ASSERT(!mDivertingFromChild, "Cannot call OnStartRequest if diverting is set!"); RefPtr chan = do_QueryObject(aRequest); if (!chan) { LOG((" aRequest is not HttpBaseChannel")); NS_ERROR("Expecting only HttpBaseChannel as aRequest in HttpChannelParent::OnStartRequest"); return NS_ERROR_UNEXPECTED; } MOZ_ASSERT(mChannel == chan, "HttpChannelParent getting OnStartRequest from a different HttpBaseChannel instance"); // Send down any permissions which are relevant to this URL if we are // performing a document load. We can't do that if mIPCClosed is set. if (!mIPCClosed) { PContentParent* pcp = Manager()->Manager(); MOZ_ASSERT(pcp, "We should have a manager if our IPC isn't closed"); DebugOnly rv = static_cast(pcp)->AboutToLoadHttpFtpWyciwygDocumentForChild(chan); MOZ_ASSERT(NS_SUCCEEDED(rv)); } nsHttpResponseHead *responseHead = chan->GetResponseHead(); nsHttpRequestHead *requestHead = chan->GetRequestHead(); bool isFromCache = false; uint64_t cacheEntryId = 0; int32_t fetchCount = 0; uint32_t expirationTime = nsICacheEntry::NO_EXPIRATION_TIME; nsCString cachedCharset; RefPtr httpChannelImpl = do_QueryObject(chan); if (httpChannelImpl) { httpChannelImpl->IsFromCache(&isFromCache); httpChannelImpl->GetCacheEntryId(&cacheEntryId); httpChannelImpl->GetCacheTokenFetchCount(&fetchCount); httpChannelImpl->GetCacheTokenExpirationTime(&expirationTime); httpChannelImpl->GetCacheTokenCachedCharset(cachedCharset); } bool loadedFromApplicationCache = false; if (httpChannelImpl) { httpChannelImpl->GetLoadedFromApplicationCache(&loadedFromApplicationCache); if (loadedFromApplicationCache) { mOfflineForeignMarker = httpChannelImpl->GetOfflineCacheEntryAsForeignMarker(); nsCOMPtr appCache; httpChannelImpl->GetApplicationCache(getter_AddRefs(appCache)); nsCString appCacheGroupId; nsCString appCacheClientId; appCache->GetGroupID(appCacheGroupId); appCache->GetClientID(appCacheClientId); if (mIPCClosed || !SendAssociateApplicationCache(appCacheGroupId, appCacheClientId)) { return NS_ERROR_UNEXPECTED; } } } nsCOMPtr encodedChannel = do_QueryInterface(aRequest); if (encodedChannel) encodedChannel->SetApplyConversion(false); // Keep the cache entry for future use in RecvSetCacheTokenCachedCharset(). // It could be already released by nsHttpChannel at that time. nsCOMPtr cacheEntry; nsresult channelStatus = NS_OK; uint32_t cacheKeyValue = 0; nsAutoCString altDataType; if (httpChannelImpl) { httpChannelImpl->GetCacheToken(getter_AddRefs(cacheEntry)); mCacheEntry = do_QueryInterface(cacheEntry); httpChannelImpl->GetStatus(&channelStatus); nsCOMPtr cacheKey; httpChannelImpl->GetCacheKey(getter_AddRefs(cacheKey)); if (cacheKey) { nsCOMPtr container = do_QueryInterface(cacheKey); if (!container) { return NS_ERROR_ILLEGAL_VALUE; } nsresult rv = container->GetData(&cacheKeyValue); if (NS_FAILED(rv)) { return rv; } } httpChannelImpl->GetAlternativeDataType(altDataType); } nsCString secInfoSerialization; UpdateAndSerializeSecurityInfo(secInfoSerialization); uint8_t redirectCount = 0; chan->GetRedirectCount(&redirectCount); int64_t altDataLen = chan->GetAltDataLength(); // !!! We need to lock headers and please don't forget to unlock them !!! requestHead->Enter(); nsresult rv = NS_OK; if (mIPCClosed || !SendOnStartRequest(channelStatus, responseHead ? *responseHead : nsHttpResponseHead(), !!responseHead, requestHead->Headers(), isFromCache, mCacheEntry ? true : false, cacheEntryId, fetchCount, expirationTime, cachedCharset, secInfoSerialization, chan->GetSelfAddr(), chan->GetPeerAddr(), redirectCount, cacheKeyValue, altDataType, altDataLen)) { rv = NS_ERROR_UNEXPECTED; } requestHead->Exit(); // OnStartRequest is sent to content process successfully. // Notify PHttpBackgroundChannelChild that all following IPC mesasges // should be run after OnStartRequest is handled. if (NS_SUCCEEDED(rv)) { MOZ_ASSERT(mBgParent); if (!mBgParent->OnStartRequestSent()) { rv = NS_ERROR_UNEXPECTED; } } return rv; } NS_IMETHODIMP HttpChannelParent::OnStopRequest(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatusCode) { LOG(("HttpChannelParent::OnStopRequest: [this=%p aRequest=%p status=%" PRIx32 "]\n", this, aRequest, static_cast(aStatusCode))); MOZ_ASSERT(NS_IsMainThread()); MOZ_RELEASE_ASSERT(!mDivertingFromChild, "Cannot call OnStopRequest if diverting is set!"); ResourceTimingStruct timing; mChannel->GetDomainLookupStart(&timing.domainLookupStart); mChannel->GetDomainLookupEnd(&timing.domainLookupEnd); mChannel->GetConnectStart(&timing.connectStart); mChannel->GetTcpConnectEnd(&timing.tcpConnectEnd); mChannel->GetSecureConnectionStart(&timing.secureConnectionStart); mChannel->GetConnectEnd(&timing.connectEnd); mChannel->GetRequestStart(&timing.requestStart); mChannel->GetResponseStart(&timing.responseStart); mChannel->GetResponseEnd(&timing.responseEnd); mChannel->GetAsyncOpen(&timing.fetchStart); mChannel->GetRedirectStart(&timing.redirectStart); mChannel->GetRedirectEnd(&timing.redirectEnd); mChannel->GetTransferSize(&timing.transferSize); mChannel->GetEncodedBodySize(&timing.encodedBodySize); // decodedBodySize can be computed in the child process so it doesn't need // to be passed down. mChannel->GetProtocolVersion(timing.protocolVersion); mChannel->GetCacheReadStart(&timing.cacheReadStart); mChannel->GetCacheReadEnd(&timing.cacheReadEnd); RefPtr httpChannelImpl = do_QueryObject(mChannel); if (httpChannelImpl) { httpChannelImpl->SetWarningReporter(nullptr); } // Either IPC channel is closed or background channel // is ready to send OnStopRequest. MOZ_ASSERT(mIPCClosed || mBgParent); if (mIPCClosed || !mBgParent || !mBgParent->OnStopRequest(aStatusCode, timing)) { return NS_ERROR_UNEXPECTED; } return NS_OK; } //----------------------------------------------------------------------------- // HttpChannelParent::nsIStreamListener //----------------------------------------------------------------------------- NS_IMETHODIMP HttpChannelParent::OnDataAvailable(nsIRequest *aRequest, nsISupports *aContext, nsIInputStream *aInputStream, uint64_t aOffset, uint32_t aCount) { LOG(("HttpChannelParent::OnDataAvailable [this=%p aRequest=%p offset=%" PRIu64 " count=%" PRIu32 "]\n", this, aRequest, aOffset, aCount)); MOZ_ASSERT(NS_IsMainThread()); MOZ_RELEASE_ASSERT(!mDivertingFromChild, "Cannot call OnDataAvailable if diverting is set!"); nsresult channelStatus = NS_OK; mChannel->GetStatus(&channelStatus); nsresult transportStatus = NS_NET_STATUS_RECEIVING_FROM; RefPtr httpChannelImpl = do_QueryObject(mChannel); if (httpChannelImpl && httpChannelImpl->IsReadingFromCache()) { transportStatus = NS_NET_STATUS_READING; } static uint32_t const kCopyChunkSize = 128 * 1024; uint32_t toRead = std::min(aCount, kCopyChunkSize); nsCString data; if (!data.SetCapacity(toRead, fallible)) { LOG((" out of memory!")); return NS_ERROR_OUT_OF_MEMORY; } while (aCount) { nsresult rv = NS_ReadInputStreamToString(aInputStream, data, toRead); if (NS_FAILED(rv)) { return rv; } // Either IPC channel is closed or background channel // is ready to send OnTransportAndData. MOZ_ASSERT(mIPCClosed || mBgParent); if (mIPCClosed || !mBgParent || !mBgParent->OnTransportAndData(channelStatus, transportStatus, aOffset, toRead, data)) { return NS_ERROR_UNEXPECTED; } aOffset += toRead; aCount -= toRead; toRead = std::min(aCount, kCopyChunkSize); } return NS_OK; } //----------------------------------------------------------------------------- // HttpChannelParent::nsIProgressEventSink //----------------------------------------------------------------------------- NS_IMETHODIMP HttpChannelParent::OnProgress(nsIRequest *aRequest, nsISupports *aContext, int64_t aProgress, int64_t aProgressMax) { LOG(("HttpChannelParent::OnStatus [this=%p progress=%" PRId64 "max=%" PRId64 "]\n", this, aProgress, aProgressMax)); MOZ_ASSERT(NS_IsMainThread()); // If it indicates this precedes OnDataAvailable, child can derive the value in ODA. if (mIgnoreProgress) { mIgnoreProgress = false; return NS_OK; } // Either IPC channel is closed or background channel // is ready to send OnProgress. MOZ_ASSERT(mIPCClosed || mBgParent); // Send OnProgress events to the child for data upload progress notifications // (i.e. status == NS_NET_STATUS_SENDING_TO) or if the channel has // LOAD_BACKGROUND set. if (mIPCClosed || !mBgParent || !mBgParent->OnProgress(aProgress, aProgressMax)) { return NS_ERROR_UNEXPECTED; } return NS_OK; } NS_IMETHODIMP HttpChannelParent::OnStatus(nsIRequest *aRequest, nsISupports *aContext, nsresult aStatus, const char16_t *aStatusArg) { LOG(("HttpChannelParent::OnStatus [this=%p status=%" PRIx32 "]\n", this, static_cast(aStatus))); MOZ_ASSERT(NS_IsMainThread()); // If this precedes OnDataAvailable, transportStatus will be derived in ODA. if (aStatus == NS_NET_STATUS_RECEIVING_FROM || aStatus == NS_NET_STATUS_READING) { // The transport status and progress generated by ODA will be coalesced // into one IPC message. Therefore, we can ignore the next OnProgress event // since it is generated by ODA as well. mIgnoreProgress = true; return NS_OK; } // Either IPC channel is closed or background channel // is ready to send OnStatus. MOZ_ASSERT(mIPCClosed || mBgParent); // Otherwise, send to child now if (mIPCClosed || !mBgParent || !mBgParent->OnStatus(aStatus)) { return NS_ERROR_UNEXPECTED; } return NS_OK; } //----------------------------------------------------------------------------- // HttpChannelParent::nsIParentChannel //----------------------------------------------------------------------------- NS_IMETHODIMP HttpChannelParent::SetParentListener(HttpChannelParentListener* aListener) { LOG(("HttpChannelParent::SetParentListener [this=%p aListener=%p]\n", this, aListener)); MOZ_ASSERT(aListener); MOZ_ASSERT(!mParentListener, "SetParentListener should only be called for " "new HttpChannelParents after a redirect, when " "mParentListener is null."); mParentListener = aListener; return NS_OK; } NS_IMETHODIMP HttpChannelParent::NotifyTrackingProtectionDisabled() { LOG(("HttpChannelParent::NotifyTrackingProtectionDisabled [this=%p]\n", this)); if (!mIPCClosed) { MOZ_ASSERT(mBgParent); Unused << mBgParent->OnNotifyTrackingProtectionDisabled(); } return NS_OK; } NS_IMETHODIMP HttpChannelParent::SetClassifierMatchedInfo(const nsACString& aList, const nsACString& aProvider, const nsACString& aFullHash) { LOG(("HttpChannelParent::SetClassifierMatchedInfo [this=%p]\n", this)); if (!mIPCClosed) { MOZ_ASSERT(mBgParent); Unused << mBgParent->OnSetClassifierMatchedInfo(aList, aProvider, aFullHash); } return NS_OK; } NS_IMETHODIMP HttpChannelParent::NotifyTrackingResource() { LOG(("HttpChannelParent::NotifyTrackingResource [this=%p]\n", this)); if (!mIPCClosed) { MOZ_ASSERT(mBgParent); Unused << mBgParent->OnNotifyTrackingResource(); } return NS_OK; } NS_IMETHODIMP HttpChannelParent::Delete() { if (!mIPCClosed) Unused << DoSendDeleteSelf(); return NS_OK; } //----------------------------------------------------------------------------- // HttpChannelParent::nsIParentRedirectingChannel //----------------------------------------------------------------------------- NS_IMETHODIMP HttpChannelParent::StartRedirect(uint32_t registrarId, nsIChannel* newChannel, uint32_t redirectFlags, nsIAsyncVerifyRedirectCallback* callback) { nsresult rv; LOG(("HttpChannelParent::StartRedirect [this=%p, registrarId=%" PRIu32 " " "newChannel=%p callback=%p]\n", this, registrarId, newChannel, callback)); if (mIPCClosed) { return NS_BINDING_ABORTED; } // If this is an internal redirect for service worker interception, then // hide it from the child process. The original e10s interception code // was not designed with this in mind and its not necessary to replace // the HttpChannelChild/Parent objects in this case. if (redirectFlags & nsIChannelEventSink::REDIRECT_INTERNAL) { nsCOMPtr newIntercepted = do_QueryInterface(newChannel); if (newIntercepted) { #ifdef DEBUG // Note, InterceptedHttpChannel can also do an internal redirect // for opaque response interception. This should not actually // happen here in e10s mode. nsCOMPtr oldIntercepted = do_QueryInterface(static_cast(mChannel.get())); MOZ_ASSERT(!oldIntercepted); #endif // Re-link the HttpChannelParent to the new InterceptedHttpChannel. nsCOMPtr linkedChannel; rv = NS_LinkRedirectChannels(registrarId, this, getter_AddRefs(linkedChannel)); NS_ENSURE_SUCCESS(rv, rv); MOZ_ASSERT(linkedChannel == newChannel); // We immediately store the InterceptedHttpChannel as our nested // mChannel. None of the redirect IPC messaging takes place. mChannel = do_QueryObject(newChannel); callback->OnRedirectVerifyCallback(NS_OK); return NS_OK; } } // Sending down the original URI, because that is the URI we have // to construct the channel from - this is the URI we've been actually // redirected to. URI of the channel may be an inner channel URI. // URI of the channel will be reconstructed by the protocol handler // on the child process, no need to send it then. nsCOMPtr newOriginalURI; newChannel->GetOriginalURI(getter_AddRefs(newOriginalURI)); URIParams uriParams; SerializeURI(newOriginalURI, uriParams); nsCString secInfoSerialization; UpdateAndSerializeSecurityInfo(secInfoSerialization); // If the channel is a HTTP channel, we also want to inform the child // about the parent's channelId attribute, so that both parent and child // share the same ID. Useful for monitoring channel activity in devtools. uint64_t channelId = 0; nsCOMPtr httpChannel = do_QueryInterface(newChannel); if (httpChannel) { rv = httpChannel->GetChannelId(&channelId); NS_ENSURE_SUCCESS(rv, NS_BINDING_ABORTED); } nsHttpResponseHead *responseHead = mChannel->GetResponseHead(); bool result = false; if (!mIPCClosed) { result = SendRedirect1Begin(registrarId, uriParams, redirectFlags, responseHead ? *responseHead : nsHttpResponseHead(), secInfoSerialization, channelId, mChannel->GetPeerAddr()); } if (!result) { // Bug 621446 investigation mSentRedirect1BeginFailed = true; return NS_BINDING_ABORTED; } // Bug 621446 investigation // Store registrar Id of the new channel to find the redirect // HttpChannelParent later in verification phase. mRedirectRegistrarId = registrarId; // Result is handled in RecvRedirect2Verify above mRedirectChannel = newChannel; mRedirectCallback = callback; return NS_OK; } NS_IMETHODIMP HttpChannelParent::CompleteRedirect(bool succeeded) { LOG(("HttpChannelParent::CompleteRedirect [this=%p succeeded=%d]\n", this, succeeded)); // If this was an internal redirect for a service worker interception then // we will not have a redirecting channel here. Hide this redirect from // the child. if (!mRedirectChannel) { return NS_OK; } if (succeeded && !mIPCClosed) { // TODO: check return value: assume child dead if failed Unused << SendRedirect3Complete(); } mRedirectChannel = nullptr; return NS_OK; } //----------------------------------------------------------------------------- // HttpChannelParent::ADivertableParentChannel //----------------------------------------------------------------------------- nsresult HttpChannelParent::SuspendForDiversion() { LOG(("HttpChannelParent::SuspendForDiversion [this=%p]\n", this)); MOZ_ASSERT(mChannel); MOZ_ASSERT(mParentListener); // If we're in the process of opening a synthesized response, we must wait // to perform the diversion. Some of our diversion listeners clear callbacks // which breaks the synthesis process. if (mWillSynthesizeResponse) { mPendingDiversion = true; return NS_OK; } if (NS_WARN_IF(mDivertingFromChild)) { MOZ_ASSERT(!mDivertingFromChild, "Already suspended for diversion!"); return NS_ERROR_UNEXPECTED; } // MessageDiversionStarted call will suspend mEventQ as many times as the // channel has been suspended, so that channel and this queue are in sync. nsCOMPtr divertChannel = do_QueryInterface(static_cast(mChannel.get())); divertChannel->MessageDiversionStarted(this); nsresult rv = NS_OK; // Try suspending the channel. Allow it to fail, since OnStopRequest may have // been called and thus the channel may not be pending. If we've already // automatically suspended after synthesizing the response, then we don't // need to suspend again here. if (!mSuspendAfterSynthesizeResponse) { // We need to suspend only nsHttpChannel (i.e. we should not suspend // mEventQ). Therefore we call mChannel->SuspendInternal() and not // mChannel->Suspend(). // We are suspending only nsHttpChannel here because we want to stop // OnDataAvailable until diversion is over. At the same time we should // send the diverted OnDataAvailable-s to the listeners and not queue them // in mEventQ. rv = divertChannel->SuspendInternal(); MOZ_ASSERT(NS_SUCCEEDED(rv) || rv == NS_ERROR_NOT_AVAILABLE); mSuspendedForDiversion = NS_SUCCEEDED(rv); } else { // Take ownership of the automatic suspend that occurred after synthesizing // the response. mSuspendedForDiversion = true; // If mSuspendAfterSynthesizeResponse is true channel has been already // suspended. From comment above mSuspendedForDiversion takes the ownership // of this suspend, therefore mEventQ should not be suspened so we need to // resume it once. mEventQ->Resume(); } rv = mParentListener->SuspendForDiversion(); MOZ_ASSERT(NS_SUCCEEDED(rv)); // Once this is set, no more OnStart/OnData/OnStop callbacks should be sent // to the child. mDivertingFromChild = true; return NS_OK; } nsresult HttpChannelParent::SuspendMessageDiversion() { LOG(("HttpChannelParent::SuspendMessageDiversion [this=%p]", this)); // This only needs to suspend message queue. mEventQ->Suspend(); return NS_OK; } nsresult HttpChannelParent::ResumeMessageDiversion() { LOG(("HttpChannelParent::SuspendMessageDiversion [this=%p]", this)); // This only needs to resumes message queue. mEventQ->Resume(); return NS_OK; } /* private, supporting function for ADivertableParentChannel */ nsresult HttpChannelParent::ResumeForDiversion() { LOG(("HttpChannelParent::ResumeForDiversion [this=%p]\n", this)); MOZ_ASSERT(mChannel); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot ResumeForDiversion if not diverting!"); return NS_ERROR_UNEXPECTED; } nsCOMPtr divertChannel = do_QueryInterface(static_cast(mChannel.get())); divertChannel->MessageDiversionStop(); if (mSuspendedForDiversion) { // The nsHttpChannel will deliver remaining OnData/OnStop for the transfer. nsresult rv = divertChannel->ResumeInternal(); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } mSuspendedForDiversion = false; } if (NS_WARN_IF(mIPCClosed || !DoSendDeleteSelf())) { return NS_ERROR_UNEXPECTED; } return NS_OK; } void HttpChannelParent::DivertTo(nsIStreamListener *aListener) { LOG(("HttpChannelParent::DivertTo [this=%p aListener=%p]\n", this, aListener)); MOZ_ASSERT(mParentListener); // If we're in the process of opening a synthesized response, we must wait // to perform the diversion. Some of our diversion listeners clear callbacks // which breaks the synthesis process. if (mWillSynthesizeResponse) { // We should already have started pending the diversion when // SuspendForDiversion() was called. MOZ_ASSERT(mPendingDiversion); mDivertListener = aListener; return; } if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot DivertTo new listener if diverting is not set!"); return; } mDivertListener = aListener; // Call OnStartRequest and SendDivertMessages asynchronously to avoid // reentering client context. NS_DispatchToCurrentThread( NewRunnableMethod("net::HttpChannelParent::StartDiversion", this, &HttpChannelParent::StartDiversion)); } void HttpChannelParent::StartDiversion() { LOG(("HttpChannelParent::StartDiversion [this=%p]\n", this)); if (NS_WARN_IF(!mDivertingFromChild)) { MOZ_ASSERT(mDivertingFromChild, "Cannot StartDiversion if diverting is not set!"); return; } // Fake pending status in case OnStopRequest has already been called. if (mChannel) { mChannel->ForcePending(true); } { AutoEventEnqueuer ensureSerialDispatch(mEventQ); // Call OnStartRequest for the "DivertTo" listener. nsresult rv = mDivertListener->OnStartRequest(mChannel, nullptr); if (NS_FAILED(rv)) { if (mChannel) { mChannel->Cancel(rv); } mStatus = rv; } } mDivertedOnStartRequest = true; // After OnStartRequest has been called, setup content decoders if needed. // // Create a content conversion chain based on mDivertListener and update // mDivertListener. nsCOMPtr converterListener; Unused << mChannel->DoApplyContentConversions(mDivertListener, getter_AddRefs(converterListener)); if (converterListener) { mDivertListener = converterListener.forget(); } // Now mParentListener can be diverted to mDivertListener. DebugOnly rvdbg = mParentListener->DivertTo(mDivertListener); MOZ_ASSERT(NS_SUCCEEDED(rvdbg)); mDivertListener = nullptr; // Either IPC channel is closed or background channel // is ready to send FlushedForDiversion and DivertMessages. MOZ_ASSERT(mIPCClosed || mBgParent); if (NS_WARN_IF(mIPCClosed || !mBgParent || !mBgParent->OnDiversion())) { FailDiversion(NS_ERROR_UNEXPECTED); return; } } class HTTPFailDiversionEvent : public Runnable { public: HTTPFailDiversionEvent(HttpChannelParent *aChannelParent, nsresult aErrorCode) : Runnable("net::HTTPFailDiversionEvent") , mChannelParent(aChannelParent) , mErrorCode(aErrorCode) { MOZ_RELEASE_ASSERT(aChannelParent); MOZ_RELEASE_ASSERT(NS_FAILED(aErrorCode)); } NS_IMETHOD Run() override { mChannelParent->NotifyDiversionFailed(mErrorCode); return NS_OK; } private: RefPtr mChannelParent; nsresult mErrorCode; }; void HttpChannelParent::FailDiversion(nsresult aErrorCode) { MOZ_RELEASE_ASSERT(NS_FAILED(aErrorCode)); MOZ_RELEASE_ASSERT(mDivertingFromChild); MOZ_RELEASE_ASSERT(mParentListener); MOZ_RELEASE_ASSERT(mChannel); NS_DispatchToCurrentThread( new HTTPFailDiversionEvent(this, aErrorCode)); } void HttpChannelParent::NotifyDiversionFailed(nsresult aErrorCode) { LOG(("HttpChannelParent::NotifyDiversionFailed [this=%p aErrorCode=%" PRIx32 "]\n", this, static_cast(aErrorCode))); MOZ_RELEASE_ASSERT(NS_FAILED(aErrorCode)); MOZ_RELEASE_ASSERT(mDivertingFromChild); MOZ_RELEASE_ASSERT(mParentListener); MOZ_RELEASE_ASSERT(mChannel); mChannel->Cancel(aErrorCode); mChannel->ForcePending(false); bool isPending = false; nsresult rv = mChannel->IsPending(&isPending); MOZ_RELEASE_ASSERT(NS_SUCCEEDED(rv)); // Resume only if we suspended earlier. if (mSuspendedForDiversion) { nsCOMPtr divertChannel = do_QueryInterface(static_cast(mChannel.get())); divertChannel->ResumeInternal(); } // Channel has already sent OnStartRequest to the child, so ensure that we // call it here if it hasn't already been called. if (!mDivertedOnStartRequest) { mChannel->ForcePending(true); mParentListener->OnStartRequest(mChannel, nullptr); mChannel->ForcePending(false); } // If the channel is pending, it will call OnStopRequest itself; otherwise, do // it here. if (!isPending) { mParentListener->OnStopRequest(mChannel, nullptr, aErrorCode); } if (!mIPCClosed) { Unused << DoSendDeleteSelf(); } // DoSendDeleteSelf will need channel Id to remove the strong reference in // BackgroundChannelRegistrar if channel pairing is aborted. // Thus we need to keep mChannel until DoSendDeleteSelf is done. mParentListener = nullptr; mChannel = nullptr; } nsresult HttpChannelParent::OpenAlternativeOutputStream(const nsACString & type, nsIOutputStream * *_retval) { // We need to make sure the child does not call SendDocumentChannelCleanup() // before opening the altOutputStream, because that clears mCacheEntry. if (!mCacheEntry) { return NS_ERROR_NOT_AVAILABLE; } return mCacheEntry->OpenAlternativeOutputStream(type, _retval); } NS_IMETHODIMP HttpChannelParent::GetAuthPrompt(uint32_t aPromptReason, const nsIID& iid, void** aResult) { nsCOMPtr prompt = new NeckoParent::NestedFrameAuthPrompt(Manager(), mNestedFrameId); prompt.forget(aResult); return NS_OK; } void HttpChannelParent::UpdateAndSerializeSecurityInfo(nsACString& aSerializedSecurityInfoOut) { nsCOMPtr secInfoSupp; mChannel->GetSecurityInfo(getter_AddRefs(secInfoSupp)); if (secInfoSupp) { mAssociatedContentSecurity = do_QueryInterface(secInfoSupp); nsCOMPtr secInfoSer = do_QueryInterface(secInfoSupp); if (secInfoSer) { NS_SerializeToString(secInfoSer, aSerializedSecurityInfoOut); } } } bool HttpChannelParent::DoSendDeleteSelf() { bool rv = SendDeleteSelf(); mIPCClosed = true; CleanupBackgroundChannel(); return rv; } mozilla::ipc::IPCResult HttpChannelParent::RecvDeletingChannel() { // We need to ensure that the parent channel will not be sending any more IPC // messages after this, as the child is going away. DoSendDeleteSelf will // set mIPCClosed = true; if (!DoSendDeleteSelf()) { return IPC_FAIL_NO_REASON(this); } return IPC_OK(); } mozilla::ipc::IPCResult HttpChannelParent::RecvFinishInterceptedRedirect() { // We make sure not to send any more messages until the IPC channel is torn // down by the child. mIPCClosed = true; if (!SendFinishInterceptedRedirect()) { return IPC_FAIL_NO_REASON(this); } return IPC_OK(); } //----------------------------------------------------------------------------- // HttpChannelSecurityWarningReporter //----------------------------------------------------------------------------- nsresult HttpChannelParent::ReportSecurityMessage(const nsAString& aMessageTag, const nsAString& aMessageCategory) { if (mIPCClosed || NS_WARN_IF(!SendReportSecurityMessage(nsString(aMessageTag), nsString(aMessageCategory)))) { return NS_ERROR_UNEXPECTED; } return NS_OK; } NS_IMETHODIMP HttpChannelParent::IssueWarning(uint32_t aWarning, bool aAsError) { Unused << SendIssueDeprecationWarning(aWarning, aAsError); return NS_OK; } //----------------------------------------------------------------------------- // nsIAsyncVerifyRedirectReadyCallback //----------------------------------------------------------------------------- NS_IMETHODIMP HttpChannelParent::ReadyToVerify(nsresult aResult) { LOG(("HttpChannelParent::RecvRedirect2Verify [this=%p result=%" PRIx32 "]\n", this, static_cast(aResult))); MOZ_ASSERT(NS_IsMainThread()); ContinueRedirect2Verify(aResult); return NS_OK; } void HttpChannelParent::DoSendSetPriority(int16_t aValue) { if (!mIPCClosed) { Unused << SendSetPriority(aValue); } } nsresult HttpChannelParent::LogBlockedCORSRequest(const nsAString& aMessage) { if (mIPCClosed || NS_WARN_IF(!SendLogBlockedCORSRequest(nsString(aMessage)))) { return NS_ERROR_UNEXPECTED; } return NS_OK; } } // namespace net } // namespace mozilla