From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../other/UntrustedModulesBackupService.cpp | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 toolkit/components/telemetry/other/UntrustedModulesBackupService.cpp (limited to 'toolkit/components/telemetry/other/UntrustedModulesBackupService.cpp') diff --git a/toolkit/components/telemetry/other/UntrustedModulesBackupService.cpp b/toolkit/components/telemetry/other/UntrustedModulesBackupService.cpp new file mode 100644 index 0000000000..a0638e5aec --- /dev/null +++ b/toolkit/components/telemetry/other/UntrustedModulesBackupService.cpp @@ -0,0 +1,97 @@ +/* -*- 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 https://mozilla.org/MPL/2.0/. */ + +#include "UntrustedModulesBackupService.h" + +#include "mozilla/ClearOnShutdown.h" +#include "mozilla/HashFunctions.h" +#include "mozilla/SchedulerGroup.h" +#include "mozilla/StaticLocalPtr.h" + +namespace mozilla { + +ProcessHashKey::ProcessHashKey(GeckoProcessType aType, DWORD aPid) + : mType(aType), mPid(aPid) {} + +bool ProcessHashKey::operator==(const ProcessHashKey& aOther) const { + return mPid == aOther.mPid && mType == aOther.mType; +} + +PLDHashNumber ProcessHashKey::Hash() const { return HashGeneric(mPid, mType); } + +void UntrustedModulesBackupData::Add(UntrustedModulesData&& aData) { + WithEntryHandle( + ProcessHashKey(aData.mProcessType, aData.mPid), [&](auto&& p) { + if (p) { + p.Data()->mData.Merge(std::move(aData)); + } else { + p.Insert(MakeRefPtr(std::move(aData))); + } + }); +} + +void UntrustedModulesBackupData::AddWithoutStacks( + UntrustedModulesData&& aData) { + WithEntryHandle( + ProcessHashKey(aData.mProcessType, aData.mPid), [&](auto&& p) { + if (p) { + p.Data()->mData.MergeWithoutStacks(std::move(aData)); + } else { + aData.Truncate(true); + p.Insert(MakeRefPtr(std::move(aData))); + } + }); +} + +/* static */ +UntrustedModulesBackupService* UntrustedModulesBackupService::Get() { + if (!XRE_IsParentProcess()) { + return nullptr; + } + + static StaticLocalRefPtr sInstance( + []() -> already_AddRefed { + RefPtr instance( + new UntrustedModulesBackupService()); + + auto setClearOnShutdown = [ptr = &sInstance]() -> void { + ClearOnShutdown(ptr); + }; + + if (NS_IsMainThread()) { + setClearOnShutdown(); + return instance.forget(); + } + + SchedulerGroup::Dispatch( + TaskCategory::Other, + NS_NewRunnableFunction( + "mozilla::UntrustedModulesBackupService::Get", + std::move(setClearOnShutdown))); + + return instance.forget(); + }()); + + return sInstance; +} + +void UntrustedModulesBackupService::Backup(UntrustedModulesData&& aData) { + mStaging.Add(std::move(aData)); +} + +void UntrustedModulesBackupService::SettleAllStagingData() { + UntrustedModulesBackupData staging; + staging.SwapElements(mStaging); + + for (auto&& iter = staging.Iter(); !iter.Done(); iter.Next()) { + if (!iter.Data()) { + continue; + } + mSettled.AddWithoutStacks(std::move(iter.Data()->mData)); + } +} + +} // namespace mozilla -- cgit v1.2.3