2019-08-23 07:49:14 +03:00
|
|
|
/* -*- 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 "Client.h"
|
|
|
|
|
2020-10-21 16:16:19 +03:00
|
|
|
// Global includes
|
2020-11-26 12:20:03 +03:00
|
|
|
#include "BackgroundParent.h"
|
2020-10-21 16:16:19 +03:00
|
|
|
#include "mozilla/Assertions.h"
|
2020-11-26 12:20:03 +03:00
|
|
|
#include "mozilla/SpinEventLoopUntil.h"
|
2020-10-21 16:16:19 +03:00
|
|
|
|
2020-11-04 20:04:01 +03:00
|
|
|
namespace mozilla::dom::quota {
|
2019-08-23 07:49:14 +03:00
|
|
|
|
2020-11-26 12:20:03 +03:00
|
|
|
using mozilla::ipc::AssertIsOnBackgroundThread;
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
namespace {
|
|
|
|
|
2019-08-25 04:34:37 +03:00
|
|
|
const char kIDBPrefix = 'I';
|
|
|
|
const char kDOMCachePrefix = 'C';
|
|
|
|
const char kSDBPrefix = 'S';
|
|
|
|
const char kLSPrefix = 'L';
|
|
|
|
|
2020-11-26 12:20:03 +03:00
|
|
|
/**
|
|
|
|
* If shutdown takes this long, kill actors of a quota client, to avoid reaching
|
|
|
|
* the crash timeout.
|
|
|
|
*/
|
|
|
|
#define SHUTDOWN_FORCE_KILL_TIMEOUT_MS 5000
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Automatically crash the browser if shutdown of a quota client takes this
|
|
|
|
* long. We've chosen a value that is longer than the value for QuotaManager
|
|
|
|
* shutdown timer which is currently set to 30 seconds, so that the QuotaManager
|
|
|
|
* abort may still make the quota client's shutdown complete in time. We've
|
|
|
|
* also chosen a value that is long enough that it is unlikely for the problem
|
|
|
|
* to be falsely triggered by slow system I/O. We've also chosen a value long
|
|
|
|
* enough so that automated tests should time out and fail if shutdown of a
|
|
|
|
* quota client takes too long. Also, this value is long enough so that testers
|
|
|
|
* can notice the timeout; we want to know about the timeouts, not hide them. On
|
|
|
|
* the other hand this value is less than 60 seconds which is used by
|
|
|
|
* nsTerminator to crash a hung main process.
|
|
|
|
*/
|
|
|
|
#define SHUTDOWN_FORCE_CRASH_TIMEOUT_MS 45000
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
template <Client::Type type>
|
|
|
|
struct ClientTypeTraits;
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ClientTypeTraits<Client::Type::IDB> {
|
|
|
|
template <typename T>
|
|
|
|
static void To(T& aData) {
|
|
|
|
aData.AssignLiteral(IDB_DIRECTORY_NAME);
|
|
|
|
}
|
|
|
|
|
2019-08-25 04:34:37 +03:00
|
|
|
static void To(char& aData) { aData = kIDBPrefix; }
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
template <typename T>
|
|
|
|
static bool From(const T& aData) {
|
|
|
|
return aData.EqualsLiteral(IDB_DIRECTORY_NAME);
|
|
|
|
}
|
2019-08-25 04:34:37 +03:00
|
|
|
|
|
|
|
static bool From(char aData) { return aData == kIDBPrefix; }
|
2019-08-23 07:49:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ClientTypeTraits<Client::Type::DOMCACHE> {
|
|
|
|
template <typename T>
|
|
|
|
static void To(T& aData) {
|
|
|
|
aData.AssignLiteral(DOMCACHE_DIRECTORY_NAME);
|
|
|
|
}
|
|
|
|
|
2019-08-25 04:34:37 +03:00
|
|
|
static void To(char& aData) { aData = kDOMCachePrefix; }
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
template <typename T>
|
|
|
|
static bool From(const T& aData) {
|
|
|
|
return aData.EqualsLiteral(DOMCACHE_DIRECTORY_NAME);
|
|
|
|
}
|
2019-08-25 04:34:37 +03:00
|
|
|
|
|
|
|
static bool From(char aData) { return aData == kDOMCachePrefix; }
|
2019-08-23 07:49:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ClientTypeTraits<Client::Type::SDB> {
|
|
|
|
template <typename T>
|
|
|
|
static void To(T& aData) {
|
|
|
|
aData.AssignLiteral(SDB_DIRECTORY_NAME);
|
|
|
|
}
|
|
|
|
|
2019-08-25 04:34:37 +03:00
|
|
|
static void To(char& aData) { aData = kSDBPrefix; }
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
template <typename T>
|
|
|
|
static bool From(const T& aData) {
|
|
|
|
return aData.EqualsLiteral(SDB_DIRECTORY_NAME);
|
|
|
|
}
|
2019-08-25 04:34:37 +03:00
|
|
|
|
|
|
|
static bool From(char aData) { return aData == kSDBPrefix; }
|
2019-08-23 07:49:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct ClientTypeTraits<Client::Type::LS> {
|
|
|
|
template <typename T>
|
|
|
|
static void To(T& aData) {
|
|
|
|
aData.AssignLiteral(LS_DIRECTORY_NAME);
|
|
|
|
}
|
|
|
|
|
2019-08-25 04:34:37 +03:00
|
|
|
static void To(char& aData) { aData = kLSPrefix; }
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
template <typename T>
|
|
|
|
static bool From(const T& aData) {
|
|
|
|
return aData.EqualsLiteral(LS_DIRECTORY_NAME);
|
|
|
|
}
|
2019-08-25 04:34:37 +03:00
|
|
|
|
|
|
|
static bool From(char aData) { return aData == kLSPrefix; }
|
2019-08-23 07:49:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool TypeTo_impl(Client::Type aType, T& aData) {
|
|
|
|
switch (aType) {
|
|
|
|
case Client::IDB:
|
|
|
|
ClientTypeTraits<Client::Type::IDB>::To(aData);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case Client::DOMCACHE:
|
|
|
|
ClientTypeTraits<Client::Type::DOMCACHE>::To(aData);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case Client::SDB:
|
|
|
|
ClientTypeTraits<Client::Type::SDB>::To(aData);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case Client::LS:
|
|
|
|
if (CachedNextGenLocalStorageEnabled()) {
|
|
|
|
ClientTypeTraits<Client::Type::LS>::To(aData);
|
|
|
|
return true;
|
|
|
|
}
|
2019-12-20 10:16:43 +03:00
|
|
|
[[fallthrough]];
|
2019-08-23 07:49:14 +03:00
|
|
|
|
|
|
|
case Client::TYPE_MAX:
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_CRASH("Should never get here!");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool TypeFrom_impl(const T& aData, Client::Type& aType) {
|
|
|
|
if (ClientTypeTraits<Client::Type::IDB>::From(aData)) {
|
|
|
|
aType = Client::IDB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ClientTypeTraits<Client::Type::DOMCACHE>::From(aData)) {
|
|
|
|
aType = Client::DOMCACHE;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ClientTypeTraits<Client::Type::SDB>::From(aData)) {
|
|
|
|
aType = Client::SDB;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CachedNextGenLocalStorageEnabled() &&
|
|
|
|
ClientTypeTraits<Client::Type::LS>::From(aData)) {
|
|
|
|
aType = Client::LS;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BadType() { MOZ_CRASH("Bad client type value!"); }
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2020-03-17 16:06:30 +03:00
|
|
|
// static
|
|
|
|
bool Client::IsValidType(Type aType) {
|
|
|
|
switch (aType) {
|
|
|
|
case Client::IDB:
|
|
|
|
case Client::DOMCACHE:
|
|
|
|
case Client::SDB:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case Client::LS:
|
|
|
|
if (CachedNextGenLocalStorageEnabled()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
[[fallthrough]];
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-23 07:49:14 +03:00
|
|
|
// static
|
|
|
|
bool Client::TypeToText(Type aType, nsAString& aText, const fallible_t&) {
|
|
|
|
nsString text;
|
|
|
|
if (!TypeTo_impl(aType, text)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aText = text;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2020-11-30 13:47:02 +03:00
|
|
|
nsAutoCString Client::TypeToText(Type aType) {
|
|
|
|
nsAutoCString res;
|
|
|
|
if (!TypeTo_impl(aType, res)) {
|
2019-08-23 07:49:14 +03:00
|
|
|
BadType();
|
|
|
|
}
|
2020-11-30 13:47:02 +03:00
|
|
|
return res;
|
2019-08-23 07:49:14 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool Client::TypeFromText(const nsAString& aText, Type& aType,
|
|
|
|
const fallible_t&) {
|
|
|
|
Type type;
|
|
|
|
if (!TypeFrom_impl(aText, type)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aType = type;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
Client::Type Client::TypeFromText(const nsACString& aText) {
|
|
|
|
Type type;
|
|
|
|
if (!TypeFrom_impl(aText, type)) {
|
|
|
|
BadType();
|
|
|
|
}
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
2019-08-25 04:34:37 +03:00
|
|
|
// static
|
|
|
|
char Client::TypeToPrefix(Type aType) {
|
|
|
|
char prefix;
|
|
|
|
if (!TypeTo_impl(aType, prefix)) {
|
|
|
|
BadType();
|
|
|
|
}
|
|
|
|
return prefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
bool Client::TypeFromPrefix(char aPrefix, Type& aType, const fallible_t&) {
|
|
|
|
Type type;
|
|
|
|
if (!TypeFrom_impl(aPrefix, type)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aType = type;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-11-30 13:54:29 +03:00
|
|
|
void Client::MaybeRecordShutdownStep(const nsACString& aStepDescription) {
|
|
|
|
AssertIsOnBackgroundThread();
|
|
|
|
|
|
|
|
if (!mShutdownStartedAt) {
|
|
|
|
// We are not shutting down yet, we intentionally ignore this here to avoid
|
|
|
|
// that every caller has to make a distinction for shutdown vs. non-shutdown
|
|
|
|
// situations.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const TimeDuration elapsedSinceShutdownStart =
|
|
|
|
TimeStamp::NowLoRes() - *mShutdownStartedAt;
|
|
|
|
|
|
|
|
const auto stepString =
|
|
|
|
nsPrintfCString("%fs: %s", elapsedSinceShutdownStart.ToSeconds(),
|
|
|
|
nsPromiseFlatCString(aStepDescription).get());
|
|
|
|
|
|
|
|
mShutdownSteps.Append(stepString + "\n"_ns);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// XXX Probably this isn't the mechanism that should be used here.
|
|
|
|
|
|
|
|
NS_DebugBreak(
|
|
|
|
NS_DEBUG_WARNING,
|
|
|
|
nsAutoCString(TypeToText(GetType()) + " shutdown step"_ns).get(),
|
|
|
|
stepString.get(), __FILE__, __LINE__);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-12-07 17:49:36 +03:00
|
|
|
bool Client::InitiateShutdownWorkThreads() {
|
2020-11-26 12:20:03 +03:00
|
|
|
AssertIsOnBackgroundThread();
|
2020-12-07 17:49:36 +03:00
|
|
|
MOZ_ASSERT(!mShutdownTimer);
|
2020-11-30 13:54:29 +03:00
|
|
|
MOZ_ASSERT(mShutdownSteps.IsEmpty());
|
|
|
|
|
|
|
|
mShutdownStartedAt.init(TimeStamp::NowLoRes());
|
|
|
|
|
|
|
|
MaybeRecordShutdownStep("starting"_ns);
|
2020-11-26 12:20:03 +03:00
|
|
|
|
|
|
|
InitiateShutdown();
|
|
|
|
|
|
|
|
if (!IsShutdownCompleted()) {
|
2020-12-07 17:49:36 +03:00
|
|
|
mShutdownTimer = NS_NewTimer();
|
2020-11-26 12:20:03 +03:00
|
|
|
|
2020-12-07 17:49:36 +03:00
|
|
|
MOZ_ALWAYS_SUCCEEDS(mShutdownTimer->InitWithNamedFuncCallback(
|
2020-11-26 12:20:03 +03:00
|
|
|
[](nsITimer* aTimer, void* aClosure) {
|
|
|
|
auto* const quotaClient = static_cast<Client*>(aClosure);
|
|
|
|
|
|
|
|
quotaClient->ForceKillActors();
|
|
|
|
|
|
|
|
MOZ_ALWAYS_SUCCEEDS(aTimer->InitWithNamedFuncCallback(
|
|
|
|
[](nsITimer* aTimer, void* aClosure) {
|
|
|
|
auto* const quotaClient = static_cast<Client*>(aClosure);
|
|
|
|
|
|
|
|
MOZ_DIAGNOSTIC_ASSERT(!quotaClient->IsShutdownCompleted());
|
2020-11-30 13:40:59 +03:00
|
|
|
|
2020-11-30 13:47:02 +03:00
|
|
|
const auto type = TypeToText(quotaClient->GetType());
|
2020-11-30 13:40:59 +03:00
|
|
|
|
|
|
|
CrashReporter::AnnotateCrashReport(
|
|
|
|
CrashReporter::Annotation::QuotaManagerShutdownTimeout,
|
2020-11-30 13:54:29 +03:00
|
|
|
nsPrintfCString("%s: %s\nIntermediate steps:\n%s",
|
|
|
|
type.get(),
|
|
|
|
quotaClient->GetShutdownStatus().get(),
|
|
|
|
quotaClient->mShutdownSteps.get()));
|
2020-11-30 13:40:59 +03:00
|
|
|
|
|
|
|
MOZ_CRASH_UNSAFE_PRINTF("%s shutdown timed out", type.get());
|
2020-11-26 12:20:03 +03:00
|
|
|
},
|
|
|
|
aClosure, SHUTDOWN_FORCE_CRASH_TIMEOUT_MS,
|
|
|
|
nsITimer::TYPE_ONE_SHOT,
|
|
|
|
"quota::Client::ShutdownWorkThreads::ForceCrashTimer"));
|
|
|
|
},
|
|
|
|
this, SHUTDOWN_FORCE_KILL_TIMEOUT_MS, nsITimer::TYPE_ONE_SHOT,
|
|
|
|
"quota::Client::ShutdownWorkThreads::ForceKillTimer"));
|
|
|
|
|
2020-12-07 17:49:36 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Client::FinalizeShutdownWorkThreads() {
|
|
|
|
MOZ_ASSERT(mShutdownStartedAt);
|
2020-11-26 12:20:03 +03:00
|
|
|
|
2020-12-07 17:49:36 +03:00
|
|
|
if (mShutdownTimer) {
|
|
|
|
MOZ_ALWAYS_SUCCEEDS(mShutdownTimer->Cancel());
|
2020-11-26 12:20:03 +03:00
|
|
|
}
|
|
|
|
|
2020-11-30 13:54:29 +03:00
|
|
|
MaybeRecordShutdownStep("completed"_ns);
|
|
|
|
|
2020-11-26 12:20:03 +03:00
|
|
|
FinalizeShutdown();
|
|
|
|
}
|
|
|
|
|
2020-11-04 20:04:01 +03:00
|
|
|
} // namespace mozilla::dom::quota
|