2009-08-18 23:05:15 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-08-18 23:05:15 +04:00
|
|
|
|
2013-11-12 02:52:33 +04:00
|
|
|
#include "necko-config.h"
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 22:55:33 +04:00
|
|
|
#include "nsHttp.h"
|
2016-11-29 09:19:08 +03:00
|
|
|
#include "mozilla/BasePrincipal.h"
|
2017-06-24 03:10:54 +03:00
|
|
|
#include "mozilla/ipc/IPCStreamUtils.h"
|
|
|
|
#include "mozilla/net/ExtensionProtocolHandler.h"
|
2009-08-18 23:05:15 +04:00
|
|
|
#include "mozilla/net/NeckoParent.h"
|
|
|
|
#include "mozilla/net/HttpChannelParent.h"
|
2010-03-26 02:02:28 +03:00
|
|
|
#include "mozilla/net/CookieServiceParent.h"
|
2010-10-11 15:35:10 +04:00
|
|
|
#include "mozilla/net/WyciwygChannelParent.h"
|
2010-08-10 22:47:00 +04:00
|
|
|
#include "mozilla/net/FTPChannelParent.h"
|
2011-05-04 17:36:23 +04:00
|
|
|
#include "mozilla/net/WebSocketChannelParent.h"
|
2015-10-28 22:10:20 +03:00
|
|
|
#include "mozilla/net/WebSocketEventListenerParent.h"
|
2015-03-27 23:12:37 +03:00
|
|
|
#include "mozilla/net/DataChannelParent.h"
|
2017-07-27 23:34:54 +03:00
|
|
|
#include "mozilla/net/SimpleChannelParent.h"
|
2016-04-11 06:17:02 +03:00
|
|
|
#include "mozilla/net/AltDataOutputStreamParent.h"
|
|
|
|
#include "mozilla/Unused.h"
|
2017-04-12 21:43:50 +03:00
|
|
|
#include "mozilla/net/FileChannelParent.h"
|
2013-12-11 23:03:51 +04:00
|
|
|
#include "mozilla/net/DNSRequestParent.h"
|
2014-03-11 02:04:28 +04:00
|
|
|
#include "mozilla/net/ChannelDiverterParent.h"
|
2016-06-07 12:46:03 +03:00
|
|
|
#include "mozilla/net/IPCTransportProvider.h"
|
2017-03-24 04:04:41 +03:00
|
|
|
#ifdef MOZ_WEBRTC
|
2017-03-22 03:59:05 +03:00
|
|
|
#include "mozilla/net/StunAddrsRequestParent.h"
|
2017-03-24 04:04:41 +03:00
|
|
|
#endif
|
2016-11-17 16:52:16 +03:00
|
|
|
#include "mozilla/dom/ChromeUtils.h"
|
2013-08-21 10:49:41 +04:00
|
|
|
#include "mozilla/dom/ContentParent.h"
|
2014-12-09 19:34:00 +03:00
|
|
|
#include "mozilla/dom/TabContext.h"
|
2011-05-04 17:36:23 +04:00
|
|
|
#include "mozilla/dom/TabParent.h"
|
2012-09-24 22:53:49 +04:00
|
|
|
#include "mozilla/dom/network/TCPSocketParent.h"
|
2013-07-29 21:36:43 +04:00
|
|
|
#include "mozilla/dom/network/TCPServerSocketParent.h"
|
2013-05-10 16:00:28 +04:00
|
|
|
#include "mozilla/dom/network/UDPSocketParent.h"
|
2016-11-03 10:18:51 +03:00
|
|
|
#include "mozilla/dom/workers/ServiceWorkerManager.h"
|
2012-12-29 13:02:16 +04:00
|
|
|
#include "mozilla/LoadContext.h"
|
2017-06-24 03:10:54 +03:00
|
|
|
#include "mozilla/MozPromise.h"
|
2012-12-29 13:02:16 +04:00
|
|
|
#include "nsPrintfCString.h"
|
2010-07-26 22:49:09 +04:00
|
|
|
#include "nsHTMLDNSPrefetch.h"
|
2012-12-22 17:56:21 +04:00
|
|
|
#include "nsEscape.h"
|
2013-10-19 00:57:55 +04:00
|
|
|
#include "SerializedLoadContext.h"
|
2014-06-11 09:44:36 +04:00
|
|
|
#include "nsAuthInformationHolder.h"
|
|
|
|
#include "nsIAuthPromptCallback.h"
|
2017-03-22 13:39:31 +03:00
|
|
|
#include "ContentPrincipal.h"
|
2015-06-18 12:23:00 +03:00
|
|
|
#include "nsINetworkPredictor.h"
|
2016-01-09 04:20:50 +03:00
|
|
|
#include "nsINetworkPredictorVerifier.h"
|
2015-02-21 01:01:36 +03:00
|
|
|
#include "nsISpeculativeConnect.h"
|
2017-03-10 03:32:00 +03:00
|
|
|
#include "nsNetUtil.h"
|
2010-07-26 22:49:09 +04:00
|
|
|
|
2017-01-12 19:38:48 +03:00
|
|
|
using mozilla::OriginAttributes;
|
2016-11-17 16:52:16 +03:00
|
|
|
using mozilla::dom::ChromeUtils;
|
2013-08-21 10:49:41 +04:00
|
|
|
using mozilla::dom::ContentParent;
|
2014-12-09 19:34:00 +03:00
|
|
|
using mozilla::dom::TabContext;
|
2011-05-04 17:36:23 +04:00
|
|
|
using mozilla::dom::TabParent;
|
2012-09-24 22:53:49 +04:00
|
|
|
using mozilla::net::PTCPSocketParent;
|
|
|
|
using mozilla::dom::TCPSocketParent;
|
2013-07-29 21:36:43 +04:00
|
|
|
using mozilla::net::PTCPServerSocketParent;
|
|
|
|
using mozilla::dom::TCPServerSocketParent;
|
2013-05-10 16:00:28 +04:00
|
|
|
using mozilla::net::PUDPSocketParent;
|
|
|
|
using mozilla::dom::UDPSocketParent;
|
2016-11-03 10:18:51 +03:00
|
|
|
using mozilla::dom::workers::ServiceWorkerManager;
|
2017-06-24 03:10:54 +03:00
|
|
|
using mozilla::ipc::AutoIPCStream;
|
2016-11-03 10:18:51 +03:00
|
|
|
using mozilla::ipc::OptionalPrincipalInfo;
|
|
|
|
using mozilla::ipc::PrincipalInfo;
|
2017-06-24 03:10:54 +03:00
|
|
|
using mozilla::ipc::LoadInfoArgsToLoadInfo;
|
2012-12-29 13:02:16 +04:00
|
|
|
using IPC::SerializedLoadContext;
|
2011-05-04 17:36:23 +04:00
|
|
|
|
2009-08-18 23:05:15 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
// C++ file contents
|
|
|
|
NeckoParent::NeckoParent()
|
|
|
|
{
|
2013-06-22 20:09:19 +04:00
|
|
|
// Init HTTP protocol handler now since we need atomTable up and running very
|
|
|
|
// early (IPDL argument handling for PHttpChannel constructor needs it) so
|
|
|
|
// normal init (during 1st Http channel request) isn't early enough.
|
|
|
|
nsCOMPtr<nsIProtocolHandler> proto =
|
|
|
|
do_GetService("@mozilla.org/network/protocol;1?name=http");
|
|
|
|
|
2016-08-19 04:55:00 +03:00
|
|
|
// only register once--we will have multiple NeckoParents if there are
|
|
|
|
// multiple child processes.
|
|
|
|
static bool registeredBool = false;
|
|
|
|
if (!registeredBool) {
|
|
|
|
Preferences::AddBoolVarCache(&NeckoCommonInternal::gSecurityDisabled,
|
|
|
|
"network.disable.ipc.security");
|
|
|
|
registeredBool = true;
|
|
|
|
}
|
2009-08-18 23:05:15 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NeckoParent::~NeckoParent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-12-29 13:02:16 +04:00
|
|
|
static PBOverrideStatus
|
|
|
|
PBOverrideStatusFromLoadContext(const SerializedLoadContext& aSerialized)
|
|
|
|
{
|
|
|
|
if (!aSerialized.IsNotNull() && aSerialized.IsPrivateBitValid()) {
|
2016-08-24 01:07:56 +03:00
|
|
|
return (aSerialized.mOriginAttributes.mPrivateBrowsingId > 0) ?
|
2012-12-29 13:02:16 +04:00
|
|
|
kPBOverride_Private :
|
|
|
|
kPBOverride_NotPrivate;
|
|
|
|
}
|
|
|
|
return kPBOverride_Unset;
|
|
|
|
}
|
|
|
|
|
2016-11-03 10:18:51 +03:00
|
|
|
static already_AddRefed<nsIPrincipal>
|
2017-08-10 09:47:26 +03:00
|
|
|
GetRequestingPrincipal(const OptionalLoadInfoArgs& aOptionalLoadInfoArgs)
|
2016-11-03 10:18:51 +03:00
|
|
|
{
|
|
|
|
if (aOptionalLoadInfoArgs.type() != OptionalLoadInfoArgs::TLoadInfoArgs) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const LoadInfoArgs& loadInfoArgs = aOptionalLoadInfoArgs.get_LoadInfoArgs();
|
|
|
|
const OptionalPrincipalInfo& optionalPrincipalInfo =
|
|
|
|
loadInfoArgs.requestingPrincipalInfo();
|
|
|
|
|
|
|
|
if (optionalPrincipalInfo.type() != OptionalPrincipalInfo::TPrincipalInfo) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PrincipalInfo& principalInfo =
|
|
|
|
optionalPrincipalInfo.get_PrincipalInfo();
|
|
|
|
|
|
|
|
return PrincipalInfoToPrincipal(principalInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<nsIPrincipal>
|
|
|
|
GetRequestingPrincipal(const HttpChannelCreationArgs& aArgs)
|
|
|
|
{
|
|
|
|
if (aArgs.type() != HttpChannelCreationArgs::THttpChannelOpenArgs) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const HttpChannelOpenArgs& args = aArgs.get_HttpChannelOpenArgs();
|
|
|
|
return GetRequestingPrincipal(args.loadInfo());
|
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<nsIPrincipal>
|
|
|
|
GetRequestingPrincipal(const FTPChannelCreationArgs& aArgs)
|
|
|
|
{
|
|
|
|
if (aArgs.type() != FTPChannelCreationArgs::TFTPChannelOpenArgs) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const FTPChannelOpenArgs& args = aArgs.get_FTPChannelOpenArgs();
|
|
|
|
return GetRequestingPrincipal(args.loadInfo());
|
|
|
|
}
|
|
|
|
|
2016-11-17 16:52:16 +03:00
|
|
|
// Bug 1289001 - If GetValidatedOriginAttributes returns an error string, that
|
|
|
|
// usually leads to a content crash with very little info about the cause.
|
2016-10-05 19:50:08 +03:00
|
|
|
// We prefer to crash on the parent, so we get the reason in the crash report.
|
2016-11-21 20:38:25 +03:00
|
|
|
static MOZ_COLD
|
2016-10-05 19:50:08 +03:00
|
|
|
void CrashWithReason(const char * reason)
|
|
|
|
{
|
2016-10-08 12:14:49 +03:00
|
|
|
#ifndef RELEASE_OR_BETA
|
2017-02-21 20:01:56 +03:00
|
|
|
MOZ_CRASH_UNSAFE_OOL(reason);
|
2016-10-05 19:50:08 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-08-21 10:49:41 +04:00
|
|
|
const char*
|
2016-11-17 16:52:16 +03:00
|
|
|
NeckoParent::GetValidatedOriginAttributes(const SerializedLoadContext& aSerialized,
|
|
|
|
PContentParent* aContent,
|
|
|
|
nsIPrincipal* aRequestingPrincipal,
|
2017-01-12 19:38:48 +03:00
|
|
|
OriginAttributes& aAttrs)
|
2013-08-21 10:49:41 +04:00
|
|
|
{
|
2016-11-25 12:53:59 +03:00
|
|
|
if (!UsingNeckoIPCSecurity()) {
|
|
|
|
if (!aSerialized.IsNotNull()) {
|
|
|
|
// If serialized is null, we cannot validate anything. We have to assume
|
|
|
|
// that this requests comes from a SystemPrincipal.
|
2017-01-12 19:38:48 +03:00
|
|
|
aAttrs = OriginAttributes(NECKO_NO_APP_ID, false);
|
2016-11-25 12:53:59 +03:00
|
|
|
} else {
|
|
|
|
aAttrs = aSerialized.mOriginAttributes;
|
2013-08-21 10:49:41 +04:00
|
|
|
}
|
2016-10-29 23:04:38 +03:00
|
|
|
return nullptr;
|
2013-08-21 10:49:41 +04:00
|
|
|
}
|
|
|
|
|
2016-11-25 12:53:59 +03:00
|
|
|
if (!aSerialized.IsNotNull()) {
|
|
|
|
CrashWithReason("GetValidatedOriginAttributes | SerializedLoadContext from child is null");
|
|
|
|
return "SerializedLoadContext from child is null";
|
|
|
|
}
|
|
|
|
|
2014-12-09 19:34:00 +03:00
|
|
|
nsTArray<TabContext> contextArray =
|
|
|
|
static_cast<ContentParent*>(aContent)->GetManagedTabContext();
|
2016-10-29 23:04:38 +03:00
|
|
|
|
2016-11-17 16:52:16 +03:00
|
|
|
nsAutoCString serializedSuffix;
|
|
|
|
aSerialized.mOriginAttributes.CreateAnonymizedSuffix(serializedSuffix);
|
|
|
|
|
2016-10-29 23:04:38 +03:00
|
|
|
nsAutoCString debugString;
|
2014-12-09 19:34:00 +03:00
|
|
|
for (uint32_t i = 0; i < contextArray.Length(); i++) {
|
2016-11-17 16:52:16 +03:00
|
|
|
const TabContext& tabContext = contextArray[i];
|
2012-12-29 13:02:16 +04:00
|
|
|
|
2016-11-17 16:52:16 +03:00
|
|
|
if (!ChromeUtils::IsOriginAttributesEqual(aSerialized.mOriginAttributes,
|
|
|
|
tabContext.OriginAttributesRef())) {
|
2017-09-04 08:14:11 +03:00
|
|
|
debugString.AppendLiteral("(");
|
2016-11-17 16:52:16 +03:00
|
|
|
debugString.Append(serializedSuffix);
|
2017-09-04 08:14:11 +03:00
|
|
|
debugString.AppendLiteral(",");
|
2016-11-17 16:52:16 +03:00
|
|
|
|
|
|
|
nsAutoCString tabSuffix;
|
|
|
|
tabContext.OriginAttributesRef().CreateAnonymizedSuffix(tabSuffix);
|
|
|
|
debugString.Append(tabSuffix);
|
|
|
|
|
2017-09-04 08:14:11 +03:00
|
|
|
debugString.AppendLiteral(")");
|
2016-01-20 02:28:00 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-11-17 16:52:16 +03:00
|
|
|
aAttrs = aSerialized.mOriginAttributes;
|
2014-06-27 19:12:03 +04:00
|
|
|
return nullptr;
|
2013-08-21 10:49:44 +04:00
|
|
|
}
|
|
|
|
|
2016-11-03 10:18:51 +03:00
|
|
|
// This may be a ServiceWorker: when a push notification is received, FF wakes
|
|
|
|
// up the corrisponding service worker so that it can manage the PushEvent. At
|
|
|
|
// that time we probably don't have any valid tabcontext, but still, we want
|
|
|
|
// to support http channel requests coming from that ServiceWorker.
|
|
|
|
if (aRequestingPrincipal) {
|
|
|
|
RefPtr<ServiceWorkerManager> swm = ServiceWorkerManager::GetInstance();
|
|
|
|
if (swm &&
|
|
|
|
swm->MayHaveActiveServiceWorkerInstance(static_cast<ContentParent*>(aContent),
|
|
|
|
aRequestingPrincipal)) {
|
|
|
|
aAttrs = aSerialized.mOriginAttributes;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-29 23:04:38 +03:00
|
|
|
nsAutoCString errorString;
|
2017-09-04 08:14:11 +03:00
|
|
|
errorString.AppendLiteral("GetValidatedOriginAttributes | App does not have permission -");
|
2016-10-29 23:04:38 +03:00
|
|
|
errorString.Append(debugString);
|
2014-06-27 19:12:03 +04:00
|
|
|
|
2016-10-29 23:04:38 +03:00
|
|
|
// Leak the buffer on the heap to make sure that it lives long enough, as
|
|
|
|
// MOZ_CRASH_ANNOTATE expects the pointer passed to it to live to the end of
|
|
|
|
// the program.
|
|
|
|
char * error = strdup(errorString.BeginReading());
|
|
|
|
CrashWithReason(error);
|
|
|
|
return "App does not have permission";
|
2012-12-29 13:02:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2014-06-11 09:44:36 +04:00
|
|
|
NeckoParent::CreateChannelLoadContext(const PBrowserOrId& aBrowser,
|
2013-08-21 10:49:44 +04:00
|
|
|
PContentParent* aContent,
|
2012-12-29 13:02:16 +04:00
|
|
|
const SerializedLoadContext& aSerialized,
|
2016-11-03 10:18:51 +03:00
|
|
|
nsIPrincipal* aRequestingPrincipal,
|
2012-12-29 13:02:16 +04:00
|
|
|
nsCOMPtr<nsILoadContext> &aResult)
|
|
|
|
{
|
2017-01-12 19:38:48 +03:00
|
|
|
OriginAttributes attrs;
|
2016-11-17 16:52:16 +03:00
|
|
|
const char* error = GetValidatedOriginAttributes(aSerialized, aContent,
|
|
|
|
aRequestingPrincipal, attrs);
|
2012-12-29 13:02:16 +04:00
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2013-01-24 23:22:00 +04:00
|
|
|
// if !UsingNeckoIPCSecurity(), we may not have a LoadContext to set. This is
|
2012-12-29 13:02:16 +04:00
|
|
|
// the common case for most xpcshell tests.
|
|
|
|
if (aSerialized.IsNotNull()) {
|
2016-08-24 01:07:56 +03:00
|
|
|
attrs.SyncAttributesWithPrivateBrowsing(aSerialized.mOriginAttributes.mPrivateBrowsingId > 0);
|
2014-06-11 09:44:36 +04:00
|
|
|
switch (aBrowser.type()) {
|
|
|
|
case PBrowserOrId::TPBrowserParent:
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<TabParent> tabParent =
|
2015-02-06 00:47:32 +03:00
|
|
|
TabParent::GetFrom(aBrowser.get_PBrowserParent());
|
2014-06-11 09:44:36 +04:00
|
|
|
dom::Element* topFrameElement = nullptr;
|
|
|
|
if (tabParent) {
|
|
|
|
topFrameElement = tabParent->GetOwnerElement();
|
|
|
|
}
|
2015-09-23 11:10:21 +03:00
|
|
|
aResult = new LoadContext(aSerialized, topFrameElement, attrs);
|
2014-06-11 09:44:36 +04:00
|
|
|
break;
|
|
|
|
}
|
2014-10-24 04:29:00 +04:00
|
|
|
case PBrowserOrId::TTabId:
|
2014-06-11 09:44:36 +04:00
|
|
|
{
|
2015-09-23 11:10:21 +03:00
|
|
|
aResult = new LoadContext(aSerialized, aBrowser.get_TabId(), attrs);
|
2014-06-11 09:44:36 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
MOZ_CRASH();
|
|
|
|
}
|
2012-12-29 13:02:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-05-02 22:44:13 +04:00
|
|
|
void
|
|
|
|
NeckoParent::ActorDestroy(ActorDestroyReason aWhy)
|
|
|
|
{
|
2016-08-23 23:21:00 +03:00
|
|
|
// Nothing needed here. Called right before destructor since this is a
|
|
|
|
// non-refcounted class.
|
2014-05-02 22:44:13 +04:00
|
|
|
}
|
|
|
|
|
2012-10-10 03:46:24 +04:00
|
|
|
PHttpChannelParent*
|
2014-06-11 09:44:36 +04:00
|
|
|
NeckoParent::AllocPHttpChannelParent(const PBrowserOrId& aBrowser,
|
2013-07-08 19:48:39 +04:00
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const HttpChannelCreationArgs& aOpenArgs)
|
2009-08-18 23:05:15 +04:00
|
|
|
{
|
2016-11-03 10:18:51 +03:00
|
|
|
nsCOMPtr<nsIPrincipal> requestingPrincipal =
|
|
|
|
GetRequestingPrincipal(aOpenArgs);
|
|
|
|
|
2012-12-29 13:02:16 +04:00
|
|
|
nsCOMPtr<nsILoadContext> loadContext;
|
2015-07-31 00:53:38 +03:00
|
|
|
const char *error = CreateChannelLoadContext(aBrowser, Manager(),
|
2016-11-03 10:18:51 +03:00
|
|
|
aSerialized, requestingPrincipal,
|
|
|
|
loadContext);
|
2012-12-29 13:02:16 +04:00
|
|
|
if (error) {
|
2013-07-08 19:48:39 +04:00
|
|
|
printf_stderr("NeckoParent::AllocPHttpChannelParent: "
|
2013-01-03 08:15:19 +04:00
|
|
|
"FATAL error: %s: KILLING CHILD PROCESS\n",
|
|
|
|
error);
|
2012-12-29 13:02:16 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
PBOverrideStatus overrideStatus = PBOverrideStatusFromLoadContext(aSerialized);
|
|
|
|
HttpChannelParent *p = new HttpChannelParent(aBrowser, loadContext, overrideStatus);
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 22:55:33 +04:00
|
|
|
p->AddRef();
|
|
|
|
return p;
|
2009-08-18 23:05:15 +04:00
|
|
|
}
|
|
|
|
|
2012-10-10 03:46:24 +04:00
|
|
|
bool
|
2013-07-08 19:48:39 +04:00
|
|
|
NeckoParent::DeallocPHttpChannelParent(PHttpChannelParent* channel)
|
2009-08-18 23:05:15 +04:00
|
|
|
{
|
Bug 530952: Electrolysis HTTP Channel implementation. author=jduell, r=bsmedberg, sr=bz
- Supports only primitive xpcshell HTTP requests which don't set/get HTTP
headers, don't do redirects, observers, load groups, or anything else other
than basic things like looking at the reply body, Content-type, Content-length, etc.
- Tested with network/test/unit_ipc/test_simple_wrap.js (patch @ bug 521922)
- Only used if "NECKO_E10S_HTTP" set in environment.
- Force http.h to get #included before any IPDL files, to centralize #define
handling of LOG and to make sure FORCE_PR_LOGGING is set if needed (bug
545995)
2009-09-22 22:55:33 +04:00
|
|
|
HttpChannelParent *p = static_cast<HttpChannelParent *>(channel);
|
|
|
|
p->Release();
|
2009-09-18 03:09:20 +04:00
|
|
|
return true;
|
2009-08-18 23:05:15 +04:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2013-06-22 20:09:19 +04:00
|
|
|
NeckoParent::RecvPHttpChannelConstructor(
|
|
|
|
PHttpChannelParent* aActor,
|
2014-06-11 09:44:36 +04:00
|
|
|
const PBrowserOrId& aBrowser,
|
2013-06-22 20:09:19 +04:00
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const HttpChannelCreationArgs& aOpenArgs)
|
|
|
|
{
|
|
|
|
HttpChannelParent* p = static_cast<HttpChannelParent*>(aActor);
|
2016-11-15 06:26:00 +03:00
|
|
|
if (!p->Init(aOpenArgs)) {
|
|
|
|
return IPC_FAIL_NO_REASON(this);
|
|
|
|
}
|
|
|
|
return IPC_OK();
|
2013-06-22 20:09:19 +04:00
|
|
|
}
|
2016-04-11 06:17:02 +03:00
|
|
|
|
2017-03-22 03:59:05 +03:00
|
|
|
PStunAddrsRequestParent*
|
|
|
|
NeckoParent::AllocPStunAddrsRequestParent()
|
|
|
|
{
|
2017-03-24 04:04:41 +03:00
|
|
|
#ifdef MOZ_WEBRTC
|
2017-03-22 03:59:05 +03:00
|
|
|
StunAddrsRequestParent* p = new StunAddrsRequestParent();
|
|
|
|
p->AddRef();
|
|
|
|
return p;
|
2017-03-24 04:04:41 +03:00
|
|
|
#else
|
|
|
|
return nullptr;
|
|
|
|
#endif
|
2017-03-22 03:59:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPStunAddrsRequestParent(PStunAddrsRequestParent* aActor)
|
|
|
|
{
|
2017-03-24 04:04:41 +03:00
|
|
|
#ifdef MOZ_WEBRTC
|
2017-03-22 03:59:05 +03:00
|
|
|
StunAddrsRequestParent* p = static_cast<StunAddrsRequestParent*>(aActor);
|
|
|
|
p->Release();
|
2017-03-24 04:04:41 +03:00
|
|
|
#endif
|
2017-03-22 03:59:05 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-11 06:17:02 +03:00
|
|
|
PAltDataOutputStreamParent*
|
|
|
|
NeckoParent::AllocPAltDataOutputStreamParent(
|
|
|
|
const nsCString& type,
|
|
|
|
PHttpChannelParent* channel)
|
|
|
|
{
|
|
|
|
HttpChannelParent* chan = static_cast<HttpChannelParent*>(channel);
|
|
|
|
nsCOMPtr<nsIOutputStream> stream;
|
|
|
|
nsresult rv = chan->OpenAlternativeOutputStream(type, getter_AddRefs(stream));
|
|
|
|
AltDataOutputStreamParent* parent = new AltDataOutputStreamParent(stream);
|
|
|
|
parent->AddRef();
|
|
|
|
// If the return value was not NS_OK, the error code will be sent
|
|
|
|
// asynchronously to the child, after receiving the first message.
|
|
|
|
parent->SetError(rv);
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPAltDataOutputStreamParent(PAltDataOutputStreamParent* aActor)
|
|
|
|
{
|
|
|
|
AltDataOutputStreamParent* parent = static_cast<AltDataOutputStreamParent*>(aActor);
|
|
|
|
parent->Release();
|
|
|
|
return true;
|
|
|
|
}
|
2013-06-22 20:09:19 +04:00
|
|
|
|
2010-08-10 22:47:00 +04:00
|
|
|
PFTPChannelParent*
|
2014-06-11 09:44:36 +04:00
|
|
|
NeckoParent::AllocPFTPChannelParent(const PBrowserOrId& aBrowser,
|
2013-07-08 19:48:39 +04:00
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const FTPChannelCreationArgs& aOpenArgs)
|
2010-08-10 22:47:00 +04:00
|
|
|
{
|
2016-11-03 10:18:51 +03:00
|
|
|
nsCOMPtr<nsIPrincipal> requestingPrincipal =
|
|
|
|
GetRequestingPrincipal(aOpenArgs);
|
|
|
|
|
2012-12-29 13:02:16 +04:00
|
|
|
nsCOMPtr<nsILoadContext> loadContext;
|
2015-07-31 00:53:38 +03:00
|
|
|
const char *error = CreateChannelLoadContext(aBrowser, Manager(),
|
2016-11-03 10:18:51 +03:00
|
|
|
aSerialized, requestingPrincipal,
|
|
|
|
loadContext);
|
2012-12-29 13:02:16 +04:00
|
|
|
if (error) {
|
2013-07-08 19:48:39 +04:00
|
|
|
printf_stderr("NeckoParent::AllocPFTPChannelParent: "
|
2013-01-03 08:15:19 +04:00
|
|
|
"FATAL error: %s: KILLING CHILD PROCESS\n",
|
|
|
|
error);
|
2012-12-29 13:02:16 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
PBOverrideStatus overrideStatus = PBOverrideStatusFromLoadContext(aSerialized);
|
2015-07-21 18:15:00 +03:00
|
|
|
FTPChannelParent *p = new FTPChannelParent(aBrowser, loadContext, overrideStatus);
|
2010-08-10 22:47:00 +04:00
|
|
|
p->AddRef();
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 19:48:39 +04:00
|
|
|
NeckoParent::DeallocPFTPChannelParent(PFTPChannelParent* channel)
|
2010-08-10 22:47:00 +04:00
|
|
|
{
|
|
|
|
FTPChannelParent *p = static_cast<FTPChannelParent *>(channel);
|
|
|
|
p->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2013-06-22 20:09:19 +04:00
|
|
|
NeckoParent::RecvPFTPChannelConstructor(
|
|
|
|
PFTPChannelParent* aActor,
|
2014-06-11 09:44:36 +04:00
|
|
|
const PBrowserOrId& aBrowser,
|
2013-06-22 20:09:19 +04:00
|
|
|
const SerializedLoadContext& aSerialized,
|
|
|
|
const FTPChannelCreationArgs& aOpenArgs)
|
|
|
|
{
|
|
|
|
FTPChannelParent* p = static_cast<FTPChannelParent*>(aActor);
|
2016-11-15 06:26:00 +03:00
|
|
|
if (!p->Init(aOpenArgs)) {
|
|
|
|
return IPC_FAIL_NO_REASON(this);
|
|
|
|
}
|
|
|
|
return IPC_OK();
|
2013-06-22 20:09:19 +04:00
|
|
|
}
|
|
|
|
|
2013-07-08 19:48:39 +04:00
|
|
|
PCookieServiceParent*
|
|
|
|
NeckoParent::AllocPCookieServiceParent()
|
2010-03-26 02:02:28 +03:00
|
|
|
{
|
|
|
|
return new CookieServiceParent();
|
|
|
|
}
|
|
|
|
|
2015-10-28 19:52:40 +03:00
|
|
|
bool
|
2013-07-08 19:48:39 +04:00
|
|
|
NeckoParent::DeallocPCookieServiceParent(PCookieServiceParent* cs)
|
2010-03-26 02:02:28 +03:00
|
|
|
{
|
|
|
|
delete cs;
|
|
|
|
return true;
|
|
|
|
}
|
2009-08-18 23:05:15 +04:00
|
|
|
|
2010-10-11 15:35:10 +04:00
|
|
|
PWyciwygChannelParent*
|
2013-07-08 19:48:39 +04:00
|
|
|
NeckoParent::AllocPWyciwygChannelParent()
|
2010-10-11 15:35:10 +04:00
|
|
|
{
|
|
|
|
WyciwygChannelParent *p = new WyciwygChannelParent();
|
|
|
|
p->AddRef();
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 19:48:39 +04:00
|
|
|
NeckoParent::DeallocPWyciwygChannelParent(PWyciwygChannelParent* channel)
|
2010-10-11 15:35:10 +04:00
|
|
|
{
|
|
|
|
WyciwygChannelParent *p = static_cast<WyciwygChannelParent *>(channel);
|
|
|
|
p->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-05-04 17:36:23 +04:00
|
|
|
PWebSocketParent*
|
2014-06-11 09:44:36 +04:00
|
|
|
NeckoParent::AllocPWebSocketParent(const PBrowserOrId& browser,
|
2015-10-28 22:10:42 +03:00
|
|
|
const SerializedLoadContext& serialized,
|
|
|
|
const uint32_t& aSerial)
|
2011-05-04 17:36:23 +04:00
|
|
|
{
|
2012-12-29 13:02:16 +04:00
|
|
|
nsCOMPtr<nsILoadContext> loadContext;
|
2015-07-31 00:53:38 +03:00
|
|
|
const char *error = CreateChannelLoadContext(browser, Manager(),
|
2016-11-03 10:18:51 +03:00
|
|
|
serialized,
|
|
|
|
nullptr,
|
|
|
|
loadContext);
|
2012-12-29 13:02:16 +04:00
|
|
|
if (error) {
|
2013-07-08 19:48:39 +04:00
|
|
|
printf_stderr("NeckoParent::AllocPWebSocketParent: "
|
2013-01-03 08:15:19 +04:00
|
|
|
"FATAL error: %s: KILLING CHILD PROCESS\n",
|
|
|
|
error);
|
2012-12-29 13:02:16 +04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<TabParent> tabParent = TabParent::GetFrom(browser.get_PBrowserParent());
|
2012-12-29 13:02:16 +04:00
|
|
|
PBOverrideStatus overrideStatus = PBOverrideStatusFromLoadContext(serialized);
|
|
|
|
WebSocketChannelParent* p = new WebSocketChannelParent(tabParent, loadContext,
|
2015-10-28 22:10:42 +03:00
|
|
|
overrideStatus,
|
|
|
|
aSerial);
|
2011-05-04 17:36:23 +04:00
|
|
|
p->AddRef();
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-08 19:48:39 +04:00
|
|
|
NeckoParent::DeallocPWebSocketParent(PWebSocketParent* actor)
|
2011-05-04 17:36:23 +04:00
|
|
|
{
|
|
|
|
WebSocketChannelParent* p = static_cast<WebSocketChannelParent*>(actor);
|
|
|
|
p->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-10-28 22:10:20 +03:00
|
|
|
PWebSocketEventListenerParent*
|
|
|
|
NeckoParent::AllocPWebSocketEventListenerParent(const uint64_t& aInnerWindowID)
|
2015-10-26 18:31:00 +03:00
|
|
|
{
|
2015-10-28 22:10:20 +03:00
|
|
|
RefPtr<WebSocketEventListenerParent> c =
|
|
|
|
new WebSocketEventListenerParent(aInnerWindowID);
|
2015-10-26 18:31:00 +03:00
|
|
|
return c.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2015-10-28 22:10:20 +03:00
|
|
|
NeckoParent::DeallocPWebSocketEventListenerParent(PWebSocketEventListenerParent* aActor)
|
2015-10-26 18:31:00 +03:00
|
|
|
{
|
2015-10-28 22:10:20 +03:00
|
|
|
RefPtr<WebSocketEventListenerParent> c =
|
|
|
|
dont_AddRef(static_cast<WebSocketEventListenerParent*>(aActor));
|
2015-10-26 18:31:00 +03:00
|
|
|
MOZ_ASSERT(c);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-27 23:12:37 +03:00
|
|
|
PDataChannelParent*
|
|
|
|
NeckoParent::AllocPDataChannelParent(const uint32_t &channelId)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DataChannelParent> p = new DataChannelParent();
|
2015-03-27 23:12:37 +03:00
|
|
|
return p.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPDataChannelParent(PDataChannelParent* actor)
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DataChannelParent> p = dont_AddRef(static_cast<DataChannelParent*>(actor));
|
2015-03-27 23:12:37 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2015-03-27 23:12:37 +03:00
|
|
|
NeckoParent::RecvPDataChannelConstructor(PDataChannelParent* actor,
|
|
|
|
const uint32_t& channelId)
|
|
|
|
{
|
|
|
|
DataChannelParent* p = static_cast<DataChannelParent*>(actor);
|
2017-01-04 09:40:56 +03:00
|
|
|
DebugOnly<bool> rv = p->Init(channelId);
|
|
|
|
MOZ_ASSERT(rv);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-03-27 23:12:37 +03:00
|
|
|
}
|
|
|
|
|
2017-07-27 23:34:54 +03:00
|
|
|
PSimpleChannelParent*
|
|
|
|
NeckoParent::AllocPSimpleChannelParent(const uint32_t &channelId)
|
|
|
|
{
|
|
|
|
RefPtr<SimpleChannelParent> p = new SimpleChannelParent();
|
|
|
|
return p.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPSimpleChannelParent(PSimpleChannelParent* actor)
|
|
|
|
{
|
|
|
|
RefPtr<SimpleChannelParent> p = dont_AddRef(actor).downcast<SimpleChannelParent>();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::ipc::IPCResult
|
|
|
|
NeckoParent::RecvPSimpleChannelConstructor(PSimpleChannelParent* actor,
|
|
|
|
const uint32_t& channelId)
|
|
|
|
{
|
|
|
|
SimpleChannelParent* p = static_cast<SimpleChannelParent*>(actor);
|
|
|
|
MOZ_ALWAYS_TRUE(p->Init(channelId));
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
|
2017-04-12 21:43:50 +03:00
|
|
|
PFileChannelParent*
|
|
|
|
NeckoParent::AllocPFileChannelParent(const uint32_t &channelId)
|
|
|
|
{
|
|
|
|
RefPtr<FileChannelParent> p = new FileChannelParent();
|
|
|
|
return p.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPFileChannelParent(PFileChannelParent* actor)
|
|
|
|
{
|
|
|
|
RefPtr<FileChannelParent> p = dont_AddRef(static_cast<FileChannelParent*>(actor));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::ipc::IPCResult
|
|
|
|
NeckoParent::RecvPFileChannelConstructor(PFileChannelParent* actor,
|
|
|
|
const uint32_t& channelId)
|
|
|
|
{
|
|
|
|
FileChannelParent* p = static_cast<FileChannelParent*>(actor);
|
|
|
|
DebugOnly<bool> rv = p->Init(channelId);
|
|
|
|
MOZ_ASSERT(rv);
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
|
2012-09-24 22:53:49 +04:00
|
|
|
PTCPSocketParent*
|
2013-12-19 07:21:12 +04:00
|
|
|
NeckoParent::AllocPTCPSocketParent(const nsString& /* host */,
|
|
|
|
const uint16_t& /* port */)
|
2012-09-24 22:53:49 +04:00
|
|
|
{
|
2013-12-19 07:21:12 +04:00
|
|
|
// We actually don't need host/port to construct a TCPSocketParent since
|
|
|
|
// TCPSocketParent will maintain an internal nsIDOMTCPSocket instance which
|
2015-10-28 19:52:40 +03:00
|
|
|
// can be delegated to get the host/port.
|
2012-09-24 22:53:49 +04:00
|
|
|
TCPSocketParent* p = new TCPSocketParent();
|
2013-07-29 21:36:43 +04:00
|
|
|
p->AddIPDLReference();
|
2012-09-24 22:53:49 +04:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-07-29 21:36:43 +04:00
|
|
|
NeckoParent::DeallocPTCPSocketParent(PTCPSocketParent* actor)
|
2012-09-24 22:53:49 +04:00
|
|
|
{
|
2013-07-29 21:36:43 +04:00
|
|
|
TCPSocketParent* p = static_cast<TCPSocketParent*>(actor);
|
|
|
|
p->ReleaseIPDLReference();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
PTCPServerSocketParent*
|
|
|
|
NeckoParent::AllocPTCPServerSocketParent(const uint16_t& aLocalPort,
|
2015-03-25 17:36:56 +03:00
|
|
|
const uint16_t& aBacklog,
|
|
|
|
const bool& aUseArrayBuffers)
|
2013-07-29 21:36:43 +04:00
|
|
|
{
|
2015-03-25 17:36:56 +03:00
|
|
|
TCPServerSocketParent* p = new TCPServerSocketParent(this, aLocalPort, aBacklog, aUseArrayBuffers);
|
2013-07-29 21:36:43 +04:00
|
|
|
p->AddIPDLReference();
|
|
|
|
return p;
|
2012-09-24 22:53:49 +04:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2013-07-29 21:36:43 +04:00
|
|
|
NeckoParent::RecvPTCPServerSocketConstructor(PTCPServerSocketParent* aActor,
|
|
|
|
const uint16_t& aLocalPort,
|
|
|
|
const uint16_t& aBacklog,
|
2015-03-25 17:36:56 +03:00
|
|
|
const bool& aUseArrayBuffers)
|
2012-09-24 22:53:49 +04:00
|
|
|
{
|
2015-03-25 17:36:56 +03:00
|
|
|
static_cast<TCPServerSocketParent*>(aActor)->Init();
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2013-07-29 21:36:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPTCPServerSocketParent(PTCPServerSocketParent* actor)
|
|
|
|
{
|
|
|
|
TCPServerSocketParent* p = static_cast<TCPServerSocketParent*>(actor);
|
|
|
|
p->ReleaseIPDLReference();
|
2012-09-24 22:53:49 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-10 16:00:28 +04:00
|
|
|
PUDPSocketParent*
|
2015-04-08 22:35:00 +03:00
|
|
|
NeckoParent::AllocPUDPSocketParent(const Principal& /* unused */,
|
|
|
|
const nsCString& /* unused */)
|
2014-05-06 14:32:25 +04:00
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<UDPSocketParent> p = new UDPSocketParent(this);
|
2013-05-10 16:00:28 +04:00
|
|
|
|
2014-05-06 14:32:25 +04:00
|
|
|
return p.forget().take();
|
2013-05-10 16:00:28 +04:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2013-05-10 16:00:28 +04:00
|
|
|
NeckoParent::RecvPUDPSocketConstructor(PUDPSocketParent* aActor,
|
2015-04-08 22:35:00 +03:00
|
|
|
const Principal& aPrincipal,
|
2013-11-29 20:13:44 +04:00
|
|
|
const nsCString& aFilter)
|
2013-05-10 16:00:28 +04:00
|
|
|
{
|
2016-11-15 06:26:00 +03:00
|
|
|
if (!static_cast<UDPSocketParent*>(aActor)->Init(aPrincipal, aFilter)) {
|
|
|
|
return IPC_FAIL_NO_REASON(this);
|
|
|
|
}
|
|
|
|
return IPC_OK();
|
2013-05-10 16:00:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPUDPSocketParent(PUDPSocketParent* actor)
|
|
|
|
{
|
|
|
|
UDPSocketParent* p = static_cast<UDPSocketParent*>(actor);
|
|
|
|
p->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-11 23:03:51 +04:00
|
|
|
PDNSRequestParent*
|
|
|
|
NeckoParent::AllocPDNSRequestParent(const nsCString& aHost,
|
2017-02-14 07:25:35 +03:00
|
|
|
const OriginAttributes& aOriginAttributes,
|
2015-02-19 08:14:00 +03:00
|
|
|
const uint32_t& aFlags,
|
|
|
|
const nsCString& aNetworkInterface)
|
2013-12-11 23:03:51 +04:00
|
|
|
{
|
|
|
|
DNSRequestParent *p = new DNSRequestParent();
|
|
|
|
p->AddRef();
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2013-12-11 23:03:51 +04:00
|
|
|
NeckoParent::RecvPDNSRequestConstructor(PDNSRequestParent* aActor,
|
|
|
|
const nsCString& aHost,
|
2017-02-14 07:25:35 +03:00
|
|
|
const OriginAttributes& aOriginAttributes,
|
2015-02-19 08:14:00 +03:00
|
|
|
const uint32_t& aFlags,
|
|
|
|
const nsCString& aNetworkInterface)
|
2013-12-11 23:03:51 +04:00
|
|
|
{
|
2017-02-14 07:25:35 +03:00
|
|
|
static_cast<DNSRequestParent*>(aActor)->DoAsyncResolve(aHost,
|
|
|
|
aOriginAttributes,
|
|
|
|
aFlags,
|
2015-02-19 08:14:00 +03:00
|
|
|
aNetworkInterface);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2013-12-11 23:03:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPDNSRequestParent(PDNSRequestParent* aParent)
|
|
|
|
{
|
|
|
|
DNSRequestParent *p = static_cast<DNSRequestParent*>(aParent);
|
|
|
|
p->Release();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2016-10-24 07:18:25 +03:00
|
|
|
NeckoParent::RecvSpeculativeConnect(const URIParams& aURI,
|
|
|
|
const Principal& aPrincipal,
|
|
|
|
const bool& aAnonymous)
|
2015-02-21 01:01:36 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsISpeculativeConnect> speculator(gIOService);
|
|
|
|
nsCOMPtr<nsIURI> uri = DeserializeURI(aURI);
|
2016-10-24 07:18:25 +03:00
|
|
|
nsCOMPtr<nsIPrincipal> principal(aPrincipal);
|
2015-02-21 01:01:36 +03:00
|
|
|
if (uri && speculator) {
|
2015-05-06 04:15:36 +03:00
|
|
|
if (aAnonymous) {
|
2016-10-24 07:18:25 +03:00
|
|
|
speculator->SpeculativeAnonymousConnect2(uri, principal, nullptr);
|
2015-05-06 04:15:36 +03:00
|
|
|
} else {
|
2016-10-24 07:18:25 +03:00
|
|
|
speculator->SpeculativeConnect2(uri, principal, nullptr);
|
2015-05-06 04:15:36 +03:00
|
|
|
}
|
|
|
|
|
2015-02-21 01:01:36 +03:00
|
|
|
}
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-02-21 01:01:36 +03:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2010-07-26 22:49:09 +04:00
|
|
|
NeckoParent::RecvHTMLDNSPrefetch(const nsString& hostname,
|
2017-02-15 12:48:15 +03:00
|
|
|
const OriginAttributes& aOriginAttributes,
|
2012-08-22 19:56:38 +04:00
|
|
|
const uint16_t& flags)
|
2010-07-26 22:49:09 +04:00
|
|
|
{
|
2017-02-15 05:39:40 +03:00
|
|
|
nsHTMLDNSPrefetch::Prefetch(hostname, aOriginAttributes, flags);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2012-01-21 03:14:46 +04:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2012-01-21 03:14:46 +04:00
|
|
|
NeckoParent::RecvCancelHTMLDNSPrefetch(const nsString& hostname,
|
2017-02-15 12:48:15 +03:00
|
|
|
const OriginAttributes& aOriginAttributes,
|
|
|
|
const uint16_t& flags,
|
|
|
|
const nsresult& reason)
|
2012-01-21 03:14:46 +04:00
|
|
|
{
|
2017-02-15 05:39:40 +03:00
|
|
|
nsHTMLDNSPrefetch::CancelPrefetch(hostname, aOriginAttributes, flags, reason);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2010-07-26 22:49:09 +04:00
|
|
|
}
|
|
|
|
|
2014-03-11 02:04:28 +04:00
|
|
|
PChannelDiverterParent*
|
|
|
|
NeckoParent::AllocPChannelDiverterParent(const ChannelDiverterArgs& channel)
|
|
|
|
{
|
|
|
|
return new ChannelDiverterParent();
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2014-03-11 02:04:28 +04:00
|
|
|
NeckoParent::RecvPChannelDiverterConstructor(PChannelDiverterParent* actor,
|
|
|
|
const ChannelDiverterArgs& channel)
|
|
|
|
{
|
|
|
|
auto parent = static_cast<ChannelDiverterParent*>(actor);
|
|
|
|
parent->Init(channel);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2014-03-11 02:04:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPChannelDiverterParent(PChannelDiverterParent* parent)
|
|
|
|
{
|
|
|
|
delete static_cast<ChannelDiverterParent*>(parent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-07 12:46:03 +03:00
|
|
|
PTransportProviderParent*
|
|
|
|
NeckoParent::AllocPTransportProviderParent()
|
|
|
|
{
|
|
|
|
RefPtr<TransportProviderParent> res = new TransportProviderParent();
|
|
|
|
return res.forget().take();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
NeckoParent::DeallocPTransportProviderParent(PTransportProviderParent* aActor)
|
|
|
|
{
|
|
|
|
RefPtr<TransportProviderParent> provider =
|
|
|
|
dont_AddRef(static_cast<TransportProviderParent*>(aActor));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-06-11 09:44:36 +04:00
|
|
|
namespace {
|
|
|
|
std::map<uint64_t, nsCOMPtr<nsIAuthPromptCallback> >&
|
|
|
|
CallbackMap()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
static std::map<uint64_t, nsCOMPtr<nsIAuthPromptCallback> > sCallbackMap;
|
|
|
|
return sCallbackMap;
|
|
|
|
}
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace
|
2014-06-11 09:44:36 +04:00
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(NeckoParent::NestedFrameAuthPrompt, nsIAuthPrompt2)
|
|
|
|
|
|
|
|
NeckoParent::NestedFrameAuthPrompt::NestedFrameAuthPrompt(PNeckoParent* aParent,
|
2014-10-24 04:29:00 +04:00
|
|
|
TabId aNestedFrameId)
|
2014-06-11 09:44:36 +04:00
|
|
|
: mNeckoParent(aParent)
|
|
|
|
, mNestedFrameId(aNestedFrameId)
|
|
|
|
{}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
NeckoParent::NestedFrameAuthPrompt::AsyncPromptAuth(
|
|
|
|
nsIChannel* aChannel, nsIAuthPromptCallback* callback,
|
|
|
|
nsISupports*, uint32_t,
|
|
|
|
nsIAuthInformation* aInfo, nsICancelable**)
|
|
|
|
{
|
|
|
|
static uint64_t callbackId = 0;
|
2015-07-04 04:29:00 +03:00
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
2014-06-11 09:44:36 +04:00
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
nsresult rv = aChannel->GetURI(getter_AddRefs(uri));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsAutoCString spec;
|
|
|
|
if (uri) {
|
|
|
|
rv = uri->GetSpec(spec);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
nsString realm;
|
|
|
|
rv = aInfo->GetRealm(realm);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
callbackId++;
|
|
|
|
if (mNeckoParent->SendAsyncAuthPromptForNestedFrame(mNestedFrameId,
|
|
|
|
spec,
|
|
|
|
realm,
|
|
|
|
callbackId)) {
|
|
|
|
CallbackMap()[callbackId] = callback;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2014-06-11 09:44:36 +04:00
|
|
|
NeckoParent::RecvOnAuthAvailable(const uint64_t& aCallbackId,
|
|
|
|
const nsString& aUser,
|
|
|
|
const nsString& aPassword,
|
|
|
|
const nsString& aDomain)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIAuthPromptCallback> callback = CallbackMap()[aCallbackId];
|
|
|
|
if (!callback) {
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2014-06-11 09:44:36 +04:00
|
|
|
}
|
|
|
|
CallbackMap().erase(aCallbackId);
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsAuthInformationHolder> holder =
|
2014-06-11 09:44:36 +04:00
|
|
|
new nsAuthInformationHolder(0, EmptyString(), EmptyCString());
|
|
|
|
holder->SetUsername(aUser);
|
|
|
|
holder->SetPassword(aPassword);
|
|
|
|
holder->SetDomain(aDomain);
|
|
|
|
|
|
|
|
callback->OnAuthAvailable(nullptr, holder);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2014-06-11 09:44:36 +04:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2014-06-11 09:44:36 +04:00
|
|
|
NeckoParent::RecvOnAuthCancelled(const uint64_t& aCallbackId,
|
|
|
|
const bool& aUserCancel)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIAuthPromptCallback> callback = CallbackMap()[aCallbackId];
|
|
|
|
if (!callback) {
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2014-06-11 09:44:36 +04:00
|
|
|
}
|
|
|
|
CallbackMap().erase(aCallbackId);
|
|
|
|
callback->OnAuthCancelled(nullptr, aUserCancel);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2014-06-11 09:44:36 +04:00
|
|
|
}
|
|
|
|
|
2015-06-18 12:23:00 +03:00
|
|
|
/* Predictor Messages */
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2015-06-18 12:23:00 +03:00
|
|
|
NeckoParent::RecvPredPredict(const ipc::OptionalURIParams& aTargetURI,
|
|
|
|
const ipc::OptionalURIParams& aSourceURI,
|
|
|
|
const uint32_t& aReason,
|
2017-02-03 06:16:00 +03:00
|
|
|
const OriginAttributes& aOriginAttributes,
|
2015-06-18 12:23:00 +03:00
|
|
|
const bool& hasVerifier)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIURI> targetURI = DeserializeURI(aTargetURI);
|
|
|
|
nsCOMPtr<nsIURI> sourceURI = DeserializeURI(aSourceURI);
|
|
|
|
|
|
|
|
// Get the current predictor
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsINetworkPredictor> predictor =
|
|
|
|
do_GetService("@mozilla.org/network/predictor;1", &rv);
|
2016-11-15 06:26:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, IPC_FAIL_NO_REASON(this));
|
2015-06-18 12:23:00 +03:00
|
|
|
|
|
|
|
nsCOMPtr<nsINetworkPredictorVerifier> verifier;
|
|
|
|
if (hasVerifier) {
|
|
|
|
verifier = do_QueryInterface(predictor);
|
|
|
|
}
|
2017-02-03 06:16:00 +03:00
|
|
|
predictor->PredictNative(targetURI, sourceURI, aReason, aOriginAttributes, verifier);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-06-18 12:23:00 +03:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2015-06-18 12:23:00 +03:00
|
|
|
NeckoParent::RecvPredLearn(const ipc::URIParams& aTargetURI,
|
|
|
|
const ipc::OptionalURIParams& aSourceURI,
|
|
|
|
const uint32_t& aReason,
|
2017-02-03 06:16:00 +03:00
|
|
|
const OriginAttributes& aOriginAttributes)
|
2015-06-18 12:23:00 +03:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIURI> targetURI = DeserializeURI(aTargetURI);
|
|
|
|
nsCOMPtr<nsIURI> sourceURI = DeserializeURI(aSourceURI);
|
|
|
|
|
|
|
|
// Get the current predictor
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsINetworkPredictor> predictor =
|
|
|
|
do_GetService("@mozilla.org/network/predictor;1", &rv);
|
2016-11-15 06:26:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, IPC_FAIL_NO_REASON(this));
|
2015-06-18 12:23:00 +03:00
|
|
|
|
2017-02-03 06:16:00 +03:00
|
|
|
predictor->LearnNative(targetURI, sourceURI, aReason, aOriginAttributes);
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-06-18 12:23:00 +03:00
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2015-06-18 12:23:00 +03:00
|
|
|
NeckoParent::RecvPredReset()
|
|
|
|
{
|
|
|
|
// Get the current predictor
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsINetworkPredictor> predictor =
|
|
|
|
do_GetService("@mozilla.org/network/predictor;1", &rv);
|
2016-11-15 06:26:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, IPC_FAIL_NO_REASON(this));
|
2015-06-18 12:23:00 +03:00
|
|
|
|
|
|
|
predictor->Reset();
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-06-18 12:23:00 +03:00
|
|
|
}
|
|
|
|
|
2017-08-30 16:32:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
|
|
|
NeckoParent::RecvRequestContextLoadBegin(const uint64_t& rcid)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIRequestContextService> rcsvc =
|
|
|
|
do_GetService("@mozilla.org/network/request-context-service;1");
|
|
|
|
if (!rcsvc) {
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIRequestContext> rc;
|
|
|
|
rcsvc->GetRequestContext(rcid, getter_AddRefs(rc));
|
|
|
|
if (rc) {
|
|
|
|
rc->BeginLoad();
|
|
|
|
}
|
|
|
|
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::ipc::IPCResult
|
|
|
|
NeckoParent::RecvRequestContextAfterDOMContentLoaded(const uint64_t& rcid)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIRequestContextService> rcsvc =
|
|
|
|
do_GetService("@mozilla.org/network/request-context-service;1");
|
|
|
|
if (!rcsvc) {
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsIRequestContext> rc;
|
|
|
|
rcsvc->GetRequestContext(rcid, getter_AddRefs(rc));
|
|
|
|
if (rc) {
|
|
|
|
rc->DOMContentLoaded();
|
|
|
|
}
|
|
|
|
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
mozilla::ipc::IPCResult
|
2017-03-23 17:40:36 +03:00
|
|
|
NeckoParent::RecvRemoveRequestContext(const uint64_t& rcid)
|
2015-07-31 23:50:08 +03:00
|
|
|
{
|
2016-04-21 17:59:17 +03:00
|
|
|
nsCOMPtr<nsIRequestContextService> rcsvc =
|
|
|
|
do_GetService("@mozilla.org/network/request-context-service;1");
|
|
|
|
if (!rcsvc) {
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-07-31 23:50:08 +03:00
|
|
|
}
|
|
|
|
|
2017-03-23 17:40:36 +03:00
|
|
|
rcsvc->RemoveRequestContext(rcid);
|
2015-07-31 23:50:08 +03:00
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
return IPC_OK();
|
2015-07-31 23:50:08 +03:00
|
|
|
}
|
|
|
|
|
2017-06-24 03:10:54 +03:00
|
|
|
mozilla::ipc::IPCResult
|
|
|
|
NeckoParent::RecvGetExtensionStream(const URIParams& aURI,
|
|
|
|
GetExtensionStreamResolver&& aResolve)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIURI> deserializedURI = DeserializeURI(aURI);
|
|
|
|
if (!deserializedURI) {
|
|
|
|
return IPC_FAIL_NO_REASON(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<ExtensionProtocolHandler> ph(ExtensionProtocolHandler::GetSingleton());
|
|
|
|
MOZ_ASSERT(ph);
|
|
|
|
|
|
|
|
// Ask the ExtensionProtocolHandler to give us a new input stream for
|
|
|
|
// this URI. The request comes from an ExtensionProtocolHandler in the
|
|
|
|
// child process, but is not guaranteed to be a valid moz-extension URI,
|
|
|
|
// and not guaranteed to represent a resource that the child should be
|
|
|
|
// allowed to access. The ExtensionProtocolHandler is responsible for
|
|
|
|
// validating the request. Specifically, only URI's for local files that
|
|
|
|
// an extension is allowed to access via moz-extension URI's should be
|
|
|
|
// accepted.
|
|
|
|
AutoIPCStream autoStream;
|
|
|
|
nsCOMPtr<nsIInputStream> inputStream;
|
|
|
|
bool terminateSender = true;
|
2017-07-20 21:49:29 +03:00
|
|
|
auto inputStreamOrReason = ph->NewStream(deserializedURI, &terminateSender);
|
2017-06-24 03:10:54 +03:00
|
|
|
if (inputStreamOrReason.isOk()) {
|
|
|
|
inputStream = inputStreamOrReason.unwrap();
|
|
|
|
ContentParent* contentParent = static_cast<ContentParent*>(Manager());
|
|
|
|
Unused << autoStream.Serialize(inputStream, contentParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If NewStream failed, we send back an invalid stream to the child so
|
|
|
|
// it can handle the error. MozPromise rejection is reserved for channel
|
|
|
|
// errors/disconnects.
|
|
|
|
aResolve(autoStream.TakeOptionalValue());
|
|
|
|
|
|
|
|
if (terminateSender) {
|
|
|
|
return IPC_FAIL_NO_REASON(this);
|
|
|
|
} else {
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::ipc::IPCResult
|
|
|
|
NeckoParent::RecvGetExtensionFD(const URIParams& aURI,
|
|
|
|
GetExtensionFDResolver&& aResolve)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIURI> deserializedURI = DeserializeURI(aURI);
|
|
|
|
if (!deserializedURI) {
|
|
|
|
return IPC_FAIL_NO_REASON(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<ExtensionProtocolHandler> ph(ExtensionProtocolHandler::GetSingleton());
|
|
|
|
MOZ_ASSERT(ph);
|
|
|
|
|
|
|
|
// Ask the ExtensionProtocolHandler to give us a new input stream for
|
|
|
|
// this URI. The request comes from an ExtensionProtocolHandler in the
|
|
|
|
// child process, but is not guaranteed to be a valid moz-extension URI,
|
|
|
|
// and not guaranteed to represent a resource that the child should be
|
|
|
|
// allowed to access. The ExtensionProtocolHandler is responsible for
|
|
|
|
// validating the request. Specifically, only URI's for local files that
|
|
|
|
// an extension is allowed to access via moz-extension URI's should be
|
|
|
|
// accepted.
|
|
|
|
bool terminateSender = true;
|
2017-07-20 21:49:29 +03:00
|
|
|
auto result = ph->NewFD(deserializedURI, &terminateSender, aResolve);
|
2017-06-24 03:10:54 +03:00
|
|
|
|
|
|
|
if (result.isErr() && terminateSender) {
|
|
|
|
return IPC_FAIL_NO_REASON(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result.isErr()) {
|
|
|
|
FileDescriptor invalidFD;
|
|
|
|
aResolve(invalidFD);
|
|
|
|
}
|
|
|
|
|
|
|
|
return IPC_OK();
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|