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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/discardable_memory/service/discardable_shared_memory_manager.h"
#include <algorithm>
#include <memory>
#include <utility>
#include "base/atomic_sequence_num.h"
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/memory/discardable_memory.h"
#include "base/memory/shared_memory_tracker.h"
#include "base/numerics/safe_math.h"
#include "base/process/memory.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/synchronization/waitable_event.h"
#include "base/system/sys_info.h"
#include "base/task/current_thread.h"
#include "base/task/single_thread_task_runner.h"
#include "base/task/thread_pool.h"
#include "base/trace_event/memory_allocator_dump.h"
#include "base/trace_event/memory_dump_manager.h"
#include "base/trace_event/process_memory_dump.h"
#include "base/trace_event/trace_event.h"
#include "build/build_config.h"
#include "build/chromecast_buildflags.h"
#include "components/crash/core/common/crash_key.h"
#include "components/discardable_memory/common/discardable_shared_memory_heap.h"
#include "mojo/public/cpp/bindings/self_owned_receiver.h"
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/metrics/histogram_macros.h"
#endif
namespace discardable_memory {
namespace {
const int kInvalidUniqueClientID = -1;
// mojom::DiscardableSharedMemoryManager implementation. It contains the
// |client_id_| which is not visible to client. We associate allocations with a
// given mojo instance, so if the instance is closed, we can release the
// allocations associated with that instance.
class MojoDiscardableSharedMemoryManagerImpl
: public mojom::DiscardableSharedMemoryManager {
public:
MojoDiscardableSharedMemoryManagerImpl(
int32_t client_id,
base::WeakPtr<::discardable_memory::DiscardableSharedMemoryManager>
manager)
: client_id_(client_id), manager_(manager) {}
MojoDiscardableSharedMemoryManagerImpl(
const MojoDiscardableSharedMemoryManagerImpl&) = delete;
MojoDiscardableSharedMemoryManagerImpl& operator=(
const MojoDiscardableSharedMemoryManagerImpl&) = delete;
~MojoDiscardableSharedMemoryManagerImpl() override {
// Remove this client from the |manager_|, so all allocated discardable
// memory belong to this client will be released.
if (manager_)
manager_->ClientRemoved(client_id_);
}
// mojom::DiscardableSharedMemoryManager overrides:
void AllocateLockedDiscardableSharedMemory(
uint32_t size,
int32_t id,
AllocateLockedDiscardableSharedMemoryCallback callback) override {
base::UnsafeSharedMemoryRegion region;
if (manager_) {
manager_->AllocateLockedDiscardableSharedMemoryForClient(client_id_, size,
id, ®ion);
}
std::move(callback).Run(std::move(region));
}
void DeletedDiscardableSharedMemory(int32_t id) override {
if (manager_)
manager_->ClientDeletedDiscardableSharedMemory(id, client_id_);
}
private:
const int32_t client_id_;
base::WeakPtr<::discardable_memory::DiscardableSharedMemoryManager> manager_;
};
class DiscardableMemoryImpl : public base::DiscardableMemory {
public:
DiscardableMemoryImpl(
std::unique_ptr<base::DiscardableSharedMemory> shared_memory,
base::OnceClosure deleted_callback)
: shared_memory_(std::move(shared_memory)),
deleted_callback_(std::move(deleted_callback)),
is_locked_(true) {}
DiscardableMemoryImpl(const DiscardableMemoryImpl&) = delete;
DiscardableMemoryImpl& operator=(const DiscardableMemoryImpl&) = delete;
~DiscardableMemoryImpl() override {
if (is_locked_)
shared_memory_->Unlock(0, 0);
std::move(deleted_callback_).Run();
}
// Overridden from base::DiscardableMemory:
bool Lock() override {
DCHECK(!is_locked_);
if (shared_memory_->Lock(0, 0) != base::DiscardableSharedMemory::SUCCESS)
return false;
is_locked_ = true;
return true;
}
void Unlock() override {
DCHECK(is_locked_);
shared_memory_->Unlock(0, 0);
is_locked_ = false;
}
void* data() const override {
DCHECK(is_locked_);
return shared_memory_->memory().data();
}
void DiscardForTesting() override {
DCHECK(is_locked_);
shared_memory_->Purge(base::Time::Now());
}
base::trace_event::MemoryAllocatorDump* CreateMemoryAllocatorDump(
const char* name,
base::trace_event::ProcessMemoryDump* pmd) const override {
// The memory could have been purged, but we still create a dump with
// mapped_size. So, the size can be inaccurate.
base::trace_event::MemoryAllocatorDump* dump =
pmd->CreateAllocatorDump(name);
dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize,
base::trace_event::MemoryAllocatorDump::kUnitsBytes,
shared_memory_->mapped_size());
return dump;
}
private:
std::unique_ptr<base::DiscardableSharedMemory> shared_memory_;
base::OnceClosure deleted_callback_;
bool is_locked_;
};
// Returns the default memory limit to use for discardable memory, taking
// the amount physical memory available and other platform specific constraints
// into account.
uint64_t GetDefaultMemoryLimit() {
const uint64_t kMegabyte = 1024ull * 1024;
#if BUILDFLAG(IS_CASTOS) || BUILDFLAG(IS_CAST_ANDROID)
// Bypass IsLowEndDevice() check and fix max_default_memory_limit to 64MB on
// Chromecast devices. Set value here as IsLowEndDevice() is used on some, but
// not all Chromecast devices.
uint64_t max_default_memory_limit = 64 * kMegabyte;
#else
#if BUILDFLAG(IS_ANDROID)
// Limits the number of FDs used to 32, assuming a 4MB allocation size.
uint64_t max_default_memory_limit = 128 * kMegabyte;
#else
uint64_t max_default_memory_limit = 512 * kMegabyte;
#endif
// Use 1/8th of discardable memory on low-end devices.
if (base::SysInfo::IsLowEndDevice())
max_default_memory_limit /= 8;
#endif
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
base::FilePath shmem_dir;
if (base::GetShmemTempDir(false, &shmem_dir)) {
int64_t shmem_dir_amount_of_free_space =
base::SysInfo::AmountOfFreeDiskSpace(shmem_dir);
DCHECK_GT(shmem_dir_amount_of_free_space, 0);
int64_t shmem_dir_amount_of_free_space_mb =
shmem_dir_amount_of_free_space / kMegabyte;
if (shmem_dir_amount_of_free_space_mb < 64) {
LOG(WARNING) << "Less than 64MB of free space in temporary directory for "
"shared memory files: "
<< shmem_dir_amount_of_free_space_mb;
}
// Allow 1/2 of available shmem dir space to be used for discardable memory.
max_default_memory_limit =
std::min(max_default_memory_limit,
static_cast<uint64_t>(shmem_dir_amount_of_free_space / 2));
}
#endif
// Allow 25% of physical memory to be used for discardable memory.
return std::min(max_default_memory_limit,
base::SysInfo::AmountOfPhysicalMemory() / 4);
}
const int kEnforceMemoryPolicyDelayMs = 1000;
// Global atomic to generate unique discardable shared memory IDs.
base::AtomicSequenceNumber g_next_discardable_shared_memory_id;
DiscardableSharedMemoryManager* g_instance = nullptr;
} // namespace
DiscardableSharedMemoryManager::MemorySegment::MemorySegment(
std::unique_ptr<base::DiscardableSharedMemory> memory)
: memory_(std::move(memory)) {}
DiscardableSharedMemoryManager::MemorySegment::~MemorySegment() = default;
DiscardableSharedMemoryManager::DiscardableSharedMemoryManager()
: next_client_id_(1),
default_memory_limit_(GetDefaultMemoryLimit()),
memory_limit_(default_memory_limit_),
bytes_allocated_(0),
// Current thread might not have a task runner in tests.
enforce_memory_policy_task_runner_(
base::SingleThreadTaskRunner::GetCurrentDefault()),
enforce_memory_policy_pending_(false),
mojo_thread_message_loop_(base::CurrentThread::GetNull()),
memory_pressure_task_runner_(base::ThreadPool::CreateSequencedTaskRunner(
{base::WithBaseSyncPrimitives()})) {
DCHECK(!g_instance)
<< "A DiscardableSharedMemoryManager already exists in this process.";
g_instance = this;
DCHECK_NE(memory_limit_, 0u);
enforce_memory_policy_callback_ =
base::BindRepeating(&DiscardableSharedMemoryManager::EnforceMemoryPolicy,
weak_ptr_factory_.GetWeakPtr());
base::trace_event::MemoryDumpManager::GetInstance()->RegisterDumpProvider(
this, "DiscardableSharedMemoryManager",
base::SingleThreadTaskRunner::GetCurrentDefault());
// base::Unretained() is safe because memory pressure worker thread will be
// flushed in destructor if the thread is still running.
memory_pressure_task_runner_->PostTask(
FROM_HERE, base::BindOnce(&DiscardableSharedMemoryManager::
CreateMemoryPressureListenerOnWorkerThread,
base::Unretained(this)));
}
DiscardableSharedMemoryManager::~DiscardableSharedMemoryManager() {
base::trace_event::MemoryDumpManager::GetInstance()->UnregisterDumpProvider(
this);
if (mojo_thread_message_loop_) {
// TODO(etiennep): Get rid of mojo_thread_message_loop_ entirely.
DCHECK(mojo_thread_task_runner_);
if (mojo_thread_message_loop_ == base::CurrentThread::Get()) {
mojo_thread_message_loop_->RemoveDestructionObserver(this);
mojo_thread_message_loop_ = base::CurrentThread::GetNull();
mojo_thread_task_runner_ = nullptr;
} else {
// If mojom::DiscardableSharedMemoryManager implementation is running in
// another thread, we need invalidate all related weak ptrs on that
// thread.
base::WaitableEvent event(
base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
bool result = mojo_thread_task_runner_->PostTask(
FROM_HERE,
base::BindOnce(
&DiscardableSharedMemoryManager::InvalidateMojoThreadWeakPtrs,
base::Unretained(this), &event));
LOG_IF(ERROR, !result) << "Invalidate mojo weak ptrs failed!";
if (result)
event.Wait();
}
}
{
// Flush the memory pressure worker thread if the thread is still running.
base::WaitableEvent event(base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED);
bool result = memory_pressure_task_runner_->PostTask(
FROM_HERE,
base::BindOnce([](base::WaitableEvent* event) { event->Signal(); },
&event));
if (result) {
event.Wait();
}
}
DCHECK_EQ(this, g_instance);
g_instance = nullptr;
}
// static
DiscardableSharedMemoryManager* DiscardableSharedMemoryManager::Get() {
return g_instance;
}
void DiscardableSharedMemoryManager::Bind(
mojo::PendingReceiver<mojom::DiscardableSharedMemoryManager> receiver) {
DCHECK(!mojo_thread_message_loop_ ||
mojo_thread_message_loop_ == base::CurrentThread::Get());
if (!mojo_thread_task_runner_) {
DCHECK(!mojo_thread_message_loop_);
mojo_thread_message_loop_ = base::CurrentThread::Get();
mojo_thread_message_loop_->AddDestructionObserver(this);
mojo_thread_task_runner_ =
base::SingleThreadTaskRunner::GetCurrentDefault();
}
mojo::MakeSelfOwnedReceiver(
std::make_unique<MojoDiscardableSharedMemoryManagerImpl>(
next_client_id_++, mojo_thread_weak_ptr_factory_.GetWeakPtr()),
std::move(receiver));
}
std::unique_ptr<base::DiscardableMemory>
DiscardableSharedMemoryManager::AllocateLockedDiscardableMemory(size_t size) {
DCHECK_NE(size, 0u);
int32_t new_id = g_next_discardable_shared_memory_id.GetNext();
// Note: Use DiscardableSharedMemoryHeap for in-process allocation
// of discardable memory if the cost of each allocation is too high.
base::UnsafeSharedMemoryRegion region;
AllocateLockedDiscardableSharedMemory(kInvalidUniqueClientID, size, new_id,
®ion);
std::unique_ptr<base::DiscardableSharedMemory> memory(
new base::DiscardableSharedMemory(std::move(region)));
if (!memory->Map(size))
base::TerminateBecauseOutOfMemory(size);
// Close file descriptor to avoid running out.
memory->Close();
return std::make_unique<DiscardableMemoryImpl>(
std::move(memory),
base::BindOnce(
&DiscardableSharedMemoryManager::DeletedDiscardableSharedMemory,
base::Unretained(this), new_id, kInvalidUniqueClientID));
}
bool DiscardableSharedMemoryManager::OnMemoryDump(
const base::trace_event::MemoryDumpArgs& args,
base::trace_event::ProcessMemoryDump* pmd) {
if (args.level_of_detail ==
base::trace_event::MemoryDumpLevelOfDetail::kBackground) {
base::trace_event::MemoryAllocatorDump* total_dump =
pmd->CreateAllocatorDump("discardable");
total_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize,
base::trace_event::MemoryAllocatorDump::kUnitsBytes,
GetBytesAllocated());
return true;
}
base::AutoLock lock(lock_);
for (const auto& client_entry : clients_) {
const int client_id = client_entry.first;
const MemorySegmentMap& client_segments = client_entry.second;
for (const auto& segment_entry : client_segments) {
const int segment_id = segment_entry.first;
const MemorySegment* segment = segment_entry.second.get();
if (!segment->memory()->mapped_size())
continue;
std::string dump_name = base::StringPrintf(
"discardable/process_%x/segment_%d", client_id, segment_id);
base::trace_event::MemoryAllocatorDump* dump =
pmd->CreateAllocatorDump(dump_name);
dump->AddScalar("virtual_size",
base::trace_event::MemoryAllocatorDump::kUnitsBytes,
segment->memory()->mapped_size());
// Host can only tell if whole segment is locked or not.
dump->AddScalar(
"locked_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes,
segment->memory()->IsMemoryLocked() ? segment->memory()->mapped_size()
: 0u);
segment->memory()->CreateSharedMemoryOwnershipEdge(dump, pmd,
/*is_owned=*/false);
}
}
return true;
}
void DiscardableSharedMemoryManager::
AllocateLockedDiscardableSharedMemoryForClient(
int client_id,
size_t size,
int32_t id,
base::UnsafeSharedMemoryRegion* shared_memory_region) {
AllocateLockedDiscardableSharedMemory(client_id, size, id,
shared_memory_region);
}
void DiscardableSharedMemoryManager::ClientDeletedDiscardableSharedMemory(
int32_t id,
int client_id) {
DeletedDiscardableSharedMemory(id, client_id);
}
void DiscardableSharedMemoryManager::ClientRemoved(int client_id) {
base::AutoLock lock(lock_);
auto it = clients_.find(client_id);
if (it == clients_.end())
return;
size_t bytes_allocated_before_releasing_memory = bytes_allocated_;
for (auto& segment_it : it->second)
ReleaseMemory(segment_it.second->memory());
clients_.erase(it);
if (bytes_allocated_ != bytes_allocated_before_releasing_memory)
BytesAllocatedChanged(bytes_allocated_);
}
void DiscardableSharedMemoryManager::SetMemoryLimit(size_t limit) {
base::AutoLock lock(lock_);
memory_limit_ = limit;
ReduceMemoryUsageUntilWithinMemoryLimit();
}
void DiscardableSharedMemoryManager::EnforceMemoryPolicy() {
base::AutoLock lock(lock_);
enforce_memory_policy_pending_ = false;
ReduceMemoryUsageUntilWithinMemoryLimit();
}
size_t DiscardableSharedMemoryManager::GetBytesAllocated() const {
base::AutoLock lock(lock_);
return bytes_allocated_;
}
void DiscardableSharedMemoryManager::WillDestroyCurrentMessageLoop() {
// The mojo thead is going to be destroyed. We should invalidate all related
// weak ptrs and remove the destrunction observer.
DCHECK(mojo_thread_task_runner_->RunsTasksInCurrentSequence());
DLOG_IF(WARNING, mojo_thread_weak_ptr_factory_.HasWeakPtrs())
<< "Some MojoDiscardableSharedMemoryManagerImpls are still alive. They "
"will be leaked.";
InvalidateMojoThreadWeakPtrs(nullptr);
}
void DiscardableSharedMemoryManager::AllocateLockedDiscardableSharedMemory(
int client_id,
size_t size,
int32_t id,
base::UnsafeSharedMemoryRegion* shared_memory_region) {
base::AutoLock lock(lock_);
// Make sure |id| is not already in use.
MemorySegmentMap& client_segments = clients_[client_id];
if (client_segments.find(id) != client_segments.end()) {
LOG(ERROR) << "Invalid discardable shared memory ID";
*shared_memory_region = base::UnsafeSharedMemoryRegion();
return;
}
// Memory usage must be reduced to prevent the addition of |size| from
// taking usage above the limit. Usage should be reduced to 0 in cases
// where |size| is greater than the limit.
size_t limit = 0;
// Note: the actual mapped size can be larger than requested and cause
// |bytes_allocated_| to temporarily be larger than |memory_limit_|. The
// error is minimized by incrementing |bytes_allocated_| with the actual
// mapped size rather than |size| below.
if (size < memory_limit_)
limit = memory_limit_ - size;
if (bytes_allocated_ > limit)
ReduceMemoryUsageUntilWithinLimit(limit);
std::unique_ptr<base::DiscardableSharedMemory> memory(
new base::DiscardableSharedMemory);
if (!memory->CreateAndMap(size)) {
*shared_memory_region = base::UnsafeSharedMemoryRegion();
return;
}
base::CheckedNumeric<size_t> checked_bytes_allocated = bytes_allocated_;
checked_bytes_allocated += memory->mapped_size();
if (!checked_bytes_allocated.IsValid()) {
*shared_memory_region = base::UnsafeSharedMemoryRegion();
return;
}
bytes_allocated_ = checked_bytes_allocated.ValueOrDie();
BytesAllocatedChanged(bytes_allocated_);
*shared_memory_region = memory->DuplicateRegion();
// Close file descriptor to avoid running out.
memory->Close();
scoped_refptr<MemorySegment> segment(new MemorySegment(std::move(memory)));
client_segments[id] = segment.get();
segments_.push_back(segment.get());
std::push_heap(segments_.begin(), segments_.end(), CompareMemoryUsageTime);
if (bytes_allocated_ > memory_limit_)
ScheduleEnforceMemoryPolicy();
}
void DiscardableSharedMemoryManager::DeletedDiscardableSharedMemory(
int32_t id,
int client_id) {
base::AutoLock lock(lock_);
MemorySegmentMap& client_segments = clients_[client_id];
auto segment_it = client_segments.find(id);
if (segment_it == client_segments.end()) {
LOG(ERROR) << "Invalid discardable shared memory ID";
return;
}
size_t bytes_allocated_before_releasing_memory = bytes_allocated_;
ReleaseMemory(segment_it->second->memory());
client_segments.erase(segment_it);
if (bytes_allocated_ != bytes_allocated_before_releasing_memory)
BytesAllocatedChanged(bytes_allocated_);
}
void DiscardableSharedMemoryManager::OnMemoryPressure(
base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level) {
DCHECK(memory_pressure_task_runner_->RunsTasksInCurrentSequence());
base::AutoLock lock(lock_);
switch (memory_pressure_level) {
case base::MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE:
break;
case base::MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE:
// Purge memory until usage is within half of |memory_limit_|.
ReduceMemoryUsageUntilWithinLimit(memory_limit_ / 2);
break;
case base::MemoryPressureListener::MEMORY_PRESSURE_LEVEL_CRITICAL:
// Purge everything possible when pressure is critical.
ReduceMemoryUsageUntilWithinLimit(0);
break;
}
}
void DiscardableSharedMemoryManager::ReduceMemoryUsageUntilWithinMemoryLimit() {
lock_.AssertAcquired();
if (bytes_allocated_ <= memory_limit_)
return;
ReduceMemoryUsageUntilWithinLimit(memory_limit_);
if (bytes_allocated_ > memory_limit_)
ScheduleEnforceMemoryPolicy();
}
void DiscardableSharedMemoryManager::ReduceMemoryUsageUntilWithinLimit(
size_t limit) {
TRACE_EVENT1("renderer_host",
"DiscardableSharedMemoryManager::"
"ReduceMemoryUsageUntilWithinLimit",
"bytes_allocated", bytes_allocated_);
// Usage time of currently locked segments are updated to this time and
// we stop eviction attempts as soon as we come across a segment that we've
// previously tried to evict but was locked.
base::Time current_time = Now();
lock_.AssertAcquired();
size_t bytes_allocated_before_purging = bytes_allocated_;
while (!segments_.empty()) {
if (bytes_allocated_ <= limit)
break;
// Stop eviction attempts when the LRU segment is currently in use.
if (segments_.front()->memory()->last_known_usage() >= current_time)
break;
std::pop_heap(segments_.begin(), segments_.end(), CompareMemoryUsageTime);
scoped_refptr<MemorySegment> segment = segments_.back();
segments_.pop_back();
// Simply drop the reference and continue if memory has already been
// unmapped. This happens when a memory segment has been deleted by
// the client.
if (!segment->memory()->mapped_size())
continue;
// Attempt to purge LRU segment. When successful, released the memory.
if (segment->memory()->Purge(current_time)) {
ReleaseMemory(segment->memory());
continue;
}
// Add memory segment (with updated usage timestamp) back on heap after
// failed attempt to purge it.
segments_.push_back(segment.get());
std::push_heap(segments_.begin(), segments_.end(), CompareMemoryUsageTime);
}
if (bytes_allocated_ != bytes_allocated_before_purging)
BytesAllocatedChanged(bytes_allocated_);
}
void DiscardableSharedMemoryManager::ReleaseMemory(
base::DiscardableSharedMemory* memory) {
lock_.AssertAcquired();
size_t size = memory->mapped_size();
DCHECK_GE(bytes_allocated_, size);
bytes_allocated_ -= size;
// This will unmap the memory segment and drop our reference. The result
// is that the memory will be released to the OS if the client is no longer
// referencing it.
// Note: We intentionally leave the segment in the |segments| vector to
// avoid reconstructing the heap. The element will be removed from the heap
// when its last usage time is older than all other segments.
memory->Unmap();
memory->Close();
}
void DiscardableSharedMemoryManager::BytesAllocatedChanged(
size_t new_bytes_allocated) const {
static crash_reporter::CrashKeyString<24> total_discardable_memory(
"total-discardable-memory-allocated");
total_discardable_memory.Set(base::NumberToString(new_bytes_allocated));
}
base::Time DiscardableSharedMemoryManager::Now() const {
return base::Time::Now();
}
void DiscardableSharedMemoryManager::ScheduleEnforceMemoryPolicy() {
lock_.AssertAcquired();
if (enforce_memory_policy_pending_)
return;
enforce_memory_policy_pending_ = true;
DCHECK(enforce_memory_policy_task_runner_);
enforce_memory_policy_task_runner_->PostDelayedTask(
FROM_HERE, enforce_memory_policy_callback_,
base::Milliseconds(kEnforceMemoryPolicyDelayMs));
}
void DiscardableSharedMemoryManager::InvalidateMojoThreadWeakPtrs(
base::WaitableEvent* event) {
DCHECK(mojo_thread_task_runner_->RunsTasksInCurrentSequence());
mojo_thread_weak_ptr_factory_.InvalidateWeakPtrs();
mojo_thread_message_loop_->RemoveDestructionObserver(this);
mojo_thread_message_loop_ = base::CurrentThread::GetNull();
if (event)
event->Signal();
}
void DiscardableSharedMemoryManager::
CreateMemoryPressureListenerOnWorkerThread() {
DCHECK(memory_pressure_task_runner_->RunsTasksInCurrentSequence());
base::AutoLock lock(lock_);
memory_pressure_listener_ = std::make_unique<base::MemoryPressureListener>(
FROM_HERE,
base::BindRepeating(&DiscardableSharedMemoryManager::OnMemoryPressure,
base::Unretained(this)));
}
} // namespace discardable_memory
|