mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
It's now possible to create thousands of thousands of sparse independent memory mappings, without any slowdown. The memory manager is better with tracking memory protection now, particularly on Windows in a precise way that can be restored during fork(). You now have the highest quality mem manager possible. It's even better than some OSes like XNU, where mmap() is implemented as an O(n) operation which means sadly things aren't much improved over there. With this change the llamafile HTTP server endpoint at /tokenize with a prompt of 50 tokens is now able to handle 2.6m r/sec
294 lines
9.6 KiB
C
294 lines
9.6 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
│ vi: set et ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi │
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2020 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/atomic.h"
|
|
#include "libc/calls/blockcancel.internal.h"
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/calls/state.internal.h"
|
|
#include "libc/calls/struct/sigaction.h"
|
|
#include "libc/calls/struct/siginfo.h"
|
|
#include "libc/calls/struct/sigset.h"
|
|
#include "libc/calls/struct/ucontext.internal.h"
|
|
#include "libc/calls/struct/utsname.h"
|
|
#include "libc/calls/syscall-sysv.internal.h"
|
|
#include "libc/calls/ucontext.h"
|
|
#include "libc/dce.h"
|
|
#include "libc/errno.h"
|
|
#include "libc/fmt/itoa.h"
|
|
#include "libc/intrin/atomic.h"
|
|
#include "libc/intrin/describebacktrace.internal.h"
|
|
#include "libc/intrin/describeflags.internal.h"
|
|
#include "libc/intrin/kprintf.h"
|
|
#include "libc/intrin/strace.internal.h"
|
|
#include "libc/intrin/weaken.h"
|
|
#include "libc/log/backtrace.internal.h"
|
|
#include "libc/log/gdb.h"
|
|
#include "libc/log/internal.h"
|
|
#include "libc/log/log.h"
|
|
#include "libc/macros.internal.h"
|
|
#include "libc/math.h"
|
|
#include "libc/mem/alloca.h"
|
|
#include "libc/nexgen32e/stackframe.h"
|
|
#include "libc/runtime/internal.h"
|
|
#include "libc/runtime/pc.internal.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/runtime/stack.h"
|
|
#include "libc/stdio/stdio.h"
|
|
#include "libc/str/str.h"
|
|
#include "libc/sysv/consts/auxv.h"
|
|
#include "libc/sysv/consts/sig.h"
|
|
#include "libc/thread/thread.h"
|
|
#include "libc/thread/tls.h"
|
|
#ifdef __x86_64__
|
|
|
|
#define STACK_ERROR "error: not enough room on stack to print crash report\n"
|
|
|
|
static const char kGregOrder[17] forcealign(1) = {
|
|
13, 11, 8, 14, 12, 9, 10, 15, 16, 0, 1, 2, 3, 4, 5, 6, 7,
|
|
};
|
|
|
|
static const char kGregNames[17][4] forcealign(1) = {
|
|
"R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15", "RDI",
|
|
"RSI", "RBP", "RBX", "RDX", "RAX", "RCX", "RSP", "RIP",
|
|
};
|
|
|
|
static const char kCpuFlags[12] forcealign(1) = "CVPRAKZSTIDO";
|
|
static const char kFpuExceptions[6] forcealign(1) = "IDZOUP";
|
|
|
|
relegated static void ShowFunctionCalls(ucontext_t *ctx) {
|
|
kprintf(
|
|
"cosmoaddr2line %s %lx %s\n\n", FindDebugBinary(),
|
|
ctx ? ctx->uc_mcontext.PC : 0,
|
|
DescribeBacktrace(ctx ? (struct StackFrame *)ctx->uc_mcontext.BP
|
|
: (struct StackFrame *)__builtin_frame_address(0)));
|
|
ShowBacktrace(2, &(struct StackFrame){
|
|
.next = (struct StackFrame *)ctx->uc_mcontext.rbp,
|
|
.addr = ctx->uc_mcontext.rip,
|
|
});
|
|
}
|
|
|
|
relegated static char *AddFlag(char *p, int b, const char *s) {
|
|
if (b) {
|
|
p = stpcpy(p, s);
|
|
} else {
|
|
*p = 0;
|
|
}
|
|
return p;
|
|
}
|
|
|
|
relegated static dontinline char *DescribeCpuFlags(char *p, int flags,
|
|
int x87sw, int mxcsr) {
|
|
unsigned i;
|
|
for (i = 0; i < ARRAYLEN(kCpuFlags); ++i) {
|
|
if (flags & 1) {
|
|
*p++ = ' ';
|
|
*p++ = kCpuFlags[i];
|
|
*p++ = 'F';
|
|
}
|
|
flags >>= 1;
|
|
}
|
|
for (i = 0; i < ARRAYLEN(kFpuExceptions); ++i) {
|
|
if ((x87sw | mxcsr) & (1 << i)) {
|
|
*p++ = ' ';
|
|
*p++ = kFpuExceptions[i];
|
|
*p++ = 'E';
|
|
}
|
|
}
|
|
p = AddFlag(p, x87sw & FPU_SF, " SF");
|
|
p = AddFlag(p, x87sw & FPU_C0, " C0");
|
|
p = AddFlag(p, x87sw & FPU_C1, " C1");
|
|
p = AddFlag(p, x87sw & FPU_C2, " C2");
|
|
p = AddFlag(p, x87sw & FPU_C3, " C3");
|
|
return p;
|
|
}
|
|
|
|
static char *HexCpy(char p[hasatleast 17], uint64_t x, uint8_t k) {
|
|
while (k > 0)
|
|
*p++ = "0123456789abcdef"[(x >> (k -= 4)) & 15];
|
|
*p = '\0';
|
|
return p;
|
|
}
|
|
|
|
relegated static char *ShowGeneralRegisters(char *p, ucontext_t *ctx) {
|
|
size_t i, j;
|
|
const char *s;
|
|
*p++ = '\n';
|
|
for (i = 0, j = 0; i < ARRAYLEN(kGregNames); ++i) {
|
|
if (j > 0)
|
|
*p++ = ' ';
|
|
if (!(s = kGregNames[(unsigned)kGregOrder[i]])[2])
|
|
*p++ = ' ';
|
|
p = stpcpy(p, s), *p++ = ' ';
|
|
p = HexCpy(p, ctx->uc_mcontext.gregs[(unsigned)kGregOrder[i]], 64);
|
|
if (++j == 3) {
|
|
j = 0;
|
|
*p++ = '\n';
|
|
}
|
|
}
|
|
DescribeCpuFlags(
|
|
p, ctx->uc_mcontext.eflags,
|
|
ctx->uc_mcontext.fpregs ? ctx->uc_mcontext.fpregs->swd : 0,
|
|
ctx->uc_mcontext.fpregs ? ctx->uc_mcontext.fpregs->mxcsr : 0);
|
|
*p++ = '\n';
|
|
p = stpcpy(p, "TLS ");
|
|
p = HexCpy(p, (long)__get_tls(), 64);
|
|
*p++ = '\n';
|
|
return p;
|
|
}
|
|
|
|
relegated static char *ShowSseRegisters(char *p, ucontext_t *ctx) {
|
|
size_t i;
|
|
if (ctx->uc_mcontext.fpregs) {
|
|
*p++ = '\n';
|
|
for (i = 0; i < 8; ++i) {
|
|
*p++ = 'X';
|
|
*p++ = 'M';
|
|
*p++ = 'M';
|
|
if (i >= 10) {
|
|
*p++ = i / 10 + '0';
|
|
*p++ = i % 10 + '0';
|
|
} else {
|
|
*p++ = i + '0';
|
|
*p++ = ' ';
|
|
}
|
|
*p++ = ' ';
|
|
p = HexCpy(p, ctx->uc_mcontext.fpregs->xmm[i + 0].u64[1], 64);
|
|
p = HexCpy(p, ctx->uc_mcontext.fpregs->xmm[i + 0].u64[0], 64);
|
|
p = stpcpy(p, " XMM");
|
|
if (i + 8 >= 10) {
|
|
*p++ = (i + 8) / 10 + '0';
|
|
*p++ = (i + 8) % 10 + '0';
|
|
} else {
|
|
*p++ = (i + 8) + '0';
|
|
*p++ = ' ';
|
|
}
|
|
*p++ = ' ';
|
|
p = HexCpy(p, ctx->uc_mcontext.fpregs->xmm[i + 8].u64[1], 64);
|
|
p = HexCpy(p, ctx->uc_mcontext.fpregs->xmm[i + 8].u64[0], 64);
|
|
*p++ = '\n';
|
|
}
|
|
}
|
|
return p;
|
|
}
|
|
|
|
void ShowCrashReportHook(int, int, int, siginfo_t *, ucontext_t *);
|
|
|
|
static relegated void ShowCrashReport(int err, int sig, siginfo_t *si,
|
|
ucontext_t *ctx) {
|
|
#pragma GCC push_options
|
|
#pragma GCC diagnostic ignored "-Walloca-larger-than="
|
|
long size = __get_safe_size(8192, 4096);
|
|
if (size < 6000) {
|
|
klog(STACK_ERROR, sizeof(STACK_ERROR) - 1);
|
|
__minicrash(sig, si, ctx);
|
|
return;
|
|
}
|
|
char *buf = alloca(size);
|
|
CheckLargeStackAllocation(buf, size);
|
|
#pragma GCC pop_options
|
|
int i;
|
|
char *p = buf;
|
|
char host[64];
|
|
struct utsname names;
|
|
if (_weaken(ShowCrashReportHook)) {
|
|
ShowCrashReportHook(2, err, sig, si, ctx);
|
|
}
|
|
names.sysname[0] = 0;
|
|
names.release[0] = 0;
|
|
names.version[0] = 0;
|
|
names.nodename[0] = 0;
|
|
stpcpy(host, "unknown");
|
|
gethostname(host, sizeof(host));
|
|
uname(&names);
|
|
errno = err;
|
|
// TODO(jart): Buffer the WHOLE crash report with backtrace for atomic write.
|
|
p +=
|
|
ksnprintf(p, 4000,
|
|
"\n%serror%s: Uncaught %G (%s) at %p on %s pid %d tid %d\n"
|
|
" %s\n"
|
|
" %s\n"
|
|
" %s %s %s %s\n",
|
|
!__nocolor ? "\e[30;101m" : "", !__nocolor ? "\e[0m" : "", sig,
|
|
__is_stack_overflow(si, ctx) ? "\e[7mStack Overflow\e[0m"
|
|
: DescribeSiCode(sig, si->si_code),
|
|
si->si_addr, host, getpid(), gettid(), program_invocation_name,
|
|
strerror(err), names.sysname, names.version, names.nodename,
|
|
names.release);
|
|
if (ctx) {
|
|
p = ShowGeneralRegisters(p, ctx);
|
|
p = ShowSseRegisters(p, ctx);
|
|
*p++ = '\n';
|
|
klog(buf, p - buf);
|
|
ShowFunctionCalls(ctx);
|
|
} else {
|
|
*p++ = '\n';
|
|
klog(buf, p - buf);
|
|
}
|
|
kprintf("\n");
|
|
__print_maps(15);
|
|
if (__argv)
|
|
for (i = 0; i < __argc; ++i)
|
|
kprintf("%s ", __argv[i]);
|
|
kprintf("\n");
|
|
}
|
|
|
|
static inline void SpinLock(atomic_uint *lock) {
|
|
int x;
|
|
for (;;) {
|
|
x = atomic_exchange_explicit(lock, 1, memory_order_acquire);
|
|
if (!x)
|
|
break;
|
|
}
|
|
}
|
|
|
|
static inline void SpinUnlock(atomic_uint *lock) {
|
|
atomic_store_explicit(lock, 0, memory_order_release);
|
|
}
|
|
|
|
relegated void __oncrash(int sig, siginfo_t *si, void *arg) {
|
|
static atomic_uint lock;
|
|
ftrace_enabled(-1);
|
|
strace_enabled(-1);
|
|
BLOCK_CANCELATION;
|
|
SpinLock(&lock);
|
|
int err = errno;
|
|
__restore_tty();
|
|
ShowCrashReport(err, sig, si, arg);
|
|
|
|
// ensure execution doesn't resume for anything but SIGTRAP / SIGQUIT
|
|
if (arg && sig != SIGTRAP && sig != SIGQUIT) {
|
|
if (!IsXnu()) {
|
|
sigaddset(&((ucontext_t *)arg)->uc_sigmask, sig);
|
|
} else {
|
|
sigdelset(&((ucontext_t *)arg)->uc_sigmask, sig);
|
|
struct sigaction sa;
|
|
sigemptyset(&sa.sa_mask);
|
|
sa.sa_handler = SIG_DFL;
|
|
sa.sa_flags = 0;
|
|
sigaction(sig, &sa, 0);
|
|
}
|
|
}
|
|
|
|
SpinUnlock(&lock);
|
|
ALLOW_CANCELATION;
|
|
strace_enabled(+1);
|
|
ftrace_enabled(+1);
|
|
}
|
|
|
|
#endif /* __x86_64__ */
|