1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "SharedMessageBody.h"
#include "mozilla/dom/File.h"
#include "mozilla/dom/MessagePort.h"
#include "mozilla/dom/PMessagePort.h"
#include "mozilla/dom/RefMessageBodyService.h"
#include "mozilla/ipc/BackgroundChild.h"
#include "mozilla/ipc/BackgroundParent.h"
#include "xpcpublic.h"
namespace mozilla {
using namespace ipc;
namespace dom {
SharedMessageBody::SharedMessageBody(
StructuredCloneHolder::TransferringSupport aSupportsTransferring,
const Maybe<nsID>& aAgentClusterId)
: mRefDataId(Nothing()),
mSupportsTransferring(aSupportsTransferring),
mAgentClusterId(aAgentClusterId) {}
SharedMessageBody::~SharedMessageBody() = default;
void SharedMessageBody::Write(JSContext* aCx, JS::Handle<JS::Value> aValue,
JS::Handle<JS::Value> aTransfers, nsID& aPortID,
RefMessageBodyService* aRefMessageBodyService,
ErrorResult& aRv) {
MOZ_ASSERT(!mCloneData && !mRefData);
MOZ_ASSERT(aRefMessageBodyService);
JS::CloneDataPolicy cloneDataPolicy;
// During a writing, we don't know the destination, so we assume it is part of
// the same agent cluster.
cloneDataPolicy.allowIntraClusterClonableSharedObjects();
nsIGlobalObject* global = xpc::CurrentNativeGlobal(aCx);
MOZ_ASSERT(global);
if (global->IsSharedMemoryAllowed()) {
cloneDataPolicy.allowSharedMemoryObjects();
}
mCloneData = MakeRefPtr<ipc::StructuredCloneData>(
JS::StructuredCloneScope::UnknownDestination, mSupportsTransferring);
mCloneData->Write(aCx, aValue, aTransfers, cloneDataPolicy, aRv);
if (NS_WARN_IF(aRv.Failed())) {
return;
}
if (mCloneData->CloneScope() == JS::StructuredCloneScope::DifferentProcess) {
return;
}
MOZ_ASSERT(mCloneData->CloneScope() == JS::StructuredCloneScope::SameProcess);
RefPtr<RefMessageBody> refData = new RefMessageBody(aPortID, mCloneData);
mCloneData = nullptr;
mRefDataId.emplace(aRefMessageBodyService->Register(refData.forget(), aRv));
}
void SharedMessageBody::Read(JSContext* aCx,
JS::MutableHandle<JS::Value> aValue,
RefMessageBodyService* aRefMessageBodyService,
SharedMessageBody::ReadMethod aReadMethod,
ErrorResult& aRv) {
MOZ_ASSERT(aRefMessageBodyService);
if (mCloneData) {
// Use a default cloneDataPolicy here, because SharedArrayBuffers and WASM
// are not supported.
return mCloneData->Read(aCx, aValue, JS::CloneDataPolicy(), aRv);
}
JS::CloneDataPolicy cloneDataPolicy;
nsIGlobalObject* global = xpc::CurrentNativeGlobal(aCx);
MOZ_ASSERT(global);
// Clones within the same agent cluster are allowed to use shared array
// buffers and WASM modules.
if (mAgentClusterId.isSome()) {
Maybe<nsID> agentClusterId = global->GetAgentClusterId();
if (agentClusterId.isSome() &&
mAgentClusterId.value().Equals(agentClusterId.value())) {
cloneDataPolicy.allowIntraClusterClonableSharedObjects();
}
}
if (global->IsSharedMemoryAllowed()) {
cloneDataPolicy.allowSharedMemoryObjects();
}
MOZ_ASSERT(!mRefData);
MOZ_ASSERT(mRefDataId.isSome());
if (aReadMethod == SharedMessageBody::StealRefMessageBody) {
mRefData = aRefMessageBodyService->Steal(mRefDataId.value());
} else {
MOZ_ASSERT(aReadMethod == SharedMessageBody::KeepRefMessageBody);
mRefData = aRefMessageBodyService->GetAndCount(mRefDataId.value());
}
if (!mRefData) {
aRv.Throw(NS_ERROR_DOM_DATA_CLONE_ERR);
return;
}
mRefData->Read(aCx, aValue, cloneDataPolicy, aRv);
}
bool SharedMessageBody::TakeTransferredPortsAsSequence(
Sequence<OwningNonNull<mozilla::dom::MessagePort>>& aPorts) {
if (mCloneData) {
return mCloneData->TakeTransferredPortsAsSequence(aPorts);
}
MOZ_ASSERT(mRefData);
return mRefData->TakeTransferredPortsAsSequence(aPorts);
}
} // namespace dom
} // namespace mozilla
namespace IPC {
void ParamTraits<mozilla::dom::SharedMessageBody*>::Write(
MessageWriter* aWriter, paramType* aParam) {
bool isNull = aParam == nullptr;
WriteParam(aWriter, isNull);
if (isNull) {
return;
}
bool supportsTransferring =
aParam->mSupportsTransferring ==
mozilla::dom::StructuredCloneHolder::TransferringSupported;
WriteParam(aWriter, supportsTransferring);
WriteParam(aWriter, aParam->mAgentClusterId);
WriteParam(aWriter, aParam->mCloneData);
if (!aParam->mCloneData) {
WriteParam(aWriter, aParam->mRefDataId);
}
}
bool ParamTraits<mozilla::dom::SharedMessageBody*>::Read(
MessageReader* aReader, RefPtr<paramType>* aResult) {
bool isNull;
if (!ReadParam(aReader, &isNull)) {
return false;
}
if (isNull) {
*aResult = nullptr;
return true;
}
bool supportsTransferring;
mozilla::Maybe<nsID> agentClusterId;
if (!ReadParam(aReader, &supportsTransferring) ||
!ReadParam(aReader, &agentClusterId)) {
return false;
}
RefPtr<paramType> result = new mozilla::dom::SharedMessageBody(
supportsTransferring
? mozilla::dom::StructuredCloneHolder::TransferringSupported
: mozilla::dom::StructuredCloneHolder::TransferringNotSupported,
agentClusterId);
if (!ReadParam(aReader, &result->mCloneData) ||
(!result->mCloneData && !ReadParam(aReader, &result->mRefDataId))) {
return false;
}
*aResult = result.forget();
return true;
}
} // namespace IPC
|