2020-01-18 05:38:21 -03:00
|
|
|
/*
|
2021-01-10 11:55:54 -03:00
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@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>
|
2020-07-30 19:13:15 -03:00
|
|
|
#include <AK/String.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>
|
2019-05-28 06:53:16 -03:00
|
|
|
#include <fcntl.h>
|
2018-10-10 06:53:07 -03:00
|
|
|
#include <sys/mman.h>
|
2019-04-03 08:51:49 -03:00
|
|
|
#include <unistd.h>
|
2018-10-10 06:53:07 -03:00
|
|
|
|
2021-11-23 07:32:25 -03:00
|
|
|
namespace Core {
|
2018-10-10 06:53:07 -03:00
|
|
|
|
2022-06-13 12:08:18 -03:00
|
|
|
ErrorOr<NonnullRefPtr<MappedFile>> MappedFile::map(StringView path)
|
2018-10-10 06:53:07 -03:00
|
|
|
{
|
2021-11-23 07:59:54 -03:00
|
|
|
auto fd = TRY(Core::System::open(path, O_RDONLY | O_CLOEXEC, 0));
|
2021-08-05 22:47:55 -03:00
|
|
|
return map_from_fd_and_close(fd, path);
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-13 12:08:18 -03:00
|
|
|
ErrorOr<NonnullRefPtr<MappedFile>> MappedFile::map_from_fd_and_close(int fd, [[maybe_unused]] StringView path)
|
2021-08-05 22:47:55 -03:00
|
|
|
{
|
2021-11-23 07:36:00 -03:00
|
|
|
TRY(Core::System::fcntl(fd, F_SETFD, FD_CLOEXEC));
|
2021-08-05 22:47:55 -03:00
|
|
|
|
2021-01-10 11:55:54 -03:00
|
|
|
ScopeGuard fd_close_guard = [fd] {
|
|
|
|
|
close(fd);
|
|
|
|
|
};
|
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
|
|
|
|
2021-11-23 07:51:46 -03:00
|
|
|
auto* ptr = TRY(Core::System::mmap(nullptr, size, PROT_READ, MAP_SHARED, fd, 0, 0, path));
|
2021-07-29 10:00:26 -03:00
|
|
|
|
2021-04-23 11:46:57 -03:00
|
|
|
return adopt_ref(*new MappedFile(ptr, size));
|
2018-10-10 06:53:07 -03:00
|
|
|
}
|
|
|
|
|
|
2021-01-10 11:55:54 -03:00
|
|
|
MappedFile::MappedFile(void* ptr, size_t size)
|
|
|
|
|
: m_data(ptr)
|
|
|
|
|
, 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
|
|
|
{
|
2021-11-23 07:51:46 -03:00
|
|
|
MUST(Core::System::munmap(m_data, m_size));
|
2019-04-03 08:51:49 -03:00
|
|
|
}
|
|
|
|
|
|
2018-10-10 06:53:07 -03:00
|
|
|
}
|