2003-05-13 02:25:15 +02:00
|
|
|
/*
|
|
|
|
* mmap support for qemu
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2003-05-13 02:25:15 +02:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-07-16 22:47:01 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2003-05-13 02:25:15 +02:00
|
|
|
*/
|
2016-01-26 19:17:02 +01:00
|
|
|
#include "qemu/osdep.h"
|
2023-08-20 18:24:14 +02:00
|
|
|
#include <sys/shm.h>
|
2019-12-05 13:25:12 +01:00
|
|
|
#include "trace.h"
|
2019-12-05 13:25:15 +01:00
|
|
|
#include "exec/log.h"
|
2003-05-13 02:25:15 +02:00
|
|
|
#include "qemu.h"
|
2021-09-08 17:44:03 +02:00
|
|
|
#include "user-internals.h"
|
2021-09-08 17:44:01 +02:00
|
|
|
#include "user-mmap.h"
|
2022-09-06 02:08:36 +02:00
|
|
|
#include "target_mman.h"
|
2023-08-20 22:39:37 +02:00
|
|
|
#include "qemu/interval-tree.h"
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2009-09-05 12:14:07 +02:00
|
|
|
static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER;
|
2009-09-23 01:19:03 +02:00
|
|
|
static __thread int mmap_lock_count;
|
2008-06-02 18:16:42 +02:00
|
|
|
|
|
|
|
void mmap_lock(void)
|
|
|
|
{
|
|
|
|
if (mmap_lock_count++ == 0) {
|
|
|
|
pthread_mutex_lock(&mmap_mutex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void mmap_unlock(void)
|
|
|
|
{
|
2023-07-17 20:58:58 +02:00
|
|
|
assert(mmap_lock_count > 0);
|
2008-06-02 18:16:42 +02:00
|
|
|
if (--mmap_lock_count == 0) {
|
|
|
|
pthread_mutex_unlock(&mmap_mutex);
|
|
|
|
}
|
|
|
|
}
|
2008-06-07 22:50:51 +02:00
|
|
|
|
2016-10-27 17:10:00 +02:00
|
|
|
bool have_mmap_lock(void)
|
|
|
|
{
|
|
|
|
return mmap_lock_count > 0 ? true : false;
|
|
|
|
}
|
|
|
|
|
2008-06-07 22:50:51 +02:00
|
|
|
/* Grab lock to make sure things are in a consistent state after fork(). */
|
|
|
|
void mmap_fork_start(void)
|
|
|
|
{
|
|
|
|
if (mmap_lock_count)
|
|
|
|
abort();
|
|
|
|
pthread_mutex_lock(&mmap_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
void mmap_fork_end(int child)
|
|
|
|
{
|
2023-07-07 22:40:32 +02:00
|
|
|
if (child) {
|
2008-06-07 22:50:51 +02:00
|
|
|
pthread_mutex_init(&mmap_mutex, NULL);
|
2023-07-07 22:40:32 +02:00
|
|
|
} else {
|
2008-06-07 22:50:51 +02:00
|
|
|
pthread_mutex_unlock(&mmap_mutex);
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2008-06-07 22:50:51 +02:00
|
|
|
}
|
2008-06-02 18:16:42 +02:00
|
|
|
|
2023-08-20 22:39:37 +02:00
|
|
|
/* Protected by mmap_lock. */
|
|
|
|
static IntervalTreeRoot shm_regions;
|
|
|
|
|
|
|
|
static void shm_region_add(abi_ptr start, abi_ptr last)
|
|
|
|
{
|
|
|
|
IntervalTreeNode *i = g_new0(IntervalTreeNode, 1);
|
|
|
|
|
|
|
|
i->start = start;
|
|
|
|
i->last = last;
|
|
|
|
interval_tree_insert(i, &shm_regions);
|
|
|
|
}
|
|
|
|
|
|
|
|
static abi_ptr shm_region_find(abi_ptr start)
|
|
|
|
{
|
|
|
|
IntervalTreeNode *i;
|
|
|
|
|
|
|
|
for (i = interval_tree_iter_first(&shm_regions, start, start); i;
|
|
|
|
i = interval_tree_iter_next(i, start, start)) {
|
|
|
|
if (i->start == start) {
|
|
|
|
return i->last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void shm_region_rm_complete(abi_ptr start, abi_ptr last)
|
|
|
|
{
|
|
|
|
IntervalTreeNode *i, *n;
|
|
|
|
|
|
|
|
for (i = interval_tree_iter_first(&shm_regions, start, last); i; i = n) {
|
|
|
|
n = interval_tree_iter_next(i, start, last);
|
|
|
|
if (i->start >= start && i->last <= last) {
|
|
|
|
interval_tree_remove(i, &shm_regions);
|
|
|
|
g_free(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 20:56:44 +02:00
|
|
|
/*
|
|
|
|
* Validate target prot bitmask.
|
|
|
|
* Return the prot bitmask for the host in *HOST_PROT.
|
|
|
|
* Return 0 if the target prot bitmask is invalid, otherwise
|
|
|
|
* the internal qemu page_flags (which will include PAGE_VALID).
|
|
|
|
*/
|
2023-07-07 22:40:40 +02:00
|
|
|
static int validate_prot_to_pageflags(int prot)
|
2020-05-19 20:56:44 +02:00
|
|
|
{
|
|
|
|
int valid = PROT_READ | PROT_WRITE | PROT_EXEC | TARGET_PROT_SEM;
|
|
|
|
int page_flags = (prot & PAGE_BITS) | PAGE_VALID;
|
|
|
|
|
2020-10-21 19:37:39 +02:00
|
|
|
#ifdef TARGET_AARCH64
|
2021-02-12 19:48:55 +01:00
|
|
|
{
|
2020-10-21 19:37:39 +02:00
|
|
|
ARMCPU *cpu = ARM_CPU(thread_cpu);
|
2021-02-12 19:48:55 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The PROT_BTI bit is only accepted if the cpu supports the feature.
|
|
|
|
* Since this is the unusual case, don't bother checking unless
|
|
|
|
* the bit has been requested. If set and valid, record the bit
|
|
|
|
* within QEMU's page_flags.
|
|
|
|
*/
|
|
|
|
if ((prot & TARGET_PROT_BTI) && cpu_isar_feature(aa64_bti, cpu)) {
|
2020-10-21 19:37:39 +02:00
|
|
|
valid |= TARGET_PROT_BTI;
|
|
|
|
page_flags |= PAGE_BTI;
|
|
|
|
}
|
2021-02-12 19:48:55 +01:00
|
|
|
/* Similarly for the PROT_MTE bit. */
|
|
|
|
if ((prot & TARGET_PROT_MTE) && cpu_isar_feature(aa64_mte, cpu)) {
|
|
|
|
valid |= TARGET_PROT_MTE;
|
|
|
|
page_flags |= PAGE_MTE;
|
|
|
|
}
|
2020-10-21 19:37:39 +02:00
|
|
|
}
|
2022-09-24 13:45:00 +02:00
|
|
|
#elif defined(TARGET_HPPA)
|
|
|
|
valid |= PROT_GROWSDOWN | PROT_GROWSUP;
|
2020-10-21 19:37:39 +02:00
|
|
|
#endif
|
|
|
|
|
2020-05-19 20:56:44 +02:00
|
|
|
return prot & ~valid ? 0 : page_flags;
|
|
|
|
}
|
|
|
|
|
2023-07-07 22:40:40 +02:00
|
|
|
/*
|
|
|
|
* For the host, we need not pass anything except read/write/exec.
|
|
|
|
* While PROT_SEM is allowed by all hosts, it is also ignored, so
|
|
|
|
* don't bother transforming guest bit to host bit. Any other
|
|
|
|
* target-specific prot bits will not be understood by the host
|
|
|
|
* and will need to be encoded into page_flags for qemu emulation.
|
|
|
|
*
|
|
|
|
* Pages that are executable by the guest will never be executed
|
|
|
|
* by the host, but the host will need to be able to read them.
|
|
|
|
*/
|
|
|
|
static int target_to_host_prot(int prot)
|
|
|
|
{
|
|
|
|
return (prot & (PROT_READ | PROT_WRITE)) |
|
|
|
|
(prot & PROT_EXEC ? PROT_READ : 0);
|
|
|
|
}
|
|
|
|
|
2006-03-25 20:31:22 +01:00
|
|
|
/* NOTE: all the constants are the HOST ones, but addresses are target. */
|
2020-05-19 20:56:44 +02:00
|
|
|
int target_mprotect(abi_ulong start, abi_ulong len, int target_prot)
|
2003-05-13 02:25:15 +02:00
|
|
|
{
|
2023-07-07 22:40:42 +02:00
|
|
|
abi_ulong starts[3];
|
|
|
|
abi_ulong lens[3];
|
|
|
|
int prots[3];
|
|
|
|
abi_ulong host_start, host_last, last;
|
|
|
|
int prot1, ret, page_flags, nranges;
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2020-05-19 20:56:44 +02:00
|
|
|
trace_target_mprotect(start, len, target_prot);
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2020-05-19 20:56:44 +02:00
|
|
|
if ((start & ~TARGET_PAGE_MASK) != 0) {
|
2018-02-28 23:16:05 +01:00
|
|
|
return -TARGET_EINVAL;
|
2020-05-19 20:56:44 +02:00
|
|
|
}
|
2023-07-07 22:40:40 +02:00
|
|
|
page_flags = validate_prot_to_pageflags(target_prot);
|
2020-05-19 20:56:44 +02:00
|
|
|
if (!page_flags) {
|
|
|
|
return -TARGET_EINVAL;
|
|
|
|
}
|
2023-07-07 22:40:42 +02:00
|
|
|
if (len == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
len = TARGET_PAGE_ALIGN(len);
|
2021-02-12 19:48:46 +01:00
|
|
|
if (!guest_range_valid_untagged(start, len)) {
|
2018-02-28 23:16:05 +01:00
|
|
|
return -TARGET_ENOMEM;
|
2018-03-07 22:50:10 +01:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2023-07-07 22:40:42 +02:00
|
|
|
last = start + len - 1;
|
2004-07-05 23:25:26 +02:00
|
|
|
host_start = start & qemu_host_page_mask;
|
2023-07-07 22:40:42 +02:00
|
|
|
host_last = HOST_PAGE_ALIGN(last) - 1;
|
|
|
|
nranges = 0;
|
|
|
|
|
|
|
|
mmap_lock();
|
|
|
|
|
|
|
|
if (host_last - host_start < qemu_host_page_size) {
|
|
|
|
/* Single host page contains all guest pages: sum the prot. */
|
2023-07-07 22:40:40 +02:00
|
|
|
prot1 = target_prot;
|
2023-07-07 22:40:42 +02:00
|
|
|
for (abi_ulong a = host_start; a < start; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot1 |= page_get_flags(a);
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2023-07-07 22:40:42 +02:00
|
|
|
for (abi_ulong a = last; a < host_last; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot1 |= page_get_flags(a + 1);
|
2003-05-13 02:57:50 +02:00
|
|
|
}
|
2023-07-07 22:40:42 +02:00
|
|
|
starts[nranges] = host_start;
|
|
|
|
lens[nranges] = qemu_host_page_size;
|
|
|
|
prots[nranges] = prot1;
|
|
|
|
nranges++;
|
|
|
|
} else {
|
|
|
|
if (host_start < start) {
|
|
|
|
/* Host page contains more than one guest page: sum the prot. */
|
|
|
|
prot1 = target_prot;
|
|
|
|
for (abi_ulong a = host_start; a < start; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot1 |= page_get_flags(a);
|
|
|
|
}
|
|
|
|
/* If the resulting sum differs, create a new range. */
|
|
|
|
if (prot1 != target_prot) {
|
|
|
|
starts[nranges] = host_start;
|
|
|
|
lens[nranges] = qemu_host_page_size;
|
|
|
|
prots[nranges] = prot1;
|
|
|
|
nranges++;
|
|
|
|
host_start += qemu_host_page_size;
|
|
|
|
}
|
2020-05-19 20:56:44 +02:00
|
|
|
}
|
2023-07-07 22:40:42 +02:00
|
|
|
|
|
|
|
if (last < host_last) {
|
|
|
|
/* Host page contains more than one guest page: sum the prot. */
|
|
|
|
prot1 = target_prot;
|
|
|
|
for (abi_ulong a = last; a < host_last; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot1 |= page_get_flags(a + 1);
|
|
|
|
}
|
|
|
|
/* If the resulting sum differs, create a new range. */
|
|
|
|
if (prot1 != target_prot) {
|
|
|
|
host_last -= qemu_host_page_size;
|
|
|
|
starts[nranges] = host_last + 1;
|
|
|
|
lens[nranges] = qemu_host_page_size;
|
|
|
|
prots[nranges] = prot1;
|
|
|
|
nranges++;
|
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2023-07-07 22:40:42 +02:00
|
|
|
|
|
|
|
/* Create a range for the middle, if any remains. */
|
|
|
|
if (host_start < host_last) {
|
|
|
|
starts[nranges] = host_start;
|
|
|
|
lens[nranges] = host_last - host_start + 1;
|
|
|
|
prots[nranges] = target_prot;
|
|
|
|
nranges++;
|
2020-05-19 20:56:44 +02:00
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2023-07-07 22:40:42 +02:00
|
|
|
for (int i = 0; i < nranges; ++i) {
|
|
|
|
ret = mprotect(g2h_untagged(starts[i]), lens[i],
|
|
|
|
target_to_host_prot(prots[i]));
|
2020-05-19 20:56:44 +02:00
|
|
|
if (ret != 0) {
|
2008-06-02 18:16:42 +02:00
|
|
|
goto error;
|
2020-05-19 20:56:44 +02:00
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2022-08-17 17:05:03 +02:00
|
|
|
|
2023-07-07 22:40:42 +02:00
|
|
|
page_set_flags(start, last, page_flags);
|
2022-08-17 17:05:03 +02:00
|
|
|
ret = 0;
|
|
|
|
|
2023-07-07 22:40:42 +02:00
|
|
|
error:
|
2008-06-02 18:16:42 +02:00
|
|
|
mmap_unlock();
|
|
|
|
return ret;
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* map an incomplete host page */
|
2023-07-07 22:40:43 +02:00
|
|
|
static bool mmap_frag(abi_ulong real_start, abi_ulong start, abi_ulong last,
|
|
|
|
int prot, int flags, int fd, off_t offset)
|
2003-05-13 02:25:15 +02:00
|
|
|
{
|
2023-07-07 22:40:43 +02:00
|
|
|
abi_ulong real_last;
|
2006-03-25 20:31:22 +01:00
|
|
|
void *host_start;
|
2023-07-07 22:40:43 +02:00
|
|
|
int prot_old, prot_new;
|
|
|
|
int host_prot_old, host_prot_new;
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2023-07-07 22:40:43 +02:00
|
|
|
if (!(flags & MAP_ANONYMOUS)
|
|
|
|
&& (flags & MAP_TYPE) == MAP_SHARED
|
|
|
|
&& (prot & PROT_WRITE)) {
|
|
|
|
/*
|
|
|
|
* msync() won't work with the partial page, so we return an
|
|
|
|
* error if write is possible while it is a shared mapping.
|
|
|
|
*/
|
|
|
|
errno = EINVAL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
real_last = real_start + qemu_host_page_size - 1;
|
2021-02-12 19:48:43 +01:00
|
|
|
host_start = g2h_untagged(real_start);
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2023-07-07 22:40:43 +02:00
|
|
|
/* Get the protection of the target pages outside the mapping. */
|
|
|
|
prot_old = 0;
|
|
|
|
for (abi_ulong a = real_start; a < start; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot_old |= page_get_flags(a);
|
|
|
|
}
|
|
|
|
for (abi_ulong a = real_last; a > last; a -= TARGET_PAGE_SIZE) {
|
|
|
|
prot_old |= page_get_flags(a);
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2023-07-07 22:40:43 +02:00
|
|
|
if (prot_old == 0) {
|
|
|
|
/*
|
|
|
|
* Since !(prot_old & PAGE_VALID), there were no guest pages
|
|
|
|
* outside of the fragment we need to map. Allocate a new host
|
|
|
|
* page to cover, discarding whatever else may have been present.
|
|
|
|
*/
|
2023-07-07 22:40:40 +02:00
|
|
|
void *p = mmap(host_start, qemu_host_page_size,
|
|
|
|
target_to_host_prot(prot),
|
2007-11-02 20:08:57 +01:00
|
|
|
flags | MAP_ANONYMOUS, -1, 0);
|
2023-08-02 09:17:48 +02:00
|
|
|
if (p != host_start) {
|
|
|
|
if (p != MAP_FAILED) {
|
|
|
|
munmap(p, qemu_host_page_size);
|
|
|
|
errno = EEXIST;
|
|
|
|
}
|
2023-07-07 22:40:43 +02:00
|
|
|
return false;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2023-07-07 22:40:43 +02:00
|
|
|
prot_old = prot;
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2023-07-07 22:40:43 +02:00
|
|
|
prot_new = prot | prot_old;
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2023-07-07 22:40:43 +02:00
|
|
|
host_prot_old = target_to_host_prot(prot_old);
|
|
|
|
host_prot_new = target_to_host_prot(prot_new);
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2023-07-07 22:40:43 +02:00
|
|
|
/* Adjust protection to be able to write. */
|
|
|
|
if (!(host_prot_old & PROT_WRITE)) {
|
|
|
|
host_prot_old |= PROT_WRITE;
|
|
|
|
mprotect(host_start, qemu_host_page_size, host_prot_old);
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2023-07-07 22:40:43 +02:00
|
|
|
/* Read or zero the new guest pages. */
|
|
|
|
if (flags & MAP_ANONYMOUS) {
|
|
|
|
memset(g2h_untagged(start), 0, last - start + 1);
|
2003-05-13 02:25:15 +02:00
|
|
|
} else {
|
2023-07-07 22:40:43 +02:00
|
|
|
if (pread(fd, g2h_untagged(start), last - start + 1, offset) == -1) {
|
|
|
|
return false;
|
2015-12-30 02:10:54 +01:00
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2023-07-07 22:40:43 +02:00
|
|
|
|
|
|
|
/* Put final protection */
|
|
|
|
if (host_prot_new != host_prot_old) {
|
|
|
|
mprotect(host_start, qemu_host_page_size, host_prot_new);
|
|
|
|
}
|
|
|
|
return true;
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
|
|
|
|
2023-08-02 23:25:27 +02:00
|
|
|
abi_ulong task_unmapped_base;
|
2023-08-03 00:17:33 +02:00
|
|
|
abi_ulong elf_et_dyn_base;
|
2023-08-02 23:25:27 +02:00
|
|
|
abi_ulong mmap_next_start;
|
2007-11-14 12:29:07 +01:00
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* Subroutine of mmap_find_vma, used when we have pre-allocated
|
|
|
|
* a chunk of guest address space.
|
|
|
|
*/
|
2019-05-19 22:19:52 +02:00
|
|
|
static abi_ulong mmap_find_vma_reserved(abi_ulong start, abi_ulong size,
|
|
|
|
abi_ulong align)
|
2010-05-29 03:27:35 +02:00
|
|
|
{
|
2023-07-07 22:40:46 +02:00
|
|
|
target_ulong ret;
|
2010-05-29 03:27:35 +02:00
|
|
|
|
2023-07-07 22:40:46 +02:00
|
|
|
ret = page_find_range_empty(start, reserved_va, size, align);
|
|
|
|
if (ret == -1 && start > mmap_min_addr) {
|
|
|
|
/* Restart at the beginning of the address space. */
|
|
|
|
ret = page_find_range_empty(mmap_min_addr, start - 1, size, align);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
|
|
|
|
2023-07-07 22:40:46 +02:00
|
|
|
return ret;
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
|
|
|
|
2009-08-13 20:03:58 +02:00
|
|
|
/*
|
|
|
|
* Find and reserve a free memory area of size 'size'. The search
|
|
|
|
* starts at 'start'.
|
|
|
|
* It must be called with mmap_lock() held.
|
|
|
|
* Return -1 if error.
|
|
|
|
*/
|
2019-05-19 22:19:52 +02:00
|
|
|
abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size, abi_ulong align)
|
2007-11-14 12:29:07 +01:00
|
|
|
{
|
2010-03-11 00:39:07 +01:00
|
|
|
void *ptr, *prev;
|
2009-08-13 20:03:58 +02:00
|
|
|
abi_ulong addr;
|
2010-03-11 00:39:07 +01:00
|
|
|
int wrapped, repeat;
|
2009-08-13 20:03:58 +02:00
|
|
|
|
2019-05-19 22:19:53 +02:00
|
|
|
align = MAX(align, qemu_host_page_size);
|
|
|
|
|
2009-08-13 20:03:58 +02:00
|
|
|
/* If 'start' == 0, then a default start address is used. */
|
2010-03-11 00:39:07 +01:00
|
|
|
if (start == 0) {
|
2009-08-13 20:03:58 +02:00
|
|
|
start = mmap_next_start;
|
2010-03-11 00:39:07 +01:00
|
|
|
} else {
|
|
|
|
start &= qemu_host_page_mask;
|
|
|
|
}
|
2019-05-19 22:19:52 +02:00
|
|
|
start = ROUND_UP(start, align);
|
2010-03-11 00:39:07 +01:00
|
|
|
|
|
|
|
size = HOST_PAGE_ALIGN(size);
|
2009-08-13 20:03:58 +02:00
|
|
|
|
2015-08-24 14:53:54 +02:00
|
|
|
if (reserved_va) {
|
2019-05-19 22:19:52 +02:00
|
|
|
return mmap_find_vma_reserved(start, size, align);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
|
|
|
|
2007-11-14 12:29:07 +01:00
|
|
|
addr = start;
|
2010-03-11 00:39:07 +01:00
|
|
|
wrapped = repeat = 0;
|
|
|
|
prev = 0;
|
2009-08-13 20:03:58 +02:00
|
|
|
|
2010-03-11 00:39:07 +01:00
|
|
|
for (;; prev = ptr) {
|
2009-08-13 20:03:58 +02:00
|
|
|
/*
|
|
|
|
* Reserve needed memory area to avoid a race.
|
|
|
|
* It should be discarded using:
|
|
|
|
* - mmap() with MAP_FIXED flag
|
|
|
|
* - mremap() with MREMAP_FIXED flag
|
|
|
|
* - shmat() with SHM_REMAP flag
|
|
|
|
*/
|
2021-02-12 19:48:43 +01:00
|
|
|
ptr = mmap(g2h_untagged(addr), size, PROT_NONE,
|
2023-07-07 22:40:32 +02:00
|
|
|
MAP_ANONYMOUS | MAP_PRIVATE | MAP_NORESERVE, -1, 0);
|
2009-08-13 20:03:58 +02:00
|
|
|
|
|
|
|
/* ENOMEM, if host address space has no memory */
|
2010-03-11 00:39:07 +01:00
|
|
|
if (ptr == MAP_FAILED) {
|
2009-08-13 20:03:58 +02:00
|
|
|
return (abi_ulong)-1;
|
2010-03-11 00:39:07 +01:00
|
|
|
}
|
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* Count the number of sequential returns of the same address.
|
|
|
|
* This is used to modify the search algorithm below.
|
|
|
|
*/
|
2010-03-11 00:39:07 +01:00
|
|
|
repeat = (ptr == prev ? repeat + 1 : 0);
|
|
|
|
|
|
|
|
if (h2g_valid(ptr + size - 1)) {
|
|
|
|
addr = h2g(ptr);
|
2009-08-13 20:03:58 +02:00
|
|
|
|
2019-05-19 22:19:52 +02:00
|
|
|
if ((addr & (align - 1)) == 0) {
|
2010-03-11 00:39:07 +01:00
|
|
|
/* Success. */
|
2023-08-02 23:25:27 +02:00
|
|
|
if (start == mmap_next_start && addr >= task_unmapped_base) {
|
2010-03-11 00:39:07 +01:00
|
|
|
mmap_next_start = addr + size;
|
|
|
|
}
|
|
|
|
return addr;
|
|
|
|
}
|
2009-08-13 20:03:58 +02:00
|
|
|
|
2010-03-11 00:39:07 +01:00
|
|
|
/* The address is not properly aligned for the target. */
|
|
|
|
switch (repeat) {
|
|
|
|
case 0:
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* Assume the result that the kernel gave us is the
|
|
|
|
* first with enough free space, so start again at the
|
|
|
|
* next higher target page.
|
|
|
|
*/
|
2019-05-19 22:19:52 +02:00
|
|
|
addr = ROUND_UP(addr, align);
|
2010-03-11 00:39:07 +01:00
|
|
|
break;
|
|
|
|
case 1:
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* Sometimes the kernel decides to perform the allocation
|
|
|
|
* at the top end of memory instead.
|
|
|
|
*/
|
2019-05-19 22:19:52 +02:00
|
|
|
addr &= -align;
|
2010-03-11 00:39:07 +01:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* Start over at low memory. */
|
|
|
|
addr = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Fail. This unaligned block must the last. */
|
|
|
|
addr = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* Since the result the kernel gave didn't fit, start
|
|
|
|
* again at low memory. If any repetition, fail.
|
|
|
|
*/
|
2010-03-11 00:39:07 +01:00
|
|
|
addr = (repeat ? -1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unmap and try again. */
|
2009-08-13 20:03:58 +02:00
|
|
|
munmap(ptr, size);
|
|
|
|
|
2010-03-11 00:39:07 +01:00
|
|
|
/* ENOMEM if we checked the whole of the target address space. */
|
2010-09-18 07:53:14 +02:00
|
|
|
if (addr == (abi_ulong)-1) {
|
2007-11-14 12:29:07 +01:00
|
|
|
return (abi_ulong)-1;
|
2010-03-11 00:39:07 +01:00
|
|
|
} else if (addr == 0) {
|
|
|
|
if (wrapped) {
|
|
|
|
return (abi_ulong)-1;
|
|
|
|
}
|
|
|
|
wrapped = 1;
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* Don't actually use 0 when wrapping, instead indicate
|
|
|
|
* that we'd truly like an allocation in low memory.
|
|
|
|
*/
|
2010-03-11 00:39:07 +01:00
|
|
|
addr = (mmap_min_addr > TARGET_PAGE_SIZE
|
|
|
|
? TARGET_PAGE_ALIGN(mmap_min_addr)
|
|
|
|
: TARGET_PAGE_SIZE);
|
|
|
|
} else if (wrapped && addr >= start) {
|
|
|
|
return (abi_ulong)-1;
|
|
|
|
}
|
2007-11-14 12:29:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-13 02:25:15 +02:00
|
|
|
/* NOTE: all the constants are the HOST ones */
|
2020-05-19 20:56:44 +02:00
|
|
|
abi_long target_mmap(abi_ulong start, abi_ulong len, int target_prot,
|
2023-07-07 22:40:41 +02:00
|
|
|
int flags, int fd, off_t offset)
|
2003-05-13 02:25:15 +02:00
|
|
|
{
|
2023-07-07 22:40:47 +02:00
|
|
|
abi_ulong ret, last, real_start, real_last, retaddr, host_len;
|
|
|
|
abi_ulong passthrough_start = -1, passthrough_last = 0;
|
2023-07-07 22:40:40 +02:00
|
|
|
int page_flags;
|
2023-07-07 22:40:41 +02:00
|
|
|
off_t host_offset;
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2008-06-02 18:16:42 +02:00
|
|
|
mmap_lock();
|
2020-05-19 20:56:44 +02:00
|
|
|
trace_target_mmap(start, len, target_prot, flags, fd, offset);
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2018-07-30 15:43:20 +02:00
|
|
|
if (!len) {
|
2006-02-04 21:46:24 +01:00
|
|
|
errno = EINVAL;
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2006-02-04 21:46:24 +01:00
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2023-07-07 22:40:40 +02:00
|
|
|
page_flags = validate_prot_to_pageflags(target_prot);
|
2020-05-19 20:56:44 +02:00
|
|
|
if (!page_flags) {
|
|
|
|
errno = EINVAL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2018-07-30 15:43:20 +02:00
|
|
|
/* Also check for overflows... */
|
2003-05-13 02:25:15 +02:00
|
|
|
len = TARGET_PAGE_ALIGN(len);
|
2018-07-30 15:43:20 +02:00
|
|
|
if (!len) {
|
|
|
|
errno = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offset & ~TARGET_PAGE_MASK) {
|
|
|
|
errno = EINVAL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2021-06-12 08:08:28 +02:00
|
|
|
/*
|
|
|
|
* If we're mapping shared memory, ensure we generate code for parallel
|
|
|
|
* execution and flush old translations. This will work up to the level
|
|
|
|
* supported by the host -- anything that requires EXCP_ATOMIC will not
|
|
|
|
* be atomic with respect to an external process.
|
|
|
|
*/
|
|
|
|
if (flags & MAP_SHARED) {
|
|
|
|
CPUState *cpu = thread_cpu;
|
|
|
|
if (!(cpu->tcg_cflags & CF_PARALLEL)) {
|
|
|
|
cpu->tcg_cflags |= CF_PARALLEL;
|
|
|
|
tb_flush(cpu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-25 20:31:22 +01:00
|
|
|
real_start = start & qemu_host_page_mask;
|
2012-06-02 01:07:52 +02:00
|
|
|
host_offset = offset & qemu_host_page_mask;
|
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* If the user is asking for the kernel to find a location, do that
|
|
|
|
* before we truncate the length for mapping files below.
|
|
|
|
*/
|
2023-07-07 22:40:39 +02:00
|
|
|
if (!(flags & (MAP_FIXED | MAP_FIXED_NOREPLACE))) {
|
2012-06-02 01:07:52 +02:00
|
|
|
host_len = len + offset - host_offset;
|
|
|
|
host_len = HOST_PAGE_ALIGN(host_len);
|
2019-05-19 22:19:52 +02:00
|
|
|
start = mmap_find_vma(real_start, host_len, TARGET_PAGE_SIZE);
|
2012-06-02 01:07:52 +02:00
|
|
|
if (start == (abi_ulong)-1) {
|
|
|
|
errno = ENOMEM;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* When mapping files into a memory area larger than the file, accesses
|
|
|
|
* to pages beyond the file size will cause a SIGBUS.
|
|
|
|
*
|
|
|
|
* For example, if mmaping a file of 100 bytes on a host with 4K pages
|
|
|
|
* emulating a target with 8K pages, the target expects to be able to
|
|
|
|
* access the first 8K. But the host will trap us on any access beyond
|
|
|
|
* 4K.
|
|
|
|
*
|
|
|
|
* When emulating a target with a larger page-size than the hosts, we
|
|
|
|
* may need to truncate file maps at EOF and add extra anonymous pages
|
|
|
|
* up to the targets page boundary.
|
|
|
|
*/
|
2022-03-23 16:57:22 +01:00
|
|
|
if ((qemu_real_host_page_size() < qemu_host_page_size) &&
|
2017-01-19 16:15:33 +01:00
|
|
|
!(flags & MAP_ANONYMOUS)) {
|
|
|
|
struct stat sb;
|
2009-02-04 00:06:34 +01:00
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
if (fstat(fd, &sb) == -1) {
|
|
|
|
goto fail;
|
|
|
|
}
|
2009-02-04 00:06:34 +01:00
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
/* Are we trying to create a map beyond EOF?. */
|
|
|
|
if (offset + len > sb.st_size) {
|
|
|
|
/*
|
|
|
|
* If so, truncate the file map at eof aligned with
|
|
|
|
* the hosts real pagesize. Additional anonymous maps
|
|
|
|
* will be created beyond EOF.
|
|
|
|
*/
|
|
|
|
len = REAL_HOST_PAGE_ALIGN(sb.st_size - offset);
|
|
|
|
}
|
2009-02-04 00:06:34 +01:00
|
|
|
}
|
|
|
|
|
2023-07-07 22:40:39 +02:00
|
|
|
if (!(flags & (MAP_FIXED | MAP_FIXED_NOREPLACE))) {
|
2023-07-07 22:40:41 +02:00
|
|
|
uintptr_t host_start;
|
2023-07-07 22:40:40 +02:00
|
|
|
int host_prot;
|
2007-11-14 12:29:07 +01:00
|
|
|
void *p;
|
2012-06-02 01:07:52 +02:00
|
|
|
|
2007-11-14 12:29:07 +01:00
|
|
|
host_len = len + offset - host_offset;
|
|
|
|
host_len = HOST_PAGE_ALIGN(host_len);
|
2023-07-07 22:40:40 +02:00
|
|
|
host_prot = target_to_host_prot(target_prot);
|
2012-06-02 01:07:52 +02:00
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* Note: we prefer to control the mapping address. It is
|
|
|
|
* especially important if qemu_host_page_size >
|
|
|
|
* qemu_real_host_page_size.
|
|
|
|
*/
|
2021-02-12 19:48:43 +01:00
|
|
|
p = mmap(g2h_untagged(start), host_len, host_prot,
|
2012-06-02 01:07:52 +02:00
|
|
|
flags | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
|
2020-05-19 20:56:44 +02:00
|
|
|
if (p == MAP_FAILED) {
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2020-05-19 20:56:44 +02:00
|
|
|
}
|
2007-11-14 12:29:07 +01:00
|
|
|
/* update start so that it points to the file position at 'offset' */
|
2023-07-07 22:40:41 +02:00
|
|
|
host_start = (uintptr_t)p;
|
2009-02-04 00:06:34 +01:00
|
|
|
if (!(flags & MAP_ANONYMOUS)) {
|
2021-02-12 19:48:43 +01:00
|
|
|
p = mmap(g2h_untagged(start), len, host_prot,
|
2009-02-04 00:06:34 +01:00
|
|
|
flags | MAP_FIXED, fd, host_offset);
|
2013-06-29 11:41:32 +02:00
|
|
|
if (p == MAP_FAILED) {
|
2021-02-12 19:48:43 +01:00
|
|
|
munmap(g2h_untagged(start), host_len);
|
2013-06-29 11:41:32 +02:00
|
|
|
goto fail;
|
|
|
|
}
|
2007-11-14 12:29:07 +01:00
|
|
|
host_start += offset - host_offset;
|
2009-02-04 00:06:34 +01:00
|
|
|
}
|
2007-11-14 12:29:07 +01:00
|
|
|
start = h2g(host_start);
|
2023-07-07 22:40:47 +02:00
|
|
|
last = start + len - 1;
|
2022-09-06 02:08:38 +02:00
|
|
|
passthrough_start = start;
|
2023-07-07 22:40:47 +02:00
|
|
|
passthrough_last = last;
|
2007-11-14 12:29:07 +01:00
|
|
|
} else {
|
|
|
|
if (start & ~TARGET_PAGE_MASK) {
|
2006-02-04 21:46:24 +01:00
|
|
|
errno = EINVAL;
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2006-02-04 21:46:24 +01:00
|
|
|
}
|
2023-07-07 22:40:47 +02:00
|
|
|
last = start + len - 1;
|
|
|
|
real_last = HOST_PAGE_ALIGN(last) - 1;
|
2008-04-26 14:17:34 +02:00
|
|
|
|
2018-12-13 23:37:37 +01:00
|
|
|
/*
|
|
|
|
* Test if requested memory area fits target address space
|
|
|
|
* It can fail only on 64-bit host with 32-bit target.
|
|
|
|
* On any other target/host host mmap() handles this error correctly.
|
|
|
|
*/
|
2023-07-07 22:40:47 +02:00
|
|
|
if (last < start || !guest_range_valid_untagged(start, len)) {
|
2018-03-07 22:50:10 +01:00
|
|
|
errno = ENOMEM;
|
2008-12-08 19:12:33 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2023-08-02 09:17:47 +02:00
|
|
|
if (flags & MAP_FIXED_NOREPLACE) {
|
|
|
|
/* Validate that the chosen range is empty. */
|
|
|
|
if (!page_check_range_empty(start, last)) {
|
|
|
|
errno = EEXIST;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* With reserved_va, the entire address space is mmaped in the
|
|
|
|
* host to ensure it isn't accidentally used for something else.
|
|
|
|
* We have just checked that the guest address is not mapped
|
|
|
|
* within the guest, but need to replace the host reservation.
|
|
|
|
*
|
|
|
|
* Without reserved_va, despite the guest address check above,
|
|
|
|
* keep MAP_FIXED_NOREPLACE so that the guest does not overwrite
|
|
|
|
* any host address mappings.
|
|
|
|
*/
|
|
|
|
if (reserved_va) {
|
|
|
|
flags = (flags & ~MAP_FIXED_NOREPLACE) | MAP_FIXED;
|
|
|
|
}
|
2023-07-07 22:40:39 +02:00
|
|
|
}
|
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* worst case: we cannot map the file because the offset is not
|
|
|
|
* aligned, so we read it
|
|
|
|
*/
|
2007-11-14 12:29:07 +01:00
|
|
|
if (!(flags & MAP_ANONYMOUS) &&
|
|
|
|
(offset & ~qemu_host_page_mask) != (start & ~qemu_host_page_mask)) {
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* msync() won't work here, so we return an error if write is
|
|
|
|
* possible while it is a shared mapping
|
|
|
|
*/
|
2023-07-07 22:40:40 +02:00
|
|
|
if ((flags & MAP_TYPE) == MAP_SHARED
|
|
|
|
&& (target_prot & PROT_WRITE)) {
|
2007-11-14 12:29:07 +01:00
|
|
|
errno = EINVAL;
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2007-11-14 12:29:07 +01:00
|
|
|
}
|
2020-05-19 20:56:44 +02:00
|
|
|
retaddr = target_mmap(start, len, target_prot | PROT_WRITE,
|
2023-07-07 22:40:39 +02:00
|
|
|
(flags & (MAP_FIXED | MAP_FIXED_NOREPLACE))
|
|
|
|
| MAP_PRIVATE | MAP_ANONYMOUS,
|
2007-11-14 12:29:07 +01:00
|
|
|
-1, 0);
|
2023-07-07 22:40:32 +02:00
|
|
|
if (retaddr == -1) {
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
|
|
|
if (pread(fd, g2h_untagged(start), len, offset) == -1) {
|
2010-01-20 00:56:20 +01:00
|
|
|
goto fail;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2023-07-07 22:40:40 +02:00
|
|
|
if (!(target_prot & PROT_WRITE)) {
|
2020-05-19 20:56:44 +02:00
|
|
|
ret = target_mprotect(start, len, target_prot);
|
2015-09-14 12:31:44 +02:00
|
|
|
assert(ret == 0);
|
2007-11-14 12:29:07 +01:00
|
|
|
}
|
|
|
|
goto the_end;
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2023-07-07 22:40:32 +02:00
|
|
|
|
2007-11-14 12:29:07 +01:00
|
|
|
/* handle the start of the mapping */
|
|
|
|
if (start > real_start) {
|
2023-07-07 22:40:47 +02:00
|
|
|
if (real_last == real_start + qemu_host_page_size - 1) {
|
2007-11-14 12:29:07 +01:00
|
|
|
/* one single host page */
|
2023-07-07 22:40:47 +02:00
|
|
|
if (!mmap_frag(real_start, start, last,
|
2023-07-07 22:40:43 +02:00
|
|
|
target_prot, flags, fd, offset)) {
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2007-11-14 12:29:07 +01:00
|
|
|
goto the_end1;
|
|
|
|
}
|
2023-07-07 22:40:43 +02:00
|
|
|
if (!mmap_frag(real_start, start,
|
|
|
|
real_start + qemu_host_page_size - 1,
|
|
|
|
target_prot, flags, fd, offset)) {
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2007-11-14 12:29:07 +01:00
|
|
|
real_start += qemu_host_page_size;
|
|
|
|
}
|
|
|
|
/* handle the end of the mapping */
|
2023-07-07 22:40:47 +02:00
|
|
|
if (last < real_last) {
|
|
|
|
abi_ulong real_page = real_last - qemu_host_page_size + 1;
|
|
|
|
if (!mmap_frag(real_page, real_page, last,
|
2023-07-07 22:40:43 +02:00
|
|
|
target_prot, flags, fd,
|
2023-07-07 22:40:47 +02:00
|
|
|
offset + real_page - start)) {
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2023-07-07 22:40:47 +02:00
|
|
|
real_last -= qemu_host_page_size;
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2007-11-14 12:29:07 +01:00
|
|
|
/* map the middle (easier) */
|
2023-07-07 22:40:47 +02:00
|
|
|
if (real_start < real_last) {
|
2023-08-02 09:17:48 +02:00
|
|
|
void *p, *want_p;
|
2023-07-07 22:40:41 +02:00
|
|
|
off_t offset1;
|
2023-08-02 09:17:48 +02:00
|
|
|
size_t len1;
|
2023-07-07 22:40:41 +02:00
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
if (flags & MAP_ANONYMOUS) {
|
2007-11-14 12:29:07 +01:00
|
|
|
offset1 = 0;
|
2023-07-07 22:40:32 +02:00
|
|
|
} else {
|
2007-11-14 12:29:07 +01:00
|
|
|
offset1 = offset + real_start - start;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2023-08-02 09:17:48 +02:00
|
|
|
len1 = real_last - real_start + 1;
|
|
|
|
want_p = g2h_untagged(real_start);
|
|
|
|
|
|
|
|
p = mmap(want_p, len1, target_to_host_prot(target_prot),
|
|
|
|
flags, fd, offset1);
|
|
|
|
if (p != want_p) {
|
|
|
|
if (p != MAP_FAILED) {
|
|
|
|
munmap(p, len1);
|
|
|
|
errno = EEXIST;
|
|
|
|
}
|
2008-06-02 18:16:42 +02:00
|
|
|
goto fail;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2022-09-06 02:08:38 +02:00
|
|
|
passthrough_start = real_start;
|
2023-07-07 22:40:47 +02:00
|
|
|
passthrough_last = real_last;
|
2007-11-14 12:29:07 +01:00
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
|
|
|
the_end1:
|
2021-02-12 19:48:33 +01:00
|
|
|
if (flags & MAP_ANONYMOUS) {
|
|
|
|
page_flags |= PAGE_ANON;
|
|
|
|
}
|
2021-02-12 19:48:32 +01:00
|
|
|
page_flags |= PAGE_RESET;
|
2023-07-07 22:40:47 +02:00
|
|
|
if (passthrough_start > passthrough_last) {
|
|
|
|
page_set_flags(start, last, page_flags);
|
2022-09-06 02:08:38 +02:00
|
|
|
} else {
|
|
|
|
if (start < passthrough_start) {
|
2023-03-05 23:51:09 +01:00
|
|
|
page_set_flags(start, passthrough_start - 1, page_flags);
|
2022-09-06 02:08:38 +02:00
|
|
|
}
|
2023-07-07 22:40:47 +02:00
|
|
|
page_set_flags(passthrough_start, passthrough_last,
|
2022-09-06 02:08:38 +02:00
|
|
|
page_flags | PAGE_PASSTHROUGH);
|
2023-07-07 22:40:47 +02:00
|
|
|
if (passthrough_last < last) {
|
|
|
|
page_set_flags(passthrough_last + 1, last, page_flags);
|
2022-09-06 02:08:38 +02:00
|
|
|
}
|
|
|
|
}
|
2023-08-20 22:39:37 +02:00
|
|
|
shm_region_rm_complete(start, last);
|
2003-05-13 02:25:15 +02:00
|
|
|
the_end:
|
2019-12-05 13:25:14 +01:00
|
|
|
trace_target_mmap_complete(start);
|
2019-12-05 13:25:15 +01:00
|
|
|
if (qemu_loglevel_mask(CPU_LOG_PAGE)) {
|
2022-04-17 20:30:02 +02:00
|
|
|
FILE *f = qemu_log_trylock();
|
|
|
|
if (f) {
|
|
|
|
fprintf(f, "page layout changed following mmap\n");
|
|
|
|
page_dump(f);
|
|
|
|
qemu_log_unlock(f);
|
|
|
|
}
|
2019-12-05 13:25:15 +01:00
|
|
|
}
|
2008-06-02 18:16:42 +02:00
|
|
|
mmap_unlock();
|
2003-05-13 02:25:15 +02:00
|
|
|
return start;
|
2008-06-02 18:16:42 +02:00
|
|
|
fail:
|
|
|
|
mmap_unlock();
|
|
|
|
return -1;
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
|
|
|
|
2023-10-03 22:59:55 +02:00
|
|
|
static int mmap_reserve_or_unmap(abi_ulong start, abi_ulong len)
|
2010-05-29 03:27:35 +02:00
|
|
|
{
|
|
|
|
abi_ulong real_start;
|
2023-07-07 22:40:48 +02:00
|
|
|
abi_ulong real_last;
|
|
|
|
abi_ulong real_len;
|
|
|
|
abi_ulong last;
|
|
|
|
abi_ulong a;
|
2023-07-07 22:40:49 +02:00
|
|
|
void *host_start;
|
2010-05-29 03:27:35 +02:00
|
|
|
int prot;
|
|
|
|
|
2023-07-07 22:40:48 +02:00
|
|
|
last = start + len - 1;
|
2010-05-29 03:27:35 +02:00
|
|
|
real_start = start & qemu_host_page_mask;
|
2023-07-07 22:40:48 +02:00
|
|
|
real_last = HOST_PAGE_ALIGN(last) - 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If guest pages remain on the first or last host pages,
|
|
|
|
* adjust the deallocation to retain those guest pages.
|
|
|
|
* The single page special case is required for the last page,
|
|
|
|
* lest real_start overflow to zero.
|
|
|
|
*/
|
|
|
|
if (real_last - real_start < qemu_host_page_size) {
|
2010-05-29 03:27:35 +02:00
|
|
|
prot = 0;
|
2023-07-07 22:40:48 +02:00
|
|
|
for (a = real_start; a < start; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot |= page_get_flags(a);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
2023-07-07 22:40:48 +02:00
|
|
|
for (a = last; a < real_last; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot |= page_get_flags(a + 1);
|
|
|
|
}
|
|
|
|
if (prot != 0) {
|
2023-10-03 22:59:55 +02:00
|
|
|
return 0;
|
2023-07-07 22:40:48 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (prot = 0, a = real_start; a < start; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot |= page_get_flags(a);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
2023-07-07 22:40:32 +02:00
|
|
|
if (prot != 0) {
|
2010-05-29 03:27:35 +02:00
|
|
|
real_start += qemu_host_page_size;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2023-07-07 22:40:48 +02:00
|
|
|
|
|
|
|
for (prot = 0, a = last; a < real_last; a += TARGET_PAGE_SIZE) {
|
|
|
|
prot |= page_get_flags(a + 1);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
2023-07-07 22:40:32 +02:00
|
|
|
if (prot != 0) {
|
2023-07-07 22:40:48 +02:00
|
|
|
real_last -= qemu_host_page_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (real_last < real_start) {
|
2023-10-03 22:59:55 +02:00
|
|
|
return 0;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
2023-07-07 22:40:48 +02:00
|
|
|
|
|
|
|
real_len = real_last - real_start + 1;
|
|
|
|
host_start = g2h_untagged(real_start);
|
|
|
|
|
2023-07-07 22:40:49 +02:00
|
|
|
if (reserved_va) {
|
|
|
|
void *ptr = mmap(host_start, real_len, PROT_NONE,
|
|
|
|
MAP_FIXED | MAP_ANONYMOUS
|
|
|
|
| MAP_PRIVATE | MAP_NORESERVE, -1, 0);
|
2023-10-03 22:59:55 +02:00
|
|
|
return ptr == host_start ? 0 : -1;
|
2023-07-07 22:40:49 +02:00
|
|
|
}
|
2023-10-03 22:59:55 +02:00
|
|
|
return munmap(host_start, real_len);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
|
|
|
|
2007-10-14 18:27:31 +02:00
|
|
|
int target_munmap(abi_ulong start, abi_ulong len)
|
2003-05-13 02:25:15 +02:00
|
|
|
{
|
2023-10-03 22:59:55 +02:00
|
|
|
int ret;
|
|
|
|
|
2019-12-05 13:25:16 +01:00
|
|
|
trace_target_munmap(start, len);
|
|
|
|
|
2023-07-07 22:40:32 +02:00
|
|
|
if (start & ~TARGET_PAGE_MASK) {
|
2023-10-03 22:59:55 +02:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
2023-07-07 22:40:32 +02:00
|
|
|
}
|
2003-05-13 02:25:15 +02:00
|
|
|
len = TARGET_PAGE_ALIGN(len);
|
2021-02-12 19:48:46 +01:00
|
|
|
if (len == 0 || !guest_range_valid_untagged(start, len)) {
|
2023-10-03 22:59:55 +02:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
2018-03-07 22:50:10 +01:00
|
|
|
}
|
|
|
|
|
2008-06-02 18:16:42 +02:00
|
|
|
mmap_lock();
|
2023-10-03 22:59:55 +02:00
|
|
|
ret = mmap_reserve_or_unmap(start, len);
|
|
|
|
if (likely(ret == 0)) {
|
|
|
|
page_set_flags(start, start + len - 1, 0);
|
|
|
|
shm_region_rm_complete(start, start + len - 1);
|
|
|
|
}
|
2008-06-02 18:16:42 +02:00
|
|
|
mmap_unlock();
|
2023-07-07 22:40:50 +02:00
|
|
|
|
2023-10-03 22:59:55 +02:00
|
|
|
return ret;
|
2003-05-13 02:25:15 +02:00
|
|
|
}
|
|
|
|
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
|
|
|
|
abi_ulong new_size, unsigned long flags,
|
|
|
|
abi_ulong new_addr)
|
2003-05-13 02:25:15 +02:00
|
|
|
{
|
|
|
|
int prot;
|
2008-12-08 19:12:40 +01:00
|
|
|
void *host_addr;
|
2003-05-13 02:25:15 +02:00
|
|
|
|
2021-02-12 19:48:46 +01:00
|
|
|
if (!guest_range_valid_untagged(old_addr, old_size) ||
|
2018-03-07 22:50:10 +01:00
|
|
|
((flags & MREMAP_FIXED) &&
|
2021-02-12 19:48:46 +01:00
|
|
|
!guest_range_valid_untagged(new_addr, new_size)) ||
|
2021-01-08 18:42:12 +01:00
|
|
|
((flags & MREMAP_MAYMOVE) == 0 &&
|
2021-02-12 19:48:46 +01:00
|
|
|
!guest_range_valid_untagged(old_addr, new_size))) {
|
2018-03-07 22:50:10 +01:00
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-06-02 18:16:42 +02:00
|
|
|
mmap_lock();
|
2008-12-08 19:12:40 +01:00
|
|
|
|
2010-05-29 03:27:35 +02:00
|
|
|
if (flags & MREMAP_FIXED) {
|
2021-02-12 19:48:43 +01:00
|
|
|
host_addr = mremap(g2h_untagged(old_addr), old_size, new_size,
|
|
|
|
flags, g2h_untagged(new_addr));
|
2010-05-29 03:27:35 +02:00
|
|
|
|
2015-08-24 14:53:54 +02:00
|
|
|
if (reserved_va && host_addr != MAP_FAILED) {
|
2023-07-07 22:40:32 +02:00
|
|
|
/*
|
|
|
|
* If new and old addresses overlap then the above mremap will
|
|
|
|
* already have failed with EINVAL.
|
|
|
|
*/
|
2023-07-07 22:40:49 +02:00
|
|
|
mmap_reserve_or_unmap(old_addr, old_size);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
|
|
|
} else if (flags & MREMAP_MAYMOVE) {
|
2008-12-08 19:12:40 +01:00
|
|
|
abi_ulong mmap_start;
|
|
|
|
|
2019-05-19 22:19:52 +02:00
|
|
|
mmap_start = mmap_find_vma(0, new_size, TARGET_PAGE_SIZE);
|
2008-12-08 19:12:40 +01:00
|
|
|
|
|
|
|
if (mmap_start == -1) {
|
|
|
|
errno = ENOMEM;
|
|
|
|
host_addr = MAP_FAILED;
|
2010-05-29 03:27:35 +02:00
|
|
|
} else {
|
2021-02-12 19:48:43 +01:00
|
|
|
host_addr = mremap(g2h_untagged(old_addr), old_size, new_size,
|
|
|
|
flags | MREMAP_FIXED,
|
|
|
|
g2h_untagged(mmap_start));
|
2015-08-24 14:53:54 +02:00
|
|
|
if (reserved_va) {
|
2023-07-07 22:40:49 +02:00
|
|
|
mmap_reserve_or_unmap(old_addr, old_size);
|
2010-09-14 07:22:34 +02:00
|
|
|
}
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
2008-12-15 18:58:49 +01:00
|
|
|
} else {
|
2023-09-25 17:10:26 +02:00
|
|
|
int page_flags = 0;
|
2015-08-24 14:53:54 +02:00
|
|
|
if (reserved_va && old_size < new_size) {
|
2010-05-29 03:27:35 +02:00
|
|
|
abi_ulong addr;
|
|
|
|
for (addr = old_addr + old_size;
|
|
|
|
addr < old_addr + new_size;
|
|
|
|
addr++) {
|
2023-09-25 17:10:26 +02:00
|
|
|
page_flags |= page_get_flags(addr);
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
|
|
|
}
|
2023-09-25 17:10:26 +02:00
|
|
|
if (page_flags == 0) {
|
2021-02-12 19:48:43 +01:00
|
|
|
host_addr = mremap(g2h_untagged(old_addr),
|
|
|
|
old_size, new_size, flags);
|
2020-10-28 22:38:33 +01:00
|
|
|
|
|
|
|
if (host_addr != MAP_FAILED) {
|
|
|
|
/* Check if address fits target address space */
|
2021-02-12 19:48:46 +01:00
|
|
|
if (!guest_range_valid_untagged(h2g(host_addr), new_size)) {
|
2020-10-28 22:38:33 +01:00
|
|
|
/* Revert mremap() changes */
|
2021-02-12 19:48:43 +01:00
|
|
|
host_addr = mremap(g2h_untagged(old_addr),
|
|
|
|
new_size, old_size, flags);
|
2020-10-28 22:38:33 +01:00
|
|
|
errno = ENOMEM;
|
|
|
|
host_addr = MAP_FAILED;
|
|
|
|
} else if (reserved_va && old_size > new_size) {
|
2023-07-07 22:40:49 +02:00
|
|
|
mmap_reserve_or_unmap(old_addr + old_size,
|
|
|
|
old_size - new_size);
|
2020-10-28 22:38:33 +01:00
|
|
|
}
|
2010-05-29 03:27:35 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
errno = ENOMEM;
|
|
|
|
host_addr = MAP_FAILED;
|
|
|
|
}
|
2008-12-08 19:12:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (host_addr == MAP_FAILED) {
|
2008-06-02 18:16:42 +02:00
|
|
|
new_addr = -1;
|
|
|
|
} else {
|
|
|
|
new_addr = h2g(host_addr);
|
|
|
|
prot = page_get_flags(old_addr);
|
2023-03-05 23:51:09 +01:00
|
|
|
page_set_flags(old_addr, old_addr + old_size - 1, 0);
|
2023-08-20 22:39:37 +02:00
|
|
|
shm_region_rm_complete(old_addr, old_addr + old_size - 1);
|
2023-03-05 23:51:09 +01:00
|
|
|
page_set_flags(new_addr, new_addr + new_size - 1,
|
2021-02-12 19:48:32 +01:00
|
|
|
prot | PAGE_VALID | PAGE_RESET);
|
2023-08-20 22:39:37 +02:00
|
|
|
shm_region_rm_complete(new_addr, new_addr + new_size - 1);
|
2008-06-02 18:16:42 +02:00
|
|
|
}
|
|
|
|
mmap_unlock();
|
2003-05-13 02:25:15 +02:00
|
|
|
return new_addr;
|
|
|
|
}
|
2022-06-21 16:42:05 +02:00
|
|
|
|
|
|
|
abi_long target_madvise(abi_ulong start, abi_ulong len_in, int advice)
|
|
|
|
{
|
2023-07-07 22:40:54 +02:00
|
|
|
abi_ulong len;
|
2022-06-21 16:42:05 +02:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (start & ~TARGET_PAGE_MASK) {
|
|
|
|
return -TARGET_EINVAL;
|
|
|
|
}
|
2023-07-07 22:40:54 +02:00
|
|
|
if (len_in == 0) {
|
2022-06-21 16:42:05 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2023-07-07 22:40:54 +02:00
|
|
|
len = TARGET_PAGE_ALIGN(len_in);
|
|
|
|
if (len == 0 || !guest_range_valid_untagged(start, len)) {
|
2022-06-21 16:42:05 +02:00
|
|
|
return -TARGET_EINVAL;
|
|
|
|
}
|
|
|
|
|
2022-12-13 18:03:09 +01:00
|
|
|
/* Translate for some architectures which have different MADV_xxx values */
|
|
|
|
switch (advice) {
|
|
|
|
case TARGET_MADV_DONTNEED: /* alpha */
|
|
|
|
advice = MADV_DONTNEED;
|
|
|
|
break;
|
|
|
|
case TARGET_MADV_WIPEONFORK: /* parisc */
|
|
|
|
advice = MADV_WIPEONFORK;
|
|
|
|
break;
|
|
|
|
case TARGET_MADV_KEEPONFORK: /* parisc */
|
|
|
|
advice = MADV_KEEPONFORK;
|
|
|
|
break;
|
|
|
|
/* we do not care about the other MADV_xxx values yet */
|
|
|
|
}
|
|
|
|
|
2022-06-21 16:42:05 +02:00
|
|
|
/*
|
2022-12-13 18:03:09 +01:00
|
|
|
* Most advice values are hints, so ignoring and returning success is ok.
|
|
|
|
*
|
|
|
|
* However, some advice values such as MADV_DONTNEED, MADV_WIPEONFORK and
|
|
|
|
* MADV_KEEPONFORK are not hints and need to be emulated.
|
2022-06-21 16:42:05 +02:00
|
|
|
*
|
2022-12-13 18:03:09 +01:00
|
|
|
* A straight passthrough for those may not be safe because qemu sometimes
|
|
|
|
* turns private file-backed mappings into anonymous mappings.
|
2023-07-07 22:40:53 +02:00
|
|
|
* If all guest pages have PAGE_PASSTHROUGH set, mappings have the
|
|
|
|
* same semantics for the host as for the guest.
|
2022-06-21 16:42:05 +02:00
|
|
|
*
|
2022-12-13 18:03:09 +01:00
|
|
|
* We pass through MADV_WIPEONFORK and MADV_KEEPONFORK if possible and
|
|
|
|
* return failure if not.
|
|
|
|
*
|
|
|
|
* MADV_DONTNEED is passed through as well, if possible.
|
|
|
|
* If passthrough isn't possible, we nevertheless (wrongly!) return
|
|
|
|
* success, which is broken but some userspace programs fail to work
|
|
|
|
* otherwise. Completely implementing such emulation is quite complicated
|
|
|
|
* though.
|
2022-06-21 16:42:05 +02:00
|
|
|
*/
|
|
|
|
mmap_lock();
|
2022-12-13 18:03:09 +01:00
|
|
|
switch (advice) {
|
|
|
|
case MADV_WIPEONFORK:
|
|
|
|
case MADV_KEEPONFORK:
|
|
|
|
ret = -EINVAL;
|
|
|
|
/* fall through */
|
|
|
|
case MADV_DONTNEED:
|
2023-07-07 22:40:53 +02:00
|
|
|
if (page_check_range(start, len, PAGE_PASSTHROUGH)) {
|
2022-12-13 18:03:09 +01:00
|
|
|
ret = get_errno(madvise(g2h_untagged(start), len, advice));
|
|
|
|
if ((advice == MADV_DONTNEED) && (ret == 0)) {
|
2023-03-06 00:03:13 +01:00
|
|
|
page_reset_target_data(start, start + len - 1);
|
2022-12-13 18:03:09 +01:00
|
|
|
}
|
2022-07-12 00:00:28 +02:00
|
|
|
}
|
2022-06-21 16:42:05 +02:00
|
|
|
}
|
|
|
|
mmap_unlock();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2023-08-20 18:24:14 +02:00
|
|
|
|
|
|
|
#ifndef TARGET_FORCE_SHMLBA
|
|
|
|
/*
|
|
|
|
* For most architectures, SHMLBA is the same as the page size;
|
|
|
|
* some architectures have larger values, in which case they should
|
|
|
|
* define TARGET_FORCE_SHMLBA and provide a target_shmlba() function.
|
|
|
|
* This corresponds to the kernel arch code defining __ARCH_FORCE_SHMLBA
|
|
|
|
* and defining its own value for SHMLBA.
|
|
|
|
*
|
|
|
|
* The kernel also permits SHMLBA to be set by the architecture to a
|
|
|
|
* value larger than the page size without setting __ARCH_FORCE_SHMLBA;
|
|
|
|
* this means that addresses are rounded to the large size if
|
|
|
|
* SHM_RND is set but addresses not aligned to that size are not rejected
|
|
|
|
* as long as they are at least page-aligned. Since the only architecture
|
|
|
|
* which uses this is ia64 this code doesn't provide for that oddity.
|
|
|
|
*/
|
|
|
|
static inline abi_ulong target_shmlba(CPUArchState *cpu_env)
|
|
|
|
{
|
|
|
|
return TARGET_PAGE_SIZE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
abi_ulong target_shmat(CPUArchState *cpu_env, int shmid,
|
|
|
|
abi_ulong shmaddr, int shmflg)
|
|
|
|
{
|
|
|
|
CPUState *cpu = env_cpu(cpu_env);
|
|
|
|
abi_ulong raddr;
|
|
|
|
struct shmid_ds shm_info;
|
2023-08-20 19:08:44 +02:00
|
|
|
int ret;
|
2023-08-20 18:24:14 +02:00
|
|
|
abi_ulong shmlba;
|
|
|
|
|
|
|
|
/* shmat pointers are always untagged */
|
|
|
|
|
|
|
|
/* find out the length of the shared memory segment */
|
|
|
|
ret = get_errno(shmctl(shmid, IPC_STAT, &shm_info));
|
|
|
|
if (is_error(ret)) {
|
|
|
|
/* can't get length, bail out */
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
shmlba = target_shmlba(cpu_env);
|
|
|
|
|
|
|
|
if (shmaddr & (shmlba - 1)) {
|
|
|
|
if (shmflg & SHM_RND) {
|
|
|
|
shmaddr &= ~(shmlba - 1);
|
|
|
|
} else {
|
|
|
|
return -TARGET_EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!guest_range_valid_untagged(shmaddr, shm_info.shm_segsz)) {
|
|
|
|
return -TARGET_EINVAL;
|
|
|
|
}
|
|
|
|
|
2023-08-20 19:08:44 +02:00
|
|
|
WITH_MMAP_LOCK_GUARD() {
|
|
|
|
void *host_raddr;
|
2023-08-20 22:39:37 +02:00
|
|
|
abi_ulong last;
|
2023-08-20 19:08:44 +02:00
|
|
|
|
|
|
|
if (shmaddr) {
|
|
|
|
host_raddr = shmat(shmid, (void *)g2h_untagged(shmaddr), shmflg);
|
|
|
|
} else {
|
|
|
|
abi_ulong mmap_start;
|
|
|
|
|
|
|
|
/* In order to use the host shmat, we need to honor host SHMLBA. */
|
|
|
|
mmap_start = mmap_find_vma(0, shm_info.shm_segsz,
|
|
|
|
MAX(SHMLBA, shmlba));
|
|
|
|
|
|
|
|
if (mmap_start == -1) {
|
|
|
|
return -TARGET_ENOMEM;
|
|
|
|
}
|
|
|
|
host_raddr = shmat(shmid, g2h_untagged(mmap_start),
|
|
|
|
shmflg | SHM_REMAP);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (host_raddr == (void *)-1) {
|
|
|
|
return get_errno(-1);
|
|
|
|
}
|
|
|
|
raddr = h2g(host_raddr);
|
2023-08-20 22:39:37 +02:00
|
|
|
last = raddr + shm_info.shm_segsz - 1;
|
2023-08-20 19:08:44 +02:00
|
|
|
|
2023-08-20 22:39:37 +02:00
|
|
|
page_set_flags(raddr, last,
|
2023-08-20 19:08:44 +02:00
|
|
|
PAGE_VALID | PAGE_RESET | PAGE_READ |
|
|
|
|
(shmflg & SHM_RDONLY ? 0 : PAGE_WRITE));
|
|
|
|
|
2023-08-20 22:39:37 +02:00
|
|
|
shm_region_rm_complete(raddr, last);
|
|
|
|
shm_region_add(raddr, last);
|
2023-08-20 19:08:44 +02:00
|
|
|
}
|
2023-08-20 18:24:14 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We're mapping shared memory, so ensure we generate code for parallel
|
|
|
|
* execution and flush old translations. This will work up to the level
|
|
|
|
* supported by the host -- anything that requires EXCP_ATOMIC will not
|
|
|
|
* be atomic with respect to an external process.
|
|
|
|
*/
|
|
|
|
if (!(cpu->tcg_cflags & CF_PARALLEL)) {
|
|
|
|
cpu->tcg_cflags |= CF_PARALLEL;
|
|
|
|
tb_flush(cpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
return raddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
abi_long target_shmdt(abi_ulong shmaddr)
|
|
|
|
{
|
|
|
|
abi_long rv;
|
|
|
|
|
|
|
|
/* shmdt pointers are always untagged */
|
|
|
|
|
2023-08-20 19:08:44 +02:00
|
|
|
WITH_MMAP_LOCK_GUARD() {
|
2023-08-20 22:39:37 +02:00
|
|
|
abi_ulong last = shm_region_find(shmaddr);
|
|
|
|
if (last == 0) {
|
2023-08-20 21:38:49 +02:00
|
|
|
return -TARGET_EINVAL;
|
|
|
|
}
|
|
|
|
|
2023-08-20 19:08:44 +02:00
|
|
|
rv = get_errno(shmdt(g2h_untagged(shmaddr)));
|
2023-08-20 21:38:49 +02:00
|
|
|
if (rv == 0) {
|
2023-08-20 22:39:37 +02:00
|
|
|
abi_ulong size = last - shmaddr + 1;
|
2023-08-20 21:38:49 +02:00
|
|
|
|
2023-08-20 22:39:37 +02:00
|
|
|
page_set_flags(shmaddr, last, 0);
|
|
|
|
shm_region_rm_complete(shmaddr, last);
|
2023-08-20 21:38:49 +02:00
|
|
|
mmap_reserve_or_unmap(shmaddr, size);
|
|
|
|
}
|
2023-08-20 18:24:14 +02:00
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|