1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/scheduler/browser_ui_thread_scheduler.h"
#include <memory>
#include <utility>
#include <vector>
#include "base/feature_list.h"
#include "base/functional/callback_helpers.h"
#include "base/run_loop.h"
#include "base/task/single_thread_task_runner.h"
#include "base/task/thread_pool/thread_pool_instance.h"
#include "base/test/bind.h"
#include "base/test/mock_callback.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/test_future.h"
#include "content/common/features.h"
#include "content/public/browser/browser_thread.h"
#include "partition_alloc/extended_api.h"
#include "partition_alloc/partition_alloc_for_testing.h"
#include "partition_alloc/scheduler_loop_quarantine_support.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
namespace {
using StrictMockTask =
testing::StrictMock<base::MockCallback<base::RepeatingCallback<void()>>>;
base::OnceClosure RunOnDestruction(base::OnceClosure task) {
return base::BindOnce(
[](std::unique_ptr<base::ScopedClosureRunner>) {},
std::make_unique<base::ScopedClosureRunner>(std::move(task)));
}
base::OnceClosure PostOnDestruction(
scoped_refptr<base::SingleThreadTaskRunner> task_queue,
base::OnceClosure task) {
return RunOnDestruction(base::BindOnce(
[](base::OnceClosure task,
scoped_refptr<base::SingleThreadTaskRunner> task_queue) {
task_queue->PostTask(FROM_HERE, std::move(task));
},
std::move(task), task_queue));
}
TEST(BrowserUIThreadSchedulerTest, DestructorPostChainDuringShutdown) {
auto browser_ui_thread_scheduler_ =
std::make_unique<BrowserUIThreadScheduler>();
browser_ui_thread_scheduler_->GetHandle()->OnStartupComplete();
auto task_queue =
browser_ui_thread_scheduler_->GetHandle()->GetBrowserTaskRunner(
BrowserUIThreadScheduler::QueueType::kDefault);
bool run = false;
task_queue->PostTask(
FROM_HERE,
PostOnDestruction(
task_queue,
PostOnDestruction(task_queue,
RunOnDestruction(base::BindOnce(
[](bool* run) { *run = true; }, &run)))));
EXPECT_FALSE(run);
browser_ui_thread_scheduler_.reset();
EXPECT_TRUE(run);
}
class BrowserUIThreadSchedulerLoopQuarantineTest : public testing::Test {
private:
base::test::ScopedFeatureList scoped_feature_list_{
features::
kPartitionAllocSchedulerLoopQuarantineTaskObserverForBrowserUIThread};
};
TEST_F(BrowserUIThreadSchedulerLoopQuarantineTest,
TestAllocationGetPurgedFromQuarantineAfterTaskCompletion) {
#if defined(MEMORY_TOOL_REPLACES_ALLOCATOR)
GTEST_SKIP() << "This test does not work with memory tools.";
#elif !PA_BUILDFLAG(USE_PARTITION_ALLOC_AS_MALLOC) || \
!PA_CONFIG(THREAD_CACHE_SUPPORTED)
GTEST_SKIP() << "This test requires PA-E and ThreadCache.";
#else
std::unique_ptr<BrowserUIThreadScheduler> browser_ui_thread_scheduler =
BrowserUIThreadScheduler::CreateForTesting();
browser_ui_thread_scheduler->GetHandle()->OnStartupComplete();
// Pick up a queue.
auto task_queue =
browser_ui_thread_scheduler->GetHandle()->GetBrowserTaskRunner(
BrowserUIThreadScheduler::QueueType::kUserBlocking);
// Prepare PA root for testing.
partition_alloc::PartitionOptions opts;
opts.scheduler_loop_quarantine_thread_local_config.enable_quarantine = true;
opts.scheduler_loop_quarantine_thread_local_config.branch_capacity_in_bytes =
4096;
partition_alloc::PartitionAllocatorForTesting allocator(opts);
partition_alloc::PartitionRoot& root = *allocator.root();
// Disables ThreadCache for the default allocator and enables it for the
// testing allocator.
partition_alloc::internal::ThreadCacheProcessScopeForTesting tcache_scope(
&root);
partition_alloc::internal::
ScopedSchedulerLoopQuarantineBranchAccessorForTesting branch_accessor(
&root);
void* ptr = root.Alloc(16);
base::test::TestFuture<void> future;
task_queue->PostTaskAndReply(
FROM_HERE, base::BindLambdaForTesting([&]() {
EXPECT_FALSE(branch_accessor.IsQuarantined(ptr));
root.Free<
partition_alloc::internal::FreeFlags::kSchedulerLoopQuarantine>(
ptr);
EXPECT_TRUE(branch_accessor.IsQuarantined(ptr));
}),
future.GetCallback());
EXPECT_TRUE(future.Wait());
// `ptr` must not be in the quarantine as the scheduler finished its loop.
EXPECT_FALSE(branch_accessor.IsQuarantined(ptr));
#endif
}
} // namespace
} // namespace content
|