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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2022-02-10 08:30:33 -03:00
|
|
|
ErrorOr<FlatPtr> Process::sys$unlink(int dirfd, Userspace<char const*> user_path, size_t path_length, int flags)
|
2020-07-30 18:38:15 -03:00
|
|
|
{
|
2022-08-17 17:03:04 -03:00
|
|
|
VERIFY_NO_PROCESS_BIG_LOCK(this);
|
2021-12-29 06:11:45 -03:00
|
|
|
TRY(require_promise(Pledge::cpath));
|
2021-09-05 12:56:40 -03:00
|
|
|
auto path = TRY(get_syscall_path_argument(user_path, path_length));
|
2022-02-10 08:30:33 -03:00
|
|
|
|
|
|
|
|
if (flags & ~AT_REMOVEDIR)
|
|
|
|
|
return Error::from_errno(EINVAL);
|
|
|
|
|
|
2022-08-20 20:04:35 -03:00
|
|
|
RefPtr<Custody> base;
|
2022-02-10 08:30:33 -03:00
|
|
|
if (dirfd == AT_FDCWD) {
|
|
|
|
|
base = current_directory();
|
|
|
|
|
} else {
|
|
|
|
|
auto base_description = TRY(open_file_description(dirfd));
|
|
|
|
|
if (!base_description->custody())
|
|
|
|
|
return Error::from_errno(EINVAL);
|
|
|
|
|
base = base_description->custody();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (flags & AT_REMOVEDIR)
|
2022-08-21 11:02:24 -03:00
|
|
|
TRY(VirtualFileSystem::the().rmdir(credentials(), path->view(), *base));
|
2022-02-10 08:30:33 -03:00
|
|
|
else
|
2022-08-21 11:02:24 -03:00
|
|
|
TRY(VirtualFileSystem::the().unlink(credentials(), path->view(), *base));
|
2021-11-07 20:51:39 -03:00
|
|
|
return 0;
|
2020-07-30 18:38:15 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|