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/Custody.h>
|
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
|
|
|
#include <Kernel/Process.h>
|
|
|
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
2021-06-28 20:59:35 +02:00
|
|
|
KResultOr<FlatPtr> Process::sys$realpath(Userspace<const Syscall::SC_realpath_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
|
|
|
|
2021-09-05 17:59:38 +02:00
|
|
|
auto path = TRY(get_syscall_path_argument(params.path));
|
|
|
|
|
auto custody = TRY(VirtualFileSystem::the().resolve_path(path->view(), current_directory()));
|
2020-07-30 23:38:15 +02:00
|
|
|
|
2021-07-06 12:58:03 +02:00
|
|
|
auto absolute_path = custody->try_create_absolute_path();
|
|
|
|
|
if (!absolute_path)
|
|
|
|
|
return ENOMEM;
|
2020-07-30 23:38:15 +02:00
|
|
|
|
2021-07-06 12:58:03 +02:00
|
|
|
size_t ideal_size = absolute_path->length() + 1;
|
2021-01-15 22:29:40 +01:00
|
|
|
auto size_to_copy = min(ideal_size, params.buffer.size);
|
2021-09-05 17:38:37 +02:00
|
|
|
TRY(copy_to_user(params.buffer.data, absolute_path->characters(), size_to_copy));
|
2021-01-15 22:29:40 +01:00
|
|
|
// Note: we return the whole size here, not the copied size.
|
|
|
|
|
return ideal_size;
|
2020-07-30 23:38:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|