mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00
Kernel+LibC: Clean up how assertions work in the kernel and LibC
This also brings LibC's abort() function closer to the spec.
This commit is contained in:
parent
33a9b2a3c3
commit
f033416893
13 changed files with 36 additions and 73 deletions
|
@ -189,7 +189,6 @@ namespace Kernel {
|
||||||
S(prctl) \
|
S(prctl) \
|
||||||
S(mremap) \
|
S(mremap) \
|
||||||
S(set_coredump_metadata) \
|
S(set_coredump_metadata) \
|
||||||
S(abort) \
|
|
||||||
S(anon_create) \
|
S(anon_create) \
|
||||||
S(msyscall) \
|
S(msyscall) \
|
||||||
S(readv) \
|
S(readv) \
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
#include <Kernel/Arch/x86/ISRStubs.h>
|
#include <Kernel/Arch/x86/ISRStubs.h>
|
||||||
#include <Kernel/Arch/x86/ProcessorInfo.h>
|
#include <Kernel/Arch/x86/ProcessorInfo.h>
|
||||||
#include <Kernel/Arch/x86/SafeMem.h>
|
#include <Kernel/Arch/x86/SafeMem.h>
|
||||||
|
#include <Kernel/Assertions.h>
|
||||||
#include <Kernel/Debug.h>
|
#include <Kernel/Debug.h>
|
||||||
#include <Kernel/IO.h>
|
#include <Kernel/IO.h>
|
||||||
#include <Kernel/Interrupts/APIC.h>
|
#include <Kernel/Interrupts/APIC.h>
|
||||||
|
@ -2419,6 +2420,13 @@ void __assertion_failed(const char* msg, const char* file, unsigned line, const
|
||||||
dmesgln("ASSERTION FAILED: {}", msg);
|
dmesgln("ASSERTION FAILED: {}", msg);
|
||||||
dmesgln("{}:{} in {}", file, line, func);
|
dmesgln("{}:{} in {}", file, line, func);
|
||||||
|
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
[[noreturn]] void abort()
|
||||||
|
{
|
||||||
|
#ifdef DEBUG
|
||||||
// Switch back to the current process's page tables if there are any.
|
// Switch back to the current process's page tables if there are any.
|
||||||
// Otherwise stack walking will be a disaster.
|
// Otherwise stack walking will be a disaster.
|
||||||
auto process = Process::current();
|
auto process = Process::current();
|
||||||
|
@ -2427,9 +2435,17 @@ void __assertion_failed(const char* msg, const char* file, unsigned line, const
|
||||||
|
|
||||||
Kernel::dump_backtrace();
|
Kernel::dump_backtrace();
|
||||||
Processor::halt();
|
Processor::halt();
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
abort();
|
||||||
|
}
|
||||||
|
|
||||||
|
[[noreturn]] void _abort()
|
||||||
|
{
|
||||||
|
asm volatile("ud2");
|
||||||
|
__builtin_unreachable();
|
||||||
|
}
|
||||||
|
|
||||||
NonMaskableInterruptDisabler::NonMaskableInterruptDisabler()
|
NonMaskableInterruptDisabler::NonMaskableInterruptDisabler()
|
||||||
{
|
{
|
||||||
IO::out8(0x70, IO::in8(0x70) | 0x80);
|
IO::out8(0x70, IO::in8(0x70) | 0x80);
|
||||||
|
|
|
@ -35,12 +35,13 @@
|
||||||
# define VERIFY_NOT_REACHED() VERIFY(false)
|
# define VERIFY_NOT_REACHED() VERIFY(false)
|
||||||
#else
|
#else
|
||||||
# define VERIFY(expr)
|
# define VERIFY(expr)
|
||||||
# define VERIFY_NOT_REACHED() CRASH()
|
# define VERIFY_NOT_REACHED() _abort()
|
||||||
#endif
|
#endif
|
||||||
#define CRASH() \
|
|
||||||
do { \
|
extern "C" {
|
||||||
asm volatile("ud2"); \
|
[[noreturn]] void _abort();
|
||||||
} while (0)
|
[[noreturn]] void abort();
|
||||||
|
}
|
||||||
|
|
||||||
#define VERIFY_INTERRUPTS_DISABLED() VERIFY(!(cpu_flags() & 0x200))
|
#define VERIFY_INTERRUPTS_DISABLED() VERIFY(!(cpu_flags() & 0x200))
|
||||||
#define VERIFY_INTERRUPTS_ENABLED() VERIFY(cpu_flags() & 0x200)
|
#define VERIFY_INTERRUPTS_ENABLED() VERIFY(cpu_flags() & 0x200)
|
||||||
|
|
|
@ -131,7 +131,6 @@ set(KERNEL_SOURCES
|
||||||
StdLib.cpp
|
StdLib.cpp
|
||||||
Syscall.cpp
|
Syscall.cpp
|
||||||
Syscalls/anon_create.cpp
|
Syscalls/anon_create.cpp
|
||||||
Syscalls/abort.cpp
|
|
||||||
Syscalls/access.cpp
|
Syscalls/access.cpp
|
||||||
Syscalls/alarm.cpp
|
Syscalls/alarm.cpp
|
||||||
Syscalls/beep.cpp
|
Syscalls/beep.cpp
|
||||||
|
|
|
@ -408,7 +408,6 @@ public:
|
||||||
KResultOr<FlatPtr> sys$allocate_tls(size_t);
|
KResultOr<FlatPtr> sys$allocate_tls(size_t);
|
||||||
KResultOr<int> sys$prctl(int option, FlatPtr arg1, FlatPtr arg2);
|
KResultOr<int> sys$prctl(int option, FlatPtr arg1, FlatPtr arg2);
|
||||||
KResultOr<int> sys$set_coredump_metadata(Userspace<const Syscall::SC_set_coredump_metadata_params*>);
|
KResultOr<int> sys$set_coredump_metadata(Userspace<const Syscall::SC_set_coredump_metadata_params*>);
|
||||||
[[noreturn]] void sys$abort();
|
|
||||||
KResultOr<int> sys$anon_create(size_t, int options);
|
KResultOr<int> sys$anon_create(size_t, int options);
|
||||||
|
|
||||||
template<bool sockname, typename Params>
|
template<bool sockname, typename Params>
|
||||||
|
|
|
@ -99,7 +99,7 @@ KResultOr<FlatPtr> handle(RegisterState& regs, FlatPtr function, FlatPtr arg1, F
|
||||||
auto& process = current_thread->process();
|
auto& process = current_thread->process();
|
||||||
current_thread->did_syscall();
|
current_thread->did_syscall();
|
||||||
|
|
||||||
if (function == SC_abort || function == SC_exit || function == SC_exit_thread) {
|
if (function == SC_exit || function == SC_exit_thread) {
|
||||||
// These syscalls need special handling since they never return to the caller.
|
// These syscalls need special handling since they never return to the caller.
|
||||||
|
|
||||||
if (auto* tracer = process.tracer(); tracer && tracer->is_tracing_syscalls()) {
|
if (auto* tracer = process.tracer(); tracer && tracer->is_tracing_syscalls()) {
|
||||||
|
@ -109,9 +109,6 @@ KResultOr<FlatPtr> handle(RegisterState& regs, FlatPtr function, FlatPtr arg1, F
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (function) {
|
switch (function) {
|
||||||
case SC_abort:
|
|
||||||
process.sys$abort();
|
|
||||||
break;
|
|
||||||
case SC_exit:
|
case SC_exit:
|
||||||
process.sys$exit(arg1);
|
process.sys$exit(arg1);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions are met:
|
|
||||||
*
|
|
||||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
||||||
* list of conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
* this list of conditions and the following disclaimer in the documentation
|
|
||||||
* and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
||||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
||||||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
||||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <AK/StringView.h>
|
|
||||||
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
||||||
#include <Kernel/Process.h>
|
|
||||||
|
|
||||||
namespace Kernel {
|
|
||||||
|
|
||||||
void Process::sys$abort()
|
|
||||||
{
|
|
||||||
crash(SIGABRT, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -163,7 +163,6 @@ private:
|
||||||
int virt$connect(int sockfd, FlatPtr address, socklen_t address_size);
|
int virt$connect(int sockfd, FlatPtr address, socklen_t address_size);
|
||||||
int virt$shutdown(int sockfd, int how);
|
int virt$shutdown(int sockfd, int how);
|
||||||
void virt$sync();
|
void virt$sync();
|
||||||
void virt$abort();
|
|
||||||
void virt$exit(int);
|
void virt$exit(int);
|
||||||
ssize_t virt$getrandom(FlatPtr buffer, size_t buffer_size, unsigned int flags);
|
ssize_t virt$getrandom(FlatPtr buffer, size_t buffer_size, unsigned int flags);
|
||||||
int virt$chdir(FlatPtr, size_t);
|
int virt$chdir(FlatPtr, size_t);
|
||||||
|
|
|
@ -220,9 +220,6 @@ u32 Emulator::virt_syscall(u32 function, u32 arg1, u32 arg2, u32 arg3)
|
||||||
case SC_sync:
|
case SC_sync:
|
||||||
virt$sync();
|
virt$sync();
|
||||||
return 0;
|
return 0;
|
||||||
case SC_abort:
|
|
||||||
virt$abort();
|
|
||||||
return 0;
|
|
||||||
case SC_exit:
|
case SC_exit:
|
||||||
virt$exit((int)arg1);
|
virt$exit((int)arg1);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -1036,14 +1033,6 @@ void Emulator::virt$sync()
|
||||||
syscall(SC_sync);
|
syscall(SC_sync);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Emulator::virt$abort()
|
|
||||||
{
|
|
||||||
reportln("\n=={}== \033[33;1mSyscall: abort\033[0m, shutting down!", getpid());
|
|
||||||
m_exit_status = 127;
|
|
||||||
m_shutdown = true;
|
|
||||||
dump_backtrace();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Emulator::virt$exit(int status)
|
void Emulator::virt$exit(int status)
|
||||||
{
|
{
|
||||||
reportln("\n=={}== \033[33;1mSyscall: exit({})\033[0m, shutting down!", getpid(), status);
|
reportln("\n=={}== \033[33;1mSyscall: exit({})\033[0m, shutting down!", getpid(), status);
|
||||||
|
|
|
@ -48,13 +48,12 @@ void __assertion_failed(const char* msg)
|
||||||
{ msg, strlen(msg) },
|
{ msg, strlen(msg) },
|
||||||
};
|
};
|
||||||
syscall(SC_set_coredump_metadata, ¶ms);
|
syscall(SC_set_coredump_metadata, ¶ms);
|
||||||
syscall(SC_abort);
|
abort();
|
||||||
for (;;) { }
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void __crash()
|
void _abort()
|
||||||
{
|
{
|
||||||
asm volatile("ud2");
|
asm volatile("ud2");
|
||||||
__builtin_unreachable();
|
__builtin_unreachable();
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
__attribute__((noreturn)) void __assertion_failed(const char* msg);
|
[[noreturn]] void __assertion_failed(const char* msg);
|
||||||
# define __stringify_helper(x) # x
|
# define __stringify_helper(x) # x
|
||||||
# define __stringify(x) __stringify_helper(x)
|
# define __stringify(x) __stringify_helper(x)
|
||||||
# define assert(expr) \
|
# define assert(expr) \
|
||||||
|
@ -42,12 +42,11 @@ __attribute__((noreturn)) void __assertion_failed(const char* msg);
|
||||||
# define VERIFY_NOT_REACHED() assert(false)
|
# define VERIFY_NOT_REACHED() assert(false)
|
||||||
#else
|
#else
|
||||||
# define assert(expr) ((void)(0))
|
# define assert(expr) ((void)(0))
|
||||||
# define VERIFY_NOT_REACHED() CRASH()
|
# define VERIFY_NOT_REACHED() _abort()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__attribute__((noreturn)) void __crash();
|
[[noreturn]] void _abort();
|
||||||
|
|
||||||
#define CRASH() __crash()
|
|
||||||
#define VERIFY assert
|
#define VERIFY assert
|
||||||
#define TODO VERIFY_NOT_REACHED
|
#define TODO VERIFY_NOT_REACHED
|
||||||
|
|
||||||
|
|
|
@ -249,8 +249,12 @@ void abort()
|
||||||
// For starters, send ourselves a SIGABRT.
|
// For starters, send ourselves a SIGABRT.
|
||||||
raise(SIGABRT);
|
raise(SIGABRT);
|
||||||
// If that didn't kill us, try harder.
|
// If that didn't kill us, try harder.
|
||||||
raise(SIGKILL);
|
sigset_t set;
|
||||||
_exit(127);
|
sigemptyset(&set);
|
||||||
|
sigaddset(&set, SIGABRT);
|
||||||
|
sigprocmask(SIG_UNBLOCK, &set, nullptr);
|
||||||
|
raise(SIGABRT);
|
||||||
|
_abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
static HashTable<const char*> s_malloced_environment_variables;
|
static HashTable<const char*> s_malloced_environment_variables;
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
static bool is_deadly_syscall(int fn)
|
static bool is_deadly_syscall(int fn)
|
||||||
{
|
{
|
||||||
return fn == SC_exit || fn == SC_fork || fn == SC_sigreturn || fn == SC_exit_thread || fn == SC_abort;
|
return fn == SC_exit || fn == SC_fork || fn == SC_sigreturn || fn == SC_exit_thread;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool is_unfuzzable_syscall(int fn)
|
static bool is_unfuzzable_syscall(int fn)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue