]> Git Repo - qemu.git/blame - exec.c
Merge remote-tracking branch 'remotes/borntraeger/tags/s390x-20180323' into staging
[qemu.git] / exec.c
CommitLineData
54936004 1/*
5b6dd868 2 * Virtual page mapping
5fafdf24 3 *
54936004
FB
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library 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 GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
54936004 18 */
7b31bbc2 19#include "qemu/osdep.h"
da34e65c 20#include "qapi/error.h"
54936004 21
f348b6d1 22#include "qemu/cutils.h"
6180a181 23#include "cpu.h"
63c91552 24#include "exec/exec-all.h"
51180423 25#include "exec/target_page.h"
b67d9a52 26#include "tcg.h"
741da0d3 27#include "hw/qdev-core.h"
c7e002c5 28#include "hw/qdev-properties.h"
4485bd26 29#if !defined(CONFIG_USER_ONLY)
47c8ca53 30#include "hw/boards.h"
33c11879 31#include "hw/xen/xen.h"
4485bd26 32#endif
9c17d615 33#include "sysemu/kvm.h"
2ff3de68 34#include "sysemu/sysemu.h"
1de7afc9
PB
35#include "qemu/timer.h"
36#include "qemu/config-file.h"
75a34036 37#include "qemu/error-report.h"
53a5960a 38#if defined(CONFIG_USER_ONLY)
a9c94277 39#include "qemu.h"
432d268c 40#else /* !CONFIG_USER_ONLY */
741da0d3
PB
41#include "hw/hw.h"
42#include "exec/memory.h"
df43d49c 43#include "exec/ioport.h"
741da0d3 44#include "sysemu/dma.h"
9c607668 45#include "sysemu/numa.h"
79ca7a1b 46#include "sysemu/hw_accel.h"
741da0d3 47#include "exec/address-spaces.h"
9c17d615 48#include "sysemu/xen-mapcache.h"
0ab8ed18 49#include "trace-root.h"
d3a5038c 50
e2fa71f5 51#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
e2fa71f5
DDAG
52#include <linux/falloc.h>
53#endif
54
53a5960a 55#endif
0dc3f44a 56#include "qemu/rcu_queue.h"
4840f10e 57#include "qemu/main-loop.h"
5b6dd868 58#include "translate-all.h"
7615936e 59#include "sysemu/replay.h"
0cac1b66 60
022c62cb 61#include "exec/memory-internal.h"
220c3ebd 62#include "exec/ram_addr.h"
508127e2 63#include "exec/log.h"
67d95c15 64
9dfeca7c
BR
65#include "migration/vmstate.h"
66
b35ba30f 67#include "qemu/range.h"
794e8f30
MT
68#ifndef _WIN32
69#include "qemu/mmap-alloc.h"
70#endif
b35ba30f 71
be9b23c4
PX
72#include "monitor/monitor.h"
73
db7b5426 74//#define DEBUG_SUBPAGE
1196be37 75
e2eef170 76#if !defined(CONFIG_USER_ONLY)
0dc3f44a
MD
77/* ram_list is read under rcu_read_lock()/rcu_read_unlock(). Writes
78 * are protected by the ramlist lock.
79 */
0d53d9fe 80RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list.blocks) };
62152b8a
AK
81
82static MemoryRegion *system_memory;
309cb471 83static MemoryRegion *system_io;
62152b8a 84
f6790af6
AK
85AddressSpace address_space_io;
86AddressSpace address_space_memory;
2673a5da 87
0844e007 88MemoryRegion io_mem_rom, io_mem_notdirty;
acc9d80b 89static MemoryRegion io_mem_unassigned;
0e0df1e2 90
7bd4f430
PB
91/* RAM is pre-allocated and passed into qemu_ram_alloc_from_ptr */
92#define RAM_PREALLOC (1 << 0)
93
dbcb8981
PB
94/* RAM is mmap-ed with MAP_SHARED */
95#define RAM_SHARED (1 << 1)
96
62be4e3a
MT
97/* Only a portion of RAM (used_length) is actually used, and migrated.
98 * This used_length size can change across reboots.
99 */
100#define RAM_RESIZEABLE (1 << 2)
101
2ce16640
DDAG
102/* UFFDIO_ZEROPAGE is available on this RAMBlock to atomically
103 * zero the page and wake waiting processes.
104 * (Set during postcopy)
105 */
106#define RAM_UF_ZEROPAGE (1 << 3)
e2eef170 107#endif
9fa3e853 108
20bccb82
PM
109#ifdef TARGET_PAGE_BITS_VARY
110int target_page_bits;
111bool target_page_bits_decided;
112#endif
113
bdc44640 114struct CPUTailQ cpus = QTAILQ_HEAD_INITIALIZER(cpus);
6a00d601
FB
115/* current CPU in the current thread. It is only valid inside
116 cpu_exec() */
f240eb6f 117__thread CPUState *current_cpu;
2e70f6ef 118/* 0 = Do not count executed instructions.
bf20dc07 119 1 = Precise instruction counting.
2e70f6ef 120 2 = Adaptive rate instruction counting. */
5708fc66 121int use_icount;
6a00d601 122
a0be0c58
YZ
123uintptr_t qemu_host_page_size;
124intptr_t qemu_host_page_mask;
a0be0c58 125
20bccb82
PM
126bool set_preferred_target_page_bits(int bits)
127{
128 /* The target page size is the lowest common denominator for all
129 * the CPUs in the system, so we can only make it smaller, never
130 * larger. And we can't make it smaller once we've committed to
131 * a particular size.
132 */
133#ifdef TARGET_PAGE_BITS_VARY
134 assert(bits >= TARGET_PAGE_BITS_MIN);
135 if (target_page_bits == 0 || target_page_bits > bits) {
136 if (target_page_bits_decided) {
137 return false;
138 }
139 target_page_bits = bits;
140 }
141#endif
142 return true;
143}
144
e2eef170 145#if !defined(CONFIG_USER_ONLY)
4346ae3e 146
20bccb82
PM
147static void finalize_target_page_bits(void)
148{
149#ifdef TARGET_PAGE_BITS_VARY
150 if (target_page_bits == 0) {
151 target_page_bits = TARGET_PAGE_BITS_MIN;
152 }
153 target_page_bits_decided = true;
154#endif
155}
156
1db8abb1
PB
157typedef struct PhysPageEntry PhysPageEntry;
158
159struct PhysPageEntry {
9736e55b 160 /* How many bits skip to next level (in units of L2_SIZE). 0 for a leaf. */
8b795765 161 uint32_t skip : 6;
9736e55b 162 /* index into phys_sections (!skip) or phys_map_nodes (skip) */
8b795765 163 uint32_t ptr : 26;
1db8abb1
PB
164};
165
8b795765
MT
166#define PHYS_MAP_NODE_NIL (((uint32_t)~0) >> 6)
167
03f49957 168/* Size of the L2 (and L3, etc) page tables. */
57271d63 169#define ADDR_SPACE_BITS 64
03f49957 170
026736ce 171#define P_L2_BITS 9
03f49957
PB
172#define P_L2_SIZE (1 << P_L2_BITS)
173
174#define P_L2_LEVELS (((ADDR_SPACE_BITS - TARGET_PAGE_BITS - 1) / P_L2_BITS) + 1)
175
176typedef PhysPageEntry Node[P_L2_SIZE];
0475d94f 177
53cb28cb 178typedef struct PhysPageMap {
79e2b9ae
PB
179 struct rcu_head rcu;
180
53cb28cb
MA
181 unsigned sections_nb;
182 unsigned sections_nb_alloc;
183 unsigned nodes_nb;
184 unsigned nodes_nb_alloc;
185 Node *nodes;
186 MemoryRegionSection *sections;
187} PhysPageMap;
188
1db8abb1 189struct AddressSpaceDispatch {
729633c2 190 MemoryRegionSection *mru_section;
1db8abb1
PB
191 /* This is a multi-level map on the physical address space.
192 * The bottom level has pointers to MemoryRegionSections.
193 */
194 PhysPageEntry phys_map;
53cb28cb 195 PhysPageMap map;
1db8abb1
PB
196};
197
90260c6c
JK
198#define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK)
199typedef struct subpage_t {
200 MemoryRegion iomem;
16620684 201 FlatView *fv;
90260c6c 202 hwaddr base;
2615fabd 203 uint16_t sub_section[];
90260c6c
JK
204} subpage_t;
205
b41aac4f
LPF
206#define PHYS_SECTION_UNASSIGNED 0
207#define PHYS_SECTION_NOTDIRTY 1
208#define PHYS_SECTION_ROM 2
209#define PHYS_SECTION_WATCH 3
5312bd8b 210
e2eef170 211static void io_mem_init(void);
62152b8a 212static void memory_map_init(void);
09daed84 213static void tcg_commit(MemoryListener *listener);
e2eef170 214
1ec9b909 215static MemoryRegion io_mem_watch;
32857f4d
PM
216
217/**
218 * CPUAddressSpace: all the information a CPU needs about an AddressSpace
219 * @cpu: the CPU whose AddressSpace this is
220 * @as: the AddressSpace itself
221 * @memory_dispatch: its dispatch pointer (cached, RCU protected)
222 * @tcg_as_listener: listener for tracking changes to the AddressSpace
223 */
224struct CPUAddressSpace {
225 CPUState *cpu;
226 AddressSpace *as;
227 struct AddressSpaceDispatch *memory_dispatch;
228 MemoryListener tcg_as_listener;
229};
230
8deaf12c
GH
231struct DirtyBitmapSnapshot {
232 ram_addr_t start;
233 ram_addr_t end;
234 unsigned long dirty[];
235};
236
6658ffb8 237#endif
fd6ce8f6 238
6d9a1304 239#if !defined(CONFIG_USER_ONLY)
d6f2ea22 240
53cb28cb 241static void phys_map_node_reserve(PhysPageMap *map, unsigned nodes)
d6f2ea22 242{
101420b8 243 static unsigned alloc_hint = 16;
53cb28cb 244 if (map->nodes_nb + nodes > map->nodes_nb_alloc) {
101420b8 245 map->nodes_nb_alloc = MAX(map->nodes_nb_alloc, alloc_hint);
53cb28cb
MA
246 map->nodes_nb_alloc = MAX(map->nodes_nb_alloc, map->nodes_nb + nodes);
247 map->nodes = g_renew(Node, map->nodes, map->nodes_nb_alloc);
101420b8 248 alloc_hint = map->nodes_nb_alloc;
d6f2ea22 249 }
f7bf5461
AK
250}
251
db94604b 252static uint32_t phys_map_node_alloc(PhysPageMap *map, bool leaf)
f7bf5461
AK
253{
254 unsigned i;
8b795765 255 uint32_t ret;
db94604b
PB
256 PhysPageEntry e;
257 PhysPageEntry *p;
f7bf5461 258
53cb28cb 259 ret = map->nodes_nb++;
db94604b 260 p = map->nodes[ret];
f7bf5461 261 assert(ret != PHYS_MAP_NODE_NIL);
53cb28cb 262 assert(ret != map->nodes_nb_alloc);
db94604b
PB
263
264 e.skip = leaf ? 0 : 1;
265 e.ptr = leaf ? PHYS_SECTION_UNASSIGNED : PHYS_MAP_NODE_NIL;
03f49957 266 for (i = 0; i < P_L2_SIZE; ++i) {
db94604b 267 memcpy(&p[i], &e, sizeof(e));
d6f2ea22 268 }
f7bf5461 269 return ret;
d6f2ea22
AK
270}
271
53cb28cb
MA
272static void phys_page_set_level(PhysPageMap *map, PhysPageEntry *lp,
273 hwaddr *index, hwaddr *nb, uint16_t leaf,
2999097b 274 int level)
f7bf5461
AK
275{
276 PhysPageEntry *p;
03f49957 277 hwaddr step = (hwaddr)1 << (level * P_L2_BITS);
108c49b8 278
9736e55b 279 if (lp->skip && lp->ptr == PHYS_MAP_NODE_NIL) {
db94604b 280 lp->ptr = phys_map_node_alloc(map, level == 0);
92e873b9 281 }
db94604b 282 p = map->nodes[lp->ptr];
03f49957 283 lp = &p[(*index >> (level * P_L2_BITS)) & (P_L2_SIZE - 1)];
f7bf5461 284
03f49957 285 while (*nb && lp < &p[P_L2_SIZE]) {
07f07b31 286 if ((*index & (step - 1)) == 0 && *nb >= step) {
9736e55b 287 lp->skip = 0;
c19e8800 288 lp->ptr = leaf;
07f07b31
AK
289 *index += step;
290 *nb -= step;
2999097b 291 } else {
53cb28cb 292 phys_page_set_level(map, lp, index, nb, leaf, level - 1);
2999097b
AK
293 }
294 ++lp;
f7bf5461
AK
295 }
296}
297
ac1970fb 298static void phys_page_set(AddressSpaceDispatch *d,
a8170e5e 299 hwaddr index, hwaddr nb,
2999097b 300 uint16_t leaf)
f7bf5461 301{
2999097b 302 /* Wildly overreserve - it doesn't matter much. */
53cb28cb 303 phys_map_node_reserve(&d->map, 3 * P_L2_LEVELS);
5cd2c5b6 304
53cb28cb 305 phys_page_set_level(&d->map, &d->phys_map, &index, &nb, leaf, P_L2_LEVELS - 1);
92e873b9
FB
306}
307
b35ba30f
MT
308/* Compact a non leaf page entry. Simply detect that the entry has a single child,
309 * and update our entry so we can skip it and go directly to the destination.
310 */
efee678d 311static void phys_page_compact(PhysPageEntry *lp, Node *nodes)
b35ba30f
MT
312{
313 unsigned valid_ptr = P_L2_SIZE;
314 int valid = 0;
315 PhysPageEntry *p;
316 int i;
317
318 if (lp->ptr == PHYS_MAP_NODE_NIL) {
319 return;
320 }
321
322 p = nodes[lp->ptr];
323 for (i = 0; i < P_L2_SIZE; i++) {
324 if (p[i].ptr == PHYS_MAP_NODE_NIL) {
325 continue;
326 }
327
328 valid_ptr = i;
329 valid++;
330 if (p[i].skip) {
efee678d 331 phys_page_compact(&p[i], nodes);
b35ba30f
MT
332 }
333 }
334
335 /* We can only compress if there's only one child. */
336 if (valid != 1) {
337 return;
338 }
339
340 assert(valid_ptr < P_L2_SIZE);
341
342 /* Don't compress if it won't fit in the # of bits we have. */
343 if (lp->skip + p[valid_ptr].skip >= (1 << 3)) {
344 return;
345 }
346
347 lp->ptr = p[valid_ptr].ptr;
348 if (!p[valid_ptr].skip) {
349 /* If our only child is a leaf, make this a leaf. */
350 /* By design, we should have made this node a leaf to begin with so we
351 * should never reach here.
352 * But since it's so simple to handle this, let's do it just in case we
353 * change this rule.
354 */
355 lp->skip = 0;
356 } else {
357 lp->skip += p[valid_ptr].skip;
358 }
359}
360
8629d3fc 361void address_space_dispatch_compact(AddressSpaceDispatch *d)
b35ba30f 362{
b35ba30f 363 if (d->phys_map.skip) {
efee678d 364 phys_page_compact(&d->phys_map, d->map.nodes);
b35ba30f
MT
365 }
366}
367
29cb533d
FZ
368static inline bool section_covers_addr(const MemoryRegionSection *section,
369 hwaddr addr)
370{
371 /* Memory topology clips a memory region to [0, 2^64); size.hi > 0 means
372 * the section must cover the entire address space.
373 */
258dfaaa 374 return int128_gethi(section->size) ||
29cb533d 375 range_covers_byte(section->offset_within_address_space,
258dfaaa 376 int128_getlo(section->size), addr);
29cb533d
FZ
377}
378
003a0cf2 379static MemoryRegionSection *phys_page_find(AddressSpaceDispatch *d, hwaddr addr)
92e873b9 380{
003a0cf2
PX
381 PhysPageEntry lp = d->phys_map, *p;
382 Node *nodes = d->map.nodes;
383 MemoryRegionSection *sections = d->map.sections;
97115a8d 384 hwaddr index = addr >> TARGET_PAGE_BITS;
31ab2b4a 385 int i;
f1f6e3b8 386
9736e55b 387 for (i = P_L2_LEVELS; lp.skip && (i -= lp.skip) >= 0;) {
c19e8800 388 if (lp.ptr == PHYS_MAP_NODE_NIL) {
9affd6fc 389 return &sections[PHYS_SECTION_UNASSIGNED];
31ab2b4a 390 }
9affd6fc 391 p = nodes[lp.ptr];
03f49957 392 lp = p[(index >> (i * P_L2_BITS)) & (P_L2_SIZE - 1)];
5312bd8b 393 }
b35ba30f 394
29cb533d 395 if (section_covers_addr(&sections[lp.ptr], addr)) {
b35ba30f
MT
396 return &sections[lp.ptr];
397 } else {
398 return &sections[PHYS_SECTION_UNASSIGNED];
399 }
f3705d53
AK
400}
401
e5548617
BS
402bool memory_region_is_unassigned(MemoryRegion *mr)
403{
2a8e7499 404 return mr != &io_mem_rom && mr != &io_mem_notdirty && !mr->rom_device
5b6dd868 405 && mr != &io_mem_watch;
fd6ce8f6 406}
149f54b5 407
79e2b9ae 408/* Called from RCU critical section */
c7086b4a 409static MemoryRegionSection *address_space_lookup_region(AddressSpaceDispatch *d,
90260c6c
JK
410 hwaddr addr,
411 bool resolve_subpage)
9f029603 412{
729633c2 413 MemoryRegionSection *section = atomic_read(&d->mru_section);
90260c6c
JK
414 subpage_t *subpage;
415
07c114bb
PB
416 if (!section || section == &d->map.sections[PHYS_SECTION_UNASSIGNED] ||
417 !section_covers_addr(section, addr)) {
003a0cf2 418 section = phys_page_find(d, addr);
07c114bb 419 atomic_set(&d->mru_section, section);
729633c2 420 }
90260c6c
JK
421 if (resolve_subpage && section->mr->subpage) {
422 subpage = container_of(section->mr, subpage_t, iomem);
53cb28cb 423 section = &d->map.sections[subpage->sub_section[SUBPAGE_IDX(addr)]];
90260c6c
JK
424 }
425 return section;
9f029603
JK
426}
427
79e2b9ae 428/* Called from RCU critical section */
90260c6c 429static MemoryRegionSection *
c7086b4a 430address_space_translate_internal(AddressSpaceDispatch *d, hwaddr addr, hwaddr *xlat,
90260c6c 431 hwaddr *plen, bool resolve_subpage)
149f54b5
PB
432{
433 MemoryRegionSection *section;
965eb2fc 434 MemoryRegion *mr;
a87f3954 435 Int128 diff;
149f54b5 436
c7086b4a 437 section = address_space_lookup_region(d, addr, resolve_subpage);
149f54b5
PB
438 /* Compute offset within MemoryRegionSection */
439 addr -= section->offset_within_address_space;
440
441 /* Compute offset within MemoryRegion */
442 *xlat = addr + section->offset_within_region;
443
965eb2fc 444 mr = section->mr;
b242e0e0
PB
445
446 /* MMIO registers can be expected to perform full-width accesses based only
447 * on their address, without considering adjacent registers that could
448 * decode to completely different MemoryRegions. When such registers
449 * exist (e.g. I/O ports 0xcf8 and 0xcf9 on most PC chipsets), MMIO
450 * regions overlap wildly. For this reason we cannot clamp the accesses
451 * here.
452 *
453 * If the length is small (as is the case for address_space_ldl/stl),
454 * everything works fine. If the incoming length is large, however,
455 * the caller really has to do the clamping through memory_access_size.
456 */
965eb2fc 457 if (memory_region_is_ram(mr)) {
e4a511f8 458 diff = int128_sub(section->size, int128_make64(addr));
965eb2fc
PB
459 *plen = int128_get64(int128_min(diff, int128_make64(*plen)));
460 }
149f54b5
PB
461 return section;
462}
90260c6c 463
d5e5fafd
PX
464/**
465 * flatview_do_translate - translate an address in FlatView
466 *
467 * @fv: the flat view that we want to translate on
468 * @addr: the address to be translated in above address space
469 * @xlat: the translated address offset within memory region. It
470 * cannot be @NULL.
471 * @plen_out: valid read/write length of the translated address. It
472 * can be @NULL when we don't care about it.
473 * @page_mask_out: page mask for the translated address. This
474 * should only be meaningful for IOMMU translated
475 * addresses, since there may be huge pages that this bit
476 * would tell. It can be @NULL if we don't care about it.
477 * @is_write: whether the translation operation is for write
478 * @is_mmio: whether this can be MMIO, set true if it can
479 *
480 * This function is called from RCU critical section
481 */
16620684
AK
482static MemoryRegionSection flatview_do_translate(FlatView *fv,
483 hwaddr addr,
484 hwaddr *xlat,
d5e5fafd
PX
485 hwaddr *plen_out,
486 hwaddr *page_mask_out,
16620684
AK
487 bool is_write,
488 bool is_mmio,
489 AddressSpace **target_as)
052c8fa9 490{
a764040c 491 IOMMUTLBEntry iotlb;
052c8fa9 492 MemoryRegionSection *section;
3df9d748 493 IOMMUMemoryRegion *iommu_mr;
1221a474 494 IOMMUMemoryRegionClass *imrc;
d5e5fafd
PX
495 hwaddr page_mask = (hwaddr)(-1);
496 hwaddr plen = (hwaddr)(-1);
497
498 if (plen_out) {
499 plen = *plen_out;
500 }
052c8fa9
JW
501
502 for (;;) {
16620684
AK
503 section = address_space_translate_internal(
504 flatview_to_dispatch(fv), addr, &addr,
d5e5fafd 505 &plen, is_mmio);
052c8fa9 506
3df9d748
AK
507 iommu_mr = memory_region_get_iommu(section->mr);
508 if (!iommu_mr) {
052c8fa9
JW
509 break;
510 }
1221a474 511 imrc = memory_region_get_iommu_class_nocheck(iommu_mr);
052c8fa9 512
1221a474
AK
513 iotlb = imrc->translate(iommu_mr, addr, is_write ?
514 IOMMU_WO : IOMMU_RO);
a764040c
PX
515 addr = ((iotlb.translated_addr & ~iotlb.addr_mask)
516 | (addr & iotlb.addr_mask));
d5e5fafd
PX
517 page_mask &= iotlb.addr_mask;
518 plen = MIN(plen, (addr | iotlb.addr_mask) - addr + 1);
052c8fa9 519 if (!(iotlb.perm & (1 << is_write))) {
a764040c 520 goto translate_fail;
052c8fa9
JW
521 }
522
16620684 523 fv = address_space_to_flatview(iotlb.target_as);
e76bb18f 524 *target_as = iotlb.target_as;
052c8fa9
JW
525 }
526
a764040c
PX
527 *xlat = addr;
528
d5e5fafd
PX
529 if (page_mask == (hwaddr)(-1)) {
530 /* Not behind an IOMMU, use default page size. */
531 page_mask = ~TARGET_PAGE_MASK;
532 }
533
534 if (page_mask_out) {
535 *page_mask_out = page_mask;
536 }
537
538 if (plen_out) {
539 *plen_out = plen;
540 }
541
a764040c
PX
542 return *section;
543
544translate_fail:
545 return (MemoryRegionSection) { .mr = &io_mem_unassigned };
052c8fa9
JW
546}
547
548/* Called from RCU critical section */
a764040c
PX
549IOMMUTLBEntry address_space_get_iotlb_entry(AddressSpace *as, hwaddr addr,
550 bool is_write)
90260c6c 551{
a764040c 552 MemoryRegionSection section;
076a93d7 553 hwaddr xlat, page_mask;
30951157 554
076a93d7
PX
555 /*
556 * This can never be MMIO, and we don't really care about plen,
557 * but page mask.
558 */
559 section = flatview_do_translate(address_space_to_flatview(as), addr, &xlat,
560 NULL, &page_mask, is_write, false, &as);
30951157 561
a764040c
PX
562 /* Illegal translation */
563 if (section.mr == &io_mem_unassigned) {
564 goto iotlb_fail;
565 }
30951157 566
a764040c
PX
567 /* Convert memory region offset into address space offset */
568 xlat += section.offset_within_address_space -
569 section.offset_within_region;
570
a764040c 571 return (IOMMUTLBEntry) {
e76bb18f 572 .target_as = as,
076a93d7
PX
573 .iova = addr & ~page_mask,
574 .translated_addr = xlat & ~page_mask,
575 .addr_mask = page_mask,
a764040c
PX
576 /* IOTLBs are for DMAs, and DMA only allows on RAMs. */
577 .perm = IOMMU_RW,
578 };
579
580iotlb_fail:
581 return (IOMMUTLBEntry) {0};
582}
583
584/* Called from RCU critical section */
16620684
AK
585MemoryRegion *flatview_translate(FlatView *fv, hwaddr addr, hwaddr *xlat,
586 hwaddr *plen, bool is_write)
a764040c
PX
587{
588 MemoryRegion *mr;
589 MemoryRegionSection section;
16620684 590 AddressSpace *as = NULL;
a764040c
PX
591
592 /* This can be MMIO, so setup MMIO bit. */
d5e5fafd
PX
593 section = flatview_do_translate(fv, addr, xlat, plen, NULL,
594 is_write, true, &as);
a764040c
PX
595 mr = section.mr;
596
fe680d0d 597 if (xen_enabled() && memory_access_is_direct(mr, is_write)) {
a87f3954 598 hwaddr page = ((addr & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE) - addr;
23820dbf 599 *plen = MIN(page, *plen);
a87f3954
PB
600 }
601
30951157 602 return mr;
90260c6c
JK
603}
604
79e2b9ae 605/* Called from RCU critical section */
90260c6c 606MemoryRegionSection *
d7898cda 607address_space_translate_for_iotlb(CPUState *cpu, int asidx, hwaddr addr,
9d82b5a7 608 hwaddr *xlat, hwaddr *plen)
90260c6c 609{
30951157 610 MemoryRegionSection *section;
f35e44e7 611 AddressSpaceDispatch *d = atomic_rcu_read(&cpu->cpu_ases[asidx].memory_dispatch);
d7898cda
PM
612
613 section = address_space_translate_internal(d, addr, xlat, plen, false);
30951157 614
3df9d748 615 assert(!memory_region_is_iommu(section->mr));
30951157 616 return section;
90260c6c 617}
5b6dd868 618#endif
fd6ce8f6 619
b170fce3 620#if !defined(CONFIG_USER_ONLY)
5b6dd868
BS
621
622static int cpu_common_post_load(void *opaque, int version_id)
fd6ce8f6 623{
259186a7 624 CPUState *cpu = opaque;
a513fe19 625
5b6dd868
BS
626 /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
627 version_id is increased. */
259186a7 628 cpu->interrupt_request &= ~0x01;
d10eb08f 629 tlb_flush(cpu);
5b6dd868 630
15a356c4
PD
631 /* loadvm has just updated the content of RAM, bypassing the
632 * usual mechanisms that ensure we flush TBs for writes to
633 * memory we've translated code from. So we must flush all TBs,
634 * which will now be stale.
635 */
636 tb_flush(cpu);
637
5b6dd868 638 return 0;
a513fe19 639}
7501267e 640
6c3bff0e
PD
641static int cpu_common_pre_load(void *opaque)
642{
643 CPUState *cpu = opaque;
644
adee6424 645 cpu->exception_index = -1;
6c3bff0e
PD
646
647 return 0;
648}
649
650static bool cpu_common_exception_index_needed(void *opaque)
651{
652 CPUState *cpu = opaque;
653
adee6424 654 return tcg_enabled() && cpu->exception_index != -1;
6c3bff0e
PD
655}
656
657static const VMStateDescription vmstate_cpu_common_exception_index = {
658 .name = "cpu_common/exception_index",
659 .version_id = 1,
660 .minimum_version_id = 1,
5cd8cada 661 .needed = cpu_common_exception_index_needed,
6c3bff0e
PD
662 .fields = (VMStateField[]) {
663 VMSTATE_INT32(exception_index, CPUState),
664 VMSTATE_END_OF_LIST()
665 }
666};
667
bac05aa9
AS
668static bool cpu_common_crash_occurred_needed(void *opaque)
669{
670 CPUState *cpu = opaque;
671
672 return cpu->crash_occurred;
673}
674
675static const VMStateDescription vmstate_cpu_common_crash_occurred = {
676 .name = "cpu_common/crash_occurred",
677 .version_id = 1,
678 .minimum_version_id = 1,
679 .needed = cpu_common_crash_occurred_needed,
680 .fields = (VMStateField[]) {
681 VMSTATE_BOOL(crash_occurred, CPUState),
682 VMSTATE_END_OF_LIST()
683 }
684};
685
1a1562f5 686const VMStateDescription vmstate_cpu_common = {
5b6dd868
BS
687 .name = "cpu_common",
688 .version_id = 1,
689 .minimum_version_id = 1,
6c3bff0e 690 .pre_load = cpu_common_pre_load,
5b6dd868 691 .post_load = cpu_common_post_load,
35d08458 692 .fields = (VMStateField[]) {
259186a7
AF
693 VMSTATE_UINT32(halted, CPUState),
694 VMSTATE_UINT32(interrupt_request, CPUState),
5b6dd868 695 VMSTATE_END_OF_LIST()
6c3bff0e 696 },
5cd8cada
JQ
697 .subsections = (const VMStateDescription*[]) {
698 &vmstate_cpu_common_exception_index,
bac05aa9 699 &vmstate_cpu_common_crash_occurred,
5cd8cada 700 NULL
5b6dd868
BS
701 }
702};
1a1562f5 703
5b6dd868 704#endif
ea041c0e 705
38d8f5c8 706CPUState *qemu_get_cpu(int index)
ea041c0e 707{
bdc44640 708 CPUState *cpu;
ea041c0e 709
bdc44640 710 CPU_FOREACH(cpu) {
55e5c285 711 if (cpu->cpu_index == index) {
bdc44640 712 return cpu;
55e5c285 713 }
ea041c0e 714 }
5b6dd868 715
bdc44640 716 return NULL;
ea041c0e
FB
717}
718
09daed84 719#if !defined(CONFIG_USER_ONLY)
80ceb07a
PX
720void cpu_address_space_init(CPUState *cpu, int asidx,
721 const char *prefix, MemoryRegion *mr)
09daed84 722{
12ebc9a7 723 CPUAddressSpace *newas;
80ceb07a 724 AddressSpace *as = g_new0(AddressSpace, 1);
87a621d8 725 char *as_name;
80ceb07a
PX
726
727 assert(mr);
87a621d8
PX
728 as_name = g_strdup_printf("%s-%d", prefix, cpu->cpu_index);
729 address_space_init(as, mr, as_name);
730 g_free(as_name);
12ebc9a7
PM
731
732 /* Target code should have set num_ases before calling us */
733 assert(asidx < cpu->num_ases);
734
56943e8c
PM
735 if (asidx == 0) {
736 /* address space 0 gets the convenience alias */
737 cpu->as = as;
738 }
739
12ebc9a7
PM
740 /* KVM cannot currently support multiple address spaces. */
741 assert(asidx == 0 || !kvm_enabled());
09daed84 742
12ebc9a7
PM
743 if (!cpu->cpu_ases) {
744 cpu->cpu_ases = g_new0(CPUAddressSpace, cpu->num_ases);
09daed84 745 }
32857f4d 746
12ebc9a7
PM
747 newas = &cpu->cpu_ases[asidx];
748 newas->cpu = cpu;
749 newas->as = as;
56943e8c 750 if (tcg_enabled()) {
12ebc9a7
PM
751 newas->tcg_as_listener.commit = tcg_commit;
752 memory_listener_register(&newas->tcg_as_listener, as);
56943e8c 753 }
09daed84 754}
651a5bc0
PM
755
756AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx)
757{
758 /* Return the AddressSpace corresponding to the specified index */
759 return cpu->cpu_ases[asidx].as;
760}
09daed84
EI
761#endif
762
7bbc124e 763void cpu_exec_unrealizefn(CPUState *cpu)
1c59eb39 764{
9dfeca7c
BR
765 CPUClass *cc = CPU_GET_CLASS(cpu);
766
267f685b 767 cpu_list_remove(cpu);
9dfeca7c
BR
768
769 if (cc->vmsd != NULL) {
770 vmstate_unregister(NULL, cc->vmsd, cpu);
771 }
772 if (qdev_get_vmsd(DEVICE(cpu)) == NULL) {
773 vmstate_unregister(NULL, &vmstate_cpu_common, cpu);
774 }
1c59eb39
BR
775}
776
c7e002c5
FZ
777Property cpu_common_props[] = {
778#ifndef CONFIG_USER_ONLY
779 /* Create a memory property for softmmu CPU object,
780 * so users can wire up its memory. (This can't go in qom/cpu.c
781 * because that file is compiled only once for both user-mode
782 * and system builds.) The default if no link is set up is to use
783 * the system address space.
784 */
785 DEFINE_PROP_LINK("memory", CPUState, memory, TYPE_MEMORY_REGION,
786 MemoryRegion *),
787#endif
788 DEFINE_PROP_END_OF_LIST(),
789};
790
39e329e3 791void cpu_exec_initfn(CPUState *cpu)
ea041c0e 792{
56943e8c 793 cpu->as = NULL;
12ebc9a7 794 cpu->num_ases = 0;
56943e8c 795
291135b5 796#ifndef CONFIG_USER_ONLY
291135b5 797 cpu->thread_id = qemu_get_thread_id();
6731d864
PC
798 cpu->memory = system_memory;
799 object_ref(OBJECT(cpu->memory));
291135b5 800#endif
39e329e3
LV
801}
802
ce5b1bbf 803void cpu_exec_realizefn(CPUState *cpu, Error **errp)
39e329e3 804{
55c3ceef 805 CPUClass *cc = CPU_GET_CLASS(cpu);
2dda6354 806 static bool tcg_target_initialized;
291135b5 807
267f685b 808 cpu_list_add(cpu);
1bc7e522 809
2dda6354
EC
810 if (tcg_enabled() && !tcg_target_initialized) {
811 tcg_target_initialized = true;
55c3ceef
RH
812 cc->tcg_initialize();
813 }
814
1bc7e522 815#ifndef CONFIG_USER_ONLY
e0d47944 816 if (qdev_get_vmsd(DEVICE(cpu)) == NULL) {
741da0d3 817 vmstate_register(NULL, cpu->cpu_index, &vmstate_cpu_common, cpu);
e0d47944 818 }
b170fce3 819 if (cc->vmsd != NULL) {
741da0d3 820 vmstate_register(NULL, cpu->cpu_index, cc->vmsd, cpu);
b170fce3 821 }
741da0d3 822#endif
ea041c0e
FB
823}
824
2278b939
IM
825const char *parse_cpu_model(const char *cpu_model)
826{
827 ObjectClass *oc;
828 CPUClass *cc;
829 gchar **model_pieces;
830 const char *cpu_type;
831
832 model_pieces = g_strsplit(cpu_model, ",", 2);
833
834 oc = cpu_class_by_name(CPU_RESOLVING_TYPE, model_pieces[0]);
835 if (oc == NULL) {
836 error_report("unable to find CPU model '%s'", model_pieces[0]);
837 g_strfreev(model_pieces);
838 exit(EXIT_FAILURE);
839 }
840
841 cpu_type = object_class_get_name(oc);
842 cc = CPU_CLASS(oc);
843 cc->parse_features(cpu_type, model_pieces[1], &error_fatal);
844 g_strfreev(model_pieces);
845 return cpu_type;
846}
847
406bc339 848#if defined(CONFIG_USER_ONLY)
00b941e5 849static void breakpoint_invalidate(CPUState *cpu, target_ulong pc)
1e7855a5 850{
406bc339
PK
851 mmap_lock();
852 tb_lock();
853 tb_invalidate_phys_page_range(pc, pc + 1, 0);
854 tb_unlock();
855 mmap_unlock();
856}
857#else
858static void breakpoint_invalidate(CPUState *cpu, target_ulong pc)
859{
860 MemTxAttrs attrs;
861 hwaddr phys = cpu_get_phys_page_attrs_debug(cpu, pc, &attrs);
862 int asidx = cpu_asidx_from_attrs(cpu, attrs);
863 if (phys != -1) {
864 /* Locks grabbed by tb_invalidate_phys_addr */
865 tb_invalidate_phys_addr(cpu->cpu_ases[asidx].as,
866 phys | (pc & ~TARGET_PAGE_MASK));
867 }
1e7855a5 868}
406bc339 869#endif
d720b93d 870
c527ee8f 871#if defined(CONFIG_USER_ONLY)
75a34036 872void cpu_watchpoint_remove_all(CPUState *cpu, int mask)
c527ee8f
PB
873
874{
875}
876
3ee887e8
PM
877int cpu_watchpoint_remove(CPUState *cpu, vaddr addr, vaddr len,
878 int flags)
879{
880 return -ENOSYS;
881}
882
883void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint)
884{
885}
886
75a34036 887int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len,
c527ee8f
PB
888 int flags, CPUWatchpoint **watchpoint)
889{
890 return -ENOSYS;
891}
892#else
6658ffb8 893/* Add a watchpoint. */
75a34036 894int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len,
a1d1bb31 895 int flags, CPUWatchpoint **watchpoint)
6658ffb8 896{
c0ce998e 897 CPUWatchpoint *wp;
6658ffb8 898
05068c0d 899 /* forbid ranges which are empty or run off the end of the address space */
07e2863d 900 if (len == 0 || (addr + len - 1) < addr) {
75a34036
AF
901 error_report("tried to set invalid watchpoint at %"
902 VADDR_PRIx ", len=%" VADDR_PRIu, addr, len);
b4051334
AL
903 return -EINVAL;
904 }
7267c094 905 wp = g_malloc(sizeof(*wp));
a1d1bb31
AL
906
907 wp->vaddr = addr;
05068c0d 908 wp->len = len;
a1d1bb31
AL
909 wp->flags = flags;
910
2dc9f411 911 /* keep all GDB-injected watchpoints in front */
ff4700b0
AF
912 if (flags & BP_GDB) {
913 QTAILQ_INSERT_HEAD(&cpu->watchpoints, wp, entry);
914 } else {
915 QTAILQ_INSERT_TAIL(&cpu->watchpoints, wp, entry);
916 }
6658ffb8 917
31b030d4 918 tlb_flush_page(cpu, addr);
a1d1bb31
AL
919
920 if (watchpoint)
921 *watchpoint = wp;
922 return 0;
6658ffb8
PB
923}
924
a1d1bb31 925/* Remove a specific watchpoint. */
75a34036 926int cpu_watchpoint_remove(CPUState *cpu, vaddr addr, vaddr len,
a1d1bb31 927 int flags)
6658ffb8 928{
a1d1bb31 929 CPUWatchpoint *wp;
6658ffb8 930
ff4700b0 931 QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) {
05068c0d 932 if (addr == wp->vaddr && len == wp->len
6e140f28 933 && flags == (wp->flags & ~BP_WATCHPOINT_HIT)) {
75a34036 934 cpu_watchpoint_remove_by_ref(cpu, wp);
6658ffb8
PB
935 return 0;
936 }
937 }
a1d1bb31 938 return -ENOENT;
6658ffb8
PB
939}
940
a1d1bb31 941/* Remove a specific watchpoint by reference. */
75a34036 942void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint)
a1d1bb31 943{
ff4700b0 944 QTAILQ_REMOVE(&cpu->watchpoints, watchpoint, entry);
7d03f82f 945
31b030d4 946 tlb_flush_page(cpu, watchpoint->vaddr);
a1d1bb31 947
7267c094 948 g_free(watchpoint);
a1d1bb31
AL
949}
950
951/* Remove all matching watchpoints. */
75a34036 952void cpu_watchpoint_remove_all(CPUState *cpu, int mask)
a1d1bb31 953{
c0ce998e 954 CPUWatchpoint *wp, *next;
a1d1bb31 955
ff4700b0 956 QTAILQ_FOREACH_SAFE(wp, &cpu->watchpoints, entry, next) {
75a34036
AF
957 if (wp->flags & mask) {
958 cpu_watchpoint_remove_by_ref(cpu, wp);
959 }
c0ce998e 960 }
7d03f82f 961}
05068c0d
PM
962
963/* Return true if this watchpoint address matches the specified
964 * access (ie the address range covered by the watchpoint overlaps
965 * partially or completely with the address range covered by the
966 * access).
967 */
968static inline bool cpu_watchpoint_address_matches(CPUWatchpoint *wp,
969 vaddr addr,
970 vaddr len)
971{
972 /* We know the lengths are non-zero, but a little caution is
973 * required to avoid errors in the case where the range ends
974 * exactly at the top of the address space and so addr + len
975 * wraps round to zero.
976 */
977 vaddr wpend = wp->vaddr + wp->len - 1;
978 vaddr addrend = addr + len - 1;
979
980 return !(addr > wpend || wp->vaddr > addrend);
981}
982
c527ee8f 983#endif
7d03f82f 984
a1d1bb31 985/* Add a breakpoint. */
b3310ab3 986int cpu_breakpoint_insert(CPUState *cpu, vaddr pc, int flags,
a1d1bb31 987 CPUBreakpoint **breakpoint)
4c3a88a2 988{
c0ce998e 989 CPUBreakpoint *bp;
3b46e624 990
7267c094 991 bp = g_malloc(sizeof(*bp));
4c3a88a2 992
a1d1bb31
AL
993 bp->pc = pc;
994 bp->flags = flags;
995
2dc9f411 996 /* keep all GDB-injected breakpoints in front */
00b941e5 997 if (flags & BP_GDB) {
f0c3c505 998 QTAILQ_INSERT_HEAD(&cpu->breakpoints, bp, entry);
00b941e5 999 } else {
f0c3c505 1000 QTAILQ_INSERT_TAIL(&cpu->breakpoints, bp, entry);
00b941e5 1001 }
3b46e624 1002
f0c3c505 1003 breakpoint_invalidate(cpu, pc);
a1d1bb31 1004
00b941e5 1005 if (breakpoint) {
a1d1bb31 1006 *breakpoint = bp;
00b941e5 1007 }
4c3a88a2 1008 return 0;
4c3a88a2
FB
1009}
1010
a1d1bb31 1011/* Remove a specific breakpoint. */
b3310ab3 1012int cpu_breakpoint_remove(CPUState *cpu, vaddr pc, int flags)
a1d1bb31 1013{
a1d1bb31
AL
1014 CPUBreakpoint *bp;
1015
f0c3c505 1016 QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) {
a1d1bb31 1017 if (bp->pc == pc && bp->flags == flags) {
b3310ab3 1018 cpu_breakpoint_remove_by_ref(cpu, bp);
a1d1bb31
AL
1019 return 0;
1020 }
7d03f82f 1021 }
a1d1bb31 1022 return -ENOENT;
7d03f82f
EI
1023}
1024
a1d1bb31 1025/* Remove a specific breakpoint by reference. */
b3310ab3 1026void cpu_breakpoint_remove_by_ref(CPUState *cpu, CPUBreakpoint *breakpoint)
4c3a88a2 1027{
f0c3c505
AF
1028 QTAILQ_REMOVE(&cpu->breakpoints, breakpoint, entry);
1029
1030 breakpoint_invalidate(cpu, breakpoint->pc);
a1d1bb31 1031
7267c094 1032 g_free(breakpoint);
a1d1bb31
AL
1033}
1034
1035/* Remove all matching breakpoints. */
b3310ab3 1036void cpu_breakpoint_remove_all(CPUState *cpu, int mask)
a1d1bb31 1037{
c0ce998e 1038 CPUBreakpoint *bp, *next;
a1d1bb31 1039
f0c3c505 1040 QTAILQ_FOREACH_SAFE(bp, &cpu->breakpoints, entry, next) {
b3310ab3
AF
1041 if (bp->flags & mask) {
1042 cpu_breakpoint_remove_by_ref(cpu, bp);
1043 }
c0ce998e 1044 }
4c3a88a2
FB
1045}
1046
c33a346e
FB
1047/* enable or disable single step mode. EXCP_DEBUG is returned by the
1048 CPU loop after each instruction */
3825b28f 1049void cpu_single_step(CPUState *cpu, int enabled)
c33a346e 1050{
ed2803da
AF
1051 if (cpu->singlestep_enabled != enabled) {
1052 cpu->singlestep_enabled = enabled;
1053 if (kvm_enabled()) {
38e478ec 1054 kvm_update_guest_debug(cpu, 0);
ed2803da 1055 } else {
ccbb4d44 1056 /* must flush all the translated code to avoid inconsistencies */
e22a25c9 1057 /* XXX: only flush what is necessary */
bbd77c18 1058 tb_flush(cpu);
e22a25c9 1059 }
c33a346e 1060 }
c33a346e
FB
1061}
1062
a47dddd7 1063void cpu_abort(CPUState *cpu, const char *fmt, ...)
7501267e
FB
1064{
1065 va_list ap;
493ae1f0 1066 va_list ap2;
7501267e
FB
1067
1068 va_start(ap, fmt);
493ae1f0 1069 va_copy(ap2, ap);
7501267e
FB
1070 fprintf(stderr, "qemu: fatal: ");
1071 vfprintf(stderr, fmt, ap);
1072 fprintf(stderr, "\n");
878096ee 1073 cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_FPU | CPU_DUMP_CCOP);
013a2942 1074 if (qemu_log_separate()) {
1ee73216 1075 qemu_log_lock();
93fcfe39
AL
1076 qemu_log("qemu: fatal: ");
1077 qemu_log_vprintf(fmt, ap2);
1078 qemu_log("\n");
a0762859 1079 log_cpu_state(cpu, CPU_DUMP_FPU | CPU_DUMP_CCOP);
31b1a7b4 1080 qemu_log_flush();
1ee73216 1081 qemu_log_unlock();
93fcfe39 1082 qemu_log_close();
924edcae 1083 }
493ae1f0 1084 va_end(ap2);
f9373291 1085 va_end(ap);
7615936e 1086 replay_finish();
fd052bf6
RV
1087#if defined(CONFIG_USER_ONLY)
1088 {
1089 struct sigaction act;
1090 sigfillset(&act.sa_mask);
1091 act.sa_handler = SIG_DFL;
1092 sigaction(SIGABRT, &act, NULL);
1093 }
1094#endif
7501267e
FB
1095 abort();
1096}
1097
0124311e 1098#if !defined(CONFIG_USER_ONLY)
0dc3f44a 1099/* Called from RCU critical section */
041603fe
PB
1100static RAMBlock *qemu_get_ram_block(ram_addr_t addr)
1101{
1102 RAMBlock *block;
1103
43771539 1104 block = atomic_rcu_read(&ram_list.mru_block);
9b8424d5 1105 if (block && addr - block->offset < block->max_length) {
68851b98 1106 return block;
041603fe 1107 }
99e15582 1108 RAMBLOCK_FOREACH(block) {
9b8424d5 1109 if (addr - block->offset < block->max_length) {
041603fe
PB
1110 goto found;
1111 }
1112 }
1113
1114 fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
1115 abort();
1116
1117found:
43771539
PB
1118 /* It is safe to write mru_block outside the iothread lock. This
1119 * is what happens:
1120 *
1121 * mru_block = xxx
1122 * rcu_read_unlock()
1123 * xxx removed from list
1124 * rcu_read_lock()
1125 * read mru_block
1126 * mru_block = NULL;
1127 * call_rcu(reclaim_ramblock, xxx);
1128 * rcu_read_unlock()
1129 *
1130 * atomic_rcu_set is not needed here. The block was already published
1131 * when it was placed into the list. Here we're just making an extra
1132 * copy of the pointer.
1133 */
041603fe
PB
1134 ram_list.mru_block = block;
1135 return block;
1136}
1137
a2f4d5be 1138static void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t length)
d24981d3 1139{
9a13565d 1140 CPUState *cpu;
041603fe 1141 ram_addr_t start1;
a2f4d5be
JQ
1142 RAMBlock *block;
1143 ram_addr_t end;
1144
1145 end = TARGET_PAGE_ALIGN(start + length);
1146 start &= TARGET_PAGE_MASK;
d24981d3 1147
0dc3f44a 1148 rcu_read_lock();
041603fe
PB
1149 block = qemu_get_ram_block(start);
1150 assert(block == qemu_get_ram_block(end - 1));
1240be24 1151 start1 = (uintptr_t)ramblock_ptr(block, start - block->offset);
9a13565d
PC
1152 CPU_FOREACH(cpu) {
1153 tlb_reset_dirty(cpu, start1, length);
1154 }
0dc3f44a 1155 rcu_read_unlock();
d24981d3
JQ
1156}
1157
5579c7f3 1158/* Note: start and end must be within the same ram block. */
03eebc9e
SH
1159bool cpu_physical_memory_test_and_clear_dirty(ram_addr_t start,
1160 ram_addr_t length,
1161 unsigned client)
1ccde1cb 1162{
5b82b703 1163 DirtyMemoryBlocks *blocks;
03eebc9e 1164 unsigned long end, page;
5b82b703 1165 bool dirty = false;
03eebc9e
SH
1166
1167 if (length == 0) {
1168 return false;
1169 }
f23db169 1170
03eebc9e
SH
1171 end = TARGET_PAGE_ALIGN(start + length) >> TARGET_PAGE_BITS;
1172 page = start >> TARGET_PAGE_BITS;
5b82b703
SH
1173
1174 rcu_read_lock();
1175
1176 blocks = atomic_rcu_read(&ram_list.dirty_memory[client]);
1177
1178 while (page < end) {
1179 unsigned long idx = page / DIRTY_MEMORY_BLOCK_SIZE;
1180 unsigned long offset = page % DIRTY_MEMORY_BLOCK_SIZE;
1181 unsigned long num = MIN(end - page, DIRTY_MEMORY_BLOCK_SIZE - offset);
1182
1183 dirty |= bitmap_test_and_clear_atomic(blocks->blocks[idx],
1184 offset, num);
1185 page += num;
1186 }
1187
1188 rcu_read_unlock();
03eebc9e
SH
1189
1190 if (dirty && tcg_enabled()) {
a2f4d5be 1191 tlb_reset_dirty_range_all(start, length);
5579c7f3 1192 }
03eebc9e
SH
1193
1194 return dirty;
1ccde1cb
FB
1195}
1196
8deaf12c
GH
1197DirtyBitmapSnapshot *cpu_physical_memory_snapshot_and_clear_dirty
1198 (ram_addr_t start, ram_addr_t length, unsigned client)
1199{
1200 DirtyMemoryBlocks *blocks;
1201 unsigned long align = 1UL << (TARGET_PAGE_BITS + BITS_PER_LEVEL);
1202 ram_addr_t first = QEMU_ALIGN_DOWN(start, align);
1203 ram_addr_t last = QEMU_ALIGN_UP(start + length, align);
1204 DirtyBitmapSnapshot *snap;
1205 unsigned long page, end, dest;
1206
1207 snap = g_malloc0(sizeof(*snap) +
1208 ((last - first) >> (TARGET_PAGE_BITS + 3)));
1209 snap->start = first;
1210 snap->end = last;
1211
1212 page = first >> TARGET_PAGE_BITS;
1213 end = last >> TARGET_PAGE_BITS;
1214 dest = 0;
1215
1216 rcu_read_lock();
1217
1218 blocks = atomic_rcu_read(&ram_list.dirty_memory[client]);
1219
1220 while (page < end) {
1221 unsigned long idx = page / DIRTY_MEMORY_BLOCK_SIZE;
1222 unsigned long offset = page % DIRTY_MEMORY_BLOCK_SIZE;
1223 unsigned long num = MIN(end - page, DIRTY_MEMORY_BLOCK_SIZE - offset);
1224
1225 assert(QEMU_IS_ALIGNED(offset, (1 << BITS_PER_LEVEL)));
1226 assert(QEMU_IS_ALIGNED(num, (1 << BITS_PER_LEVEL)));
1227 offset >>= BITS_PER_LEVEL;
1228
1229 bitmap_copy_and_clear_atomic(snap->dirty + dest,
1230 blocks->blocks[idx] + offset,
1231 num);
1232 page += num;
1233 dest += num >> BITS_PER_LEVEL;
1234 }
1235
1236 rcu_read_unlock();
1237
1238 if (tcg_enabled()) {
1239 tlb_reset_dirty_range_all(start, length);
1240 }
1241
1242 return snap;
1243}
1244
1245bool cpu_physical_memory_snapshot_get_dirty(DirtyBitmapSnapshot *snap,
1246 ram_addr_t start,
1247 ram_addr_t length)
1248{
1249 unsigned long page, end;
1250
1251 assert(start >= snap->start);
1252 assert(start + length <= snap->end);
1253
1254 end = TARGET_PAGE_ALIGN(start + length - snap->start) >> TARGET_PAGE_BITS;
1255 page = (start - snap->start) >> TARGET_PAGE_BITS;
1256
1257 while (page < end) {
1258 if (test_bit(page, snap->dirty)) {
1259 return true;
1260 }
1261 page++;
1262 }
1263 return false;
1264}
1265
79e2b9ae 1266/* Called from RCU critical section */
bb0e627a 1267hwaddr memory_region_section_get_iotlb(CPUState *cpu,
149f54b5
PB
1268 MemoryRegionSection *section,
1269 target_ulong vaddr,
1270 hwaddr paddr, hwaddr xlat,
1271 int prot,
1272 target_ulong *address)
e5548617 1273{
a8170e5e 1274 hwaddr iotlb;
e5548617
BS
1275 CPUWatchpoint *wp;
1276
cc5bea60 1277 if (memory_region_is_ram(section->mr)) {
e5548617 1278 /* Normal RAM. */
e4e69794 1279 iotlb = memory_region_get_ram_addr(section->mr) + xlat;
e5548617 1280 if (!section->readonly) {
b41aac4f 1281 iotlb |= PHYS_SECTION_NOTDIRTY;
e5548617 1282 } else {
b41aac4f 1283 iotlb |= PHYS_SECTION_ROM;
e5548617
BS
1284 }
1285 } else {
0b8e2c10
PM
1286 AddressSpaceDispatch *d;
1287
16620684 1288 d = flatview_to_dispatch(section->fv);
0b8e2c10 1289 iotlb = section - d->map.sections;
149f54b5 1290 iotlb += xlat;
e5548617
BS
1291 }
1292
1293 /* Make accesses to pages with watchpoints go via the
1294 watchpoint trap routines. */
ff4700b0 1295 QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) {
05068c0d 1296 if (cpu_watchpoint_address_matches(wp, vaddr, TARGET_PAGE_SIZE)) {
e5548617
BS
1297 /* Avoid trapping reads of pages with a write breakpoint. */
1298 if ((prot & PAGE_WRITE) || (wp->flags & BP_MEM_READ)) {
b41aac4f 1299 iotlb = PHYS_SECTION_WATCH + paddr;
e5548617
BS
1300 *address |= TLB_MMIO;
1301 break;
1302 }
1303 }
1304 }
1305
1306 return iotlb;
1307}
9fa3e853
FB
1308#endif /* defined(CONFIG_USER_ONLY) */
1309
e2eef170 1310#if !defined(CONFIG_USER_ONLY)
8da3ff18 1311
c227f099 1312static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
5312bd8b 1313 uint16_t section);
16620684 1314static subpage_t *subpage_init(FlatView *fv, hwaddr base);
54688b1e 1315
06329cce 1316static void *(*phys_mem_alloc)(size_t size, uint64_t *align, bool shared) =
a2b257d6 1317 qemu_anon_ram_alloc;
91138037
MA
1318
1319/*
1320 * Set a custom physical guest memory alloator.
1321 * Accelerators with unusual needs may need this. Hopefully, we can
1322 * get rid of it eventually.
1323 */
06329cce 1324void phys_mem_set_alloc(void *(*alloc)(size_t, uint64_t *align, bool shared))
91138037
MA
1325{
1326 phys_mem_alloc = alloc;
1327}
1328
53cb28cb
MA
1329static uint16_t phys_section_add(PhysPageMap *map,
1330 MemoryRegionSection *section)
5312bd8b 1331{
68f3f65b
PB
1332 /* The physical section number is ORed with a page-aligned
1333 * pointer to produce the iotlb entries. Thus it should
1334 * never overflow into the page-aligned value.
1335 */
53cb28cb 1336 assert(map->sections_nb < TARGET_PAGE_SIZE);
68f3f65b 1337
53cb28cb
MA
1338 if (map->sections_nb == map->sections_nb_alloc) {
1339 map->sections_nb_alloc = MAX(map->sections_nb_alloc * 2, 16);
1340 map->sections = g_renew(MemoryRegionSection, map->sections,
1341 map->sections_nb_alloc);
5312bd8b 1342 }
53cb28cb 1343 map->sections[map->sections_nb] = *section;
dfde4e6e 1344 memory_region_ref(section->mr);
53cb28cb 1345 return map->sections_nb++;
5312bd8b
AK
1346}
1347
058bc4b5
PB
1348static void phys_section_destroy(MemoryRegion *mr)
1349{
55b4e80b
DS
1350 bool have_sub_page = mr->subpage;
1351
dfde4e6e
PB
1352 memory_region_unref(mr);
1353
55b4e80b 1354 if (have_sub_page) {
058bc4b5 1355 subpage_t *subpage = container_of(mr, subpage_t, iomem);
b4fefef9 1356 object_unref(OBJECT(&subpage->iomem));
058bc4b5
PB
1357 g_free(subpage);
1358 }
1359}
1360
6092666e 1361static void phys_sections_free(PhysPageMap *map)
5312bd8b 1362{
9affd6fc
PB
1363 while (map->sections_nb > 0) {
1364 MemoryRegionSection *section = &map->sections[--map->sections_nb];
058bc4b5
PB
1365 phys_section_destroy(section->mr);
1366 }
9affd6fc
PB
1367 g_free(map->sections);
1368 g_free(map->nodes);
5312bd8b
AK
1369}
1370
9950322a 1371static void register_subpage(FlatView *fv, MemoryRegionSection *section)
0f0cb164 1372{
9950322a 1373 AddressSpaceDispatch *d = flatview_to_dispatch(fv);
0f0cb164 1374 subpage_t *subpage;
a8170e5e 1375 hwaddr base = section->offset_within_address_space
0f0cb164 1376 & TARGET_PAGE_MASK;
003a0cf2 1377 MemoryRegionSection *existing = phys_page_find(d, base);
0f0cb164
AK
1378 MemoryRegionSection subsection = {
1379 .offset_within_address_space = base,
052e87b0 1380 .size = int128_make64(TARGET_PAGE_SIZE),
0f0cb164 1381 };
a8170e5e 1382 hwaddr start, end;
0f0cb164 1383
f3705d53 1384 assert(existing->mr->subpage || existing->mr == &io_mem_unassigned);
0f0cb164 1385
f3705d53 1386 if (!(existing->mr->subpage)) {
16620684
AK
1387 subpage = subpage_init(fv, base);
1388 subsection.fv = fv;
0f0cb164 1389 subsection.mr = &subpage->iomem;
ac1970fb 1390 phys_page_set(d, base >> TARGET_PAGE_BITS, 1,
53cb28cb 1391 phys_section_add(&d->map, &subsection));
0f0cb164 1392 } else {
f3705d53 1393 subpage = container_of(existing->mr, subpage_t, iomem);
0f0cb164
AK
1394 }
1395 start = section->offset_within_address_space & ~TARGET_PAGE_MASK;
052e87b0 1396 end = start + int128_get64(section->size) - 1;
53cb28cb
MA
1397 subpage_register(subpage, start, end,
1398 phys_section_add(&d->map, section));
0f0cb164
AK
1399}
1400
1401
9950322a 1402static void register_multipage(FlatView *fv,
052e87b0 1403 MemoryRegionSection *section)
33417e70 1404{
9950322a 1405 AddressSpaceDispatch *d = flatview_to_dispatch(fv);
a8170e5e 1406 hwaddr start_addr = section->offset_within_address_space;
53cb28cb 1407 uint16_t section_index = phys_section_add(&d->map, section);
052e87b0
PB
1408 uint64_t num_pages = int128_get64(int128_rshift(section->size,
1409 TARGET_PAGE_BITS));
dd81124b 1410
733d5ef5
PB
1411 assert(num_pages);
1412 phys_page_set(d, start_addr >> TARGET_PAGE_BITS, num_pages, section_index);
33417e70
FB
1413}
1414
8629d3fc 1415void flatview_add_to_dispatch(FlatView *fv, MemoryRegionSection *section)
0f0cb164 1416{
99b9cc06 1417 MemoryRegionSection now = *section, remain = *section;
052e87b0 1418 Int128 page_size = int128_make64(TARGET_PAGE_SIZE);
0f0cb164 1419
733d5ef5
PB
1420 if (now.offset_within_address_space & ~TARGET_PAGE_MASK) {
1421 uint64_t left = TARGET_PAGE_ALIGN(now.offset_within_address_space)
1422 - now.offset_within_address_space;
1423
052e87b0 1424 now.size = int128_min(int128_make64(left), now.size);
9950322a 1425 register_subpage(fv, &now);
733d5ef5 1426 } else {
052e87b0 1427 now.size = int128_zero();
733d5ef5 1428 }
052e87b0
PB
1429 while (int128_ne(remain.size, now.size)) {
1430 remain.size = int128_sub(remain.size, now.size);
1431 remain.offset_within_address_space += int128_get64(now.size);
1432 remain.offset_within_region += int128_get64(now.size);
69b67646 1433 now = remain;
052e87b0 1434 if (int128_lt(remain.size, page_size)) {
9950322a 1435 register_subpage(fv, &now);
88266249 1436 } else if (remain.offset_within_address_space & ~TARGET_PAGE_MASK) {
052e87b0 1437 now.size = page_size;
9950322a 1438 register_subpage(fv, &now);
69b67646 1439 } else {
052e87b0 1440 now.size = int128_and(now.size, int128_neg(page_size));
9950322a 1441 register_multipage(fv, &now);
69b67646 1442 }
0f0cb164
AK
1443 }
1444}
1445
62a2744c
SY
1446void qemu_flush_coalesced_mmio_buffer(void)
1447{
1448 if (kvm_enabled())
1449 kvm_flush_coalesced_mmio_buffer();
1450}
1451
b2a8658e
UD
1452void qemu_mutex_lock_ramlist(void)
1453{
1454 qemu_mutex_lock(&ram_list.mutex);
1455}
1456
1457void qemu_mutex_unlock_ramlist(void)
1458{
1459 qemu_mutex_unlock(&ram_list.mutex);
1460}
1461
be9b23c4
PX
1462void ram_block_dump(Monitor *mon)
1463{
1464 RAMBlock *block;
1465 char *psize;
1466
1467 rcu_read_lock();
1468 monitor_printf(mon, "%24s %8s %18s %18s %18s\n",
1469 "Block Name", "PSize", "Offset", "Used", "Total");
1470 RAMBLOCK_FOREACH(block) {
1471 psize = size_to_str(block->page_size);
1472 monitor_printf(mon, "%24s %8s 0x%016" PRIx64 " 0x%016" PRIx64
1473 " 0x%016" PRIx64 "\n", block->idstr, psize,
1474 (uint64_t)block->offset,
1475 (uint64_t)block->used_length,
1476 (uint64_t)block->max_length);
1477 g_free(psize);
1478 }
1479 rcu_read_unlock();
1480}
1481
9c607668
AK
1482#ifdef __linux__
1483/*
1484 * FIXME TOCTTOU: this iterates over memory backends' mem-path, which
1485 * may or may not name the same files / on the same filesystem now as
1486 * when we actually open and map them. Iterate over the file
1487 * descriptors instead, and use qemu_fd_getpagesize().
1488 */
1489static int find_max_supported_pagesize(Object *obj, void *opaque)
1490{
1491 char *mem_path;
1492 long *hpsize_min = opaque;
1493
1494 if (object_dynamic_cast(obj, TYPE_MEMORY_BACKEND)) {
1495 mem_path = object_property_get_str(obj, "mem-path", NULL);
1496 if (mem_path) {
1497 long hpsize = qemu_mempath_getpagesize(mem_path);
1498 if (hpsize < *hpsize_min) {
1499 *hpsize_min = hpsize;
1500 }
1501 } else {
1502 *hpsize_min = getpagesize();
1503 }
1504 }
1505
1506 return 0;
1507}
1508
1509long qemu_getrampagesize(void)
1510{
1511 long hpsize = LONG_MAX;
1512 long mainrampagesize;
1513 Object *memdev_root;
1514
1515 if (mem_path) {
1516 mainrampagesize = qemu_mempath_getpagesize(mem_path);
1517 } else {
1518 mainrampagesize = getpagesize();
1519 }
1520
1521 /* it's possible we have memory-backend objects with
1522 * hugepage-backed RAM. these may get mapped into system
1523 * address space via -numa parameters or memory hotplug
1524 * hooks. we want to take these into account, but we
1525 * also want to make sure these supported hugepage
1526 * sizes are applicable across the entire range of memory
1527 * we may boot from, so we take the min across all
1528 * backends, and assume normal pages in cases where a
1529 * backend isn't backed by hugepages.
1530 */
1531 memdev_root = object_resolve_path("/objects", NULL);
1532 if (memdev_root) {
1533 object_child_foreach(memdev_root, find_max_supported_pagesize, &hpsize);
1534 }
1535 if (hpsize == LONG_MAX) {
1536 /* No additional memory regions found ==> Report main RAM page size */
1537 return mainrampagesize;
1538 }
1539
1540 /* If NUMA is disabled or the NUMA nodes are not backed with a
1541 * memory-backend, then there is at least one node using "normal" RAM,
1542 * so if its page size is smaller we have got to report that size instead.
1543 */
1544 if (hpsize > mainrampagesize &&
1545 (nb_numa_nodes == 0 || numa_info[0].node_memdev == NULL)) {
1546 static bool warned;
1547 if (!warned) {
1548 error_report("Huge page support disabled (n/a for main memory).");
1549 warned = true;
1550 }
1551 return mainrampagesize;
1552 }
1553
1554 return hpsize;
1555}
1556#else
1557long qemu_getrampagesize(void)
1558{
1559 return getpagesize();
1560}
1561#endif
1562
e1e84ba0 1563#ifdef __linux__
d6af99c9
HZ
1564static int64_t get_file_size(int fd)
1565{
1566 int64_t size = lseek(fd, 0, SEEK_END);
1567 if (size < 0) {
1568 return -errno;
1569 }
1570 return size;
1571}
1572
8d37b030
MAL
1573static int file_ram_open(const char *path,
1574 const char *region_name,
1575 bool *created,
1576 Error **errp)
c902760f
MT
1577{
1578 char *filename;
8ca761f6
PF
1579 char *sanitized_name;
1580 char *c;
5c3ece79 1581 int fd = -1;
c902760f 1582
8d37b030 1583 *created = false;
fd97fd44
MA
1584 for (;;) {
1585 fd = open(path, O_RDWR);
1586 if (fd >= 0) {
1587 /* @path names an existing file, use it */
1588 break;
8d31d6b6 1589 }
fd97fd44
MA
1590 if (errno == ENOENT) {
1591 /* @path names a file that doesn't exist, create it */
1592 fd = open(path, O_RDWR | O_CREAT | O_EXCL, 0644);
1593 if (fd >= 0) {
8d37b030 1594 *created = true;
fd97fd44
MA
1595 break;
1596 }
1597 } else if (errno == EISDIR) {
1598 /* @path names a directory, create a file there */
1599 /* Make name safe to use with mkstemp by replacing '/' with '_'. */
8d37b030 1600 sanitized_name = g_strdup(region_name);
fd97fd44
MA
1601 for (c = sanitized_name; *c != '\0'; c++) {
1602 if (*c == '/') {
1603 *c = '_';
1604 }
1605 }
8ca761f6 1606
fd97fd44
MA
1607 filename = g_strdup_printf("%s/qemu_back_mem.%s.XXXXXX", path,
1608 sanitized_name);
1609 g_free(sanitized_name);
8d31d6b6 1610
fd97fd44
MA
1611 fd = mkstemp(filename);
1612 if (fd >= 0) {
1613 unlink(filename);
1614 g_free(filename);
1615 break;
1616 }
1617 g_free(filename);
8d31d6b6 1618 }
fd97fd44
MA
1619 if (errno != EEXIST && errno != EINTR) {
1620 error_setg_errno(errp, errno,
1621 "can't open backing store %s for guest RAM",
1622 path);
8d37b030 1623 return -1;
fd97fd44
MA
1624 }
1625 /*
1626 * Try again on EINTR and EEXIST. The latter happens when
1627 * something else creates the file between our two open().
1628 */
8d31d6b6 1629 }
c902760f 1630
8d37b030
MAL
1631 return fd;
1632}
1633
1634static void *file_ram_alloc(RAMBlock *block,
1635 ram_addr_t memory,
1636 int fd,
1637 bool truncate,
1638 Error **errp)
1639{
1640 void *area;
1641
863e9621 1642 block->page_size = qemu_fd_getpagesize(fd);
98376843
HZ
1643 if (block->mr->align % block->page_size) {
1644 error_setg(errp, "alignment 0x%" PRIx64
1645 " must be multiples of page size 0x%zx",
1646 block->mr->align, block->page_size);
1647 return NULL;
1648 }
1649 block->mr->align = MAX(block->page_size, block->mr->align);
8360668e
HZ
1650#if defined(__s390x__)
1651 if (kvm_enabled()) {
1652 block->mr->align = MAX(block->mr->align, QEMU_VMALLOC_ALIGN);
1653 }
1654#endif
fd97fd44 1655
863e9621 1656 if (memory < block->page_size) {
fd97fd44 1657 error_setg(errp, "memory size 0x" RAM_ADDR_FMT " must be equal to "
863e9621
DDAG
1658 "or larger than page size 0x%zx",
1659 memory, block->page_size);
8d37b030 1660 return NULL;
1775f111
HZ
1661 }
1662
863e9621 1663 memory = ROUND_UP(memory, block->page_size);
c902760f
MT
1664
1665 /*
1666 * ftruncate is not supported by hugetlbfs in older
1667 * hosts, so don't bother bailing out on errors.
1668 * If anything goes wrong with it under other filesystems,
1669 * mmap will fail.
d6af99c9
HZ
1670 *
1671 * Do not truncate the non-empty backend file to avoid corrupting
1672 * the existing data in the file. Disabling shrinking is not
1673 * enough. For example, the current vNVDIMM implementation stores
1674 * the guest NVDIMM labels at the end of the backend file. If the
1675 * backend file is later extended, QEMU will not be able to find
1676 * those labels. Therefore, extending the non-empty backend file
1677 * is disabled as well.
c902760f 1678 */
8d37b030 1679 if (truncate && ftruncate(fd, memory)) {
9742bf26 1680 perror("ftruncate");
7f56e740 1681 }
c902760f 1682
d2f39add
DD
1683 area = qemu_ram_mmap(fd, memory, block->mr->align,
1684 block->flags & RAM_SHARED);
c902760f 1685 if (area == MAP_FAILED) {
7f56e740 1686 error_setg_errno(errp, errno,
fd97fd44 1687 "unable to map backing store for guest RAM");
8d37b030 1688 return NULL;
c902760f 1689 }
ef36fa14
MT
1690
1691 if (mem_prealloc) {
1e356fc1 1692 os_mem_prealloc(fd, area, memory, smp_cpus, errp);
056b68af 1693 if (errp && *errp) {
8d37b030
MAL
1694 qemu_ram_munmap(area, memory);
1695 return NULL;
056b68af 1696 }
ef36fa14
MT
1697 }
1698
04b16653 1699 block->fd = fd;
c902760f
MT
1700 return area;
1701}
1702#endif
1703
154cc9ea
DDAG
1704/* Allocate space within the ram_addr_t space that governs the
1705 * dirty bitmaps.
1706 * Called with the ramlist lock held.
1707 */
d17b5288 1708static ram_addr_t find_ram_offset(ram_addr_t size)
04b16653
AW
1709{
1710 RAMBlock *block, *next_block;
3e837b2c 1711 ram_addr_t offset = RAM_ADDR_MAX, mingap = RAM_ADDR_MAX;
04b16653 1712
49cd9ac6
SH
1713 assert(size != 0); /* it would hand out same offset multiple times */
1714
0dc3f44a 1715 if (QLIST_EMPTY_RCU(&ram_list.blocks)) {
04b16653 1716 return 0;
0d53d9fe 1717 }
04b16653 1718
99e15582 1719 RAMBLOCK_FOREACH(block) {
154cc9ea 1720 ram_addr_t candidate, next = RAM_ADDR_MAX;
04b16653 1721
801110ab
DDAG
1722 /* Align blocks to start on a 'long' in the bitmap
1723 * which makes the bitmap sync'ing take the fast path.
1724 */
154cc9ea 1725 candidate = block->offset + block->max_length;
801110ab 1726 candidate = ROUND_UP(candidate, BITS_PER_LONG << TARGET_PAGE_BITS);
04b16653 1727
154cc9ea
DDAG
1728 /* Search for the closest following block
1729 * and find the gap.
1730 */
99e15582 1731 RAMBLOCK_FOREACH(next_block) {
154cc9ea 1732 if (next_block->offset >= candidate) {
04b16653
AW
1733 next = MIN(next, next_block->offset);
1734 }
1735 }
154cc9ea
DDAG
1736
1737 /* If it fits remember our place and remember the size
1738 * of gap, but keep going so that we might find a smaller
1739 * gap to fill so avoiding fragmentation.
1740 */
1741 if (next - candidate >= size && next - candidate < mingap) {
1742 offset = candidate;
1743 mingap = next - candidate;
04b16653 1744 }
154cc9ea
DDAG
1745
1746 trace_find_ram_offset_loop(size, candidate, offset, next, mingap);
04b16653 1747 }
3e837b2c
AW
1748
1749 if (offset == RAM_ADDR_MAX) {
1750 fprintf(stderr, "Failed to find gap of requested size: %" PRIu64 "\n",
1751 (uint64_t)size);
1752 abort();
1753 }
1754
154cc9ea
DDAG
1755 trace_find_ram_offset(size, offset);
1756
04b16653
AW
1757 return offset;
1758}
1759
b8c48993 1760unsigned long last_ram_page(void)
d17b5288
AW
1761{
1762 RAMBlock *block;
1763 ram_addr_t last = 0;
1764
0dc3f44a 1765 rcu_read_lock();
99e15582 1766 RAMBLOCK_FOREACH(block) {
62be4e3a 1767 last = MAX(last, block->offset + block->max_length);
0d53d9fe 1768 }
0dc3f44a 1769 rcu_read_unlock();
b8c48993 1770 return last >> TARGET_PAGE_BITS;
d17b5288
AW
1771}
1772
ddb97f1d
JB
1773static void qemu_ram_setup_dump(void *addr, ram_addr_t size)
1774{
1775 int ret;
ddb97f1d
JB
1776
1777 /* Use MADV_DONTDUMP, if user doesn't want the guest memory in the core */
47c8ca53 1778 if (!machine_dump_guest_core(current_machine)) {
ddb97f1d
JB
1779 ret = qemu_madvise(addr, size, QEMU_MADV_DONTDUMP);
1780 if (ret) {
1781 perror("qemu_madvise");
1782 fprintf(stderr, "madvise doesn't support MADV_DONTDUMP, "
1783 "but dump_guest_core=off specified\n");
1784 }
1785 }
1786}
1787
422148d3
DDAG
1788const char *qemu_ram_get_idstr(RAMBlock *rb)
1789{
1790 return rb->idstr;
1791}
1792
463a4ac2
DDAG
1793bool qemu_ram_is_shared(RAMBlock *rb)
1794{
1795 return rb->flags & RAM_SHARED;
1796}
1797
2ce16640
DDAG
1798/* Note: Only set at the start of postcopy */
1799bool qemu_ram_is_uf_zeroable(RAMBlock *rb)
1800{
1801 return rb->flags & RAM_UF_ZEROPAGE;
1802}
1803
1804void qemu_ram_set_uf_zeroable(RAMBlock *rb)
1805{
1806 rb->flags |= RAM_UF_ZEROPAGE;
1807}
1808
ae3a7047 1809/* Called with iothread lock held. */
fa53a0e5 1810void qemu_ram_set_idstr(RAMBlock *new_block, const char *name, DeviceState *dev)
20cfe881 1811{
fa53a0e5 1812 RAMBlock *block;
20cfe881 1813
c5705a77
AK
1814 assert(new_block);
1815 assert(!new_block->idstr[0]);
84b89d78 1816
09e5ab63
AL
1817 if (dev) {
1818 char *id = qdev_get_dev_path(dev);
84b89d78
CM
1819 if (id) {
1820 snprintf(new_block->idstr, sizeof(new_block->idstr), "%s/", id);
7267c094 1821 g_free(id);
84b89d78
CM
1822 }
1823 }
1824 pstrcat(new_block->idstr, sizeof(new_block->idstr), name);
1825
ab0a9956 1826 rcu_read_lock();
99e15582 1827 RAMBLOCK_FOREACH(block) {
fa53a0e5
GA
1828 if (block != new_block &&
1829 !strcmp(block->idstr, new_block->idstr)) {
84b89d78
CM
1830 fprintf(stderr, "RAMBlock \"%s\" already registered, abort!\n",
1831 new_block->idstr);
1832 abort();
1833 }
1834 }
0dc3f44a 1835 rcu_read_unlock();
c5705a77
AK
1836}
1837
ae3a7047 1838/* Called with iothread lock held. */
fa53a0e5 1839void qemu_ram_unset_idstr(RAMBlock *block)
20cfe881 1840{
ae3a7047
MD
1841 /* FIXME: arch_init.c assumes that this is not called throughout
1842 * migration. Ignore the problem since hot-unplug during migration
1843 * does not work anyway.
1844 */
20cfe881
HT
1845 if (block) {
1846 memset(block->idstr, 0, sizeof(block->idstr));
1847 }
1848}
1849
863e9621
DDAG
1850size_t qemu_ram_pagesize(RAMBlock *rb)
1851{
1852 return rb->page_size;
1853}
1854
67f11b5c
DDAG
1855/* Returns the largest size of page in use */
1856size_t qemu_ram_pagesize_largest(void)
1857{
1858 RAMBlock *block;
1859 size_t largest = 0;
1860
99e15582 1861 RAMBLOCK_FOREACH(block) {
67f11b5c
DDAG
1862 largest = MAX(largest, qemu_ram_pagesize(block));
1863 }
1864
1865 return largest;
1866}
1867
8490fc78
LC
1868static int memory_try_enable_merging(void *addr, size_t len)
1869{
75cc7f01 1870 if (!machine_mem_merge(current_machine)) {
8490fc78
LC
1871 /* disabled by the user */
1872 return 0;
1873 }
1874
1875 return qemu_madvise(addr, len, QEMU_MADV_MERGEABLE);
1876}
1877
62be4e3a
MT
1878/* Only legal before guest might have detected the memory size: e.g. on
1879 * incoming migration, or right after reset.
1880 *
1881 * As memory core doesn't know how is memory accessed, it is up to
1882 * resize callback to update device state and/or add assertions to detect
1883 * misuse, if necessary.
1884 */
fa53a0e5 1885int qemu_ram_resize(RAMBlock *block, ram_addr_t newsize, Error **errp)
62be4e3a 1886{
62be4e3a
MT
1887 assert(block);
1888
4ed023ce 1889 newsize = HOST_PAGE_ALIGN(newsize);
129ddaf3 1890
62be4e3a
MT
1891 if (block->used_length == newsize) {
1892 return 0;
1893 }
1894
1895 if (!(block->flags & RAM_RESIZEABLE)) {
1896 error_setg_errno(errp, EINVAL,
1897 "Length mismatch: %s: 0x" RAM_ADDR_FMT
1898 " in != 0x" RAM_ADDR_FMT, block->idstr,
1899 newsize, block->used_length);
1900 return -EINVAL;
1901 }
1902
1903 if (block->max_length < newsize) {
1904 error_setg_errno(errp, EINVAL,
1905 "Length too large: %s: 0x" RAM_ADDR_FMT
1906 " > 0x" RAM_ADDR_FMT, block->idstr,
1907 newsize, block->max_length);
1908 return -EINVAL;
1909 }
1910
1911 cpu_physical_memory_clear_dirty_range(block->offset, block->used_length);
1912 block->used_length = newsize;
58d2707e
PB
1913 cpu_physical_memory_set_dirty_range(block->offset, block->used_length,
1914 DIRTY_CLIENTS_ALL);
62be4e3a
MT
1915 memory_region_set_size(block->mr, newsize);
1916 if (block->resized) {
1917 block->resized(block->idstr, newsize, block->host);
1918 }
1919 return 0;
1920}
1921
5b82b703
SH
1922/* Called with ram_list.mutex held */
1923static void dirty_memory_extend(ram_addr_t old_ram_size,
1924 ram_addr_t new_ram_size)
1925{
1926 ram_addr_t old_num_blocks = DIV_ROUND_UP(old_ram_size,
1927 DIRTY_MEMORY_BLOCK_SIZE);
1928 ram_addr_t new_num_blocks = DIV_ROUND_UP(new_ram_size,
1929 DIRTY_MEMORY_BLOCK_SIZE);
1930 int i;
1931
1932 /* Only need to extend if block count increased */
1933 if (new_num_blocks <= old_num_blocks) {
1934 return;
1935 }
1936
1937 for (i = 0; i < DIRTY_MEMORY_NUM; i++) {
1938 DirtyMemoryBlocks *old_blocks;
1939 DirtyMemoryBlocks *new_blocks;
1940 int j;
1941
1942 old_blocks = atomic_rcu_read(&ram_list.dirty_memory[i]);
1943 new_blocks = g_malloc(sizeof(*new_blocks) +
1944 sizeof(new_blocks->blocks[0]) * new_num_blocks);
1945
1946 if (old_num_blocks) {
1947 memcpy(new_blocks->blocks, old_blocks->blocks,
1948 old_num_blocks * sizeof(old_blocks->blocks[0]));
1949 }
1950
1951 for (j = old_num_blocks; j < new_num_blocks; j++) {
1952 new_blocks->blocks[j] = bitmap_new(DIRTY_MEMORY_BLOCK_SIZE);
1953 }
1954
1955 atomic_rcu_set(&ram_list.dirty_memory[i], new_blocks);
1956
1957 if (old_blocks) {
1958 g_free_rcu(old_blocks, rcu);
1959 }
1960 }
1961}
1962
06329cce 1963static void ram_block_add(RAMBlock *new_block, Error **errp, bool shared)
c5705a77 1964{
e1c57ab8 1965 RAMBlock *block;
0d53d9fe 1966 RAMBlock *last_block = NULL;
2152f5ca 1967 ram_addr_t old_ram_size, new_ram_size;
37aa7a0e 1968 Error *err = NULL;
2152f5ca 1969
b8c48993 1970 old_ram_size = last_ram_page();
c5705a77 1971
b2a8658e 1972 qemu_mutex_lock_ramlist();
9b8424d5 1973 new_block->offset = find_ram_offset(new_block->max_length);
e1c57ab8
PB
1974
1975 if (!new_block->host) {
1976 if (xen_enabled()) {
9b8424d5 1977 xen_ram_alloc(new_block->offset, new_block->max_length,
37aa7a0e
MA
1978 new_block->mr, &err);
1979 if (err) {
1980 error_propagate(errp, err);
1981 qemu_mutex_unlock_ramlist();
39c350ee 1982 return;
37aa7a0e 1983 }
e1c57ab8 1984 } else {
9b8424d5 1985 new_block->host = phys_mem_alloc(new_block->max_length,
06329cce 1986 &new_block->mr->align, shared);
39228250 1987 if (!new_block->host) {
ef701d7b
HT
1988 error_setg_errno(errp, errno,
1989 "cannot set up guest memory '%s'",
1990 memory_region_name(new_block->mr));
1991 qemu_mutex_unlock_ramlist();
39c350ee 1992 return;
39228250 1993 }
9b8424d5 1994 memory_try_enable_merging(new_block->host, new_block->max_length);
6977dfe6 1995 }
c902760f 1996 }
94a6b54f 1997
dd631697
LZ
1998 new_ram_size = MAX(old_ram_size,
1999 (new_block->offset + new_block->max_length) >> TARGET_PAGE_BITS);
2000 if (new_ram_size > old_ram_size) {
5b82b703 2001 dirty_memory_extend(old_ram_size, new_ram_size);
dd631697 2002 }
0d53d9fe
MD
2003 /* Keep the list sorted from biggest to smallest block. Unlike QTAILQ,
2004 * QLIST (which has an RCU-friendly variant) does not have insertion at
2005 * tail, so save the last element in last_block.
2006 */
99e15582 2007 RAMBLOCK_FOREACH(block) {
0d53d9fe 2008 last_block = block;
9b8424d5 2009 if (block->max_length < new_block->max_length) {
abb26d63
PB
2010 break;
2011 }
2012 }
2013 if (block) {
0dc3f44a 2014 QLIST_INSERT_BEFORE_RCU(block, new_block, next);
0d53d9fe 2015 } else if (last_block) {
0dc3f44a 2016 QLIST_INSERT_AFTER_RCU(last_block, new_block, next);
0d53d9fe 2017 } else { /* list is empty */
0dc3f44a 2018 QLIST_INSERT_HEAD_RCU(&ram_list.blocks, new_block, next);
abb26d63 2019 }
0d6d3c87 2020 ram_list.mru_block = NULL;
94a6b54f 2021
0dc3f44a
MD
2022 /* Write list before version */
2023 smp_wmb();
f798b07f 2024 ram_list.version++;
b2a8658e 2025 qemu_mutex_unlock_ramlist();
f798b07f 2026
9b8424d5 2027 cpu_physical_memory_set_dirty_range(new_block->offset,
58d2707e
PB
2028 new_block->used_length,
2029 DIRTY_CLIENTS_ALL);
94a6b54f 2030
a904c911
PB
2031 if (new_block->host) {
2032 qemu_ram_setup_dump(new_block->host, new_block->max_length);
2033 qemu_madvise(new_block->host, new_block->max_length, QEMU_MADV_HUGEPAGE);
c2cd627d 2034 /* MADV_DONTFORK is also needed by KVM in absence of synchronous MMU */
a904c911 2035 qemu_madvise(new_block->host, new_block->max_length, QEMU_MADV_DONTFORK);
0987d735 2036 ram_block_notify_add(new_block->host, new_block->max_length);
e1c57ab8 2037 }
94a6b54f 2038}
e9a1ab19 2039
0b183fc8 2040#ifdef __linux__
38b3362d
MAL
2041RAMBlock *qemu_ram_alloc_from_fd(ram_addr_t size, MemoryRegion *mr,
2042 bool share, int fd,
2043 Error **errp)
e1c57ab8
PB
2044{
2045 RAMBlock *new_block;
ef701d7b 2046 Error *local_err = NULL;
8d37b030 2047 int64_t file_size;
e1c57ab8
PB
2048
2049 if (xen_enabled()) {
7f56e740 2050 error_setg(errp, "-mem-path not supported with Xen");
528f46af 2051 return NULL;
e1c57ab8
PB
2052 }
2053
e45e7ae2
MAL
2054 if (kvm_enabled() && !kvm_has_sync_mmu()) {
2055 error_setg(errp,
2056 "host lacks kvm mmu notifiers, -mem-path unsupported");
2057 return NULL;
2058 }
2059
e1c57ab8
PB
2060 if (phys_mem_alloc != qemu_anon_ram_alloc) {
2061 /*
2062 * file_ram_alloc() needs to allocate just like
2063 * phys_mem_alloc, but we haven't bothered to provide
2064 * a hook there.
2065 */
7f56e740
PB
2066 error_setg(errp,
2067 "-mem-path not supported with this accelerator");
528f46af 2068 return NULL;
e1c57ab8
PB
2069 }
2070
4ed023ce 2071 size = HOST_PAGE_ALIGN(size);
8d37b030
MAL
2072 file_size = get_file_size(fd);
2073 if (file_size > 0 && file_size < size) {
2074 error_setg(errp, "backing store %s size 0x%" PRIx64
2075 " does not match 'size' option 0x" RAM_ADDR_FMT,
2076 mem_path, file_size, size);
8d37b030
MAL
2077 return NULL;
2078 }
2079
e1c57ab8
PB
2080 new_block = g_malloc0(sizeof(*new_block));
2081 new_block->mr = mr;
9b8424d5
MT
2082 new_block->used_length = size;
2083 new_block->max_length = size;
dbcb8981 2084 new_block->flags = share ? RAM_SHARED : 0;
8d37b030 2085 new_block->host = file_ram_alloc(new_block, size, fd, !file_size, errp);
7f56e740
PB
2086 if (!new_block->host) {
2087 g_free(new_block);
528f46af 2088 return NULL;
7f56e740
PB
2089 }
2090
06329cce 2091 ram_block_add(new_block, &local_err, share);
ef701d7b
HT
2092 if (local_err) {
2093 g_free(new_block);
2094 error_propagate(errp, local_err);
528f46af 2095 return NULL;
ef701d7b 2096 }
528f46af 2097 return new_block;
38b3362d
MAL
2098
2099}
2100
2101
2102RAMBlock *qemu_ram_alloc_from_file(ram_addr_t size, MemoryRegion *mr,
2103 bool share, const char *mem_path,
2104 Error **errp)
2105{
2106 int fd;
2107 bool created;
2108 RAMBlock *block;
2109
2110 fd = file_ram_open(mem_path, memory_region_name(mr), &created, errp);
2111 if (fd < 0) {
2112 return NULL;
2113 }
2114
2115 block = qemu_ram_alloc_from_fd(size, mr, share, fd, errp);
2116 if (!block) {
2117 if (created) {
2118 unlink(mem_path);
2119 }
2120 close(fd);
2121 return NULL;
2122 }
2123
2124 return block;
e1c57ab8 2125}
0b183fc8 2126#endif
e1c57ab8 2127
62be4e3a 2128static
528f46af
FZ
2129RAMBlock *qemu_ram_alloc_internal(ram_addr_t size, ram_addr_t max_size,
2130 void (*resized)(const char*,
2131 uint64_t length,
2132 void *host),
06329cce 2133 void *host, bool resizeable, bool share,
528f46af 2134 MemoryRegion *mr, Error **errp)
e1c57ab8
PB
2135{
2136 RAMBlock *new_block;
ef701d7b 2137 Error *local_err = NULL;
e1c57ab8 2138
4ed023ce
DDAG
2139 size = HOST_PAGE_ALIGN(size);
2140 max_size = HOST_PAGE_ALIGN(max_size);
e1c57ab8
PB
2141 new_block = g_malloc0(sizeof(*new_block));
2142 new_block->mr = mr;
62be4e3a 2143 new_block->resized = resized;
9b8424d5
MT
2144 new_block->used_length = size;
2145 new_block->max_length = max_size;
62be4e3a 2146 assert(max_size >= size);
e1c57ab8 2147 new_block->fd = -1;
863e9621 2148 new_block->page_size = getpagesize();
e1c57ab8
PB
2149 new_block->host = host;
2150 if (host) {
7bd4f430 2151 new_block->flags |= RAM_PREALLOC;
e1c57ab8 2152 }
62be4e3a
MT
2153 if (resizeable) {
2154 new_block->flags |= RAM_RESIZEABLE;
2155 }
06329cce 2156 ram_block_add(new_block, &local_err, share);
ef701d7b
HT
2157 if (local_err) {
2158 g_free(new_block);
2159 error_propagate(errp, local_err);
528f46af 2160 return NULL;
ef701d7b 2161 }
528f46af 2162 return new_block;
e1c57ab8
PB
2163}
2164
528f46af 2165RAMBlock *qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
62be4e3a
MT
2166 MemoryRegion *mr, Error **errp)
2167{
06329cce
MA
2168 return qemu_ram_alloc_internal(size, size, NULL, host, false,
2169 false, mr, errp);
62be4e3a
MT
2170}
2171
06329cce
MA
2172RAMBlock *qemu_ram_alloc(ram_addr_t size, bool share,
2173 MemoryRegion *mr, Error **errp)
6977dfe6 2174{
06329cce
MA
2175 return qemu_ram_alloc_internal(size, size, NULL, NULL, false,
2176 share, mr, errp);
62be4e3a
MT
2177}
2178
528f46af 2179RAMBlock *qemu_ram_alloc_resizeable(ram_addr_t size, ram_addr_t maxsz,
62be4e3a
MT
2180 void (*resized)(const char*,
2181 uint64_t length,
2182 void *host),
2183 MemoryRegion *mr, Error **errp)
2184{
06329cce
MA
2185 return qemu_ram_alloc_internal(size, maxsz, resized, NULL, true,
2186 false, mr, errp);
6977dfe6
YT
2187}
2188
43771539
PB
2189static void reclaim_ramblock(RAMBlock *block)
2190{
2191 if (block->flags & RAM_PREALLOC) {
2192 ;
2193 } else if (xen_enabled()) {
2194 xen_invalidate_map_cache_entry(block->host);
2195#ifndef _WIN32
2196 } else if (block->fd >= 0) {
2f3a2bb1 2197 qemu_ram_munmap(block->host, block->max_length);
43771539
PB
2198 close(block->fd);
2199#endif
2200 } else {
2201 qemu_anon_ram_free(block->host, block->max_length);
2202 }
2203 g_free(block);
2204}
2205
f1060c55 2206void qemu_ram_free(RAMBlock *block)
e9a1ab19 2207{
85bc2a15
MAL
2208 if (!block) {
2209 return;
2210 }
2211
0987d735
PB
2212 if (block->host) {
2213 ram_block_notify_remove(block->host, block->max_length);
2214 }
2215
b2a8658e 2216 qemu_mutex_lock_ramlist();
f1060c55
FZ
2217 QLIST_REMOVE_RCU(block, next);
2218 ram_list.mru_block = NULL;
2219 /* Write list before version */
2220 smp_wmb();
2221 ram_list.version++;
2222 call_rcu(block, reclaim_ramblock, rcu);
b2a8658e 2223 qemu_mutex_unlock_ramlist();
e9a1ab19
FB
2224}
2225
cd19cfa2
HY
2226#ifndef _WIN32
2227void qemu_ram_remap(ram_addr_t addr, ram_addr_t length)
2228{
2229 RAMBlock *block;
2230 ram_addr_t offset;
2231 int flags;
2232 void *area, *vaddr;
2233
99e15582 2234 RAMBLOCK_FOREACH(block) {
cd19cfa2 2235 offset = addr - block->offset;
9b8424d5 2236 if (offset < block->max_length) {
1240be24 2237 vaddr = ramblock_ptr(block, offset);
7bd4f430 2238 if (block->flags & RAM_PREALLOC) {
cd19cfa2 2239 ;
dfeaf2ab
MA
2240 } else if (xen_enabled()) {
2241 abort();
cd19cfa2
HY
2242 } else {
2243 flags = MAP_FIXED;
3435f395 2244 if (block->fd >= 0) {
dbcb8981
PB
2245 flags |= (block->flags & RAM_SHARED ?
2246 MAP_SHARED : MAP_PRIVATE);
3435f395
MA
2247 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
2248 flags, block->fd, offset);
cd19cfa2 2249 } else {
2eb9fbaa
MA
2250 /*
2251 * Remap needs to match alloc. Accelerators that
2252 * set phys_mem_alloc never remap. If they did,
2253 * we'd need a remap hook here.
2254 */
2255 assert(phys_mem_alloc == qemu_anon_ram_alloc);
2256
cd19cfa2
HY
2257 flags |= MAP_PRIVATE | MAP_ANONYMOUS;
2258 area = mmap(vaddr, length, PROT_READ | PROT_WRITE,
2259 flags, -1, 0);
cd19cfa2
HY
2260 }
2261 if (area != vaddr) {
493d89bf
AF
2262 error_report("Could not remap addr: "
2263 RAM_ADDR_FMT "@" RAM_ADDR_FMT "",
2264 length, addr);
cd19cfa2
HY
2265 exit(1);
2266 }
8490fc78 2267 memory_try_enable_merging(vaddr, length);
ddb97f1d 2268 qemu_ram_setup_dump(vaddr, length);
cd19cfa2 2269 }
cd19cfa2
HY
2270 }
2271 }
2272}
2273#endif /* !_WIN32 */
2274
1b5ec234 2275/* Return a host pointer to ram allocated with qemu_ram_alloc.
ae3a7047
MD
2276 * This should not be used for general purpose DMA. Use address_space_map
2277 * or address_space_rw instead. For local memory (e.g. video ram) that the
2278 * device owns, use memory_region_get_ram_ptr.
0dc3f44a 2279 *
49b24afc 2280 * Called within RCU critical section.
1b5ec234 2281 */
0878d0e1 2282void *qemu_map_ram_ptr(RAMBlock *ram_block, ram_addr_t addr)
1b5ec234 2283{
3655cb9c
GA
2284 RAMBlock *block = ram_block;
2285
2286 if (block == NULL) {
2287 block = qemu_get_ram_block(addr);
0878d0e1 2288 addr -= block->offset;
3655cb9c 2289 }
ae3a7047
MD
2290
2291 if (xen_enabled() && block->host == NULL) {
0d6d3c87
PB
2292 /* We need to check if the requested address is in the RAM
2293 * because we don't want to map the entire memory in QEMU.
2294 * In that case just map until the end of the page.
2295 */
2296 if (block->offset == 0) {
1ff7c598 2297 return xen_map_cache(addr, 0, 0, false);
0d6d3c87 2298 }
ae3a7047 2299
1ff7c598 2300 block->host = xen_map_cache(block->offset, block->max_length, 1, false);
0d6d3c87 2301 }
0878d0e1 2302 return ramblock_ptr(block, addr);
dc828ca1
PB
2303}
2304
0878d0e1 2305/* Return a host pointer to guest's ram. Similar to qemu_map_ram_ptr
ae3a7047 2306 * but takes a size argument.
0dc3f44a 2307 *
e81bcda5 2308 * Called within RCU critical section.
ae3a7047 2309 */
3655cb9c 2310static void *qemu_ram_ptr_length(RAMBlock *ram_block, ram_addr_t addr,
f5aa69bd 2311 hwaddr *size, bool lock)
38bee5dc 2312{
3655cb9c 2313 RAMBlock *block = ram_block;
8ab934f9
SS
2314 if (*size == 0) {
2315 return NULL;
2316 }
e81bcda5 2317
3655cb9c
GA
2318 if (block == NULL) {
2319 block = qemu_get_ram_block(addr);
0878d0e1 2320 addr -= block->offset;
3655cb9c 2321 }
0878d0e1 2322 *size = MIN(*size, block->max_length - addr);
e81bcda5
PB
2323
2324 if (xen_enabled() && block->host == NULL) {
2325 /* We need to check if the requested address is in the RAM
2326 * because we don't want to map the entire memory in QEMU.
2327 * In that case just map the requested area.
2328 */
2329 if (block->offset == 0) {
f5aa69bd 2330 return xen_map_cache(addr, *size, lock, lock);
38bee5dc
SS
2331 }
2332
f5aa69bd 2333 block->host = xen_map_cache(block->offset, block->max_length, 1, lock);
38bee5dc 2334 }
e81bcda5 2335
0878d0e1 2336 return ramblock_ptr(block, addr);
38bee5dc
SS
2337}
2338
f90bb71b
DDAG
2339/* Return the offset of a hostpointer within a ramblock */
2340ram_addr_t qemu_ram_block_host_offset(RAMBlock *rb, void *host)
2341{
2342 ram_addr_t res = (uint8_t *)host - (uint8_t *)rb->host;
2343 assert((uintptr_t)host >= (uintptr_t)rb->host);
2344 assert(res < rb->max_length);
2345
2346 return res;
2347}
2348
422148d3
DDAG
2349/*
2350 * Translates a host ptr back to a RAMBlock, a ram_addr and an offset
2351 * in that RAMBlock.
2352 *
2353 * ptr: Host pointer to look up
2354 * round_offset: If true round the result offset down to a page boundary
2355 * *ram_addr: set to result ram_addr
2356 * *offset: set to result offset within the RAMBlock
2357 *
2358 * Returns: RAMBlock (or NULL if not found)
ae3a7047
MD
2359 *
2360 * By the time this function returns, the returned pointer is not protected
2361 * by RCU anymore. If the caller is not within an RCU critical section and
2362 * does not hold the iothread lock, it must have other means of protecting the
2363 * pointer, such as a reference to the region that includes the incoming
2364 * ram_addr_t.
2365 */
422148d3 2366RAMBlock *qemu_ram_block_from_host(void *ptr, bool round_offset,
422148d3 2367 ram_addr_t *offset)
5579c7f3 2368{
94a6b54f
PB
2369 RAMBlock *block;
2370 uint8_t *host = ptr;
2371
868bb33f 2372 if (xen_enabled()) {
f615f396 2373 ram_addr_t ram_addr;
0dc3f44a 2374 rcu_read_lock();
f615f396
PB
2375 ram_addr = xen_ram_addr_from_mapcache(ptr);
2376 block = qemu_get_ram_block(ram_addr);
422148d3 2377 if (block) {
d6b6aec4 2378 *offset = ram_addr - block->offset;
422148d3 2379 }
0dc3f44a 2380 rcu_read_unlock();
422148d3 2381 return block;
712c2b41
SS
2382 }
2383
0dc3f44a
MD
2384 rcu_read_lock();
2385 block = atomic_rcu_read(&ram_list.mru_block);
9b8424d5 2386 if (block && block->host && host - block->host < block->max_length) {
23887b79
PB
2387 goto found;
2388 }
2389
99e15582 2390 RAMBLOCK_FOREACH(block) {
432d268c
JN
2391 /* This case append when the block is not mapped. */
2392 if (block->host == NULL) {
2393 continue;
2394 }
9b8424d5 2395 if (host - block->host < block->max_length) {
23887b79 2396 goto found;
f471a17e 2397 }
94a6b54f 2398 }
432d268c 2399
0dc3f44a 2400 rcu_read_unlock();
1b5ec234 2401 return NULL;
23887b79
PB
2402
2403found:
422148d3
DDAG
2404 *offset = (host - block->host);
2405 if (round_offset) {
2406 *offset &= TARGET_PAGE_MASK;
2407 }
0dc3f44a 2408 rcu_read_unlock();
422148d3
DDAG
2409 return block;
2410}
2411
e3dd7493
DDAG
2412/*
2413 * Finds the named RAMBlock
2414 *
2415 * name: The name of RAMBlock to find
2416 *
2417 * Returns: RAMBlock (or NULL if not found)
2418 */
2419RAMBlock *qemu_ram_block_by_name(const char *name)
2420{
2421 RAMBlock *block;
2422
99e15582 2423 RAMBLOCK_FOREACH(block) {
e3dd7493
DDAG
2424 if (!strcmp(name, block->idstr)) {
2425 return block;
2426 }
2427 }
2428
2429 return NULL;
2430}
2431
422148d3
DDAG
2432/* Some of the softmmu routines need to translate from a host pointer
2433 (typically a TLB entry) back to a ram offset. */
07bdaa41 2434ram_addr_t qemu_ram_addr_from_host(void *ptr)
422148d3
DDAG
2435{
2436 RAMBlock *block;
f615f396 2437 ram_addr_t offset;
422148d3 2438
f615f396 2439 block = qemu_ram_block_from_host(ptr, false, &offset);
422148d3 2440 if (!block) {
07bdaa41 2441 return RAM_ADDR_INVALID;
422148d3
DDAG
2442 }
2443
07bdaa41 2444 return block->offset + offset;
e890261f 2445}
f471a17e 2446
27266271
PM
2447/* Called within RCU critical section. */
2448void memory_notdirty_write_prepare(NotDirtyInfo *ndi,
2449 CPUState *cpu,
2450 vaddr mem_vaddr,
2451 ram_addr_t ram_addr,
2452 unsigned size)
2453{
2454 ndi->cpu = cpu;
2455 ndi->ram_addr = ram_addr;
2456 ndi->mem_vaddr = mem_vaddr;
2457 ndi->size = size;
2458 ndi->locked = false;
ba051fb5 2459
5aa1ef71 2460 assert(tcg_enabled());
52159192 2461 if (!cpu_physical_memory_get_dirty_flag(ram_addr, DIRTY_MEMORY_CODE)) {
27266271 2462 ndi->locked = true;
ba051fb5 2463 tb_lock();
0e0df1e2 2464 tb_invalidate_phys_page_fast(ram_addr, size);
3a7d929e 2465 }
27266271
PM
2466}
2467
2468/* Called within RCU critical section. */
2469void memory_notdirty_write_complete(NotDirtyInfo *ndi)
2470{
2471 if (ndi->locked) {
2472 tb_unlock();
2473 }
2474
2475 /* Set both VGA and migration bits for simplicity and to remove
2476 * the notdirty callback faster.
2477 */
2478 cpu_physical_memory_set_dirty_range(ndi->ram_addr, ndi->size,
2479 DIRTY_CLIENTS_NOCODE);
2480 /* we remove the notdirty callback only if the code has been
2481 flushed */
2482 if (!cpu_physical_memory_is_clean(ndi->ram_addr)) {
2483 tlb_set_dirty(ndi->cpu, ndi->mem_vaddr);
2484 }
2485}
2486
2487/* Called within RCU critical section. */
2488static void notdirty_mem_write(void *opaque, hwaddr ram_addr,
2489 uint64_t val, unsigned size)
2490{
2491 NotDirtyInfo ndi;
2492
2493 memory_notdirty_write_prepare(&ndi, current_cpu, current_cpu->mem_io_vaddr,
2494 ram_addr, size);
2495
0e0df1e2
AK
2496 switch (size) {
2497 case 1:
0878d0e1 2498 stb_p(qemu_map_ram_ptr(NULL, ram_addr), val);
0e0df1e2
AK
2499 break;
2500 case 2:
0878d0e1 2501 stw_p(qemu_map_ram_ptr(NULL, ram_addr), val);
0e0df1e2
AK
2502 break;
2503 case 4:
0878d0e1 2504 stl_p(qemu_map_ram_ptr(NULL, ram_addr), val);
0e0df1e2 2505 break;
ad52878f
AB
2506 case 8:
2507 stq_p(qemu_map_ram_ptr(NULL, ram_addr), val);
2508 break;
0e0df1e2
AK
2509 default:
2510 abort();
3a7d929e 2511 }
27266271 2512 memory_notdirty_write_complete(&ndi);
9fa3e853
FB
2513}
2514
b018ddf6
PB
2515static bool notdirty_mem_accepts(void *opaque, hwaddr addr,
2516 unsigned size, bool is_write)
2517{
2518 return is_write;
2519}
2520
0e0df1e2 2521static const MemoryRegionOps notdirty_mem_ops = {
0e0df1e2 2522 .write = notdirty_mem_write,
b018ddf6 2523 .valid.accepts = notdirty_mem_accepts,
0e0df1e2 2524 .endianness = DEVICE_NATIVE_ENDIAN,
ad52878f
AB
2525 .valid = {
2526 .min_access_size = 1,
2527 .max_access_size = 8,
2528 .unaligned = false,
2529 },
2530 .impl = {
2531 .min_access_size = 1,
2532 .max_access_size = 8,
2533 .unaligned = false,
2534 },
1ccde1cb
FB
2535};
2536
0f459d16 2537/* Generate a debug exception if a watchpoint has been hit. */
66b9b43c 2538static void check_watchpoint(int offset, int len, MemTxAttrs attrs, int flags)
0f459d16 2539{
93afeade 2540 CPUState *cpu = current_cpu;
568496c0 2541 CPUClass *cc = CPU_GET_CLASS(cpu);
0f459d16 2542 target_ulong vaddr;
a1d1bb31 2543 CPUWatchpoint *wp;
0f459d16 2544
5aa1ef71 2545 assert(tcg_enabled());
ff4700b0 2546 if (cpu->watchpoint_hit) {
06d55cc1
AL
2547 /* We re-entered the check after replacing the TB. Now raise
2548 * the debug interrupt so that is will trigger after the
2549 * current instruction. */
93afeade 2550 cpu_interrupt(cpu, CPU_INTERRUPT_DEBUG);
06d55cc1
AL
2551 return;
2552 }
93afeade 2553 vaddr = (cpu->mem_io_vaddr & TARGET_PAGE_MASK) + offset;
40612000 2554 vaddr = cc->adjust_watchpoint_address(cpu, vaddr, len);
ff4700b0 2555 QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) {
05068c0d
PM
2556 if (cpu_watchpoint_address_matches(wp, vaddr, len)
2557 && (wp->flags & flags)) {
08225676
PM
2558 if (flags == BP_MEM_READ) {
2559 wp->flags |= BP_WATCHPOINT_HIT_READ;
2560 } else {
2561 wp->flags |= BP_WATCHPOINT_HIT_WRITE;
2562 }
2563 wp->hitaddr = vaddr;
66b9b43c 2564 wp->hitattrs = attrs;
ff4700b0 2565 if (!cpu->watchpoint_hit) {
568496c0
SF
2566 if (wp->flags & BP_CPU &&
2567 !cc->debug_check_watchpoint(cpu, wp)) {
2568 wp->flags &= ~BP_WATCHPOINT_HIT;
2569 continue;
2570 }
ff4700b0 2571 cpu->watchpoint_hit = wp;
a5e99826 2572
8d04fb55
JK
2573 /* Both tb_lock and iothread_mutex will be reset when
2574 * cpu_loop_exit or cpu_loop_exit_noexc longjmp
2575 * back into the cpu_exec main loop.
a5e99826
FK
2576 */
2577 tb_lock();
239c51a5 2578 tb_check_watchpoint(cpu);
6e140f28 2579 if (wp->flags & BP_STOP_BEFORE_ACCESS) {
27103424 2580 cpu->exception_index = EXCP_DEBUG;
5638d180 2581 cpu_loop_exit(cpu);
6e140f28 2582 } else {
9b990ee5
RH
2583 /* Force execution of one insn next time. */
2584 cpu->cflags_next_tb = 1 | curr_cflags();
6886b980 2585 cpu_loop_exit_noexc(cpu);
6e140f28 2586 }
06d55cc1 2587 }
6e140f28
AL
2588 } else {
2589 wp->flags &= ~BP_WATCHPOINT_HIT;
0f459d16
PB
2590 }
2591 }
2592}
2593
6658ffb8
PB
2594/* Watchpoint access routines. Watchpoints are inserted using TLB tricks,
2595 so these check for a hit then pass through to the normal out-of-line
2596 phys routines. */
66b9b43c
PM
2597static MemTxResult watch_mem_read(void *opaque, hwaddr addr, uint64_t *pdata,
2598 unsigned size, MemTxAttrs attrs)
6658ffb8 2599{
66b9b43c
PM
2600 MemTxResult res;
2601 uint64_t data;
79ed0416
PM
2602 int asidx = cpu_asidx_from_attrs(current_cpu, attrs);
2603 AddressSpace *as = current_cpu->cpu_ases[asidx].as;
66b9b43c
PM
2604
2605 check_watchpoint(addr & ~TARGET_PAGE_MASK, size, attrs, BP_MEM_READ);
1ec9b909 2606 switch (size) {
66b9b43c 2607 case 1:
79ed0416 2608 data = address_space_ldub(as, addr, attrs, &res);
66b9b43c
PM
2609 break;
2610 case 2:
79ed0416 2611 data = address_space_lduw(as, addr, attrs, &res);
66b9b43c
PM
2612 break;
2613 case 4:
79ed0416 2614 data = address_space_ldl(as, addr, attrs, &res);
66b9b43c 2615 break;
306526b5
PB
2616 case 8:
2617 data = address_space_ldq(as, addr, attrs, &res);
2618 break;
1ec9b909
AK
2619 default: abort();
2620 }
66b9b43c
PM
2621 *pdata = data;
2622 return res;
6658ffb8
PB
2623}
2624
66b9b43c
PM
2625static MemTxResult watch_mem_write(void *opaque, hwaddr addr,
2626 uint64_t val, unsigned size,
2627 MemTxAttrs attrs)
6658ffb8 2628{
66b9b43c 2629 MemTxResult res;
79ed0416
PM
2630 int asidx = cpu_asidx_from_attrs(current_cpu, attrs);
2631 AddressSpace *as = current_cpu->cpu_ases[asidx].as;
66b9b43c
PM
2632
2633 check_watchpoint(addr & ~TARGET_PAGE_MASK, size, attrs, BP_MEM_WRITE);
1ec9b909 2634 switch (size) {
67364150 2635 case 1:
79ed0416 2636 address_space_stb(as, addr, val, attrs, &res);
67364150
MF
2637 break;
2638 case 2:
79ed0416 2639 address_space_stw(as, addr, val, attrs, &res);
67364150
MF
2640 break;
2641 case 4:
79ed0416 2642 address_space_stl(as, addr, val, attrs, &res);
67364150 2643 break;
306526b5
PB
2644 case 8:
2645 address_space_stq(as, addr, val, attrs, &res);
2646 break;
1ec9b909
AK
2647 default: abort();
2648 }
66b9b43c 2649 return res;
6658ffb8
PB
2650}
2651
1ec9b909 2652static const MemoryRegionOps watch_mem_ops = {
66b9b43c
PM
2653 .read_with_attrs = watch_mem_read,
2654 .write_with_attrs = watch_mem_write,
1ec9b909 2655 .endianness = DEVICE_NATIVE_ENDIAN,
306526b5
PB
2656 .valid = {
2657 .min_access_size = 1,
2658 .max_access_size = 8,
2659 .unaligned = false,
2660 },
2661 .impl = {
2662 .min_access_size = 1,
2663 .max_access_size = 8,
2664 .unaligned = false,
2665 },
6658ffb8 2666};
6658ffb8 2667
b2a44fca
PB
2668static MemTxResult flatview_read(FlatView *fv, hwaddr addr,
2669 MemTxAttrs attrs, uint8_t *buf, int len);
16620684
AK
2670static MemTxResult flatview_write(FlatView *fv, hwaddr addr, MemTxAttrs attrs,
2671 const uint8_t *buf, int len);
2672static bool flatview_access_valid(FlatView *fv, hwaddr addr, int len,
2673 bool is_write);
2674
f25a49e0
PM
2675static MemTxResult subpage_read(void *opaque, hwaddr addr, uint64_t *data,
2676 unsigned len, MemTxAttrs attrs)
db7b5426 2677{
acc9d80b 2678 subpage_t *subpage = opaque;
ff6cff75 2679 uint8_t buf[8];
5c9eb028 2680 MemTxResult res;
791af8c8 2681
db7b5426 2682#if defined(DEBUG_SUBPAGE)
016e9d62 2683 printf("%s: subpage %p len %u addr " TARGET_FMT_plx "\n", __func__,
acc9d80b 2684 subpage, len, addr);
db7b5426 2685#endif
16620684 2686 res = flatview_read(subpage->fv, addr + subpage->base, attrs, buf, len);
5c9eb028
PM
2687 if (res) {
2688 return res;
f25a49e0 2689 }
acc9d80b
JK
2690 switch (len) {
2691 case 1:
f25a49e0
PM
2692 *data = ldub_p(buf);
2693 return MEMTX_OK;
acc9d80b 2694 case 2:
f25a49e0
PM
2695 *data = lduw_p(buf);
2696 return MEMTX_OK;
acc9d80b 2697 case 4:
f25a49e0
PM
2698 *data = ldl_p(buf);
2699 return MEMTX_OK;
ff6cff75 2700 case 8:
f25a49e0
PM
2701 *data = ldq_p(buf);
2702 return MEMTX_OK;
acc9d80b
JK
2703 default:
2704 abort();
2705 }
db7b5426
BS
2706}
2707
f25a49e0
PM
2708static MemTxResult subpage_write(void *opaque, hwaddr addr,
2709 uint64_t value, unsigned len, MemTxAttrs attrs)
db7b5426 2710{
acc9d80b 2711 subpage_t *subpage = opaque;
ff6cff75 2712 uint8_t buf[8];
acc9d80b 2713
db7b5426 2714#if defined(DEBUG_SUBPAGE)
016e9d62 2715 printf("%s: subpage %p len %u addr " TARGET_FMT_plx
acc9d80b
JK
2716 " value %"PRIx64"\n",
2717 __func__, subpage, len, addr, value);
db7b5426 2718#endif
acc9d80b
JK
2719 switch (len) {
2720 case 1:
2721 stb_p(buf, value);
2722 break;
2723 case 2:
2724 stw_p(buf, value);
2725 break;
2726 case 4:
2727 stl_p(buf, value);
2728 break;
ff6cff75
PB
2729 case 8:
2730 stq_p(buf, value);
2731 break;
acc9d80b
JK
2732 default:
2733 abort();
2734 }
16620684 2735 return flatview_write(subpage->fv, addr + subpage->base, attrs, buf, len);
db7b5426
BS
2736}
2737
c353e4cc 2738static bool subpage_accepts(void *opaque, hwaddr addr,
016e9d62 2739 unsigned len, bool is_write)
c353e4cc 2740{
acc9d80b 2741 subpage_t *subpage = opaque;
c353e4cc 2742#if defined(DEBUG_SUBPAGE)
016e9d62 2743 printf("%s: subpage %p %c len %u addr " TARGET_FMT_plx "\n",
acc9d80b 2744 __func__, subpage, is_write ? 'w' : 'r', len, addr);
c353e4cc
PB
2745#endif
2746
16620684
AK
2747 return flatview_access_valid(subpage->fv, addr + subpage->base,
2748 len, is_write);
c353e4cc
PB
2749}
2750
70c68e44 2751static const MemoryRegionOps subpage_ops = {
f25a49e0
PM
2752 .read_with_attrs = subpage_read,
2753 .write_with_attrs = subpage_write,
ff6cff75
PB
2754 .impl.min_access_size = 1,
2755 .impl.max_access_size = 8,
2756 .valid.min_access_size = 1,
2757 .valid.max_access_size = 8,
c353e4cc 2758 .valid.accepts = subpage_accepts,
70c68e44 2759 .endianness = DEVICE_NATIVE_ENDIAN,
db7b5426
BS
2760};
2761
c227f099 2762static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end,
5312bd8b 2763 uint16_t section)
db7b5426
BS
2764{
2765 int idx, eidx;
2766
2767 if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE)
2768 return -1;
2769 idx = SUBPAGE_IDX(start);
2770 eidx = SUBPAGE_IDX(end);
2771#if defined(DEBUG_SUBPAGE)
016e9d62
AK
2772 printf("%s: %p start %08x end %08x idx %08x eidx %08x section %d\n",
2773 __func__, mmio, start, end, idx, eidx, section);
db7b5426 2774#endif
db7b5426 2775 for (; idx <= eidx; idx++) {
5312bd8b 2776 mmio->sub_section[idx] = section;
db7b5426
BS
2777 }
2778
2779 return 0;
2780}
2781
16620684 2782static subpage_t *subpage_init(FlatView *fv, hwaddr base)
db7b5426 2783{
c227f099 2784 subpage_t *mmio;
db7b5426 2785
2615fabd 2786 mmio = g_malloc0(sizeof(subpage_t) + TARGET_PAGE_SIZE * sizeof(uint16_t));
16620684 2787 mmio->fv = fv;
1eec614b 2788 mmio->base = base;
2c9b15ca 2789 memory_region_init_io(&mmio->iomem, NULL, &subpage_ops, mmio,
b4fefef9 2790 NULL, TARGET_PAGE_SIZE);
b3b00c78 2791 mmio->iomem.subpage = true;
db7b5426 2792#if defined(DEBUG_SUBPAGE)
016e9d62
AK
2793 printf("%s: %p base " TARGET_FMT_plx " len %08x\n", __func__,
2794 mmio, base, TARGET_PAGE_SIZE);
db7b5426 2795#endif
b41aac4f 2796 subpage_register(mmio, 0, TARGET_PAGE_SIZE-1, PHYS_SECTION_UNASSIGNED);
db7b5426
BS
2797
2798 return mmio;
2799}
2800
16620684 2801static uint16_t dummy_section(PhysPageMap *map, FlatView *fv, MemoryRegion *mr)
5312bd8b 2802{
16620684 2803 assert(fv);
5312bd8b 2804 MemoryRegionSection section = {
16620684 2805 .fv = fv,
5312bd8b
AK
2806 .mr = mr,
2807 .offset_within_address_space = 0,
2808 .offset_within_region = 0,
052e87b0 2809 .size = int128_2_64(),
5312bd8b
AK
2810 };
2811
53cb28cb 2812 return phys_section_add(map, &section);
5312bd8b
AK
2813}
2814
8af36743
PM
2815static void readonly_mem_write(void *opaque, hwaddr addr,
2816 uint64_t val, unsigned size)
2817{
2818 /* Ignore any write to ROM. */
2819}
2820
2821static bool readonly_mem_accepts(void *opaque, hwaddr addr,
2822 unsigned size, bool is_write)
2823{
2824 return is_write;
2825}
2826
2827/* This will only be used for writes, because reads are special cased
2828 * to directly access the underlying host ram.
2829 */
2830static const MemoryRegionOps readonly_mem_ops = {
2831 .write = readonly_mem_write,
2832 .valid.accepts = readonly_mem_accepts,
2833 .endianness = DEVICE_NATIVE_ENDIAN,
2834 .valid = {
2835 .min_access_size = 1,
2836 .max_access_size = 8,
2837 .unaligned = false,
2838 },
2839 .impl = {
2840 .min_access_size = 1,
2841 .max_access_size = 8,
2842 .unaligned = false,
2843 },
2844};
2845
a54c87b6 2846MemoryRegion *iotlb_to_region(CPUState *cpu, hwaddr index, MemTxAttrs attrs)
aa102231 2847{
a54c87b6
PM
2848 int asidx = cpu_asidx_from_attrs(cpu, attrs);
2849 CPUAddressSpace *cpuas = &cpu->cpu_ases[asidx];
32857f4d 2850 AddressSpaceDispatch *d = atomic_rcu_read(&cpuas->memory_dispatch);
79e2b9ae 2851 MemoryRegionSection *sections = d->map.sections;
9d82b5a7
PB
2852
2853 return sections[index & ~TARGET_PAGE_MASK].mr;
aa102231
AK
2854}
2855
e9179ce1
AK
2856static void io_mem_init(void)
2857{
8af36743
PM
2858 memory_region_init_io(&io_mem_rom, NULL, &readonly_mem_ops,
2859 NULL, NULL, UINT64_MAX);
2c9b15ca 2860 memory_region_init_io(&io_mem_unassigned, NULL, &unassigned_mem_ops, NULL,
1f6245e5 2861 NULL, UINT64_MAX);
8d04fb55
JK
2862
2863 /* io_mem_notdirty calls tb_invalidate_phys_page_fast,
2864 * which can be called without the iothread mutex.
2865 */
2c9b15ca 2866 memory_region_init_io(&io_mem_notdirty, NULL, &notdirty_mem_ops, NULL,
1f6245e5 2867 NULL, UINT64_MAX);
8d04fb55
JK
2868 memory_region_clear_global_locking(&io_mem_notdirty);
2869
2c9b15ca 2870 memory_region_init_io(&io_mem_watch, NULL, &watch_mem_ops, NULL,
1f6245e5 2871 NULL, UINT64_MAX);
e9179ce1
AK
2872}
2873
8629d3fc 2874AddressSpaceDispatch *address_space_dispatch_new(FlatView *fv)
00752703 2875{
53cb28cb
MA
2876 AddressSpaceDispatch *d = g_new0(AddressSpaceDispatch, 1);
2877 uint16_t n;
2878
16620684 2879 n = dummy_section(&d->map, fv, &io_mem_unassigned);
53cb28cb 2880 assert(n == PHYS_SECTION_UNASSIGNED);
16620684 2881 n = dummy_section(&d->map, fv, &io_mem_notdirty);
53cb28cb 2882 assert(n == PHYS_SECTION_NOTDIRTY);
16620684 2883 n = dummy_section(&d->map, fv, &io_mem_rom);
53cb28cb 2884 assert(n == PHYS_SECTION_ROM);
16620684 2885 n = dummy_section(&d->map, fv, &io_mem_watch);
53cb28cb 2886 assert(n == PHYS_SECTION_WATCH);
00752703 2887
9736e55b 2888 d->phys_map = (PhysPageEntry) { .ptr = PHYS_MAP_NODE_NIL, .skip = 1 };
66a6df1d
AK
2889
2890 return d;
00752703
PB
2891}
2892
66a6df1d 2893void address_space_dispatch_free(AddressSpaceDispatch *d)
79e2b9ae
PB
2894{
2895 phys_sections_free(&d->map);
2896 g_free(d);
2897}
2898
1d71148e 2899static void tcg_commit(MemoryListener *listener)
50c1e149 2900{
32857f4d
PM
2901 CPUAddressSpace *cpuas;
2902 AddressSpaceDispatch *d;
117712c3
AK
2903
2904 /* since each CPU stores ram addresses in its TLB cache, we must
2905 reset the modified entries */
32857f4d
PM
2906 cpuas = container_of(listener, CPUAddressSpace, tcg_as_listener);
2907 cpu_reloading_memory_map();
2908 /* The CPU and TLB are protected by the iothread lock.
2909 * We reload the dispatch pointer now because cpu_reloading_memory_map()
2910 * may have split the RCU critical section.
2911 */
66a6df1d 2912 d = address_space_to_dispatch(cpuas->as);
f35e44e7 2913 atomic_rcu_set(&cpuas->memory_dispatch, d);
d10eb08f 2914 tlb_flush(cpuas->cpu);
50c1e149
AK
2915}
2916
62152b8a
AK
2917static void memory_map_init(void)
2918{
7267c094 2919 system_memory = g_malloc(sizeof(*system_memory));
03f49957 2920
57271d63 2921 memory_region_init(system_memory, NULL, "system", UINT64_MAX);
7dca8043 2922 address_space_init(&address_space_memory, system_memory, "memory");
309cb471 2923
7267c094 2924 system_io = g_malloc(sizeof(*system_io));
3bb28b72
JK
2925 memory_region_init_io(system_io, NULL, &unassigned_io_ops, NULL, "io",
2926 65536);
7dca8043 2927 address_space_init(&address_space_io, system_io, "I/O");
62152b8a
AK
2928}
2929
2930MemoryRegion *get_system_memory(void)
2931{
2932 return system_memory;
2933}
2934
309cb471
AK
2935MemoryRegion *get_system_io(void)
2936{
2937 return system_io;
2938}
2939
e2eef170
PB
2940#endif /* !defined(CONFIG_USER_ONLY) */
2941
13eb76e0
FB
2942/* physical memory access (slow version, mainly for debug) */
2943#if defined(CONFIG_USER_ONLY)
f17ec444 2944int cpu_memory_rw_debug(CPUState *cpu, target_ulong addr,
a68fe89c 2945 uint8_t *buf, int len, int is_write)
13eb76e0
FB
2946{
2947 int l, flags;
2948 target_ulong page;
53a5960a 2949 void * p;
13eb76e0
FB
2950
2951 while (len > 0) {
2952 page = addr & TARGET_PAGE_MASK;
2953 l = (page + TARGET_PAGE_SIZE) - addr;
2954 if (l > len)
2955 l = len;
2956 flags = page_get_flags(page);
2957 if (!(flags & PAGE_VALID))
a68fe89c 2958 return -1;
13eb76e0
FB
2959 if (is_write) {
2960 if (!(flags & PAGE_WRITE))
a68fe89c 2961 return -1;
579a97f7 2962 /* XXX: this code should not depend on lock_user */
72fb7daa 2963 if (!(p = lock_user(VERIFY_WRITE, addr, l, 0)))
a68fe89c 2964 return -1;
72fb7daa
AJ
2965 memcpy(p, buf, l);
2966 unlock_user(p, addr, l);
13eb76e0
FB
2967 } else {
2968 if (!(flags & PAGE_READ))
a68fe89c 2969 return -1;
579a97f7 2970 /* XXX: this code should not depend on lock_user */
72fb7daa 2971 if (!(p = lock_user(VERIFY_READ, addr, l, 1)))
a68fe89c 2972 return -1;
72fb7daa 2973 memcpy(buf, p, l);
5b257578 2974 unlock_user(p, addr, 0);
13eb76e0
FB
2975 }
2976 len -= l;
2977 buf += l;
2978 addr += l;
2979 }
a68fe89c 2980 return 0;
13eb76e0 2981}
8df1cd07 2982
13eb76e0 2983#else
51d7a9eb 2984
845b6214 2985static void invalidate_and_set_dirty(MemoryRegion *mr, hwaddr addr,
a8170e5e 2986 hwaddr length)
51d7a9eb 2987{
e87f7778 2988 uint8_t dirty_log_mask = memory_region_get_dirty_log_mask(mr);
0878d0e1
PB
2989 addr += memory_region_get_ram_addr(mr);
2990
e87f7778
PB
2991 /* No early return if dirty_log_mask is or becomes 0, because
2992 * cpu_physical_memory_set_dirty_range will still call
2993 * xen_modified_memory.
2994 */
2995 if (dirty_log_mask) {
2996 dirty_log_mask =
2997 cpu_physical_memory_range_includes_clean(addr, length, dirty_log_mask);
2998 }
2999 if (dirty_log_mask & (1 << DIRTY_MEMORY_CODE)) {
5aa1ef71 3000 assert(tcg_enabled());
ba051fb5 3001 tb_lock();
e87f7778 3002 tb_invalidate_phys_range(addr, addr + length);
ba051fb5 3003 tb_unlock();
e87f7778 3004 dirty_log_mask &= ~(1 << DIRTY_MEMORY_CODE);
51d7a9eb 3005 }
e87f7778 3006 cpu_physical_memory_set_dirty_range(addr, length, dirty_log_mask);
51d7a9eb
AP
3007}
3008
23326164 3009static int memory_access_size(MemoryRegion *mr, unsigned l, hwaddr addr)
82f2563f 3010{
e1622f4b 3011 unsigned access_size_max = mr->ops->valid.max_access_size;
23326164
RH
3012
3013 /* Regions are assumed to support 1-4 byte accesses unless
3014 otherwise specified. */
23326164
RH
3015 if (access_size_max == 0) {
3016 access_size_max = 4;
3017 }
3018
3019 /* Bound the maximum access by the alignment of the address. */
3020 if (!mr->ops->impl.unaligned) {
3021 unsigned align_size_max = addr & -addr;
3022 if (align_size_max != 0 && align_size_max < access_size_max) {
3023 access_size_max = align_size_max;
3024 }
82f2563f 3025 }
23326164
RH
3026
3027 /* Don't attempt accesses larger than the maximum. */
3028 if (l > access_size_max) {
3029 l = access_size_max;
82f2563f 3030 }
6554f5c0 3031 l = pow2floor(l);
23326164
RH
3032
3033 return l;
82f2563f
PB
3034}
3035
4840f10e 3036static bool prepare_mmio_access(MemoryRegion *mr)
125b3806 3037{
4840f10e
JK
3038 bool unlocked = !qemu_mutex_iothread_locked();
3039 bool release_lock = false;
3040
3041 if (unlocked && mr->global_locking) {
3042 qemu_mutex_lock_iothread();
3043 unlocked = false;
3044 release_lock = true;
3045 }
125b3806 3046 if (mr->flush_coalesced_mmio) {
4840f10e
JK
3047 if (unlocked) {
3048 qemu_mutex_lock_iothread();
3049 }
125b3806 3050 qemu_flush_coalesced_mmio_buffer();
4840f10e
JK
3051 if (unlocked) {
3052 qemu_mutex_unlock_iothread();
3053 }
125b3806 3054 }
4840f10e
JK
3055
3056 return release_lock;
125b3806
PB
3057}
3058
a203ac70 3059/* Called within RCU critical section. */
16620684
AK
3060static MemTxResult flatview_write_continue(FlatView *fv, hwaddr addr,
3061 MemTxAttrs attrs,
3062 const uint8_t *buf,
3063 int len, hwaddr addr1,
3064 hwaddr l, MemoryRegion *mr)
13eb76e0 3065{
13eb76e0 3066 uint8_t *ptr;
791af8c8 3067 uint64_t val;
3b643495 3068 MemTxResult result = MEMTX_OK;
4840f10e 3069 bool release_lock = false;
3b46e624 3070
a203ac70 3071 for (;;) {
eb7eeb88
PB
3072 if (!memory_access_is_direct(mr, true)) {
3073 release_lock |= prepare_mmio_access(mr);
3074 l = memory_access_size(mr, l, addr1);
3075 /* XXX: could force current_cpu to NULL to avoid
3076 potential bugs */
3077 switch (l) {
3078 case 8:
3079 /* 64 bit write access */
3080 val = ldq_p(buf);
3081 result |= memory_region_dispatch_write(mr, addr1, val, 8,
3082 attrs);
3083 break;
3084 case 4:
3085 /* 32 bit write access */
6da67de6 3086 val = (uint32_t)ldl_p(buf);
eb7eeb88
PB
3087 result |= memory_region_dispatch_write(mr, addr1, val, 4,
3088 attrs);
3089 break;
3090 case 2:
3091 /* 16 bit write access */
3092 val = lduw_p(buf);
3093 result |= memory_region_dispatch_write(mr, addr1, val, 2,
3094 attrs);
3095 break;
3096 case 1:
3097 /* 8 bit write access */
3098 val = ldub_p(buf);
3099 result |= memory_region_dispatch_write(mr, addr1, val, 1,
3100 attrs);
3101 break;
3102 default:
3103 abort();
13eb76e0
FB
3104 }
3105 } else {
eb7eeb88 3106 /* RAM case */
f5aa69bd 3107 ptr = qemu_ram_ptr_length(mr->ram_block, addr1, &l, false);
eb7eeb88
PB
3108 memcpy(ptr, buf, l);
3109 invalidate_and_set_dirty(mr, addr1, l);
13eb76e0 3110 }
4840f10e
JK
3111
3112 if (release_lock) {
3113 qemu_mutex_unlock_iothread();
3114 release_lock = false;
3115 }
3116
13eb76e0
FB
3117 len -= l;
3118 buf += l;
3119 addr += l;
a203ac70
PB
3120
3121 if (!len) {
3122 break;
3123 }
3124
3125 l = len;
16620684 3126 mr = flatview_translate(fv, addr, &addr1, &l, true);
13eb76e0 3127 }
fd8aaa76 3128
3b643495 3129 return result;
13eb76e0 3130}
8df1cd07 3131
4c6ebbb3 3132/* Called from RCU critical section. */
16620684
AK
3133static MemTxResult flatview_write(FlatView *fv, hwaddr addr, MemTxAttrs attrs,
3134 const uint8_t *buf, int len)
ac1970fb 3135{
eb7eeb88 3136 hwaddr l;
eb7eeb88
PB
3137 hwaddr addr1;
3138 MemoryRegion *mr;
3139 MemTxResult result = MEMTX_OK;
eb7eeb88 3140
4c6ebbb3
PB
3141 l = len;
3142 mr = flatview_translate(fv, addr, &addr1, &l, true);
3143 result = flatview_write_continue(fv, addr, attrs, buf, len,
3144 addr1, l, mr);
a203ac70
PB
3145
3146 return result;
3147}
3148
3149/* Called within RCU critical section. */
16620684
AK
3150MemTxResult flatview_read_continue(FlatView *fv, hwaddr addr,
3151 MemTxAttrs attrs, uint8_t *buf,
3152 int len, hwaddr addr1, hwaddr l,
3153 MemoryRegion *mr)
a203ac70
PB
3154{
3155 uint8_t *ptr;
3156 uint64_t val;
3157 MemTxResult result = MEMTX_OK;
3158 bool release_lock = false;
eb7eeb88 3159
a203ac70 3160 for (;;) {
eb7eeb88
PB
3161 if (!memory_access_is_direct(mr, false)) {
3162 /* I/O case */
3163 release_lock |= prepare_mmio_access(mr);
3164 l = memory_access_size(mr, l, addr1);
3165 switch (l) {
3166 case 8:
3167 /* 64 bit read access */
3168 result |= memory_region_dispatch_read(mr, addr1, &val, 8,
3169 attrs);
3170 stq_p(buf, val);
3171 break;
3172 case 4:
3173 /* 32 bit read access */
3174 result |= memory_region_dispatch_read(mr, addr1, &val, 4,
3175 attrs);
3176 stl_p(buf, val);
3177 break;
3178 case 2:
3179 /* 16 bit read access */
3180 result |= memory_region_dispatch_read(mr, addr1, &val, 2,
3181 attrs);
3182 stw_p(buf, val);
3183 break;
3184 case 1:
3185 /* 8 bit read access */
3186 result |= memory_region_dispatch_read(mr, addr1, &val, 1,
3187 attrs);
3188 stb_p(buf, val);
3189 break;
3190 default:
3191 abort();
3192 }
3193 } else {
3194 /* RAM case */
f5aa69bd 3195 ptr = qemu_ram_ptr_length(mr->ram_block, addr1, &l, false);
eb7eeb88
PB
3196 memcpy(buf, ptr, l);
3197 }
3198
3199 if (release_lock) {
3200 qemu_mutex_unlock_iothread();
3201 release_lock = false;
3202 }
3203
3204 len -= l;
3205 buf += l;
3206 addr += l;
a203ac70
PB
3207
3208 if (!len) {
3209 break;
3210 }
3211
3212 l = len;
16620684 3213 mr = flatview_translate(fv, addr, &addr1, &l, false);
a203ac70
PB
3214 }
3215
3216 return result;
3217}
3218
b2a44fca
PB
3219/* Called from RCU critical section. */
3220static MemTxResult flatview_read(FlatView *fv, hwaddr addr,
3221 MemTxAttrs attrs, uint8_t *buf, int len)
a203ac70
PB
3222{
3223 hwaddr l;
3224 hwaddr addr1;
3225 MemoryRegion *mr;
eb7eeb88 3226
b2a44fca
PB
3227 l = len;
3228 mr = flatview_translate(fv, addr, &addr1, &l, false);
3229 return flatview_read_continue(fv, addr, attrs, buf, len,
3230 addr1, l, mr);
ac1970fb
AK
3231}
3232
b2a44fca
PB
3233MemTxResult address_space_read_full(AddressSpace *as, hwaddr addr,
3234 MemTxAttrs attrs, uint8_t *buf, int len)
3235{
3236 MemTxResult result = MEMTX_OK;
3237 FlatView *fv;
3238
3239 if (len > 0) {
3240 rcu_read_lock();
3241 fv = address_space_to_flatview(as);
3242 result = flatview_read(fv, addr, attrs, buf, len);
3243 rcu_read_unlock();
3244 }
3245
3246 return result;
3247}
3248
4c6ebbb3
PB
3249MemTxResult address_space_write(AddressSpace *as, hwaddr addr,
3250 MemTxAttrs attrs,
3251 const uint8_t *buf, int len)
3252{
3253 MemTxResult result = MEMTX_OK;
3254 FlatView *fv;
3255
3256 if (len > 0) {
3257 rcu_read_lock();
3258 fv = address_space_to_flatview(as);
3259 result = flatview_write(fv, addr, attrs, buf, len);
3260 rcu_read_unlock();
3261 }
3262
3263 return result;
3264}
3265
db84fd97
PB
3266MemTxResult address_space_rw(AddressSpace *as, hwaddr addr, MemTxAttrs attrs,
3267 uint8_t *buf, int len, bool is_write)
3268{
3269 if (is_write) {
3270 return address_space_write(as, addr, attrs, buf, len);
3271 } else {
3272 return address_space_read_full(as, addr, attrs, buf, len);
3273 }
3274}
3275
a8170e5e 3276void cpu_physical_memory_rw(hwaddr addr, uint8_t *buf,
ac1970fb
AK
3277 int len, int is_write)
3278{
5c9eb028
PM
3279 address_space_rw(&address_space_memory, addr, MEMTXATTRS_UNSPECIFIED,
3280 buf, len, is_write);
ac1970fb
AK
3281}
3282
582b55a9
AG
3283enum write_rom_type {
3284 WRITE_DATA,
3285 FLUSH_CACHE,
3286};
3287
2a221651 3288static inline void cpu_physical_memory_write_rom_internal(AddressSpace *as,
582b55a9 3289 hwaddr addr, const uint8_t *buf, int len, enum write_rom_type type)
d0ecd2aa 3290{
149f54b5 3291 hwaddr l;
d0ecd2aa 3292 uint8_t *ptr;
149f54b5 3293 hwaddr addr1;
5c8a00ce 3294 MemoryRegion *mr;
3b46e624 3295
41063e1e 3296 rcu_read_lock();
d0ecd2aa 3297 while (len > 0) {
149f54b5 3298 l = len;
2a221651 3299 mr = address_space_translate(as, addr, &addr1, &l, true);
3b46e624 3300
5c8a00ce
PB
3301 if (!(memory_region_is_ram(mr) ||
3302 memory_region_is_romd(mr))) {
b242e0e0 3303 l = memory_access_size(mr, l, addr1);
d0ecd2aa 3304 } else {
d0ecd2aa 3305 /* ROM/RAM case */
0878d0e1 3306 ptr = qemu_map_ram_ptr(mr->ram_block, addr1);
582b55a9
AG
3307 switch (type) {
3308 case WRITE_DATA:
3309 memcpy(ptr, buf, l);
845b6214 3310 invalidate_and_set_dirty(mr, addr1, l);
582b55a9
AG
3311 break;
3312 case FLUSH_CACHE:
3313 flush_icache_range((uintptr_t)ptr, (uintptr_t)ptr + l);
3314 break;
3315 }
d0ecd2aa
FB
3316 }
3317 len -= l;
3318 buf += l;
3319 addr += l;
3320 }
41063e1e 3321 rcu_read_unlock();
d0ecd2aa
FB
3322}
3323
582b55a9 3324/* used for ROM loading : can write in RAM and ROM */
2a221651 3325void cpu_physical_memory_write_rom(AddressSpace *as, hwaddr addr,
582b55a9
AG
3326 const uint8_t *buf, int len)
3327{
2a221651 3328 cpu_physical_memory_write_rom_internal(as, addr, buf, len, WRITE_DATA);
582b55a9
AG
3329}
3330
3331void cpu_flush_icache_range(hwaddr start, int len)
3332{
3333 /*
3334 * This function should do the same thing as an icache flush that was
3335 * triggered from within the guest. For TCG we are always cache coherent,
3336 * so there is no need to flush anything. For KVM / Xen we need to flush
3337 * the host's instruction cache at least.
3338 */
3339 if (tcg_enabled()) {
3340 return;
3341 }
3342
2a221651
EI
3343 cpu_physical_memory_write_rom_internal(&address_space_memory,
3344 start, NULL, len, FLUSH_CACHE);
582b55a9
AG
3345}
3346
6d16c2f8 3347typedef struct {
d3e71559 3348 MemoryRegion *mr;
6d16c2f8 3349 void *buffer;
a8170e5e
AK
3350 hwaddr addr;
3351 hwaddr len;
c2cba0ff 3352 bool in_use;
6d16c2f8
AL
3353} BounceBuffer;
3354
3355static BounceBuffer bounce;
3356
ba223c29 3357typedef struct MapClient {
e95205e1 3358 QEMUBH *bh;
72cf2d4f 3359 QLIST_ENTRY(MapClient) link;
ba223c29
AL
3360} MapClient;
3361
38e047b5 3362QemuMutex map_client_list_lock;
72cf2d4f
BS
3363static QLIST_HEAD(map_client_list, MapClient) map_client_list
3364 = QLIST_HEAD_INITIALIZER(map_client_list);
ba223c29 3365
e95205e1
FZ
3366static void cpu_unregister_map_client_do(MapClient *client)
3367{
3368 QLIST_REMOVE(client, link);
3369 g_free(client);
3370}
3371
33b6c2ed
FZ
3372static void cpu_notify_map_clients_locked(void)
3373{
3374 MapClient *client;
3375
3376 while (!QLIST_EMPTY(&map_client_list)) {
3377 client = QLIST_FIRST(&map_client_list);
e95205e1
FZ
3378 qemu_bh_schedule(client->bh);
3379 cpu_unregister_map_client_do(client);
33b6c2ed
FZ
3380 }
3381}
3382
e95205e1 3383void cpu_register_map_client(QEMUBH *bh)
ba223c29 3384{
7267c094 3385 MapClient *client = g_malloc(sizeof(*client));
ba223c29 3386
38e047b5 3387 qemu_mutex_lock(&map_client_list_lock);
e95205e1 3388 client->bh = bh;
72cf2d4f 3389 QLIST_INSERT_HEAD(&map_client_list, client, link);
33b6c2ed
FZ
3390 if (!atomic_read(&bounce.in_use)) {
3391 cpu_notify_map_clients_locked();
3392 }
38e047b5 3393 qemu_mutex_unlock(&map_client_list_lock);
ba223c29
AL
3394}
3395
38e047b5 3396void cpu_exec_init_all(void)
ba223c29 3397{
38e047b5 3398 qemu_mutex_init(&ram_list.mutex);
20bccb82
PM
3399 /* The data structures we set up here depend on knowing the page size,
3400 * so no more changes can be made after this point.
3401 * In an ideal world, nothing we did before we had finished the
3402 * machine setup would care about the target page size, and we could
3403 * do this much later, rather than requiring board models to state
3404 * up front what their requirements are.
3405 */
3406 finalize_target_page_bits();
38e047b5 3407 io_mem_init();
680a4783 3408 memory_map_init();
38e047b5 3409 qemu_mutex_init(&map_client_list_lock);
ba223c29
AL
3410}
3411
e95205e1 3412void cpu_unregister_map_client(QEMUBH *bh)
ba223c29
AL
3413{
3414 MapClient *client;
3415
e95205e1
FZ
3416 qemu_mutex_lock(&map_client_list_lock);
3417 QLIST_FOREACH(client, &map_client_list, link) {
3418 if (client->bh == bh) {
3419 cpu_unregister_map_client_do(client);
3420 break;
3421 }
ba223c29 3422 }
e95205e1 3423 qemu_mutex_unlock(&map_client_list_lock);
ba223c29
AL
3424}
3425
3426static void cpu_notify_map_clients(void)
3427{
38e047b5 3428 qemu_mutex_lock(&map_client_list_lock);
33b6c2ed 3429 cpu_notify_map_clients_locked();
38e047b5 3430 qemu_mutex_unlock(&map_client_list_lock);
ba223c29
AL
3431}
3432
16620684
AK
3433static bool flatview_access_valid(FlatView *fv, hwaddr addr, int len,
3434 bool is_write)
51644ab7 3435{
5c8a00ce 3436 MemoryRegion *mr;
51644ab7
PB
3437 hwaddr l, xlat;
3438
3439 while (len > 0) {
3440 l = len;
16620684 3441 mr = flatview_translate(fv, addr, &xlat, &l, is_write);
5c8a00ce
PB
3442 if (!memory_access_is_direct(mr, is_write)) {
3443 l = memory_access_size(mr, l, addr);
3444 if (!memory_region_access_valid(mr, xlat, l, is_write)) {
51644ab7
PB
3445 return false;
3446 }
3447 }
3448
3449 len -= l;
3450 addr += l;
3451 }
3452 return true;
3453}
3454
16620684
AK
3455bool address_space_access_valid(AddressSpace *as, hwaddr addr,
3456 int len, bool is_write)
3457{
11e732a5
PB
3458 FlatView *fv;
3459 bool result;
3460
3461 rcu_read_lock();
3462 fv = address_space_to_flatview(as);
3463 result = flatview_access_valid(fv, addr, len, is_write);
3464 rcu_read_unlock();
3465 return result;
16620684
AK
3466}
3467
715c31ec 3468static hwaddr
16620684
AK
3469flatview_extend_translation(FlatView *fv, hwaddr addr,
3470 hwaddr target_len,
715c31ec
PB
3471 MemoryRegion *mr, hwaddr base, hwaddr len,
3472 bool is_write)
3473{
3474 hwaddr done = 0;
3475 hwaddr xlat;
3476 MemoryRegion *this_mr;
3477
3478 for (;;) {
3479 target_len -= len;
3480 addr += len;
3481 done += len;
3482 if (target_len == 0) {
3483 return done;
3484 }
3485
3486 len = target_len;
16620684
AK
3487 this_mr = flatview_translate(fv, addr, &xlat,
3488 &len, is_write);
715c31ec
PB
3489 if (this_mr != mr || xlat != base + done) {
3490 return done;
3491 }
3492 }
3493}
3494
6d16c2f8
AL
3495/* Map a physical memory region into a host virtual address.
3496 * May map a subset of the requested range, given by and returned in *plen.
3497 * May return NULL if resources needed to perform the mapping are exhausted.
3498 * Use only for reads OR writes - not for read-modify-write operations.
ba223c29
AL
3499 * Use cpu_register_map_client() to know when retrying the map operation is
3500 * likely to succeed.
6d16c2f8 3501 */
ac1970fb 3502void *address_space_map(AddressSpace *as,
a8170e5e
AK
3503 hwaddr addr,
3504 hwaddr *plen,
ac1970fb 3505 bool is_write)
6d16c2f8 3506{
a8170e5e 3507 hwaddr len = *plen;
715c31ec
PB
3508 hwaddr l, xlat;
3509 MemoryRegion *mr;
e81bcda5 3510 void *ptr;
ad0c60fa 3511 FlatView *fv;
6d16c2f8 3512
e3127ae0
PB
3513 if (len == 0) {
3514 return NULL;
3515 }
38bee5dc 3516
e3127ae0 3517 l = len;
41063e1e 3518 rcu_read_lock();
ad0c60fa 3519 fv = address_space_to_flatview(as);
16620684 3520 mr = flatview_translate(fv, addr, &xlat, &l, is_write);
41063e1e 3521
e3127ae0 3522 if (!memory_access_is_direct(mr, is_write)) {
c2cba0ff 3523 if (atomic_xchg(&bounce.in_use, true)) {
41063e1e 3524 rcu_read_unlock();
e3127ae0 3525 return NULL;
6d16c2f8 3526 }
e85d9db5
KW
3527 /* Avoid unbounded allocations */
3528 l = MIN(l, TARGET_PAGE_SIZE);
3529 bounce.buffer = qemu_memalign(TARGET_PAGE_SIZE, l);
e3127ae0
PB
3530 bounce.addr = addr;
3531 bounce.len = l;
d3e71559
PB
3532
3533 memory_region_ref(mr);
3534 bounce.mr = mr;
e3127ae0 3535 if (!is_write) {
16620684 3536 flatview_read(fv, addr, MEMTXATTRS_UNSPECIFIED,
5c9eb028 3537 bounce.buffer, l);
8ab934f9 3538 }
6d16c2f8 3539
41063e1e 3540 rcu_read_unlock();
e3127ae0
PB
3541 *plen = l;
3542 return bounce.buffer;
3543 }
3544
e3127ae0 3545
d3e71559 3546 memory_region_ref(mr);
16620684
AK
3547 *plen = flatview_extend_translation(fv, addr, len, mr, xlat,
3548 l, is_write);
f5aa69bd 3549 ptr = qemu_ram_ptr_length(mr->ram_block, xlat, plen, true);
e81bcda5
PB
3550 rcu_read_unlock();
3551
3552 return ptr;
6d16c2f8
AL
3553}
3554
ac1970fb 3555/* Unmaps a memory region previously mapped by address_space_map().
6d16c2f8
AL
3556 * Will also mark the memory as dirty if is_write == 1. access_len gives
3557 * the amount of memory that was actually read or written by the caller.
3558 */
a8170e5e
AK
3559void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
3560 int is_write, hwaddr access_len)
6d16c2f8
AL
3561{
3562 if (buffer != bounce.buffer) {
d3e71559
PB
3563 MemoryRegion *mr;
3564 ram_addr_t addr1;
3565
07bdaa41 3566 mr = memory_region_from_host(buffer, &addr1);
d3e71559 3567 assert(mr != NULL);
6d16c2f8 3568 if (is_write) {
845b6214 3569 invalidate_and_set_dirty(mr, addr1, access_len);
6d16c2f8 3570 }
868bb33f 3571 if (xen_enabled()) {
e41d7c69 3572 xen_invalidate_map_cache_entry(buffer);
050a0ddf 3573 }
d3e71559 3574 memory_region_unref(mr);
6d16c2f8
AL
3575 return;
3576 }
3577 if (is_write) {
5c9eb028
PM
3578 address_space_write(as, bounce.addr, MEMTXATTRS_UNSPECIFIED,
3579 bounce.buffer, access_len);
6d16c2f8 3580 }
f8a83245 3581 qemu_vfree(bounce.buffer);
6d16c2f8 3582 bounce.buffer = NULL;
d3e71559 3583 memory_region_unref(bounce.mr);
c2cba0ff 3584 atomic_mb_set(&bounce.in_use, false);
ba223c29 3585 cpu_notify_map_clients();
6d16c2f8 3586}
d0ecd2aa 3587
a8170e5e
AK
3588void *cpu_physical_memory_map(hwaddr addr,
3589 hwaddr *plen,
ac1970fb
AK
3590 int is_write)
3591{
3592 return address_space_map(&address_space_memory, addr, plen, is_write);
3593}
3594
a8170e5e
AK
3595void cpu_physical_memory_unmap(void *buffer, hwaddr len,
3596 int is_write, hwaddr access_len)
ac1970fb
AK
3597{
3598 return address_space_unmap(&address_space_memory, buffer, len, is_write, access_len);
3599}
3600
0ce265ff
PB
3601#define ARG1_DECL AddressSpace *as
3602#define ARG1 as
3603#define SUFFIX
3604#define TRANSLATE(...) address_space_translate(as, __VA_ARGS__)
3605#define IS_DIRECT(mr, is_write) memory_access_is_direct(mr, is_write)
3606#define MAP_RAM(mr, ofs) qemu_map_ram_ptr((mr)->ram_block, ofs)
3607#define INVALIDATE(mr, ofs, len) invalidate_and_set_dirty(mr, ofs, len)
3608#define RCU_READ_LOCK(...) rcu_read_lock()
3609#define RCU_READ_UNLOCK(...) rcu_read_unlock()
3610#include "memory_ldst.inc.c"
1e78bcc1 3611
1f4e496e
PB
3612int64_t address_space_cache_init(MemoryRegionCache *cache,
3613 AddressSpace *as,
3614 hwaddr addr,
3615 hwaddr len,
3616 bool is_write)
3617{
90c4fe5f
PB
3618 cache->len = len;
3619 cache->as = as;
3620 cache->xlat = addr;
3621 return len;
1f4e496e
PB
3622}
3623
3624void address_space_cache_invalidate(MemoryRegionCache *cache,
3625 hwaddr addr,
3626 hwaddr access_len)
3627{
1f4e496e
PB
3628}
3629
3630void address_space_cache_destroy(MemoryRegionCache *cache)
3631{
90c4fe5f 3632 cache->as = NULL;
1f4e496e
PB
3633}
3634
3635#define ARG1_DECL MemoryRegionCache *cache
3636#define ARG1 cache
3637#define SUFFIX _cached
90c4fe5f
PB
3638#define TRANSLATE(addr, ...) \
3639 address_space_translate(cache->as, cache->xlat + (addr), __VA_ARGS__)
1f4e496e 3640#define IS_DIRECT(mr, is_write) true
90c4fe5f
PB
3641#define MAP_RAM(mr, ofs) qemu_map_ram_ptr((mr)->ram_block, ofs)
3642#define INVALIDATE(mr, ofs, len) invalidate_and_set_dirty(mr, ofs, len)
3643#define RCU_READ_LOCK() rcu_read_lock()
3644#define RCU_READ_UNLOCK() rcu_read_unlock()
1f4e496e
PB
3645#include "memory_ldst.inc.c"
3646
5e2972fd 3647/* virtual memory access for debug (includes writing to ROM) */
f17ec444 3648int cpu_memory_rw_debug(CPUState *cpu, target_ulong addr,
b448f2f3 3649 uint8_t *buf, int len, int is_write)
13eb76e0
FB
3650{
3651 int l;
a8170e5e 3652 hwaddr phys_addr;
9b3c35e0 3653 target_ulong page;
13eb76e0 3654
79ca7a1b 3655 cpu_synchronize_state(cpu);
13eb76e0 3656 while (len > 0) {
5232e4c7
PM
3657 int asidx;
3658 MemTxAttrs attrs;
3659
13eb76e0 3660 page = addr & TARGET_PAGE_MASK;
5232e4c7
PM
3661 phys_addr = cpu_get_phys_page_attrs_debug(cpu, page, &attrs);
3662 asidx = cpu_asidx_from_attrs(cpu, attrs);
13eb76e0
FB
3663 /* if no physical page mapped, return an error */
3664 if (phys_addr == -1)
3665 return -1;
3666 l = (page + TARGET_PAGE_SIZE) - addr;
3667 if (l > len)
3668 l = len;
5e2972fd 3669 phys_addr += (addr & ~TARGET_PAGE_MASK);
2e38847b 3670 if (is_write) {
5232e4c7
PM
3671 cpu_physical_memory_write_rom(cpu->cpu_ases[asidx].as,
3672 phys_addr, buf, l);
2e38847b 3673 } else {
5232e4c7
PM
3674 address_space_rw(cpu->cpu_ases[asidx].as, phys_addr,
3675 MEMTXATTRS_UNSPECIFIED,
5c9eb028 3676 buf, l, 0);
2e38847b 3677 }
13eb76e0
FB
3678 len -= l;
3679 buf += l;
3680 addr += l;
3681 }
3682 return 0;
3683}
038629a6
DDAG
3684
3685/*
3686 * Allows code that needs to deal with migration bitmaps etc to still be built
3687 * target independent.
3688 */
20afaed9 3689size_t qemu_target_page_size(void)
038629a6 3690{
20afaed9 3691 return TARGET_PAGE_SIZE;
038629a6
DDAG
3692}
3693
46d702b1
JQ
3694int qemu_target_page_bits(void)
3695{
3696 return TARGET_PAGE_BITS;
3697}
3698
3699int qemu_target_page_bits_min(void)
3700{
3701 return TARGET_PAGE_BITS_MIN;
3702}
a68fe89c 3703#endif
13eb76e0 3704
8e4a424b
BS
3705/*
3706 * A helper function for the _utterly broken_ virtio device model to find out if
3707 * it's running on a big endian machine. Don't do this at home kids!
3708 */
98ed8ecf
GK
3709bool target_words_bigendian(void);
3710bool target_words_bigendian(void)
8e4a424b
BS
3711{
3712#if defined(TARGET_WORDS_BIGENDIAN)
3713 return true;
3714#else
3715 return false;
3716#endif
3717}
3718
76f35538 3719#ifndef CONFIG_USER_ONLY
a8170e5e 3720bool cpu_physical_memory_is_io(hwaddr phys_addr)
76f35538 3721{
5c8a00ce 3722 MemoryRegion*mr;
149f54b5 3723 hwaddr l = 1;
41063e1e 3724 bool res;
76f35538 3725
41063e1e 3726 rcu_read_lock();
5c8a00ce
PB
3727 mr = address_space_translate(&address_space_memory,
3728 phys_addr, &phys_addr, &l, false);
76f35538 3729
41063e1e
PB
3730 res = !(memory_region_is_ram(mr) || memory_region_is_romd(mr));
3731 rcu_read_unlock();
3732 return res;
76f35538 3733}
bd2fa51f 3734
e3807054 3735int qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
bd2fa51f
MH
3736{
3737 RAMBlock *block;
e3807054 3738 int ret = 0;
bd2fa51f 3739
0dc3f44a 3740 rcu_read_lock();
99e15582 3741 RAMBLOCK_FOREACH(block) {
e3807054
DDAG
3742 ret = func(block->idstr, block->host, block->offset,
3743 block->used_length, opaque);
3744 if (ret) {
3745 break;
3746 }
bd2fa51f 3747 }
0dc3f44a 3748 rcu_read_unlock();
e3807054 3749 return ret;
bd2fa51f 3750}
d3a5038c
DDAG
3751
3752/*
3753 * Unmap pages of memory from start to start+length such that
3754 * they a) read as 0, b) Trigger whatever fault mechanism
3755 * the OS provides for postcopy.
3756 * The pages must be unmapped by the end of the function.
3757 * Returns: 0 on success, none-0 on failure
3758 *
3759 */
3760int ram_block_discard_range(RAMBlock *rb, uint64_t start, size_t length)
3761{
3762 int ret = -1;
3763
3764 uint8_t *host_startaddr = rb->host + start;
3765
3766 if ((uintptr_t)host_startaddr & (rb->page_size - 1)) {
3767 error_report("ram_block_discard_range: Unaligned start address: %p",
3768 host_startaddr);
3769 goto err;
3770 }
3771
3772 if ((start + length) <= rb->used_length) {
db144f70 3773 bool need_madvise, need_fallocate;
d3a5038c
DDAG
3774 uint8_t *host_endaddr = host_startaddr + length;
3775 if ((uintptr_t)host_endaddr & (rb->page_size - 1)) {
3776 error_report("ram_block_discard_range: Unaligned end address: %p",
3777 host_endaddr);
3778 goto err;
3779 }
3780
3781 errno = ENOTSUP; /* If we are missing MADVISE etc */
3782
db144f70
DDAG
3783 /* The logic here is messy;
3784 * madvise DONTNEED fails for hugepages
3785 * fallocate works on hugepages and shmem
3786 */
3787 need_madvise = (rb->page_size == qemu_host_page_size);
3788 need_fallocate = rb->fd != -1;
3789 if (need_fallocate) {
3790 /* For a file, this causes the area of the file to be zero'd
3791 * if read, and for hugetlbfs also causes it to be unmapped
3792 * so a userfault will trigger.
e2fa71f5
DDAG
3793 */
3794#ifdef CONFIG_FALLOCATE_PUNCH_HOLE
3795 ret = fallocate(rb->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
3796 start, length);
db144f70
DDAG
3797 if (ret) {
3798 ret = -errno;
3799 error_report("ram_block_discard_range: Failed to fallocate "
3800 "%s:%" PRIx64 " +%zx (%d)",
3801 rb->idstr, start, length, ret);
3802 goto err;
3803 }
3804#else
3805 ret = -ENOSYS;
3806 error_report("ram_block_discard_range: fallocate not available/file"
3807 "%s:%" PRIx64 " +%zx (%d)",
3808 rb->idstr, start, length, ret);
3809 goto err;
e2fa71f5
DDAG
3810#endif
3811 }
db144f70
DDAG
3812 if (need_madvise) {
3813 /* For normal RAM this causes it to be unmapped,
3814 * for shared memory it causes the local mapping to disappear
3815 * and to fall back on the file contents (which we just
3816 * fallocate'd away).
3817 */
3818#if defined(CONFIG_MADVISE)
3819 ret = madvise(host_startaddr, length, MADV_DONTNEED);
3820 if (ret) {
3821 ret = -errno;
3822 error_report("ram_block_discard_range: Failed to discard range "
3823 "%s:%" PRIx64 " +%zx (%d)",
3824 rb->idstr, start, length, ret);
3825 goto err;
3826 }
3827#else
3828 ret = -ENOSYS;
3829 error_report("ram_block_discard_range: MADVISE not available"
d3a5038c
DDAG
3830 "%s:%" PRIx64 " +%zx (%d)",
3831 rb->idstr, start, length, ret);
db144f70
DDAG
3832 goto err;
3833#endif
d3a5038c 3834 }
db144f70
DDAG
3835 trace_ram_block_discard_range(rb->idstr, host_startaddr, length,
3836 need_madvise, need_fallocate, ret);
d3a5038c
DDAG
3837 } else {
3838 error_report("ram_block_discard_range: Overrun block '%s' (%" PRIu64
3839 "/%zx/" RAM_ADDR_FMT")",
3840 rb->idstr, start, length, rb->used_length);
3841 }
3842
3843err:
3844 return ret;
3845}
3846
ec3f8c99 3847#endif
a0be0c58
YZ
3848
3849void page_size_init(void)
3850{
3851 /* NOTE: we can always suppose that qemu_host_page_size >=
3852 TARGET_PAGE_SIZE */
a0be0c58
YZ
3853 if (qemu_host_page_size == 0) {
3854 qemu_host_page_size = qemu_real_host_page_size;
3855 }
3856 if (qemu_host_page_size < TARGET_PAGE_SIZE) {
3857 qemu_host_page_size = TARGET_PAGE_SIZE;
3858 }
3859 qemu_host_page_mask = -(intptr_t)qemu_host_page_size;
3860}
5e8fd947
AK
3861
3862#if !defined(CONFIG_USER_ONLY)
3863
3864static void mtree_print_phys_entries(fprintf_function mon, void *f,
3865 int start, int end, int skip, int ptr)
3866{
3867 if (start == end - 1) {
3868 mon(f, "\t%3d ", start);
3869 } else {
3870 mon(f, "\t%3d..%-3d ", start, end - 1);
3871 }
3872 mon(f, " skip=%d ", skip);
3873 if (ptr == PHYS_MAP_NODE_NIL) {
3874 mon(f, " ptr=NIL");
3875 } else if (!skip) {
3876 mon(f, " ptr=#%d", ptr);
3877 } else {
3878 mon(f, " ptr=[%d]", ptr);
3879 }
3880 mon(f, "\n");
3881}
3882
3883#define MR_SIZE(size) (int128_nz(size) ? (hwaddr)int128_get64( \
3884 int128_sub((size), int128_one())) : 0)
3885
3886void mtree_print_dispatch(fprintf_function mon, void *f,
3887 AddressSpaceDispatch *d, MemoryRegion *root)
3888{
3889 int i;
3890
3891 mon(f, " Dispatch\n");
3892 mon(f, " Physical sections\n");
3893
3894 for (i = 0; i < d->map.sections_nb; ++i) {
3895 MemoryRegionSection *s = d->map.sections + i;
3896 const char *names[] = { " [unassigned]", " [not dirty]",
3897 " [ROM]", " [watch]" };
3898
3899 mon(f, " #%d @" TARGET_FMT_plx ".." TARGET_FMT_plx " %s%s%s%s%s",
3900 i,
3901 s->offset_within_address_space,
3902 s->offset_within_address_space + MR_SIZE(s->mr->size),
3903 s->mr->name ? s->mr->name : "(noname)",
3904 i < ARRAY_SIZE(names) ? names[i] : "",
3905 s->mr == root ? " [ROOT]" : "",
3906 s == d->mru_section ? " [MRU]" : "",
3907 s->mr->is_iommu ? " [iommu]" : "");
3908
3909 if (s->mr->alias) {
3910 mon(f, " alias=%s", s->mr->alias->name ?
3911 s->mr->alias->name : "noname");
3912 }
3913 mon(f, "\n");
3914 }
3915
3916 mon(f, " Nodes (%d bits per level, %d levels) ptr=[%d] skip=%d\n",
3917 P_L2_BITS, P_L2_LEVELS, d->phys_map.ptr, d->phys_map.skip);
3918 for (i = 0; i < d->map.nodes_nb; ++i) {
3919 int j, jprev;
3920 PhysPageEntry prev;
3921 Node *n = d->map.nodes + i;
3922
3923 mon(f, " [%d]\n", i);
3924
3925 for (j = 0, jprev = 0, prev = *n[0]; j < ARRAY_SIZE(*n); ++j) {
3926 PhysPageEntry *pe = *n + j;
3927
3928 if (pe->ptr == prev.ptr && pe->skip == prev.skip) {
3929 continue;
3930 }
3931
3932 mtree_print_phys_entries(mon, f, jprev, j, prev.skip, prev.ptr);
3933
3934 jprev = j;
3935 prev = *pe;
3936 }
3937
3938 if (jprev != ARRAY_SIZE(*n)) {
3939 mtree_print_phys_entries(mon, f, jprev, j, prev.skip, prev.ptr);
3940 }
3941 }
3942}
3943
3944#endif
This page took 1.697005 seconds and 4 git commands to generate.