2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2021-12-10 02:22:16 +00:00
|
|
|
#include "Common/MemArena.h"
|
|
|
|
|
2021-06-20 23:17:07 +00:00
|
|
|
#include <cerrno>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdlib>
|
2021-06-20 23:17:07 +00:00
|
|
|
#include <cstring>
|
2013-10-19 22:58:02 +00:00
|
|
|
#include <set>
|
2014-02-20 03:11:52 +00:00
|
|
|
#include <string>
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2021-06-20 23:17:07 +00:00
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <linux/ashmem.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-04-14 10:53:32 +00:00
|
|
|
#include "Common/CommonFuncs.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2015-09-26 21:13:07 +00:00
|
|
|
#include "Common/Logging/Log.h"
|
|
|
|
#include "Common/MsgHandler.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2018-05-15 21:28:41 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2013-02-26 19:49:00 +00:00
|
|
|
#define ASHMEM_DEVICE "/dev/ashmem"
|
|
|
|
|
2016-01-21 19:46:25 +00:00
|
|
|
static int AshmemCreateFileMapping(const char* name, size_t size)
|
2013-02-26 19:49:00 +00:00
|
|
|
{
|
2020-07-16 16:42:15 +00:00
|
|
|
// ASharedMemory path - works on API >= 26 and falls through on API < 26:
|
|
|
|
|
|
|
|
// We can't call ASharedMemory_create the normal way without increasing the
|
|
|
|
// minimum version requirement to API 26, so we use dlopen/dlsym instead
|
|
|
|
static void* libandroid = dlopen("libandroid.so", RTLD_LAZY | RTLD_LOCAL);
|
|
|
|
static auto shared_memory_create =
|
|
|
|
reinterpret_cast<int (*)(const char*, size_t)>(dlsym(libandroid, "ASharedMemory_create"));
|
|
|
|
if (shared_memory_create)
|
|
|
|
return shared_memory_create(name, size);
|
|
|
|
|
|
|
|
// /dev/ashmem path - works on API < 29:
|
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
int fd, ret;
|
|
|
|
fd = open(ASHMEM_DEVICE, O_RDWR);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-10-29 05:09:01 +00:00
|
|
|
// We don't really care if we can't set the name, it is optional
|
2014-02-23 22:03:39 +00:00
|
|
|
ioctl(fd, ASHMEM_SET_NAME, name);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
ret = ioctl(fd, ASHMEM_SET_SIZE, size);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
close(fd);
|
2020-10-23 18:41:30 +00:00
|
|
|
NOTICE_LOG_FMT(MEMMAP, "Ashmem returned error: {:#010x}", ret);
|
2013-02-26 19:49:00 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2021-06-21 00:13:00 +00:00
|
|
|
MemArena::MemArena() = default;
|
|
|
|
MemArena::~MemArena() = default;
|
|
|
|
|
2014-11-01 20:30:14 +00:00
|
|
|
void MemArena::GrabSHMSegment(size_t size)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2017-10-11 15:17:25 +00:00
|
|
|
fd = AshmemCreateFileMapping(("dolphin-emu." + std::to_string(getpid())).c_str(), size);
|
2013-02-26 19:49:00 +00:00
|
|
|
if (fd < 0)
|
2020-10-23 18:41:30 +00:00
|
|
|
NOTICE_LOG_FMT(MEMMAP, "Ashmem allocation failed");
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2014-11-01 20:30:14 +00:00
|
|
|
void MemArena::ReleaseSHMSegment()
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
|
|
|
close(fd);
|
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2021-06-21 00:13:00 +00:00
|
|
|
void* MemArena::CreateView(s64 offset, size_t size)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2021-06-21 00:13:00 +00:00
|
|
|
return MapInMemoryRegion(offset, size, nullptr);
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
void MemArena::ReleaseView(void* view, size_t size)
|
|
|
|
{
|
2021-06-21 00:13:00 +00:00
|
|
|
UnmapFromMemoryRegion(view, size);
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
2008-12-08 05:30:24 +00:00
|
|
|
|
2021-06-21 00:13:00 +00:00
|
|
|
u8* MemArena::ReserveMemoryRegion(size_t memory_size)
|
2008-07-12 17:40:22 +00:00
|
|
|
{
|
2013-09-02 09:10:21 +00:00
|
|
|
// Android 4.3 changed how mmap works.
|
|
|
|
// if we map it private and then munmap it, we can't use the base returned.
|
2021-06-20 23:17:07 +00:00
|
|
|
// This may be due to changes in them to support a full SELinux implementation.
|
2013-09-30 01:53:32 +00:00
|
|
|
const int flags = MAP_ANON | MAP_SHARED;
|
2017-04-14 10:53:32 +00:00
|
|
|
void* base = mmap(nullptr, memory_size, PROT_NONE, flags, -1, 0);
|
2014-08-30 20:14:56 +00:00
|
|
|
if (base == MAP_FAILED)
|
|
|
|
{
|
2020-12-02 18:17:27 +00:00
|
|
|
PanicAlertFmt("Failed to map enough memory space: {}", LastStrerrorString());
|
2017-04-14 10:53:32 +00:00
|
|
|
return nullptr;
|
2008-09-17 08:08:22 +00:00
|
|
|
}
|
2017-04-14 10:53:32 +00:00
|
|
|
munmap(base, memory_size);
|
2008-09-17 07:58:17 +00:00
|
|
|
return static_cast<u8*>(base);
|
2008-07-12 17:40:22 +00:00
|
|
|
}
|
2021-06-21 00:13:00 +00:00
|
|
|
|
|
|
|
void MemArena::ReleaseMemoryRegion()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void* MemArena::MapInMemoryRegion(s64 offset, size_t size, void* base)
|
|
|
|
{
|
|
|
|
void* retval = mmap(base, size, PROT_READ | PROT_WRITE,
|
|
|
|
MAP_SHARED | ((base == nullptr) ? 0 : MAP_FIXED), fd, offset);
|
|
|
|
|
|
|
|
if (retval == MAP_FAILED)
|
|
|
|
{
|
|
|
|
NOTICE_LOG_FMT(MEMMAP, "mmap failed");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MemArena::UnmapFromMemoryRegion(void* view, size_t size)
|
|
|
|
{
|
|
|
|
munmap(view, size);
|
|
|
|
}
|
2018-05-15 21:28:41 +00:00
|
|
|
} // namespace Common
|