2020-07-30 21:38:15 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 21:38:15 +00:00
|
|
|
*/
|
|
|
|
|
2021-01-25 15:07:10 +00:00
|
|
|
#include <Kernel/Debug.h>
|
2020-07-30 21:38:15 +00:00
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
KResultOr<siginfo_t> Process::do_waitid(idtype_t idtype, int id, int options)
|
|
|
|
{
|
2020-11-29 23:05:27 +00:00
|
|
|
KResultOr<siginfo_t> result = KResult(KSuccess);
|
2021-01-10 23:29:28 +00:00
|
|
|
if (Thread::current()->block<Thread::WaitBlocker>({}, options, idtype, id, result).was_interrupted())
|
2021-01-20 22:11:17 +00:00
|
|
|
return EINTR;
|
2021-02-23 19:42:32 +00:00
|
|
|
VERIFY(!result.is_error() || (options & WNOHANG) || result.error() != KSuccess);
|
2020-11-29 23:05:27 +00:00
|
|
|
return result;
|
2020-07-30 21:38:15 +00:00
|
|
|
}
|
|
|
|
|
2021-03-01 12:49:16 +00:00
|
|
|
KResultOr<pid_t> Process::sys$waitid(Userspace<const Syscall::SC_waitid_params*> user_params)
|
2020-07-30 21:38:15 +00:00
|
|
|
{
|
|
|
|
REQUIRE_PROMISE(proc);
|
|
|
|
|
|
|
|
Syscall::SC_waitid_params params;
|
2020-09-12 03:11:07 +00:00
|
|
|
if (!copy_from_user(¶ms, user_params))
|
2021-03-01 12:49:16 +00:00
|
|
|
return EFAULT;
|
2020-07-30 21:38:15 +00:00
|
|
|
|
2021-02-12 17:23:28 +00:00
|
|
|
switch (params.idtype) {
|
|
|
|
case P_ALL:
|
|
|
|
case P_PID:
|
|
|
|
case P_PGID:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
2021-02-07 12:03:24 +00:00
|
|
|
dbgln_if(PROCESS_DEBUG, "sys$waitid({}, {}, {}, {})", params.idtype, params.id, params.infop, params.options);
|
2020-07-30 21:38:15 +00:00
|
|
|
|
|
|
|
auto siginfo_or_error = do_waitid(static_cast<idtype_t>(params.idtype), params.id, params.options);
|
|
|
|
if (siginfo_or_error.is_error())
|
|
|
|
return siginfo_or_error.error();
|
|
|
|
|
2020-09-12 03:11:07 +00:00
|
|
|
if (!copy_to_user(params.infop, &siginfo_or_error.value()))
|
2021-03-01 12:49:16 +00:00
|
|
|
return EFAULT;
|
2020-07-30 21:38:15 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|