bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | * mmap support for qemu |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 4 | * 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 Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 17 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 18 | */ |
Peter Maydell | d39594e | 2016-01-26 18:17:02 +0000 | [diff] [blame] | 19 | #include "qemu/osdep.h" |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 20 | #include <sys/mman.h> |
blueswir1 | 3af72a4 | 2008-12-15 17:58:49 +0000 | [diff] [blame] | 21 | #include <linux/mman.h> |
| 22 | #include <linux/unistd.h> |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 23 | |
| 24 | #include "qemu.h" |
blueswir1 | 78f5bf1 | 2008-10-02 19:55:50 +0000 | [diff] [blame] | 25 | #include "qemu-common.h" |
Paolo Bonzini | 1652b97 | 2015-04-22 14:15:48 +0200 | [diff] [blame] | 26 | #include "translate-all.h" |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 27 | |
| 28 | //#define DEBUG_MMAP |
| 29 | |
Blue Swirl | 1e6eec8 | 2009-09-05 10:14:07 +0000 | [diff] [blame] | 30 | static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER; |
Juan Quintela | dfd3f85 | 2009-09-23 01:19:03 +0200 | [diff] [blame] | 31 | static __thread int mmap_lock_count; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 32 | |
| 33 | void mmap_lock(void) |
| 34 | { |
| 35 | if (mmap_lock_count++ == 0) { |
| 36 | pthread_mutex_lock(&mmap_mutex); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | void mmap_unlock(void) |
| 41 | { |
| 42 | if (--mmap_lock_count == 0) { |
| 43 | pthread_mutex_unlock(&mmap_mutex); |
| 44 | } |
| 45 | } |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 46 | |
| 47 | /* Grab lock to make sure things are in a consistent state after fork(). */ |
| 48 | void mmap_fork_start(void) |
| 49 | { |
| 50 | if (mmap_lock_count) |
| 51 | abort(); |
| 52 | pthread_mutex_lock(&mmap_mutex); |
| 53 | } |
| 54 | |
| 55 | void mmap_fork_end(int child) |
| 56 | { |
| 57 | if (child) |
| 58 | pthread_mutex_init(&mmap_mutex, NULL); |
| 59 | else |
| 60 | pthread_mutex_unlock(&mmap_mutex); |
| 61 | } |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 62 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 63 | /* NOTE: all the constants are the HOST ones, but addresses are target. */ |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 64 | int target_mprotect(abi_ulong start, abi_ulong len, int prot) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 65 | { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 66 | abi_ulong end, host_start, host_end, addr; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 67 | int prot1, ret; |
| 68 | |
| 69 | #ifdef DEBUG_MMAP |
Blue Swirl | 0bf9e31 | 2009-07-20 17:19:25 +0000 | [diff] [blame] | 70 | printf("mprotect: start=0x" TARGET_ABI_FMT_lx |
| 71 | "len=0x" TARGET_ABI_FMT_lx " prot=%c%c%c\n", start, len, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 72 | prot & PROT_READ ? 'r' : '-', |
| 73 | prot & PROT_WRITE ? 'w' : '-', |
| 74 | prot & PROT_EXEC ? 'x' : '-'); |
| 75 | #endif |
| 76 | |
| 77 | if ((start & ~TARGET_PAGE_MASK) != 0) |
| 78 | return -EINVAL; |
| 79 | len = TARGET_PAGE_ALIGN(len); |
| 80 | end = start + len; |
| 81 | if (end < start) |
| 82 | return -EINVAL; |
balrog | 171cd1c | 2008-04-24 21:11:41 +0000 | [diff] [blame] | 83 | prot &= PROT_READ | PROT_WRITE | PROT_EXEC; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 84 | if (len == 0) |
| 85 | return 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 86 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 87 | mmap_lock(); |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 88 | host_start = start & qemu_host_page_mask; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 89 | host_end = HOST_PAGE_ALIGN(end); |
| 90 | if (start > host_start) { |
| 91 | /* handle host page containing start */ |
| 92 | prot1 = prot; |
| 93 | for(addr = host_start; addr < start; addr += TARGET_PAGE_SIZE) { |
| 94 | prot1 |= page_get_flags(addr); |
| 95 | } |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 96 | if (host_end == host_start + qemu_host_page_size) { |
bellard | d418c81 | 2003-05-13 00:57:50 +0000 | [diff] [blame] | 97 | for(addr = end; addr < host_end; addr += TARGET_PAGE_SIZE) { |
| 98 | prot1 |= page_get_flags(addr); |
| 99 | } |
| 100 | end = host_end; |
| 101 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 102 | ret = mprotect(g2h(host_start), qemu_host_page_size, prot1 & PAGE_BITS); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 103 | if (ret != 0) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 104 | goto error; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 105 | host_start += qemu_host_page_size; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 106 | } |
| 107 | if (end < host_end) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 108 | prot1 = prot; |
| 109 | for(addr = end; addr < host_end; addr += TARGET_PAGE_SIZE) { |
| 110 | prot1 |= page_get_flags(addr); |
| 111 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 112 | ret = mprotect(g2h(host_end - qemu_host_page_size), qemu_host_page_size, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 113 | prot1 & PAGE_BITS); |
| 114 | if (ret != 0) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 115 | goto error; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 116 | host_end -= qemu_host_page_size; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 117 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 118 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 119 | /* handle the pages in the middle */ |
| 120 | if (host_start < host_end) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 121 | ret = mprotect(g2h(host_start), host_end - host_start, prot); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 122 | if (ret != 0) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 123 | goto error; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 124 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 125 | page_set_flags(start, start + len, prot | PAGE_VALID); |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 126 | mmap_unlock(); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 127 | return 0; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 128 | error: |
| 129 | mmap_unlock(); |
| 130 | return ret; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | /* map an incomplete host page */ |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 134 | static int mmap_frag(abi_ulong real_start, |
| 135 | abi_ulong start, abi_ulong end, |
| 136 | int prot, int flags, int fd, abi_ulong offset) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 137 | { |
ths | 80210bc | 2007-11-02 19:08:57 +0000 | [diff] [blame] | 138 | abi_ulong real_end, addr; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 139 | void *host_start; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 140 | int prot1, prot_new; |
| 141 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 142 | real_end = real_start + qemu_host_page_size; |
| 143 | host_start = g2h(real_start); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 144 | |
| 145 | /* get the protection of the target pages outside the mapping */ |
| 146 | prot1 = 0; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 147 | for(addr = real_start; addr < real_end; addr++) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 148 | if (addr < start || addr >= end) |
| 149 | prot1 |= page_get_flags(addr); |
| 150 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 151 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 152 | if (prot1 == 0) { |
| 153 | /* no page was there, so we allocate one */ |
ths | 80210bc | 2007-11-02 19:08:57 +0000 | [diff] [blame] | 154 | void *p = mmap(host_start, qemu_host_page_size, prot, |
| 155 | flags | MAP_ANONYMOUS, -1, 0); |
| 156 | if (p == MAP_FAILED) |
| 157 | return -1; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 158 | prot1 = prot; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 159 | } |
| 160 | prot1 &= PAGE_BITS; |
| 161 | |
| 162 | prot_new = prot | prot1; |
| 163 | if (!(flags & MAP_ANONYMOUS)) { |
| 164 | /* msync() won't work here, so we return an error if write is |
| 165 | possible while it is a shared mapping */ |
| 166 | if ((flags & MAP_TYPE) == MAP_SHARED && |
| 167 | (prot & PROT_WRITE)) |
Juan Quintela | ee63650 | 2010-01-20 00:56:24 +0100 | [diff] [blame] | 168 | return -1; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 169 | |
| 170 | /* adjust protection to be able to read */ |
| 171 | if (!(prot1 & PROT_WRITE)) |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 172 | mprotect(host_start, qemu_host_page_size, prot1 | PROT_WRITE); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 173 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 174 | /* read the corresponding file data */ |
Kirill A. Shutemov | fb7e378 | 2010-01-20 00:56:20 +0100 | [diff] [blame] | 175 | if (pread(fd, g2h(start), end - start, offset) == -1) |
| 176 | return -1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 177 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 178 | /* put final protection */ |
| 179 | if (prot_new != (prot1 | PROT_WRITE)) |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 180 | mprotect(host_start, qemu_host_page_size, prot_new); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 181 | } else { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 182 | if (prot_new != prot1) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 183 | mprotect(host_start, qemu_host_page_size, prot_new); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 184 | } |
Chen Gang | e6deac9 | 2015-12-30 09:10:54 +0800 | [diff] [blame] | 185 | if (prot_new & PROT_WRITE) { |
| 186 | memset(g2h(start), 0, end - start); |
| 187 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 188 | } |
| 189 | return 0; |
| 190 | } |
| 191 | |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 192 | #if HOST_LONG_BITS == 64 && TARGET_ABI_BITS == 64 |
| 193 | # define TASK_UNMAPPED_BASE (1ul << 38) |
| 194 | #elif defined(__CYGWIN__) |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 195 | /* Cygwin doesn't have a whole lot of address space. */ |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 196 | # define TASK_UNMAPPED_BASE 0x18000000 |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 197 | #else |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 198 | # define TASK_UNMAPPED_BASE 0x40000000 |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 199 | #endif |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 200 | abi_ulong mmap_next_start = TASK_UNMAPPED_BASE; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 201 | |
pbrook | 0776590 | 2008-05-31 16:33:53 +0000 | [diff] [blame] | 202 | unsigned long last_brk; |
| 203 | |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 204 | /* Subroutine of mmap_find_vma, used when we have pre-allocated a chunk |
| 205 | of guest address space. */ |
| 206 | static abi_ulong mmap_find_vma_reserved(abi_ulong start, abi_ulong size) |
| 207 | { |
| 208 | abi_ulong addr; |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 209 | abi_ulong end_addr; |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 210 | int prot; |
| 211 | int looped = 0; |
| 212 | |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 213 | if (size > reserved_va) { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 214 | return (abi_ulong)-1; |
| 215 | } |
| 216 | |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 217 | size = HOST_PAGE_ALIGN(size); |
| 218 | end_addr = start + size; |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 219 | if (end_addr > reserved_va) { |
| 220 | end_addr = reserved_va; |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 221 | } |
| 222 | addr = end_addr - qemu_host_page_size; |
| 223 | |
| 224 | while (1) { |
| 225 | if (addr > end_addr) { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 226 | if (looped) { |
| 227 | return (abi_ulong)-1; |
| 228 | } |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 229 | end_addr = reserved_va; |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 230 | addr = end_addr - qemu_host_page_size; |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 231 | looped = 1; |
| 232 | continue; |
| 233 | } |
| 234 | prot = page_get_flags(addr); |
| 235 | if (prot) { |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 236 | end_addr = addr; |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 237 | } |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 238 | if (addr + size == end_addr) { |
| 239 | break; |
| 240 | } |
| 241 | addr -= qemu_host_page_size; |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 242 | } |
Peter Maydell | 59e9d91 | 2012-03-08 14:40:33 +0000 | [diff] [blame] | 243 | |
| 244 | if (start == mmap_next_start) { |
| 245 | mmap_next_start = addr; |
| 246 | } |
| 247 | |
| 248 | return addr; |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 249 | } |
| 250 | |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 251 | /* |
| 252 | * Find and reserve a free memory area of size 'size'. The search |
| 253 | * starts at 'start'. |
| 254 | * It must be called with mmap_lock() held. |
| 255 | * Return -1 if error. |
| 256 | */ |
Riku Voipio | 9ad197d | 2009-04-21 17:23:23 +0300 | [diff] [blame] | 257 | abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size) |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 258 | { |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 259 | void *ptr, *prev; |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 260 | abi_ulong addr; |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 261 | int wrapped, repeat; |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 262 | |
| 263 | /* If 'start' == 0, then a default start address is used. */ |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 264 | if (start == 0) { |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 265 | start = mmap_next_start; |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 266 | } else { |
| 267 | start &= qemu_host_page_mask; |
| 268 | } |
| 269 | |
| 270 | size = HOST_PAGE_ALIGN(size); |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 271 | |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 272 | if (reserved_va) { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 273 | return mmap_find_vma_reserved(start, size); |
| 274 | } |
| 275 | |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 276 | addr = start; |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 277 | wrapped = repeat = 0; |
| 278 | prev = 0; |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 279 | |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 280 | for (;; prev = ptr) { |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 281 | /* |
| 282 | * Reserve needed memory area to avoid a race. |
| 283 | * It should be discarded using: |
| 284 | * - mmap() with MAP_FIXED flag |
| 285 | * - mremap() with MREMAP_FIXED flag |
| 286 | * - shmat() with SHM_REMAP flag |
| 287 | */ |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 288 | ptr = mmap(g2h(addr), size, PROT_NONE, |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 289 | MAP_ANONYMOUS|MAP_PRIVATE|MAP_NORESERVE, -1, 0); |
| 290 | |
| 291 | /* ENOMEM, if host address space has no memory */ |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 292 | if (ptr == MAP_FAILED) { |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 293 | return (abi_ulong)-1; |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 294 | } |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 295 | |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 296 | /* Count the number of sequential returns of the same address. |
| 297 | This is used to modify the search algorithm below. */ |
| 298 | repeat = (ptr == prev ? repeat + 1 : 0); |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 299 | |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 300 | if (h2g_valid(ptr + size - 1)) { |
| 301 | addr = h2g(ptr); |
| 302 | |
| 303 | if ((addr & ~TARGET_PAGE_MASK) == 0) { |
| 304 | /* Success. */ |
| 305 | if (start == mmap_next_start && addr >= TASK_UNMAPPED_BASE) { |
| 306 | mmap_next_start = addr + size; |
| 307 | } |
| 308 | return addr; |
| 309 | } |
| 310 | |
| 311 | /* The address is not properly aligned for the target. */ |
| 312 | switch (repeat) { |
| 313 | case 0: |
| 314 | /* Assume the result that the kernel gave us is the |
| 315 | first with enough free space, so start again at the |
| 316 | next higher target page. */ |
| 317 | addr = TARGET_PAGE_ALIGN(addr); |
| 318 | break; |
| 319 | case 1: |
| 320 | /* Sometimes the kernel decides to perform the allocation |
| 321 | at the top end of memory instead. */ |
| 322 | addr &= TARGET_PAGE_MASK; |
| 323 | break; |
| 324 | case 2: |
| 325 | /* Start over at low memory. */ |
| 326 | addr = 0; |
| 327 | break; |
| 328 | default: |
| 329 | /* Fail. This unaligned block must the last. */ |
| 330 | addr = -1; |
| 331 | break; |
| 332 | } |
| 333 | } else { |
| 334 | /* Since the result the kernel gave didn't fit, start |
| 335 | again at low memory. If any repetition, fail. */ |
| 336 | addr = (repeat ? -1 : 0); |
| 337 | } |
| 338 | |
| 339 | /* Unmap and try again. */ |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 340 | munmap(ptr, size); |
Kirill A. Shutemov | fe3b415 | 2009-08-13 21:03:58 +0300 | [diff] [blame] | 341 | |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 342 | /* ENOMEM if we checked the whole of the target address space. */ |
Blue Swirl | d0b3e4f | 2010-09-18 05:53:14 +0000 | [diff] [blame] | 343 | if (addr == (abi_ulong)-1) { |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 344 | return (abi_ulong)-1; |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 345 | } else if (addr == 0) { |
| 346 | if (wrapped) { |
| 347 | return (abi_ulong)-1; |
| 348 | } |
| 349 | wrapped = 1; |
| 350 | /* Don't actually use 0 when wrapping, instead indicate |
Stefan Weil | 8186e78 | 2011-04-28 17:20:41 +0200 | [diff] [blame] | 351 | that we'd truly like an allocation in low memory. */ |
Richard Henderson | 14f24e1 | 2010-03-10 15:39:07 -0800 | [diff] [blame] | 352 | addr = (mmap_min_addr > TARGET_PAGE_SIZE |
| 353 | ? TARGET_PAGE_ALIGN(mmap_min_addr) |
| 354 | : TARGET_PAGE_SIZE); |
| 355 | } else if (wrapped && addr >= start) { |
| 356 | return (abi_ulong)-1; |
| 357 | } |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 358 | } |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 359 | } |
| 360 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 361 | /* NOTE: all the constants are the HOST ones */ |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 362 | abi_long target_mmap(abi_ulong start, abi_ulong len, int prot, |
| 363 | int flags, int fd, abi_ulong offset) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 364 | { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 365 | abi_ulong ret, end, real_start, real_end, retaddr, host_offset, host_len; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 366 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 367 | mmap_lock(); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 368 | #ifdef DEBUG_MMAP |
| 369 | { |
Blue Swirl | 0bf9e31 | 2009-07-20 17:19:25 +0000 | [diff] [blame] | 370 | printf("mmap: start=0x" TARGET_ABI_FMT_lx |
| 371 | " len=0x" TARGET_ABI_FMT_lx " prot=%c%c%c flags=", |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 372 | start, len, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 373 | prot & PROT_READ ? 'r' : '-', |
| 374 | prot & PROT_WRITE ? 'w' : '-', |
| 375 | prot & PROT_EXEC ? 'x' : '-'); |
| 376 | if (flags & MAP_FIXED) |
| 377 | printf("MAP_FIXED "); |
| 378 | if (flags & MAP_ANONYMOUS) |
| 379 | printf("MAP_ANON "); |
| 380 | switch(flags & MAP_TYPE) { |
| 381 | case MAP_PRIVATE: |
| 382 | printf("MAP_PRIVATE "); |
| 383 | break; |
| 384 | case MAP_SHARED: |
| 385 | printf("MAP_SHARED "); |
| 386 | break; |
| 387 | default: |
| 388 | printf("[MAP_TYPE=0x%x] ", flags & MAP_TYPE); |
| 389 | break; |
| 390 | } |
Blue Swirl | 0bf9e31 | 2009-07-20 17:19:25 +0000 | [diff] [blame] | 391 | printf("fd=%d offset=" TARGET_ABI_FMT_lx "\n", fd, offset); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 392 | } |
| 393 | #endif |
| 394 | |
pbrook | e89f07d | 2006-02-04 20:46:24 +0000 | [diff] [blame] | 395 | if (offset & ~TARGET_PAGE_MASK) { |
| 396 | errno = EINVAL; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 397 | goto fail; |
pbrook | e89f07d | 2006-02-04 20:46:24 +0000 | [diff] [blame] | 398 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 399 | |
| 400 | len = TARGET_PAGE_ALIGN(len); |
| 401 | if (len == 0) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 402 | goto the_end; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 403 | real_start = start & qemu_host_page_mask; |
Richard Henderson | a5e7ee4 | 2012-06-01 16:07:52 -0700 | [diff] [blame] | 404 | host_offset = offset & qemu_host_page_mask; |
| 405 | |
| 406 | /* If the user is asking for the kernel to find a location, do that |
| 407 | before we truncate the length for mapping files below. */ |
| 408 | if (!(flags & MAP_FIXED)) { |
| 409 | host_len = len + offset - host_offset; |
| 410 | host_len = HOST_PAGE_ALIGN(host_len); |
| 411 | start = mmap_find_vma(real_start, host_len); |
| 412 | if (start == (abi_ulong)-1) { |
| 413 | errno = ENOMEM; |
| 414 | goto fail; |
| 415 | } |
| 416 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 417 | |
edgar_igl | 54c5a2a | 2009-02-03 23:06:34 +0000 | [diff] [blame] | 418 | /* When mapping files into a memory area larger than the file, accesses |
| 419 | to pages beyond the file size will cause a SIGBUS. |
| 420 | |
| 421 | For example, if mmaping a file of 100 bytes on a host with 4K pages |
| 422 | emulating a target with 8K pages, the target expects to be able to |
| 423 | access the first 8K. But the host will trap us on any access beyond |
| 424 | 4K. |
| 425 | |
| 426 | When emulating a target with a larger page-size than the hosts, we |
| 427 | may need to truncate file maps at EOF and add extra anonymous pages |
| 428 | up to the targets page boundary. */ |
| 429 | |
| 430 | if ((qemu_real_host_page_size < TARGET_PAGE_SIZE) |
| 431 | && !(flags & MAP_ANONYMOUS)) { |
| 432 | struct stat sb; |
| 433 | |
| 434 | if (fstat (fd, &sb) == -1) |
| 435 | goto fail; |
| 436 | |
| 437 | /* Are we trying to create a map beyond EOF?. */ |
| 438 | if (offset + len > sb.st_size) { |
| 439 | /* If so, truncate the file map at eof aligned with |
| 440 | the hosts real pagesize. Additional anonymous maps |
| 441 | will be created beyond EOF. */ |
Paolo Bonzini | 0c2d70c | 2015-12-02 13:00:54 +0100 | [diff] [blame] | 442 | len = REAL_HOST_PAGE_ALIGN(sb.st_size - offset); |
edgar_igl | 54c5a2a | 2009-02-03 23:06:34 +0000 | [diff] [blame] | 443 | } |
| 444 | } |
| 445 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 446 | if (!(flags & MAP_FIXED)) { |
Richard Henderson | a5e7ee4 | 2012-06-01 16:07:52 -0700 | [diff] [blame] | 447 | unsigned long host_start; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 448 | void *p; |
Richard Henderson | a5e7ee4 | 2012-06-01 16:07:52 -0700 | [diff] [blame] | 449 | |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 450 | host_len = len + offset - host_offset; |
| 451 | host_len = HOST_PAGE_ALIGN(host_len); |
Richard Henderson | a5e7ee4 | 2012-06-01 16:07:52 -0700 | [diff] [blame] | 452 | |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 453 | /* Note: we prefer to control the mapping address. It is |
| 454 | especially important if qemu_host_page_size > |
| 455 | qemu_real_host_page_size */ |
Richard Henderson | a5e7ee4 | 2012-06-01 16:07:52 -0700 | [diff] [blame] | 456 | p = mmap(g2h(start), host_len, prot, |
| 457 | flags | MAP_FIXED | MAP_ANONYMOUS, -1, 0); |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 458 | if (p == MAP_FAILED) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 459 | goto fail; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 460 | /* update start so that it points to the file position at 'offset' */ |
| 461 | host_start = (unsigned long)p; |
edgar_igl | 54c5a2a | 2009-02-03 23:06:34 +0000 | [diff] [blame] | 462 | if (!(flags & MAP_ANONYMOUS)) { |
Richard Henderson | a5e7ee4 | 2012-06-01 16:07:52 -0700 | [diff] [blame] | 463 | p = mmap(g2h(start), len, prot, |
edgar_igl | 54c5a2a | 2009-02-03 23:06:34 +0000 | [diff] [blame] | 464 | flags | MAP_FIXED, fd, host_offset); |
Jürg Billeter | 8384274 | 2013-06-29 11:41:32 +0200 | [diff] [blame] | 465 | if (p == MAP_FAILED) { |
| 466 | munmap(g2h(start), host_len); |
| 467 | goto fail; |
| 468 | } |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 469 | host_start += offset - host_offset; |
edgar_igl | 54c5a2a | 2009-02-03 23:06:34 +0000 | [diff] [blame] | 470 | } |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 471 | start = h2g(host_start); |
| 472 | } else { |
| 473 | if (start & ~TARGET_PAGE_MASK) { |
pbrook | e89f07d | 2006-02-04 20:46:24 +0000 | [diff] [blame] | 474 | errno = EINVAL; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 475 | goto fail; |
pbrook | e89f07d | 2006-02-04 20:46:24 +0000 | [diff] [blame] | 476 | } |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 477 | end = start + len; |
| 478 | real_end = HOST_PAGE_ALIGN(end); |
balrog | 7ab240a | 2008-04-26 12:17:34 +0000 | [diff] [blame] | 479 | |
aurel32 | 45bc1f5 | 2008-12-08 18:12:33 +0000 | [diff] [blame] | 480 | /* |
| 481 | * Test if requested memory area fits target address space |
| 482 | * It can fail only on 64-bit host with 32-bit target. |
| 483 | * On any other target/host host mmap() handles this error correctly. |
| 484 | */ |
| 485 | if ((unsigned long)start + len - 1 > (abi_ulong) -1) { |
| 486 | errno = EINVAL; |
| 487 | goto fail; |
| 488 | } |
| 489 | |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 490 | /* worst case: we cannot map the file because the offset is not |
| 491 | aligned, so we read it */ |
| 492 | if (!(flags & MAP_ANONYMOUS) && |
| 493 | (offset & ~qemu_host_page_mask) != (start & ~qemu_host_page_mask)) { |
| 494 | /* msync() won't work here, so we return an error if write is |
| 495 | possible while it is a shared mapping */ |
| 496 | if ((flags & MAP_TYPE) == MAP_SHARED && |
| 497 | (prot & PROT_WRITE)) { |
| 498 | errno = EINVAL; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 499 | goto fail; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 500 | } |
| 501 | retaddr = target_mmap(start, len, prot | PROT_WRITE, |
| 502 | MAP_FIXED | MAP_PRIVATE | MAP_ANONYMOUS, |
| 503 | -1, 0); |
| 504 | if (retaddr == -1) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 505 | goto fail; |
Kirill A. Shutemov | fb7e378 | 2010-01-20 00:56:20 +0100 | [diff] [blame] | 506 | if (pread(fd, g2h(start), len, offset) == -1) |
| 507 | goto fail; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 508 | if (!(prot & PROT_WRITE)) { |
| 509 | ret = target_mprotect(start, len, prot); |
Paolo Bonzini | 86abac0 | 2015-09-14 12:31:44 +0200 | [diff] [blame] | 510 | assert(ret == 0); |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 511 | } |
| 512 | goto the_end; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 513 | } |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 514 | |
| 515 | /* handle the start of the mapping */ |
| 516 | if (start > real_start) { |
| 517 | if (real_end == real_start + qemu_host_page_size) { |
| 518 | /* one single host page */ |
| 519 | ret = mmap_frag(real_start, start, end, |
| 520 | prot, flags, fd, offset); |
| 521 | if (ret == -1) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 522 | goto fail; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 523 | goto the_end1; |
| 524 | } |
| 525 | ret = mmap_frag(real_start, start, real_start + qemu_host_page_size, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 526 | prot, flags, fd, offset); |
| 527 | if (ret == -1) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 528 | goto fail; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 529 | real_start += qemu_host_page_size; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 530 | } |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 531 | /* handle the end of the mapping */ |
| 532 | if (end < real_end) { |
| 533 | ret = mmap_frag(real_end - qemu_host_page_size, |
Chen Gang | 530c003 | 2015-12-24 09:07:33 +0800 | [diff] [blame] | 534 | real_end - qemu_host_page_size, end, |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 535 | prot, flags, fd, |
| 536 | offset + real_end - qemu_host_page_size - start); |
| 537 | if (ret == -1) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 538 | goto fail; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 539 | real_end -= qemu_host_page_size; |
| 540 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 541 | |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 542 | /* map the middle (easier) */ |
| 543 | if (real_start < real_end) { |
| 544 | void *p; |
| 545 | unsigned long offset1; |
| 546 | if (flags & MAP_ANONYMOUS) |
| 547 | offset1 = 0; |
| 548 | else |
| 549 | offset1 = offset + real_start - start; |
| 550 | p = mmap(g2h(real_start), real_end - real_start, |
| 551 | prot, flags, fd, offset1); |
| 552 | if (p == MAP_FAILED) |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 553 | goto fail; |
bellard | a03e2d4 | 2007-11-14 11:29:07 +0000 | [diff] [blame] | 554 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 555 | } |
| 556 | the_end1: |
| 557 | page_set_flags(start, start + len, prot | PAGE_VALID); |
| 558 | the_end: |
| 559 | #ifdef DEBUG_MMAP |
Blue Swirl | 0bf9e31 | 2009-07-20 17:19:25 +0000 | [diff] [blame] | 560 | printf("ret=0x" TARGET_ABI_FMT_lx "\n", start); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 561 | page_dump(stdout); |
| 562 | printf("\n"); |
| 563 | #endif |
Paolo Bonzini | 3586533 | 2015-04-22 14:20:35 +0200 | [diff] [blame] | 564 | tb_invalidate_phys_range(start, start + len); |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 565 | mmap_unlock(); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 566 | return start; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 567 | fail: |
| 568 | mmap_unlock(); |
| 569 | return -1; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 570 | } |
| 571 | |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 572 | static void mmap_reserve(abi_ulong start, abi_ulong size) |
| 573 | { |
| 574 | abi_ulong real_start; |
| 575 | abi_ulong real_end; |
| 576 | abi_ulong addr; |
| 577 | abi_ulong end; |
| 578 | int prot; |
| 579 | |
| 580 | real_start = start & qemu_host_page_mask; |
| 581 | real_end = HOST_PAGE_ALIGN(start + size); |
| 582 | end = start + size; |
| 583 | if (start > real_start) { |
| 584 | /* handle host page containing start */ |
| 585 | prot = 0; |
| 586 | for (addr = real_start; addr < start; addr += TARGET_PAGE_SIZE) { |
| 587 | prot |= page_get_flags(addr); |
| 588 | } |
| 589 | if (real_end == real_start + qemu_host_page_size) { |
| 590 | for (addr = end; addr < real_end; addr += TARGET_PAGE_SIZE) { |
| 591 | prot |= page_get_flags(addr); |
| 592 | } |
| 593 | end = real_end; |
| 594 | } |
| 595 | if (prot != 0) |
| 596 | real_start += qemu_host_page_size; |
| 597 | } |
| 598 | if (end < real_end) { |
| 599 | prot = 0; |
| 600 | for (addr = end; addr < real_end; addr += TARGET_PAGE_SIZE) { |
| 601 | prot |= page_get_flags(addr); |
| 602 | } |
| 603 | if (prot != 0) |
| 604 | real_end -= qemu_host_page_size; |
| 605 | } |
| 606 | if (real_start != real_end) { |
| 607 | mmap(g2h(real_start), real_end - real_start, PROT_NONE, |
| 608 | MAP_FIXED | MAP_ANONYMOUS | MAP_PRIVATE | MAP_NORESERVE, |
| 609 | -1, 0); |
| 610 | } |
| 611 | } |
| 612 | |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 613 | int target_munmap(abi_ulong start, abi_ulong len) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 614 | { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 615 | abi_ulong end, real_start, real_end, addr; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 616 | int prot, ret; |
| 617 | |
| 618 | #ifdef DEBUG_MMAP |
Blue Swirl | 0bf9e31 | 2009-07-20 17:19:25 +0000 | [diff] [blame] | 619 | printf("munmap: start=0x" TARGET_ABI_FMT_lx " len=0x" |
| 620 | TARGET_ABI_FMT_lx "\n", |
| 621 | start, len); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 622 | #endif |
| 623 | if (start & ~TARGET_PAGE_MASK) |
| 624 | return -EINVAL; |
| 625 | len = TARGET_PAGE_ALIGN(len); |
| 626 | if (len == 0) |
| 627 | return -EINVAL; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 628 | mmap_lock(); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 629 | end = start + len; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 630 | real_start = start & qemu_host_page_mask; |
| 631 | real_end = HOST_PAGE_ALIGN(end); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 632 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 633 | if (start > real_start) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 634 | /* handle host page containing start */ |
| 635 | prot = 0; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 636 | for(addr = real_start; addr < start; addr += TARGET_PAGE_SIZE) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 637 | prot |= page_get_flags(addr); |
| 638 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 639 | if (real_end == real_start + qemu_host_page_size) { |
| 640 | for(addr = end; addr < real_end; addr += TARGET_PAGE_SIZE) { |
bellard | d418c81 | 2003-05-13 00:57:50 +0000 | [diff] [blame] | 641 | prot |= page_get_flags(addr); |
| 642 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 643 | end = real_end; |
bellard | d418c81 | 2003-05-13 00:57:50 +0000 | [diff] [blame] | 644 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 645 | if (prot != 0) |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 646 | real_start += qemu_host_page_size; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 647 | } |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 648 | if (end < real_end) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 649 | prot = 0; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 650 | for(addr = end; addr < real_end; addr += TARGET_PAGE_SIZE) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 651 | prot |= page_get_flags(addr); |
| 652 | } |
| 653 | if (prot != 0) |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 654 | real_end -= qemu_host_page_size; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 655 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 656 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 657 | ret = 0; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 658 | /* unmap what we can */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 659 | if (real_start < real_end) { |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 660 | if (reserved_va) { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 661 | mmap_reserve(real_start, real_end - real_start); |
| 662 | } else { |
| 663 | ret = munmap(g2h(real_start), real_end - real_start); |
| 664 | } |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 665 | } |
| 666 | |
Alexander Graf | 77a8f1a | 2012-05-10 22:40:10 +0000 | [diff] [blame] | 667 | if (ret == 0) { |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 668 | page_set_flags(start, start + len, 0); |
Paolo Bonzini | 3586533 | 2015-04-22 14:20:35 +0200 | [diff] [blame] | 669 | tb_invalidate_phys_range(start, start + len); |
Alexander Graf | 77a8f1a | 2012-05-10 22:40:10 +0000 | [diff] [blame] | 670 | } |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 671 | mmap_unlock(); |
| 672 | return ret; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 673 | } |
| 674 | |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 675 | abi_long target_mremap(abi_ulong old_addr, abi_ulong old_size, |
| 676 | abi_ulong new_size, unsigned long flags, |
| 677 | abi_ulong new_addr) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 678 | { |
| 679 | int prot; |
aurel32 | f19412a | 2008-12-08 18:12:40 +0000 | [diff] [blame] | 680 | void *host_addr; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 681 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 682 | mmap_lock(); |
aurel32 | f19412a | 2008-12-08 18:12:40 +0000 | [diff] [blame] | 683 | |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 684 | if (flags & MREMAP_FIXED) { |
blueswir1 | 3af72a4 | 2008-12-15 17:58:49 +0000 | [diff] [blame] | 685 | host_addr = (void *) syscall(__NR_mremap, g2h(old_addr), |
| 686 | old_size, new_size, |
| 687 | flags, |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 688 | g2h(new_addr)); |
| 689 | |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 690 | if (reserved_va && host_addr != MAP_FAILED) { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 691 | /* If new and old addresses overlap then the above mremap will |
| 692 | already have failed with EINVAL. */ |
| 693 | mmap_reserve(old_addr, old_size); |
| 694 | } |
| 695 | } else if (flags & MREMAP_MAYMOVE) { |
aurel32 | f19412a | 2008-12-08 18:12:40 +0000 | [diff] [blame] | 696 | abi_ulong mmap_start; |
| 697 | |
| 698 | mmap_start = mmap_find_vma(0, new_size); |
| 699 | |
| 700 | if (mmap_start == -1) { |
| 701 | errno = ENOMEM; |
| 702 | host_addr = MAP_FAILED; |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 703 | } else { |
blueswir1 | 3af72a4 | 2008-12-15 17:58:49 +0000 | [diff] [blame] | 704 | host_addr = (void *) syscall(__NR_mremap, g2h(old_addr), |
| 705 | old_size, new_size, |
| 706 | flags | MREMAP_FIXED, |
| 707 | g2h(mmap_start)); |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 708 | if (reserved_va) { |
amateur | c65ffe6 | 2010-09-14 13:22:34 +0800 | [diff] [blame] | 709 | mmap_reserve(old_addr, old_size); |
| 710 | } |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 711 | } |
blueswir1 | 3af72a4 | 2008-12-15 17:58:49 +0000 | [diff] [blame] | 712 | } else { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 713 | int prot = 0; |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 714 | if (reserved_va && old_size < new_size) { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 715 | abi_ulong addr; |
| 716 | for (addr = old_addr + old_size; |
| 717 | addr < old_addr + new_size; |
| 718 | addr++) { |
| 719 | prot |= page_get_flags(addr); |
| 720 | } |
| 721 | } |
| 722 | if (prot == 0) { |
| 723 | host_addr = mremap(g2h(old_addr), old_size, new_size, flags); |
Laurent Vivier | b76f21a | 2015-08-24 14:53:54 +0200 | [diff] [blame] | 724 | if (host_addr != MAP_FAILED && reserved_va && old_size > new_size) { |
Paul Brook | 68a1c81 | 2010-05-29 02:27:35 +0100 | [diff] [blame] | 725 | mmap_reserve(old_addr + old_size, new_size - old_size); |
| 726 | } |
| 727 | } else { |
| 728 | errno = ENOMEM; |
| 729 | host_addr = MAP_FAILED; |
| 730 | } |
aurel32 | f19412a | 2008-12-08 18:12:40 +0000 | [diff] [blame] | 731 | /* Check if address fits target address space */ |
| 732 | if ((unsigned long)host_addr + new_size > (abi_ulong)-1) { |
| 733 | /* Revert mremap() changes */ |
| 734 | host_addr = mremap(g2h(old_addr), new_size, old_size, flags); |
| 735 | errno = ENOMEM; |
| 736 | host_addr = MAP_FAILED; |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | if (host_addr == MAP_FAILED) { |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 741 | new_addr = -1; |
| 742 | } else { |
| 743 | new_addr = h2g(host_addr); |
| 744 | prot = page_get_flags(old_addr); |
| 745 | page_set_flags(old_addr, old_addr + old_size, 0); |
| 746 | page_set_flags(new_addr, new_addr + new_size, prot | PAGE_VALID); |
| 747 | } |
Paolo Bonzini | 3586533 | 2015-04-22 14:20:35 +0200 | [diff] [blame] | 748 | tb_invalidate_phys_range(new_addr, new_addr + new_size); |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 749 | mmap_unlock(); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 750 | return new_addr; |
| 751 | } |
| 752 | |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 753 | int target_msync(abi_ulong start, abi_ulong len, int flags) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 754 | { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 755 | abi_ulong end; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 756 | |
| 757 | if (start & ~TARGET_PAGE_MASK) |
| 758 | return -EINVAL; |
| 759 | len = TARGET_PAGE_ALIGN(len); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 760 | end = start + len; |
bellard | d418c81 | 2003-05-13 00:57:50 +0000 | [diff] [blame] | 761 | if (end < start) |
| 762 | return -EINVAL; |
| 763 | if (end == start) |
| 764 | return 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 765 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 766 | start &= qemu_host_page_mask; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 767 | return msync(g2h(start), end - start, flags); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 768 | } |