blob: cc983bedbd4f40b7987d1eefa6a5d0e3e2f29f26 [file] [log] [blame]
bellard54936002003-05-13 00:25:15 +00001/*
2 * mmap support for qemu
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard54936002003-05-13 00:25:15 +00004 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bellard54936002003-05-13 00:25:15 +000018 */
Peter Maydelld39594e2016-01-26 18:17:02 +000019#include "qemu/osdep.h"
Richard Henderson225a2062023-08-20 09:24:14 -070020#include <sys/shm.h>
Alex Bennée11d96052019-12-05 12:25:12 +000021#include "trace.h"
Alex Bennée10d0d502019-12-05 12:25:15 +000022#include "exec/log.h"
bellard54936002003-05-13 00:25:15 +000023#include "qemu.h"
Peter Maydell3b249d22021-09-08 16:44:03 +010024#include "user-internals.h"
Peter Maydell5423e6d2021-09-08 16:44:01 +010025#include "user-mmap.h"
Ilya Leoshkevich8655b4c2022-09-06 02:08:36 +020026#include "target_mman.h"
Richard Henderson044e95c2023-08-20 13:39:37 -070027#include "qemu/interval-tree.h"
bellard54936002003-05-13 00:25:15 +000028
Peter Maydell5a534312023-10-24 17:35:05 +010029#ifdef TARGET_ARM
30#include "target/arm/cpu-features.h"
31#endif
32
Blue Swirl1e6eec82009-09-05 10:14:07 +000033static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER;
Juan Quinteladfd3f852009-09-23 01:19:03 +020034static __thread int mmap_lock_count;
pbrookc8a706f2008-06-02 16:16:42 +000035
36void mmap_lock(void)
37{
38 if (mmap_lock_count++ == 0) {
39 pthread_mutex_lock(&mmap_mutex);
40 }
41}
42
43void mmap_unlock(void)
44{
Richard Henderson990ef912023-07-17 19:58:58 +010045 assert(mmap_lock_count > 0);
pbrookc8a706f2008-06-02 16:16:42 +000046 if (--mmap_lock_count == 0) {
47 pthread_mutex_unlock(&mmap_mutex);
48 }
49}
pbrookd5975362008-06-07 20:50:51 +000050
Alex Bennée301e40e2016-10-27 16:10:00 +010051bool have_mmap_lock(void)
52{
53 return mmap_lock_count > 0 ? true : false;
54}
55
pbrookd5975362008-06-07 20:50:51 +000056/* Grab lock to make sure things are in a consistent state after fork(). */
57void mmap_fork_start(void)
58{
59 if (mmap_lock_count)
60 abort();
61 pthread_mutex_lock(&mmap_mutex);
62}
63
64void mmap_fork_end(int child)
65{
Richard Henderson2b730f72023-07-07 21:40:32 +010066 if (child) {
pbrookd5975362008-06-07 20:50:51 +000067 pthread_mutex_init(&mmap_mutex, NULL);
Richard Henderson2b730f72023-07-07 21:40:32 +010068 } else {
pbrookd5975362008-06-07 20:50:51 +000069 pthread_mutex_unlock(&mmap_mutex);
Richard Henderson2b730f72023-07-07 21:40:32 +010070 }
pbrookd5975362008-06-07 20:50:51 +000071}
pbrookc8a706f2008-06-02 16:16:42 +000072
Richard Henderson044e95c2023-08-20 13:39:37 -070073/* Protected by mmap_lock. */
74static IntervalTreeRoot shm_regions;
75
76static void shm_region_add(abi_ptr start, abi_ptr last)
77{
78 IntervalTreeNode *i = g_new0(IntervalTreeNode, 1);
79
80 i->start = start;
81 i->last = last;
82 interval_tree_insert(i, &shm_regions);
83}
84
85static abi_ptr shm_region_find(abi_ptr start)
86{
87 IntervalTreeNode *i;
88
89 for (i = interval_tree_iter_first(&shm_regions, start, start); i;
90 i = interval_tree_iter_next(i, start, start)) {
91 if (i->start == start) {
92 return i->last;
93 }
94 }
95 return 0;
96}
97
98static void shm_region_rm_complete(abi_ptr start, abi_ptr last)
99{
100 IntervalTreeNode *i, *n;
101
102 for (i = interval_tree_iter_first(&shm_regions, start, last); i; i = n) {
103 n = interval_tree_iter_next(i, start, last);
104 if (i->start >= start && i->last <= last) {
105 interval_tree_remove(i, &shm_regions);
106 g_free(i);
107 }
108 }
109}
110
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700111/*
112 * Validate target prot bitmask.
113 * Return the prot bitmask for the host in *HOST_PROT.
114 * Return 0 if the target prot bitmask is invalid, otherwise
115 * the internal qemu page_flags (which will include PAGE_VALID).
116 */
Richard Henderson0dd55812023-07-07 21:40:40 +0100117static int validate_prot_to_pageflags(int prot)
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700118{
119 int valid = PROT_READ | PROT_WRITE | PROT_EXEC | TARGET_PROT_SEM;
120 int page_flags = (prot & PAGE_BITS) | PAGE_VALID;
121
Richard Hendersonbe5d6f42020-10-21 10:37:39 -0700122#ifdef TARGET_AARCH64
Richard Hendersond109b462021-02-12 10:48:55 -0800123 {
Richard Hendersonbe5d6f42020-10-21 10:37:39 -0700124 ARMCPU *cpu = ARM_CPU(thread_cpu);
Richard Hendersond109b462021-02-12 10:48:55 -0800125
126 /*
127 * The PROT_BTI bit is only accepted if the cpu supports the feature.
128 * Since this is the unusual case, don't bother checking unless
129 * the bit has been requested. If set and valid, record the bit
130 * within QEMU's page_flags.
131 */
132 if ((prot & TARGET_PROT_BTI) && cpu_isar_feature(aa64_bti, cpu)) {
Richard Hendersonbe5d6f42020-10-21 10:37:39 -0700133 valid |= TARGET_PROT_BTI;
134 page_flags |= PAGE_BTI;
135 }
Richard Hendersond109b462021-02-12 10:48:55 -0800136 /* Similarly for the PROT_MTE bit. */
137 if ((prot & TARGET_PROT_MTE) && cpu_isar_feature(aa64_mte, cpu)) {
138 valid |= TARGET_PROT_MTE;
139 page_flags |= PAGE_MTE;
140 }
Richard Hendersonbe5d6f42020-10-21 10:37:39 -0700141 }
Helge Deller4c184e72022-09-24 13:45:00 +0200142#elif defined(TARGET_HPPA)
143 valid |= PROT_GROWSDOWN | PROT_GROWSUP;
Richard Hendersonbe5d6f42020-10-21 10:37:39 -0700144#endif
145
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700146 return prot & ~valid ? 0 : page_flags;
147}
148
Richard Henderson0dd55812023-07-07 21:40:40 +0100149/*
150 * For the host, we need not pass anything except read/write/exec.
151 * While PROT_SEM is allowed by all hosts, it is also ignored, so
152 * don't bother transforming guest bit to host bit. Any other
153 * target-specific prot bits will not be understood by the host
154 * and will need to be encoded into page_flags for qemu emulation.
155 *
156 * Pages that are executable by the guest will never be executed
157 * by the host, but the host will need to be able to read them.
158 */
159static int target_to_host_prot(int prot)
160{
161 return (prot & (PROT_READ | PROT_WRITE)) |
162 (prot & PROT_EXEC ? PROT_READ : 0);
163}
164
pbrook53a59602006-03-25 19:31:22 +0000165/* NOTE: all the constants are the HOST ones, but addresses are target. */
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700166int target_mprotect(abi_ulong start, abi_ulong len, int target_prot)
bellard54936002003-05-13 00:25:15 +0000167{
Richard Henderson621ac472024-01-02 12:57:43 +1100168 int host_page_size = qemu_real_host_page_size();
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100169 abi_ulong starts[3];
170 abi_ulong lens[3];
171 int prots[3];
172 abi_ulong host_start, host_last, last;
173 int prot1, ret, page_flags, nranges;
bellard54936002003-05-13 00:25:15 +0000174
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700175 trace_target_mprotect(start, len, target_prot);
bellard54936002003-05-13 00:25:15 +0000176
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700177 if ((start & ~TARGET_PAGE_MASK) != 0) {
Max Filippov78cf3392018-02-28 14:16:05 -0800178 return -TARGET_EINVAL;
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700179 }
Richard Henderson0dd55812023-07-07 21:40:40 +0100180 page_flags = validate_prot_to_pageflags(target_prot);
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700181 if (!page_flags) {
182 return -TARGET_EINVAL;
183 }
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700184 if (len == 0) {
bellard54936002003-05-13 00:25:15 +0000185 return 0;
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700186 }
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100187 len = TARGET_PAGE_ALIGN(len);
188 if (!guest_range_valid_untagged(start, len)) {
189 return -TARGET_ENOMEM;
190 }
191
192 last = start + len - 1;
Richard Henderson621ac472024-01-02 12:57:43 +1100193 host_start = start & -host_page_size;
Richard Hendersonb36b2b12024-01-02 12:57:45 +1100194 host_last = ROUND_UP(last, host_page_size) - 1;
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100195 nranges = 0;
ths3b46e622007-09-17 08:09:54 +0000196
pbrookc8a706f2008-06-02 16:16:42 +0000197 mmap_lock();
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100198
Richard Henderson621ac472024-01-02 12:57:43 +1100199 if (host_last - host_start < host_page_size) {
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100200 /* Single host page contains all guest pages: sum the prot. */
Richard Henderson0dd55812023-07-07 21:40:40 +0100201 prot1 = target_prot;
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100202 for (abi_ulong a = host_start; a < start; a += TARGET_PAGE_SIZE) {
203 prot1 |= page_get_flags(a);
bellard54936002003-05-13 00:25:15 +0000204 }
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100205 for (abi_ulong a = last; a < host_last; a += TARGET_PAGE_SIZE) {
206 prot1 |= page_get_flags(a + 1);
207 }
208 starts[nranges] = host_start;
Richard Henderson621ac472024-01-02 12:57:43 +1100209 lens[nranges] = host_page_size;
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100210 prots[nranges] = prot1;
211 nranges++;
212 } else {
213 if (host_start < start) {
214 /* Host page contains more than one guest page: sum the prot. */
215 prot1 = target_prot;
216 for (abi_ulong a = host_start; a < start; a += TARGET_PAGE_SIZE) {
217 prot1 |= page_get_flags(a);
bellardd418c812003-05-13 00:57:50 +0000218 }
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100219 /* If the resulting sum differs, create a new range. */
220 if (prot1 != target_prot) {
221 starts[nranges] = host_start;
Richard Henderson621ac472024-01-02 12:57:43 +1100222 lens[nranges] = host_page_size;
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100223 prots[nranges] = prot1;
224 nranges++;
Richard Henderson621ac472024-01-02 12:57:43 +1100225 host_start += host_page_size;
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100226 }
bellardd418c812003-05-13 00:57:50 +0000227 }
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100228
229 if (last < host_last) {
230 /* Host page contains more than one guest page: sum the prot. */
231 prot1 = target_prot;
232 for (abi_ulong a = last; a < host_last; a += TARGET_PAGE_SIZE) {
233 prot1 |= page_get_flags(a + 1);
234 }
235 /* If the resulting sum differs, create a new range. */
236 if (prot1 != target_prot) {
Richard Henderson621ac472024-01-02 12:57:43 +1100237 host_last -= host_page_size;
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100238 starts[nranges] = host_last + 1;
Richard Henderson621ac472024-01-02 12:57:43 +1100239 lens[nranges] = host_page_size;
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100240 prots[nranges] = prot1;
241 nranges++;
242 }
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700243 }
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100244
245 /* Create a range for the middle, if any remains. */
246 if (host_start < host_last) {
247 starts[nranges] = host_start;
248 lens[nranges] = host_last - host_start + 1;
249 prots[nranges] = target_prot;
250 nranges++;
bellard54936002003-05-13 00:25:15 +0000251 }
bellard54936002003-05-13 00:25:15 +0000252 }
ths3b46e622007-09-17 08:09:54 +0000253
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100254 for (int i = 0; i < nranges; ++i) {
255 ret = mprotect(g2h_untagged(starts[i]), lens[i],
256 target_to_host_prot(prots[i]));
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700257 if (ret != 0) {
pbrookc8a706f2008-06-02 16:16:42 +0000258 goto error;
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700259 }
bellard54936002003-05-13 00:25:15 +0000260 }
Ilya Leoshkevichaa98e2d2022-08-17 17:05:03 +0200261
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100262 page_set_flags(start, last, page_flags);
Ilya Leoshkevichaa98e2d2022-08-17 17:05:03 +0200263 ret = 0;
264
Richard Henderson7bdc1ac2023-07-07 21:40:42 +0100265 error:
pbrookc8a706f2008-06-02 16:16:42 +0000266 mmap_unlock();
267 return ret;
bellard54936002003-05-13 00:25:15 +0000268}
269
270/* map an incomplete host page */
Richard Henderson99982be2023-07-07 21:40:43 +0100271static bool mmap_frag(abi_ulong real_start, abi_ulong start, abi_ulong last,
272 int prot, int flags, int fd, off_t offset)
bellard54936002003-05-13 00:25:15 +0000273{
Richard Henderson621ac472024-01-02 12:57:43 +1100274 int host_page_size = qemu_real_host_page_size();
Richard Henderson99982be2023-07-07 21:40:43 +0100275 abi_ulong real_last;
pbrook53a59602006-03-25 19:31:22 +0000276 void *host_start;
Richard Henderson99982be2023-07-07 21:40:43 +0100277 int prot_old, prot_new;
278 int host_prot_old, host_prot_new;
bellard54936002003-05-13 00:25:15 +0000279
Richard Henderson99982be2023-07-07 21:40:43 +0100280 if (!(flags & MAP_ANONYMOUS)
281 && (flags & MAP_TYPE) == MAP_SHARED
282 && (prot & PROT_WRITE)) {
283 /*
284 * msync() won't work with the partial page, so we return an
285 * error if write is possible while it is a shared mapping.
286 */
287 errno = EINVAL;
288 return false;
bellard54936002003-05-13 00:25:15 +0000289 }
ths3b46e622007-09-17 08:09:54 +0000290
Richard Henderson621ac472024-01-02 12:57:43 +1100291 real_last = real_start + host_page_size - 1;
Richard Henderson99982be2023-07-07 21:40:43 +0100292 host_start = g2h_untagged(real_start);
293
294 /* Get the protection of the target pages outside the mapping. */
295 prot_old = 0;
296 for (abi_ulong a = real_start; a < start; a += TARGET_PAGE_SIZE) {
297 prot_old |= page_get_flags(a);
298 }
299 for (abi_ulong a = real_last; a > last; a -= TARGET_PAGE_SIZE) {
300 prot_old |= page_get_flags(a);
301 }
302
303 if (prot_old == 0) {
304 /*
305 * Since !(prot_old & PAGE_VALID), there were no guest pages
306 * outside of the fragment we need to map. Allocate a new host
307 * page to cover, discarding whatever else may have been present.
308 */
Richard Henderson621ac472024-01-02 12:57:43 +1100309 void *p = mmap(host_start, host_page_size,
Richard Henderson0dd55812023-07-07 21:40:40 +0100310 target_to_host_prot(prot),
ths80210bc2007-11-02 19:08:57 +0000311 flags | MAP_ANONYMOUS, -1, 0);
Akihiko Odakiddcdd8c2023-08-02 16:17:48 +0900312 if (p != host_start) {
313 if (p != MAP_FAILED) {
Richard Henderson621ac472024-01-02 12:57:43 +1100314 munmap(p, host_page_size);
Akihiko Odakiddcdd8c2023-08-02 16:17:48 +0900315 errno = EEXIST;
316 }
Richard Henderson99982be2023-07-07 21:40:43 +0100317 return false;
Richard Henderson2b730f72023-07-07 21:40:32 +0100318 }
Richard Henderson99982be2023-07-07 21:40:43 +0100319 prot_old = prot;
bellard54936002003-05-13 00:25:15 +0000320 }
Richard Henderson99982be2023-07-07 21:40:43 +0100321 prot_new = prot | prot_old;
bellard54936002003-05-13 00:25:15 +0000322
Richard Henderson99982be2023-07-07 21:40:43 +0100323 host_prot_old = target_to_host_prot(prot_old);
324 host_prot_new = target_to_host_prot(prot_new);
bellard54936002003-05-13 00:25:15 +0000325
Richard Henderson99982be2023-07-07 21:40:43 +0100326 /* Adjust protection to be able to write. */
327 if (!(host_prot_old & PROT_WRITE)) {
328 host_prot_old |= PROT_WRITE;
Richard Henderson621ac472024-01-02 12:57:43 +1100329 mprotect(host_start, host_page_size, host_prot_old);
Richard Henderson99982be2023-07-07 21:40:43 +0100330 }
ths3b46e622007-09-17 08:09:54 +0000331
Richard Henderson99982be2023-07-07 21:40:43 +0100332 /* Read or zero the new guest pages. */
333 if (flags & MAP_ANONYMOUS) {
334 memset(g2h_untagged(start), 0, last - start + 1);
bellard54936002003-05-13 00:25:15 +0000335 } else {
Richard Henderson99982be2023-07-07 21:40:43 +0100336 if (pread(fd, g2h_untagged(start), last - start + 1, offset) == -1) {
337 return false;
Chen Gange6deac92015-12-30 09:10:54 +0800338 }
bellard54936002003-05-13 00:25:15 +0000339 }
Richard Henderson99982be2023-07-07 21:40:43 +0100340
341 /* Put final protection */
342 if (host_prot_new != host_prot_old) {
Richard Henderson621ac472024-01-02 12:57:43 +1100343 mprotect(host_start, host_page_size, host_prot_new);
Richard Henderson99982be2023-07-07 21:40:43 +0100344 }
345 return true;
bellard54936002003-05-13 00:25:15 +0000346}
347
Richard Hendersonc8fb5cf2023-08-02 14:25:27 -0700348abi_ulong task_unmapped_base;
Richard Hendersonda2b71f2023-08-02 15:17:33 -0700349abi_ulong elf_et_dyn_base;
Richard Hendersonc8fb5cf2023-08-02 14:25:27 -0700350abi_ulong mmap_next_start;
bellarda03e2d42007-11-14 11:29:07 +0000351
Richard Henderson2b730f72023-07-07 21:40:32 +0100352/*
353 * Subroutine of mmap_find_vma, used when we have pre-allocated
354 * a chunk of guest address space.
355 */
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700356static abi_ulong mmap_find_vma_reserved(abi_ulong start, abi_ulong size,
357 abi_ulong align)
Paul Brook68a1c812010-05-29 02:27:35 +0100358{
Richard Henderson4c130482023-07-07 21:40:46 +0100359 target_ulong ret;
Paul Brook68a1c812010-05-29 02:27:35 +0100360
Richard Henderson4c130482023-07-07 21:40:46 +0100361 ret = page_find_range_empty(start, reserved_va, size, align);
362 if (ret == -1 && start > mmap_min_addr) {
363 /* Restart at the beginning of the address space. */
364 ret = page_find_range_empty(mmap_min_addr, start - 1, size, align);
Paul Brook68a1c812010-05-29 02:27:35 +0100365 }
366
Richard Henderson4c130482023-07-07 21:40:46 +0100367 return ret;
Paul Brook68a1c812010-05-29 02:27:35 +0100368}
369
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300370/*
371 * Find and reserve a free memory area of size 'size'. The search
372 * starts at 'start'.
373 * It must be called with mmap_lock() held.
374 * Return -1 if error.
375 */
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700376abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size, abi_ulong align)
bellarda03e2d42007-11-14 11:29:07 +0000377{
Richard Henderson621ac472024-01-02 12:57:43 +1100378 int host_page_size = qemu_real_host_page_size();
Richard Henderson14f24e12010-03-10 15:39:07 -0800379 void *ptr, *prev;
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300380 abi_ulong addr;
Richard Henderson14f24e12010-03-10 15:39:07 -0800381 int wrapped, repeat;
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300382
Richard Henderson621ac472024-01-02 12:57:43 +1100383 align = MAX(align, host_page_size);
Richard Henderson443b7502019-05-19 13:19:53 -0700384
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300385 /* If 'start' == 0, then a default start address is used. */
Richard Henderson14f24e12010-03-10 15:39:07 -0800386 if (start == 0) {
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300387 start = mmap_next_start;
Richard Henderson14f24e12010-03-10 15:39:07 -0800388 } else {
Richard Henderson621ac472024-01-02 12:57:43 +1100389 start &= -host_page_size;
Richard Henderson14f24e12010-03-10 15:39:07 -0800390 }
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700391 start = ROUND_UP(start, align);
Richard Hendersonb36b2b12024-01-02 12:57:45 +1100392 size = ROUND_UP(size, host_page_size);
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300393
Laurent Vivierb76f21a2015-08-24 14:53:54 +0200394 if (reserved_va) {
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700395 return mmap_find_vma_reserved(start, size, align);
Paul Brook68a1c812010-05-29 02:27:35 +0100396 }
397
bellarda03e2d42007-11-14 11:29:07 +0000398 addr = start;
Richard Henderson14f24e12010-03-10 15:39:07 -0800399 wrapped = repeat = 0;
400 prev = 0;
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300401
Richard Henderson14f24e12010-03-10 15:39:07 -0800402 for (;; prev = ptr) {
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300403 /*
404 * Reserve needed memory area to avoid a race.
405 * It should be discarded using:
406 * - mmap() with MAP_FIXED flag
407 * - mremap() with MREMAP_FIXED flag
408 * - shmat() with SHM_REMAP flag
409 */
Richard Henderson3e8f1622021-02-12 10:48:43 -0800410 ptr = mmap(g2h_untagged(addr), size, PROT_NONE,
Richard Henderson2b730f72023-07-07 21:40:32 +0100411 MAP_ANONYMOUS | MAP_PRIVATE | MAP_NORESERVE, -1, 0);
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300412
413 /* ENOMEM, if host address space has no memory */
Richard Henderson14f24e12010-03-10 15:39:07 -0800414 if (ptr == MAP_FAILED) {
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300415 return (abi_ulong)-1;
Richard Henderson14f24e12010-03-10 15:39:07 -0800416 }
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300417
Richard Henderson2b730f72023-07-07 21:40:32 +0100418 /*
419 * Count the number of sequential returns of the same address.
420 * This is used to modify the search algorithm below.
421 */
Richard Henderson14f24e12010-03-10 15:39:07 -0800422 repeat = (ptr == prev ? repeat + 1 : 0);
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300423
Richard Henderson14f24e12010-03-10 15:39:07 -0800424 if (h2g_valid(ptr + size - 1)) {
425 addr = h2g(ptr);
426
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700427 if ((addr & (align - 1)) == 0) {
Richard Henderson14f24e12010-03-10 15:39:07 -0800428 /* Success. */
Richard Hendersonc8fb5cf2023-08-02 14:25:27 -0700429 if (start == mmap_next_start && addr >= task_unmapped_base) {
Richard Henderson14f24e12010-03-10 15:39:07 -0800430 mmap_next_start = addr + size;
431 }
432 return addr;
433 }
434
435 /* The address is not properly aligned for the target. */
436 switch (repeat) {
437 case 0:
Richard Henderson2b730f72023-07-07 21:40:32 +0100438 /*
439 * Assume the result that the kernel gave us is the
440 * first with enough free space, so start again at the
441 * next higher target page.
442 */
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700443 addr = ROUND_UP(addr, align);
Richard Henderson14f24e12010-03-10 15:39:07 -0800444 break;
445 case 1:
Richard Henderson2b730f72023-07-07 21:40:32 +0100446 /*
447 * Sometimes the kernel decides to perform the allocation
448 * at the top end of memory instead.
449 */
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700450 addr &= -align;
Richard Henderson14f24e12010-03-10 15:39:07 -0800451 break;
452 case 2:
453 /* Start over at low memory. */
454 addr = 0;
455 break;
456 default:
457 /* Fail. This unaligned block must the last. */
458 addr = -1;
459 break;
460 }
461 } else {
Richard Henderson2b730f72023-07-07 21:40:32 +0100462 /*
463 * Since the result the kernel gave didn't fit, start
464 * again at low memory. If any repetition, fail.
465 */
Richard Henderson14f24e12010-03-10 15:39:07 -0800466 addr = (repeat ? -1 : 0);
467 }
468
469 /* Unmap and try again. */
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300470 munmap(ptr, size);
Kirill A. Shutemovfe3b4152009-08-13 21:03:58 +0300471
Richard Henderson14f24e12010-03-10 15:39:07 -0800472 /* ENOMEM if we checked the whole of the target address space. */
Blue Swirld0b3e4f2010-09-18 05:53:14 +0000473 if (addr == (abi_ulong)-1) {
bellarda03e2d42007-11-14 11:29:07 +0000474 return (abi_ulong)-1;
Richard Henderson14f24e12010-03-10 15:39:07 -0800475 } else if (addr == 0) {
476 if (wrapped) {
477 return (abi_ulong)-1;
478 }
479 wrapped = 1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100480 /*
481 * Don't actually use 0 when wrapping, instead indicate
482 * that we'd truly like an allocation in low memory.
483 */
Richard Henderson14f24e12010-03-10 15:39:07 -0800484 addr = (mmap_min_addr > TARGET_PAGE_SIZE
485 ? TARGET_PAGE_ALIGN(mmap_min_addr)
486 : TARGET_PAGE_SIZE);
487 } else if (wrapped && addr >= start) {
488 return (abi_ulong)-1;
489 }
bellarda03e2d42007-11-14 11:29:07 +0000490 }
bellarda03e2d42007-11-14 11:29:07 +0000491}
492
Richard Henderson6ecc2552024-01-02 12:57:54 +1100493/*
494 * Record a successful mmap within the user-exec interval tree.
495 */
496static abi_long mmap_end(abi_ulong start, abi_ulong last,
497 abi_ulong passthrough_start,
498 abi_ulong passthrough_last,
499 int flags, int page_flags)
500{
501 if (flags & MAP_ANONYMOUS) {
502 page_flags |= PAGE_ANON;
503 }
504 page_flags |= PAGE_RESET;
505 if (passthrough_start > passthrough_last) {
506 page_set_flags(start, last, page_flags);
507 } else {
508 if (start < passthrough_start) {
509 page_set_flags(start, passthrough_start - 1, page_flags);
510 }
511 page_set_flags(passthrough_start, passthrough_last,
512 page_flags | PAGE_PASSTHROUGH);
513 if (passthrough_last < last) {
514 page_set_flags(passthrough_last + 1, last, page_flags);
515 }
516 }
517 shm_region_rm_complete(start, last);
518 trace_target_mmap_complete(start);
519 if (qemu_loglevel_mask(CPU_LOG_PAGE)) {
520 FILE *f = qemu_log_trylock();
521 if (f) {
522 fprintf(f, "page layout changed following mmap\n");
523 page_dump(f);
524 qemu_log_unlock(f);
525 }
526 }
527 return start;
528}
529
Richard Hendersond558c392024-01-02 12:57:51 +1100530static abi_long target_mmap__locked(abi_ulong start, abi_ulong len,
Richard Hendersone8cec512024-01-02 12:57:52 +1100531 int target_prot, int flags, int page_flags,
Richard Hendersond558c392024-01-02 12:57:51 +1100532 int fd, off_t offset)
bellard54936002003-05-13 00:25:15 +0000533{
Richard Henderson621ac472024-01-02 12:57:43 +1100534 int host_page_size = qemu_real_host_page_size();
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100535 abi_ulong ret, last, real_start, real_last, retaddr, host_len;
536 abi_ulong passthrough_start = -1, passthrough_last = 0;
Richard Henderson55baec02023-07-07 21:40:41 +0100537 off_t host_offset;
bellard54936002003-05-13 00:25:15 +0000538
Richard Henderson621ac472024-01-02 12:57:43 +1100539 real_start = start & -host_page_size;
540 host_offset = offset & -host_page_size;
Richard Hendersona5e7ee42012-06-01 16:07:52 -0700541
Richard Henderson2b730f72023-07-07 21:40:32 +0100542 /*
543 * If the user is asking for the kernel to find a location, do that
544 * before we truncate the length for mapping files below.
545 */
Richard Henderson03798602023-07-07 21:40:39 +0100546 if (!(flags & (MAP_FIXED | MAP_FIXED_NOREPLACE))) {
Richard Hendersona5e7ee42012-06-01 16:07:52 -0700547 host_len = len + offset - host_offset;
Richard Hendersonb36b2b12024-01-02 12:57:45 +1100548 host_len = ROUND_UP(host_len, host_page_size);
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700549 start = mmap_find_vma(real_start, host_len, TARGET_PAGE_SIZE);
Richard Hendersona5e7ee42012-06-01 16:07:52 -0700550 if (start == (abi_ulong)-1) {
551 errno = ENOMEM;
Richard Hendersond558c392024-01-02 12:57:51 +1100552 return -1;
Richard Hendersona5e7ee42012-06-01 16:07:52 -0700553 }
554 }
bellard54936002003-05-13 00:25:15 +0000555
Richard Henderson2b730f72023-07-07 21:40:32 +0100556 /*
557 * When mapping files into a memory area larger than the file, accesses
558 * to pages beyond the file size will cause a SIGBUS.
559 *
560 * For example, if mmaping a file of 100 bytes on a host with 4K pages
561 * emulating a target with 8K pages, the target expects to be able to
562 * access the first 8K. But the host will trap us on any access beyond
563 * 4K.
564 *
565 * When emulating a target with a larger page-size than the hosts, we
566 * may need to truncate file maps at EOF and add extra anonymous pages
567 * up to the targets page boundary.
568 */
Richard Henderson621ac472024-01-02 12:57:43 +1100569 if (host_page_size < TARGET_PAGE_SIZE && !(flags & MAP_ANONYMOUS)) {
Marc-André Lureau35f2fd02017-01-19 10:15:33 -0500570 struct stat sb;
edgar_igl54c5a2a2009-02-03 23:06:34 +0000571
Richard Henderson2b730f72023-07-07 21:40:32 +0100572 if (fstat(fd, &sb) == -1) {
Richard Hendersond558c392024-01-02 12:57:51 +1100573 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100574 }
edgar_igl54c5a2a2009-02-03 23:06:34 +0000575
Richard Henderson2b730f72023-07-07 21:40:32 +0100576 /* Are we trying to create a map beyond EOF?. */
577 if (offset + len > sb.st_size) {
578 /*
579 * If so, truncate the file map at eof aligned with
580 * the hosts real pagesize. Additional anonymous maps
581 * will be created beyond EOF.
582 */
Richard Hendersone56922a2024-01-02 12:57:44 +1100583 len = ROUND_UP(sb.st_size - offset, host_page_size);
Richard Henderson2b730f72023-07-07 21:40:32 +0100584 }
edgar_igl54c5a2a2009-02-03 23:06:34 +0000585 }
586
Richard Henderson03798602023-07-07 21:40:39 +0100587 if (!(flags & (MAP_FIXED | MAP_FIXED_NOREPLACE))) {
Richard Henderson55baec02023-07-07 21:40:41 +0100588 uintptr_t host_start;
Richard Henderson0dd55812023-07-07 21:40:40 +0100589 int host_prot;
bellarda03e2d42007-11-14 11:29:07 +0000590 void *p;
Richard Hendersona5e7ee42012-06-01 16:07:52 -0700591
bellarda03e2d42007-11-14 11:29:07 +0000592 host_len = len + offset - host_offset;
Richard Hendersonb36b2b12024-01-02 12:57:45 +1100593 host_len = ROUND_UP(host_len, host_page_size);
Richard Henderson0dd55812023-07-07 21:40:40 +0100594 host_prot = target_to_host_prot(target_prot);
Richard Hendersona5e7ee42012-06-01 16:07:52 -0700595
Richard Henderson621ac472024-01-02 12:57:43 +1100596 /* Note: we prefer to control the mapping address. */
Richard Henderson3e8f1622021-02-12 10:48:43 -0800597 p = mmap(g2h_untagged(start), host_len, host_prot,
Richard Hendersona5e7ee42012-06-01 16:07:52 -0700598 flags | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700599 if (p == MAP_FAILED) {
Richard Hendersond558c392024-01-02 12:57:51 +1100600 return -1;
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700601 }
bellarda03e2d42007-11-14 11:29:07 +0000602 /* update start so that it points to the file position at 'offset' */
Richard Henderson55baec02023-07-07 21:40:41 +0100603 host_start = (uintptr_t)p;
edgar_igl54c5a2a2009-02-03 23:06:34 +0000604 if (!(flags & MAP_ANONYMOUS)) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800605 p = mmap(g2h_untagged(start), len, host_prot,
edgar_igl54c5a2a2009-02-03 23:06:34 +0000606 flags | MAP_FIXED, fd, host_offset);
Jürg Billeter83842742013-06-29 11:41:32 +0200607 if (p == MAP_FAILED) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800608 munmap(g2h_untagged(start), host_len);
Richard Hendersond558c392024-01-02 12:57:51 +1100609 return -1;
Jürg Billeter83842742013-06-29 11:41:32 +0200610 }
bellarda03e2d42007-11-14 11:29:07 +0000611 host_start += offset - host_offset;
edgar_igl54c5a2a2009-02-03 23:06:34 +0000612 }
bellarda03e2d42007-11-14 11:29:07 +0000613 start = h2g(host_start);
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100614 last = start + len - 1;
Ilya Leoshkevichf93b7692022-09-06 02:08:38 +0200615 passthrough_start = start;
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100616 passthrough_last = last;
bellarda03e2d42007-11-14 11:29:07 +0000617 } else {
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100618 last = start + len - 1;
Richard Hendersonb36b2b12024-01-02 12:57:45 +1100619 real_last = ROUND_UP(last, host_page_size) - 1;
balrog7ab240a2008-04-26 12:17:34 +0000620
Akihiko Odakic3dd50d2023-08-02 16:17:47 +0900621 if (flags & MAP_FIXED_NOREPLACE) {
622 /* Validate that the chosen range is empty. */
623 if (!page_check_range_empty(start, last)) {
624 errno = EEXIST;
Richard Hendersond558c392024-01-02 12:57:51 +1100625 return -1;
Akihiko Odakic3dd50d2023-08-02 16:17:47 +0900626 }
627
628 /*
629 * With reserved_va, the entire address space is mmaped in the
630 * host to ensure it isn't accidentally used for something else.
631 * We have just checked that the guest address is not mapped
632 * within the guest, but need to replace the host reservation.
633 *
634 * Without reserved_va, despite the guest address check above,
635 * keep MAP_FIXED_NOREPLACE so that the guest does not overwrite
636 * any host address mappings.
637 */
638 if (reserved_va) {
639 flags = (flags & ~MAP_FIXED_NOREPLACE) | MAP_FIXED;
640 }
Richard Henderson03798602023-07-07 21:40:39 +0100641 }
642
Richard Henderson2b730f72023-07-07 21:40:32 +0100643 /*
644 * worst case: we cannot map the file because the offset is not
645 * aligned, so we read it
646 */
bellarda03e2d42007-11-14 11:29:07 +0000647 if (!(flags & MAP_ANONYMOUS) &&
Richard Henderson621ac472024-01-02 12:57:43 +1100648 (offset & (host_page_size - 1)) != (start & (host_page_size - 1))) {
Richard Henderson2b730f72023-07-07 21:40:32 +0100649 /*
650 * msync() won't work here, so we return an error if write is
651 * possible while it is a shared mapping
652 */
Richard Henderson0dd55812023-07-07 21:40:40 +0100653 if ((flags & MAP_TYPE) == MAP_SHARED
654 && (target_prot & PROT_WRITE)) {
bellarda03e2d42007-11-14 11:29:07 +0000655 errno = EINVAL;
Richard Hendersond558c392024-01-02 12:57:51 +1100656 return -1;
bellarda03e2d42007-11-14 11:29:07 +0000657 }
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700658 retaddr = target_mmap(start, len, target_prot | PROT_WRITE,
Richard Henderson03798602023-07-07 21:40:39 +0100659 (flags & (MAP_FIXED | MAP_FIXED_NOREPLACE))
660 | MAP_PRIVATE | MAP_ANONYMOUS,
bellarda03e2d42007-11-14 11:29:07 +0000661 -1, 0);
Richard Henderson2b730f72023-07-07 21:40:32 +0100662 if (retaddr == -1) {
Richard Hendersond558c392024-01-02 12:57:51 +1100663 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100664 }
665 if (pread(fd, g2h_untagged(start), len, offset) == -1) {
Richard Hendersond558c392024-01-02 12:57:51 +1100666 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100667 }
Richard Henderson0dd55812023-07-07 21:40:40 +0100668 if (!(target_prot & PROT_WRITE)) {
Richard Henderson9dba3ca2020-05-19 11:56:44 -0700669 ret = target_mprotect(start, len, target_prot);
Paolo Bonzini86abac02015-09-14 12:31:44 +0200670 assert(ret == 0);
bellarda03e2d42007-11-14 11:29:07 +0000671 }
Richard Henderson6ecc2552024-01-02 12:57:54 +1100672 return mmap_end(start, last, -1, 0, flags, page_flags);
bellard54936002003-05-13 00:25:15 +0000673 }
Richard Henderson2b730f72023-07-07 21:40:32 +0100674
bellarda03e2d42007-11-14 11:29:07 +0000675 /* handle the start of the mapping */
676 if (start > real_start) {
Richard Henderson621ac472024-01-02 12:57:43 +1100677 if (real_last == real_start + host_page_size - 1) {
bellarda03e2d42007-11-14 11:29:07 +0000678 /* one single host page */
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100679 if (!mmap_frag(real_start, start, last,
Richard Henderson99982be2023-07-07 21:40:43 +0100680 target_prot, flags, fd, offset)) {
Richard Hendersond558c392024-01-02 12:57:51 +1100681 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100682 }
Richard Henderson6ecc2552024-01-02 12:57:54 +1100683 return mmap_end(start, last, -1, 0, flags, page_flags);
bellarda03e2d42007-11-14 11:29:07 +0000684 }
Richard Henderson99982be2023-07-07 21:40:43 +0100685 if (!mmap_frag(real_start, start,
Richard Henderson621ac472024-01-02 12:57:43 +1100686 real_start + host_page_size - 1,
Richard Henderson99982be2023-07-07 21:40:43 +0100687 target_prot, flags, fd, offset)) {
Richard Hendersond558c392024-01-02 12:57:51 +1100688 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100689 }
Richard Henderson621ac472024-01-02 12:57:43 +1100690 real_start += host_page_size;
bellard54936002003-05-13 00:25:15 +0000691 }
bellarda03e2d42007-11-14 11:29:07 +0000692 /* handle the end of the mapping */
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100693 if (last < real_last) {
Richard Henderson621ac472024-01-02 12:57:43 +1100694 abi_ulong real_page = real_last - host_page_size + 1;
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100695 if (!mmap_frag(real_page, real_page, last,
Richard Henderson99982be2023-07-07 21:40:43 +0100696 target_prot, flags, fd,
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100697 offset + real_page - start)) {
Richard Hendersond558c392024-01-02 12:57:51 +1100698 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100699 }
Richard Henderson621ac472024-01-02 12:57:43 +1100700 real_last -= host_page_size;
bellarda03e2d42007-11-14 11:29:07 +0000701 }
ths3b46e622007-09-17 08:09:54 +0000702
bellarda03e2d42007-11-14 11:29:07 +0000703 /* map the middle (easier) */
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100704 if (real_start < real_last) {
Akihiko Odakiddcdd8c2023-08-02 16:17:48 +0900705 void *p, *want_p;
Richard Henderson55baec02023-07-07 21:40:41 +0100706 off_t offset1;
Akihiko Odakiddcdd8c2023-08-02 16:17:48 +0900707 size_t len1;
Richard Henderson55baec02023-07-07 21:40:41 +0100708
Richard Henderson2b730f72023-07-07 21:40:32 +0100709 if (flags & MAP_ANONYMOUS) {
bellarda03e2d42007-11-14 11:29:07 +0000710 offset1 = 0;
Richard Henderson2b730f72023-07-07 21:40:32 +0100711 } else {
bellarda03e2d42007-11-14 11:29:07 +0000712 offset1 = offset + real_start - start;
Richard Henderson2b730f72023-07-07 21:40:32 +0100713 }
Akihiko Odakiddcdd8c2023-08-02 16:17:48 +0900714 len1 = real_last - real_start + 1;
715 want_p = g2h_untagged(real_start);
716
717 p = mmap(want_p, len1, target_to_host_prot(target_prot),
718 flags, fd, offset1);
719 if (p != want_p) {
720 if (p != MAP_FAILED) {
721 munmap(p, len1);
722 errno = EEXIST;
723 }
Richard Hendersond558c392024-01-02 12:57:51 +1100724 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100725 }
Ilya Leoshkevichf93b7692022-09-06 02:08:38 +0200726 passthrough_start = real_start;
Richard Hendersonf9cd8f52023-07-07 21:40:47 +0100727 passthrough_last = real_last;
bellarda03e2d42007-11-14 11:29:07 +0000728 }
bellard54936002003-05-13 00:25:15 +0000729 }
Richard Henderson6ecc2552024-01-02 12:57:54 +1100730 return mmap_end(start, last, passthrough_start, passthrough_last,
731 flags, page_flags);
Richard Hendersond558c392024-01-02 12:57:51 +1100732}
733
734/* NOTE: all the constants are the HOST ones */
735abi_long target_mmap(abi_ulong start, abi_ulong len, int target_prot,
736 int flags, int fd, off_t offset)
737{
738 abi_long ret;
Richard Hendersone8cec512024-01-02 12:57:52 +1100739 int page_flags;
Richard Hendersond558c392024-01-02 12:57:51 +1100740
741 trace_target_mmap(start, len, target_prot, flags, fd, offset);
Richard Hendersone8cec512024-01-02 12:57:52 +1100742
743 if (!len) {
744 errno = EINVAL;
745 return -1;
746 }
747
748 page_flags = validate_prot_to_pageflags(target_prot);
749 if (!page_flags) {
750 errno = EINVAL;
751 return -1;
752 }
753
754 /* Also check for overflows... */
755 len = TARGET_PAGE_ALIGN(len);
756 if (!len || len != (size_t)len) {
757 errno = ENOMEM;
758 return -1;
759 }
760
761 if (offset & ~TARGET_PAGE_MASK) {
762 errno = EINVAL;
763 return -1;
764 }
765 if (flags & (MAP_FIXED | MAP_FIXED_NOREPLACE)) {
766 if (start & ~TARGET_PAGE_MASK) {
767 errno = EINVAL;
768 return -1;
769 }
770 if (!guest_range_valid_untagged(start, len)) {
771 errno = ENOMEM;
772 return -1;
773 }
774 }
775
Richard Hendersond558c392024-01-02 12:57:51 +1100776 mmap_lock();
777
Richard Hendersone8cec512024-01-02 12:57:52 +1100778 ret = target_mmap__locked(start, len, target_prot, flags,
779 page_flags, fd, offset);
Richard Hendersond558c392024-01-02 12:57:51 +1100780
pbrookc8a706f2008-06-02 16:16:42 +0000781 mmap_unlock();
Richard Hendersone8cec512024-01-02 12:57:52 +1100782
783 /*
784 * If we're mapping shared memory, ensure we generate code for parallel
785 * execution and flush old translations. This will work up to the level
786 * supported by the host -- anything that requires EXCP_ATOMIC will not
787 * be atomic with respect to an external process.
788 */
789 if (ret != -1 && (flags & MAP_TYPE) != MAP_PRIVATE) {
790 CPUState *cpu = thread_cpu;
791 if (!(cpu->tcg_cflags & CF_PARALLEL)) {
792 cpu->tcg_cflags |= CF_PARALLEL;
793 tb_flush(cpu);
794 }
795 }
796
Richard Hendersond558c392024-01-02 12:57:51 +1100797 return ret;
bellard54936002003-05-13 00:25:15 +0000798}
799
Richard Henderson912ff692023-10-03 13:59:55 -0700800static int mmap_reserve_or_unmap(abi_ulong start, abi_ulong len)
Paul Brook68a1c812010-05-29 02:27:35 +0100801{
Richard Henderson621ac472024-01-02 12:57:43 +1100802 int host_page_size = qemu_real_host_page_size();
Paul Brook68a1c812010-05-29 02:27:35 +0100803 abi_ulong real_start;
Richard Henderson260561d2023-07-07 21:40:48 +0100804 abi_ulong real_last;
805 abi_ulong real_len;
806 abi_ulong last;
807 abi_ulong a;
Richard Henderson558a4412023-07-07 21:40:49 +0100808 void *host_start;
Paul Brook68a1c812010-05-29 02:27:35 +0100809 int prot;
810
Richard Henderson260561d2023-07-07 21:40:48 +0100811 last = start + len - 1;
Richard Henderson621ac472024-01-02 12:57:43 +1100812 real_start = start & -host_page_size;
Richard Hendersonb36b2b12024-01-02 12:57:45 +1100813 real_last = ROUND_UP(last, host_page_size) - 1;
Richard Henderson260561d2023-07-07 21:40:48 +0100814
815 /*
816 * If guest pages remain on the first or last host pages,
817 * adjust the deallocation to retain those guest pages.
818 * The single page special case is required for the last page,
819 * lest real_start overflow to zero.
820 */
Richard Henderson621ac472024-01-02 12:57:43 +1100821 if (real_last - real_start < host_page_size) {
Paul Brook68a1c812010-05-29 02:27:35 +0100822 prot = 0;
Richard Henderson260561d2023-07-07 21:40:48 +0100823 for (a = real_start; a < start; a += TARGET_PAGE_SIZE) {
824 prot |= page_get_flags(a);
Paul Brook68a1c812010-05-29 02:27:35 +0100825 }
Richard Henderson260561d2023-07-07 21:40:48 +0100826 for (a = last; a < real_last; a += TARGET_PAGE_SIZE) {
827 prot |= page_get_flags(a + 1);
828 }
829 if (prot != 0) {
Richard Henderson912ff692023-10-03 13:59:55 -0700830 return 0;
Richard Henderson260561d2023-07-07 21:40:48 +0100831 }
832 } else {
833 for (prot = 0, a = real_start; a < start; a += TARGET_PAGE_SIZE) {
834 prot |= page_get_flags(a);
Paul Brook68a1c812010-05-29 02:27:35 +0100835 }
Richard Henderson2b730f72023-07-07 21:40:32 +0100836 if (prot != 0) {
Richard Henderson621ac472024-01-02 12:57:43 +1100837 real_start += host_page_size;
Richard Henderson2b730f72023-07-07 21:40:32 +0100838 }
Richard Henderson260561d2023-07-07 21:40:48 +0100839
840 for (prot = 0, a = last; a < real_last; a += TARGET_PAGE_SIZE) {
841 prot |= page_get_flags(a + 1);
Paul Brook68a1c812010-05-29 02:27:35 +0100842 }
Richard Henderson2b730f72023-07-07 21:40:32 +0100843 if (prot != 0) {
Richard Henderson621ac472024-01-02 12:57:43 +1100844 real_last -= host_page_size;
Richard Henderson260561d2023-07-07 21:40:48 +0100845 }
846
847 if (real_last < real_start) {
Richard Henderson912ff692023-10-03 13:59:55 -0700848 return 0;
Richard Henderson2b730f72023-07-07 21:40:32 +0100849 }
Paul Brook68a1c812010-05-29 02:27:35 +0100850 }
Richard Henderson260561d2023-07-07 21:40:48 +0100851
852 real_len = real_last - real_start + 1;
853 host_start = g2h_untagged(real_start);
854
Richard Henderson558a4412023-07-07 21:40:49 +0100855 if (reserved_va) {
856 void *ptr = mmap(host_start, real_len, PROT_NONE,
857 MAP_FIXED | MAP_ANONYMOUS
858 | MAP_PRIVATE | MAP_NORESERVE, -1, 0);
Richard Henderson912ff692023-10-03 13:59:55 -0700859 return ptr == host_start ? 0 : -1;
Richard Henderson558a4412023-07-07 21:40:49 +0100860 }
Richard Henderson912ff692023-10-03 13:59:55 -0700861 return munmap(host_start, real_len);
Paul Brook68a1c812010-05-29 02:27:35 +0100862}
863
blueswir1992f48a2007-10-14 16:27:31 +0000864int target_munmap(abi_ulong start, abi_ulong len)
bellard54936002003-05-13 00:25:15 +0000865{
Richard Henderson912ff692023-10-03 13:59:55 -0700866 int ret;
867
Alex Bennéeb7b18d22019-12-05 12:25:16 +0000868 trace_target_munmap(start, len);
869
Richard Henderson2b730f72023-07-07 21:40:32 +0100870 if (start & ~TARGET_PAGE_MASK) {
Richard Henderson912ff692023-10-03 13:59:55 -0700871 errno = EINVAL;
872 return -1;
Richard Henderson2b730f72023-07-07 21:40:32 +0100873 }
bellard54936002003-05-13 00:25:15 +0000874 len = TARGET_PAGE_ALIGN(len);
Richard Henderson46b12f42021-02-12 10:48:46 -0800875 if (len == 0 || !guest_range_valid_untagged(start, len)) {
Richard Henderson912ff692023-10-03 13:59:55 -0700876 errno = EINVAL;
877 return -1;
Max Filippovebf9a362018-03-07 13:50:10 -0800878 }
879
pbrookc8a706f2008-06-02 16:16:42 +0000880 mmap_lock();
Richard Henderson912ff692023-10-03 13:59:55 -0700881 ret = mmap_reserve_or_unmap(start, len);
882 if (likely(ret == 0)) {
883 page_set_flags(start, start + len - 1, 0);
884 shm_region_rm_complete(start, start + len - 1);
885 }
pbrookc8a706f2008-06-02 16:16:42 +0000886 mmap_unlock();
Richard Hendersond7b0c5d2023-07-07 21:40:50 +0100887
Richard Henderson912ff692023-10-03 13:59:55 -0700888 return ret;
bellard54936002003-05-13 00:25:15 +0000889}
890
blueswir1992f48a2007-10-14 16:27:31 +0000891abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size,
892 abi_ulong new_size, unsigned long flags,
893 abi_ulong new_addr)
bellard54936002003-05-13 00:25:15 +0000894{
895 int prot;
aurel32f19412a2008-12-08 18:12:40 +0000896 void *host_addr;
bellard54936002003-05-13 00:25:15 +0000897
Richard Henderson46b12f42021-02-12 10:48:46 -0800898 if (!guest_range_valid_untagged(old_addr, old_size) ||
Max Filippovebf9a362018-03-07 13:50:10 -0800899 ((flags & MREMAP_FIXED) &&
Richard Henderson46b12f42021-02-12 10:48:46 -0800900 !guest_range_valid_untagged(new_addr, new_size)) ||
Richard Purdieccc5ccc2021-01-08 17:42:12 +0000901 ((flags & MREMAP_MAYMOVE) == 0 &&
Richard Henderson46b12f42021-02-12 10:48:46 -0800902 !guest_range_valid_untagged(old_addr, new_size))) {
Max Filippovebf9a362018-03-07 13:50:10 -0800903 errno = ENOMEM;
904 return -1;
905 }
906
pbrookc8a706f2008-06-02 16:16:42 +0000907 mmap_lock();
aurel32f19412a2008-12-08 18:12:40 +0000908
Paul Brook68a1c812010-05-29 02:27:35 +0100909 if (flags & MREMAP_FIXED) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800910 host_addr = mremap(g2h_untagged(old_addr), old_size, new_size,
911 flags, g2h_untagged(new_addr));
Paul Brook68a1c812010-05-29 02:27:35 +0100912
Laurent Vivierb76f21a2015-08-24 14:53:54 +0200913 if (reserved_va && host_addr != MAP_FAILED) {
Richard Henderson2b730f72023-07-07 21:40:32 +0100914 /*
915 * If new and old addresses overlap then the above mremap will
916 * already have failed with EINVAL.
917 */
Richard Henderson558a4412023-07-07 21:40:49 +0100918 mmap_reserve_or_unmap(old_addr, old_size);
Paul Brook68a1c812010-05-29 02:27:35 +0100919 }
920 } else if (flags & MREMAP_MAYMOVE) {
aurel32f19412a2008-12-08 18:12:40 +0000921 abi_ulong mmap_start;
922
Richard Henderson30ab9ef2019-05-19 13:19:52 -0700923 mmap_start = mmap_find_vma(0, new_size, TARGET_PAGE_SIZE);
aurel32f19412a2008-12-08 18:12:40 +0000924
925 if (mmap_start == -1) {
926 errno = ENOMEM;
927 host_addr = MAP_FAILED;
Paul Brook68a1c812010-05-29 02:27:35 +0100928 } else {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800929 host_addr = mremap(g2h_untagged(old_addr), old_size, new_size,
930 flags | MREMAP_FIXED,
931 g2h_untagged(mmap_start));
Laurent Vivierb76f21a2015-08-24 14:53:54 +0200932 if (reserved_va) {
Richard Henderson558a4412023-07-07 21:40:49 +0100933 mmap_reserve_or_unmap(old_addr, old_size);
amateurc65ffe62010-09-14 13:22:34 +0800934 }
Paul Brook68a1c812010-05-29 02:27:35 +0100935 }
blueswir13af72a42008-12-15 17:58:49 +0000936 } else {
Laurent Vivierea800032023-09-25 17:10:26 +0200937 int page_flags = 0;
Laurent Vivierb76f21a2015-08-24 14:53:54 +0200938 if (reserved_va && old_size < new_size) {
Paul Brook68a1c812010-05-29 02:27:35 +0100939 abi_ulong addr;
940 for (addr = old_addr + old_size;
941 addr < old_addr + new_size;
942 addr++) {
Laurent Vivierea800032023-09-25 17:10:26 +0200943 page_flags |= page_get_flags(addr);
Paul Brook68a1c812010-05-29 02:27:35 +0100944 }
945 }
Laurent Vivierea800032023-09-25 17:10:26 +0200946 if (page_flags == 0) {
Richard Henderson3e8f1622021-02-12 10:48:43 -0800947 host_addr = mremap(g2h_untagged(old_addr),
948 old_size, new_size, flags);
Tobias Koch56d19082020-10-28 22:38:33 +0100949
950 if (host_addr != MAP_FAILED) {
951 /* Check if address fits target address space */
Richard Henderson46b12f42021-02-12 10:48:46 -0800952 if (!guest_range_valid_untagged(h2g(host_addr), new_size)) {
Tobias Koch56d19082020-10-28 22:38:33 +0100953 /* Revert mremap() changes */
Richard Henderson3e8f1622021-02-12 10:48:43 -0800954 host_addr = mremap(g2h_untagged(old_addr),
955 new_size, old_size, flags);
Tobias Koch56d19082020-10-28 22:38:33 +0100956 errno = ENOMEM;
957 host_addr = MAP_FAILED;
958 } else if (reserved_va && old_size > new_size) {
Richard Henderson558a4412023-07-07 21:40:49 +0100959 mmap_reserve_or_unmap(old_addr + old_size,
960 old_size - new_size);
Tobias Koch56d19082020-10-28 22:38:33 +0100961 }
Paul Brook68a1c812010-05-29 02:27:35 +0100962 }
963 } else {
964 errno = ENOMEM;
965 host_addr = MAP_FAILED;
966 }
aurel32f19412a2008-12-08 18:12:40 +0000967 }
968
969 if (host_addr == MAP_FAILED) {
pbrookc8a706f2008-06-02 16:16:42 +0000970 new_addr = -1;
971 } else {
972 new_addr = h2g(host_addr);
973 prot = page_get_flags(old_addr);
Richard Henderson49840a42023-03-06 01:51:09 +0300974 page_set_flags(old_addr, old_addr + old_size - 1, 0);
Richard Henderson044e95c2023-08-20 13:39:37 -0700975 shm_region_rm_complete(old_addr, old_addr + old_size - 1);
Richard Henderson49840a42023-03-06 01:51:09 +0300976 page_set_flags(new_addr, new_addr + new_size - 1,
Richard Hendersond9c58582021-02-12 10:48:32 -0800977 prot | PAGE_VALID | PAGE_RESET);
Richard Henderson044e95c2023-08-20 13:39:37 -0700978 shm_region_rm_complete(new_addr, new_addr + new_size - 1);
pbrookc8a706f2008-06-02 16:16:42 +0000979 }
980 mmap_unlock();
bellard54936002003-05-13 00:25:15 +0000981 return new_addr;
982}
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +0200983
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +0200984abi_long target_madvise(abi_ulong start, abi_ulong len_in, int advice)
985{
Richard Hendersone230ec02023-07-07 21:40:54 +0100986 abi_ulong len;
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +0200987 int ret = 0;
988
989 if (start & ~TARGET_PAGE_MASK) {
990 return -TARGET_EINVAL;
991 }
Richard Hendersone230ec02023-07-07 21:40:54 +0100992 if (len_in == 0) {
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +0200993 return 0;
994 }
Richard Hendersone230ec02023-07-07 21:40:54 +0100995 len = TARGET_PAGE_ALIGN(len_in);
996 if (len == 0 || !guest_range_valid_untagged(start, len)) {
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +0200997 return -TARGET_EINVAL;
998 }
999
Helge Deller4530deb2022-12-13 18:03:09 +01001000 /* Translate for some architectures which have different MADV_xxx values */
1001 switch (advice) {
1002 case TARGET_MADV_DONTNEED: /* alpha */
1003 advice = MADV_DONTNEED;
1004 break;
1005 case TARGET_MADV_WIPEONFORK: /* parisc */
1006 advice = MADV_WIPEONFORK;
1007 break;
1008 case TARGET_MADV_KEEPONFORK: /* parisc */
1009 advice = MADV_KEEPONFORK;
1010 break;
1011 /* we do not care about the other MADV_xxx values yet */
1012 }
1013
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +02001014 /*
Helge Deller4530deb2022-12-13 18:03:09 +01001015 * Most advice values are hints, so ignoring and returning success is ok.
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +02001016 *
Helge Deller4530deb2022-12-13 18:03:09 +01001017 * However, some advice values such as MADV_DONTNEED, MADV_WIPEONFORK and
1018 * MADV_KEEPONFORK are not hints and need to be emulated.
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +02001019 *
Helge Deller4530deb2022-12-13 18:03:09 +01001020 * A straight passthrough for those may not be safe because qemu sometimes
1021 * turns private file-backed mappings into anonymous mappings.
Richard Hendersonecb796d2023-07-07 21:40:53 +01001022 * If all guest pages have PAGE_PASSTHROUGH set, mappings have the
1023 * same semantics for the host as for the guest.
Helge Deller4530deb2022-12-13 18:03:09 +01001024 *
1025 * We pass through MADV_WIPEONFORK and MADV_KEEPONFORK if possible and
1026 * return failure if not.
1027 *
1028 * MADV_DONTNEED is passed through as well, if possible.
1029 * If passthrough isn't possible, we nevertheless (wrongly!) return
1030 * success, which is broken but some userspace programs fail to work
1031 * otherwise. Completely implementing such emulation is quite complicated
1032 * though.
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +02001033 */
1034 mmap_lock();
Helge Deller4530deb2022-12-13 18:03:09 +01001035 switch (advice) {
1036 case MADV_WIPEONFORK:
1037 case MADV_KEEPONFORK:
1038 ret = -EINVAL;
1039 /* fall through */
1040 case MADV_DONTNEED:
Richard Hendersonecb796d2023-07-07 21:40:53 +01001041 if (page_check_range(start, len, PAGE_PASSTHROUGH)) {
Helge Deller4530deb2022-12-13 18:03:09 +01001042 ret = get_errno(madvise(g2h_untagged(start), len, advice));
1043 if ((advice == MADV_DONTNEED) && (ret == 0)) {
Richard Henderson10310cb2023-03-06 02:03:13 +03001044 page_reset_target_data(start, start + len - 1);
Helge Deller4530deb2022-12-13 18:03:09 +01001045 }
Vitaly Bukadbbf8972022-07-11 15:00:28 -07001046 }
Ilya Leoshkevich892a4f62022-06-21 16:42:05 +02001047 }
1048 mmap_unlock();
1049
1050 return ret;
1051}
Richard Henderson225a2062023-08-20 09:24:14 -07001052
1053#ifndef TARGET_FORCE_SHMLBA
1054/*
1055 * For most architectures, SHMLBA is the same as the page size;
1056 * some architectures have larger values, in which case they should
1057 * define TARGET_FORCE_SHMLBA and provide a target_shmlba() function.
1058 * This corresponds to the kernel arch code defining __ARCH_FORCE_SHMLBA
1059 * and defining its own value for SHMLBA.
1060 *
1061 * The kernel also permits SHMLBA to be set by the architecture to a
1062 * value larger than the page size without setting __ARCH_FORCE_SHMLBA;
1063 * this means that addresses are rounded to the large size if
1064 * SHM_RND is set but addresses not aligned to that size are not rejected
1065 * as long as they are at least page-aligned. Since the only architecture
1066 * which uses this is ia64 this code doesn't provide for that oddity.
1067 */
1068static inline abi_ulong target_shmlba(CPUArchState *cpu_env)
1069{
1070 return TARGET_PAGE_SIZE;
1071}
1072#endif
1073
1074abi_ulong target_shmat(CPUArchState *cpu_env, int shmid,
1075 abi_ulong shmaddr, int shmflg)
1076{
1077 CPUState *cpu = env_cpu(cpu_env);
1078 abi_ulong raddr;
Richard Henderson225a2062023-08-20 09:24:14 -07001079 struct shmid_ds shm_info;
Richard Henderson69fa2702023-08-20 10:08:44 -07001080 int ret;
Richard Henderson225a2062023-08-20 09:24:14 -07001081 abi_ulong shmlba;
1082
1083 /* shmat pointers are always untagged */
1084
1085 /* find out the length of the shared memory segment */
1086 ret = get_errno(shmctl(shmid, IPC_STAT, &shm_info));
1087 if (is_error(ret)) {
1088 /* can't get length, bail out */
1089 return ret;
1090 }
1091
1092 shmlba = target_shmlba(cpu_env);
1093
1094 if (shmaddr & (shmlba - 1)) {
1095 if (shmflg & SHM_RND) {
1096 shmaddr &= ~(shmlba - 1);
1097 } else {
1098 return -TARGET_EINVAL;
1099 }
1100 }
1101 if (!guest_range_valid_untagged(shmaddr, shm_info.shm_segsz)) {
1102 return -TARGET_EINVAL;
1103 }
1104
Richard Henderson69fa2702023-08-20 10:08:44 -07001105 WITH_MMAP_LOCK_GUARD() {
1106 void *host_raddr;
Richard Henderson044e95c2023-08-20 13:39:37 -07001107 abi_ulong last;
Richard Henderson69fa2702023-08-20 10:08:44 -07001108
1109 if (shmaddr) {
1110 host_raddr = shmat(shmid, (void *)g2h_untagged(shmaddr), shmflg);
1111 } else {
1112 abi_ulong mmap_start;
1113
1114 /* In order to use the host shmat, we need to honor host SHMLBA. */
1115 mmap_start = mmap_find_vma(0, shm_info.shm_segsz,
1116 MAX(SHMLBA, shmlba));
1117
1118 if (mmap_start == -1) {
1119 return -TARGET_ENOMEM;
1120 }
1121 host_raddr = shmat(shmid, g2h_untagged(mmap_start),
1122 shmflg | SHM_REMAP);
1123 }
1124
1125 if (host_raddr == (void *)-1) {
1126 return get_errno(-1);
1127 }
1128 raddr = h2g(host_raddr);
Richard Henderson044e95c2023-08-20 13:39:37 -07001129 last = raddr + shm_info.shm_segsz - 1;
Richard Henderson69fa2702023-08-20 10:08:44 -07001130
Richard Henderson044e95c2023-08-20 13:39:37 -07001131 page_set_flags(raddr, last,
Richard Henderson69fa2702023-08-20 10:08:44 -07001132 PAGE_VALID | PAGE_RESET | PAGE_READ |
1133 (shmflg & SHM_RDONLY ? 0 : PAGE_WRITE));
1134
Richard Henderson044e95c2023-08-20 13:39:37 -07001135 shm_region_rm_complete(raddr, last);
1136 shm_region_add(raddr, last);
Richard Henderson69fa2702023-08-20 10:08:44 -07001137 }
Richard Henderson225a2062023-08-20 09:24:14 -07001138
1139 /*
1140 * We're mapping shared memory, so ensure we generate code for parallel
1141 * execution and flush old translations. This will work up to the level
1142 * supported by the host -- anything that requires EXCP_ATOMIC will not
1143 * be atomic with respect to an external process.
1144 */
1145 if (!(cpu->tcg_cflags & CF_PARALLEL)) {
1146 cpu->tcg_cflags |= CF_PARALLEL;
1147 tb_flush(cpu);
1148 }
1149
Richard Henderson225a2062023-08-20 09:24:14 -07001150 return raddr;
1151}
1152
1153abi_long target_shmdt(abi_ulong shmaddr)
1154{
Richard Henderson225a2062023-08-20 09:24:14 -07001155 abi_long rv;
1156
1157 /* shmdt pointers are always untagged */
1158
Richard Henderson69fa2702023-08-20 10:08:44 -07001159 WITH_MMAP_LOCK_GUARD() {
Richard Henderson044e95c2023-08-20 13:39:37 -07001160 abi_ulong last = shm_region_find(shmaddr);
1161 if (last == 0) {
Richard Hendersonceda5682023-08-20 12:38:49 -07001162 return -TARGET_EINVAL;
1163 }
1164
Richard Henderson69fa2702023-08-20 10:08:44 -07001165 rv = get_errno(shmdt(g2h_untagged(shmaddr)));
Richard Hendersonceda5682023-08-20 12:38:49 -07001166 if (rv == 0) {
Richard Henderson044e95c2023-08-20 13:39:37 -07001167 abi_ulong size = last - shmaddr + 1;
Richard Hendersonceda5682023-08-20 12:38:49 -07001168
Richard Henderson044e95c2023-08-20 13:39:37 -07001169 page_set_flags(shmaddr, last, 0);
1170 shm_region_rm_complete(shmaddr, last);
Richard Hendersonceda5682023-08-20 12:38:49 -07001171 mmap_reserve_or_unmap(shmaddr, size);
1172 }
Richard Henderson225a2062023-08-20 09:24:14 -07001173 }
Richard Henderson225a2062023-08-20 09:24:14 -07001174 return rv;
1175}