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