2022-09-06 19:14:07 -04:00
|
|
|
# Copyright 2015 The Crashpad Authors
|
2017-11-17 17:48:22 -08:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
import("../build/crashpad_buildconfig.gni")
|
|
|
|
|
2020-09-14 14:22:05 -07:00
|
|
|
crashpad_static_library("client") {
|
2017-11-17 17:48:22 -08:00
|
|
|
sources = [
|
|
|
|
"crashpad_client.h",
|
|
|
|
"prune_crash_reports.cc",
|
|
|
|
"prune_crash_reports.h",
|
|
|
|
"simulate_crash.h",
|
|
|
|
]
|
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
if (crashpad_is_mac) {
|
2017-11-17 17:48:22 -08:00
|
|
|
sources += [
|
2017-11-29 11:59:18 -08:00
|
|
|
"crashpad_client_mac.cc",
|
|
|
|
"simulate_crash_mac.cc",
|
|
|
|
"simulate_crash_mac.h",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-02-18 14:49:10 -05:00
|
|
|
if (crashpad_is_ios) {
|
2020-03-25 16:12:22 -04:00
|
|
|
sources += [
|
|
|
|
"crashpad_client_ios.cc",
|
2021-08-11 12:40:54 -04:00
|
|
|
"ios_handler/exception_processor.h",
|
|
|
|
"ios_handler/exception_processor.mm",
|
2021-10-14 10:55:03 -04:00
|
|
|
"ios_handler/in_process_handler.cc",
|
|
|
|
"ios_handler/in_process_handler.h",
|
2021-08-11 12:53:57 -04:00
|
|
|
"ios_handler/in_process_intermediate_dump_handler.cc",
|
|
|
|
"ios_handler/in_process_intermediate_dump_handler.h",
|
2021-10-25 11:35:19 -04:00
|
|
|
"ios_handler/prune_intermediate_dumps_and_crash_reports_thread.cc",
|
|
|
|
"ios_handler/prune_intermediate_dumps_and_crash_reports_thread.h",
|
2021-02-02 09:02:28 -05:00
|
|
|
"simulate_crash_ios.h",
|
2022-09-15 13:14:19 -06:00
|
|
|
"upload_behavior_ios.h",
|
2020-03-25 16:12:22 -04:00
|
|
|
]
|
2020-02-18 14:49:10 -05:00
|
|
|
}
|
|
|
|
|
2018-02-01 10:39:32 -08:00
|
|
|
if (crashpad_is_linux || crashpad_is_android) {
|
2018-02-20 16:16:22 -08:00
|
|
|
sources += [
|
|
|
|
"crashpad_client_linux.cc",
|
|
|
|
"simulate_crash_linux.h",
|
|
|
|
]
|
2018-02-01 10:39:32 -08:00
|
|
|
}
|
|
|
|
|
2018-02-15 10:38:36 -08:00
|
|
|
if (crashpad_is_linux || crashpad_is_android || crashpad_is_fuchsia) {
|
2018-04-09 14:21:06 -07:00
|
|
|
sources += [
|
|
|
|
"client_argv_handling.cc",
|
|
|
|
"client_argv_handling.h",
|
|
|
|
]
|
2018-02-15 10:38:36 -08:00
|
|
|
}
|
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
if (crashpad_is_win) {
|
2017-11-29 11:59:18 -08:00
|
|
|
sources += [
|
|
|
|
"crashpad_client_win.cc",
|
|
|
|
"simulate_crash_win.h",
|
2017-11-17 17:48:22 -08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
if (crashpad_is_fuchsia) {
|
2018-04-09 14:21:06 -07:00
|
|
|
sources += [ "crashpad_client_fuchsia.cc" ]
|
2017-12-06 10:08:11 -08:00
|
|
|
}
|
|
|
|
|
2017-11-28 10:31:13 -08:00
|
|
|
public_configs = [ "..:crashpad_config" ]
|
2017-11-17 17:48:22 -08:00
|
|
|
|
2018-10-16 10:49:43 -07:00
|
|
|
public_deps = [
|
2021-04-27 21:27:09 -04:00
|
|
|
":common",
|
2021-07-28 23:57:54 +00:00
|
|
|
"$mini_chromium_source_parent:base",
|
2017-11-28 10:31:13 -08:00
|
|
|
"../util",
|
2017-11-17 17:48:22 -08:00
|
|
|
]
|
|
|
|
|
2021-04-27 21:27:09 -04:00
|
|
|
deps = [
|
|
|
|
":common",
|
2021-07-28 23:57:54 +00:00
|
|
|
"$mini_chromium_source_parent:chromeos_buildflags",
|
2021-04-27 21:27:09 -04:00
|
|
|
]
|
2021-01-12 13:45:14 -08:00
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
if (crashpad_is_win) {
|
2017-11-17 17:48:22 -08:00
|
|
|
libs = [ "rpcrt4.lib" ]
|
|
|
|
cflags = [ "/wd4201" ] # nonstandard extension used : nameless struct/union
|
|
|
|
}
|
2018-05-04 12:20:52 -07:00
|
|
|
|
2023-06-30 11:39:44 -04:00
|
|
|
if (crashpad_is_apple) {
|
|
|
|
deps += [ "../build:apple_enable_arc" ]
|
|
|
|
}
|
|
|
|
|
2020-03-04 15:19:46 -05:00
|
|
|
if (crashpad_is_ios) {
|
2020-03-25 16:12:22 -04:00
|
|
|
deps += [
|
2021-04-27 21:27:09 -04:00
|
|
|
"../handler:common",
|
2020-03-25 16:12:22 -04:00
|
|
|
"../minidump",
|
|
|
|
"../snapshot",
|
|
|
|
]
|
2020-03-04 15:19:46 -05:00
|
|
|
}
|
|
|
|
|
2019-04-08 17:28:18 -07:00
|
|
|
if (crashpad_is_linux || crashpad_is_android) {
|
2020-01-23 08:00:33 -05:00
|
|
|
deps += [ "../third_party/lss" ]
|
2019-04-08 17:28:18 -07:00
|
|
|
}
|
|
|
|
|
2018-07-30 15:50:17 -07:00
|
|
|
if (crashpad_is_fuchsia) {
|
2020-01-23 08:00:33 -05:00
|
|
|
deps += [ "../third_party/fuchsia" ]
|
2018-07-30 15:50:17 -07:00
|
|
|
if (crashpad_is_in_fuchsia) {
|
2020-06-18 16:28:23 -07:00
|
|
|
deps += [ "//sdk/lib/fdio" ]
|
2018-07-30 15:50:17 -07:00
|
|
|
}
|
2018-05-04 12:20:52 -07:00
|
|
|
}
|
2017-11-17 17:48:22 -08:00
|
|
|
}
|
|
|
|
|
2021-04-27 21:27:09 -04:00
|
|
|
static_library("common") {
|
|
|
|
sources = [
|
|
|
|
"annotation.cc",
|
|
|
|
"annotation.h",
|
|
|
|
"annotation_list.cc",
|
|
|
|
"annotation_list.h",
|
|
|
|
"crash_report_database.cc",
|
|
|
|
"crash_report_database.h",
|
|
|
|
"crashpad_info.cc",
|
|
|
|
"crashpad_info.h",
|
2022-12-15 10:09:30 -07:00
|
|
|
"length_delimited_ring_buffer.h",
|
2023-01-31 16:18:37 -07:00
|
|
|
"ring_buffer_annotation.h",
|
2021-04-27 21:27:09 -04:00
|
|
|
"settings.cc",
|
|
|
|
"settings.h",
|
|
|
|
"simple_address_range_bag.h",
|
|
|
|
"simple_string_dictionary.h",
|
|
|
|
]
|
|
|
|
|
2023-06-30 11:39:44 -04:00
|
|
|
if (crashpad_is_apple) {
|
2021-04-27 21:27:09 -04:00
|
|
|
sources += [ "crash_report_database_mac.mm" ]
|
|
|
|
}
|
|
|
|
if (crashpad_is_win) {
|
|
|
|
sources += [ "crash_report_database_win.cc" ]
|
|
|
|
}
|
|
|
|
if (crashpad_is_linux || crashpad_is_android || crashpad_is_fuchsia) {
|
|
|
|
sources += [
|
|
|
|
"crash_report_database_generic.cc",
|
|
|
|
"crashpad_info_note.S",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
public_configs = [ "..:crashpad_config" ]
|
|
|
|
public_deps = [
|
2021-07-28 23:57:54 +00:00
|
|
|
"$mini_chromium_source_parent:base",
|
2021-04-27 21:27:09 -04:00
|
|
|
"../util",
|
|
|
|
]
|
|
|
|
deps = [ "../util" ]
|
2022-11-03 15:06:18 -07:00
|
|
|
configs += [ "../build:flock_always_supported_defines" ]
|
2023-06-30 11:39:44 -04:00
|
|
|
|
|
|
|
if (crashpad_is_apple) {
|
|
|
|
deps += [ "../build:apple_enable_arc" ]
|
|
|
|
}
|
2021-04-27 21:27:09 -04:00
|
|
|
}
|
|
|
|
|
2023-01-31 16:18:37 -07:00
|
|
|
crashpad_executable("ring_buffer_annotation_load_test") {
|
|
|
|
testonly = true
|
2023-06-30 11:39:44 -04:00
|
|
|
sources = [ "ring_buffer_annotation_load_test_main.cc" ]
|
2023-01-31 16:18:37 -07:00
|
|
|
deps = [
|
|
|
|
":client",
|
|
|
|
"$mini_chromium_source_parent:base",
|
2023-06-30 11:39:44 -04:00
|
|
|
"../tools:tool_support",
|
2023-01-31 16:18:37 -07:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2017-11-17 17:48:22 -08:00
|
|
|
source_set("client_test") {
|
|
|
|
testonly = true
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"annotation_list_test.cc",
|
|
|
|
"annotation_test.cc",
|
|
|
|
"crash_report_database_test.cc",
|
2024-02-09 12:21:45 -08:00
|
|
|
"crashpad_info_test.cc",
|
2022-12-15 10:09:30 -07:00
|
|
|
"length_delimited_ring_buffer_test.cc",
|
2017-11-17 17:48:22 -08:00
|
|
|
"prune_crash_reports_test.cc",
|
2023-01-31 16:18:37 -07:00
|
|
|
"ring_buffer_annotation_test.cc",
|
2017-11-17 17:48:22 -08:00
|
|
|
"settings_test.cc",
|
|
|
|
"simple_address_range_bag_test.cc",
|
|
|
|
"simple_string_dictionary_test.cc",
|
|
|
|
]
|
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
if (crashpad_is_mac) {
|
2018-02-08 16:25:22 -08:00
|
|
|
sources += [ "simulate_crash_mac_test.cc" ]
|
2017-11-17 17:48:22 -08:00
|
|
|
}
|
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
if (crashpad_is_win) {
|
2017-11-17 17:48:22 -08:00
|
|
|
sources += [ "crashpad_client_win_test.cc" ]
|
|
|
|
}
|
|
|
|
|
2020-03-04 15:19:46 -05:00
|
|
|
if (crashpad_is_ios) {
|
2021-08-11 12:40:54 -04:00
|
|
|
sources += [
|
|
|
|
"crashpad_client_ios_test.mm",
|
|
|
|
"ios_handler/exception_processor_test.mm",
|
2021-11-11 06:32:46 -05:00
|
|
|
"ios_handler/in_process_handler_test.cc",
|
2021-08-11 12:53:57 -04:00
|
|
|
"ios_handler/in_process_intermediate_dump_handler_test.cc",
|
2020-03-04 15:19:46 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-02-22 13:29:05 -08:00
|
|
|
if (crashpad_is_linux || crashpad_is_android) {
|
|
|
|
sources += [ "crashpad_client_linux_test.cc" ]
|
|
|
|
}
|
|
|
|
|
2017-11-17 17:48:22 -08:00
|
|
|
deps = [
|
|
|
|
":client",
|
2021-08-11 12:53:57 -04:00
|
|
|
"$mini_chromium_source_parent:base",
|
2017-11-28 10:31:13 -08:00
|
|
|
"../compat",
|
2018-05-10 17:15:59 -07:00
|
|
|
"../snapshot",
|
2017-11-28 10:31:13 -08:00
|
|
|
"../test",
|
2020-05-06 20:39:19 -04:00
|
|
|
"../third_party/googletest:googlemock",
|
|
|
|
"../third_party/googletest:googletest",
|
2017-11-28 10:31:13 -08:00
|
|
|
"../util",
|
2017-11-17 17:48:22 -08:00
|
|
|
]
|
|
|
|
|
2020-04-24 14:32:54 -07:00
|
|
|
if (!crashpad_is_ios && !crashpad_is_fuchsia) {
|
2020-02-18 14:49:10 -05:00
|
|
|
data_deps = [ "../handler:crashpad_handler" ]
|
|
|
|
}
|
2017-11-17 17:48:22 -08:00
|
|
|
|
2023-06-30 11:39:44 -04:00
|
|
|
if (crashpad_is_apple) {
|
|
|
|
deps += [ "../build:apple_enable_arc" ]
|
|
|
|
}
|
|
|
|
|
2017-12-19 15:31:04 -08:00
|
|
|
if (crashpad_is_win) {
|
Add WER runtime exception helper module for Windows
This adds a runtime exception helper (& test module) for Windows and
plumbing to allow the module to be registered by the crashpad client,
and to trigger the crashpad handler. Embedders can build their own
module to control which exceptions are passed to the handler.
See: go/chrome-windows-runtime-exception-helper for motivation.
When registered (which is the responsibility of the embedding
application), the helper is loaded by WerFault.exe when Windows
Error Reporting receives crashes that are not caught by crashpad's
normal handlers - for instance a control-flow violation when a
module is compiled with /guard:cf.
Registration:
The embedder must arrange for the full path to the helper to
be added in the appropriate Windows Error Reporting\
RuntimeExceptionHelperModules registry key.
Once an embedder's crashpad client is connected to a crashpad
handler (e.g. through SetIpcPipeName()) the embedder calls
RegisterWerModule. Internally, this registration includes handles
used to trigger the crashpad handler, an area reserved to hold an
exception and context, and structures needed by the crashpad handler.
Following a crash:
WerFault.exe handles the crash then validates and loads the helper
module. WER hands the helper module a handle to the crashing target
process and copies of the exception and context for the faulting thread.
The helper then copies out the client's registration data and
duplicates handles to the crashpad handler, then fills back the various structures in the paused client that the crashpad handler will need.
The helper then signals the crashpad handler, which collects a dump then
notifies the helper that it is done.
Support:
WerRegisterExceptionHelperModule has been availble since at least
Windows 7 but WerFault would not pass on the exceptions that crashpad
could not already handle. This changed in Windows 10 20H1 (19041),
which supports HKCU and HKLM registrations, and passes in more types of
crashes. It is harmless to register the module for earlier versions
of Windows as it simply won't be loaded by WerFault.exe.
Tests:
snapshot/win/end_to_end_test.py has been refactored slightly to
group crash generation and output validation in main() by breaking
up RunTests into smaller functions.
As the module works by being loaded in WerFault.exe it is tested
in end_to_end_test.py.
Bug: crashpad:133, 866033, 865632
Change-Id: Id668bd15a510a24c79753e1bb03e9456f41a9780
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3677284
Reviewed-by: Joshua Peraza <jperaza@chromium.org>
Commit-Queue: Alex Gough <ajgo@chromium.org>
2022-07-06 13:53:12 -07:00
|
|
|
data_deps += [
|
|
|
|
"../handler:crashpad_handler_console",
|
|
|
|
"../handler/win/wer:crashpad_wer_handler",
|
|
|
|
]
|
2017-11-17 17:48:22 -08:00
|
|
|
}
|
|
|
|
}
|
2020-07-15 11:26:08 -07:00
|
|
|
|
|
|
|
if (crashpad_is_linux || crashpad_is_android) {
|
|
|
|
source_set("pthread_create") {
|
|
|
|
sources = [ "pthread_create_linux.cc" ]
|
|
|
|
|
|
|
|
deps = [ ":client" ]
|
|
|
|
}
|
|
|
|
}
|