2020-07-30 18:38:15 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 18:38:15 -03:00
|
|
|
*/
|
|
|
|
|
|
2022-08-20 20:04:35 -03:00
|
|
|
#include <AK/RefPtr.h>
|
2021-12-31 15:20:17 -03:00
|
|
|
#include <Kernel/FileSystem/Custody.h>
|
2021-09-07 08:39:11 -03:00
|
|
|
#include <Kernel/FileSystem/OpenFileDescription.h>
|
2022-08-19 15:53:40 -03:00
|
|
|
#include <Kernel/Library/NonnullLockRefPtrVector.h>
|
2020-07-30 18:38:15 -03:00
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-11-07 20:51:39 -03:00
|
|
|
ErrorOr<FlatPtr> Process::sys$fchown(int fd, UserID uid, GroupID gid)
|
2020-07-30 18:38:15 -03:00
|
|
|
{
|
2022-04-09 16:44:01 -03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 06:11:45 -03:00
|
|
|
TRY(require_promise(Pledge::chown));
|
2022-01-28 21:22:28 -03:00
|
|
|
auto description = TRY(open_file_description(fd));
|
2022-08-21 11:15:29 -03:00
|
|
|
TRY(description->chown(credentials(), uid, gid));
|
2021-11-07 20:51:39 -03:00
|
|
|
return 0;
|
2020-07-30 18:38:15 -03:00
|
|
|
}
|
|
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
ErrorOr<FlatPtr> Process::sys$chown(Userspace<Syscall::SC_chown_params const*> user_params)
|
2020-07-30 18:38:15 -03:00
|
|
|
{
|
2022-04-09 16:45:23 -03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 06:11:45 -03:00
|
|
|
TRY(require_promise(Pledge::chown));
|
2021-09-05 12:51:37 -03:00
|
|
|
auto params = TRY(copy_typed_from_user(user_params));
|
2021-09-05 11:13:56 -03:00
|
|
|
auto path = TRY(get_syscall_path_argument(params.path));
|
2021-12-31 15:20:17 -03:00
|
|
|
|
2022-08-20 20:04:35 -03:00
|
|
|
RefPtr<Custody> base;
|
2021-12-31 15:20:17 -03:00
|
|
|
if (params.dirfd == AT_FDCWD) {
|
|
|
|
|
base = current_directory();
|
|
|
|
|
} else {
|
2022-01-28 21:22:28 -03:00
|
|
|
auto base_description = TRY(open_file_description(params.dirfd));
|
2021-12-31 15:20:17 -03:00
|
|
|
if (!base_description->custody())
|
|
|
|
|
return EINVAL;
|
|
|
|
|
base = base_description->custody();
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-21 11:02:24 -03:00
|
|
|
TRY(VirtualFileSystem::the().chown(credentials(), path->view(), params.uid, params.gid, *base, params.follow_symlinks ? 0 : O_NOFOLLOW_NOERROR));
|
2021-11-07 20:51:39 -03:00
|
|
|
return 0;
|
2020-07-30 18:38:15 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|