ladybird/Kernel/TTY
Brian Gianforcaro 54b9a4ec1e Kernel: Handle promise violations in the syscall handler
Previously we would crash the process immediately when a promise
violation was found during a syscall. This is error prone, as we
don't unwind the stack. This means that in certain cases we can
leak resources, like an OwnPtr / RefPtr tracked on the stack. Or
even leak a lock acquired in a ScopeLockLocker.

To remedy this situation we move the promise violation handling to
the syscall handler, right before we return to user space. This
allows the code to follow the normal unwind path, and grantees
there is no longer any cleanup that needs to occur.

The Process::require_promise() and Process::require_no_promises()
functions were modified to return ErrorOr<void> so we enforce that
the errors are always propagated by the caller.
2021-12-29 18:08:15 +01:00
..
ConsoleManagement.cpp Kernel/Devices: Use try_create_device helper for ConsoleDevice 2021-09-17 01:02:48 +03:00
ConsoleManagement.h Kernel: Remove the kmalloc_eternal heap :^) 2021-12-28 21:02:38 +01:00
MasterPTY.cpp Kernel: Handle promise violations in the syscall handler 2021-12-29 18:08:15 +01:00
MasterPTY.h Kernel: Replace KResult and KResultOr<T> with Error and ErrorOr<T> 2021-11-08 01:10:53 +01:00
PTYMultiplexer.cpp Kernel: Mark PTYMultiplexer init & parse_hex_digit as UNMAP_AFTER_INIT 2021-12-24 14:28:59 -08:00
PTYMultiplexer.h Kernel: Remove the kmalloc_eternal heap :^) 2021-12-28 21:02:38 +01:00
SlavePTY.cpp Kernel: Rename File::{before_removing => will_be_destroyed} 2021-12-29 12:04:15 +01:00
SlavePTY.h Kernel: Make File::unref virtual 2021-12-29 15:46:14 +02:00
TTY.cpp Kernel: Handle promise violations in the syscall handler 2021-12-29 18:08:15 +01:00
TTY.h Kernel: Make major and minor numbers to be DistinctNumerics 2021-12-23 23:02:39 +01:00
VirtualConsole.cpp Kernel: Propagate overflow errors from Memory::page_round_up 2021-12-28 23:08:50 +01:00
VirtualConsole.h Kernel: Remove the kmalloc_eternal heap :^) 2021-12-28 21:02:38 +01:00