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
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/common/host_discardable_shared_memory_manager.h"
#include <algorithm>
#include <utility>
#include "base/atomic_sequence_num.h"
#include "base/bind.h"
#include "base/callback.h"
#include "base/debug/crash_logging.h"
#include "base/lazy_instance.h"
#include "base/macros.h"
#include "base/memory/discardable_memory.h"
#include "base/numerics/safe_math.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/sys_info.h"
#include "base/thread_task_runner_handle.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 "content/common/child_process_host_impl.h"
#include "content/common/discardable_shared_memory_heap.h"
#include "content/public/common/child_process_host.h"
#if defined(OS_LINUX)
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/metrics/histogram.h"
#endif
namespace content {
namespace {
class DiscardableMemoryImpl : public base::DiscardableMemory {
public:
DiscardableMemoryImpl(scoped_ptr<base::DiscardableSharedMemory> shared_memory,
const base::Closure& deleted_callback)
: shared_memory_(std::move(shared_memory)),
deleted_callback_(deleted_callback),
is_locked_(true) {}
~DiscardableMemoryImpl() override {
if (is_locked_)
shared_memory_->Unlock(0, 0);
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();
}
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:
scoped_ptr<base::DiscardableSharedMemory> shared_memory_;
const base::Closure deleted_callback_;
bool is_locked_;
DISALLOW_COPY_AND_ASSIGN(DiscardableMemoryImpl);
};
// Returns the default memory limit to use for discardable memory, taking
// the amount physical memory available and other platform specific constraints
// into account.
int64_t GetDefaultMemoryLimit() {
const int kMegabyte = 1024 * 1024;
#if defined(OS_ANDROID)
// Limits the number of FDs used to 32, assuming a 4MB allocation size.
int64_t max_default_memory_limit = 128 * kMegabyte;
#else
int64_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;
#if defined(OS_LINUX)
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;
UMA_HISTOGRAM_CUSTOM_COUNTS("Memory.ShmemDir.AmountOfFreeSpace",
shmem_dir_amount_of_free_space_mb, 1,
4 * 1024, // 4 GB
50);
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, 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);
}
base::LazyInstance<HostDiscardableSharedMemoryManager>
g_discardable_shared_memory_manager = LAZY_INSTANCE_INITIALIZER;
const int kEnforceMemoryPolicyDelayMs = 1000;
// Global atomic to generate unique discardable shared memory IDs.
base::StaticAtomicSequenceNumber g_next_discardable_shared_memory_id;
} // namespace
HostDiscardableSharedMemoryManager::MemorySegment::MemorySegment(
scoped_ptr<base::DiscardableSharedMemory> memory)
: memory_(std::move(memory)) {}
HostDiscardableSharedMemoryManager::MemorySegment::~MemorySegment() {
}
HostDiscardableSharedMemoryManager::HostDiscardableSharedMemoryManager()
: memory_limit_(GetDefaultMemoryLimit()),
bytes_allocated_(0),
memory_pressure_listener_(new base::MemoryPressureListener(
base::Bind(&HostDiscardableSharedMemoryManager::OnMemoryPressure,
base::Unretained(this)))),
// Current thread might not have a task runner in tests.
enforce_memory_policy_task_runner_(base::ThreadTaskRunnerHandle::Get()),
enforce_memory_policy_pending_(false),
weak_ptr_factory_(this) {
DCHECK_NE(memory_limit_, 0u);
enforce_memory_policy_callback_ =
base::Bind(&HostDiscardableSharedMemoryManager::EnforceMemoryPolicy,
weak_ptr_factory_.GetWeakPtr());
base::trace_event::MemoryDumpManager::GetInstance()->RegisterDumpProvider(
this, "HostDiscardableSharedMemoryManager", nullptr);
}
HostDiscardableSharedMemoryManager::~HostDiscardableSharedMemoryManager() {
base::trace_event::MemoryDumpManager::GetInstance()->UnregisterDumpProvider(
this);
}
HostDiscardableSharedMemoryManager*
HostDiscardableSharedMemoryManager::current() {
return g_discardable_shared_memory_manager.Pointer();
}
scoped_ptr<base::DiscardableMemory>
HostDiscardableSharedMemoryManager::AllocateLockedDiscardableMemory(
size_t size) {
DiscardableSharedMemoryId new_id =
g_next_discardable_shared_memory_id.GetNext();
base::ProcessHandle current_process_handle = base::GetCurrentProcessHandle();
// Note: Use DiscardableSharedMemoryHeap for in-process allocation
// of discardable memory if the cost of each allocation is too high.
base::SharedMemoryHandle handle;
AllocateLockedDiscardableSharedMemory(current_process_handle,
ChildProcessHost::kInvalidUniqueID,
size, new_id, &handle);
CHECK(base::SharedMemory::IsHandleValid(handle));
scoped_ptr<base::DiscardableSharedMemory> memory(
new base::DiscardableSharedMemory(handle));
CHECK(memory->Map(size));
// Close file descriptor to avoid running out.
memory->Close();
return make_scoped_ptr(new DiscardableMemoryImpl(
std::move(memory),
base::Bind(
&HostDiscardableSharedMemoryManager::DeletedDiscardableSharedMemory,
base::Unretained(this), new_id, ChildProcessHost::kInvalidUniqueID)));
}
bool HostDiscardableSharedMemoryManager::OnMemoryDump(
const base::trace_event::MemoryDumpArgs& args,
base::trace_event::ProcessMemoryDump* pmd) {
base::AutoLock lock(lock_);
for (const auto& process_entry : processes_) {
const int child_process_id = process_entry.first;
const MemorySegmentMap& process_segments = process_entry.second;
for (const auto& segment_entry : process_segments) {
const int segment_id = segment_entry.first;
const MemorySegment* segment = segment_entry.second.get();
if (!segment->memory()->mapped_size())
continue;
// The "size" will be inherited form the shared global dump.
std::string dump_name = base::StringPrintf(
"discardable/process_%x/segment_%d", child_process_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);
// Create the cross-process ownership edge. If the child creates a
// corresponding dump for the same segment, this will avoid to
// double-count them in tracing. If, instead, no other process will emit a
// dump with the same guid, the segment will be accounted to the browser.
const uint64_t child_tracing_process_id =
ChildProcessHostImpl::ChildProcessUniqueIdToTracingProcessId(
child_process_id);
base::trace_event::MemoryAllocatorDumpGuid shared_segment_guid =
DiscardableSharedMemoryHeap::GetSegmentGUIDForTracing(
child_tracing_process_id, segment_id);
pmd->CreateSharedGlobalAllocatorDump(shared_segment_guid);
pmd->AddOwnershipEdge(dump->guid(), shared_segment_guid);
#if defined(COUNT_RESIDENT_BYTES_SUPPORTED)
if (args.level_of_detail ==
base::trace_event::MemoryDumpLevelOfDetail::DETAILED) {
size_t resident_size =
base::trace_event::ProcessMemoryDump::CountResidentBytes(
segment->memory()->memory(), segment->memory()->mapped_size());
// This is added to the global dump since it has to be attributed to
// both the allocator dumps involved.
pmd->GetSharedGlobalAllocatorDump(shared_segment_guid)
->AddScalar("resident_size",
base::trace_event::MemoryAllocatorDump::kUnitsBytes,
static_cast<uint64_t>(resident_size));
}
#endif // defined(COUNT_RESIDENT_BYTES_SUPPORTED)
}
}
return true;
}
void HostDiscardableSharedMemoryManager::
AllocateLockedDiscardableSharedMemoryForChild(
base::ProcessHandle process_handle,
int child_process_id,
size_t size,
DiscardableSharedMemoryId id,
base::SharedMemoryHandle* shared_memory_handle) {
AllocateLockedDiscardableSharedMemory(process_handle, child_process_id, size,
id, shared_memory_handle);
}
void HostDiscardableSharedMemoryManager::ChildDeletedDiscardableSharedMemory(
DiscardableSharedMemoryId id,
int child_process_id) {
DeletedDiscardableSharedMemory(id, child_process_id);
}
void HostDiscardableSharedMemoryManager::ProcessRemoved(int child_process_id) {
base::AutoLock lock(lock_);
ProcessMap::iterator process_it = processes_.find(child_process_id);
if (process_it == processes_.end())
return;
size_t bytes_allocated_before_releasing_memory = bytes_allocated_;
for (auto& segment_it : process_it->second)
ReleaseMemory(segment_it.second->memory());
processes_.erase(process_it);
if (bytes_allocated_ != bytes_allocated_before_releasing_memory)
BytesAllocatedChanged(bytes_allocated_);
}
void HostDiscardableSharedMemoryManager::SetMemoryLimit(size_t limit) {
base::AutoLock lock(lock_);
memory_limit_ = limit;
ReduceMemoryUsageUntilWithinMemoryLimit();
}
void HostDiscardableSharedMemoryManager::EnforceMemoryPolicy() {
base::AutoLock lock(lock_);
enforce_memory_policy_pending_ = false;
ReduceMemoryUsageUntilWithinMemoryLimit();
}
size_t HostDiscardableSharedMemoryManager::GetBytesAllocated() {
base::AutoLock lock(lock_);
return bytes_allocated_;
}
void HostDiscardableSharedMemoryManager::AllocateLockedDiscardableSharedMemory(
base::ProcessHandle process_handle,
int client_process_id,
size_t size,
DiscardableSharedMemoryId id,
base::SharedMemoryHandle* shared_memory_handle) {
base::AutoLock lock(lock_);
// Make sure |id| is not already in use.
MemorySegmentMap& process_segments = processes_[client_process_id];
if (process_segments.find(id) != process_segments.end()) {
LOG(ERROR) << "Invalid discardable shared memory ID";
*shared_memory_handle = base::SharedMemory::NULLHandle();
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);
scoped_ptr<base::DiscardableSharedMemory> memory(
new base::DiscardableSharedMemory);
if (!memory->CreateAndMap(size)) {
*shared_memory_handle = base::SharedMemory::NULLHandle();
return;
}
if (!memory->ShareToProcess(process_handle, shared_memory_handle)) {
LOG(ERROR) << "Cannot share discardable memory segment";
*shared_memory_handle = base::SharedMemory::NULLHandle();
return;
}
// Close file descriptor to avoid running out.
memory->Close();
base::CheckedNumeric<size_t> checked_bytes_allocated = bytes_allocated_;
checked_bytes_allocated += memory->mapped_size();
if (!checked_bytes_allocated.IsValid()) {
*shared_memory_handle = base::SharedMemory::NULLHandle();
return;
}
bytes_allocated_ = checked_bytes_allocated.ValueOrDie();
BytesAllocatedChanged(bytes_allocated_);
scoped_refptr<MemorySegment> segment(new MemorySegment(std::move(memory)));
process_segments[id] = segment.get();
segments_.push_back(segment.get());
std::push_heap(segments_.begin(), segments_.end(), CompareMemoryUsageTime);
if (bytes_allocated_ > memory_limit_)
ScheduleEnforceMemoryPolicy();
}
void HostDiscardableSharedMemoryManager::DeletedDiscardableSharedMemory(
DiscardableSharedMemoryId id,
int client_process_id) {
base::AutoLock lock(lock_);
MemorySegmentMap& process_segments = processes_[client_process_id];
MemorySegmentMap::iterator segment_it = process_segments.find(id);
if (segment_it == process_segments.end()) {
LOG(ERROR) << "Invalid discardable shared memory ID";
return;
}
size_t bytes_allocated_before_releasing_memory = bytes_allocated_;
ReleaseMemory(segment_it->second->memory());
process_segments.erase(segment_it);
if (bytes_allocated_ != bytes_allocated_before_releasing_memory)
BytesAllocatedChanged(bytes_allocated_);
}
void HostDiscardableSharedMemoryManager::OnMemoryPressure(
base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level) {
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
HostDiscardableSharedMemoryManager::ReduceMemoryUsageUntilWithinMemoryLimit() {
lock_.AssertAcquired();
if (bytes_allocated_ <= memory_limit_)
return;
ReduceMemoryUsageUntilWithinLimit(memory_limit_);
if (bytes_allocated_ > memory_limit_)
ScheduleEnforceMemoryPolicy();
}
void HostDiscardableSharedMemoryManager::ReduceMemoryUsageUntilWithinLimit(
size_t limit) {
TRACE_EVENT1("renderer_host",
"HostDiscardableSharedMemoryManager::"
"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 HostDiscardableSharedMemoryManager::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 child process 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 HostDiscardableSharedMemoryManager::BytesAllocatedChanged(
size_t new_bytes_allocated) const {
static const char kTotalDiscardableMemoryAllocatedKey[] =
"total-discardable-memory-allocated";
base::debug::SetCrashKeyValue(kTotalDiscardableMemoryAllocatedKey,
base::Uint64ToString(new_bytes_allocated));
}
base::Time HostDiscardableSharedMemoryManager::Now() const {
return base::Time::Now();
}
void HostDiscardableSharedMemoryManager::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::TimeDelta::FromMilliseconds(kEnforceMemoryPolicyDelayMs));
}
} // namespace content
|