mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-08 12:56:23 +03:00
54b9a4ec1e
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.
26 lines
642 B
C++
26 lines
642 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
namespace Kernel {
|
|
|
|
ErrorOr<FlatPtr> Process::sys$times(Userspace<tms*> user_times)
|
|
{
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
|
TRY(require_promise(Pledge::stdio));
|
|
tms times = {};
|
|
times.tms_utime = m_ticks_in_user;
|
|
times.tms_stime = m_ticks_in_kernel;
|
|
times.tms_cutime = m_ticks_in_user_for_dead_children;
|
|
times.tms_cstime = m_ticks_in_kernel_for_dead_children;
|
|
|
|
TRY(copy_to_user(user_times, ×));
|
|
return TimeManagement::the().uptime_ms() & 0x7fffffff;
|
|
}
|
|
|
|
}
|