2020-07-30 23:38:15 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-30 23:38:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/StringView.h>
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
2021-06-28 20:59:35 +02:00
|
|
|
KResultOr<FlatPtr> Process::sys$readlink(Userspace<const Syscall::SC_readlink_params*> user_params)
|
2020-07-30 23:38:15 +02:00
|
|
|
{
|
2021-07-18 11:20:12 -07:00
|
|
|
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
2020-07-30 23:38:15 +02:00
|
|
|
REQUIRE_PROMISE(rpath);
|
2021-09-05 17:51:37 +02:00
|
|
|
auto params = TRY(copy_typed_from_user(user_params));
|
2020-07-30 23:38:15 +02:00
|
|
|
|
|
|
|
auto path = get_syscall_path_argument(params.path);
|
|
|
|
if (path.is_error())
|
|
|
|
return path.error();
|
|
|
|
|
2021-07-11 00:25:24 +02:00
|
|
|
auto result = VirtualFileSystem::the().open(path.value()->view(), O_RDONLY | O_NOFOLLOW_NOERROR, 0, current_directory());
|
2020-07-30 23:38:15 +02:00
|
|
|
if (result.is_error())
|
|
|
|
return result.error();
|
|
|
|
auto description = result.value();
|
|
|
|
|
|
|
|
if (!description->metadata().is_symlink())
|
2021-03-01 13:49:16 +01:00
|
|
|
return EINVAL;
|
2020-07-30 23:38:15 +02:00
|
|
|
|
|
|
|
auto contents = description->read_entire_file();
|
|
|
|
if (contents.is_error())
|
|
|
|
return contents.error();
|
|
|
|
|
2020-12-18 14:10:10 +01:00
|
|
|
auto& link_target = *contents.value();
|
2020-07-30 23:38:15 +02:00
|
|
|
auto size_to_copy = min(link_target.size(), params.buffer.size);
|
2021-09-05 17:38:37 +02:00
|
|
|
TRY(copy_to_user(params.buffer.data, link_target.data(), size_to_copy));
|
2020-07-30 23:38:15 +02:00
|
|
|
// Note: we return the whole size here, not the copied size.
|
|
|
|
return link_target.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|