123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /*
- * Copyright (c) 2021, the SerenityOS developers.
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Atomic.h>
- #include <AK/NeverDestroyed.h>
- #include <AK/Vector.h>
- #include <bits/pthread_integration.h>
- #include <sched.h>
- #include <unistd.h>
- namespace {
- // Most programs don't need this, no need to incur an extra mutex lock/unlock on them
- static Atomic<bool> g_did_touch_atfork { false };
- static pthread_mutex_t g_atfork_list_mutex __PTHREAD_MUTEX_INITIALIZER;
- static NeverDestroyed<Vector<void (*)(void), 4>> g_atfork_prepare_list;
- static NeverDestroyed<Vector<void (*)(void), 4>> g_atfork_child_list;
- static NeverDestroyed<Vector<void (*)(void), 4>> g_atfork_parent_list;
- }
- extern "C" {
- void __pthread_fork_prepare(void)
- {
- if (!g_did_touch_atfork.load())
- return;
- __pthread_mutex_lock(&g_atfork_list_mutex);
- for (auto entry : g_atfork_prepare_list.get())
- entry();
- __pthread_mutex_unlock(&g_atfork_list_mutex);
- }
- void __pthread_fork_child(void)
- {
- if (!g_did_touch_atfork.load())
- return;
- __pthread_mutex_lock(&g_atfork_list_mutex);
- for (auto entry : g_atfork_child_list.get())
- entry();
- __pthread_mutex_unlock(&g_atfork_list_mutex);
- }
- void __pthread_fork_parent(void)
- {
- if (!g_did_touch_atfork.load())
- return;
- __pthread_mutex_lock(&g_atfork_list_mutex);
- for (auto entry : g_atfork_parent_list.get())
- entry();
- __pthread_mutex_unlock(&g_atfork_list_mutex);
- }
- void __pthread_fork_atfork_register_prepare(void (*func)(void))
- {
- g_did_touch_atfork.store(true);
- __pthread_mutex_lock(&g_atfork_list_mutex);
- g_atfork_prepare_list->append(func);
- __pthread_mutex_unlock(&g_atfork_list_mutex);
- }
- void __pthread_fork_atfork_register_parent(void (*func)(void))
- {
- g_did_touch_atfork.store(true);
- __pthread_mutex_lock(&g_atfork_list_mutex);
- g_atfork_parent_list->append(func);
- __pthread_mutex_unlock(&g_atfork_list_mutex);
- }
- void __pthread_fork_atfork_register_child(void (*func)(void))
- {
- g_did_touch_atfork.store(true);
- __pthread_mutex_lock(&g_atfork_list_mutex);
- g_atfork_child_list->append(func);
- __pthread_mutex_unlock(&g_atfork_list_mutex);
- }
- int __pthread_self()
- {
- return gettid();
- }
- int pthread_self() __attribute__((weak, alias("__pthread_self")));
- int __pthread_mutex_lock(pthread_mutex_t* mutex)
- {
- auto& atomic = reinterpret_cast<Atomic<u32>&>(mutex->lock);
- pthread_t this_thread = __pthread_self();
- for (;;) {
- u32 expected = false;
- if (!atomic.compare_exchange_strong(expected, true, AK::memory_order_acq_rel)) {
- if (mutex->type == __PTHREAD_MUTEX_RECURSIVE && mutex->owner == this_thread) {
- mutex->level++;
- return 0;
- }
- sched_yield();
- continue;
- }
- mutex->owner = this_thread;
- mutex->level = 0;
- return 0;
- }
- }
- int pthread_mutex_lock(pthread_mutex_t*) __attribute__((weak, alias("__pthread_mutex_lock")));
- int __pthread_mutex_unlock(pthread_mutex_t* mutex)
- {
- if (mutex->type == __PTHREAD_MUTEX_RECURSIVE && mutex->level > 0) {
- mutex->level--;
- return 0;
- }
- mutex->owner = 0;
- mutex->lock = 0;
- return 0;
- }
- int pthread_mutex_unlock(pthread_mutex_t*) __attribute__((weak, alias("__pthread_mutex_unlock")));
- int __pthread_mutex_trylock(pthread_mutex_t* mutex)
- {
- auto& atomic = reinterpret_cast<Atomic<u32>&>(mutex->lock);
- u32 expected = false;
- if (!atomic.compare_exchange_strong(expected, true, AK::memory_order_acq_rel)) {
- if (mutex->type == __PTHREAD_MUTEX_RECURSIVE && mutex->owner == pthread_self()) {
- mutex->level++;
- return 0;
- }
- return EBUSY;
- }
- mutex->owner = pthread_self();
- mutex->level = 0;
- return 0;
- }
- int pthread_mutex_trylock(pthread_mutex_t* mutex) __attribute__((weak, alias("__pthread_mutex_trylock")));
- int __pthread_mutex_init(pthread_mutex_t* mutex, const pthread_mutexattr_t* attributes)
- {
- mutex->lock = 0;
- mutex->owner = 0;
- mutex->level = 0;
- mutex->type = attributes ? attributes->type : __PTHREAD_MUTEX_NORMAL;
- return 0;
- }
- int pthread_mutex_init(pthread_mutex_t*, const pthread_mutexattr_t*) __attribute__((weak, alias("__pthread_mutex_init")));
- }
|