2020-07-31 00:38:15 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-31 00:38:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Kernel/FileSystem/FileDescription.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-08-28 23:11:16 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$fchown(int fd, UserID uid, GroupID gid)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(chown);
|
2021-06-22 21:22:17 +03:00
|
|
|
auto description = fds().file_description(fd);
|
2020-07-31 00:38:15 +03:00
|
|
|
if (!description)
|
2021-03-01 15:49:16 +03:00
|
|
|
return EBADF;
|
2020-07-31 00:38:15 +03:00
|
|
|
return description->chown(uid, gid);
|
|
|
|
}
|
|
|
|
|
2021-06-28 21:59:35 +03:00
|
|
|
KResultOr<FlatPtr> Process::sys$chown(Userspace<const Syscall::SC_chown_params*> user_params)
|
2020-07-31 00:38:15 +03:00
|
|
|
{
|
2021-07-18 21:20:12 +03:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
|
2020-07-31 00:38:15 +03:00
|
|
|
REQUIRE_PROMISE(chown);
|
|
|
|
Syscall::SC_chown_params params;
|
2021-09-05 18:38:37 +03:00
|
|
|
TRY(copy_from_user(¶ms, user_params));
|
2021-09-05 17:13:56 +03:00
|
|
|
auto path = TRY(get_syscall_path_argument(params.path));
|
|
|
|
return VirtualFileSystem::the().chown(path->view(), params.uid, params.gid, current_directory());
|
2020-07-31 00:38:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|