mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
e522aa3a07
- ASAN memory morgue is now lockless - Make C11 atomics header more portable - Rewrote pthread keys support to be lockless - Simplify Python's unicode table unpacking code - Make crash report write(2) closer to being atomic - Make it possible to strace/ftrace a single thread - ASAN now checks nul-terminated strings fast and properly - Windows fork() now restores TLS memory of calling thread
89 lines
3.4 KiB
C
89 lines
3.4 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2022 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
|
│ │
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "libc/assert.h"
|
|
#include "libc/errno.h"
|
|
#include "libc/intrin/kmalloc.h"
|
|
#include "libc/runtime/memtrack.internal.h"
|
|
#include "libc/str/str.h"
|
|
#include "libc/thread/posixthread.internal.h"
|
|
#include "libc/thread/thread.h"
|
|
#include "libc/thread/tls.h"
|
|
|
|
static struct AtForks {
|
|
pthread_spinlock_t lock;
|
|
struct AtFork {
|
|
struct AtFork *p[2];
|
|
atfork_f f[3];
|
|
} * list;
|
|
} _atforks;
|
|
|
|
static void _pthread_onfork(int i) {
|
|
struct AtFork *a;
|
|
struct PosixThread *pt;
|
|
_unassert(0 <= i && i <= 2);
|
|
if (!i) pthread_spin_lock(&_atforks.lock);
|
|
for (a = _atforks.list; a; a = a->p[!i]) {
|
|
if (a->f[i]) a->f[i]();
|
|
_atforks.list = a;
|
|
}
|
|
if (i) pthread_spin_unlock(&_atforks.lock);
|
|
if (i == 2) {
|
|
_pthread_zombies_purge();
|
|
if (__tls_enabled) {
|
|
pt = (struct PosixThread *)__get_tls()->tib_pthread;
|
|
pt->flags |= PT_MAINTHREAD;
|
|
}
|
|
}
|
|
}
|
|
|
|
void _pthread_onfork_prepare(void) {
|
|
_pthread_onfork(0);
|
|
__kmalloc_lock();
|
|
__mmi_lock();
|
|
}
|
|
|
|
void _pthread_onfork_parent(void) {
|
|
__mmi_unlock();
|
|
__kmalloc_unlock();
|
|
_pthread_onfork(1);
|
|
}
|
|
|
|
void _pthread_onfork_child(void) {
|
|
extern pthread_mutex_t __mmi_lock_obj;
|
|
bzero(&__mmi_lock_obj, sizeof(__mmi_lock_obj));
|
|
__kmalloc_unlock();
|
|
_pthread_onfork(2);
|
|
}
|
|
|
|
int _pthread_atfork(atfork_f prepare, atfork_f parent, atfork_f child) {
|
|
int rc;
|
|
struct AtFork *a;
|
|
if (!(a = kmalloc(sizeof(struct AtFork)))) return ENOMEM;
|
|
a->f[0] = prepare;
|
|
a->f[1] = parent;
|
|
a->f[2] = child;
|
|
pthread_spin_lock(&_atforks.lock);
|
|
a->p[0] = 0;
|
|
a->p[1] = _atforks.list;
|
|
if (_atforks.list) _atforks.list->p[0] = a;
|
|
_atforks.list = a;
|
|
pthread_spin_unlock(&_atforks.lock);
|
|
rc = 0;
|
|
return rc;
|
|
}
|