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
|
/* -*- 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 "mozilla/dom/cache/CacheStorageParent.h"
#include "mozilla/ErrorResult.h"
#include "mozilla/Unused.h"
#include "mozilla/dom/cache/ActorUtils.h"
#include "mozilla/dom/cache/CacheOpParent.h"
#include "mozilla/dom/cache/ManagerId.h"
#include "mozilla/dom/quota/PrincipalUtils.h"
#include "mozilla/ipc/PBackgroundParent.h"
namespace mozilla::dom::cache {
using mozilla::ipc::PBackgroundParent;
using mozilla::ipc::PrincipalInfo;
// declared in ActorUtils.h
already_AddRefed<PCacheStorageParent> AllocPCacheStorageParent(
mozilla::ipc::PBackgroundParent* aBackgroundIPCActor,
PBoundStorageKeyParent* aBoundStorageKeyActor, Namespace aNamespace,
const mozilla::ipc::PrincipalInfo& aPrincipalInfo) {
if (NS_WARN_IF(!quota::IsPrincipalInfoValid(aPrincipalInfo))) {
MOZ_ASSERT(false);
return nullptr;
}
return MakeAndAddRef<CacheStorageParent>(
aBackgroundIPCActor, aBoundStorageKeyActor, aNamespace, aPrincipalInfo);
}
// declared in ActorUtils.h
void DeallocPCacheStorageParent(PCacheStorageParent* aActor) { delete aActor; }
CacheStorageParent::CacheStorageParent(
mozilla::ipc::PBackgroundParent* aIPCActor,
PBoundStorageKeyParent* aBoundStorageKeyActor, Namespace aNamespace,
const PrincipalInfo& aPrincipalInfo)
: mBackgroundIPCActor(aIPCActor),
mBoundStorageKeyActor(aBoundStorageKeyActor),
mNamespace(aNamespace),
mVerifiedStatus(NS_OK) {
MOZ_COUNT_CTOR(cache::CacheStorageParent);
MOZ_DIAGNOSTIC_ASSERT(mBackgroundIPCActor);
// Start the async principal verification process immediately.
mVerifier = PrincipalVerifier::CreateAndDispatch(*this, mBackgroundIPCActor,
aPrincipalInfo);
MOZ_DIAGNOSTIC_ASSERT(mVerifier);
}
CacheStorageParent::~CacheStorageParent() {
MOZ_COUNT_DTOR(cache::CacheStorageParent);
MOZ_DIAGNOSTIC_ASSERT(!mVerifier);
}
void CacheStorageParent::ActorDestroy(ActorDestroyReason aReason) {
if (mVerifier) {
mVerifier->RemoveListener(*this);
mVerifier = nullptr;
}
}
PCacheOpParent* CacheStorageParent::AllocPCacheOpParent(
const CacheOpArgs& aOpArgs) {
if (aOpArgs.type() != CacheOpArgs::TStorageMatchArgs &&
aOpArgs.type() != CacheOpArgs::TStorageHasArgs &&
aOpArgs.type() != CacheOpArgs::TStorageOpenArgs &&
aOpArgs.type() != CacheOpArgs::TStorageDeleteArgs &&
aOpArgs.type() != CacheOpArgs::TStorageKeysArgs) {
MOZ_CRASH("Invalid operation sent to CacheStorage actor!");
}
return new CacheOpParent(mBoundStorageKeyActor
? WeakRefParentType(mBoundStorageKeyActor)
: WeakRefParentType(mBackgroundIPCActor),
aOpArgs, INVALID_CACHE_ID, mNamespace);
}
bool CacheStorageParent::DeallocPCacheOpParent(PCacheOpParent* aActor) {
delete aActor;
return true;
}
mozilla::ipc::IPCResult CacheStorageParent::RecvPCacheOpConstructor(
PCacheOpParent* aActor, const CacheOpArgs& aOpArgs) {
auto actor = static_cast<CacheOpParent*>(aActor);
if (mVerifier) {
MOZ_DIAGNOSTIC_ASSERT(!mManagerId);
actor->WaitForVerification(mVerifier);
return IPC_OK();
}
if (NS_WARN_IF(NS_FAILED(mVerifiedStatus))) {
QM_WARNONLY_TRY(OkIf(CacheOpParent::Send__delete__(
actor, CopyableErrorResult(mVerifiedStatus), void_t())));
return IPC_OK();
}
MOZ_DIAGNOSTIC_ASSERT(mManagerId);
actor->Execute(mManagerId);
return IPC_OK();
}
mozilla::ipc::IPCResult CacheStorageParent::RecvTeardown() {
// If child process is gone, warn and allow actor to clean up normally
QM_WARNONLY_TRY(OkIf(Send__delete__(this)));
return IPC_OK();
}
void CacheStorageParent::OnPrincipalVerified(
nsresult aRv, const SafeRefPtr<ManagerId>& aManagerId) {
MOZ_DIAGNOSTIC_ASSERT(mVerifier);
MOZ_DIAGNOSTIC_ASSERT(!mManagerId);
MOZ_DIAGNOSTIC_ASSERT(NS_SUCCEEDED(mVerifiedStatus));
if (NS_WARN_IF(NS_FAILED(aRv))) {
mVerifiedStatus = aRv;
}
mManagerId = aManagerId.clonePtr();
mVerifier->RemoveListener(*this);
mVerifier = nullptr;
}
} // namespace mozilla::dom::cache
|