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

Side by Side Diff: components/crash/content/app/breakpad_linux.cc

Issue 2086483006: Dump process type into breakpad. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change the process names Created 4 years, 5 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 | « components/crash/content/app/breakpad_linux.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // For linux_syscall_support.h. This makes it safe to call embedded system 5 // For linux_syscall_support.h. This makes it safe to call embedded system
6 // calls when in seccomp mode. 6 // calls when in seccomp mode.
7 7
8 #include "components/crash/content/app/breakpad_linux.h" 8 #include "components/crash/content/app/breakpad_linux.h"
9 9
10 #include <fcntl.h> 10 #include <fcntl.h>
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 bool g_is_crash_reporter_enabled = false; 94 bool g_is_crash_reporter_enabled = false;
95 uint64_t g_process_start_time = 0; 95 uint64_t g_process_start_time = 0;
96 pid_t g_pid = 0; 96 pid_t g_pid = 0;
97 char* g_crash_log_path = nullptr; 97 char* g_crash_log_path = nullptr;
98 ExceptionHandler* g_breakpad = nullptr; 98 ExceptionHandler* g_breakpad = nullptr;
99 99
100 #if defined(ADDRESS_SANITIZER) 100 #if defined(ADDRESS_SANITIZER)
101 const char* g_asan_report_str = nullptr; 101 const char* g_asan_report_str = nullptr;
102 #endif 102 #endif
103 #if defined(OS_ANDROID) 103 #if defined(OS_ANDROID)
104 const char kWebViewProcessType[] = "webview";
105 char* g_process_type = nullptr; 104 char* g_process_type = nullptr;
106 ExceptionHandler* g_microdump = nullptr; 105 ExceptionHandler* g_microdump = nullptr;
107 int g_signal_code_pipe_fd = -1; 106 int g_signal_code_pipe_fd = -1;
108 107
109 class MicrodumpInfo { 108 class MicrodumpInfo {
110 public: 109 public:
111 MicrodumpInfo() 110 MicrodumpInfo()
112 : microdump_build_fingerprint_(nullptr), 111 : microdump_build_fingerprint_(nullptr),
113 microdump_product_info_(nullptr), 112 microdump_product_info_(nullptr),
114 microdump_gpu_fingerprint_(nullptr) {} 113 microdump_gpu_fingerprint_(nullptr) {}
(...skipping 15 matching lines...) Expand all
130 void Initialize(const std::string& process_type, 129 void Initialize(const std::string& process_type,
131 const char* product_name, 130 const char* product_name,
132 const char* product_version, 131 const char* product_version,
133 const char* android_build_fp); 132 const char* android_build_fp);
134 133
135 private: 134 private:
136 base::ThreadChecker thread_checker_; 135 base::ThreadChecker thread_checker_;
137 const char* microdump_build_fingerprint_; 136 const char* microdump_build_fingerprint_;
138 const char* microdump_product_info_; 137 const char* microdump_product_info_;
139 const char* microdump_gpu_fingerprint_; 138 const char* microdump_gpu_fingerprint_;
139 const char* microdump_process_type_;
140 }; 140 };
141 141
142 base::LazyInstance<MicrodumpInfo> g_microdump_info = 142 base::LazyInstance<MicrodumpInfo> g_microdump_info =
143 LAZY_INSTANCE_INITIALIZER; 143 LAZY_INSTANCE_INITIALIZER;
144 144
145 #endif 145 #endif
146 146
147 CrashKeyStorage* g_crash_keys = nullptr; 147 CrashKeyStorage* g_crash_keys = nullptr;
148 148
149 // Writes the value |v| as 16 hex characters to the memory pointed at by 149 // Writes the value |v| as 16 hex characters to the memory pointed at by
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 g_microdump->set_minidump_descriptor(minidump_descriptor); 871 g_microdump->set_minidump_descriptor(minidump_descriptor);
872 } 872 }
873 } 873 }
874 874
875 void MicrodumpInfo::Initialize(const std::string& process_type, 875 void MicrodumpInfo::Initialize(const std::string& process_type,
876 const char* product_name, 876 const char* product_name,
877 const char* product_version, 877 const char* product_version,
878 const char* android_build_fp) { 878 const char* android_build_fp) {
879 DCHECK(thread_checker_.CalledOnValidThread()); 879 DCHECK(thread_checker_.CalledOnValidThread());
880 DCHECK(!g_microdump); 880 DCHECK(!g_microdump);
881 bool is_browser_process = 881 bool is_browser_process = process_type.empty() ||
882 process_type.empty() || process_type == kWebViewProcessType; 882 process_type == kWebViewSingleProcessType ||
883 process_type == kWebViewBrowserProcessType;
883 884
884 MinidumpDescriptor descriptor(MinidumpDescriptor::kMicrodumpOnConsole); 885 MinidumpDescriptor descriptor(MinidumpDescriptor::kMicrodumpOnConsole);
885 886
886 if (product_name && product_version) { 887 if (product_name && product_version) {
887 microdump_product_info_ = 888 microdump_product_info_ =
888 strdup((product_name + std::string(":") + product_version).c_str()); 889 strdup((product_name + std::string(":") + product_version).c_str());
889 ANNOTATE_LEAKING_OBJECT_PTR(microdump_product_info_); 890 ANNOTATE_LEAKING_OBJECT_PTR(microdump_product_info_);
890 descriptor.microdump_extra_info()->product_info = microdump_product_info_; 891 descriptor.microdump_extra_info()->product_info = microdump_product_info_;
891 } 892 }
892 893
894 microdump_process_type_ =
895 strdup(process_type.empty() ? "browser" : process_type.c_str());
Torne 2016/07/14 10:29:09 Just a nit: It looks a bit weird having the remapp
896 ANNOTATE_LEAKING_OBJECT_PTR(microdump_process_type_);
897 descriptor.microdump_extra_info()->process_type = microdump_process_type_;
898
893 if (android_build_fp) { 899 if (android_build_fp) {
894 microdump_build_fingerprint_ = strdup(android_build_fp); 900 microdump_build_fingerprint_ = strdup(android_build_fp);
895 ANNOTATE_LEAKING_OBJECT_PTR(microdump_build_fingerprint_); 901 ANNOTATE_LEAKING_OBJECT_PTR(microdump_build_fingerprint_);
896 descriptor.microdump_extra_info()->build_fingerprint = 902 descriptor.microdump_extra_info()->build_fingerprint =
897 microdump_build_fingerprint_; 903 microdump_build_fingerprint_;
898 } 904 }
899 905
900 if (microdump_gpu_fingerprint_) { 906 if (microdump_gpu_fingerprint_) {
901 descriptor.microdump_extra_info()->gpu_fingerprint = 907 descriptor.microdump_extra_info()->gpu_fingerprint =
902 microdump_gpu_fingerprint_; 908 microdump_gpu_fingerprint_;
903 } 909 }
904 910
905 g_microdump = 911 g_microdump =
906 new ExceptionHandler(descriptor, nullptr, MicrodumpCrashDone, 912 new ExceptionHandler(descriptor, nullptr, MicrodumpCrashDone,
907 reinterpret_cast<void*>(is_browser_process), 913 reinterpret_cast<void*>(is_browser_process),
908 true, // Install handlers. 914 true, // Install handlers.
909 -1); // Server file descriptor. -1 for in-process. 915 -1); // Server file descriptor. -1 for in-process.
910 916
911 if (process_type == kWebViewProcessType) { 917 if (process_type == kWebViewSingleProcessType ||
918 process_type == kWebViewBrowserProcessType) {
919 // TODO(tobiasjs): figure out what to do with on demand minidump on the
920 // renderer process of webview.
912 // We do not use |DumpProcess()| for handling programatically 921 // We do not use |DumpProcess()| for handling programatically
913 // generated dumps for WebView because we only know the file 922 // generated dumps for WebView because we only know the file
914 // descriptor to which we are dumping at the time of the call to 923 // descriptor to which we are dumping at the time of the call to
915 // |DumpWithoutCrashing()|. Therefore we need to construct the 924 // |DumpWithoutCrashing()|. Therefore we need to construct the
916 // |MinidumpDescriptor| and |ExceptionHandler| instances as 925 // |MinidumpDescriptor| and |ExceptionHandler| instances as
917 // needed, instead of setting up |g_breakpad| at initialization 926 // needed, instead of setting up |g_breakpad| at initialization
918 // time. 927 // time.
919 base::debug::SetDumpWithoutCrashingFunction( 928 base::debug::SetDumpWithoutCrashingFunction(
920 &GenerateMinidumpOnDemandForAndroid); 929 &GenerateMinidumpOnDemandForAndroid);
921 } else if (!process_type.empty()) { 930 } else if (!process_type.empty()) {
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
1922 const std::string& gpu_fingerprint) { 1931 const std::string& gpu_fingerprint) {
1923 g_microdump_info.Get().SetGpuFingerprint(gpu_fingerprint); 1932 g_microdump_info.Get().SetGpuFingerprint(gpu_fingerprint);
1924 } 1933 }
1925 #endif // OS_ANDROID 1934 #endif // OS_ANDROID
1926 1935
1927 bool IsCrashReporterEnabled() { 1936 bool IsCrashReporterEnabled() {
1928 return g_is_crash_reporter_enabled; 1937 return g_is_crash_reporter_enabled;
1929 } 1938 }
1930 1939
1931 } // namespace breakpad 1940 } // namespace breakpad
OLDNEW
« no previous file with comments | « components/crash/content/app/breakpad_linux.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698