OLD | NEW |
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 Loading... |
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 Loading... |
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 Loading... |
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 // |process_type| for webview's browser process is kBrowserProcessType or |
882 process_type.empty() || process_type == kWebViewProcessType; | 882 // kWebViewSingleProcessType. |process_type| for chrome's browser process is |
| 883 // an empty string. |
| 884 bool is_browser_process = process_type.empty() || |
| 885 process_type == kWebViewSingleProcessType || |
| 886 process_type == kBrowserProcessType; |
883 | 887 |
884 MinidumpDescriptor descriptor(MinidumpDescriptor::kMicrodumpOnConsole); | 888 MinidumpDescriptor descriptor(MinidumpDescriptor::kMicrodumpOnConsole); |
885 | 889 |
886 if (product_name && product_version) { | 890 if (product_name && product_version) { |
887 microdump_product_info_ = | 891 microdump_product_info_ = |
888 strdup((product_name + std::string(":") + product_version).c_str()); | 892 strdup((product_name + std::string(":") + product_version).c_str()); |
889 ANNOTATE_LEAKING_OBJECT_PTR(microdump_product_info_); | 893 ANNOTATE_LEAKING_OBJECT_PTR(microdump_product_info_); |
890 descriptor.microdump_extra_info()->product_info = microdump_product_info_; | 894 descriptor.microdump_extra_info()->product_info = microdump_product_info_; |
891 } | 895 } |
892 | 896 |
| 897 microdump_process_type_ = |
| 898 strdup(process_type.empty() ? kBrowserProcessType : process_type.c_str()); |
| 899 ANNOTATE_LEAKING_OBJECT_PTR(microdump_process_type_); |
| 900 descriptor.microdump_extra_info()->process_type = microdump_process_type_; |
| 901 |
893 if (android_build_fp) { | 902 if (android_build_fp) { |
894 microdump_build_fingerprint_ = strdup(android_build_fp); | 903 microdump_build_fingerprint_ = strdup(android_build_fp); |
895 ANNOTATE_LEAKING_OBJECT_PTR(microdump_build_fingerprint_); | 904 ANNOTATE_LEAKING_OBJECT_PTR(microdump_build_fingerprint_); |
896 descriptor.microdump_extra_info()->build_fingerprint = | 905 descriptor.microdump_extra_info()->build_fingerprint = |
897 microdump_build_fingerprint_; | 906 microdump_build_fingerprint_; |
898 } | 907 } |
899 | 908 |
900 if (microdump_gpu_fingerprint_) { | 909 if (microdump_gpu_fingerprint_) { |
901 descriptor.microdump_extra_info()->gpu_fingerprint = | 910 descriptor.microdump_extra_info()->gpu_fingerprint = |
902 microdump_gpu_fingerprint_; | 911 microdump_gpu_fingerprint_; |
903 } | 912 } |
904 | 913 |
905 g_microdump = | 914 g_microdump = |
906 new ExceptionHandler(descriptor, nullptr, MicrodumpCrashDone, | 915 new ExceptionHandler(descriptor, nullptr, MicrodumpCrashDone, |
907 reinterpret_cast<void*>(is_browser_process), | 916 reinterpret_cast<void*>(is_browser_process), |
908 true, // Install handlers. | 917 true, // Install handlers. |
909 -1); // Server file descriptor. -1 for in-process. | 918 -1); // Server file descriptor. -1 for in-process. |
910 | 919 |
911 if (process_type == kWebViewProcessType) { | 920 if (process_type == kWebViewSingleProcessType || |
| 921 process_type == kBrowserProcessType) { |
| 922 // TODO(tobiasjs): figure out what to do with on demand minidump on the |
| 923 // renderer process of webview. |
912 // We do not use |DumpProcess()| for handling programatically | 924 // We do not use |DumpProcess()| for handling programatically |
913 // generated dumps for WebView because we only know the file | 925 // generated dumps for WebView because we only know the file |
914 // descriptor to which we are dumping at the time of the call to | 926 // descriptor to which we are dumping at the time of the call to |
915 // |DumpWithoutCrashing()|. Therefore we need to construct the | 927 // |DumpWithoutCrashing()|. Therefore we need to construct the |
916 // |MinidumpDescriptor| and |ExceptionHandler| instances as | 928 // |MinidumpDescriptor| and |ExceptionHandler| instances as |
917 // needed, instead of setting up |g_breakpad| at initialization | 929 // needed, instead of setting up |g_breakpad| at initialization |
918 // time. | 930 // time. |
919 base::debug::SetDumpWithoutCrashingFunction( | 931 base::debug::SetDumpWithoutCrashingFunction( |
920 &GenerateMinidumpOnDemandForAndroid); | 932 &GenerateMinidumpOnDemandForAndroid); |
921 } else if (!process_type.empty()) { | 933 } else if (!process_type.empty()) { |
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1922 const std::string& gpu_fingerprint) { | 1934 const std::string& gpu_fingerprint) { |
1923 g_microdump_info.Get().SetGpuFingerprint(gpu_fingerprint); | 1935 g_microdump_info.Get().SetGpuFingerprint(gpu_fingerprint); |
1924 } | 1936 } |
1925 #endif // OS_ANDROID | 1937 #endif // OS_ANDROID |
1926 | 1938 |
1927 bool IsCrashReporterEnabled() { | 1939 bool IsCrashReporterEnabled() { |
1928 return g_is_crash_reporter_enabled; | 1940 return g_is_crash_reporter_enabled; |
1929 } | 1941 } |
1930 | 1942 |
1931 } // namespace breakpad | 1943 } // namespace breakpad |
OLD | NEW |