2015-05-03 22:32:37 +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: */
|
2013-04-15 16:38:48 +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/. */
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
#include "StorageDBThread.h"
|
2021-08-19 18:50:39 +03:00
|
|
|
|
|
|
|
#include "StorageCommon.h"
|
2017-01-04 16:53:01 +03:00
|
|
|
#include "StorageDBUpdater.h"
|
2017-05-17 08:01:14 +03:00
|
|
|
#include "StorageUtils.h"
|
2017-05-17 08:01:14 +03:00
|
|
|
#include "LocalStorageCache.h"
|
2017-05-17 08:01:14 +03:00
|
|
|
#include "LocalStorageManager.h"
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2020-11-23 19:21:38 +03:00
|
|
|
#include "nsComponentManagerUtils.h"
|
2013-04-15 16:38:48 +04:00
|
|
|
#include "nsDirectoryServiceUtils.h"
|
|
|
|
#include "nsAppDirectoryServiceDefs.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsProxyRelease.h"
|
|
|
|
#include "mozStorageCID.h"
|
|
|
|
#include "mozStorageHelper.h"
|
|
|
|
#include "mozIStorageService.h"
|
|
|
|
#include "mozIStorageBindingParams.h"
|
|
|
|
#include "mozIStorageValueArray.h"
|
|
|
|
#include "mozIStorageFunction.h"
|
2016-01-05 15:25:00 +03:00
|
|
|
#include "mozilla/BasePrincipal.h"
|
2017-07-26 13:19:13 +03:00
|
|
|
#include "mozilla/ipc/BackgroundParent.h"
|
2013-04-15 16:38:48 +04:00
|
|
|
#include "nsIObserverService.h"
|
2018-07-28 01:13:12 +03:00
|
|
|
#include "nsThread.h"
|
|
|
|
#include "nsThreadManager.h"
|
2015-10-07 18:17:42 +03:00
|
|
|
#include "nsVariant.h"
|
2018-07-28 01:13:12 +03:00
|
|
|
#include "mozilla/EventQueue.h"
|
2014-04-09 08:57:52 +04:00
|
|
|
#include "mozilla/IOInterposer.h"
|
2020-07-22 18:12:10 +03:00
|
|
|
#include "mozilla/OriginAttributes.h"
|
2018-07-28 01:13:12 +03:00
|
|
|
#include "mozilla/ThreadEventQueue.h"
|
2013-04-15 16:38:48 +04:00
|
|
|
#include "mozilla/Services.h"
|
2016-01-05 15:25:00 +03:00
|
|
|
#include "mozilla/Tokenizer.h"
|
2017-01-05 18:34:26 +03:00
|
|
|
#include "GeckoProfiler.h"
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
// How long we collect write oprerations
|
|
|
|
// before they are flushed to the database
|
|
|
|
// In milliseconds.
|
|
|
|
#define FLUSHING_INTERVAL_MS 5000
|
|
|
|
|
2013-04-15 16:38:58 +04:00
|
|
|
// Write Ahead Log's maximum size is 512KB
|
|
|
|
#define MAX_WAL_SIZE_BYTES 512 * 1024
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
// Current version of the database schema
|
2016-11-09 04:12:22 +03:00
|
|
|
#define CURRENT_SCHEMA_VERSION 2
|
2016-01-05 15:25:00 +03:00
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2017-05-17 08:01:14 +03:00
|
|
|
using namespace StorageUtils;
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
namespace { // anon
|
|
|
|
|
2021-08-19 18:50:39 +03:00
|
|
|
StorageDBThread* sStorageThread[kPrivateBrowsingIdCount] = {nullptr, nullptr};
|
2017-07-26 13:19:13 +03:00
|
|
|
|
|
|
|
// False until we shut the storage thread down.
|
2021-08-19 18:50:39 +03:00
|
|
|
bool sStorageThreadDown[kPrivateBrowsingIdCount] = {false, false};
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
} // namespace
|
|
|
|
|
2017-07-26 13:19:13 +03:00
|
|
|
// XXX Fix me!
|
|
|
|
#if 0
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBBridge::StorageDBBridge()
|
2013-04-15 16:38:48 +04:00
|
|
|
{
|
|
|
|
}
|
2017-07-26 13:19:13 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
class StorageDBThread::InitHelper final : public Runnable {
|
|
|
|
nsCOMPtr<nsIEventTarget> mOwningThread;
|
2022-03-16 21:47:08 +03:00
|
|
|
mozilla::Mutex mMutex MOZ_UNANNOTATED;
|
2017-07-26 13:19:13 +03:00
|
|
|
mozilla::CondVar mCondVar;
|
|
|
|
nsString mProfilePath;
|
|
|
|
nsresult mMainThreadResultCode;
|
|
|
|
bool mWaiting;
|
|
|
|
|
|
|
|
public:
|
|
|
|
InitHelper()
|
|
|
|
: Runnable("dom::StorageDBThread::InitHelper"),
|
2020-06-23 08:05:36 +03:00
|
|
|
mOwningThread(GetCurrentEventTarget()),
|
2017-07-26 13:19:13 +03:00
|
|
|
mMutex("InitHelper::mMutex"),
|
|
|
|
mCondVar(mMutex, "InitHelper::mCondVar"),
|
|
|
|
mMainThreadResultCode(NS_OK),
|
|
|
|
mWaiting(true) {}
|
|
|
|
|
|
|
|
// Because of the `sync Preload` IPC, we need to be able to synchronously
|
|
|
|
// initialize, which includes consulting and initializing
|
|
|
|
// some main-thread-only APIs. Bug 1386441 discusses improving this situation.
|
|
|
|
nsresult SyncDispatchAndReturnProfilePath(nsAString& aProfilePath);
|
|
|
|
|
|
|
|
private:
|
|
|
|
~InitHelper() override = default;
|
|
|
|
|
|
|
|
nsresult RunOnMainThread();
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-07-26 13:19:13 +03:00
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
};
|
|
|
|
|
|
|
|
class StorageDBThread::NoteBackgroundThreadRunnable final : public Runnable {
|
2020-11-11 16:12:57 +03:00
|
|
|
// Expected to be only 0 or 1.
|
|
|
|
const uint32_t mPrivateBrowsingId;
|
2017-07-26 13:19:13 +03:00
|
|
|
nsCOMPtr<nsIEventTarget> mOwningThread;
|
|
|
|
|
|
|
|
public:
|
2020-11-11 16:12:57 +03:00
|
|
|
explicit NoteBackgroundThreadRunnable(const uint32_t aPrivateBrowsingId)
|
2017-07-26 13:19:13 +03:00
|
|
|
: Runnable("dom::StorageDBThread::NoteBackgroundThreadRunnable"),
|
2020-11-11 16:12:57 +03:00
|
|
|
mPrivateBrowsingId(aPrivateBrowsingId),
|
2021-08-19 18:50:39 +03:00
|
|
|
mOwningThread(GetCurrentEventTarget()) {
|
|
|
|
MOZ_RELEASE_ASSERT(aPrivateBrowsingId < kPrivateBrowsingIdCount);
|
|
|
|
}
|
2017-07-26 13:19:13 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
~NoteBackgroundThreadRunnable() override = default;
|
|
|
|
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
};
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
StorageDBThread::StorageDBThread(const uint32_t aPrivateBrowsingId)
|
2017-01-04 16:53:01 +03:00
|
|
|
: mThread(nullptr),
|
|
|
|
mThreadObserver(new ThreadObserver()),
|
|
|
|
mStopIOThread(false),
|
|
|
|
mWALModeEnabled(false),
|
|
|
|
mDBReady(false),
|
|
|
|
mStatus(NS_OK),
|
|
|
|
mWorkerStatements(mWorkerConnection),
|
|
|
|
mReaderStatements(mReaderConnection),
|
|
|
|
mFlushImmediately(false),
|
2020-11-11 16:12:57 +03:00
|
|
|
mPrivateBrowsingId(aPrivateBrowsingId),
|
|
|
|
mPriorityCounter(0) {
|
2021-08-19 18:50:39 +03:00
|
|
|
MOZ_RELEASE_ASSERT(aPrivateBrowsingId < kPrivateBrowsingIdCount);
|
2020-11-11 16:12:57 +03:00
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-07-26 13:19:13 +03:00
|
|
|
// static
|
2020-11-11 16:12:57 +03:00
|
|
|
StorageDBThread* StorageDBThread::Get(const uint32_t aPrivateBrowsingId) {
|
2020-11-10 15:00:30 +03:00
|
|
|
::mozilla::ipc::AssertIsOnBackgroundThread();
|
2021-08-19 18:50:39 +03:00
|
|
|
MOZ_RELEASE_ASSERT(aPrivateBrowsingId < kPrivateBrowsingIdCount);
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
return sStorageThread[aPrivateBrowsingId];
|
2017-07-26 13:19:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2020-11-11 16:12:57 +03:00
|
|
|
StorageDBThread* StorageDBThread::GetOrCreate(
|
|
|
|
const nsString& aProfilePath, const uint32_t aPrivateBrowsingId) {
|
2020-11-10 15:00:30 +03:00
|
|
|
::mozilla::ipc::AssertIsOnBackgroundThread();
|
2021-08-19 18:50:39 +03:00
|
|
|
MOZ_RELEASE_ASSERT(aPrivateBrowsingId < kPrivateBrowsingIdCount);
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
StorageDBThread*& storageThread = sStorageThread[aPrivateBrowsingId];
|
|
|
|
if (storageThread || sStorageThreadDown[aPrivateBrowsingId]) {
|
2017-07-26 13:19:13 +03:00
|
|
|
// When sStorageThreadDown is at true, sStorageThread is null.
|
|
|
|
// Checking sStorageThreadDown flag here prevents reinitialization of
|
|
|
|
// the storage thread after shutdown.
|
2020-11-11 16:12:57 +03:00
|
|
|
return storageThread;
|
2017-07-26 13:19:13 +03:00
|
|
|
}
|
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
auto newStorageThread = MakeUnique<StorageDBThread>(aPrivateBrowsingId);
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
nsresult rv = newStorageThread->Init(aProfilePath);
|
2017-07-26 13:19:13 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
storageThread = newStorageThread.release();
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
return storageThread;
|
2017-07-26 13:19:13 +03:00
|
|
|
}
|
|
|
|
|
2017-08-09 00:01:52 +03:00
|
|
|
// static
|
|
|
|
nsresult StorageDBThread::GetProfilePath(nsString& aProfilePath) {
|
|
|
|
MOZ_ASSERT(XRE_IsParentProcess());
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-08-09 00:01:52 +03:00
|
|
|
// Need to determine location on the main thread, since
|
|
|
|
// NS_GetSpecialDirectory accesses the atom table that can
|
|
|
|
// only be accessed on the main thread.
|
|
|
|
nsCOMPtr<nsIFile> profileDir;
|
|
|
|
nsresult rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR,
|
|
|
|
getter_AddRefs(profileDir));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-08-09 00:01:52 +03:00
|
|
|
rv = profileDir->GetPath(aProfilePath);
|
2017-07-26 13:19:13 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-08-09 00:01:52 +03:00
|
|
|
// This service has to be started on the main thread currently.
|
|
|
|
nsCOMPtr<mozIStorageService> ss =
|
|
|
|
do_GetService(MOZ_STORAGE_SERVICE_CONTRACTID, &rv);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult StorageDBThread::Init(const nsString& aProfilePath) {
|
2020-11-10 15:00:30 +03:00
|
|
|
::mozilla::ipc::AssertIsOnBackgroundThread();
|
2017-08-09 00:01:52 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
if (mPrivateBrowsingId == 0) {
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsString profilePath;
|
|
|
|
if (aProfilePath.IsEmpty()) {
|
|
|
|
RefPtr<InitHelper> helper = new InitHelper();
|
2017-08-09 00:01:52 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
rv = helper->SyncDispatchAndReturnProfilePath(profilePath);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
profilePath = aProfilePath;
|
|
|
|
}
|
2017-08-09 00:01:52 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
mDatabaseFile = do_CreateInstance(NS_LOCAL_FILE_CONTRACTID, &rv);
|
2017-08-09 00:01:52 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
rv = mDatabaseFile->InitWithPath(profilePath);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
rv = mDatabaseFile->Append(u"webappsstore.sqlite"_ns);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2017-07-26 13:19:13 +03:00
|
|
|
}
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
// Need to keep the lock to avoid setting mThread later then
|
|
|
|
// the thread body executes.
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
mThread = PR_CreateThread(PR_USER_THREAD, &StorageDBThread::ThreadFunc, this,
|
|
|
|
PR_PRIORITY_LOW, PR_GLOBAL_THREAD,
|
|
|
|
PR_JOINABLE_THREAD, 262144);
|
2013-04-15 16:38:48 +04:00
|
|
|
if (!mThread) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
2017-07-26 13:19:13 +03:00
|
|
|
RefPtr<NoteBackgroundThreadRunnable> runnable =
|
2020-11-11 16:12:57 +03:00
|
|
|
new NoteBackgroundThreadRunnable(mPrivateBrowsingId);
|
2017-07-26 13:19:13 +03:00
|
|
|
MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(runnable));
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::Shutdown() {
|
2020-11-10 15:00:30 +03:00
|
|
|
::mozilla::ipc::AssertIsOnBackgroundThread();
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
if (!mThread) {
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
|
|
|
Telemetry::AutoTimer<Telemetry::LOCALDOMSTORAGE_SHUTDOWN_DATABASE_MS> timer;
|
|
|
|
|
|
|
|
{
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
// After we stop, no other operations can be accepted
|
|
|
|
mFlushImmediately = true;
|
|
|
|
mStopIOThread = true;
|
|
|
|
monitor.Notify();
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_JoinThread(mThread);
|
|
|
|
mThread = nullptr;
|
|
|
|
|
|
|
|
return mStatus;
|
|
|
|
}
|
|
|
|
|
2017-05-17 08:01:14 +03:00
|
|
|
void StorageDBThread::SyncPreload(LocalStorageCacheBridge* aCache,
|
|
|
|
bool aForceSync) {
|
2018-05-19 00:55:18 +03:00
|
|
|
AUTO_PROFILER_LABEL("StorageDBThread::SyncPreload", OTHER);
|
2013-04-15 16:38:48 +04:00
|
|
|
if (!aForceSync && aCache->LoadedCount()) {
|
|
|
|
// Preload already started for this cache, just wait for it to finish.
|
|
|
|
// LoadWait will exit after LoadDone on the cache has been called.
|
|
|
|
SetHigherPriority();
|
|
|
|
aCache->LoadWait();
|
|
|
|
SetDefaultPriority();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bypass sync load when an update is pending in the queue to write, we would
|
2017-01-04 16:53:01 +03:00
|
|
|
// get incosistent data in the cache. Also don't allow sync main-thread
|
|
|
|
// preload when DB open and init is still pending on the background thread.
|
2013-09-10 21:40:18 +04:00
|
|
|
if (mDBReady && mWALModeEnabled) {
|
2013-04-15 16:38:48 +04:00
|
|
|
bool pendingTasks;
|
|
|
|
{
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2016-01-05 15:25:00 +03:00
|
|
|
pendingTasks = mPendingTasks.IsOriginUpdatePending(
|
|
|
|
aCache->OriginSuffix(), aCache->OriginNoSuffix()) ||
|
|
|
|
mPendingTasks.IsOriginClearPending(
|
|
|
|
aCache->OriginSuffix(), aCache->OriginNoSuffix());
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!pendingTasks) {
|
|
|
|
// WAL is enabled, thus do the load synchronously on the main thread.
|
|
|
|
DBOperation preload(DBOperation::opPreload, aCache);
|
|
|
|
preload.PerformAndFinalize(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Need to go asynchronously since WAL is not allowed or scheduled updates
|
|
|
|
// need to be flushed first.
|
|
|
|
// Schedule preload for this cache as the first operation.
|
|
|
|
nsresult rv =
|
2021-02-16 18:53:33 +03:00
|
|
|
InsertDBOp(MakeUnique<DBOperation>(DBOperation::opPreloadUrgent, aCache));
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
// LoadWait exits after LoadDone of the cache has been called.
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
aCache->LoadWait();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::AsyncFlush() {
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
mFlushImmediately = true;
|
|
|
|
monitor.Notify();
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool StorageDBThread::ShouldPreloadOrigin(const nsACString& aOrigin) {
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2016-01-05 15:25:00 +03:00
|
|
|
return mOriginsHavingData.Contains(aOrigin);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2019-07-10 06:27:55 +03:00
|
|
|
void StorageDBThread::GetOriginsHavingData(nsTArray<nsCString>* aOrigins) {
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2021-03-24 20:56:48 +03:00
|
|
|
AppendToArray(*aOrigins, mOriginsHavingData);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2021-02-16 18:53:33 +03:00
|
|
|
nsresult StorageDBThread::InsertDBOp(
|
|
|
|
UniquePtr<StorageDBThread::DBOperation> aOperation) {
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
if (NS_FAILED(mStatus)) {
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoUnlock unlock(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
aOperation->Finalize(mStatus);
|
|
|
|
return mStatus;
|
|
|
|
}
|
|
|
|
|
2015-08-06 18:08:00 +03:00
|
|
|
if (mStopIOThread) {
|
|
|
|
// Thread use after shutdown demanded.
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
switch (aOperation->Type()) {
|
|
|
|
case DBOperation::opPreload:
|
|
|
|
case DBOperation::opPreloadUrgent:
|
2016-01-05 15:25:00 +03:00
|
|
|
if (mPendingTasks.IsOriginUpdatePending(aOperation->OriginSuffix(),
|
|
|
|
aOperation->OriginNoSuffix())) {
|
2013-04-15 16:38:48 +04:00
|
|
|
// If there is a pending update operation for the scope first do the
|
|
|
|
// flush before we preload the cache. This may happen in an extremely
|
|
|
|
// rare case when a child process throws away its cache before flush on
|
2017-01-04 16:53:01 +03:00
|
|
|
// the parent has finished. If we would preloaded the cache as a
|
|
|
|
// priority operation before the pending flush, we would have got an
|
|
|
|
// inconsistent cache content.
|
2013-04-15 16:38:48 +04:00
|
|
|
mFlushImmediately = true;
|
2016-01-05 15:25:00 +03:00
|
|
|
} else if (mPendingTasks.IsOriginClearPending(
|
|
|
|
aOperation->OriginSuffix(),
|
|
|
|
aOperation->OriginNoSuffix())) {
|
2013-04-15 16:38:48 +04:00
|
|
|
// The scope is scheduled to be cleared, so just quickly load as empty.
|
|
|
|
// We need to do this to prevent load of the DB data before the scope
|
|
|
|
// has actually been cleared from the database. Preloads are processed
|
2017-01-04 16:53:01 +03:00
|
|
|
// immediately before update and clear operations on the database that
|
|
|
|
// are flushed periodically in batches.
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoUnlock unlock(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
aOperation->Finalize(NS_OK);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2019-12-20 10:16:43 +03:00
|
|
|
[[fallthrough]];
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
case DBOperation::opGetUsage:
|
|
|
|
if (aOperation->Type() == DBOperation::opPreloadUrgent) {
|
|
|
|
SetHigherPriority(); // Dropped back after urgent preload execution
|
2021-02-16 18:53:33 +03:00
|
|
|
mPreloads.InsertElementAt(0, aOperation.release());
|
2013-04-15 16:38:48 +04:00
|
|
|
} else {
|
2021-02-16 18:53:33 +03:00
|
|
|
mPreloads.AppendElement(aOperation.release());
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Immediately start executing this.
|
|
|
|
monitor.Notify();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Update operations are first collected, coalesced and then flushed
|
|
|
|
// after a short time.
|
2021-02-16 18:53:33 +03:00
|
|
|
mPendingTasks.Add(std::move(aOperation));
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
ScheduleFlush();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::SetHigherPriority() {
|
2013-04-15 16:38:48 +04:00
|
|
|
++mPriorityCounter;
|
|
|
|
PR_SetThreadPriority(mThread, PR_PRIORITY_URGENT);
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::SetDefaultPriority() {
|
2013-04-15 16:38:48 +04:00
|
|
|
if (--mPriorityCounter <= 0) {
|
|
|
|
PR_SetThreadPriority(mThread, PR_PRIORITY_LOW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::ThreadFunc(void* aArg) {
|
2018-07-28 01:13:12 +03:00
|
|
|
{
|
2020-10-09 20:56:34 +03:00
|
|
|
auto queue = MakeRefPtr<ThreadEventQueue>(MakeUnique<EventQueue>());
|
2018-07-28 01:13:12 +03:00
|
|
|
Unused << nsThreadManager::get().CreateCurrentThread(
|
|
|
|
queue, nsThread::NOT_MAIN_THREAD);
|
|
|
|
}
|
|
|
|
|
2017-10-04 01:11:18 +03:00
|
|
|
AUTO_PROFILER_REGISTER_THREAD("localStorage DB");
|
2017-02-07 13:57:23 +03:00
|
|
|
NS_SetCurrentThreadName("localStorage DB");
|
2014-04-09 08:57:52 +04:00
|
|
|
mozilla::IOInterposer::RegisterCurrentThread();
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread* thread = static_cast<StorageDBThread*>(aArg);
|
2013-04-15 16:38:48 +04:00
|
|
|
thread->ThreadFunc();
|
2014-04-09 08:57:52 +04:00
|
|
|
mozilla::IOInterposer::UnregisterCurrentThread();
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::ThreadFunc() {
|
2013-04-15 16:38:48 +04:00
|
|
|
nsresult rv = InitDatabase();
|
|
|
|
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock lockMonitor(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
mStatus = rv;
|
|
|
|
mStopIOThread = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-28 02:00:18 +03:00
|
|
|
// Create an nsIThread for the current PRThread, so we can observe runnables
|
|
|
|
// dispatched to it.
|
|
|
|
nsCOMPtr<nsIThread> thread = NS_GetCurrentThread();
|
|
|
|
nsCOMPtr<nsIThreadInternal> threadInternal = do_QueryInterface(thread);
|
|
|
|
MOZ_ASSERT(threadInternal); // Should always succeed.
|
|
|
|
threadInternal->SetObserver(mThreadObserver);
|
|
|
|
|
|
|
|
while (MOZ_LIKELY(!mStopIOThread || mPreloads.Length() ||
|
|
|
|
mPendingTasks.HasTasks() ||
|
|
|
|
mThreadObserver->HasPendingEvents())) {
|
|
|
|
// Process xpcom events first.
|
|
|
|
while (MOZ_UNLIKELY(mThreadObserver->HasPendingEvents())) {
|
|
|
|
mThreadObserver->ClearPendingEvents();
|
|
|
|
MonitorAutoUnlock unlock(mThreadObserver->GetMonitor());
|
|
|
|
bool processedEvent;
|
|
|
|
do {
|
|
|
|
rv = thread->ProcessNextEvent(false, &processedEvent);
|
|
|
|
} while (NS_SUCCEEDED(rv) && processedEvent);
|
|
|
|
}
|
|
|
|
|
2018-02-09 23:17:26 +03:00
|
|
|
TimeDuration timeUntilFlush = TimeUntilFlush();
|
|
|
|
if (MOZ_UNLIKELY(timeUntilFlush.IsZero())) {
|
2013-04-15 16:38:48 +04:00
|
|
|
// Flush time is up or flush has been forced, do it now.
|
|
|
|
UnscheduleFlush();
|
|
|
|
if (mPendingTasks.Prepare()) {
|
|
|
|
{
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoUnlock unlockMonitor(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
rv = mPendingTasks.Execute(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mPendingTasks.Finalize(rv)) {
|
|
|
|
mStatus = rv;
|
|
|
|
NS_WARNING("localStorage DB access broken");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NotifyFlushCompletion();
|
|
|
|
} else if (MOZ_LIKELY(mPreloads.Length())) {
|
2020-02-26 02:14:57 +03:00
|
|
|
UniquePtr<DBOperation> op(mPreloads[0]);
|
2013-04-15 16:38:48 +04:00
|
|
|
mPreloads.RemoveElementAt(0);
|
|
|
|
{
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoUnlock unlockMonitor(mThreadObserver->GetMonitor());
|
2013-04-15 16:38:48 +04:00
|
|
|
op->PerformAndFinalize(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (op->Type() == DBOperation::opPreloadUrgent) {
|
|
|
|
SetDefaultPriority(); // urgent preload unscheduled
|
|
|
|
}
|
|
|
|
} else if (MOZ_UNLIKELY(!mStopIOThread)) {
|
2018-09-24 20:33:46 +03:00
|
|
|
AUTO_PROFILER_LABEL("StorageDBThread::ThreadFunc::Wait", IDLE);
|
2018-02-09 23:17:26 +03:00
|
|
|
lockMonitor.Wait(timeUntilFlush);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
} // thread loop
|
|
|
|
|
|
|
|
mStatus = ShutdownDatabase();
|
2015-01-28 02:00:18 +03:00
|
|
|
|
|
|
|
if (threadInternal) {
|
|
|
|
threadInternal->SetObserver(nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
NS_IMPL_ISUPPORTS(StorageDBThread::ThreadObserver, nsIThreadObserver)
|
2015-01-28 02:00:18 +03:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2017-07-07 02:05:28 +03:00
|
|
|
StorageDBThread::ThreadObserver::OnDispatchedEvent() {
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock lock(mMonitor);
|
|
|
|
mHasPendingEvents = true;
|
|
|
|
lock.Notify();
|
|
|
|
return NS_OK;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2015-01-28 02:00:18 +03:00
|
|
|
NS_IMETHODIMP
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::ThreadObserver::OnProcessNextEvent(nsIThreadInternal* aThread,
|
|
|
|
bool mayWait) {
|
2015-01-28 02:00:18 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::ThreadObserver::AfterProcessNextEvent(
|
|
|
|
nsIThreadInternal* aThread, bool eventWasProcessed) {
|
2015-01-28 02:00:18 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::OpenDatabaseConnection() {
|
2013-04-15 16:38:48 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
2013-04-15 16:38:58 +04:00
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
nsCOMPtr<mozIStorageService> service =
|
|
|
|
do_GetService(MOZ_STORAGE_SERVICE_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
if (mPrivateBrowsingId == 0) {
|
|
|
|
MOZ_ASSERT(mDatabaseFile);
|
|
|
|
|
2013-04-15 16:38:58 +04:00
|
|
|
rv = service->OpenUnsharedDatabase(mDatabaseFile,
|
2022-02-17 09:22:27 +03:00
|
|
|
mozIStorageService::CONNECTION_DEFAULT,
|
2013-04-15 16:38:58 +04:00
|
|
|
getter_AddRefs(mWorkerConnection));
|
2020-11-11 16:12:57 +03:00
|
|
|
if (rv == NS_ERROR_FILE_CORRUPTED) {
|
|
|
|
// delete the db and try opening again
|
|
|
|
rv = mDatabaseFile->Remove(false);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = service->OpenUnsharedDatabase(mDatabaseFile,
|
2022-02-17 09:22:27 +03:00
|
|
|
mozIStorageService::CONNECTION_DEFAULT,
|
2020-11-11 16:12:57 +03:00
|
|
|
getter_AddRefs(mWorkerConnection));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
MOZ_ASSERT(mPrivateBrowsingId == 1);
|
|
|
|
|
|
|
|
rv = service->OpenSpecialDatabase(kMozStorageMemoryStorageKey,
|
|
|
|
"lsprivatedb"_ns,
|
2022-02-17 09:22:27 +03:00
|
|
|
mozIStorageService::CONNECTION_DEFAULT,
|
2020-11-11 16:12:57 +03:00
|
|
|
getter_AddRefs(mWorkerConnection));
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::OpenAndUpdateDatabase() {
|
2013-04-15 16:38:48 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// Here we are on the worker thread. This opens the worker connection.
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
|
|
|
rv = OpenDatabaseConnection();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2020-11-13 00:40:44 +03:00
|
|
|
// SQLite doesn't support WAL journals for in-memory databases.
|
|
|
|
if (mPrivateBrowsingId == 0) {
|
|
|
|
rv = TryJournalMode();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2016-01-27 11:33:00 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::InitDatabase() {
|
2016-01-27 11:33:00 +03:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// Here we are on the worker thread. This opens the worker connection.
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
|
|
|
rv = OpenAndUpdateDatabase();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
rv = StorageDBUpdater::Update(mWorkerConnection);
|
2016-01-27 11:33:00 +03:00
|
|
|
if (NS_FAILED(rv)) {
|
2020-11-11 16:12:57 +03:00
|
|
|
if (mPrivateBrowsingId == 0) {
|
|
|
|
// Update has failed, rather throw the database away and try
|
|
|
|
// opening and setting it up again.
|
|
|
|
rv = mWorkerConnection->Close();
|
|
|
|
mWorkerConnection = nullptr;
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2016-01-27 11:33:00 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
rv = mDatabaseFile->Remove(false);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2016-01-27 11:33:00 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
rv = OpenAndUpdateDatabase();
|
|
|
|
}
|
2016-01-27 11:33:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:38:58 +04:00
|
|
|
// Create a read-only clone
|
|
|
|
(void)mWorkerConnection->Clone(true, getter_AddRefs(mReaderConnection));
|
|
|
|
NS_ENSURE_TRUE(mReaderConnection, NS_ERROR_FAILURE);
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
// Database open and all initiation operation are done. Switching this flag
|
2017-01-04 16:53:01 +03:00
|
|
|
// to true allow main thread to read directly from the database. If we would
|
|
|
|
// allow this sooner, we would have opened a window where main thread read
|
|
|
|
// might operate on a totally broken and incosistent database.
|
2013-04-15 16:38:48 +04:00
|
|
|
mDBReady = true;
|
|
|
|
|
|
|
|
// List scopes having any stored data
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt;
|
2017-01-04 16:53:01 +03:00
|
|
|
// Note: result of this select must match StorageManager::CreateOrigin()
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = mWorkerConnection->CreateStatement(
|
|
|
|
nsLiteralCString("SELECT DISTINCT originAttributes || ':' || originKey "
|
|
|
|
"FROM webappsstore2"),
|
|
|
|
getter_AddRefs(stmt));
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
bool exists;
|
2013-04-15 16:38:48 +04:00
|
|
|
while (NS_SUCCEEDED(rv = stmt->ExecuteStep(&exists)) && exists) {
|
2016-01-05 15:25:00 +03:00
|
|
|
nsAutoCString foundOrigin;
|
|
|
|
rv = stmt->GetUTF8String(0, foundOrigin);
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-01-28 02:00:18 +03:00
|
|
|
MonitorAutoLock monitor(mThreadObserver->GetMonitor());
|
2021-03-24 20:56:48 +03:00
|
|
|
mOriginsHavingData.Insert(foundOrigin);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::SetJournalMode(bool aIsWal) {
|
2013-04-15 16:38:48 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsAutoCString stmtString(MOZ_STORAGE_UNIQUIFY_QUERY_STR
|
|
|
|
"PRAGMA journal_mode = ");
|
|
|
|
if (aIsWal) {
|
|
|
|
stmtString.AppendLiteral("wal");
|
|
|
|
} else {
|
|
|
|
stmtString.AppendLiteral("truncate");
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt;
|
|
|
|
rv = mWorkerConnection->CreateStatement(stmtString, getter_AddRefs(stmt));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
|
|
|
bool hasResult = false;
|
|
|
|
rv = stmt->ExecuteStep(&hasResult);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (!hasResult) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoCString journalMode;
|
|
|
|
rv = stmt->GetUTF8String(0, journalMode);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if ((aIsWal && !journalMode.EqualsLiteral("wal")) ||
|
|
|
|
(!aIsWal && !journalMode.EqualsLiteral("truncate"))) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::TryJournalMode() {
|
2013-04-15 16:38:48 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = SetJournalMode(true);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
mWALModeEnabled = false;
|
|
|
|
|
|
|
|
rv = SetJournalMode(false);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
} else {
|
|
|
|
mWALModeEnabled = true;
|
2013-04-15 16:38:58 +04:00
|
|
|
|
|
|
|
rv = ConfigureWALBehavior();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::ConfigureWALBehavior() {
|
2013-04-15 16:38:58 +04:00
|
|
|
// Get the DB's page size
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt;
|
|
|
|
nsresult rv = mWorkerConnection->CreateStatement(
|
|
|
|
nsLiteralCString(MOZ_STORAGE_UNIQUIFY_QUERY_STR "PRAGMA page_size"),
|
|
|
|
getter_AddRefs(stmt));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
bool hasResult = false;
|
|
|
|
rv = stmt->ExecuteStep(&hasResult);
|
|
|
|
NS_ENSURE_TRUE(NS_SUCCEEDED(rv) && hasResult, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
int32_t pageSize = 0;
|
|
|
|
rv = stmt->GetInt32(0, &pageSize);
|
|
|
|
NS_ENSURE_TRUE(NS_SUCCEEDED(rv) && pageSize > 0, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
// Set the threshold for auto-checkpointing the WAL.
|
|
|
|
// We don't want giant logs slowing down reads & shutdown.
|
|
|
|
int32_t thresholdInPages =
|
|
|
|
static_cast<int32_t>(MAX_WAL_SIZE_BYTES / pageSize);
|
|
|
|
nsAutoCString thresholdPragma("PRAGMA wal_autocheckpoint = ");
|
|
|
|
thresholdPragma.AppendInt(thresholdInPages);
|
|
|
|
rv = mWorkerConnection->ExecuteSimpleSQL(thresholdPragma);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Set the maximum WAL log size to reduce footprint on mobile (large empty
|
|
|
|
// WAL files will be truncated)
|
|
|
|
nsAutoCString journalSizePragma("PRAGMA journal_size_limit = ");
|
2017-01-04 16:53:01 +03:00
|
|
|
// bug 600307: mak recommends setting this to 3 times the auto-checkpoint
|
|
|
|
// threshold
|
2013-04-15 16:38:58 +04:00
|
|
|
journalSizePragma.AppendInt(MAX_WAL_SIZE_BYTES * 3);
|
|
|
|
rv = mWorkerConnection->ExecuteSimpleSQL(journalSizePragma);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::ShutdownDatabase() {
|
2013-04-15 16:38:58 +04:00
|
|
|
// Has to be called on the worker thread.
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
nsresult rv = mStatus;
|
|
|
|
|
2013-04-15 16:38:58 +04:00
|
|
|
mDBReady = false;
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
// Finalize the cached statements.
|
2013-04-15 16:38:58 +04:00
|
|
|
mReaderStatements.FinalizeStatements();
|
2013-04-15 16:38:48 +04:00
|
|
|
mWorkerStatements.FinalizeStatements();
|
2013-04-15 16:38:58 +04:00
|
|
|
|
|
|
|
if (mReaderConnection) {
|
|
|
|
// No need to sync access to mReaderConnection since the main thread
|
|
|
|
// is right now joining this thread, unable to execute any events.
|
|
|
|
mReaderConnection->Close();
|
|
|
|
mReaderConnection = nullptr;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
if (mWorkerConnection) {
|
|
|
|
rv = mWorkerConnection->Close();
|
|
|
|
mWorkerConnection = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::ScheduleFlush() {
|
2013-04-15 16:38:48 +04:00
|
|
|
if (mDirtyEpoch) {
|
|
|
|
return; // Already scheduled
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
// Must be non-zero to indicate we are scheduled
|
2018-02-09 23:17:26 +03:00
|
|
|
mDirtyEpoch = TimeStamp::Now();
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
// Wake the monitor from indefinite sleep...
|
2015-01-28 02:00:18 +03:00
|
|
|
(mThreadObserver->GetMonitor()).Notify();
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::UnscheduleFlush() {
|
2013-04-15 16:38:48 +04:00
|
|
|
// We are just about to do the flush, drop flags
|
|
|
|
mFlushImmediately = false;
|
2018-02-09 23:17:26 +03:00
|
|
|
mDirtyEpoch = TimeStamp();
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
TimeDuration StorageDBThread::TimeUntilFlush() {
|
2013-04-15 16:38:48 +04:00
|
|
|
if (mFlushImmediately) {
|
|
|
|
return 0; // Do it now regardless the timeout.
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mDirtyEpoch) {
|
2018-02-09 23:17:26 +03:00
|
|
|
return TimeDuration::Forever(); // No pending task...
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2018-02-09 23:17:26 +03:00
|
|
|
TimeStamp now = TimeStamp::Now();
|
|
|
|
TimeDuration age = now - mDirtyEpoch;
|
|
|
|
static const TimeDuration kMaxAge =
|
|
|
|
TimeDuration::FromMilliseconds(FLUSHING_INTERVAL_MS);
|
2013-04-15 16:38:48 +04:00
|
|
|
if (age > kMaxAge) {
|
|
|
|
return 0; // It is time.
|
|
|
|
}
|
|
|
|
|
2018-02-09 23:17:26 +03:00
|
|
|
return kMaxAge - age; // Time left. This is used to sleep the monitor.
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::NotifyFlushCompletion() {
|
2013-04-15 16:38:48 +04:00
|
|
|
#ifdef DOM_STORAGE_TESTS
|
|
|
|
if (!NS_IsMainThread()) {
|
2017-06-12 22:34:10 +03:00
|
|
|
RefPtr<nsRunnableMethod<StorageDBThread, void, false>> event =
|
|
|
|
NewNonOwningRunnableMethod(
|
|
|
|
"dom::StorageDBThread::NotifyFlushCompletion", this,
|
|
|
|
&StorageDBThread::NotifyFlushCompletion);
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_DispatchToMainThread(event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIObserverService> obs = mozilla::services::GetObserverService();
|
|
|
|
if (obs) {
|
|
|
|
obs->NotifyObservers(nullptr, "domstorage-test-flushed", nullptr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
// Helper SQL function classes
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class OriginAttrsPatternMatchSQLFunction final : public mozIStorageFunction {
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_MOZISTORAGEFUNCTION
|
|
|
|
|
|
|
|
explicit OriginAttrsPatternMatchSQLFunction(
|
|
|
|
OriginAttributesPattern const& aPattern)
|
|
|
|
: mPattern(aPattern) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
OriginAttrsPatternMatchSQLFunction() = delete;
|
2020-02-12 13:33:31 +03:00
|
|
|
~OriginAttrsPatternMatchSQLFunction() = default;
|
2016-01-05 15:25:00 +03:00
|
|
|
|
|
|
|
OriginAttributesPattern mPattern;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS(OriginAttrsPatternMatchSQLFunction, mozIStorageFunction)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
OriginAttrsPatternMatchSQLFunction::OnFunctionCall(
|
|
|
|
mozIStorageValueArray* aFunctionArguments, nsIVariant** aResult) {
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsAutoCString suffix;
|
|
|
|
rv = aFunctionArguments->GetUTF8String(0, suffix);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2017-01-12 19:38:48 +03:00
|
|
|
OriginAttributes oa;
|
2016-08-15 13:17:08 +03:00
|
|
|
bool success = oa.PopulateFromSuffix(suffix);
|
|
|
|
NS_ENSURE_TRUE(success, NS_ERROR_FAILURE);
|
2016-01-05 15:25:00 +03:00
|
|
|
bool result = mPattern.Matches(oa);
|
|
|
|
|
|
|
|
RefPtr<nsVariant> outVar(new nsVariant());
|
|
|
|
rv = outVar->SetAsBool(result);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
outVar.forget(aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
// StorageDBThread::DBOperation
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::DBOperation::DBOperation(const OperationType aType,
|
2017-05-17 08:01:14 +03:00
|
|
|
LocalStorageCacheBridge* aCache,
|
2017-01-04 16:53:01 +03:00
|
|
|
const nsAString& aKey,
|
|
|
|
const nsAString& aValue)
|
2013-04-15 16:38:48 +04:00
|
|
|
: mType(aType), mCache(aCache), mKey(aKey), mValue(aValue) {
|
2016-01-05 15:25:00 +03:00
|
|
|
MOZ_ASSERT(mType == opPreload || mType == opPreloadUrgent ||
|
|
|
|
mType == opAddItem || mType == opUpdateItem ||
|
|
|
|
mType == opRemoveItem || mType == opClear || mType == opClearAll);
|
2017-01-04 16:53:01 +03:00
|
|
|
MOZ_COUNT_CTOR(StorageDBThread::DBOperation);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::DBOperation::DBOperation(const OperationType aType,
|
|
|
|
StorageUsageBridge* aUsage)
|
2013-04-15 16:38:48 +04:00
|
|
|
: mType(aType), mUsage(aUsage) {
|
2016-01-05 15:25:00 +03:00
|
|
|
MOZ_ASSERT(mType == opGetUsage);
|
2017-01-04 16:53:01 +03:00
|
|
|
MOZ_COUNT_CTOR(StorageDBThread::DBOperation);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::DBOperation::DBOperation(const OperationType aType,
|
|
|
|
const nsACString& aOriginNoSuffix)
|
2016-01-05 15:25:00 +03:00
|
|
|
: mType(aType), mCache(nullptr), mOrigin(aOriginNoSuffix) {
|
|
|
|
MOZ_ASSERT(mType == opClearMatchingOrigin);
|
2017-01-04 16:53:01 +03:00
|
|
|
MOZ_COUNT_CTOR(StorageDBThread::DBOperation);
|
2016-01-05 15:25:00 +03:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::DBOperation::DBOperation(
|
|
|
|
const OperationType aType, const OriginAttributesPattern& aOriginNoSuffix)
|
2016-01-05 15:25:00 +03:00
|
|
|
: mType(aType), mCache(nullptr), mOriginPattern(aOriginNoSuffix) {
|
|
|
|
MOZ_ASSERT(mType == opClearMatchingOriginAttributes);
|
2017-01-04 16:53:01 +03:00
|
|
|
MOZ_COUNT_CTOR(StorageDBThread::DBOperation);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::DBOperation::~DBOperation() {
|
|
|
|
MOZ_COUNT_DTOR(StorageDBThread::DBOperation);
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
const nsCString StorageDBThread::DBOperation::OriginNoSuffix() const {
|
2016-01-05 15:25:00 +03:00
|
|
|
if (mCache) {
|
|
|
|
return mCache->OriginNoSuffix();
|
|
|
|
}
|
|
|
|
|
2020-09-23 18:17:15 +03:00
|
|
|
return ""_ns;
|
2016-01-05 15:25:00 +03:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
const nsCString StorageDBThread::DBOperation::OriginSuffix() const {
|
2016-01-05 15:25:00 +03:00
|
|
|
if (mCache) {
|
|
|
|
return mCache->OriginSuffix();
|
|
|
|
}
|
|
|
|
|
2020-09-23 18:17:15 +03:00
|
|
|
return ""_ns;
|
2016-01-05 15:25:00 +03:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
const nsCString StorageDBThread::DBOperation::Origin() const {
|
2013-04-15 16:38:48 +04:00
|
|
|
if (mCache) {
|
2016-01-05 15:25:00 +03:00
|
|
|
return mCache->Origin();
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
return mOrigin;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
const nsCString StorageDBThread::DBOperation::Target() const {
|
2013-04-15 16:38:48 +04:00
|
|
|
switch (mType) {
|
|
|
|
case opAddItem:
|
|
|
|
case opUpdateItem:
|
|
|
|
case opRemoveItem:
|
2016-01-05 15:25:00 +03:00
|
|
|
return Origin() + "|"_ns + NS_ConvertUTF16toUTF8(mKey);
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
default:
|
2016-01-05 15:25:00 +03:00
|
|
|
return Origin();
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::DBOperation::PerformAndFinalize(
|
|
|
|
StorageDBThread* aThread) {
|
2013-04-15 16:38:48 +04:00
|
|
|
Finalize(Perform(aThread));
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::DBOperation::Perform(StorageDBThread* aThread) {
|
2013-04-15 16:38:48 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
switch (mType) {
|
|
|
|
case opPreload:
|
|
|
|
case opPreloadUrgent: {
|
|
|
|
// Already loaded?
|
|
|
|
if (mCache->Loaded()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
StatementCache* statements;
|
2020-11-10 15:00:30 +03:00
|
|
|
if (MOZ_UNLIKELY(::mozilla::ipc::IsOnBackgroundThread())) {
|
2013-04-15 16:38:48 +04:00
|
|
|
statements = &aThread->mReaderStatements;
|
|
|
|
} else {
|
|
|
|
statements = &aThread->mWorkerStatements;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2016-01-05 15:25:00 +03:00
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
// OFFSET is an optimization when we have to do a sync load
|
2016-01-05 15:25:00 +03:00
|
|
|
// and cache has already loaded some parts asynchronously.
|
|
|
|
// It skips keys we have already loaded.
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt = statements->GetCachedStatement(
|
|
|
|
"SELECT key, value FROM webappsstore2 "
|
|
|
|
"WHERE originAttributes = :originAttributes AND originKey = "
|
|
|
|
":originKey "
|
|
|
|
"ORDER BY key LIMIT -1 OFFSET :offset");
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
|
|
|
rv = stmt->BindUTF8StringByName("originAttributes"_ns,
|
|
|
|
mCache->OriginSuffix());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = stmt->BindUTF8StringByName("originKey"_ns, mCache->OriginNoSuffix());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = stmt->BindInt32ByName("offset"_ns,
|
|
|
|
static_cast<int32_t>(mCache->LoadedCount()));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
bool exists;
|
|
|
|
while (NS_SUCCEEDED(rv = stmt->ExecuteStep(&exists)) && exists) {
|
|
|
|
nsAutoString key;
|
|
|
|
rv = stmt->GetString(0, key);
|
2016-01-05 15:25:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
nsAutoString value;
|
|
|
|
rv = stmt->GetString(1, value);
|
2016-01-05 15:25:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
if (!mCache->LoadItem(key, value)) {
|
|
|
|
break;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
2017-09-01 17:32:59 +03:00
|
|
|
// The loop condition's call to ExecuteStep() may have terminated because
|
|
|
|
// !NS_SUCCEEDED(), we need an early return to cover that case. This also
|
|
|
|
// covers success cases as well, but that's inductively safe.
|
2016-01-05 15:25:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
case opGetUsage: {
|
2021-01-14 12:32:00 +03:00
|
|
|
// Bug 1676410 fixed a regression caused by bug 1165214. However, it
|
|
|
|
// turns out that 100% correct checking of the eTLD+1 usage is not
|
|
|
|
// possible to recover easily, see bug 1683299.
|
|
|
|
#if 0
|
|
|
|
// This is how it should be done, but due to other problems like lack
|
|
|
|
// of usage synchronization between content processes, we temporarily
|
|
|
|
// disabled the matching using "%".
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
2016-01-05 15:25:00 +03:00
|
|
|
"SELECT SUM(LENGTH(key) + LENGTH(value)) FROM webappsstore2 "
|
2020-11-13 08:26:24 +03:00
|
|
|
"WHERE (originAttributes || ':' || originKey) LIKE :usageOrigin "
|
|
|
|
"ESCAPE '\\'");
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
mozStorageStatementScoper scope(stmt);
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2020-11-12 00:54:46 +03:00
|
|
|
// The database schema is built around cleverly reversing domain names
|
|
|
|
// (the "originKey") so that we can efficiently group usage by eTLD+1.
|
|
|
|
// "foo.example.org" has an eTLD+1 of ".example.org". They reverse to
|
|
|
|
// "gro.elpmaxe.oof" and "gro.elpmaxe." respectively, noting that the
|
|
|
|
// reversed eTLD+1 is a prefix of its reversed sub-domain. To this end,
|
|
|
|
// we can calculate all of the usage for an eTLD+1 by summing up all the
|
|
|
|
// rows which have the reversed eTLD+1 as a prefix. In SQL we can
|
|
|
|
// accomplish this using LIKE which provides for case-insensitive
|
|
|
|
// matching with "_" as a single-character wildcard match and "%" any
|
|
|
|
// sequence of zero or more characters. So by suffixing the reversed
|
|
|
|
// eTLD+1 and using "%" we get our case-insensitive (domain names are
|
2020-11-13 08:26:24 +03:00
|
|
|
// case-insensitive) matching. Note that although legal domain names
|
|
|
|
// don't include "_" or "%", file origins can include them, so we need
|
|
|
|
// to escape our OriginScope for correctness.
|
|
|
|
nsAutoCString originScopeEscaped;
|
|
|
|
rv = stmt->EscapeUTF8StringForLIKE(mUsage->OriginScope(), '\\',
|
|
|
|
originScopeEscaped);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2020-11-12 00:54:46 +03:00
|
|
|
rv = stmt->BindUTF8StringByName("usageOrigin"_ns,
|
2020-11-13 08:26:24 +03:00
|
|
|
originScopeEscaped + "%"_ns);
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2021-01-14 12:32:00 +03:00
|
|
|
#else
|
|
|
|
// This is the code before bug 1676410 and bug 1676973. The returned
|
|
|
|
// usage will be zero in most of the cases, but due to lack of usage
|
|
|
|
// synchronization between content processes we have to live with this
|
|
|
|
// semi-broken behaviour because it causes less harm than the matching
|
|
|
|
// using "%".
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
|
|
|
"SELECT SUM(LENGTH(key) + LENGTH(value)) FROM webappsstore2 "
|
|
|
|
"WHERE (originAttributes || ':' || originKey) LIKE :usageOrigin");
|
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
|
|
|
rv = stmt->BindUTF8StringByName("usageOrigin"_ns, mUsage->OriginScope());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
#endif
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
bool exists;
|
|
|
|
rv = stmt->ExecuteStep(&exists);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-07-24 00:24:49 +04:00
|
|
|
int64_t usage = 0;
|
2013-04-15 16:38:48 +04:00
|
|
|
if (exists) {
|
2013-04-15 16:38:58 +04:00
|
|
|
rv = stmt->GetInt64(0, &usage);
|
2016-01-05 15:25:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
mUsage->LoadUsage(usage);
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
case opAddItem:
|
|
|
|
case opUpdateItem: {
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
|
|
|
"INSERT OR REPLACE INTO webappsstore2 (originAttributes, "
|
2016-01-05 15:25:00 +03:00
|
|
|
"originKey, scope, key, value) "
|
|
|
|
"VALUES (:originAttributes, :originKey, :scope, :key, :value) ");
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
|
|
|
rv = stmt->BindUTF8StringByName("originAttributes"_ns,
|
2016-01-05 15:25:00 +03:00
|
|
|
mCache->OriginSuffix());
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = stmt->BindUTF8StringByName("originKey"_ns, mCache->OriginNoSuffix());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
// Filling the 'scope' column just for downgrade compatibility reasons
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = stmt->BindUTF8StringByName(
|
2013-04-15 16:38:48 +04:00
|
|
|
"scope"_ns,
|
|
|
|
Scheme0Scope(mCache->OriginSuffix(), mCache->OriginNoSuffix()));
|
2016-01-05 15:25:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
rv = stmt->BindStringByName("key"_ns, mKey);
|
2016-01-05 15:25:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
rv = stmt->BindStringByName("value"_ns, mValue);
|
2016-01-05 15:25:00 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = stmt->Execute();
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
MonitorAutoLock monitor(aThread->mThreadObserver->GetMonitor());
|
2021-03-24 20:56:48 +03:00
|
|
|
aThread->mOriginsHavingData.Insert(Origin());
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
case opRemoveItem: {
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
|
|
|
"DELETE FROM webappsstore2 "
|
2016-01-05 15:25:00 +03:00
|
|
|
"WHERE originAttributes = :originAttributes AND originKey = "
|
|
|
|
":originKey "
|
2013-04-15 16:38:48 +04:00
|
|
|
"AND key = :key ");
|
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
|
|
|
rv = stmt->BindUTF8StringByName("originAttributes"_ns,
|
|
|
|
mCache->OriginSuffix());
|
2017-09-01 17:32:59 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = stmt->BindUTF8StringByName("originKey"_ns, mCache->OriginNoSuffix());
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = stmt->BindStringByName("key"_ns, mKey);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = stmt->Execute();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
break;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
case opClear: {
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
2013-04-15 16:38:48 +04:00
|
|
|
"DELETE FROM webappsstore2 "
|
2016-01-05 15:25:00 +03:00
|
|
|
"WHERE originAttributes = :originAttributes AND originKey = "
|
|
|
|
":originKey");
|
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
rv = stmt->BindUTF8StringByName("originAttributes"_ns,
|
|
|
|
mCache->OriginSuffix());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = stmt->BindUTF8StringByName("originKey"_ns, mCache->OriginNoSuffix());
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = stmt->Execute();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
MonitorAutoLock monitor(aThread->mThreadObserver->GetMonitor());
|
2021-03-24 20:56:48 +03:00
|
|
|
aThread->mOriginsHavingData.Remove(Origin());
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
case opClearAll: {
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
|
|
|
"DELETE FROM webappsstore2");
|
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = stmt->Execute();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
MonitorAutoLock monitor(aThread->mThreadObserver->GetMonitor());
|
|
|
|
aThread->mOriginsHavingData.Clear();
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
case opClearMatchingOrigin: {
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
2016-01-05 15:25:00 +03:00
|
|
|
"DELETE FROM webappsstore2"
|
|
|
|
" WHERE originKey GLOB :scope");
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_ENSURE_STATE(stmt);
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
|
|
|
|
|
|
|
rv = stmt->BindUTF8StringByName("scope"_ns, mOrigin + "*"_ns);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
rv = stmt->Execute();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2016-01-05 15:25:00 +03:00
|
|
|
|
|
|
|
// No need to selectively clear mOriginsHavingData here. That hashtable
|
|
|
|
// only prevents preload for scopes with no data. Leaving a false record
|
|
|
|
// in it has a negligible effect on performance.
|
|
|
|
break;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2016-01-05 15:25:00 +03:00
|
|
|
|
|
|
|
case opClearMatchingOriginAttributes: {
|
|
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
|
|
|
|
|
|
// Register the ORIGIN_ATTRS_PATTERN_MATCH function, initialized with the
|
2017-01-04 16:53:01 +03:00
|
|
|
// pattern
|
2016-01-05 15:25:00 +03:00
|
|
|
nsCOMPtr<mozIStorageFunction> patternMatchFunction(
|
|
|
|
new OriginAttrsPatternMatchSQLFunction(mOriginPattern));
|
|
|
|
|
2020-03-05 20:37:32 +03:00
|
|
|
rv = aThread->mWorkerConnection->CreateFunction(
|
2016-01-05 15:25:00 +03:00
|
|
|
"ORIGIN_ATTRS_PATTERN_MATCH"_ns, 1, patternMatchFunction);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStorageStatement> stmt =
|
|
|
|
aThread->mWorkerStatements.GetCachedStatement(
|
|
|
|
"DELETE FROM webappsstore2"
|
|
|
|
" WHERE ORIGIN_ATTRS_PATTERN_MATCH(originAttributes)");
|
|
|
|
|
|
|
|
if (stmt) {
|
|
|
|
mozStorageStatementScoper scope(stmt);
|
2013-04-15 16:38:58 +04:00
|
|
|
rv = stmt->Execute();
|
2018-11-30 13:46:48 +03:00
|
|
|
} else {
|
2016-01-05 15:25:00 +03:00
|
|
|
rv = NS_ERROR_UNEXPECTED;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2016-01-05 15:25:00 +03:00
|
|
|
|
|
|
|
// Always remove the function
|
2020-03-05 20:37:32 +03:00
|
|
|
aThread->mWorkerConnection->RemoveFunction(
|
2016-01-05 15:25:00 +03:00
|
|
|
"ORIGIN_ATTRS_PATTERN_MATCH"_ns);
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
// No need to selectively clear mOriginsHavingData here. That hashtable
|
|
|
|
// only prevents preload for scopes with no data. Leaving a false record
|
|
|
|
// in it has a negligible effect on performance.
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
default:
|
|
|
|
NS_ERROR("Unknown task type");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::DBOperation::Finalize(nsresult aRv) {
|
2013-04-15 16:38:48 +04:00
|
|
|
switch (mType) {
|
|
|
|
case opPreloadUrgent:
|
|
|
|
case opPreload:
|
|
|
|
if (NS_FAILED(aRv)) {
|
|
|
|
// When we are here, something failed when loading from the database.
|
2017-01-04 16:53:01 +03:00
|
|
|
// Notify that the storage is loaded to prevent deadlock of the main
|
|
|
|
// thread, even though it is actually empty or incomplete.
|
2013-04-15 16:38:48 +04:00
|
|
|
NS_WARNING("Failed to preload localStorage");
|
|
|
|
}
|
|
|
|
|
|
|
|
mCache->LoadDone(aRv);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case opGetUsage:
|
|
|
|
if (NS_FAILED(aRv)) {
|
|
|
|
mUsage->LoadUsage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (NS_FAILED(aRv)) {
|
|
|
|
NS_WARNING(
|
|
|
|
"localStorage update/clear operation failed,"
|
|
|
|
" data may not persist or clean up");
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
// StorageDBThread::PendingOperations
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::PendingOperations::PendingOperations()
|
2013-04-15 16:38:48 +04:00
|
|
|
: mFlushFailureCount(0) {}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool StorageDBThread::PendingOperations::HasTasks() const {
|
2013-04-15 16:38:48 +04:00
|
|
|
return !!mUpdates.Count() || !!mClears.Count();
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
namespace {
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool OriginPatternMatches(const nsACString& aOriginSuffix,
|
|
|
|
const OriginAttributesPattern& aPattern) {
|
2017-01-12 19:38:48 +03:00
|
|
|
OriginAttributes oa;
|
2016-01-05 15:25:00 +03:00
|
|
|
DebugOnly<bool> rv = oa.PopulateFromSuffix(aOriginSuffix);
|
|
|
|
MOZ_ASSERT(rv);
|
|
|
|
return aPattern.Matches(oa);
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool StorageDBThread::PendingOperations::CheckForCoalesceOpportunity(
|
|
|
|
DBOperation* aNewOp, DBOperation::OperationType aPendingType,
|
|
|
|
DBOperation::OperationType aNewType) {
|
2013-04-15 16:38:48 +04:00
|
|
|
if (aNewOp->Type() != aNewType) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
StorageDBThread::DBOperation* pendingTask;
|
2013-04-15 16:38:48 +04:00
|
|
|
if (!mUpdates.Get(aNewOp->Target(), &pendingTask)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pendingTask->Type() != aPendingType) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
void StorageDBThread::PendingOperations::Add(
|
2021-02-16 18:53:33 +03:00
|
|
|
UniquePtr<StorageDBThread::DBOperation> aOperation) {
|
2013-04-15 16:38:48 +04:00
|
|
|
// Optimize: when a key to remove has never been written to disk
|
2016-01-05 15:25:00 +03:00
|
|
|
// just bypass this operation. A key is new when an operation scheduled
|
2013-04-15 16:38:48 +04:00
|
|
|
// to write it to the database is of type opAddItem.
|
2021-02-16 18:53:33 +03:00
|
|
|
if (CheckForCoalesceOpportunity(aOperation.get(), DBOperation::opAddItem,
|
2017-01-04 16:53:01 +03:00
|
|
|
DBOperation::opRemoveItem)) {
|
2013-04-15 16:38:48 +04:00
|
|
|
mUpdates.Remove(aOperation->Target());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optimize: when changing a key that is new and has never been
|
|
|
|
// written to disk, keep type of the operation to store it at opAddItem.
|
|
|
|
// This allows optimization to just forget adding a new key when
|
|
|
|
// it is removed from the storage before flush.
|
2021-02-16 18:53:33 +03:00
|
|
|
if (CheckForCoalesceOpportunity(aOperation.get(), DBOperation::opAddItem,
|
2017-01-04 16:53:01 +03:00
|
|
|
DBOperation::opUpdateItem)) {
|
2013-04-15 16:38:48 +04:00
|
|
|
aOperation->mType = DBOperation::opAddItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optimize: to prevent lose of remove operation on a key when doing
|
|
|
|
// remove/set/remove on a previously existing key we have to change
|
|
|
|
// opAddItem to opUpdateItem on the new operation when there is opRemoveItem
|
|
|
|
// pending for the key.
|
2021-02-16 18:53:33 +03:00
|
|
|
if (CheckForCoalesceOpportunity(aOperation.get(), DBOperation::opRemoveItem,
|
2017-01-04 16:53:01 +03:00
|
|
|
DBOperation::opAddItem)) {
|
2013-04-15 16:38:48 +04:00
|
|
|
aOperation->mType = DBOperation::opUpdateItem;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (aOperation->Type()) {
|
2017-01-04 16:53:01 +03:00
|
|
|
// Operations on single keys
|
2016-01-28 03:05:00 +03:00
|
|
|
|
|
|
|
case DBOperation::opAddItem:
|
2013-04-15 16:38:48 +04:00
|
|
|
case DBOperation::opUpdateItem:
|
|
|
|
case DBOperation::opRemoveItem:
|
2016-01-28 03:05:00 +03:00
|
|
|
// Override any existing operation for the target (=scope+key).
|
2021-02-26 12:11:46 +03:00
|
|
|
mUpdates.InsertOrUpdate(aOperation->Target(), std::move(aOperation));
|
2016-01-28 03:05:00 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
// Clear operations
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
case DBOperation::opClear:
|
2016-01-05 15:25:00 +03:00
|
|
|
case DBOperation::opClearMatchingOrigin:
|
2016-01-28 03:05:00 +03:00
|
|
|
case DBOperation::opClearMatchingOriginAttributes:
|
2017-01-04 16:53:01 +03:00
|
|
|
// Drop all update (insert/remove) operations for equivavelent or matching
|
|
|
|
// scope. We do this as an optimization as well as a must based on the
|
|
|
|
// logic, if we would not delete the update tasks, changes would have been
|
|
|
|
// stored to the database after clear operations have been executed.
|
2016-01-28 03:05:00 +03:00
|
|
|
for (auto iter = mUpdates.Iter(); !iter.Done(); iter.Next()) {
|
2020-01-13 22:18:56 +03:00
|
|
|
const auto& pendingTask = iter.Data();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2016-01-28 03:05:00 +03:00
|
|
|
if (aOperation->Type() == DBOperation::opClear &&
|
|
|
|
(pendingTask->OriginNoSuffix() != aOperation->OriginNoSuffix() ||
|
|
|
|
pendingTask->OriginSuffix() != aOperation->OriginSuffix())) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aOperation->Type() == DBOperation::opClearMatchingOrigin &&
|
|
|
|
!StringBeginsWith(pendingTask->OriginNoSuffix(),
|
|
|
|
aOperation->Origin())) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
if (aOperation->Type() ==
|
|
|
|
DBOperation::opClearMatchingOriginAttributes &&
|
|
|
|
!OriginPatternMatches(pendingTask->OriginSuffix(),
|
|
|
|
aOperation->OriginPattern())) {
|
|
|
|
continue;
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
iter.Remove();
|
2018-11-30 13:46:48 +03:00
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2021-02-26 12:11:46 +03:00
|
|
|
mClears.InsertOrUpdate(aOperation->Target(), std::move(aOperation));
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
case DBOperation::opClearAll:
|
|
|
|
// Drop simply everything, this is a super-operation.
|
|
|
|
mUpdates.Clear();
|
|
|
|
mClears.Clear();
|
2021-02-26 12:11:46 +03:00
|
|
|
mClears.InsertOrUpdate(aOperation->Target(), std::move(aOperation));
|
2018-11-30 13:46:48 +03:00
|
|
|
break;
|
|
|
|
|
2013-04-15 16:38:48 +04:00
|
|
|
default:
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool StorageDBThread::PendingOperations::Prepare() {
|
2013-04-15 16:38:48 +04:00
|
|
|
// Called under the lock
|
|
|
|
|
|
|
|
// First collect clear operations and then updates, we can
|
|
|
|
// do this since whenever a clear operation for a scope is
|
|
|
|
// scheduled, we drop all updates matching that scope. So,
|
|
|
|
// all scope-related update operations we have here now were
|
|
|
|
// scheduled after the clear operations.
|
2016-01-28 03:05:00 +03:00
|
|
|
for (auto iter = mClears.Iter(); !iter.Done(); iter.Next()) {
|
2020-02-26 02:14:57 +03:00
|
|
|
mExecList.AppendElement(std::move(iter.Data()));
|
2016-01-28 03:05:00 +03:00
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
mClears.Clear();
|
|
|
|
|
2016-01-28 03:05:00 +03:00
|
|
|
for (auto iter = mUpdates.Iter(); !iter.Done(); iter.Next()) {
|
2020-02-26 02:14:57 +03:00
|
|
|
mExecList.AppendElement(std::move(iter.Data()));
|
2016-01-28 03:05:00 +03:00
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
mUpdates.Clear();
|
|
|
|
|
|
|
|
return !!mExecList.Length();
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
nsresult StorageDBThread::PendingOperations::Execute(StorageDBThread* aThread) {
|
2013-04-15 16:38:48 +04:00
|
|
|
// Called outside the lock
|
|
|
|
|
|
|
|
mozStorageTransaction transaction(aThread->mWorkerConnection, false);
|
|
|
|
|
2021-03-04 07:38:06 +03:00
|
|
|
nsresult rv = transaction.Start();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
|
|
|
|
for (uint32_t i = 0; i < mExecList.Length(); ++i) {
|
2020-02-26 02:14:57 +03:00
|
|
|
const auto& task = mExecList[i];
|
2013-04-15 16:38:48 +04:00
|
|
|
rv = task->Perform(aThread);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = transaction.Commit();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool StorageDBThread::PendingOperations::Finalize(nsresult aRv) {
|
2013-04-15 16:38:48 +04:00
|
|
|
// Called under the lock
|
|
|
|
|
|
|
|
// The list is kept on a failure to retry it
|
|
|
|
if (NS_FAILED(aRv)) {
|
|
|
|
// XXX Followup: we may try to reopen the database and flush these
|
|
|
|
// pending tasks, however testing showed that even though I/O is actually
|
|
|
|
// broken some amount of operations is left in sqlite+system buffers and
|
|
|
|
// seems like successfully flushed to disk.
|
|
|
|
// Tested by removing a flash card and disconnecting from network while
|
|
|
|
// using a network drive on Windows system.
|
|
|
|
NS_WARNING("Flush operation on localStorage database failed");
|
|
|
|
|
|
|
|
++mFlushFailureCount;
|
|
|
|
|
|
|
|
return mFlushFailureCount >= 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
mFlushFailureCount = 0;
|
|
|
|
mExecList.Clear();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
namespace {
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool FindPendingClearForOrigin(
|
|
|
|
const nsACString& aOriginSuffix, const nsACString& aOriginNoSuffix,
|
|
|
|
StorageDBThread::DBOperation* aPendingOperation) {
|
|
|
|
if (aPendingOperation->Type() == StorageDBThread::DBOperation::opClearAll) {
|
2015-11-02 06:23:05 +03:00
|
|
|
return true;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
if (aPendingOperation->Type() == StorageDBThread::DBOperation::opClear &&
|
2016-01-05 15:25:00 +03:00
|
|
|
aOriginNoSuffix == aPendingOperation->OriginNoSuffix() &&
|
|
|
|
aOriginSuffix == aPendingOperation->OriginSuffix()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
if (aPendingOperation->Type() ==
|
|
|
|
StorageDBThread::DBOperation::opClearMatchingOrigin &&
|
2016-01-05 15:25:00 +03:00
|
|
|
StringBeginsWith(aOriginNoSuffix, aPendingOperation->Origin())) {
|
2015-11-02 06:23:05 +03:00
|
|
|
return true;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
if (aPendingOperation->Type() ==
|
|
|
|
StorageDBThread::DBOperation::opClearMatchingOriginAttributes &&
|
2016-01-05 15:25:00 +03:00
|
|
|
OriginPatternMatches(aOriginSuffix, aPendingOperation->OriginPattern())) {
|
2015-11-02 06:23:05 +03:00
|
|
|
return true;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2015-11-02 06:23:05 +03:00
|
|
|
return false;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool StorageDBThread::PendingOperations::IsOriginClearPending(
|
|
|
|
const nsACString& aOriginSuffix, const nsACString& aOriginNoSuffix) const {
|
2013-04-15 16:38:48 +04:00
|
|
|
// Called under the lock
|
|
|
|
|
2021-03-24 20:56:49 +03:00
|
|
|
for (const auto& clear : mClears.Values()) {
|
2016-01-05 15:25:00 +03:00
|
|
|
if (FindPendingClearForOrigin(aOriginSuffix, aOriginNoSuffix,
|
2021-03-24 20:56:49 +03:00
|
|
|
clear.get())) {
|
2015-11-02 06:23:05 +03:00
|
|
|
return true;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < mExecList.Length(); ++i) {
|
2016-01-05 15:25:00 +03:00
|
|
|
if (FindPendingClearForOrigin(aOriginSuffix, aOriginNoSuffix,
|
2020-02-26 02:14:57 +03:00
|
|
|
mExecList[i].get())) {
|
2013-04-15 16:38:48 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
namespace {
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool FindPendingUpdateForOrigin(
|
|
|
|
const nsACString& aOriginSuffix, const nsACString& aOriginNoSuffix,
|
|
|
|
StorageDBThread::DBOperation* aPendingOperation) {
|
|
|
|
if ((aPendingOperation->Type() == StorageDBThread::DBOperation::opAddItem ||
|
|
|
|
aPendingOperation->Type() ==
|
|
|
|
StorageDBThread::DBOperation::opUpdateItem ||
|
|
|
|
aPendingOperation->Type() ==
|
|
|
|
StorageDBThread::DBOperation::opRemoveItem) &&
|
2016-01-05 15:25:00 +03:00
|
|
|
aOriginNoSuffix == aPendingOperation->OriginNoSuffix() &&
|
|
|
|
aOriginSuffix == aPendingOperation->OriginSuffix()) {
|
2015-11-02 06:23:05 +03:00
|
|
|
return true;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2015-11-02 06:23:05 +03:00
|
|
|
return false;
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace
|
2013-04-15 16:38:48 +04:00
|
|
|
|
2017-01-04 16:53:01 +03:00
|
|
|
bool StorageDBThread::PendingOperations::IsOriginUpdatePending(
|
|
|
|
const nsACString& aOriginSuffix, const nsACString& aOriginNoSuffix) const {
|
2013-04-15 16:38:48 +04:00
|
|
|
// Called under the lock
|
|
|
|
|
2021-03-24 20:56:49 +03:00
|
|
|
for (const auto& update : mUpdates.Values()) {
|
2016-01-05 15:25:00 +03:00
|
|
|
if (FindPendingUpdateForOrigin(aOriginSuffix, aOriginNoSuffix,
|
2021-03-24 20:56:49 +03:00
|
|
|
update.get())) {
|
2015-11-02 06:23:05 +03:00
|
|
|
return true;
|
|
|
|
}
|
2013-04-15 16:38:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < mExecList.Length(); ++i) {
|
2016-01-05 15:25:00 +03:00
|
|
|
if (FindPendingUpdateForOrigin(aOriginSuffix, aOriginNoSuffix,
|
2020-02-26 02:14:57 +03:00
|
|
|
mExecList[i].get())) {
|
2013-04-15 16:38:48 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-07-26 13:19:13 +03:00
|
|
|
nsresult StorageDBThread::InitHelper::SyncDispatchAndReturnProfilePath(
|
|
|
|
nsAString& aProfilePath) {
|
2020-11-10 15:00:30 +03:00
|
|
|
::mozilla::ipc::AssertIsOnBackgroundThread();
|
2017-07-26 13:19:13 +03:00
|
|
|
|
|
|
|
MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(this));
|
|
|
|
|
|
|
|
mozilla::MutexAutoLock autolock(mMutex);
|
|
|
|
while (mWaiting) {
|
|
|
|
mCondVar.Wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_WARN_IF(NS_FAILED(mMainThreadResultCode))) {
|
|
|
|
return mMainThreadResultCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
aProfilePath = mProfilePath;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
StorageDBThread::InitHelper::Run() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
2017-08-09 00:01:52 +03:00
|
|
|
nsresult rv = GetProfilePath(mProfilePath);
|
2017-07-26 13:19:13 +03:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
mMainThreadResultCode = rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::MutexAutoLock lock(mMutex);
|
|
|
|
MOZ_ASSERT(mWaiting);
|
|
|
|
|
|
|
|
mWaiting = false;
|
|
|
|
mCondVar.Notify();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
StorageDBThread::NoteBackgroundThreadRunnable::Run() {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
|
|
|
|
StorageObserver* observer = StorageObserver::Self();
|
|
|
|
MOZ_ASSERT(observer);
|
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
observer->NoteBackgroundThread(mPrivateBrowsingId, mOwningThread);
|
2017-07-26 13:19:13 +03:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
StorageDBThread::ShutdownRunnable::Run() {
|
|
|
|
if (NS_IsMainThread()) {
|
|
|
|
mDone = true;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2020-11-10 15:00:30 +03:00
|
|
|
::mozilla::ipc::AssertIsOnBackgroundThread();
|
2021-08-19 18:50:39 +03:00
|
|
|
MOZ_RELEASE_ASSERT(mPrivateBrowsingId < kPrivateBrowsingIdCount);
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
StorageDBThread*& storageThread = sStorageThread[mPrivateBrowsingId];
|
|
|
|
if (storageThread) {
|
|
|
|
sStorageThreadDown[mPrivateBrowsingId] = true;
|
|
|
|
|
|
|
|
storageThread->Shutdown();
|
2017-07-26 13:19:13 +03:00
|
|
|
|
2020-11-11 16:12:57 +03:00
|
|
|
delete storageThread;
|
|
|
|
storageThread = nullptr;
|
2017-07-26 13:19:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ALWAYS_SUCCEEDS(NS_DispatchToMainThread(this));
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|