Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: base/trace_event/process_memory_maps_dump_provider.cc

Issue 951463002: [tracing] Add memory maps dumper impl for Linux/Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mmaps_skeleton
Patch Set: Fix for iOS Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/trace_event/process_memory_maps_dump_provider_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/trace_event/process_memory_maps_dump_provider.h" 5 #include "base/trace_event/process_memory_maps_dump_provider.h"
6 6
7 #include <cctype>
7 #include <fstream> 8 #include <fstream>
8 9
9 #include "base/logging.h" 10 #include "base/logging.h"
10 #include "base/process/process_metrics.h" 11 #include "base/process/process_metrics.h"
11 #include "base/trace_event/process_memory_dump.h" 12 #include "base/trace_event/process_memory_dump.h"
12 #include "base/trace_event/process_memory_maps.h" 13 #include "base/trace_event/process_memory_maps.h"
13 14
14 namespace base { 15 namespace base {
15 namespace trace_event { 16 namespace trace_event {
16 17
17 #if defined(OS_LINUX) || defined(OS_ANDROID) 18 #if defined(OS_LINUX) || defined(OS_ANDROID)
18 // static 19 // static
19 std::istream* ProcessMemoryMapsDumpProvider::proc_smaps_for_testing = nullptr; 20 std::istream* ProcessMemoryMapsDumpProvider::proc_smaps_for_testing = nullptr;
20 21
21 namespace { 22 namespace {
23
24 const uint32 kMaxLineSize = 4096;
25
26 bool ParseSmapsHeader(std::istream* smaps,
27 ProcessMemoryMaps::VMRegion* region) {
28 // e.g., "00400000-00421000 r-xp 00000000 fc:01 1234 /foo.so\n"
29 bool res = true; // Whether this region should be appended or skipped.
30 uint64 end_addr;
31 std::string protection_flags;
32 std::string ignored;
33 *smaps >> std::hex >> region->start_address;
34 smaps->ignore(1);
35 *smaps >> std::hex >> end_addr;
36 if (end_addr > region->start_address) {
37 region->size_in_bytes = end_addr - region->start_address;
38 } else {
39 // This is not just paranoia, it can actually happen (See crbug.com/461237).
40 region->size_in_bytes = 0;
41 res = false;
42 }
43
44 region->protection_flags = 0;
45 *smaps >> protection_flags;
46 CHECK(4UL == protection_flags.size());
47 if (protection_flags[0] == 'r') {
48 region->protection_flags |=
49 ProcessMemoryMaps::VMRegion::kProtectionFlagsRead;
50 }
51 if (protection_flags[1] == 'w') {
52 region->protection_flags |=
53 ProcessMemoryMaps::VMRegion::kProtectionFlagsWrite;
54 }
55 if (protection_flags[2] == 'x') {
56 region->protection_flags |=
57 ProcessMemoryMaps::VMRegion::kProtectionFlagsExec;
58 }
59 *smaps >> std::hex >> region->mapped_file_offset;
60 *smaps >> ignored; // Ignore device maj-min (fc:01 in the example above).
61 *smaps >> ignored; // Ignore inode number (1234 in the example above).
62
63 while (smaps->peek() == ' ')
64 smaps->ignore(1);
65 char mapped_file[kMaxLineSize];
66 smaps->getline(mapped_file, sizeof(mapped_file));
67 region->mapped_file = mapped_file;
68
69 return res;
70 }
71
72 uint32 ParseSmapsCounter(std::istream* smaps,
73 ProcessMemoryMaps::VMRegion* region) {
74 // e.g., "RSS: 0 Kb\n"
75 uint32 res = 0;
76 std::string counter_name;
77 *smaps >> counter_name;
78
79 // TODO(primiano): "Swap" should also be accounted as resident. Check
80 // whether Rss isn't already counting swapped and fix below if that is
81 // the case.
82 if (counter_name == "Rss:") {
83 *smaps >> std::dec >> region->byte_stats_resident;
84 region->byte_stats_resident *= 1024;
85 res = 1;
86 } else if (counter_name == "Anonymous:") {
87 *smaps >> std::dec >> region->byte_stats_anonymous;
88 region->byte_stats_anonymous *= 1024;
89 res = 1;
90 }
91
92 #ifndef NDEBUG
93 // Paranoid check against changes of the Kernel /proc interface.
94 if (res) {
95 std::string unit;
96 *smaps >> unit;
97 DCHECK_EQ("kB", unit);
98 }
99 #endif
100
101 smaps->ignore(kMaxLineSize, '\n');
102
103 return res;
104 }
105
22 uint32 ReadLinuxProcSmapsFile(std::istream* smaps, ProcessMemoryMaps* pmm) { 106 uint32 ReadLinuxProcSmapsFile(std::istream* smaps, ProcessMemoryMaps* pmm) {
23 if (!smaps->good()) { 107 if (!smaps->good()) {
24 LOG(ERROR) << "Could not read smaps file."; 108 LOG(ERROR) << "Could not read smaps file.";
25 return 0; 109 return 0;
26 } 110 }
27 uint32 num_regions_processed = 0; 111 const uint32 kNumExpectedCountersPerRegion = 2;
28 // TODO(primiano): in next CLs add the actual code to process the smaps file. 112 uint32 counters_parsed_for_current_region = 0;
29 return num_regions_processed; 113 uint32 num_valid_regions = 0;
114 ProcessMemoryMaps::VMRegion region;
115 bool should_add_current_region = false;
116 for (;;) {
117 int next = smaps->peek();
118 if (next == std::ifstream::traits_type::eof() || next == '\n')
119 break;
120 if (isxdigit(next) && !isupper(next)) {
121 region = {0};
122 counters_parsed_for_current_region = 0;
123 should_add_current_region = ParseSmapsHeader(smaps, &region);
124 } else {
125 counters_parsed_for_current_region += ParseSmapsCounter(smaps, &region);
126 DCHECK_LE(counters_parsed_for_current_region,
127 kNumExpectedCountersPerRegion);
128 if (counters_parsed_for_current_region == kNumExpectedCountersPerRegion) {
129 if (should_add_current_region) {
130 pmm->AddVMRegion(region);
131 ++num_valid_regions;
132 should_add_current_region = false;
133 }
134 }
135 }
136 }
137 return num_valid_regions;
30 } 138 }
139
31 } // namespace 140 } // namespace
32 #endif // defined(OS_LINUX) || defined(OS_ANDROID) 141 #endif // defined(OS_LINUX) || defined(OS_ANDROID)
33 142
34 // static 143 // static
35 ProcessMemoryMapsDumpProvider* ProcessMemoryMapsDumpProvider::GetInstance() { 144 ProcessMemoryMapsDumpProvider* ProcessMemoryMapsDumpProvider::GetInstance() {
36 return Singleton<ProcessMemoryMapsDumpProvider, 145 return Singleton<ProcessMemoryMapsDumpProvider,
37 LeakySingletonTraits<ProcessMemoryMapsDumpProvider>>::get(); 146 LeakySingletonTraits<ProcessMemoryMapsDumpProvider>>::get();
38 } 147 }
39 148
40 ProcessMemoryMapsDumpProvider::ProcessMemoryMapsDumpProvider() { 149 ProcessMemoryMapsDumpProvider::ProcessMemoryMapsDumpProvider() {
(...skipping 17 matching lines...) Expand all
58 #else 167 #else
59 LOG(ERROR) << "ProcessMemoryMaps dump provider is supported only on Linux"; 168 LOG(ERROR) << "ProcessMemoryMaps dump provider is supported only on Linux";
60 #endif 169 #endif
61 170
62 if (res > 0) 171 if (res > 0)
63 pmd->set_has_process_mmaps(); 172 pmd->set_has_process_mmaps();
64 } 173 }
65 174
66 } // namespace trace_event 175 } // namespace trace_event
67 } // namespace base 176 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/process_memory_maps_dump_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698