2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2021-01-10 15:55:54 +01:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2021-01-10 15:55:54 +01:00
|
|
|
#include <AK/ScopeGuard.h>
|
2023-01-14 19:57:29 -05:00
|
|
|
#include <LibCore/File.h>
|
2021-11-23 11:32:25 +01:00
|
|
|
#include <LibCore/MappedFile.h>
|
2021-11-23 11:36:00 +01:00
|
|
|
#include <LibCore/System.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <fcntl.h>
|
2018-10-10 11:53:07 +02:00
|
|
|
#include <sys/mman.h>
|
2019-04-03 13:51:49 +02:00
|
|
|
#include <unistd.h>
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2021-11-23 11:32:25 +01:00
|
|
|
namespace Core {
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2022-06-13 17:08:18 +02:00
|
|
|
ErrorOr<NonnullRefPtr<MappedFile>> MappedFile::map(StringView path)
|
2018-10-10 11:53:07 +02:00
|
|
|
{
|
2021-11-23 11:59:54 +01:00
|
|
|
auto fd = TRY(Core::System::open(path, O_RDONLY | O_CLOEXEC, 0));
|
2021-08-06 11:47:55 +10:00
|
|
|
return map_from_fd_and_close(fd, path);
|
|
|
|
}
|
|
|
|
|
2023-01-14 19:57:29 -05:00
|
|
|
ErrorOr<NonnullRefPtr<MappedFile>> MappedFile::map_from_file(NonnullOwnPtr<Core::File> stream, StringView path)
|
|
|
|
{
|
|
|
|
return map_from_fd_and_close(stream->leak_fd(Badge<MappedFile> {}), path);
|
|
|
|
}
|
|
|
|
|
2022-06-13 17:08:18 +02:00
|
|
|
ErrorOr<NonnullRefPtr<MappedFile>> MappedFile::map_from_fd_and_close(int fd, [[maybe_unused]] StringView path)
|
2021-08-06 11:47:55 +10:00
|
|
|
{
|
2021-11-23 11:36:00 +01:00
|
|
|
TRY(Core::System::fcntl(fd, F_SETFD, FD_CLOEXEC));
|
2021-08-06 11:47:55 +10:00
|
|
|
|
2021-01-10 15:55:54 +01:00
|
|
|
ScopeGuard fd_close_guard = [fd] {
|
|
|
|
close(fd);
|
|
|
|
};
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2021-11-23 11:36:00 +01:00
|
|
|
auto stat = TRY(Core::System::fstat(fd));
|
|
|
|
auto size = stat.st_size;
|
2019-08-05 15:26:56 +03:00
|
|
|
|
2021-11-23 11:51:46 +01:00
|
|
|
auto* ptr = TRY(Core::System::mmap(nullptr, size, PROT_READ, MAP_SHARED, fd, 0, 0, path));
|
2021-07-29 15:00:26 +02:00
|
|
|
|
2021-04-23 16:46:57 +02:00
|
|
|
return adopt_ref(*new MappedFile(ptr, size));
|
2018-10-10 11:53:07 +02:00
|
|
|
}
|
|
|
|
|
2021-01-10 15:55:54 +01:00
|
|
|
MappedFile::MappedFile(void* ptr, size_t size)
|
|
|
|
: m_data(ptr)
|
|
|
|
, m_size(size)
|
2018-10-10 11:53:07 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-01-10 15:55:54 +01:00
|
|
|
MappedFile::~MappedFile()
|
2019-04-03 13:51:49 +02:00
|
|
|
{
|
2022-11-20 06:53:14 +03:30
|
|
|
auto res = Core::System::munmap(m_data, m_size);
|
|
|
|
if (res.is_error())
|
|
|
|
dbgln("Failed to unmap MappedFile (@ {:p}): {}", m_data, res.error());
|
2019-04-03 13:51:49 +02:00
|
|
|
}
|
|
|
|
|
2018-10-10 11:53:07 +02:00
|
|
|
}
|