2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2021-05-30 07:28:59 -06:00
|
|
|
* Copyright (c) 2019-2020, Andrew Kaster <akaster@serenityos.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2021-01-24 15:28:26 +01:00
|
|
|
#include <AK/Debug.h>
|
2021-03-12 17:29:37 +01:00
|
|
|
#include <AK/Format.h>
|
2021-04-17 18:35:14 +02:00
|
|
|
#include <LibC/bits/pthread_integration.h>
|
2020-05-20 14:23:31 +02:00
|
|
|
#include <assert.h>
|
2019-12-29 01:10:57 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2020-08-12 02:11:07 +02:00
|
|
|
#include <sys/internals.h>
|
2021-01-30 10:34:41 +01:00
|
|
|
#include <sys/mman.h>
|
2021-03-12 17:29:37 +01:00
|
|
|
#include <unistd.h>
|
2019-12-29 01:10:57 -05:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
2021-01-30 10:34:41 +01:00
|
|
|
struct AtExitEntry {
|
|
|
|
|
AtExitFunction method { nullptr };
|
|
|
|
|
void* parameter { nullptr };
|
|
|
|
|
void* dso_handle { nullptr };
|
|
|
|
|
bool has_been_called { false };
|
2019-12-29 01:10:57 -05:00
|
|
|
};
|
|
|
|
|
|
2021-01-30 10:34:41 +01:00
|
|
|
static constexpr size_t max_atexit_entry_count = PAGE_SIZE / sizeof(AtExitEntry);
|
|
|
|
|
|
|
|
|
|
static AtExitEntry* atexit_entries;
|
|
|
|
|
static size_t atexit_entry_count = 0;
|
2021-04-17 18:35:14 +02:00
|
|
|
static pthread_mutex_t atexit_mutex = __PTHREAD_MUTEX_INITIALIZER;
|
2021-01-30 10:34:41 +01:00
|
|
|
|
|
|
|
|
static void lock_atexit_handlers()
|
|
|
|
|
{
|
|
|
|
|
if (mprotect(atexit_entries, PAGE_SIZE, PROT_READ) < 0) {
|
|
|
|
|
perror("lock_atexit_handlers");
|
|
|
|
|
_exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void unlock_atexit_handlers()
|
|
|
|
|
{
|
|
|
|
|
if (mprotect(atexit_entries, PAGE_SIZE, PROT_READ | PROT_WRITE) < 0) {
|
|
|
|
|
perror("unlock_atexit_handlers");
|
|
|
|
|
_exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-29 01:10:57 -05:00
|
|
|
|
|
|
|
|
int __cxa_atexit(AtExitFunction exit_function, void* parameter, void* dso_handle)
|
|
|
|
|
{
|
2021-04-17 18:35:14 +02:00
|
|
|
__pthread_mutex_lock(&atexit_mutex);
|
|
|
|
|
|
|
|
|
|
if (atexit_entry_count >= max_atexit_entry_count) {
|
|
|
|
|
__pthread_mutex_unlock(&atexit_mutex);
|
2019-12-29 01:10:57 -05:00
|
|
|
return -1;
|
2021-04-17 18:35:14 +02:00
|
|
|
}
|
2019-12-29 01:10:57 -05:00
|
|
|
|
2021-01-30 10:34:41 +01:00
|
|
|
if (!atexit_entries) {
|
|
|
|
|
atexit_entries = (AtExitEntry*)mmap(nullptr, PAGE_SIZE, PROT_READ, MAP_ANONYMOUS | MAP_PRIVATE, 0, 0);
|
|
|
|
|
if (atexit_entries == MAP_FAILED) {
|
2021-04-17 18:35:14 +02:00
|
|
|
__pthread_mutex_unlock(&atexit_mutex);
|
2021-01-30 10:34:41 +01:00
|
|
|
perror("__cxa_atexit mmap");
|
|
|
|
|
_exit(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unlock_atexit_handlers();
|
|
|
|
|
atexit_entries[atexit_entry_count++] = { exit_function, parameter, dso_handle, false };
|
|
|
|
|
lock_atexit_handlers();
|
2019-12-29 01:10:57 -05:00
|
|
|
|
2021-04-17 18:35:14 +02:00
|
|
|
__pthread_mutex_unlock(&atexit_mutex);
|
|
|
|
|
|
2019-12-29 01:10:57 -05:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void __cxa_finalize(void* dso_handle)
|
|
|
|
|
{
|
|
|
|
|
// From the itanium abi, https://itanium-cxx-abi.github.io/cxx-abi/abi.html#dso-dtor-runtime-api
|
|
|
|
|
//
|
|
|
|
|
// When __cxa_finalize(d) is called, it should walk the termination function list, calling each in turn
|
|
|
|
|
// if d matches __dso_handle for the termination function entry. If d == NULL, it should call all of them.
|
|
|
|
|
// Multiple calls to __cxa_finalize shall not result in calling termination function entries multiple times;
|
|
|
|
|
// the implementation may either remove entries or mark them finished.
|
|
|
|
|
|
2021-04-17 18:35:14 +02:00
|
|
|
__pthread_mutex_lock(&atexit_mutex);
|
|
|
|
|
|
2021-01-30 10:34:41 +01:00
|
|
|
ssize_t entry_index = atexit_entry_count;
|
2019-12-29 01:10:57 -05:00
|
|
|
|
2021-02-07 15:33:24 +03:30
|
|
|
dbgln_if(GLOBAL_DTORS_DEBUG, "__cxa_finalize: {} entries in the finalizer list", entry_index);
|
2019-12-29 01:10:57 -05:00
|
|
|
|
|
|
|
|
while (--entry_index >= 0) {
|
2021-01-30 10:34:41 +01:00
|
|
|
auto& exit_entry = atexit_entries[entry_index];
|
2019-12-29 01:10:57 -05:00
|
|
|
bool needs_calling = !exit_entry.has_been_called && (!dso_handle || dso_handle == exit_entry.dso_handle);
|
|
|
|
|
if (needs_calling) {
|
2021-02-07 15:33:24 +03:30
|
|
|
dbgln_if(GLOBAL_DTORS_DEBUG, "__cxa_finalize: calling entry[{}] {:p}({:p}) dso: {:p}", entry_index, exit_entry.method, exit_entry.parameter, exit_entry.dso_handle);
|
2021-01-30 10:34:41 +01:00
|
|
|
unlock_atexit_handlers();
|
2019-12-29 01:10:57 -05:00
|
|
|
exit_entry.has_been_called = true;
|
2021-01-30 10:34:41 +01:00
|
|
|
lock_atexit_handlers();
|
2021-04-17 18:35:14 +02:00
|
|
|
__pthread_mutex_unlock(&atexit_mutex);
|
2021-03-29 15:36:42 +03:00
|
|
|
exit_entry.method(exit_entry.parameter);
|
2021-04-17 18:35:14 +02:00
|
|
|
__pthread_mutex_lock(&atexit_mutex);
|
2019-12-29 01:10:57 -05:00
|
|
|
}
|
|
|
|
|
}
|
2021-04-17 18:35:14 +02:00
|
|
|
|
|
|
|
|
__pthread_mutex_unlock(&atexit_mutex);
|
2019-12-29 01:10:57 -05:00
|
|
|
}
|
|
|
|
|
|
2021-06-29 10:31:48 +02:00
|
|
|
__attribute__((noreturn)) void __cxa_pure_virtual()
|
2020-08-12 02:11:07 +02:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-08-12 02:11:07 +02:00
|
|
|
}
|
|
|
|
|
|
2019-12-29 01:10:57 -05:00
|
|
|
} // extern "C"
|