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

Unified 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: small refactor (dsinclair review) 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/trace_event/process_memory_maps_dump_provider.cc
diff --git a/base/trace_event/process_memory_maps_dump_provider.cc b/base/trace_event/process_memory_maps_dump_provider.cc
index b6fba80c73629809808a83f0e61f30cad00ee269..4ad6169715d9e09921026176b58c20894a9e8057 100644
--- a/base/trace_event/process_memory_maps_dump_provider.cc
+++ b/base/trace_event/process_memory_maps_dump_provider.cc
@@ -4,6 +4,7 @@
#include "base/trace_event/process_memory_maps_dump_provider.h"
+#include <cctype>
#include <fstream>
#include "base/logging.h"
@@ -19,15 +20,110 @@ namespace trace_event {
std::istream* ProcessMemoryMapsDumpProvider::proc_smaps_for_testing = nullptr;
namespace {
+
+const uint32 kMaxLineSize = 4096;
+
+bool ParseSmapsHeader(std::istream* smaps,
+ ProcessMemoryMaps::VMRegion* region) {
+ // e.g., "00400000-00421000 r-xp 00000000 fc:01 1234 /foo.so\n"
+ bool res = true; // Whether this region should be appended or skipped.
+ uint64 end_addr;
+ std::string prot_flags;
dsinclair 2015/02/23 17:10:34 nit: s/prot/protected/
Primiano Tucci (use gerrit) 2015/02/24 09:16:14 I assume you meant protection not protected, by co
dsinclair 2015/02/24 14:43:13 Yes (whatever the correct expanded version of prot
+ std::string ignored;
+ *smaps >> std::hex >> region->start_address;
+ smaps->ignore(1);
+ *smaps >> std::hex >> end_addr;
+ if (end_addr > region->start_address) {
+ region->size_in_bytes = end_addr - region->start_address;
+ } else {
+ // This is not just paranoia, it can actually happen (See b/17402069).
dsinclair 2015/02/23 17:10:34 Do we want b/ links in open code?
Primiano Tucci (use gerrit) 2015/02/24 09:16:14 I created a public bug to mirror the internal one.
+ region->size_in_bytes = 0;
+ res = false;
+ }
+
+ region->protection_flags = 0;
+ *smaps >> prot_flags;
+ CHECK(4UL == prot_flags.size());
+ if (prot_flags[0] == 'r') {
+ region->protection_flags |=
+ ProcessMemoryMaps::VMRegion::kProtectionFlagsRead;
+ }
+ if (prot_flags[1] == 'w') {
+ region->protection_flags |=
+ ProcessMemoryMaps::VMRegion::kProtectionFlagsWrite;
+ }
+ if (prot_flags[2] == 'x') {
+ region->protection_flags |=
+ ProcessMemoryMaps::VMRegion::kProtectionFlagsExec;
+ }
+ *smaps >> std::hex >> region->mapped_file_offset;
+ *smaps >> ignored; // Ignore device maj-min (fc:01 in the example above).
+ *smaps >> ignored; // Ignore inode number (1234 in the example above).
+
+ while (smaps->peek() == ' ')
+ smaps->ignore(1);
+ char mapped_file[kMaxLineSize];
+ smaps->getline(mapped_file, sizeof(mapped_file));
+ region->mapped_file = mapped_file;
+
+ return res;
+}
+
+uint32 ParseSmapsCounter(std::istream* smaps,
+ ProcessMemoryMaps::VMRegion* region) {
+ // e.g., "RSS: 0 Kb\n"
+ uint32 res = 0;
+ std::string counter_name;
+ *smaps >> counter_name;
+
+ // TODO(primiano): "Swap" should also be accounted as resident. Check
+ // whether Rss isn't already counting swapped and fix below if that is
+ // the case.
+ if (counter_name == "Rss:") {
+ *smaps >> std::dec >> region->byte_stats_resident;
+ region->byte_stats_resident *= 1024;
+ res = 1;
+ } else if (counter_name == "Anonymous:") {
+ *smaps >> std::dec >> region->byte_stats_anonymous;
+ region->byte_stats_anonymous *= 1024;
+ res = 1;
+ }
+ smaps->ignore(kMaxLineSize, '\n');
+
+ return res;
+}
+
uint32 ReadLinuxProcSmapsFile(std::istream* smaps, ProcessMemoryMaps* pmm) {
if (!smaps->good()) {
LOG(ERROR) << "Could not read smaps file.";
return 0;
}
+ const uint32 kNumExpectedCountersPerRegion = 2;
+ uint32 counters_parsed_for_current_region = 0;
uint32 num_regions_processed = 0;
- // TODO(primiano): in next CLs add the actual code to process the smaps file.
+ ProcessMemoryMaps::VMRegion region;
+ bool is_current_region_valid = false;
+ for (;;) {
+ int next = smaps->peek();
+ if (next == std::ifstream::traits_type::eof() || next == '\n')
+ break;
+ if (isxdigit(next) && !isupper(next)) {
+ region = {0};
+ counters_parsed_for_current_region = 0;
+ is_current_region_valid = ParseSmapsHeader(smaps, &region);
+ } else {
+ counters_parsed_for_current_region += ParseSmapsCounter(smaps, &region);
dsinclair 2015/02/23 17:10:34 is it worth adding an ASSERT(counters_parsed_for_c
Primiano Tucci (use gerrit) 2015/02/24 09:16:14 Uhm that cannot technically happen, even if the ke
dsinclair 2015/02/24 14:43:13 I'm more worried about ParseSnmapsCounter getting
Primiano Tucci (use gerrit) 2015/02/24 15:43:25 Ok I see your concern. I think that PS5 should add
+ if (counters_parsed_for_current_region == kNumExpectedCountersPerRegion) {
+ if (is_current_region_valid)
+ pmm->AddVMRegion(region);
+ ++num_regions_processed;
+ counters_parsed_for_current_region = 0;
+ }
+ }
+ }
return num_regions_processed;
}
+
} // namespace
#endif // defined(OS_LINUX) || defined(OS_ANDROID)
« 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