/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Kernel { ErrorOr Process::sys$chmod(Userspace user_path, size_t path_length, mode_t mode) { VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this); require_promise(Pledge::fattr); auto path = TRY(get_syscall_path_argument(user_path, path_length)); TRY(VirtualFileSystem::the().chmod(path->view(), mode, current_directory())); return 0; } ErrorOr Process::sys$fchmod(int fd, mode_t mode) { VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this); require_promise(Pledge::fattr); auto description = TRY(fds().open_file_description(fd)); TRY(description->chmod(mode)); return 0; } }