2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <andreas@ladybird.org>
|
2023-09-12 20:21:23 +02:00
|
|
|
* Copyright (c) 2023, kleines Filmröllchen <filmroellchen@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>
|
2018-10-10 11:53:07 +02:00
|
|
|
#include <sys/mman.h>
|
|
|
|
|
2021-11-23 11:32:25 +01:00
|
|
|
namespace Core {
|
2018-10-10 11:53:07 +02:00
|
|
|
|
2023-11-05 15:31:17 -05:00
|
|
|
ErrorOr<NonnullOwnPtr<MappedFile>> MappedFile::map(StringView path, Mode mode)
|
2018-10-10 11:53:07 +02:00
|
|
|
{
|
2023-11-05 15:31:17 -05:00
|
|
|
auto const file_mode = mode == Mode::ReadOnly ? O_RDONLY : O_RDWR;
|
2023-09-12 20:21:23 +02:00
|
|
|
auto fd = TRY(Core::System::open(path, file_mode | O_CLOEXEC, 0));
|
|
|
|
return map_from_fd_and_close(fd, path, mode);
|
2021-08-06 11:47:55 +10:00
|
|
|
}
|
|
|
|
|
2023-09-26 00:54:34 +02:00
|
|
|
ErrorOr<NonnullOwnPtr<MappedFile>> MappedFile::map_from_file(NonnullOwnPtr<Core::File> stream, StringView path)
|
2023-01-14 19:57:29 -05:00
|
|
|
{
|
2025-06-13 18:19:04 -05:00
|
|
|
return map_from_fd_and_close(stream->leak_fd(), path);
|
2023-01-14 19:57:29 -05:00
|
|
|
}
|
|
|
|
|
2023-11-05 15:31:17 -05:00
|
|
|
ErrorOr<NonnullOwnPtr<MappedFile>> MappedFile::map_from_fd_and_close(int fd, [[maybe_unused]] StringView path, Mode mode)
|
2021-08-06 11:47:55 +10:00
|
|
|
{
|
2021-01-10 15:55:54 +01:00
|
|
|
ScopeGuard fd_close_guard = [fd] {
|
2024-11-16 11:55:19 +05:00
|
|
|
(void)System::close(fd);
|
2021-01-10 15:55:54 +01:00
|
|
|
};
|
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
|
|
|
|
2023-09-12 20:21:23 +02:00
|
|
|
int protection;
|
|
|
|
int flags;
|
|
|
|
switch (mode) {
|
2023-11-05 15:31:17 -05:00
|
|
|
case Mode::ReadOnly:
|
2023-09-12 20:21:23 +02:00
|
|
|
protection = PROT_READ;
|
|
|
|
flags = MAP_SHARED;
|
|
|
|
break;
|
2023-11-05 15:31:17 -05:00
|
|
|
case Mode::ReadWrite:
|
2023-09-12 20:21:23 +02:00
|
|
|
protection = PROT_READ | PROT_WRITE;
|
|
|
|
// Don't map a read-write mapping shared as a precaution.
|
|
|
|
flags = MAP_PRIVATE;
|
|
|
|
break;
|
|
|
|
}
|
2021-07-29 15:00:26 +02:00
|
|
|
|
2023-09-12 20:21:23 +02:00
|
|
|
auto* ptr = TRY(Core::System::mmap(nullptr, size, protection, flags, fd, 0, 0, path));
|
|
|
|
|
|
|
|
return adopt_own(*new MappedFile(ptr, size, mode));
|
2018-10-10 11:53:07 +02:00
|
|
|
}
|
|
|
|
|
2023-11-05 15:31:17 -05:00
|
|
|
MappedFile::MappedFile(void* ptr, size_t size, Mode mode)
|
|
|
|
: FixedMemoryStream(Bytes { ptr, size }, mode)
|
2023-09-12 20:21:23 +02:00
|
|
|
, m_data(ptr)
|
2021-01-10 15:55:54 +01:00
|
|
|
, 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
|
|
|
}
|