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

Unified Diff: components/browser_watcher/postmortem_minidump_writer_win.cc

Issue 2128683002: Collect unclean shutdown debug information (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tracker
Patch Set: Add CrashpadInfo to minidump Created 4 years, 4 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
Index: components/browser_watcher/postmortem_minidump_writer_win.cc
diff --git a/components/browser_watcher/postmortem_minidump_writer_win.cc b/components/browser_watcher/postmortem_minidump_writer_win.cc
new file mode 100644
index 0000000000000000000000000000000000000000..cf8157476ce4898b90d4bcf72bc7462893de4a9f
--- /dev/null
+++ b/components/browser_watcher/postmortem_minidump_writer_win.cc
@@ -0,0 +1,221 @@
+// Copyright 2016 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.
+//
+// Note: aside from using windows headers to obtain the definitions of minidump
+// structures, nothing here is windows specific. This seems like the best
+// approach given this code is for temporary experimentation on Windows.
+// Longer term, CrashPad will take over the minidump writing in this case as
+// well.
+
+#include "components/browser_watcher/postmortem_minidump_writer.h"
+
+#include <windows.h> // NOLINT
+#include <dbghelp.h>
+
+#include <string>
+
+#include "base/files/file_util.h"
+#include "base/numerics/safe_math.h"
+#include "components/version_info/version_info.h"
+#include "third_party/crashpad/crashpad/minidump/minidump_extensions.h"
+
+namespace browser_watcher {
+
+// The stream type assigned to the minidump stream that holds the serialized
+// stability report.
+// Note: the value was obtained by adding 1 to the stream type used for holding
+// the SyzyAsan proto.
+// TODO(manzagop): centralize the stream type definitions to avoid issues.
+const uint32_t kStabilityReportStreamType = 0x4B6B0002;
+
+PostmortemMinidumpWriter::PostmortemMinidumpWriter()
+ : cursor_(0U), minidump_file_(nullptr) {}
+
+bool PostmortemMinidumpWriter::WriteDump(const StabilityReport& report,
+ const crashpad::UUID& client_id,
+ const crashpad::UUID& report_id,
+ FILE* minidump_file) {
+ DCHECK_NE(nullptr, minidump_file);
+ DCHECK_EQ(0U, cursor_);
+ DCHECK(directory_.empty());
+
+ minidump_file_ = minidump_file;
bcwhite 2016/08/10 16:59:52 Does |minidump_file_| exist just to avoid passing
manzagop (departed) 2016/08/11 13:40:47 It could go either way at this point. Agreed it's
+
+ // Allocate space for the header.
+ Position pos = 0U;
+ if (!Allocate(sizeof(MINIDUMP_HEADER), &pos))
+ return false;
+ DCHECK_EQ(kHeaderPos, pos);
+
+ // Write the proto to the file.
+ std::string serialized_report;
+ report.SerializeToString(&serialized_report);
+ Position report_pos = 0U;
+ if (!AppendBytes(serialized_report, &report_pos))
+ return false;
+
+ // The directory entry for the stability report's stream.
+ {
+ MINIDUMP_DIRECTORY report_directory = {0};
+ report_directory.StreamType = kStabilityReportStreamType;
+ report_directory.Location.Rva = report_pos;
+ report_directory.Location.DataSize = serialized_report.length();
+ directory_.push_back(report_directory);
+ }
+
+ // Write mandatory crash keys. These will be read by crashpad and used as
+ // http request parameters for the upload. Keys and values should match
+ // server side configuration.
+ // TODO(manzagop): use product and version from the stability report. The
+ // current executable's values are an (imperfect) proxy.
+ std::map<std::string, std::string> crash_keys = {
+ {"product", version_info::GetProductName() + "_Postmortem"},
+ {"version", version_info::GetVersionNumber()}};
+ if (!AppendCrashpadInfo(client_id, report_id, crash_keys))
+ return false;
+
+ // Write the directory.
+ Position directory_pos = 0U;
+ if (!AppendVec(directory_, &directory_pos))
+ return false;
+
+ // Write the header.
+ MINIDUMP_HEADER header;
+ header.Signature = MINIDUMP_SIGNATURE;
+ header.Version = MINIDUMP_VERSION;
+ header.NumberOfStreams = directory_.size();
+ header.StreamDirectoryRva = directory_pos;
+ return Write(kHeaderPos, header);
+}
+
+bool PostmortemMinidumpWriter::AppendCrashpadInfo(
+ const crashpad::UUID& client_id,
+ const crashpad::UUID& report_id,
+ const std::map<std::string, std::string>& crash_keys) {
+ // Write the crash keys as the contents of a crashpad dictionary.
+ std::vector<crashpad::MinidumpSimpleStringDictionaryEntry> entries;
+ for (const auto& crash_key : crash_keys) {
+ if (!AppendCrashpadDictionaryEntry(crash_key.first, crash_key.second,
+ &entries)) {
+ return false;
+ }
+ }
+
+ // Write the dictionary's index.
+ Position dict_pos = 0U;
+ uint32_t entry_count = entries.size();
+ if (entry_count > 0) {
+ if (!Append(entry_count, &dict_pos))
+ return false;
+ Position unused_pos = 0U;
+ if (!AppendVec(entries, &unused_pos))
+ return false;
+ }
+
+ MINIDUMP_LOCATION_DESCRIPTOR simple_annotations;
+ simple_annotations.DataSize = 0U;
+ if (entry_count > 0) {
+ simple_annotations.DataSize =
+ sizeof(crashpad::MinidumpSimpleStringDictionary) +
+ entry_count * sizeof(crashpad::MinidumpSimpleStringDictionaryEntry);
+ }
+ simple_annotations.Rva = dict_pos;
+
+ // Write the crashpad info.
+ crashpad::MinidumpCrashpadInfo crashpad_info;
+ crashpad_info.version = crashpad::MinidumpCrashpadInfo::kVersion;
+ crashpad_info.report_id = report_id;
+ crashpad_info.client_id = client_id;
+ crashpad_info.simple_annotations = simple_annotations;
+ // Note: module_list is left at 0, which means none.
+
+ Position crashpad_pos = 0U;
+ if (!Append(crashpad_info, &crashpad_pos))
+ return false;
+
+ // Append a directory entry for the crashpad info stream.
+ MINIDUMP_DIRECTORY crashpad_directory = {0};
+ crashpad_directory.StreamType = crashpad::kMinidumpStreamTypeCrashpadInfo;
+ crashpad_directory.Location.Rva = crashpad_pos;
+ crashpad_directory.Location.DataSize = sizeof(crashpad::MinidumpCrashpadInfo);
+ directory_.push_back(crashpad_directory);
+
+ return true;
+}
+
+bool PostmortemMinidumpWriter::AppendCrashpadDictionaryEntry(
+ const std::string& key,
+ const std::string& value,
+ std::vector<crashpad::MinidumpSimpleStringDictionaryEntry>* entries) {
+ DCHECK_NE(nullptr, entries);
+
+ Position key_pos = 0U;
+ if (!AppendUtf8String(key, &key_pos))
+ return false;
+ Position value_pos = 0U;
+ if (!AppendUtf8String(value, &value_pos))
+ return false;
+
+ crashpad::MinidumpSimpleStringDictionaryEntry entry = {0};
+ entry.key = key_pos;
+ entry.value = value_pos;
+ entries->push_back(entry);
+
+ return true;
+}
+
+bool PostmortemMinidumpWriter::Allocate(size_t size_bytes, Position* pos) {
+ DCHECK(pos);
+ *pos = cursor_;
+ return IncrementCursor(size_bytes);
+}
+
+bool PostmortemMinidumpWriter::WriteBytes(Position pos,
+ size_t size_bytes,
+ const void* data) {
+ DCHECK(data);
+ DCHECK_NE(base::kInvalidPlatformFile, minidump_file_);
+
+ // Validate the write does not extend past the cursor.
+ base::CheckedNumeric<Position> pos_end = pos;
+ pos_end += size_bytes;
+ if (!pos_end.IsValid() || pos_end.ValueOrDie() > cursor_)
+ return false;
+
+ // Seek and write.
+ if (fseek(minidump_file_, pos, SEEK_SET) != 0)
+ return false;
+ return fwrite(data, sizeof(char), size_bytes, minidump_file_) == size_bytes;
+}
+
+bool PostmortemMinidumpWriter::AppendUtf8String(const std::string data,
+ Position* pos) {
+ DCHECK(pos);
+ uint32_t string_size = data.size();
+ if (!Append(string_size, pos))
+ return false;
+
+ Position unused_pos = 0U;
+ return AppendBytes(data, &unused_pos);
+}
+
+bool PostmortemMinidumpWriter::AppendBytes(base::StringPiece data,
+ Position* pos) {
+ DCHECK(pos);
+ if (!Allocate(data.length(), pos))
+ return false;
+ return WriteBytes(*pos, data.length(), data.data());
+}
+
+bool PostmortemMinidumpWriter::IncrementCursor(size_t size_bytes) {
+ base::CheckedNumeric<Position> cur = cursor_;
+ cur += size_bytes;
+ if (!cur.IsValid())
+ return false;
+
+ cursor_ += size_bytes;
+ return true;
+}
+
+} // namespace browser_watcher

Powered by Google App Engine
This is Rietveld 408576698