-
-
Notifications
You must be signed in to change notification settings - Fork 169
/
sentry_sync.c
525 lines (464 loc) · 15.2 KB
/
sentry_sync.c
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
#include "sentry_sync.h"
#include "sentry_alloc.h"
#include "sentry_core.h"
#include "sentry_string.h"
#include "sentry_utils.h"
#include <stdio.h>
#include <string.h>
#ifdef SENTRY_PLATFORM_WINDOWS
typedef HRESULT(WINAPI *pSetThreadDescription)(
HANDLE hThread, PCWSTR lpThreadDescription);
const DWORD MS_VC_EXCEPTION = 0x406D1388;
# pragma pack(push, 8)
typedef struct {
DWORD dwType; // Must be 0x1000.
LPCSTR szName; // Pointer to name (in user addr space).
DWORD dwThreadID; // Thread ID (-1=caller thread).
DWORD dwFlags; // Reserved for future use, must be zero.
} THREADNAME_INFO;
# pragma pack(pop)
sentry_threadid_t
sentry__thread_get_current_threadid(void)
{
return GetCurrentThread();
}
int
sentry__thread_setname(sentry_threadid_t thread_id, const char *thread_name)
{
if (!thread_id || !thread_name) {
return 0;
}
// https://docs.microsoft.com/en-us/visualstudio/debugger/how-to-set-a-thread-name-in-native-code?view=vs-2019
// approach 1: Windows 10 1607+
pSetThreadDescription func = (pSetThreadDescription)GetProcAddress(
GetModuleHandleA("kernel32.dll"), "SetThreadDescription");
if (func) {
wchar_t *thread_name_wstr = sentry__string_to_wstr(thread_name);
HRESULT result = SUCCEEDED(func(thread_id, thread_name_wstr)) ? 0 : 1;
sentry_free(thread_name_wstr);
return SUCCEEDED(result) ? 0 : 1;
}
// approach 2: Windows Vista+ and MSVC debugger
# if _WIN32_WINNT >= 0x0600 && defined(_MSC_VER)
THREADNAME_INFO threadnameInfo;
threadnameInfo.dwType = 0x1000;
threadnameInfo.szName = thread_name;
threadnameInfo.dwThreadID
= GetThreadId(thread_id); // only available on Windows Vista+
threadnameInfo.dwFlags = 0;
# pragma warning(push)
# pragma warning(disable : 6320 6322)
__try {
RaiseException(MS_VC_EXCEPTION, 0,
sizeof(threadnameInfo) / sizeof(ULONG_PTR),
(ULONG_PTR *)&threadnameInfo);
} __except (EXCEPTION_EXECUTE_HANDLER) {
}
# pragma warning(pop)
# endif
return 0;
}
#else
sentry_threadid_t
sentry__thread_get_current_threadid(void)
{
return pthread_self();
}
int
sentry__thread_setname(sentry_threadid_t thread_id, const char *thread_name)
{
if (!thread_id || !thread_name) {
return 0;
}
# ifdef SENTRY_PLATFORM_DARWIN
// macOS supports thread naming only for current thread
if (thread_id != pthread_self()) {
return 1;
}
return pthread_setname_np(thread_name);
# elif defined(SENTRY_PLATFORM_LINUX) /* and possibly others (like BSDs) */
return pthread_setname_np(thread_id, thread_name);
# else
/* XXX: AIX doesn't have it, but PASE does via ILE APIs. */
return 0;
# endif
}
#endif
/**
* Queue operations, locking and Reference counting:
*
* The background worker thread itself is reference counted, one reference held
* by the "main" thread, and one by the background worker thread itself. The
* worker thread will drop its own reference on shutdown, and the main thread
* will drop its reference when the transport owning the background worker is
* being dropped.
*
* Also, each task is reference counted, one reference held by the queue, and
* one by the background thread for the currently executed task. The refcount
* will be dropped when the task finished executing, and when the task is
* removed from the queue (either after being executed, or when the task was
* concurrently removed from the queue).
*
* Each access to the queue itself must be done using the `task_lock`.
* There are two signals, `submit` *to* the worker, signaling a new task, and
* `done` *from* the worker signaling that it will close down and can be joined.
*/
struct sentry_bgworker_task_s;
typedef struct sentry_bgworker_task_s {
struct sentry_bgworker_task_s *next_task;
long refcount;
sentry_task_exec_func_t exec_func;
void (*cleanup_func)(void *task_data);
void *task_data;
} sentry_bgworker_task_t;
static void
sentry__task_incref(sentry_bgworker_task_t *task)
{
sentry__atomic_fetch_and_add(&task->refcount, 1);
}
static void
sentry__task_decref(sentry_bgworker_task_t *task)
{
if (sentry__atomic_fetch_and_add(&task->refcount, -1) == 1) {
if (task->cleanup_func) {
task->cleanup_func(task->task_data);
}
sentry_free(task);
}
}
struct sentry_bgworker_s {
sentry_threadid_t thread_id;
char *thread_name;
sentry_cond_t submit_signal;
sentry_cond_t done_signal;
sentry_mutex_t task_lock;
sentry_bgworker_task_t *first_task;
sentry_bgworker_task_t *last_task;
void *state;
void (*free_state)(void *state);
long refcount;
long running;
};
sentry_bgworker_t *
sentry__bgworker_new(void *state, void (*free_state)(void *state))
{
sentry_bgworker_t *bgw = SENTRY_MAKE(sentry_bgworker_t);
if (!bgw) {
if (free_state) {
free_state(state);
}
return NULL;
}
memset(bgw, 0, sizeof(sentry_bgworker_t));
sentry__thread_init(&bgw->thread_id);
sentry__mutex_init(&bgw->task_lock);
sentry__cond_init(&bgw->submit_signal);
sentry__cond_init(&bgw->done_signal);
bgw->state = state;
bgw->free_state = free_state;
bgw->refcount = 1;
return bgw;
}
static void
sentry__bgworker_incref(sentry_bgworker_t *bgw)
{
sentry__atomic_fetch_and_add(&bgw->refcount, 1);
}
void
sentry__bgworker_decref(sentry_bgworker_t *bgw)
{
if (!bgw || sentry__atomic_fetch_and_add(&bgw->refcount, -1) != 1) {
return;
}
// no need to lock here, as we do have the only reference
sentry_bgworker_task_t *task = bgw->first_task;
while (task) {
sentry_bgworker_task_t *next_task = task->next_task;
sentry__task_decref(task);
task = next_task;
}
if (bgw->free_state) {
bgw->free_state(bgw->state);
}
sentry__thread_free(&bgw->thread_id);
sentry__mutex_free(&bgw->task_lock);
sentry_free(bgw->thread_name);
sentry_free(bgw);
}
void *
sentry__bgworker_get_state(sentry_bgworker_t *bgw)
{
return bgw->state;
}
/**
* Check if the bgworker is done running and can be shut down.
* This function does *not* internally lock, and it should only be called when
* the `task_lock` is held!
*/
static bool
sentry__bgworker_is_done(sentry_bgworker_t *bgw)
{
return !bgw->first_task && !sentry__atomic_fetch(&bgw->running);
}
SENTRY_THREAD_FN
worker_thread(void *data)
{
sentry_bgworker_t *bgw = data;
SENTRY_TRACE("background worker thread started");
// should be called inside thread itself because of MSVC issues and mac
// https://randomascii.wordpress.com/2015/10/26/thread-naming-in-windows-time-for-something-better/
// Additionally, `bgw->thread_id` cannot be used reliably because it is
// subject to initialization race condition: current thread might be running
// before `bgw->thread_id` is initialized in the thread that started the
// background worker.
if (sentry__thread_setname(
sentry__thread_get_current_threadid(), bgw->thread_name)) {
SENTRY_WARN("failed to set background worker thread name");
}
sentry__mutex_lock(&bgw->task_lock);
while (true) {
if (sentry__bgworker_is_done(bgw)) {
sentry__cond_wake(&bgw->done_signal);
sentry__mutex_unlock(&bgw->task_lock);
break;
}
sentry_bgworker_task_t *task = bgw->first_task;
if (!task) {
// this will implicitly release the lock, and re-acquire on wake
sentry__cond_wait_timeout(
&bgw->submit_signal, &bgw->task_lock, 1000);
continue;
}
sentry__task_incref(task);
sentry__mutex_unlock(&bgw->task_lock);
SENTRY_TRACE("executing task on worker thread");
task->exec_func(task->task_data, bgw->state);
// the task can have a refcount of 2, this `decref` here corresponds
// to the `incref` above which signifies that the task _is being
// processed_.
sentry__task_decref(task);
// check if the queue has been modified concurrently.
// if not, we pop it and `decref` again, removing the _is inside
// list_ refcount.
sentry__mutex_lock(&bgw->task_lock);
if (bgw->first_task == task) {
bgw->first_task = task->next_task;
if (task == bgw->last_task) {
bgw->last_task = NULL;
}
sentry__task_decref(task);
}
}
SENTRY_TRACE("background worker thread shut down");
// this decref corresponds to the one done below in `sentry__bgworker_start`
sentry__bgworker_decref(bgw);
return 0;
}
int
sentry__bgworker_start(sentry_bgworker_t *bgw)
{
SENTRY_TRACE("starting background worker thread");
sentry__atomic_store(&bgw->running, 1);
// this incref moves the reference into the background thread
sentry__bgworker_incref(bgw);
if (sentry__thread_spawn(&bgw->thread_id, &worker_thread, bgw) != 0) {
sentry__atomic_store(&bgw->running, 0);
sentry__bgworker_decref(bgw);
return 1;
}
return 0;
}
typedef struct {
long refcount;
bool was_flushed;
sentry_cond_t signal;
sentry_mutex_t lock;
} sentry_flush_task_t;
static void
sentry__flush_task(void *task_data, void *UNUSED(state))
{
sentry_flush_task_t *flush_task = (sentry_flush_task_t *)task_data;
sentry__mutex_lock(&flush_task->lock);
flush_task->was_flushed = true;
sentry__cond_wake(&flush_task->signal);
sentry__mutex_unlock(&flush_task->lock);
}
static void
sentry__flush_task_decref(sentry_flush_task_t *task)
{
if (sentry__atomic_fetch_and_add(&task->refcount, -1) == 1) {
sentry__mutex_free(&task->lock);
sentry_free(task);
}
}
int
sentry__bgworker_flush(sentry_bgworker_t *bgw, uint64_t timeout)
{
if (!sentry__atomic_fetch(&bgw->running)) {
SENTRY_WARN("trying to flush non-running thread");
return 0;
}
SENTRY_TRACE("flushing background worker thread");
sentry_flush_task_t *flush_task
= sentry_malloc(sizeof(sentry_flush_task_t));
if (!flush_task) {
return 1;
}
memset(flush_task, 0, sizeof(sentry_flush_task_t));
flush_task->refcount = 2; // this thread + background worker
flush_task->was_flushed = false;
sentry__cond_init(&flush_task->signal);
sentry__mutex_init(&flush_task->lock);
sentry__mutex_lock(&flush_task->lock);
/* submit the task that triggers our condvar once it runs */
sentry__bgworker_submit(bgw, sentry__flush_task,
(void (*)(void *))sentry__flush_task_decref, flush_task);
uint64_t started = sentry__monotonic_time();
bool was_flushed = false;
while (true) {
was_flushed = flush_task->was_flushed;
uint64_t now = sentry__monotonic_time();
if (was_flushed || (now > started && now - started > timeout)) {
sentry__mutex_unlock(&flush_task->lock);
sentry__flush_task_decref(flush_task);
// return `0` on success
return !was_flushed;
}
// this will implicitly release the lock, and re-acquire on wake
sentry__cond_wait_timeout(&flush_task->signal, &flush_task->lock, 250);
}
}
static void
shutdown_task(void *task_data, void *UNUSED(state))
{
sentry_bgworker_t *bgw = task_data;
sentry__atomic_store(&bgw->running, 0);
}
int
sentry__bgworker_shutdown(sentry_bgworker_t *bgw, uint64_t timeout)
{
if (!sentry__atomic_fetch(&bgw->running)) {
SENTRY_WARN("trying to shut down non-running thread");
return 0;
}
SENTRY_TRACE("shutting down background worker thread");
/* submit a task to shut down the queue */
sentry__bgworker_submit(bgw, shutdown_task, NULL, bgw);
uint64_t started = sentry__monotonic_time();
sentry__mutex_lock(&bgw->task_lock);
while (true) {
if (sentry__bgworker_is_done(bgw)) {
sentry__mutex_unlock(&bgw->task_lock);
sentry__thread_join(bgw->thread_id);
return 0;
}
uint64_t now = sentry__monotonic_time();
if (now > started && now - started > timeout) {
sentry__atomic_store(&bgw->running, 0);
sentry__thread_detach(bgw->thread_id);
sentry__mutex_unlock(&bgw->task_lock);
SENTRY_WARN(
"background thread failed to shut down cleanly within timeout");
return 1;
}
// this will implicitly release the lock, and re-acquire on wake
sentry__cond_wait_timeout(&bgw->done_signal, &bgw->task_lock, 250);
}
}
int
sentry__bgworker_submit(sentry_bgworker_t *bgw,
sentry_task_exec_func_t exec_func, void (*cleanup_func)(void *task_data),
void *task_data)
{
sentry_bgworker_task_t *task = SENTRY_MAKE(sentry_bgworker_task_t);
if (!task) {
if (cleanup_func) {
cleanup_func(task_data);
}
return 1;
}
task->next_task = NULL;
task->refcount = 1;
task->exec_func = exec_func;
task->cleanup_func = cleanup_func;
task->task_data = task_data;
SENTRY_TRACE("submitting task to background worker thread");
sentry__mutex_lock(&bgw->task_lock);
if (!bgw->first_task) {
bgw->first_task = task;
}
if (bgw->last_task) {
bgw->last_task->next_task = task;
}
bgw->last_task = task;
sentry__cond_wake(&bgw->submit_signal);
sentry__mutex_unlock(&bgw->task_lock);
return 0;
}
size_t
sentry__bgworker_foreach_matching(sentry_bgworker_t *bgw,
sentry_task_exec_func_t exec_func,
bool (*callback)(void *task_data, void *data), void *data)
{
sentry__mutex_lock(&bgw->task_lock);
sentry_bgworker_task_t *task = bgw->first_task;
sentry_bgworker_task_t *prev_task = NULL;
size_t dropped = 0;
while (task) {
bool drop_task = false;
// only consider tasks matching this exec_func
if (task->exec_func == exec_func) {
drop_task = callback(task->task_data, data);
}
sentry_bgworker_task_t *next_task = task->next_task;
if (drop_task) {
if (prev_task) {
prev_task->next_task = next_task;
} else {
bgw->first_task = next_task;
}
sentry__task_decref(task);
dropped++;
} else {
prev_task = task;
}
task = next_task;
}
bgw->last_task = prev_task;
sentry__mutex_unlock(&bgw->task_lock);
return dropped;
}
void
sentry__bgworker_setname(sentry_bgworker_t *bgw, const char *thread_name)
{
bgw->thread_name = sentry__string_clone(thread_name);
}
#ifdef SENTRY_PLATFORM_UNIX
# include "sentry_unix_spinlock.h"
static sig_atomic_t g_in_signal_handler = 0;
static sentry_threadid_t g_signal_handling_thread = { 0 };
bool
sentry__block_for_signal_handler(void)
{
while (__sync_fetch_and_add(&g_in_signal_handler, 0)) {
if (sentry__threadid_equal(
sentry__current_thread(), g_signal_handling_thread)) {
return false;
}
sentry__cpu_relax();
}
return true;
}
void
sentry__enter_signal_handler(void)
{
sentry__block_for_signal_handler();
g_signal_handling_thread = sentry__current_thread();
__sync_fetch_and_or(&g_in_signal_handler, 1);
}
void
sentry__leave_signal_handler(void)
{
__sync_fetch_and_and(&g_in_signal_handler, 0);
}
#endif