-
-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathsentry_backend_crashpad.cpp
More file actions
691 lines (610 loc) · 22.9 KB
/
sentry_backend_crashpad.cpp
File metadata and controls
691 lines (610 loc) · 22.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
extern "C" {
#include "sentry_boot.h"
#include "sentry_alloc.h"
#include "sentry_backend.h"
#include "sentry_core.h"
#include "sentry_database.h"
#include "sentry_envelope.h"
#include "sentry_options.h"
#ifdef SENTRY_PLATFORM_WINDOWS
# include "sentry_os.h"
#endif
#include "sentry_path.h"
#include "sentry_sync.h"
#include "sentry_transport.h"
#ifdef SENTRY_PLATFORM_LINUX
# include "sentry_unix_pageallocator.h"
#endif
#include "sentry_utils.h"
#include "transports/sentry_disk_transport.h"
}
#include <map>
#include <vector>
#if defined(__GNUC__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunused-parameter"
# pragma GCC diagnostic ignored "-Wgnu-zero-variadic-macro-arguments"
# pragma GCC diagnostic ignored "-Wfour-char-constants"
#elif defined(_MSC_VER)
# pragma warning(push)
# pragma warning(disable : 4100) // unreferenced formal parameter
#endif
#include "client/crash_report_database.h"
#include "client/crashpad_client.h"
#include "client/crashpad_info.h"
#include "client/prune_crash_reports.h"
#include "client/settings.h"
#if defined(_WIN32)
# include "util/win/termination_codes.h"
#endif
#if defined(SENTRY_PLATFORM_MACOS)
# include "client/simulate_crash_mac.h"
#endif
#if defined(__GNUC__)
# pragma GCC diagnostic pop
#elif defined(_MSC_VER)
# pragma warning(pop)
#endif
template <typename T>
static void
safe_delete(T *&ptr)
{
delete ptr;
ptr = nullptr;
}
extern "C" {
#ifdef SENTRY_PLATFORM_LINUX
# include <unistd.h>
# define SIGNAL_STACK_SIZE 65536
static stack_t g_signal_stack;
# include "util/posix/signals.h"
// This list was taken from crashpad's util/posix/signals.cc file
// and is used to know which signals we need to reset to default
// when shutting down the backend
constexpr int g_CrashSignals[] = {
SIGABRT,
SIGBUS,
SIGFPE,
SIGILL,
SIGQUIT,
SIGSEGV,
SIGSYS,
SIGTRAP,
# if defined(SIGEMT)
SIGEMT,
# endif // defined(SIGEMT)
SIGXCPU,
SIGXFSZ,
};
#endif
static_assert(std::atomic<bool>::is_always_lock_free,
"The crashpad-backend requires lock-free atomic<bool> to safely handle "
"crashes");
typedef struct {
crashpad::CrashReportDatabase *db;
crashpad::CrashpadClient *client;
sentry_path_t *event_path;
sentry_path_t *breadcrumb1_path;
sentry_path_t *breadcrumb2_path;
size_t num_breadcrumbs;
std::atomic<bool> crashed;
std::atomic<bool> scope_flush;
} crashpad_state_t;
/**
* Correctly destruct C++ members of the crashpad state.
*/
static void
crashpad_state_dtor(crashpad_state_t *state)
{
safe_delete(state->client);
safe_delete(state->db);
}
static void
crashpad_backend_user_consent_changed(sentry_backend_t *backend)
{
auto *data = static_cast<crashpad_state_t *>(backend->data);
if (!data->db || !data->db->GetSettings()) {
return;
}
data->db->GetSettings()->SetUploadsEnabled(!sentry__should_skip_upload());
}
#ifdef SENTRY_PLATFORM_WINDOWS
static void
crashpad_register_wer_module(
const sentry_path_t *absolute_handler_path, const crashpad_state_t *data)
{
windows_version_t win_ver;
if (!sentry__get_windows_version(&win_ver) || win_ver.build < 19041) {
SENTRY_WARN("Crashpad WER module not registered, because Windows "
"doesn't meet version requirements (build >= 19041).");
return;
}
sentry_path_t *handler_dir = sentry__path_dir(absolute_handler_path);
sentry_path_t *wer_path = nullptr;
if (handler_dir) {
wer_path = sentry__path_join_str(handler_dir, "crashpad_wer.dll");
sentry__path_free(handler_dir);
}
if (wer_path && sentry__path_is_file(wer_path)) {
SENTRY_DEBUGF("registering crashpad WER handler "
"\"%" SENTRY_PATH_PRI "\"",
wer_path->path);
// The WER handler needs to be registered in the registry first.
constexpr DWORD dwOne = 1;
const LSTATUS reg_res = RegSetKeyValueW(HKEY_CURRENT_USER,
L"Software\\Microsoft\\Windows\\Windows Error Reporting\\"
L"RuntimeExceptionHelperModules",
wer_path->path, REG_DWORD, &dwOne, sizeof(DWORD));
if (reg_res != ERROR_SUCCESS) {
SENTRY_WARN("registering crashpad WER handler in registry failed");
} else {
const std::wstring wer_path_string(wer_path->path);
if (!data->client->RegisterWerModule(wer_path_string)) {
SENTRY_WARN("registering crashpad WER handler module failed");
}
}
sentry__path_free(wer_path);
} else {
SENTRY_WARN("crashpad WER handler module not found");
}
}
#endif
static void
crashpad_backend_flush_scope_to_event(const sentry_path_t *event_path,
const sentry_options_t *options, sentry_value_t crash_event)
{
SENTRY_WITH_SCOPE (scope) {
// we want the scope without any modules or breadcrumbs
sentry__scope_apply_to_event(
scope, options, crash_event, SENTRY_SCOPE_NONE);
}
size_t mpack_size;
char *mpack = sentry_value_to_msgpack(crash_event, &mpack_size);
sentry_value_decref(crash_event);
if (!mpack) {
return;
}
int rv = sentry__path_write_buffer(event_path, mpack, mpack_size);
sentry_free(mpack);
if (rv != 0) {
SENTRY_WARN("flushing scope to msgpack failed");
}
}
// This function is necessary for macOS since it has no `FirstChanceHandler`.
// but it is also necessary on Windows if the WER handler is enabled.
// This means we have to continuously flush the scope on
// every change so that `__sentry_event` is ready to upload when the crash
// happens. With platforms that have a `FirstChanceHandler` we can do that
// once in the handler. No need to share event- or crashpad-state mutation.
static void
crashpad_backend_flush_scope(
sentry_backend_t *backend, const sentry_options_t *options)
{
#if defined(SENTRY_PLATFORM_LINUX)
(void)backend;
(void)options;
#else
auto *data = static_cast<crashpad_state_t *>(backend->data);
bool expected = false;
//
if (!data->event_path || data->crashed.load(std::memory_order_relaxed)
|| !data->scope_flush.compare_exchange_strong(
expected, true, std::memory_order_acquire)) {
return;
}
sentry_value_t event = sentry_value_new_object();
// Since this will only be uploaded in case of a crash we must make this
// event fatal.
sentry_value_set_by_key(
event, "level", sentry__value_new_level(SENTRY_LEVEL_FATAL));
crashpad_backend_flush_scope_to_event(data->event_path, options, event);
data->scope_flush.store(false, std::memory_order_release);
#endif
}
#if defined(SENTRY_PLATFORM_LINUX) || defined(SENTRY_PLATFORM_WINDOWS)
static void
flush_scope_from_handler(
const sentry_options_t *options, sentry_value_t crash_event)
{
auto state = static_cast<crashpad_state_t *>(options->backend->data);
// this blocks any further calls to `crashpad_backend_flush_scope`
state->crashed.store(true, std::memory_order_relaxed);
// busy-wait until any in-progress scope flushes are finished
bool expected = false;
while (!state->scope_flush.compare_exchange_strong(
expected, true, std::memory_order_acquire)) {
expected = false;
}
// now we are the sole flusher and can flush into the crash event
crashpad_backend_flush_scope_to_event(
state->event_path, options, crash_event);
}
# ifdef SENTRY_PLATFORM_WINDOWS
static bool
sentry__crashpad_handler(EXCEPTION_POINTERS *ExceptionInfo)
{
# else
static bool
sentry__crashpad_handler(int signum, siginfo_t *info, ucontext_t *user_context)
{
sentry__page_allocator_enable();
# endif
SENTRY_INFO("flushing session and queue before crashpad handler");
bool should_dump = true;
# if defined(SENTRY_PLATFORM_WINDOWS)
bool is_fatal = ExceptionInfo->ExceptionRecord->ExceptionCode != 0x517a7ed;
# elif defined(SENTRY_PLATFORM_LINUX)
bool is_fatal = signum != -1;
# else
bool is_fatal = true;
# endif
SENTRY_WITH_OPTIONS (options) {
sentry_value_t crash_event = sentry_value_new_event();
sentry_value_t level = sentry__value_new_level(
is_fatal ? SENTRY_LEVEL_FATAL : SENTRY_LEVEL_ERROR);
sentry_value_set_by_key(crash_event, "level", level);
if (options->on_crash_func) {
sentry_ucontext_t uctx;
# ifdef SENTRY_PLATFORM_WINDOWS
uctx.exception_ptrs = *ExceptionInfo;
# else
uctx.signum = signum;
uctx.siginfo = info;
uctx.user_context = user_context;
# endif
SENTRY_DEBUG("invoking `on_crash` hook");
crash_event = options->on_crash_func(
&uctx, crash_event, options->on_crash_data);
} else if (options->before_send_func) {
SENTRY_DEBUG("invoking `before_send` hook");
crash_event = options->before_send_func(
crash_event, nullptr, options->before_send_data);
}
should_dump = !sentry_value_is_null(crash_event);
if (should_dump) {
flush_scope_from_handler(options, crash_event);
sentry__write_crash_marker(options);
sentry__record_errors_on_current_session(1);
sentry_session_t *session = sentry__end_current_session_with_status(
SENTRY_SESSION_STATUS_CRASHED);
if (session) {
sentry_envelope_t *envelope = sentry__envelope_new();
sentry__envelope_add_session(envelope, session);
// capture the envelope with the disk transport
sentry_transport_t *disk_transport
= sentry_new_disk_transport(options->run);
sentry__capture_envelope(disk_transport, envelope);
sentry__transport_dump_queue(disk_transport, options->run);
sentry_transport_free(disk_transport);
}
} else {
SENTRY_DEBUG("event was discarded");
}
sentry__transport_dump_queue(options->transport, options->run);
}
SENTRY_INFO("handing control over to crashpad");
// If we __don't__ want a minidump produced by crashpad we need to either
// exit or longjmp at this point. The crashpad client handler which calls
// back here (SetFirstChanceExceptionHandler) does the same if the
// application is not shutdown via the crashpad_handler process.
//
// If we would return `true` here without changing any of the global signal-
// handling state or rectifying the cause of the signal, this would turn
// into a signal-handler/exception-filter loop, because some
// signals/exceptions (like SIGSEGV) are unrecoverable.
//
// Ideally the SetFirstChanceExceptionHandler would accept more than a
// boolean to differentiate between:
//
// * we accept our fate and want a minidump (currently returning `false`)
// * we accept our fate and don't want a minidump (currently not available)
// * we rectified the situation, so crashpads signal-handler can simply
// return, thereby letting the not-rectified signal-cause trigger a
// signal-handler/exception-filter again, which probably leads to us
// (currently returning `true`)
//
// TODO(supervacuus):
// * we should adapt the SetFirstChanceExceptionHandler interface in
// crashpad
//
// We now also use this handler for non-fatal dumps in which case we don't
// want to terminate here:
// is_fatal | should_dump | expected behavior
// ------------------------------------------
// false | false | return true
// false | true | return false
// true | false | terminate
// true | true | return false
if (is_fatal && !should_dump) {
# ifdef SENTRY_PLATFORM_WINDOWS
TerminateProcess(GetCurrentProcess(),
crashpad::TerminationCodes::kTerminationCodeCrashNoDump);
# else
_exit(EXIT_FAILURE);
# endif
}
// we did not "handle" the signal, so crashpad should do that.
return !is_fatal && !should_dump;
}
#endif
static int
crashpad_backend_startup(
sentry_backend_t *backend, const sentry_options_t *options)
{
sentry_path_t *owned_handler_path = nullptr;
sentry_path_t *handler_path = options->handler_path;
if (!handler_path) {
sentry_path_t *current_exe = sentry__path_current_exe();
if (current_exe) {
sentry_path_t *exe_dir = sentry__path_dir(current_exe);
sentry__path_free(current_exe);
if (exe_dir) {
handler_path = sentry__path_join_str(exe_dir,
#ifdef SENTRY_PLATFORM_WINDOWS
"crashpad_handler.exe"
#else
"crashpad_handler"
#endif
);
owned_handler_path = handler_path;
sentry__path_free(exe_dir);
}
}
}
#ifdef SENTRY_PLATFORM_WINDOWS
sentry__reserve_thread_stack();
#endif
// The crashpad client uses shell lookup rules (absolute path, relative
// path, or bare executable name that is looked up in $PATH).
// However, it crashes hard when it cant resolve the handler, so we make
// sure to resolve and check for it first.
sentry_path_t *absolute_handler_path = sentry__path_absolute(handler_path);
sentry__path_free(owned_handler_path);
if (!absolute_handler_path
|| !sentry__path_is_file(absolute_handler_path)) {
SENTRY_WARN("unable to start crashpad backend, invalid handler_path");
sentry__path_free(absolute_handler_path);
return 1;
}
SENTRY_DEBUGF("starting crashpad backend with handler "
"\"%" SENTRY_PATH_PRI "\"",
absolute_handler_path->path);
sentry_path_t *current_run_folder = options->run->run_path;
auto *data = static_cast<crashpad_state_t *>(backend->data);
base::FilePath database(options->database_path->path);
base::FilePath handler(absolute_handler_path->path);
std::map<std::string, std::string> annotations;
std::vector<base::FilePath> attachments;
// register attachments
for (sentry_attachment_t *attachment = options->attachments; attachment;
attachment = attachment->next) {
attachments.emplace_back(attachment->path->path);
}
// and add the serialized event, and two rotating breadcrumb files
// as attachments and make sure the files exist
data->event_path
= sentry__path_join_str(current_run_folder, "__sentry-event");
data->breadcrumb1_path
= sentry__path_join_str(current_run_folder, "__sentry-breadcrumb1");
data->breadcrumb2_path
= sentry__path_join_str(current_run_folder, "__sentry-breadcrumb2");
sentry__path_touch(data->event_path);
sentry__path_touch(data->breadcrumb1_path);
sentry__path_touch(data->breadcrumb2_path);
attachments.insert(attachments.end(),
{ base::FilePath(data->event_path->path),
base::FilePath(data->breadcrumb1_path->path),
base::FilePath(data->breadcrumb2_path->path) });
std::vector<std::string> arguments { "--no-rate-limit" };
// Initialize database first, flushing the consent later on as part of
// `sentry_init` will persist the upload flag.
data->db = crashpad::CrashReportDatabase::Initialize(database).release();
data->client = new crashpad::CrashpadClient;
char *minidump_url
= sentry__dsn_get_minidump_url(options->dsn, options->user_agent);
if (minidump_url) {
SENTRY_DEBUGF("using minidump URL \"%s\"", minidump_url);
}
bool success = data->client->StartHandler(handler, database, database,
minidump_url ? minidump_url : "", options->proxy ? options->proxy : "",
annotations, arguments,
/* restartable */ true,
/* asynchronous_start */ false, attachments);
sentry_free(minidump_url);
#ifdef SENTRY_PLATFORM_WINDOWS
crashpad_register_wer_module(absolute_handler_path, data);
#endif
sentry__path_free(absolute_handler_path);
if (success) {
SENTRY_INFO("started crashpad client handler");
} else {
SENTRY_WARN("failed to start crashpad client handler");
// not calling `shutdown`
crashpad_state_dtor(data);
return 1;
}
#if defined(SENTRY_PLATFORM_LINUX) || defined(SENTRY_PLATFORM_WINDOWS)
crashpad::CrashpadClient::SetFirstChanceExceptionHandler(
&sentry__crashpad_handler);
#endif
#ifdef SENTRY_PLATFORM_LINUX
// Crashpad was recently changed to register its own signal stack, which for
// whatever reason is not compatible with our own handler. so we override
// that stack yet again to be able to correctly flush things out.
// https://github.com/getsentry/crashpad/commit/06a688ddc1bc8be6f410e69e4fb413fc19594d04
g_signal_stack.ss_sp = sentry_malloc(SIGNAL_STACK_SIZE);
if (g_signal_stack.ss_sp) {
g_signal_stack.ss_size = SIGNAL_STACK_SIZE;
g_signal_stack.ss_flags = 0;
sigaltstack(&g_signal_stack, 0);
}
#endif
if (!options->system_crash_reporter_enabled) {
// Disable the system crash reporter. Especially on macOS, it takes
// substantial time *after* crashpad has done its job.
crashpad::CrashpadInfo *crashpad_info
= crashpad::CrashpadInfo::GetCrashpadInfo();
crashpad_info->set_system_crash_reporter_forwarding(
crashpad::TriState::kDisabled);
}
return 0;
}
static void
crashpad_backend_shutdown(sentry_backend_t *backend)
{
#ifdef SENTRY_PLATFORM_LINUX
// restore signal handlers to their default state
for (const auto signal : g_CrashSignals) {
if (crashpad::Signals::IsCrashSignal(signal)) {
crashpad::Signals::InstallDefaultHandler(signal);
}
}
#endif
crashpad_state_dtor(static_cast<crashpad_state_t *>(backend->data));
#ifdef SENTRY_PLATFORM_LINUX
g_signal_stack.ss_flags = SS_DISABLE;
sigaltstack(&g_signal_stack, 0);
sentry_free(g_signal_stack.ss_sp);
g_signal_stack.ss_sp = NULL;
#endif
}
static void
crashpad_backend_add_breadcrumb(sentry_backend_t *backend,
sentry_value_t breadcrumb, const sentry_options_t *options)
{
auto *data = static_cast<crashpad_state_t *>(backend->data);
size_t max_breadcrumbs = options->max_breadcrumbs;
if (!max_breadcrumbs) {
return;
}
bool first_breadcrumb = data->num_breadcrumbs % max_breadcrumbs == 0;
const sentry_path_t *breadcrumb_file
= data->num_breadcrumbs % (max_breadcrumbs * 2) < max_breadcrumbs
? data->breadcrumb1_path
: data->breadcrumb2_path;
data->num_breadcrumbs++;
if (!breadcrumb_file) {
return;
}
size_t mpack_size;
char *mpack = sentry_value_to_msgpack(breadcrumb, &mpack_size);
if (!mpack) {
return;
}
int rv = first_breadcrumb
? sentry__path_write_buffer(breadcrumb_file, mpack, mpack_size)
: sentry__path_append_buffer(breadcrumb_file, mpack, mpack_size);
sentry_free(mpack);
if (rv != 0) {
SENTRY_WARN("flushing breadcrumb to msgpack failed");
}
}
static void
crashpad_backend_free(sentry_backend_t *backend)
{
auto *data = static_cast<crashpad_state_t *>(backend->data);
sentry__path_free(data->event_path);
sentry__path_free(data->breadcrumb1_path);
sentry__path_free(data->breadcrumb2_path);
sentry_free(data);
}
static void
crashpad_backend_except(
sentry_backend_t *UNUSED(backend), const sentry_ucontext_t *context)
{
#ifdef SENTRY_PLATFORM_WINDOWS
crashpad::CrashpadClient::DumpAndCrash(
(EXCEPTION_POINTERS *)&context->exception_ptrs);
#else
// TODO: Crashpad has the ability to do this on linux / mac but the
// method interface is not exposed for it, a patch would be required
(void)context;
#endif
}
static void
report_crash_time(
uint64_t *crash_time, const crashpad::CrashReportDatabase::Report &report)
{
// we do a `+ 1` here, because crashpad timestamps are second resolution,
// but our sessions are ms resolution. at least in our integration tests, we
// can have a session that starts at, e.g. `0.471`, whereas the crashpad
// report will be `0`, which would mean our heuristic does not trigger due
// to rounding.
uint64_t time = (static_cast<uint64_t>(report.creation_time) + 1) * 1000000;
if (time > *crash_time) {
*crash_time = time;
}
}
static uint64_t
crashpad_backend_last_crash(sentry_backend_t *backend)
{
auto *data = static_cast<crashpad_state_t *>(backend->data);
uint64_t crash_time = 0;
std::vector<crashpad::CrashReportDatabase::Report> reports;
if (data->db->GetCompletedReports(&reports)
== crashpad::CrashReportDatabase::kNoError) {
for (const crashpad::CrashReportDatabase::Report &report : reports) {
report_crash_time(&crash_time, report);
}
}
return crash_time;
}
static void
crashpad_backend_prune_database(sentry_backend_t *backend)
{
auto *data = static_cast<crashpad_state_t *>(backend->data);
// We want to eagerly clean up reports older than 2 days, and limit the
// complete database to a maximum of 8M. That might still be a lot for
// an embedded use-case, but minidumps on desktop can sometimes be quite
// large.
data->db->CleanDatabase(60 * 60 * 24 * 2);
crashpad::BinaryPruneCondition condition(crashpad::BinaryPruneCondition::OR,
new crashpad::DatabaseSizePruneCondition(1024 * 8),
new crashpad::AgePruneCondition(2));
crashpad::PruneCrashReportDatabase(data->db, &condition);
}
static void
crashpad_backend_trigger_dump(sentry_backend_t *backend)
{
(void)backend;
crashpad::NativeCPUContext cpu_context;
crashpad::CaptureContext(&cpu_context);
#if defined(SENTRY_PLATFORM_LINUX)
crashpad::CrashpadClient::DumpWithoutCrash(&cpu_context);
#elif defined(SENTRY_PLATFORM_WINDOWS)
crashpad::CrashpadClient::DumpWithoutCrash(cpu_context);
#elif defined(SENTRY_PLATFORM_MACOS)
crashpad::SimulateCrash(cpu_context);
#endif
}
sentry_backend_t *
sentry__backend_new(void)
{
auto *backend = SENTRY_MAKE(sentry_backend_t);
if (!backend) {
return nullptr;
}
memset(backend, 0, sizeof(sentry_backend_t));
auto *data = SENTRY_MAKE(crashpad_state_t);
if (!data) {
sentry_free(backend);
return nullptr;
}
memset(data, 0, sizeof(crashpad_state_t));
data->scope_flush = false;
data->crashed = false;
backend->startup_func = crashpad_backend_startup;
backend->shutdown_func = crashpad_backend_shutdown;
backend->except_func = crashpad_backend_except;
backend->trigger_dump_func = crashpad_backend_trigger_dump;
backend->free_func = crashpad_backend_free;
backend->flush_scope_func = crashpad_backend_flush_scope;
backend->add_breadcrumb_func = crashpad_backend_add_breadcrumb;
backend->user_consent_changed_func = crashpad_backend_user_consent_changed;
backend->get_last_crash_func = crashpad_backend_last_crash;
backend->prune_database_func = crashpad_backend_prune_database;
backend->data = data;
backend->can_capture_after_shutdown = true;
return backend;
}
}