2 * mmap support for qemu
4 * Copyright (c) 2003 - 2008 Fabrice Bellard
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.
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.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
22 #include "qemu-common.h"
27 static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER;
28 static __thread int mmap_lock_count;
32 if (mmap_lock_count++ == 0) {
33 pthread_mutex_lock(&mmap_mutex);
37 void mmap_unlock(void)
39 if (--mmap_lock_count == 0) {
40 pthread_mutex_unlock(&mmap_mutex);
44 bool have_mmap_lock(void)
46 return mmap_lock_count > 0 ? true : false;
49 /* Grab lock to make sure things are in a consistent state after fork(). */
50 void mmap_fork_start(void)
54 pthread_mutex_lock(&mmap_mutex);
57 void mmap_fork_end(int child)
60 pthread_mutex_init(&mmap_mutex, NULL);
62 pthread_mutex_unlock(&mmap_mutex);
65 /* NOTE: all the constants are the HOST ones, but addresses are target. */
66 int target_mprotect(abi_ulong start, abi_ulong len, int prot)
68 abi_ulong end, host_start, host_end, addr;
72 printf("mprotect: start=0x" TARGET_FMT_lx
73 " len=0x" TARGET_FMT_lx " prot=%c%c%c\n", start, len,
74 prot & PROT_READ ? 'r' : '-',
75 prot & PROT_WRITE ? 'w' : '-',
76 prot & PROT_EXEC ? 'x' : '-');
79 if ((start & ~TARGET_PAGE_MASK) != 0)
81 len = TARGET_PAGE_ALIGN(len);
85 prot &= PROT_READ | PROT_WRITE | PROT_EXEC;
90 host_start = start & qemu_host_page_mask;
91 host_end = HOST_PAGE_ALIGN(end);
92 if (start > host_start) {
93 /* handle host page containing start */
95 for(addr = host_start; addr < start; addr += TARGET_PAGE_SIZE) {
96 prot1 |= page_get_flags(addr);
98 if (host_end == host_start + qemu_host_page_size) {
99 for(addr = end; addr < host_end; addr += TARGET_PAGE_SIZE) {
100 prot1 |= page_get_flags(addr);
104 ret = mprotect(g2h(host_start), qemu_host_page_size, prot1 & PAGE_BITS);
107 host_start += qemu_host_page_size;
109 if (end < host_end) {
111 for(addr = end; addr < host_end; addr += TARGET_PAGE_SIZE) {
112 prot1 |= page_get_flags(addr);
114 ret = mprotect(g2h(host_end - qemu_host_page_size), qemu_host_page_size,
118 host_end -= qemu_host_page_size;
121 /* handle the pages in the middle */
122 if (host_start < host_end) {
123 ret = mprotect(g2h(host_start), host_end - host_start, prot);
127 page_set_flags(start, start + len, prot | PAGE_VALID);
135 /* map an incomplete host page */
136 static int mmap_frag(abi_ulong real_start,
137 abi_ulong start, abi_ulong end,
138 int prot, int flags, int fd, abi_ulong offset)
140 abi_ulong real_end, addr;
144 real_end = real_start + qemu_host_page_size;
145 host_start = g2h(real_start);
147 /* get the protection of the target pages outside the mapping */
149 for(addr = real_start; addr < real_end; addr++) {
150 if (addr < start || addr >= end)
151 prot1 |= page_get_flags(addr);
155 /* no page was there, so we allocate one */
156 void *p = mmap(host_start, qemu_host_page_size, prot,
157 flags | MAP_ANON, -1, 0);
164 prot_new = prot | prot1;
165 if (!(flags & MAP_ANON)) {
166 /* msync() won't work here, so we return an error if write is
167 possible while it is a shared mapping */
168 if ((flags & TARGET_BSD_MAP_FLAGMASK) == MAP_SHARED &&
172 /* adjust protection to be able to read */
173 if (!(prot1 & PROT_WRITE))
174 mprotect(host_start, qemu_host_page_size, prot1 | PROT_WRITE);
176 /* read the corresponding file data */
177 pread(fd, g2h(start), end - start, offset);
179 /* put final protection */
180 if (prot_new != (prot1 | PROT_WRITE))
181 mprotect(host_start, qemu_host_page_size, prot_new);
183 /* just update the protection */
184 if (prot_new != prot1) {
185 mprotect(host_start, qemu_host_page_size, prot_new);
191 static abi_ulong mmap_next_start = 0x40000000;
193 unsigned long last_brk;
195 /* find a free memory area of size 'size'. The search starts at
196 'start'. If 'start' == 0, then a default start address is used.
199 /* page_init() marks pages used by the host as reserved to be sure not
201 static abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size)
203 abi_ulong addr, addr1, addr_start;
205 unsigned long new_brk;
207 new_brk = (unsigned long)sbrk(0);
208 if (last_brk && last_brk < new_brk && last_brk == (target_ulong)last_brk) {
209 /* This is a hack to catch the host allocating memory with brk().
210 If it uses mmap then we loose.
211 FIXME: We really want to avoid the host allocating memory in
212 the first place, and maybe leave some slack to avoid switching
214 page_set_flags(last_brk & TARGET_PAGE_MASK,
215 TARGET_PAGE_ALIGN(new_brk),
220 size = HOST_PAGE_ALIGN(size);
221 start = start & qemu_host_page_mask;
224 addr = mmap_next_start;
228 for(addr1 = addr; addr1 < (addr + size); addr1 += TARGET_PAGE_SIZE) {
229 prot |= page_get_flags(addr1);
233 addr += qemu_host_page_size;
234 /* we found nothing */
235 if (addr == addr_start)
236 return (abi_ulong)-1;
239 mmap_next_start = addr + size;
243 /* NOTE: all the constants are the HOST ones */
244 abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
245 int flags, int fd, abi_ulong offset)
247 abi_ulong ret, end, real_start, real_end, retaddr, host_offset, host_len;
248 unsigned long host_start;
253 printf("mmap: start=0x" TARGET_FMT_lx
254 " len=0x" TARGET_FMT_lx " prot=%c%c%c flags=",
256 prot & PROT_READ ? 'r' : '-',
257 prot & PROT_WRITE ? 'w' : '-',
258 prot & PROT_EXEC ? 'x' : '-');
259 if (flags & MAP_FIXED)
260 printf("MAP_FIXED ");
261 if (flags & MAP_ANON)
263 switch(flags & TARGET_BSD_MAP_FLAGMASK) {
265 printf("MAP_PRIVATE ");
268 printf("MAP_SHARED ");
271 printf("[MAP_FLAGMASK=0x%x] ", flags & TARGET_BSD_MAP_FLAGMASK);
274 printf("fd=%d offset=" TARGET_FMT_lx "\n", fd, offset);
278 if (offset & ~TARGET_PAGE_MASK) {
283 len = TARGET_PAGE_ALIGN(len);
286 real_start = start & qemu_host_page_mask;
288 if (!(flags & MAP_FIXED)) {
289 abi_ulong mmap_start;
291 host_offset = offset & qemu_host_page_mask;
292 host_len = len + offset - host_offset;
293 host_len = HOST_PAGE_ALIGN(host_len);
294 mmap_start = mmap_find_vma(real_start, host_len);
295 if (mmap_start == (abi_ulong)-1) {
299 /* Note: we prefer to control the mapping address. It is
300 especially important if qemu_host_page_size >
301 qemu_real_host_page_size */
302 p = mmap(g2h(mmap_start),
303 host_len, prot, flags | MAP_FIXED, fd, host_offset);
306 /* update start so that it points to the file position at 'offset' */
307 host_start = (unsigned long)p;
308 if (!(flags & MAP_ANON))
309 host_start += offset - host_offset;
310 start = h2g(host_start);
315 if (start & ~TARGET_PAGE_MASK) {
320 real_end = HOST_PAGE_ALIGN(end);
322 for(addr = real_start; addr < real_end; addr += TARGET_PAGE_SIZE) {
323 flg = page_get_flags(addr);
324 if (flg & PAGE_RESERVED) {
330 /* worst case: we cannot map the file because the offset is not
331 aligned, so we read it */
332 if (!(flags & MAP_ANON) &&
333 (offset & ~qemu_host_page_mask) != (start & ~qemu_host_page_mask)) {
334 /* msync() won't work here, so we return an error if write is
335 possible while it is a shared mapping */
336 if ((flags & TARGET_BSD_MAP_FLAGMASK) == MAP_SHARED &&
337 (prot & PROT_WRITE)) {
341 retaddr = target_mmap(start, len, prot | PROT_WRITE,
342 MAP_FIXED | MAP_PRIVATE | MAP_ANON,
346 pread(fd, g2h(start), len, offset);
347 if (!(prot & PROT_WRITE)) {
348 ret = target_mprotect(start, len, prot);
357 /* handle the start of the mapping */
358 if (start > real_start) {
359 if (real_end == real_start + qemu_host_page_size) {
360 /* one single host page */
361 ret = mmap_frag(real_start, start, end,
362 prot, flags, fd, offset);
367 ret = mmap_frag(real_start, start, real_start + qemu_host_page_size,
368 prot, flags, fd, offset);
371 real_start += qemu_host_page_size;
373 /* handle the end of the mapping */
374 if (end < real_end) {
375 ret = mmap_frag(real_end - qemu_host_page_size,
376 real_end - qemu_host_page_size, real_end,
378 offset + real_end - qemu_host_page_size - start);
381 real_end -= qemu_host_page_size;
384 /* map the middle (easier) */
385 if (real_start < real_end) {
387 unsigned long offset1;
388 if (flags & MAP_ANON)
391 offset1 = offset + real_start - start;
392 p = mmap(g2h(real_start), real_end - real_start,
393 prot, flags, fd, offset1);
399 page_set_flags(start, start + len, prot | PAGE_VALID);
402 printf("ret=0x" TARGET_FMT_lx "\n", start);
413 int target_munmap(abi_ulong start, abi_ulong len)
415 abi_ulong end, real_start, real_end, addr;
419 printf("munmap: start=0x%lx len=0x%lx\n", start, len);
421 if (start & ~TARGET_PAGE_MASK)
423 len = TARGET_PAGE_ALIGN(len);
428 real_start = start & qemu_host_page_mask;
429 real_end = HOST_PAGE_ALIGN(end);
431 if (start > real_start) {
432 /* handle host page containing start */
434 for(addr = real_start; addr < start; addr += TARGET_PAGE_SIZE) {
435 prot |= page_get_flags(addr);
437 if (real_end == real_start + qemu_host_page_size) {
438 for(addr = end; addr < real_end; addr += TARGET_PAGE_SIZE) {
439 prot |= page_get_flags(addr);
444 real_start += qemu_host_page_size;
446 if (end < real_end) {
448 for(addr = end; addr < real_end; addr += TARGET_PAGE_SIZE) {
449 prot |= page_get_flags(addr);
452 real_end -= qemu_host_page_size;
456 /* unmap what we can */
457 if (real_start < real_end) {
458 ret = munmap(g2h(real_start), real_end - real_start);
462 page_set_flags(start, start + len, 0);
467 int target_msync(abi_ulong start, abi_ulong len, int flags)
471 if (start & ~TARGET_PAGE_MASK)
473 len = TARGET_PAGE_ALIGN(len);
480 start &= qemu_host_page_mask;
481 return msync(g2h(start), end - start, flags);