xref: /qemu/system/physmem.c (revision 3ec02148160a8147187fce211d1251af2c4cf9f1)
1 /*
2  * RAM allocation and memory access
3  *
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.1 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
17  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #include "qemu/osdep.h"
21 #include "exec/page-vary.h"
22 #include "qapi/error.h"
23 
24 #include "qemu/cutils.h"
25 #include "qemu/cacheflush.h"
26 #include "qemu/hbitmap.h"
27 #include "qemu/madvise.h"
28 #include "qemu/lockable.h"
29 
30 #ifdef CONFIG_TCG
31 #include "hw/core/tcg-cpu-ops.h"
32 #endif /* CONFIG_TCG */
33 
34 #include "exec/exec-all.h"
35 #include "exec/page-protection.h"
36 #include "exec/target_page.h"
37 #include "exec/translation-block.h"
38 #include "hw/qdev-core.h"
39 #include "hw/qdev-properties.h"
40 #include "hw/boards.h"
41 #include "system/xen.h"
42 #include "system/kvm.h"
43 #include "system/tcg.h"
44 #include "system/qtest.h"
45 #include "qemu/timer.h"
46 #include "qemu/config-file.h"
47 #include "qemu/error-report.h"
48 #include "qemu/qemu-print.h"
49 #include "qemu/log.h"
50 #include "qemu/memalign.h"
51 #include "exec/memory.h"
52 #include "exec/ioport.h"
53 #include "system/dma.h"
54 #include "system/hostmem.h"
55 #include "system/hw_accel.h"
56 #include "system/xen-mapcache.h"
57 #include "trace.h"
58 
59 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
60 #include <linux/falloc.h>
61 #endif
62 
63 #include "qemu/rcu_queue.h"
64 #include "qemu/main-loop.h"
65 #include "system/replay.h"
66 
67 #include "exec/memory-internal.h"
68 #include "exec/ram_addr.h"
69 
70 #include "qemu/pmem.h"
71 
72 #include "migration/vmstate.h"
73 
74 #include "qemu/range.h"
75 #ifndef _WIN32
76 #include "qemu/mmap-alloc.h"
77 #endif
78 
79 #include "monitor/monitor.h"
80 
81 #ifdef CONFIG_LIBDAXCTL
82 #include <daxctl/libdaxctl.h>
83 #endif
84 
85 //#define DEBUG_SUBPAGE
86 
87 /* ram_list is read under rcu_read_lock()/rcu_read_unlock().  Writes
88  * are protected by the ramlist lock.
89  */
90 RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list.blocks) };
91 
92 static MemoryRegion *system_memory;
93 static MemoryRegion *system_io;
94 
95 AddressSpace address_space_io;
96 AddressSpace address_space_memory;
97 
98 static MemoryRegion io_mem_unassigned;
99 
100 typedef struct PhysPageEntry PhysPageEntry;
101 
102 struct PhysPageEntry {
103     /* How many bits skip to next level (in units of L2_SIZE). 0 for a leaf. */
104     uint32_t skip : 6;
105      /* index into phys_sections (!skip) or phys_map_nodes (skip) */
106     uint32_t ptr : 26;
107 };
108 
109 #define PHYS_MAP_NODE_NIL (((uint32_t)~0) >> 6)
110 
111 /* Size of the L2 (and L3, etc) page tables.  */
112 #define ADDR_SPACE_BITS 64
113 
114 #define P_L2_BITS 9
115 #define P_L2_SIZE (1 << P_L2_BITS)
116 
117 #define P_L2_LEVELS (((ADDR_SPACE_BITS - TARGET_PAGE_BITS - 1) / P_L2_BITS) + 1)
118 
119 typedef PhysPageEntry Node[P_L2_SIZE];
120 
121 typedef struct PhysPageMap {
122     struct rcu_head rcu;
123 
124     unsigned sections_nb;
125     unsigned sections_nb_alloc;
126     unsigned nodes_nb;
127     unsigned nodes_nb_alloc;
128     Node *nodes;
129     MemoryRegionSection *sections;
130 } PhysPageMap;
131 
132 struct AddressSpaceDispatch {
133     MemoryRegionSection *mru_section;
134     /* This is a multi-level map on the physical address space.
135      * The bottom level has pointers to MemoryRegionSections.
136      */
137     PhysPageEntry phys_map;
138     PhysPageMap map;
139 };
140 
141 #define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK)
142 typedef struct subpage_t {
143     MemoryRegion iomem;
144     FlatView *fv;
145     hwaddr base;
146     uint16_t sub_section[];
147 } subpage_t;
148 
149 #define PHYS_SECTION_UNASSIGNED 0
150 
151 static void io_mem_init(void);
152 static void memory_map_init(void);
153 static void tcg_log_global_after_sync(MemoryListener *listener);
154 static void tcg_commit(MemoryListener *listener);
155 
156 /**
157  * CPUAddressSpace: all the information a CPU needs about an AddressSpace
158  * @cpu: the CPU whose AddressSpace this is
159  * @as: the AddressSpace itself
160  * @memory_dispatch: its dispatch pointer (cached, RCU protected)
161  * @tcg_as_listener: listener for tracking changes to the AddressSpace
162  */
163 typedef struct CPUAddressSpace {
164     CPUState *cpu;
165     AddressSpace *as;
166     struct AddressSpaceDispatch *memory_dispatch;
167     MemoryListener tcg_as_listener;
168 } CPUAddressSpace;
169 
170 struct DirtyBitmapSnapshot {
171     ram_addr_t start;
172     ram_addr_t end;
173     unsigned long dirty[];
174 };
175 
176 static void phys_map_node_reserve(PhysPageMap *map, unsigned nodes)
177 {
178     static unsigned alloc_hint = 16;
179     if (map->nodes_nb + nodes > map->nodes_nb_alloc) {
180         map->nodes_nb_alloc = MAX(alloc_hint, map->nodes_nb + nodes);
181         map->nodes = g_renew(Node, map->nodes, map->nodes_nb_alloc);
182         alloc_hint = map->nodes_nb_alloc;
183     }
184 }
185 
186 static uint32_t phys_map_node_alloc(PhysPageMap *map, bool leaf)
187 {
188     unsigned i;
189     uint32_t ret;
190     PhysPageEntry e;
191     PhysPageEntry *p;
192 
193     ret = map->nodes_nb++;
194     p = map->nodes[ret];
195     assert(ret != PHYS_MAP_NODE_NIL);
196     assert(ret != map->nodes_nb_alloc);
197 
198     e.skip = leaf ? 0 : 1;
199     e.ptr = leaf ? PHYS_SECTION_UNASSIGNED : PHYS_MAP_NODE_NIL;
200     for (i = 0; i < P_L2_SIZE; ++i) {
201         memcpy(&p[i], &e, sizeof(e));
202     }
203     return ret;
204 }
205 
206 static void phys_page_set_level(PhysPageMap *map, PhysPageEntry *lp,
207                                 hwaddr *index, uint64_t *nb, uint16_t leaf,
208                                 int level)
209 {
210     PhysPageEntry *p;
211     hwaddr step = (hwaddr)1 << (level * P_L2_BITS);
212 
213     if (lp->skip && lp->ptr == PHYS_MAP_NODE_NIL) {
214         lp->ptr = phys_map_node_alloc(map, level == 0);
215     }
216     p = map->nodes[lp->ptr];
217     lp = &p[(*index >> (level * P_L2_BITS)) & (P_L2_SIZE - 1)];
218 
219     while (*nb && lp < &p[P_L2_SIZE]) {
220         if ((*index & (step - 1)) == 0 && *nb >= step) {
221             lp->skip = 0;
222             lp->ptr = leaf;
223             *index += step;
224             *nb -= step;
225         } else {
226             phys_page_set_level(map, lp, index, nb, leaf, level - 1);
227         }
228         ++lp;
229     }
230 }
231 
232 static void phys_page_set(AddressSpaceDispatch *d,
233                           hwaddr index, uint64_t nb,
234                           uint16_t leaf)
235 {
236     /* Wildly overreserve - it doesn't matter much. */
237     phys_map_node_reserve(&d->map, 3 * P_L2_LEVELS);
238 
239     phys_page_set_level(&d->map, &d->phys_map, &index, &nb, leaf, P_L2_LEVELS - 1);
240 }
241 
242 /* Compact a non leaf page entry. Simply detect that the entry has a single child,
243  * and update our entry so we can skip it and go directly to the destination.
244  */
245 static void phys_page_compact(PhysPageEntry *lp, Node *nodes)
246 {
247     unsigned valid_ptr = P_L2_SIZE;
248     int valid = 0;
249     PhysPageEntry *p;
250     int i;
251 
252     if (lp->ptr == PHYS_MAP_NODE_NIL) {
253         return;
254     }
255 
256     p = nodes[lp->ptr];
257     for (i = 0; i < P_L2_SIZE; i++) {
258         if (p[i].ptr == PHYS_MAP_NODE_NIL) {
259             continue;
260         }
261 
262         valid_ptr = i;
263         valid++;
264         if (p[i].skip) {
265             phys_page_compact(&p[i], nodes);
266         }
267     }
268 
269     /* We can only compress if there's only one child. */
270     if (valid != 1) {
271         return;
272     }
273 
274     assert(valid_ptr < P_L2_SIZE);
275 
276     /* Don't compress if it won't fit in the # of bits we have. */
277     if (P_L2_LEVELS >= (1 << 6) &&
278         lp->skip + p[valid_ptr].skip >= (1 << 6)) {
279         return;
280     }
281 
282     lp->ptr = p[valid_ptr].ptr;
283     if (!p[valid_ptr].skip) {
284         /* If our only child is a leaf, make this a leaf. */
285         /* By design, we should have made this node a leaf to begin with so we
286          * should never reach here.
287          * But since it's so simple to handle this, let's do it just in case we
288          * change this rule.
289          */
290         lp->skip = 0;
291     } else {
292         lp->skip += p[valid_ptr].skip;
293     }
294 }
295 
296 void address_space_dispatch_compact(AddressSpaceDispatch *d)
297 {
298     if (d->phys_map.skip) {
299         phys_page_compact(&d->phys_map, d->map.nodes);
300     }
301 }
302 
303 static inline bool section_covers_addr(const MemoryRegionSection *section,
304                                        hwaddr addr)
305 {
306     /* Memory topology clips a memory region to [0, 2^64); size.hi > 0 means
307      * the section must cover the entire address space.
308      */
309     return int128_gethi(section->size) ||
310            range_covers_byte(section->offset_within_address_space,
311                              int128_getlo(section->size), addr);
312 }
313 
314 static MemoryRegionSection *phys_page_find(AddressSpaceDispatch *d, hwaddr addr)
315 {
316     PhysPageEntry lp = d->phys_map, *p;
317     Node *nodes = d->map.nodes;
318     MemoryRegionSection *sections = d->map.sections;
319     hwaddr index = addr >> TARGET_PAGE_BITS;
320     int i;
321 
322     for (i = P_L2_LEVELS; lp.skip && (i -= lp.skip) >= 0;) {
323         if (lp.ptr == PHYS_MAP_NODE_NIL) {
324             return &sections[PHYS_SECTION_UNASSIGNED];
325         }
326         p = nodes[lp.ptr];
327         lp = p[(index >> (i * P_L2_BITS)) & (P_L2_SIZE - 1)];
328     }
329 
330     if (section_covers_addr(&sections[lp.ptr], addr)) {
331         return &sections[lp.ptr];
332     } else {
333         return &sections[PHYS_SECTION_UNASSIGNED];
334     }
335 }
336 
337 /* Called from RCU critical section */
338 static MemoryRegionSection *address_space_lookup_region(AddressSpaceDispatch *d,
339                                                         hwaddr addr,
340                                                         bool resolve_subpage)
341 {
342     MemoryRegionSection *section = qatomic_read(&d->mru_section);
343     subpage_t *subpage;
344 
345     if (!section || section == &d->map.sections[PHYS_SECTION_UNASSIGNED] ||
346         !section_covers_addr(section, addr)) {
347         section = phys_page_find(d, addr);
348         qatomic_set(&d->mru_section, section);
349     }
350     if (resolve_subpage && section->mr->subpage) {
351         subpage = container_of(section->mr, subpage_t, iomem);
352         section = &d->map.sections[subpage->sub_section[SUBPAGE_IDX(addr)]];
353     }
354     return section;
355 }
356 
357 /* Called from RCU critical section */
358 static MemoryRegionSection *
359 address_space_translate_internal(AddressSpaceDispatch *d, hwaddr addr, hwaddr *xlat,
360                                  hwaddr *plen, bool resolve_subpage)
361 {
362     MemoryRegionSection *section;
363     MemoryRegion *mr;
364     Int128 diff;
365 
366     section = address_space_lookup_region(d, addr, resolve_subpage);
367     /* Compute offset within MemoryRegionSection */
368     addr -= section->offset_within_address_space;
369 
370     /* Compute offset within MemoryRegion */
371     *xlat = addr + section->offset_within_region;
372 
373     mr = section->mr;
374 
375     /* MMIO registers can be expected to perform full-width accesses based only
376      * on their address, without considering adjacent registers that could
377      * decode to completely different MemoryRegions.  When such registers
378      * exist (e.g. I/O ports 0xcf8 and 0xcf9 on most PC chipsets), MMIO
379      * regions overlap wildly.  For this reason we cannot clamp the accesses
380      * here.
381      *
382      * If the length is small (as is the case for address_space_ldl/stl),
383      * everything works fine.  If the incoming length is large, however,
384      * the caller really has to do the clamping through memory_access_size.
385      */
386     if (memory_region_is_ram(mr)) {
387         diff = int128_sub(section->size, int128_make64(addr));
388         *plen = int128_get64(int128_min(diff, int128_make64(*plen)));
389     }
390     return section;
391 }
392 
393 /**
394  * address_space_translate_iommu - translate an address through an IOMMU
395  * memory region and then through the target address space.
396  *
397  * @iommu_mr: the IOMMU memory region that we start the translation from
398  * @addr: the address to be translated through the MMU
399  * @xlat: the translated address offset within the destination memory region.
400  *        It cannot be %NULL.
401  * @plen_out: valid read/write length of the translated address. It
402  *            cannot be %NULL.
403  * @page_mask_out: page mask for the translated address. This
404  *            should only be meaningful for IOMMU translated
405  *            addresses, since there may be huge pages that this bit
406  *            would tell. It can be %NULL if we don't care about it.
407  * @is_write: whether the translation operation is for write
408  * @is_mmio: whether this can be MMIO, set true if it can
409  * @target_as: the address space targeted by the IOMMU
410  * @attrs: transaction attributes
411  *
412  * This function is called from RCU critical section.  It is the common
413  * part of flatview_do_translate and address_space_translate_cached.
414  */
415 static MemoryRegionSection address_space_translate_iommu(IOMMUMemoryRegion *iommu_mr,
416                                                          hwaddr *xlat,
417                                                          hwaddr *plen_out,
418                                                          hwaddr *page_mask_out,
419                                                          bool is_write,
420                                                          bool is_mmio,
421                                                          AddressSpace **target_as,
422                                                          MemTxAttrs attrs)
423 {
424     MemoryRegionSection *section;
425     hwaddr page_mask = (hwaddr)-1;
426 
427     do {
428         hwaddr addr = *xlat;
429         IOMMUMemoryRegionClass *imrc = memory_region_get_iommu_class_nocheck(iommu_mr);
430         int iommu_idx = 0;
431         IOMMUTLBEntry iotlb;
432 
433         if (imrc->attrs_to_index) {
434             iommu_idx = imrc->attrs_to_index(iommu_mr, attrs);
435         }
436 
437         iotlb = imrc->translate(iommu_mr, addr, is_write ?
438                                 IOMMU_WO : IOMMU_RO, iommu_idx);
439 
440         if (!(iotlb.perm & (1 << is_write))) {
441             goto unassigned;
442         }
443 
444         addr = ((iotlb.translated_addr & ~iotlb.addr_mask)
445                 | (addr & iotlb.addr_mask));
446         page_mask &= iotlb.addr_mask;
447         *plen_out = MIN(*plen_out, (addr | iotlb.addr_mask) - addr + 1);
448         *target_as = iotlb.target_as;
449 
450         section = address_space_translate_internal(
451                 address_space_to_dispatch(iotlb.target_as), addr, xlat,
452                 plen_out, is_mmio);
453 
454         iommu_mr = memory_region_get_iommu(section->mr);
455     } while (unlikely(iommu_mr));
456 
457     if (page_mask_out) {
458         *page_mask_out = page_mask;
459     }
460     return *section;
461 
462 unassigned:
463     return (MemoryRegionSection) { .mr = &io_mem_unassigned };
464 }
465 
466 /**
467  * flatview_do_translate - translate an address in FlatView
468  *
469  * @fv: the flat view that we want to translate on
470  * @addr: the address to be translated in above address space
471  * @xlat: the translated address offset within memory region. It
472  *        cannot be @NULL.
473  * @plen_out: valid read/write length of the translated address. It
474  *            can be @NULL when we don't care about it.
475  * @page_mask_out: page mask for the translated address. This
476  *            should only be meaningful for IOMMU translated
477  *            addresses, since there may be huge pages that this bit
478  *            would tell. It can be @NULL if we don't care about it.
479  * @is_write: whether the translation operation is for write
480  * @is_mmio: whether this can be MMIO, set true if it can
481  * @target_as: the address space targeted by the IOMMU
482  * @attrs: memory transaction attributes
483  *
484  * This function is called from RCU critical section
485  */
486 static MemoryRegionSection flatview_do_translate(FlatView *fv,
487                                                  hwaddr addr,
488                                                  hwaddr *xlat,
489                                                  hwaddr *plen_out,
490                                                  hwaddr *page_mask_out,
491                                                  bool is_write,
492                                                  bool is_mmio,
493                                                  AddressSpace **target_as,
494                                                  MemTxAttrs attrs)
495 {
496     MemoryRegionSection *section;
497     IOMMUMemoryRegion *iommu_mr;
498     hwaddr plen = (hwaddr)(-1);
499 
500     if (!plen_out) {
501         plen_out = &plen;
502     }
503 
504     section = address_space_translate_internal(
505             flatview_to_dispatch(fv), addr, xlat,
506             plen_out, is_mmio);
507 
508     iommu_mr = memory_region_get_iommu(section->mr);
509     if (unlikely(iommu_mr)) {
510         return address_space_translate_iommu(iommu_mr, xlat,
511                                              plen_out, page_mask_out,
512                                              is_write, is_mmio,
513                                              target_as, attrs);
514     }
515     if (page_mask_out) {
516         /* Not behind an IOMMU, use default page size. */
517         *page_mask_out = ~TARGET_PAGE_MASK;
518     }
519 
520     return *section;
521 }
522 
523 /* Called from RCU critical section */
524 IOMMUTLBEntry address_space_get_iotlb_entry(AddressSpace *as, hwaddr addr,
525                                             bool is_write, MemTxAttrs attrs)
526 {
527     MemoryRegionSection section;
528     hwaddr xlat, page_mask;
529 
530     /*
531      * This can never be MMIO, and we don't really care about plen,
532      * but page mask.
533      */
534     section = flatview_do_translate(address_space_to_flatview(as), addr, &xlat,
535                                     NULL, &page_mask, is_write, false, &as,
536                                     attrs);
537 
538     /* Illegal translation */
539     if (section.mr == &io_mem_unassigned) {
540         goto iotlb_fail;
541     }
542 
543     /* Convert memory region offset into address space offset */
544     xlat += section.offset_within_address_space -
545         section.offset_within_region;
546 
547     return (IOMMUTLBEntry) {
548         .target_as = as,
549         .iova = addr & ~page_mask,
550         .translated_addr = xlat & ~page_mask,
551         .addr_mask = page_mask,
552         /* IOTLBs are for DMAs, and DMA only allows on RAMs. */
553         .perm = IOMMU_RW,
554     };
555 
556 iotlb_fail:
557     return (IOMMUTLBEntry) {0};
558 }
559 
560 /* Called from RCU critical section */
561 MemoryRegion *flatview_translate(FlatView *fv, hwaddr addr, hwaddr *xlat,
562                                  hwaddr *plen, bool is_write,
563                                  MemTxAttrs attrs)
564 {
565     MemoryRegion *mr;
566     MemoryRegionSection section;
567     AddressSpace *as = NULL;
568 
569     /* This can be MMIO, so setup MMIO bit. */
570     section = flatview_do_translate(fv, addr, xlat, plen, NULL,
571                                     is_write, true, &as, attrs);
572     mr = section.mr;
573 
574     if (xen_enabled() && memory_access_is_direct(mr, is_write)) {
575         hwaddr page = ((addr & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE) - addr;
576         *plen = MIN(page, *plen);
577     }
578 
579     return mr;
580 }
581 
582 typedef struct TCGIOMMUNotifier {
583     IOMMUNotifier n;
584     MemoryRegion *mr;
585     CPUState *cpu;
586     int iommu_idx;
587     bool active;
588 } TCGIOMMUNotifier;
589 
590 static void tcg_iommu_unmap_notify(IOMMUNotifier *n, IOMMUTLBEntry *iotlb)
591 {
592     TCGIOMMUNotifier *notifier = container_of(n, TCGIOMMUNotifier, n);
593 
594     if (!notifier->active) {
595         return;
596     }
597     tlb_flush(notifier->cpu);
598     notifier->active = false;
599     /* We leave the notifier struct on the list to avoid reallocating it later.
600      * Generally the number of IOMMUs a CPU deals with will be small.
601      * In any case we can't unregister the iommu notifier from a notify
602      * callback.
603      */
604 }
605 
606 static void tcg_register_iommu_notifier(CPUState *cpu,
607                                         IOMMUMemoryRegion *iommu_mr,
608                                         int iommu_idx)
609 {
610     /* Make sure this CPU has an IOMMU notifier registered for this
611      * IOMMU/IOMMU index combination, so that we can flush its TLB
612      * when the IOMMU tells us the mappings we've cached have changed.
613      */
614     MemoryRegion *mr = MEMORY_REGION(iommu_mr);
615     TCGIOMMUNotifier *notifier = NULL;
616     int i;
617 
618     for (i = 0; i < cpu->iommu_notifiers->len; i++) {
619         notifier = g_array_index(cpu->iommu_notifiers, TCGIOMMUNotifier *, i);
620         if (notifier->mr == mr && notifier->iommu_idx == iommu_idx) {
621             break;
622         }
623     }
624     if (i == cpu->iommu_notifiers->len) {
625         /* Not found, add a new entry at the end of the array */
626         cpu->iommu_notifiers = g_array_set_size(cpu->iommu_notifiers, i + 1);
627         notifier = g_new0(TCGIOMMUNotifier, 1);
628         g_array_index(cpu->iommu_notifiers, TCGIOMMUNotifier *, i) = notifier;
629 
630         notifier->mr = mr;
631         notifier->iommu_idx = iommu_idx;
632         notifier->cpu = cpu;
633         /* Rather than trying to register interest in the specific part
634          * of the iommu's address space that we've accessed and then
635          * expand it later as subsequent accesses touch more of it, we
636          * just register interest in the whole thing, on the assumption
637          * that iommu reconfiguration will be rare.
638          */
639         iommu_notifier_init(&notifier->n,
640                             tcg_iommu_unmap_notify,
641                             IOMMU_NOTIFIER_UNMAP,
642                             0,
643                             HWADDR_MAX,
644                             iommu_idx);
645         memory_region_register_iommu_notifier(notifier->mr, &notifier->n,
646                                               &error_fatal);
647     }
648 
649     if (!notifier->active) {
650         notifier->active = true;
651     }
652 }
653 
654 void tcg_iommu_free_notifier_list(CPUState *cpu)
655 {
656     /* Destroy the CPU's notifier list */
657     int i;
658     TCGIOMMUNotifier *notifier;
659 
660     for (i = 0; i < cpu->iommu_notifiers->len; i++) {
661         notifier = g_array_index(cpu->iommu_notifiers, TCGIOMMUNotifier *, i);
662         memory_region_unregister_iommu_notifier(notifier->mr, &notifier->n);
663         g_free(notifier);
664     }
665     g_array_free(cpu->iommu_notifiers, true);
666 }
667 
668 void tcg_iommu_init_notifier_list(CPUState *cpu)
669 {
670     cpu->iommu_notifiers = g_array_new(false, true, sizeof(TCGIOMMUNotifier *));
671 }
672 
673 /* Called from RCU critical section */
674 MemoryRegionSection *
675 address_space_translate_for_iotlb(CPUState *cpu, int asidx, hwaddr orig_addr,
676                                   hwaddr *xlat, hwaddr *plen,
677                                   MemTxAttrs attrs, int *prot)
678 {
679     MemoryRegionSection *section;
680     IOMMUMemoryRegion *iommu_mr;
681     IOMMUMemoryRegionClass *imrc;
682     IOMMUTLBEntry iotlb;
683     int iommu_idx;
684     hwaddr addr = orig_addr;
685     AddressSpaceDispatch *d = cpu->cpu_ases[asidx].memory_dispatch;
686 
687     for (;;) {
688         section = address_space_translate_internal(d, addr, &addr, plen, false);
689 
690         iommu_mr = memory_region_get_iommu(section->mr);
691         if (!iommu_mr) {
692             break;
693         }
694 
695         imrc = memory_region_get_iommu_class_nocheck(iommu_mr);
696 
697         iommu_idx = imrc->attrs_to_index(iommu_mr, attrs);
698         tcg_register_iommu_notifier(cpu, iommu_mr, iommu_idx);
699         /* We need all the permissions, so pass IOMMU_NONE so the IOMMU
700          * doesn't short-cut its translation table walk.
701          */
702         iotlb = imrc->translate(iommu_mr, addr, IOMMU_NONE, iommu_idx);
703         addr = ((iotlb.translated_addr & ~iotlb.addr_mask)
704                 | (addr & iotlb.addr_mask));
705         /* Update the caller's prot bits to remove permissions the IOMMU
706          * is giving us a failure response for. If we get down to no
707          * permissions left at all we can give up now.
708          */
709         if (!(iotlb.perm & IOMMU_RO)) {
710             *prot &= ~(PAGE_READ | PAGE_EXEC);
711         }
712         if (!(iotlb.perm & IOMMU_WO)) {
713             *prot &= ~PAGE_WRITE;
714         }
715 
716         if (!*prot) {
717             goto translate_fail;
718         }
719 
720         d = flatview_to_dispatch(address_space_to_flatview(iotlb.target_as));
721     }
722 
723     assert(!memory_region_is_iommu(section->mr));
724     *xlat = addr;
725     return section;
726 
727 translate_fail:
728     /*
729      * We should be given a page-aligned address -- certainly
730      * tlb_set_page_with_attrs() does so.  The page offset of xlat
731      * is used to index sections[], and PHYS_SECTION_UNASSIGNED = 0.
732      * The page portion of xlat will be logged by memory_region_access_valid()
733      * when this memory access is rejected, so use the original untranslated
734      * physical address.
735      */
736     assert((orig_addr & ~TARGET_PAGE_MASK) == 0);
737     *xlat = orig_addr;
738     return &d->map.sections[PHYS_SECTION_UNASSIGNED];
739 }
740 
741 void cpu_address_space_init(CPUState *cpu, int asidx,
742                             const char *prefix, MemoryRegion *mr)
743 {
744     CPUAddressSpace *newas;
745     AddressSpace *as = g_new0(AddressSpace, 1);
746     char *as_name;
747 
748     assert(mr);
749     as_name = g_strdup_printf("%s-%d", prefix, cpu->cpu_index);
750     address_space_init(as, mr, as_name);
751     g_free(as_name);
752 
753     /* Target code should have set num_ases before calling us */
754     assert(asidx < cpu->num_ases);
755 
756     if (asidx == 0) {
757         /* address space 0 gets the convenience alias */
758         cpu->as = as;
759     }
760 
761     /* KVM cannot currently support multiple address spaces. */
762     assert(asidx == 0 || !kvm_enabled());
763 
764     if (!cpu->cpu_ases) {
765         cpu->cpu_ases = g_new0(CPUAddressSpace, cpu->num_ases);
766         cpu->cpu_ases_count = cpu->num_ases;
767     }
768 
769     newas = &cpu->cpu_ases[asidx];
770     newas->cpu = cpu;
771     newas->as = as;
772     if (tcg_enabled()) {
773         newas->tcg_as_listener.log_global_after_sync = tcg_log_global_after_sync;
774         newas->tcg_as_listener.commit = tcg_commit;
775         newas->tcg_as_listener.name = "tcg";
776         memory_listener_register(&newas->tcg_as_listener, as);
777     }
778 }
779 
780 void cpu_address_space_destroy(CPUState *cpu, int asidx)
781 {
782     CPUAddressSpace *cpuas;
783 
784     assert(cpu->cpu_ases);
785     assert(asidx >= 0 && asidx < cpu->num_ases);
786     /* KVM cannot currently support multiple address spaces. */
787     assert(asidx == 0 || !kvm_enabled());
788 
789     cpuas = &cpu->cpu_ases[asidx];
790     if (tcg_enabled()) {
791         memory_listener_unregister(&cpuas->tcg_as_listener);
792     }
793 
794     address_space_destroy(cpuas->as);
795     g_free_rcu(cpuas->as, rcu);
796 
797     if (asidx == 0) {
798         /* reset the convenience alias for address space 0 */
799         cpu->as = NULL;
800     }
801 
802     if (--cpu->cpu_ases_count == 0) {
803         g_free(cpu->cpu_ases);
804         cpu->cpu_ases = NULL;
805     }
806 }
807 
808 AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx)
809 {
810     /* Return the AddressSpace corresponding to the specified index */
811     return cpu->cpu_ases[asidx].as;
812 }
813 
814 /* Called from RCU critical section */
815 static RAMBlock *qemu_get_ram_block(ram_addr_t addr)
816 {
817     RAMBlock *block;
818 
819     block = qatomic_rcu_read(&ram_list.mru_block);
820     if (block && addr - block->offset < block->max_length) {
821         return block;
822     }
823     RAMBLOCK_FOREACH(block) {
824         if (addr - block->offset < block->max_length) {
825             goto found;
826         }
827     }
828 
829     fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr);
830     abort();
831 
832 found:
833     /* It is safe to write mru_block outside the BQL.  This
834      * is what happens:
835      *
836      *     mru_block = xxx
837      *     rcu_read_unlock()
838      *                                        xxx removed from list
839      *                  rcu_read_lock()
840      *                  read mru_block
841      *                                        mru_block = NULL;
842      *                                        call_rcu(reclaim_ramblock, xxx);
843      *                  rcu_read_unlock()
844      *
845      * qatomic_rcu_set is not needed here.  The block was already published
846      * when it was placed into the list.  Here we're just making an extra
847      * copy of the pointer.
848      */
849     ram_list.mru_block = block;
850     return block;
851 }
852 
853 void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t length)
854 {
855     CPUState *cpu;
856     ram_addr_t start1;
857     RAMBlock *block;
858     ram_addr_t end;
859 
860     assert(tcg_enabled());
861     end = TARGET_PAGE_ALIGN(start + length);
862     start &= TARGET_PAGE_MASK;
863 
864     RCU_READ_LOCK_GUARD();
865     block = qemu_get_ram_block(start);
866     assert(block == qemu_get_ram_block(end - 1));
867     start1 = (uintptr_t)ramblock_ptr(block, start - block->offset);
868     CPU_FOREACH(cpu) {
869         tlb_reset_dirty(cpu, start1, length);
870     }
871 }
872 
873 /* Note: start and end must be within the same ram block.  */
874 bool cpu_physical_memory_test_and_clear_dirty(ram_addr_t start,
875                                               ram_addr_t length,
876                                               unsigned client)
877 {
878     DirtyMemoryBlocks *blocks;
879     unsigned long end, page, start_page;
880     bool dirty = false;
881     RAMBlock *ramblock;
882     uint64_t mr_offset, mr_size;
883 
884     if (length == 0) {
885         return false;
886     }
887 
888     end = TARGET_PAGE_ALIGN(start + length) >> TARGET_PAGE_BITS;
889     start_page = start >> TARGET_PAGE_BITS;
890     page = start_page;
891 
892     WITH_RCU_READ_LOCK_GUARD() {
893         blocks = qatomic_rcu_read(&ram_list.dirty_memory[client]);
894         ramblock = qemu_get_ram_block(start);
895         /* Range sanity check on the ramblock */
896         assert(start >= ramblock->offset &&
897                start + length <= ramblock->offset + ramblock->used_length);
898 
899         while (page < end) {
900             unsigned long idx = page / DIRTY_MEMORY_BLOCK_SIZE;
901             unsigned long offset = page % DIRTY_MEMORY_BLOCK_SIZE;
902             unsigned long num = MIN(end - page,
903                                     DIRTY_MEMORY_BLOCK_SIZE - offset);
904 
905             dirty |= bitmap_test_and_clear_atomic(blocks->blocks[idx],
906                                                   offset, num);
907             page += num;
908         }
909 
910         mr_offset = (ram_addr_t)(start_page << TARGET_PAGE_BITS) - ramblock->offset;
911         mr_size = (end - start_page) << TARGET_PAGE_BITS;
912         memory_region_clear_dirty_bitmap(ramblock->mr, mr_offset, mr_size);
913     }
914 
915     if (dirty) {
916         cpu_physical_memory_dirty_bits_cleared(start, length);
917     }
918 
919     return dirty;
920 }
921 
922 DirtyBitmapSnapshot *cpu_physical_memory_snapshot_and_clear_dirty
923     (MemoryRegion *mr, hwaddr offset, hwaddr length, unsigned client)
924 {
925     DirtyMemoryBlocks *blocks;
926     ram_addr_t start, first, last;
927     unsigned long align = 1UL << (TARGET_PAGE_BITS + BITS_PER_LEVEL);
928     DirtyBitmapSnapshot *snap;
929     unsigned long page, end, dest;
930 
931     start = memory_region_get_ram_addr(mr);
932     /* We know we're only called for RAM MemoryRegions */
933     assert(start != RAM_ADDR_INVALID);
934     start += offset;
935 
936     first = QEMU_ALIGN_DOWN(start, align);
937     last  = QEMU_ALIGN_UP(start + length, align);
938 
939     snap = g_malloc0(sizeof(*snap) +
940                      ((last - first) >> (TARGET_PAGE_BITS + 3)));
941     snap->start = first;
942     snap->end   = last;
943 
944     page = first >> TARGET_PAGE_BITS;
945     end  = last  >> TARGET_PAGE_BITS;
946     dest = 0;
947 
948     WITH_RCU_READ_LOCK_GUARD() {
949         blocks = qatomic_rcu_read(&ram_list.dirty_memory[client]);
950 
951         while (page < end) {
952             unsigned long idx = page / DIRTY_MEMORY_BLOCK_SIZE;
953             unsigned long ofs = page % DIRTY_MEMORY_BLOCK_SIZE;
954             unsigned long num = MIN(end - page,
955                                     DIRTY_MEMORY_BLOCK_SIZE - ofs);
956 
957             assert(QEMU_IS_ALIGNED(ofs, (1 << BITS_PER_LEVEL)));
958             assert(QEMU_IS_ALIGNED(num,    (1 << BITS_PER_LEVEL)));
959             ofs >>= BITS_PER_LEVEL;
960 
961             bitmap_copy_and_clear_atomic(snap->dirty + dest,
962                                          blocks->blocks[idx] + ofs,
963                                          num);
964             page += num;
965             dest += num >> BITS_PER_LEVEL;
966         }
967     }
968 
969     cpu_physical_memory_dirty_bits_cleared(start, length);
970 
971     memory_region_clear_dirty_bitmap(mr, offset, length);
972 
973     return snap;
974 }
975 
976 bool cpu_physical_memory_snapshot_get_dirty(DirtyBitmapSnapshot *snap,
977                                             ram_addr_t start,
978                                             ram_addr_t length)
979 {
980     unsigned long page, end;
981 
982     assert(start >= snap->start);
983     assert(start + length <= snap->end);
984 
985     end = TARGET_PAGE_ALIGN(start + length - snap->start) >> TARGET_PAGE_BITS;
986     page = (start - snap->start) >> TARGET_PAGE_BITS;
987 
988     while (page < end) {
989         if (test_bit(page, snap->dirty)) {
990             return true;
991         }
992         page++;
993     }
994     return false;
995 }
996 
997 /* Called from RCU critical section */
998 hwaddr memory_region_section_get_iotlb(CPUState *cpu,
999                                        MemoryRegionSection *section)
1000 {
1001     AddressSpaceDispatch *d = flatview_to_dispatch(section->fv);
1002     return section - d->map.sections;
1003 }
1004 
1005 static int subpage_register(subpage_t *mmio, uint32_t start, uint32_t end,
1006                             uint16_t section);
1007 static subpage_t *subpage_init(FlatView *fv, hwaddr base);
1008 
1009 static uint16_t phys_section_add(PhysPageMap *map,
1010                                  MemoryRegionSection *section)
1011 {
1012     /* The physical section number is ORed with a page-aligned
1013      * pointer to produce the iotlb entries.  Thus it should
1014      * never overflow into the page-aligned value.
1015      */
1016     assert(map->sections_nb < TARGET_PAGE_SIZE);
1017 
1018     if (map->sections_nb == map->sections_nb_alloc) {
1019         map->sections_nb_alloc = MAX(map->sections_nb_alloc * 2, 16);
1020         map->sections = g_renew(MemoryRegionSection, map->sections,
1021                                 map->sections_nb_alloc);
1022     }
1023     map->sections[map->sections_nb] = *section;
1024     memory_region_ref(section->mr);
1025     return map->sections_nb++;
1026 }
1027 
1028 static void phys_section_destroy(MemoryRegion *mr)
1029 {
1030     bool have_sub_page = mr->subpage;
1031 
1032     memory_region_unref(mr);
1033 
1034     if (have_sub_page) {
1035         subpage_t *subpage = container_of(mr, subpage_t, iomem);
1036         object_unref(OBJECT(&subpage->iomem));
1037         g_free(subpage);
1038     }
1039 }
1040 
1041 static void phys_sections_free(PhysPageMap *map)
1042 {
1043     while (map->sections_nb > 0) {
1044         MemoryRegionSection *section = &map->sections[--map->sections_nb];
1045         phys_section_destroy(section->mr);
1046     }
1047     g_free(map->sections);
1048     g_free(map->nodes);
1049 }
1050 
1051 static void register_subpage(FlatView *fv, MemoryRegionSection *section)
1052 {
1053     AddressSpaceDispatch *d = flatview_to_dispatch(fv);
1054     subpage_t *subpage;
1055     hwaddr base = section->offset_within_address_space
1056         & TARGET_PAGE_MASK;
1057     MemoryRegionSection *existing = phys_page_find(d, base);
1058     MemoryRegionSection subsection = {
1059         .offset_within_address_space = base,
1060         .size = int128_make64(TARGET_PAGE_SIZE),
1061     };
1062     hwaddr start, end;
1063 
1064     assert(existing->mr->subpage || existing->mr == &io_mem_unassigned);
1065 
1066     if (!(existing->mr->subpage)) {
1067         subpage = subpage_init(fv, base);
1068         subsection.fv = fv;
1069         subsection.mr = &subpage->iomem;
1070         phys_page_set(d, base >> TARGET_PAGE_BITS, 1,
1071                       phys_section_add(&d->map, &subsection));
1072     } else {
1073         subpage = container_of(existing->mr, subpage_t, iomem);
1074     }
1075     start = section->offset_within_address_space & ~TARGET_PAGE_MASK;
1076     end = start + int128_get64(section->size) - 1;
1077     subpage_register(subpage, start, end,
1078                      phys_section_add(&d->map, section));
1079 }
1080 
1081 
1082 static void register_multipage(FlatView *fv,
1083                                MemoryRegionSection *section)
1084 {
1085     AddressSpaceDispatch *d = flatview_to_dispatch(fv);
1086     hwaddr start_addr = section->offset_within_address_space;
1087     uint16_t section_index = phys_section_add(&d->map, section);
1088     uint64_t num_pages = int128_get64(int128_rshift(section->size,
1089                                                     TARGET_PAGE_BITS));
1090 
1091     assert(num_pages);
1092     phys_page_set(d, start_addr >> TARGET_PAGE_BITS, num_pages, section_index);
1093 }
1094 
1095 /*
1096  * The range in *section* may look like this:
1097  *
1098  *      |s|PPPPPPP|s|
1099  *
1100  * where s stands for subpage and P for page.
1101  */
1102 void flatview_add_to_dispatch(FlatView *fv, MemoryRegionSection *section)
1103 {
1104     MemoryRegionSection remain = *section;
1105     Int128 page_size = int128_make64(TARGET_PAGE_SIZE);
1106 
1107     /* register first subpage */
1108     if (remain.offset_within_address_space & ~TARGET_PAGE_MASK) {
1109         uint64_t left = TARGET_PAGE_ALIGN(remain.offset_within_address_space)
1110                         - remain.offset_within_address_space;
1111 
1112         MemoryRegionSection now = remain;
1113         now.size = int128_min(int128_make64(left), now.size);
1114         register_subpage(fv, &now);
1115         if (int128_eq(remain.size, now.size)) {
1116             return;
1117         }
1118         remain.size = int128_sub(remain.size, now.size);
1119         remain.offset_within_address_space += int128_get64(now.size);
1120         remain.offset_within_region += int128_get64(now.size);
1121     }
1122 
1123     /* register whole pages */
1124     if (int128_ge(remain.size, page_size)) {
1125         MemoryRegionSection now = remain;
1126         now.size = int128_and(now.size, int128_neg(page_size));
1127         register_multipage(fv, &now);
1128         if (int128_eq(remain.size, now.size)) {
1129             return;
1130         }
1131         remain.size = int128_sub(remain.size, now.size);
1132         remain.offset_within_address_space += int128_get64(now.size);
1133         remain.offset_within_region += int128_get64(now.size);
1134     }
1135 
1136     /* register last subpage */
1137     register_subpage(fv, &remain);
1138 }
1139 
1140 void qemu_flush_coalesced_mmio_buffer(void)
1141 {
1142     if (kvm_enabled())
1143         kvm_flush_coalesced_mmio_buffer();
1144 }
1145 
1146 void qemu_mutex_lock_ramlist(void)
1147 {
1148     qemu_mutex_lock(&ram_list.mutex);
1149 }
1150 
1151 void qemu_mutex_unlock_ramlist(void)
1152 {
1153     qemu_mutex_unlock(&ram_list.mutex);
1154 }
1155 
1156 GString *ram_block_format(void)
1157 {
1158     RAMBlock *block;
1159     char *psize;
1160     GString *buf = g_string_new("");
1161 
1162     RCU_READ_LOCK_GUARD();
1163     g_string_append_printf(buf, "%24s %8s  %18s %18s %18s %18s %3s\n",
1164                            "Block Name", "PSize", "Offset", "Used", "Total",
1165                            "HVA", "RO");
1166 
1167     RAMBLOCK_FOREACH(block) {
1168         psize = size_to_str(block->page_size);
1169         g_string_append_printf(buf, "%24s %8s  0x%016" PRIx64 " 0x%016" PRIx64
1170                                " 0x%016" PRIx64 " 0x%016" PRIx64 " %3s\n",
1171                                block->idstr, psize,
1172                                (uint64_t)block->offset,
1173                                (uint64_t)block->used_length,
1174                                (uint64_t)block->max_length,
1175                                (uint64_t)(uintptr_t)block->host,
1176                                block->mr->readonly ? "ro" : "rw");
1177 
1178         g_free(psize);
1179     }
1180 
1181     return buf;
1182 }
1183 
1184 static int find_min_backend_pagesize(Object *obj, void *opaque)
1185 {
1186     long *hpsize_min = opaque;
1187 
1188     if (object_dynamic_cast(obj, TYPE_MEMORY_BACKEND)) {
1189         HostMemoryBackend *backend = MEMORY_BACKEND(obj);
1190         long hpsize = host_memory_backend_pagesize(backend);
1191 
1192         if (host_memory_backend_is_mapped(backend) && (hpsize < *hpsize_min)) {
1193             *hpsize_min = hpsize;
1194         }
1195     }
1196 
1197     return 0;
1198 }
1199 
1200 static int find_max_backend_pagesize(Object *obj, void *opaque)
1201 {
1202     long *hpsize_max = opaque;
1203 
1204     if (object_dynamic_cast(obj, TYPE_MEMORY_BACKEND)) {
1205         HostMemoryBackend *backend = MEMORY_BACKEND(obj);
1206         long hpsize = host_memory_backend_pagesize(backend);
1207 
1208         if (host_memory_backend_is_mapped(backend) && (hpsize > *hpsize_max)) {
1209             *hpsize_max = hpsize;
1210         }
1211     }
1212 
1213     return 0;
1214 }
1215 
1216 /*
1217  * TODO: We assume right now that all mapped host memory backends are
1218  * used as RAM, however some might be used for different purposes.
1219  */
1220 long qemu_minrampagesize(void)
1221 {
1222     long hpsize = LONG_MAX;
1223     Object *memdev_root = object_resolve_path("/objects", NULL);
1224 
1225     object_child_foreach(memdev_root, find_min_backend_pagesize, &hpsize);
1226     return hpsize;
1227 }
1228 
1229 long qemu_maxrampagesize(void)
1230 {
1231     long pagesize = 0;
1232     Object *memdev_root = object_resolve_path("/objects", NULL);
1233 
1234     object_child_foreach(memdev_root, find_max_backend_pagesize, &pagesize);
1235     return pagesize;
1236 }
1237 
1238 #ifdef CONFIG_POSIX
1239 static int64_t get_file_size(int fd)
1240 {
1241     int64_t size;
1242 #if defined(__linux__)
1243     struct stat st;
1244 
1245     if (fstat(fd, &st) < 0) {
1246         return -errno;
1247     }
1248 
1249     /* Special handling for devdax character devices */
1250     if (S_ISCHR(st.st_mode)) {
1251         g_autofree char *subsystem_path = NULL;
1252         g_autofree char *subsystem = NULL;
1253 
1254         subsystem_path = g_strdup_printf("/sys/dev/char/%d:%d/subsystem",
1255                                          major(st.st_rdev), minor(st.st_rdev));
1256         subsystem = g_file_read_link(subsystem_path, NULL);
1257 
1258         if (subsystem && g_str_has_suffix(subsystem, "/dax")) {
1259             g_autofree char *size_path = NULL;
1260             g_autofree char *size_str = NULL;
1261 
1262             size_path = g_strdup_printf("/sys/dev/char/%d:%d/size",
1263                                     major(st.st_rdev), minor(st.st_rdev));
1264 
1265             if (g_file_get_contents(size_path, &size_str, NULL, NULL)) {
1266                 return g_ascii_strtoll(size_str, NULL, 0);
1267             }
1268         }
1269     }
1270 #endif /* defined(__linux__) */
1271 
1272     /* st.st_size may be zero for special files yet lseek(2) works */
1273     size = lseek(fd, 0, SEEK_END);
1274     if (size < 0) {
1275         return -errno;
1276     }
1277     return size;
1278 }
1279 
1280 static int64_t get_file_align(int fd)
1281 {
1282     int64_t align = -1;
1283 #if defined(__linux__) && defined(CONFIG_LIBDAXCTL)
1284     struct stat st;
1285 
1286     if (fstat(fd, &st) < 0) {
1287         return -errno;
1288     }
1289 
1290     /* Special handling for devdax character devices */
1291     if (S_ISCHR(st.st_mode)) {
1292         g_autofree char *path = NULL;
1293         g_autofree char *rpath = NULL;
1294         struct daxctl_ctx *ctx;
1295         struct daxctl_region *region;
1296         int rc = 0;
1297 
1298         path = g_strdup_printf("/sys/dev/char/%d:%d",
1299                     major(st.st_rdev), minor(st.st_rdev));
1300         rpath = realpath(path, NULL);
1301         if (!rpath) {
1302             return -errno;
1303         }
1304 
1305         rc = daxctl_new(&ctx);
1306         if (rc) {
1307             return -1;
1308         }
1309 
1310         daxctl_region_foreach(ctx, region) {
1311             if (strstr(rpath, daxctl_region_get_path(region))) {
1312                 align = daxctl_region_get_align(region);
1313                 break;
1314             }
1315         }
1316         daxctl_unref(ctx);
1317     }
1318 #endif /* defined(__linux__) && defined(CONFIG_LIBDAXCTL) */
1319 
1320     return align;
1321 }
1322 
1323 static int file_ram_open(const char *path,
1324                          const char *region_name,
1325                          bool readonly,
1326                          bool *created)
1327 {
1328     char *filename;
1329     char *sanitized_name;
1330     char *c;
1331     int fd = -1;
1332 
1333     *created = false;
1334     for (;;) {
1335         fd = open(path, readonly ? O_RDONLY : O_RDWR);
1336         if (fd >= 0) {
1337             /*
1338              * open(O_RDONLY) won't fail with EISDIR. Check manually if we
1339              * opened a directory and fail similarly to how we fail ENOENT
1340              * in readonly mode. Note that mkstemp() would imply O_RDWR.
1341              */
1342             if (readonly) {
1343                 struct stat file_stat;
1344 
1345                 if (fstat(fd, &file_stat)) {
1346                     close(fd);
1347                     if (errno == EINTR) {
1348                         continue;
1349                     }
1350                     return -errno;
1351                 } else if (S_ISDIR(file_stat.st_mode)) {
1352                     close(fd);
1353                     return -EISDIR;
1354                 }
1355             }
1356             /* @path names an existing file, use it */
1357             break;
1358         }
1359         if (errno == ENOENT) {
1360             if (readonly) {
1361                 /* Refuse to create new, readonly files. */
1362                 return -ENOENT;
1363             }
1364             /* @path names a file that doesn't exist, create it */
1365             fd = open(path, O_RDWR | O_CREAT | O_EXCL, 0644);
1366             if (fd >= 0) {
1367                 *created = true;
1368                 break;
1369             }
1370         } else if (errno == EISDIR) {
1371             /* @path names a directory, create a file there */
1372             /* Make name safe to use with mkstemp by replacing '/' with '_'. */
1373             sanitized_name = g_strdup(region_name);
1374             for (c = sanitized_name; *c != '\0'; c++) {
1375                 if (*c == '/') {
1376                     *c = '_';
1377                 }
1378             }
1379 
1380             filename = g_strdup_printf("%s/qemu_back_mem.%s.XXXXXX", path,
1381                                        sanitized_name);
1382             g_free(sanitized_name);
1383 
1384             fd = mkstemp(filename);
1385             if (fd >= 0) {
1386                 unlink(filename);
1387                 g_free(filename);
1388                 break;
1389             }
1390             g_free(filename);
1391         }
1392         if (errno != EEXIST && errno != EINTR) {
1393             return -errno;
1394         }
1395         /*
1396          * Try again on EINTR and EEXIST.  The latter happens when
1397          * something else creates the file between our two open().
1398          */
1399     }
1400 
1401     return fd;
1402 }
1403 
1404 static void *file_ram_alloc(RAMBlock *block,
1405                             ram_addr_t memory,
1406                             int fd,
1407                             bool truncate,
1408                             off_t offset,
1409                             Error **errp)
1410 {
1411     uint32_t qemu_map_flags;
1412     void *area;
1413 
1414     block->page_size = qemu_fd_getpagesize(fd);
1415     if (block->mr->align % block->page_size) {
1416         error_setg(errp, "alignment 0x%" PRIx64
1417                    " must be multiples of page size 0x%zx",
1418                    block->mr->align, block->page_size);
1419         return NULL;
1420     } else if (block->mr->align && !is_power_of_2(block->mr->align)) {
1421         error_setg(errp, "alignment 0x%" PRIx64
1422                    " must be a power of two", block->mr->align);
1423         return NULL;
1424     } else if (offset % block->page_size) {
1425         error_setg(errp, "offset 0x%" PRIx64
1426                    " must be multiples of page size 0x%zx",
1427                    offset, block->page_size);
1428         return NULL;
1429     }
1430     block->mr->align = MAX(block->page_size, block->mr->align);
1431 #if defined(__s390x__)
1432     if (kvm_enabled()) {
1433         block->mr->align = MAX(block->mr->align, QEMU_VMALLOC_ALIGN);
1434     }
1435 #endif
1436 
1437     if (memory < block->page_size) {
1438         error_setg(errp, "memory size 0x" RAM_ADDR_FMT " must be equal to "
1439                    "or larger than page size 0x%zx",
1440                    memory, block->page_size);
1441         return NULL;
1442     }
1443 
1444     memory = ROUND_UP(memory, block->page_size);
1445 
1446     /*
1447      * ftruncate is not supported by hugetlbfs in older
1448      * hosts, so don't bother bailing out on errors.
1449      * If anything goes wrong with it under other filesystems,
1450      * mmap will fail.
1451      *
1452      * Do not truncate the non-empty backend file to avoid corrupting
1453      * the existing data in the file. Disabling shrinking is not
1454      * enough. For example, the current vNVDIMM implementation stores
1455      * the guest NVDIMM labels at the end of the backend file. If the
1456      * backend file is later extended, QEMU will not be able to find
1457      * those labels. Therefore, extending the non-empty backend file
1458      * is disabled as well.
1459      */
1460     if (truncate && ftruncate(fd, offset + memory)) {
1461         perror("ftruncate");
1462     }
1463 
1464     qemu_map_flags = (block->flags & RAM_READONLY) ? QEMU_MAP_READONLY : 0;
1465     qemu_map_flags |= (block->flags & RAM_SHARED) ? QEMU_MAP_SHARED : 0;
1466     qemu_map_flags |= (block->flags & RAM_PMEM) ? QEMU_MAP_SYNC : 0;
1467     qemu_map_flags |= (block->flags & RAM_NORESERVE) ? QEMU_MAP_NORESERVE : 0;
1468     area = qemu_ram_mmap(fd, memory, block->mr->align, qemu_map_flags, offset);
1469     if (area == MAP_FAILED) {
1470         error_setg_errno(errp, errno,
1471                          "unable to map backing store for guest RAM");
1472         return NULL;
1473     }
1474 
1475     block->fd = fd;
1476     block->fd_offset = offset;
1477     return area;
1478 }
1479 #endif
1480 
1481 /* Allocate space within the ram_addr_t space that governs the
1482  * dirty bitmaps.
1483  * Called with the ramlist lock held.
1484  */
1485 static ram_addr_t find_ram_offset(ram_addr_t size)
1486 {
1487     RAMBlock *block, *next_block;
1488     ram_addr_t offset = RAM_ADDR_MAX, mingap = RAM_ADDR_MAX;
1489 
1490     assert(size != 0); /* it would hand out same offset multiple times */
1491 
1492     if (QLIST_EMPTY_RCU(&ram_list.blocks)) {
1493         return 0;
1494     }
1495 
1496     RAMBLOCK_FOREACH(block) {
1497         ram_addr_t candidate, next = RAM_ADDR_MAX;
1498 
1499         /* Align blocks to start on a 'long' in the bitmap
1500          * which makes the bitmap sync'ing take the fast path.
1501          */
1502         candidate = block->offset + block->max_length;
1503         candidate = ROUND_UP(candidate, BITS_PER_LONG << TARGET_PAGE_BITS);
1504 
1505         /* Search for the closest following block
1506          * and find the gap.
1507          */
1508         RAMBLOCK_FOREACH(next_block) {
1509             if (next_block->offset >= candidate) {
1510                 next = MIN(next, next_block->offset);
1511             }
1512         }
1513 
1514         /* If it fits remember our place and remember the size
1515          * of gap, but keep going so that we might find a smaller
1516          * gap to fill so avoiding fragmentation.
1517          */
1518         if (next - candidate >= size && next - candidate < mingap) {
1519             offset = candidate;
1520             mingap = next - candidate;
1521         }
1522 
1523         trace_find_ram_offset_loop(size, candidate, offset, next, mingap);
1524     }
1525 
1526     if (offset == RAM_ADDR_MAX) {
1527         fprintf(stderr, "Failed to find gap of requested size: %" PRIu64 "\n",
1528                 (uint64_t)size);
1529         abort();
1530     }
1531 
1532     trace_find_ram_offset(size, offset);
1533 
1534     return offset;
1535 }
1536 
1537 static void qemu_ram_setup_dump(void *addr, ram_addr_t size)
1538 {
1539     int ret;
1540 
1541     /* Use MADV_DONTDUMP, if user doesn't want the guest memory in the core */
1542     if (!machine_dump_guest_core(current_machine)) {
1543         ret = qemu_madvise(addr, size, QEMU_MADV_DONTDUMP);
1544         if (ret) {
1545             perror("qemu_madvise");
1546             fprintf(stderr, "madvise doesn't support MADV_DONTDUMP, "
1547                             "but dump-guest-core=off specified\n");
1548         }
1549     }
1550 }
1551 
1552 const char *qemu_ram_get_idstr(RAMBlock *rb)
1553 {
1554     return rb->idstr;
1555 }
1556 
1557 void *qemu_ram_get_host_addr(RAMBlock *rb)
1558 {
1559     return rb->host;
1560 }
1561 
1562 ram_addr_t qemu_ram_get_offset(RAMBlock *rb)
1563 {
1564     return rb->offset;
1565 }
1566 
1567 ram_addr_t qemu_ram_get_used_length(RAMBlock *rb)
1568 {
1569     return rb->used_length;
1570 }
1571 
1572 ram_addr_t qemu_ram_get_max_length(RAMBlock *rb)
1573 {
1574     return rb->max_length;
1575 }
1576 
1577 bool qemu_ram_is_shared(RAMBlock *rb)
1578 {
1579     return rb->flags & RAM_SHARED;
1580 }
1581 
1582 bool qemu_ram_is_noreserve(RAMBlock *rb)
1583 {
1584     return rb->flags & RAM_NORESERVE;
1585 }
1586 
1587 /* Note: Only set at the start of postcopy */
1588 bool qemu_ram_is_uf_zeroable(RAMBlock *rb)
1589 {
1590     return rb->flags & RAM_UF_ZEROPAGE;
1591 }
1592 
1593 void qemu_ram_set_uf_zeroable(RAMBlock *rb)
1594 {
1595     rb->flags |= RAM_UF_ZEROPAGE;
1596 }
1597 
1598 bool qemu_ram_is_migratable(RAMBlock *rb)
1599 {
1600     return rb->flags & RAM_MIGRATABLE;
1601 }
1602 
1603 void qemu_ram_set_migratable(RAMBlock *rb)
1604 {
1605     rb->flags |= RAM_MIGRATABLE;
1606 }
1607 
1608 void qemu_ram_unset_migratable(RAMBlock *rb)
1609 {
1610     rb->flags &= ~RAM_MIGRATABLE;
1611 }
1612 
1613 bool qemu_ram_is_named_file(RAMBlock *rb)
1614 {
1615     return rb->flags & RAM_NAMED_FILE;
1616 }
1617 
1618 int qemu_ram_get_fd(RAMBlock *rb)
1619 {
1620     return rb->fd;
1621 }
1622 
1623 /* Called with the BQL held.  */
1624 void qemu_ram_set_idstr(RAMBlock *new_block, const char *name, DeviceState *dev)
1625 {
1626     RAMBlock *block;
1627 
1628     assert(new_block);
1629     assert(!new_block->idstr[0]);
1630 
1631     if (dev) {
1632         char *id = qdev_get_dev_path(dev);
1633         if (id) {
1634             snprintf(new_block->idstr, sizeof(new_block->idstr), "%s/", id);
1635             g_free(id);
1636         }
1637     }
1638     pstrcat(new_block->idstr, sizeof(new_block->idstr), name);
1639 
1640     RCU_READ_LOCK_GUARD();
1641     RAMBLOCK_FOREACH(block) {
1642         if (block != new_block &&
1643             !strcmp(block->idstr, new_block->idstr)) {
1644             fprintf(stderr, "RAMBlock \"%s\" already registered, abort!\n",
1645                     new_block->idstr);
1646             abort();
1647         }
1648     }
1649 }
1650 
1651 /* Called with the BQL held.  */
1652 void qemu_ram_unset_idstr(RAMBlock *block)
1653 {
1654     /* FIXME: arch_init.c assumes that this is not called throughout
1655      * migration.  Ignore the problem since hot-unplug during migration
1656      * does not work anyway.
1657      */
1658     if (block) {
1659         memset(block->idstr, 0, sizeof(block->idstr));
1660     }
1661 }
1662 
1663 size_t qemu_ram_pagesize(RAMBlock *rb)
1664 {
1665     return rb->page_size;
1666 }
1667 
1668 /* Returns the largest size of page in use */
1669 size_t qemu_ram_pagesize_largest(void)
1670 {
1671     RAMBlock *block;
1672     size_t largest = 0;
1673 
1674     RAMBLOCK_FOREACH(block) {
1675         largest = MAX(largest, qemu_ram_pagesize(block));
1676     }
1677 
1678     return largest;
1679 }
1680 
1681 static int memory_try_enable_merging(void *addr, size_t len)
1682 {
1683     if (!machine_mem_merge(current_machine)) {
1684         /* disabled by the user */
1685         return 0;
1686     }
1687 
1688     return qemu_madvise(addr, len, QEMU_MADV_MERGEABLE);
1689 }
1690 
1691 /*
1692  * Resizing RAM while migrating can result in the migration being canceled.
1693  * Care has to be taken if the guest might have already detected the memory.
1694  *
1695  * As memory core doesn't know how is memory accessed, it is up to
1696  * resize callback to update device state and/or add assertions to detect
1697  * misuse, if necessary.
1698  */
1699 int qemu_ram_resize(RAMBlock *block, ram_addr_t newsize, Error **errp)
1700 {
1701     const ram_addr_t oldsize = block->used_length;
1702     const ram_addr_t unaligned_size = newsize;
1703 
1704     assert(block);
1705 
1706     newsize = TARGET_PAGE_ALIGN(newsize);
1707     newsize = REAL_HOST_PAGE_ALIGN(newsize);
1708 
1709     if (block->used_length == newsize) {
1710         /*
1711          * We don't have to resize the ram block (which only knows aligned
1712          * sizes), however, we have to notify if the unaligned size changed.
1713          */
1714         if (unaligned_size != memory_region_size(block->mr)) {
1715             memory_region_set_size(block->mr, unaligned_size);
1716             if (block->resized) {
1717                 block->resized(block->idstr, unaligned_size, block->host);
1718             }
1719         }
1720         return 0;
1721     }
1722 
1723     if (!(block->flags & RAM_RESIZEABLE)) {
1724         error_setg_errno(errp, EINVAL,
1725                          "Size mismatch: %s: 0x" RAM_ADDR_FMT
1726                          " != 0x" RAM_ADDR_FMT, block->idstr,
1727                          newsize, block->used_length);
1728         return -EINVAL;
1729     }
1730 
1731     if (block->max_length < newsize) {
1732         error_setg_errno(errp, EINVAL,
1733                          "Size too large: %s: 0x" RAM_ADDR_FMT
1734                          " > 0x" RAM_ADDR_FMT, block->idstr,
1735                          newsize, block->max_length);
1736         return -EINVAL;
1737     }
1738 
1739     /* Notify before modifying the ram block and touching the bitmaps. */
1740     if (block->host) {
1741         ram_block_notify_resize(block->host, oldsize, newsize);
1742     }
1743 
1744     cpu_physical_memory_clear_dirty_range(block->offset, block->used_length);
1745     block->used_length = newsize;
1746     cpu_physical_memory_set_dirty_range(block->offset, block->used_length,
1747                                         DIRTY_CLIENTS_ALL);
1748     memory_region_set_size(block->mr, unaligned_size);
1749     if (block->resized) {
1750         block->resized(block->idstr, unaligned_size, block->host);
1751     }
1752     return 0;
1753 }
1754 
1755 /*
1756  * Trigger sync on the given ram block for range [start, start + length]
1757  * with the backing store if one is available.
1758  * Otherwise no-op.
1759  * @Note: this is supposed to be a synchronous op.
1760  */
1761 void qemu_ram_msync(RAMBlock *block, ram_addr_t start, ram_addr_t length)
1762 {
1763     /* The requested range should fit in within the block range */
1764     g_assert((start + length) <= block->used_length);
1765 
1766 #ifdef CONFIG_LIBPMEM
1767     /* The lack of support for pmem should not block the sync */
1768     if (ramblock_is_pmem(block)) {
1769         void *addr = ramblock_ptr(block, start);
1770         pmem_persist(addr, length);
1771         return;
1772     }
1773 #endif
1774     if (block->fd >= 0) {
1775         /**
1776          * Case there is no support for PMEM or the memory has not been
1777          * specified as persistent (or is not one) - use the msync.
1778          * Less optimal but still achieves the same goal
1779          */
1780         void *addr = ramblock_ptr(block, start);
1781         if (qemu_msync(addr, length, block->fd)) {
1782             warn_report("%s: failed to sync memory range: start: "
1783                     RAM_ADDR_FMT " length: " RAM_ADDR_FMT,
1784                     __func__, start, length);
1785         }
1786     }
1787 }
1788 
1789 /* Called with ram_list.mutex held */
1790 static void dirty_memory_extend(ram_addr_t new_ram_size)
1791 {
1792     unsigned int old_num_blocks = ram_list.num_dirty_blocks;
1793     unsigned int new_num_blocks = DIV_ROUND_UP(new_ram_size,
1794                                                DIRTY_MEMORY_BLOCK_SIZE);
1795     int i;
1796 
1797     /* Only need to extend if block count increased */
1798     if (new_num_blocks <= old_num_blocks) {
1799         return;
1800     }
1801 
1802     for (i = 0; i < DIRTY_MEMORY_NUM; i++) {
1803         DirtyMemoryBlocks *old_blocks;
1804         DirtyMemoryBlocks *new_blocks;
1805         int j;
1806 
1807         old_blocks = qatomic_rcu_read(&ram_list.dirty_memory[i]);
1808         new_blocks = g_malloc(sizeof(*new_blocks) +
1809                               sizeof(new_blocks->blocks[0]) * new_num_blocks);
1810 
1811         if (old_num_blocks) {
1812             memcpy(new_blocks->blocks, old_blocks->blocks,
1813                    old_num_blocks * sizeof(old_blocks->blocks[0]));
1814         }
1815 
1816         for (j = old_num_blocks; j < new_num_blocks; j++) {
1817             new_blocks->blocks[j] = bitmap_new(DIRTY_MEMORY_BLOCK_SIZE);
1818         }
1819 
1820         qatomic_rcu_set(&ram_list.dirty_memory[i], new_blocks);
1821 
1822         if (old_blocks) {
1823             g_free_rcu(old_blocks, rcu);
1824         }
1825     }
1826 
1827     ram_list.num_dirty_blocks = new_num_blocks;
1828 }
1829 
1830 static void ram_block_add(RAMBlock *new_block, Error **errp)
1831 {
1832     const bool noreserve = qemu_ram_is_noreserve(new_block);
1833     const bool shared = qemu_ram_is_shared(new_block);
1834     RAMBlock *block;
1835     RAMBlock *last_block = NULL;
1836     bool free_on_error = false;
1837     ram_addr_t ram_size;
1838     Error *err = NULL;
1839 
1840     qemu_mutex_lock_ramlist();
1841     new_block->offset = find_ram_offset(new_block->max_length);
1842 
1843     if (!new_block->host) {
1844         if (xen_enabled()) {
1845             xen_ram_alloc(new_block->offset, new_block->max_length,
1846                           new_block->mr, &err);
1847             if (err) {
1848                 error_propagate(errp, err);
1849                 qemu_mutex_unlock_ramlist();
1850                 return;
1851             }
1852         } else {
1853             new_block->host = qemu_anon_ram_alloc(new_block->max_length,
1854                                                   &new_block->mr->align,
1855                                                   shared, noreserve);
1856             if (!new_block->host) {
1857                 error_setg_errno(errp, errno,
1858                                  "cannot set up guest memory '%s'",
1859                                  memory_region_name(new_block->mr));
1860                 qemu_mutex_unlock_ramlist();
1861                 return;
1862             }
1863             memory_try_enable_merging(new_block->host, new_block->max_length);
1864             free_on_error = true;
1865         }
1866     }
1867 
1868     if (new_block->flags & RAM_GUEST_MEMFD) {
1869         int ret;
1870 
1871         assert(kvm_enabled());
1872         assert(new_block->guest_memfd < 0);
1873 
1874         ret = ram_block_discard_require(true);
1875         if (ret < 0) {
1876             error_setg_errno(errp, -ret,
1877                              "cannot set up private guest memory: discard currently blocked");
1878             error_append_hint(errp, "Are you using assigned devices?\n");
1879             goto out_free;
1880         }
1881 
1882         new_block->guest_memfd = kvm_create_guest_memfd(new_block->max_length,
1883                                                         0, errp);
1884         if (new_block->guest_memfd < 0) {
1885             qemu_mutex_unlock_ramlist();
1886             goto out_free;
1887         }
1888     }
1889 
1890     ram_size = (new_block->offset + new_block->max_length) >> TARGET_PAGE_BITS;
1891     dirty_memory_extend(ram_size);
1892     /* Keep the list sorted from biggest to smallest block.  Unlike QTAILQ,
1893      * QLIST (which has an RCU-friendly variant) does not have insertion at
1894      * tail, so save the last element in last_block.
1895      */
1896     RAMBLOCK_FOREACH(block) {
1897         last_block = block;
1898         if (block->max_length < new_block->max_length) {
1899             break;
1900         }
1901     }
1902     if (block) {
1903         QLIST_INSERT_BEFORE_RCU(block, new_block, next);
1904     } else if (last_block) {
1905         QLIST_INSERT_AFTER_RCU(last_block, new_block, next);
1906     } else { /* list is empty */
1907         QLIST_INSERT_HEAD_RCU(&ram_list.blocks, new_block, next);
1908     }
1909     ram_list.mru_block = NULL;
1910 
1911     /* Write list before version */
1912     smp_wmb();
1913     ram_list.version++;
1914     qemu_mutex_unlock_ramlist();
1915 
1916     cpu_physical_memory_set_dirty_range(new_block->offset,
1917                                         new_block->used_length,
1918                                         DIRTY_CLIENTS_ALL);
1919 
1920     if (new_block->host) {
1921         qemu_ram_setup_dump(new_block->host, new_block->max_length);
1922         qemu_madvise(new_block->host, new_block->max_length, QEMU_MADV_HUGEPAGE);
1923         /*
1924          * MADV_DONTFORK is also needed by KVM in absence of synchronous MMU
1925          * Configure it unless the machine is a qtest server, in which case
1926          * KVM is not used and it may be forked (eg for fuzzing purposes).
1927          */
1928         if (!qtest_enabled()) {
1929             qemu_madvise(new_block->host, new_block->max_length,
1930                          QEMU_MADV_DONTFORK);
1931         }
1932         ram_block_notify_add(new_block->host, new_block->used_length,
1933                              new_block->max_length);
1934     }
1935     return;
1936 
1937 out_free:
1938     if (free_on_error) {
1939         qemu_anon_ram_free(new_block->host, new_block->max_length);
1940         new_block->host = NULL;
1941     }
1942 }
1943 
1944 #ifdef CONFIG_POSIX
1945 RAMBlock *qemu_ram_alloc_from_fd(ram_addr_t size, ram_addr_t max_size,
1946                                  qemu_ram_resize_cb resized, MemoryRegion *mr,
1947                                  uint32_t ram_flags, int fd, off_t offset,
1948                                  bool grow,
1949                                  Error **errp)
1950 {
1951     RAMBlock *new_block;
1952     Error *local_err = NULL;
1953     int64_t file_size, file_align;
1954 
1955     /* Just support these ram flags by now. */
1956     assert((ram_flags & ~(RAM_SHARED | RAM_PMEM | RAM_NORESERVE |
1957                           RAM_PROTECTED | RAM_NAMED_FILE | RAM_READONLY |
1958                           RAM_READONLY_FD | RAM_GUEST_MEMFD |
1959                           RAM_RESIZEABLE)) == 0);
1960     assert(max_size >= size);
1961 
1962     if (xen_enabled()) {
1963         error_setg(errp, "-mem-path not supported with Xen");
1964         return NULL;
1965     }
1966 
1967     if (kvm_enabled() && !kvm_has_sync_mmu()) {
1968         error_setg(errp,
1969                    "host lacks kvm mmu notifiers, -mem-path unsupported");
1970         return NULL;
1971     }
1972 
1973     size = TARGET_PAGE_ALIGN(size);
1974     size = REAL_HOST_PAGE_ALIGN(size);
1975     max_size = TARGET_PAGE_ALIGN(max_size);
1976     max_size = REAL_HOST_PAGE_ALIGN(max_size);
1977 
1978     file_size = get_file_size(fd);
1979     if (file_size && file_size < offset + max_size && !grow) {
1980         error_setg(errp, "%s backing store size 0x%" PRIx64
1981                    " is too small for 'size' option 0x" RAM_ADDR_FMT
1982                    " plus 'offset' option 0x%" PRIx64,
1983                    memory_region_name(mr), file_size, max_size,
1984                    (uint64_t)offset);
1985         return NULL;
1986     }
1987 
1988     file_align = get_file_align(fd);
1989     if (file_align > 0 && file_align > mr->align) {
1990         error_setg(errp, "backing store align 0x%" PRIx64
1991                    " is larger than 'align' option 0x%" PRIx64,
1992                    file_align, mr->align);
1993         return NULL;
1994     }
1995 
1996     new_block = g_malloc0(sizeof(*new_block));
1997     new_block->mr = mr;
1998     new_block->used_length = size;
1999     new_block->max_length = max_size;
2000     new_block->resized = resized;
2001     new_block->flags = ram_flags;
2002     new_block->guest_memfd = -1;
2003     new_block->host = file_ram_alloc(new_block, max_size, fd,
2004                                      file_size < offset + max_size,
2005                                      offset, errp);
2006     if (!new_block->host) {
2007         g_free(new_block);
2008         return NULL;
2009     }
2010 
2011     ram_block_add(new_block, &local_err);
2012     if (local_err) {
2013         g_free(new_block);
2014         error_propagate(errp, local_err);
2015         return NULL;
2016     }
2017     return new_block;
2018 
2019 }
2020 
2021 
2022 RAMBlock *qemu_ram_alloc_from_file(ram_addr_t size, MemoryRegion *mr,
2023                                    uint32_t ram_flags, const char *mem_path,
2024                                    off_t offset, Error **errp)
2025 {
2026     int fd;
2027     bool created;
2028     RAMBlock *block;
2029 
2030     fd = file_ram_open(mem_path, memory_region_name(mr),
2031                        !!(ram_flags & RAM_READONLY_FD), &created);
2032     if (fd < 0) {
2033         error_setg_errno(errp, -fd, "can't open backing store %s for guest RAM",
2034                          mem_path);
2035         if (!(ram_flags & RAM_READONLY_FD) && !(ram_flags & RAM_SHARED) &&
2036             fd == -EACCES) {
2037             /*
2038              * If we can open the file R/O (note: will never create a new file)
2039              * and we are dealing with a private mapping, there are still ways
2040              * to consume such files and get RAM instead of ROM.
2041              */
2042             fd = file_ram_open(mem_path, memory_region_name(mr), true,
2043                                &created);
2044             if (fd < 0) {
2045                 return NULL;
2046             }
2047             assert(!created);
2048             close(fd);
2049             error_append_hint(errp, "Consider opening the backing store"
2050                 " read-only but still creating writable RAM using"
2051                 " '-object memory-backend-file,readonly=on,rom=off...'"
2052                 " (see \"VM templating\" documentation)\n");
2053         }
2054         return NULL;
2055     }
2056 
2057     block = qemu_ram_alloc_from_fd(size, size, NULL, mr, ram_flags, fd, offset,
2058                                    false, errp);
2059     if (!block) {
2060         if (created) {
2061             unlink(mem_path);
2062         }
2063         close(fd);
2064         return NULL;
2065     }
2066 
2067     return block;
2068 }
2069 #endif
2070 
2071 static
2072 RAMBlock *qemu_ram_alloc_internal(ram_addr_t size, ram_addr_t max_size,
2073                                   qemu_ram_resize_cb resized,
2074                                   void *host, uint32_t ram_flags,
2075                                   MemoryRegion *mr, Error **errp)
2076 {
2077     RAMBlock *new_block;
2078     Error *local_err = NULL;
2079     int align;
2080 
2081     assert((ram_flags & ~(RAM_SHARED | RAM_RESIZEABLE | RAM_PREALLOC |
2082                           RAM_NORESERVE | RAM_GUEST_MEMFD)) == 0);
2083     assert(!host ^ (ram_flags & RAM_PREALLOC));
2084 
2085     align = qemu_real_host_page_size();
2086     align = MAX(align, TARGET_PAGE_SIZE);
2087     size = ROUND_UP(size, align);
2088     max_size = ROUND_UP(max_size, align);
2089 
2090     new_block = g_malloc0(sizeof(*new_block));
2091     new_block->mr = mr;
2092     new_block->resized = resized;
2093     new_block->used_length = size;
2094     new_block->max_length = max_size;
2095     assert(max_size >= size);
2096     new_block->fd = -1;
2097     new_block->guest_memfd = -1;
2098     new_block->page_size = qemu_real_host_page_size();
2099     new_block->host = host;
2100     new_block->flags = ram_flags;
2101     ram_block_add(new_block, &local_err);
2102     if (local_err) {
2103         g_free(new_block);
2104         error_propagate(errp, local_err);
2105         return NULL;
2106     }
2107     return new_block;
2108 }
2109 
2110 RAMBlock *qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
2111                                    MemoryRegion *mr, Error **errp)
2112 {
2113     return qemu_ram_alloc_internal(size, size, NULL, host, RAM_PREALLOC, mr,
2114                                    errp);
2115 }
2116 
2117 RAMBlock *qemu_ram_alloc(ram_addr_t size, uint32_t ram_flags,
2118                          MemoryRegion *mr, Error **errp)
2119 {
2120     assert((ram_flags & ~(RAM_SHARED | RAM_NORESERVE | RAM_GUEST_MEMFD)) == 0);
2121     return qemu_ram_alloc_internal(size, size, NULL, NULL, ram_flags, mr, errp);
2122 }
2123 
2124 RAMBlock *qemu_ram_alloc_resizeable(ram_addr_t size, ram_addr_t maxsz,
2125                                     qemu_ram_resize_cb resized,
2126                                     MemoryRegion *mr, Error **errp)
2127 {
2128     return qemu_ram_alloc_internal(size, maxsz, resized, NULL,
2129                                    RAM_RESIZEABLE, mr, errp);
2130 }
2131 
2132 static void reclaim_ramblock(RAMBlock *block)
2133 {
2134     if (block->flags & RAM_PREALLOC) {
2135         ;
2136     } else if (xen_enabled()) {
2137         xen_invalidate_map_cache_entry(block->host);
2138 #ifndef _WIN32
2139     } else if (block->fd >= 0) {
2140         qemu_ram_munmap(block->fd, block->host, block->max_length);
2141         close(block->fd);
2142 #endif
2143     } else {
2144         qemu_anon_ram_free(block->host, block->max_length);
2145     }
2146 
2147     if (block->guest_memfd >= 0) {
2148         close(block->guest_memfd);
2149         ram_block_discard_require(false);
2150     }
2151 
2152     g_free(block);
2153 }
2154 
2155 void qemu_ram_free(RAMBlock *block)
2156 {
2157     if (!block) {
2158         return;
2159     }
2160 
2161     if (block->host) {
2162         ram_block_notify_remove(block->host, block->used_length,
2163                                 block->max_length);
2164     }
2165 
2166     qemu_mutex_lock_ramlist();
2167     QLIST_REMOVE_RCU(block, next);
2168     ram_list.mru_block = NULL;
2169     /* Write list before version */
2170     smp_wmb();
2171     ram_list.version++;
2172     call_rcu(block, reclaim_ramblock, rcu);
2173     qemu_mutex_unlock_ramlist();
2174 }
2175 
2176 #ifndef _WIN32
2177 void qemu_ram_remap(ram_addr_t addr, ram_addr_t length)
2178 {
2179     RAMBlock *block;
2180     ram_addr_t offset;
2181     int flags;
2182     void *area, *vaddr;
2183     int prot;
2184 
2185     RAMBLOCK_FOREACH(block) {
2186         offset = addr - block->offset;
2187         if (offset < block->max_length) {
2188             vaddr = ramblock_ptr(block, offset);
2189             if (block->flags & RAM_PREALLOC) {
2190                 ;
2191             } else if (xen_enabled()) {
2192                 abort();
2193             } else {
2194                 flags = MAP_FIXED;
2195                 flags |= block->flags & RAM_SHARED ?
2196                          MAP_SHARED : MAP_PRIVATE;
2197                 flags |= block->flags & RAM_NORESERVE ? MAP_NORESERVE : 0;
2198                 prot = PROT_READ;
2199                 prot |= block->flags & RAM_READONLY ? 0 : PROT_WRITE;
2200                 if (block->fd >= 0) {
2201                     area = mmap(vaddr, length, prot, flags, block->fd,
2202                                 offset + block->fd_offset);
2203                 } else {
2204                     flags |= MAP_ANONYMOUS;
2205                     area = mmap(vaddr, length, prot, flags, -1, 0);
2206                 }
2207                 if (area != vaddr) {
2208                     error_report("Could not remap addr: "
2209                                  RAM_ADDR_FMT "@" RAM_ADDR_FMT "",
2210                                  length, addr);
2211                     exit(1);
2212                 }
2213                 memory_try_enable_merging(vaddr, length);
2214                 qemu_ram_setup_dump(vaddr, length);
2215             }
2216         }
2217     }
2218 }
2219 #endif /* !_WIN32 */
2220 
2221 /*
2222  * Return a host pointer to guest's ram.
2223  * For Xen, foreign mappings get created if they don't already exist.
2224  *
2225  * @block: block for the RAM to lookup (optional and may be NULL).
2226  * @addr: address within the memory region.
2227  * @size: pointer to requested size (optional and may be NULL).
2228  *        size may get modified and return a value smaller than
2229  *        what was requested.
2230  * @lock: wether to lock the mapping in xen-mapcache until invalidated.
2231  * @is_write: hint wether to map RW or RO in the xen-mapcache.
2232  *            (optional and may always be set to true).
2233  *
2234  * Called within RCU critical section.
2235  */
2236 static void *qemu_ram_ptr_length(RAMBlock *block, ram_addr_t addr,
2237                                  hwaddr *size, bool lock,
2238                                  bool is_write)
2239 {
2240     hwaddr len = 0;
2241 
2242     if (size && *size == 0) {
2243         return NULL;
2244     }
2245 
2246     if (block == NULL) {
2247         block = qemu_get_ram_block(addr);
2248         addr -= block->offset;
2249     }
2250     if (size) {
2251         *size = MIN(*size, block->max_length - addr);
2252         len = *size;
2253     }
2254 
2255     if (xen_enabled() && block->host == NULL) {
2256         /* We need to check if the requested address is in the RAM
2257          * because we don't want to map the entire memory in QEMU.
2258          * In that case just map the requested area.
2259          */
2260         if (xen_mr_is_memory(block->mr)) {
2261             return xen_map_cache(block->mr, block->offset + addr,
2262                                  len, block->offset,
2263                                  lock, lock, is_write);
2264         }
2265 
2266         block->host = xen_map_cache(block->mr, block->offset,
2267                                     block->max_length,
2268                                     block->offset,
2269                                     1, lock, is_write);
2270     }
2271 
2272     return ramblock_ptr(block, addr);
2273 }
2274 
2275 /*
2276  * Return a host pointer to ram allocated with qemu_ram_alloc.
2277  * This should not be used for general purpose DMA.  Use address_space_map
2278  * or address_space_rw instead. For local memory (e.g. video ram) that the
2279  * device owns, use memory_region_get_ram_ptr.
2280  *
2281  * Called within RCU critical section.
2282  */
2283 void *qemu_map_ram_ptr(RAMBlock *ram_block, ram_addr_t addr)
2284 {
2285     return qemu_ram_ptr_length(ram_block, addr, NULL, false, true);
2286 }
2287 
2288 /* Return the offset of a hostpointer within a ramblock */
2289 ram_addr_t qemu_ram_block_host_offset(RAMBlock *rb, void *host)
2290 {
2291     ram_addr_t res = (uint8_t *)host - (uint8_t *)rb->host;
2292     assert((uintptr_t)host >= (uintptr_t)rb->host);
2293     assert(res < rb->max_length);
2294 
2295     return res;
2296 }
2297 
2298 RAMBlock *qemu_ram_block_from_host(void *ptr, bool round_offset,
2299                                    ram_addr_t *offset)
2300 {
2301     RAMBlock *block;
2302     uint8_t *host = ptr;
2303 
2304     if (xen_enabled()) {
2305         ram_addr_t ram_addr;
2306         RCU_READ_LOCK_GUARD();
2307         ram_addr = xen_ram_addr_from_mapcache(ptr);
2308         if (ram_addr == RAM_ADDR_INVALID) {
2309             return NULL;
2310         }
2311 
2312         block = qemu_get_ram_block(ram_addr);
2313         if (block) {
2314             *offset = ram_addr - block->offset;
2315         }
2316         return block;
2317     }
2318 
2319     RCU_READ_LOCK_GUARD();
2320     block = qatomic_rcu_read(&ram_list.mru_block);
2321     if (block && block->host && host - block->host < block->max_length) {
2322         goto found;
2323     }
2324 
2325     RAMBLOCK_FOREACH(block) {
2326         /* This case append when the block is not mapped. */
2327         if (block->host == NULL) {
2328             continue;
2329         }
2330         if (host - block->host < block->max_length) {
2331             goto found;
2332         }
2333     }
2334 
2335     return NULL;
2336 
2337 found:
2338     *offset = (host - block->host);
2339     if (round_offset) {
2340         *offset &= TARGET_PAGE_MASK;
2341     }
2342     return block;
2343 }
2344 
2345 /*
2346  * Finds the named RAMBlock
2347  *
2348  * name: The name of RAMBlock to find
2349  *
2350  * Returns: RAMBlock (or NULL if not found)
2351  */
2352 RAMBlock *qemu_ram_block_by_name(const char *name)
2353 {
2354     RAMBlock *block;
2355 
2356     RAMBLOCK_FOREACH(block) {
2357         if (!strcmp(name, block->idstr)) {
2358             return block;
2359         }
2360     }
2361 
2362     return NULL;
2363 }
2364 
2365 /*
2366  * Some of the system routines need to translate from a host pointer
2367  * (typically a TLB entry) back to a ram offset.
2368  */
2369 ram_addr_t qemu_ram_addr_from_host(void *ptr)
2370 {
2371     RAMBlock *block;
2372     ram_addr_t offset;
2373 
2374     block = qemu_ram_block_from_host(ptr, false, &offset);
2375     if (!block) {
2376         return RAM_ADDR_INVALID;
2377     }
2378 
2379     return block->offset + offset;
2380 }
2381 
2382 ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr)
2383 {
2384     ram_addr_t ram_addr;
2385 
2386     ram_addr = qemu_ram_addr_from_host(ptr);
2387     if (ram_addr == RAM_ADDR_INVALID) {
2388         error_report("Bad ram pointer %p", ptr);
2389         abort();
2390     }
2391     return ram_addr;
2392 }
2393 
2394 static MemTxResult flatview_read(FlatView *fv, hwaddr addr,
2395                                  MemTxAttrs attrs, void *buf, hwaddr len);
2396 static MemTxResult flatview_write(FlatView *fv, hwaddr addr, MemTxAttrs attrs,
2397                                   const void *buf, hwaddr len);
2398 static bool flatview_access_valid(FlatView *fv, hwaddr addr, hwaddr len,
2399                                   bool is_write, MemTxAttrs attrs);
2400 
2401 static MemTxResult subpage_read(void *opaque, hwaddr addr, uint64_t *data,
2402                                 unsigned len, MemTxAttrs attrs)
2403 {
2404     subpage_t *subpage = opaque;
2405     uint8_t buf[8];
2406     MemTxResult res;
2407 
2408 #if defined(DEBUG_SUBPAGE)
2409     printf("%s: subpage %p len %u addr " HWADDR_FMT_plx "\n", __func__,
2410            subpage, len, addr);
2411 #endif
2412     res = flatview_read(subpage->fv, addr + subpage->base, attrs, buf, len);
2413     if (res) {
2414         return res;
2415     }
2416     *data = ldn_p(buf, len);
2417     return MEMTX_OK;
2418 }
2419 
2420 static MemTxResult subpage_write(void *opaque, hwaddr addr,
2421                                  uint64_t value, unsigned len, MemTxAttrs attrs)
2422 {
2423     subpage_t *subpage = opaque;
2424     uint8_t buf[8];
2425 
2426 #if defined(DEBUG_SUBPAGE)
2427     printf("%s: subpage %p len %u addr " HWADDR_FMT_plx
2428            " value %"PRIx64"\n",
2429            __func__, subpage, len, addr, value);
2430 #endif
2431     stn_p(buf, len, value);
2432     return flatview_write(subpage->fv, addr + subpage->base, attrs, buf, len);
2433 }
2434 
2435 static bool subpage_accepts(void *opaque, hwaddr addr,
2436                             unsigned len, bool is_write,
2437                             MemTxAttrs attrs)
2438 {
2439     subpage_t *subpage = opaque;
2440 #if defined(DEBUG_SUBPAGE)
2441     printf("%s: subpage %p %c len %u addr " HWADDR_FMT_plx "\n",
2442            __func__, subpage, is_write ? 'w' : 'r', len, addr);
2443 #endif
2444 
2445     return flatview_access_valid(subpage->fv, addr + subpage->base,
2446                                  len, is_write, attrs);
2447 }
2448 
2449 static const MemoryRegionOps subpage_ops = {
2450     .read_with_attrs = subpage_read,
2451     .write_with_attrs = subpage_write,
2452     .impl.min_access_size = 1,
2453     .impl.max_access_size = 8,
2454     .valid.min_access_size = 1,
2455     .valid.max_access_size = 8,
2456     .valid.accepts = subpage_accepts,
2457     .endianness = DEVICE_NATIVE_ENDIAN,
2458 };
2459 
2460 static int subpage_register(subpage_t *mmio, uint32_t start, uint32_t end,
2461                             uint16_t section)
2462 {
2463     int idx, eidx;
2464 
2465     if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE)
2466         return -1;
2467     idx = SUBPAGE_IDX(start);
2468     eidx = SUBPAGE_IDX(end);
2469 #if defined(DEBUG_SUBPAGE)
2470     printf("%s: %p start %08x end %08x idx %08x eidx %08x section %d\n",
2471            __func__, mmio, start, end, idx, eidx, section);
2472 #endif
2473     for (; idx <= eidx; idx++) {
2474         mmio->sub_section[idx] = section;
2475     }
2476 
2477     return 0;
2478 }
2479 
2480 static subpage_t *subpage_init(FlatView *fv, hwaddr base)
2481 {
2482     subpage_t *mmio;
2483 
2484     /* mmio->sub_section is set to PHYS_SECTION_UNASSIGNED with g_malloc0 */
2485     mmio = g_malloc0(sizeof(subpage_t) + TARGET_PAGE_SIZE * sizeof(uint16_t));
2486     mmio->fv = fv;
2487     mmio->base = base;
2488     memory_region_init_io(&mmio->iomem, NULL, &subpage_ops, mmio,
2489                           NULL, TARGET_PAGE_SIZE);
2490     mmio->iomem.subpage = true;
2491 #if defined(DEBUG_SUBPAGE)
2492     printf("%s: %p base " HWADDR_FMT_plx " len %08x\n", __func__,
2493            mmio, base, TARGET_PAGE_SIZE);
2494 #endif
2495 
2496     return mmio;
2497 }
2498 
2499 static uint16_t dummy_section(PhysPageMap *map, FlatView *fv, MemoryRegion *mr)
2500 {
2501     assert(fv);
2502     MemoryRegionSection section = {
2503         .fv = fv,
2504         .mr = mr,
2505         .offset_within_address_space = 0,
2506         .offset_within_region = 0,
2507         .size = int128_2_64(),
2508     };
2509 
2510     return phys_section_add(map, &section);
2511 }
2512 
2513 MemoryRegionSection *iotlb_to_section(CPUState *cpu,
2514                                       hwaddr index, MemTxAttrs attrs)
2515 {
2516     int asidx = cpu_asidx_from_attrs(cpu, attrs);
2517     CPUAddressSpace *cpuas = &cpu->cpu_ases[asidx];
2518     AddressSpaceDispatch *d = cpuas->memory_dispatch;
2519     int section_index = index & ~TARGET_PAGE_MASK;
2520     MemoryRegionSection *ret;
2521 
2522     assert(section_index < d->map.sections_nb);
2523     ret = d->map.sections + section_index;
2524     assert(ret->mr);
2525     assert(ret->mr->ops);
2526 
2527     return ret;
2528 }
2529 
2530 static void io_mem_init(void)
2531 {
2532     memory_region_init_io(&io_mem_unassigned, NULL, &unassigned_mem_ops, NULL,
2533                           NULL, UINT64_MAX);
2534 }
2535 
2536 AddressSpaceDispatch *address_space_dispatch_new(FlatView *fv)
2537 {
2538     AddressSpaceDispatch *d = g_new0(AddressSpaceDispatch, 1);
2539     uint16_t n;
2540 
2541     n = dummy_section(&d->map, fv, &io_mem_unassigned);
2542     assert(n == PHYS_SECTION_UNASSIGNED);
2543 
2544     d->phys_map  = (PhysPageEntry) { .ptr = PHYS_MAP_NODE_NIL, .skip = 1 };
2545 
2546     return d;
2547 }
2548 
2549 void address_space_dispatch_free(AddressSpaceDispatch *d)
2550 {
2551     phys_sections_free(&d->map);
2552     g_free(d);
2553 }
2554 
2555 static void do_nothing(CPUState *cpu, run_on_cpu_data d)
2556 {
2557 }
2558 
2559 static void tcg_log_global_after_sync(MemoryListener *listener)
2560 {
2561     CPUAddressSpace *cpuas;
2562 
2563     /* Wait for the CPU to end the current TB.  This avoids the following
2564      * incorrect race:
2565      *
2566      *      vCPU                         migration
2567      *      ----------------------       -------------------------
2568      *      TLB check -> slow path
2569      *        notdirty_mem_write
2570      *          write to RAM
2571      *          mark dirty
2572      *                                   clear dirty flag
2573      *      TLB check -> fast path
2574      *                                   read memory
2575      *        write to RAM
2576      *
2577      * by pushing the migration thread's memory read after the vCPU thread has
2578      * written the memory.
2579      */
2580     if (replay_mode == REPLAY_MODE_NONE) {
2581         /*
2582          * VGA can make calls to this function while updating the screen.
2583          * In record/replay mode this causes a deadlock, because
2584          * run_on_cpu waits for rr mutex. Therefore no races are possible
2585          * in this case and no need for making run_on_cpu when
2586          * record/replay is enabled.
2587          */
2588         cpuas = container_of(listener, CPUAddressSpace, tcg_as_listener);
2589         run_on_cpu(cpuas->cpu, do_nothing, RUN_ON_CPU_NULL);
2590     }
2591 }
2592 
2593 static void tcg_commit_cpu(CPUState *cpu, run_on_cpu_data data)
2594 {
2595     CPUAddressSpace *cpuas = data.host_ptr;
2596 
2597     cpuas->memory_dispatch = address_space_to_dispatch(cpuas->as);
2598     tlb_flush(cpu);
2599 }
2600 
2601 static void tcg_commit(MemoryListener *listener)
2602 {
2603     CPUAddressSpace *cpuas;
2604     CPUState *cpu;
2605 
2606     assert(tcg_enabled());
2607     /* since each CPU stores ram addresses in its TLB cache, we must
2608        reset the modified entries */
2609     cpuas = container_of(listener, CPUAddressSpace, tcg_as_listener);
2610     cpu = cpuas->cpu;
2611 
2612     /*
2613      * Defer changes to as->memory_dispatch until the cpu is quiescent.
2614      * Otherwise we race between (1) other cpu threads and (2) ongoing
2615      * i/o for the current cpu thread, with data cached by mmu_lookup().
2616      *
2617      * In addition, queueing the work function will kick the cpu back to
2618      * the main loop, which will end the RCU critical section and reclaim
2619      * the memory data structures.
2620      *
2621      * That said, the listener is also called during realize, before
2622      * all of the tcg machinery for run-on is initialized: thus halt_cond.
2623      */
2624     if (cpu->halt_cond) {
2625         async_run_on_cpu(cpu, tcg_commit_cpu, RUN_ON_CPU_HOST_PTR(cpuas));
2626     } else {
2627         tcg_commit_cpu(cpu, RUN_ON_CPU_HOST_PTR(cpuas));
2628     }
2629 }
2630 
2631 static void memory_map_init(void)
2632 {
2633     system_memory = g_malloc(sizeof(*system_memory));
2634 
2635     memory_region_init(system_memory, NULL, "system", UINT64_MAX);
2636     address_space_init(&address_space_memory, system_memory, "memory");
2637 
2638     system_io = g_malloc(sizeof(*system_io));
2639     memory_region_init_io(system_io, NULL, &unassigned_io_ops, NULL, "io",
2640                           65536);
2641     address_space_init(&address_space_io, system_io, "I/O");
2642 }
2643 
2644 MemoryRegion *get_system_memory(void)
2645 {
2646     return system_memory;
2647 }
2648 
2649 MemoryRegion *get_system_io(void)
2650 {
2651     return system_io;
2652 }
2653 
2654 static void invalidate_and_set_dirty(MemoryRegion *mr, hwaddr addr,
2655                                      hwaddr length)
2656 {
2657     uint8_t dirty_log_mask = memory_region_get_dirty_log_mask(mr);
2658     ram_addr_t ramaddr = memory_region_get_ram_addr(mr);
2659 
2660     /* We know we're only called for RAM MemoryRegions */
2661     assert(ramaddr != RAM_ADDR_INVALID);
2662     addr += ramaddr;
2663 
2664     /* No early return if dirty_log_mask is or becomes 0, because
2665      * cpu_physical_memory_set_dirty_range will still call
2666      * xen_modified_memory.
2667      */
2668     if (dirty_log_mask) {
2669         dirty_log_mask =
2670             cpu_physical_memory_range_includes_clean(addr, length, dirty_log_mask);
2671     }
2672     if (dirty_log_mask & (1 << DIRTY_MEMORY_CODE)) {
2673         assert(tcg_enabled());
2674         tb_invalidate_phys_range(addr, addr + length - 1);
2675         dirty_log_mask &= ~(1 << DIRTY_MEMORY_CODE);
2676     }
2677     cpu_physical_memory_set_dirty_range(addr, length, dirty_log_mask);
2678 }
2679 
2680 void memory_region_flush_rom_device(MemoryRegion *mr, hwaddr addr, hwaddr size)
2681 {
2682     /*
2683      * In principle this function would work on other memory region types too,
2684      * but the ROM device use case is the only one where this operation is
2685      * necessary.  Other memory regions should use the
2686      * address_space_read/write() APIs.
2687      */
2688     assert(memory_region_is_romd(mr));
2689 
2690     invalidate_and_set_dirty(mr, addr, size);
2691 }
2692 
2693 int memory_access_size(MemoryRegion *mr, unsigned l, hwaddr addr)
2694 {
2695     unsigned access_size_max = mr->ops->valid.max_access_size;
2696 
2697     /* Regions are assumed to support 1-4 byte accesses unless
2698        otherwise specified.  */
2699     if (access_size_max == 0) {
2700         access_size_max = 4;
2701     }
2702 
2703     /* Bound the maximum access by the alignment of the address.  */
2704     if (!mr->ops->impl.unaligned) {
2705         unsigned align_size_max = addr & -addr;
2706         if (align_size_max != 0 && align_size_max < access_size_max) {
2707             access_size_max = align_size_max;
2708         }
2709     }
2710 
2711     /* Don't attempt accesses larger than the maximum.  */
2712     if (l > access_size_max) {
2713         l = access_size_max;
2714     }
2715     l = pow2floor(l);
2716 
2717     return l;
2718 }
2719 
2720 bool prepare_mmio_access(MemoryRegion *mr)
2721 {
2722     bool release_lock = false;
2723 
2724     if (!bql_locked()) {
2725         bql_lock();
2726         release_lock = true;
2727     }
2728     if (mr->flush_coalesced_mmio) {
2729         qemu_flush_coalesced_mmio_buffer();
2730     }
2731 
2732     return release_lock;
2733 }
2734 
2735 /**
2736  * flatview_access_allowed
2737  * @mr: #MemoryRegion to be accessed
2738  * @attrs: memory transaction attributes
2739  * @addr: address within that memory region
2740  * @len: the number of bytes to access
2741  *
2742  * Check if a memory transaction is allowed.
2743  *
2744  * Returns: true if transaction is allowed, false if denied.
2745  */
2746 static bool flatview_access_allowed(MemoryRegion *mr, MemTxAttrs attrs,
2747                                     hwaddr addr, hwaddr len)
2748 {
2749     if (likely(!attrs.memory)) {
2750         return true;
2751     }
2752     if (memory_region_is_ram(mr)) {
2753         return true;
2754     }
2755     qemu_log_mask(LOG_INVALID_MEM,
2756                   "Invalid access to non-RAM device at "
2757                   "addr 0x%" HWADDR_PRIX ", size %" HWADDR_PRIu ", "
2758                   "region '%s'\n", addr, len, memory_region_name(mr));
2759     return false;
2760 }
2761 
2762 static MemTxResult flatview_write_continue_step(MemTxAttrs attrs,
2763                                                 const uint8_t *buf,
2764                                                 hwaddr len, hwaddr mr_addr,
2765                                                 hwaddr *l, MemoryRegion *mr)
2766 {
2767     if (!flatview_access_allowed(mr, attrs, mr_addr, *l)) {
2768         return MEMTX_ACCESS_ERROR;
2769     }
2770 
2771     if (!memory_access_is_direct(mr, true)) {
2772         uint64_t val;
2773         MemTxResult result;
2774         bool release_lock = prepare_mmio_access(mr);
2775 
2776         *l = memory_access_size(mr, *l, mr_addr);
2777         /*
2778          * XXX: could force current_cpu to NULL to avoid
2779          * potential bugs
2780          */
2781 
2782         /*
2783          * Assure Coverity (and ourselves) that we are not going to OVERRUN
2784          * the buffer by following ldn_he_p().
2785          */
2786 #ifdef QEMU_STATIC_ANALYSIS
2787         assert((*l == 1 && len >= 1) ||
2788                (*l == 2 && len >= 2) ||
2789                (*l == 4 && len >= 4) ||
2790                (*l == 8 && len >= 8));
2791 #endif
2792         val = ldn_he_p(buf, *l);
2793         result = memory_region_dispatch_write(mr, mr_addr, val,
2794                                               size_memop(*l), attrs);
2795         if (release_lock) {
2796             bql_unlock();
2797         }
2798 
2799         return result;
2800     } else {
2801         /* RAM case */
2802         uint8_t *ram_ptr = qemu_ram_ptr_length(mr->ram_block, mr_addr, l,
2803                                                false, true);
2804 
2805         memmove(ram_ptr, buf, *l);
2806         invalidate_and_set_dirty(mr, mr_addr, *l);
2807 
2808         return MEMTX_OK;
2809     }
2810 }
2811 
2812 /* Called within RCU critical section.  */
2813 static MemTxResult flatview_write_continue(FlatView *fv, hwaddr addr,
2814                                            MemTxAttrs attrs,
2815                                            const void *ptr,
2816                                            hwaddr len, hwaddr mr_addr,
2817                                            hwaddr l, MemoryRegion *mr)
2818 {
2819     MemTxResult result = MEMTX_OK;
2820     const uint8_t *buf = ptr;
2821 
2822     for (;;) {
2823         result |= flatview_write_continue_step(attrs, buf, len, mr_addr, &l,
2824                                                mr);
2825 
2826         len -= l;
2827         buf += l;
2828         addr += l;
2829 
2830         if (!len) {
2831             break;
2832         }
2833 
2834         l = len;
2835         mr = flatview_translate(fv, addr, &mr_addr, &l, true, attrs);
2836     }
2837 
2838     return result;
2839 }
2840 
2841 /* Called from RCU critical section.  */
2842 static MemTxResult flatview_write(FlatView *fv, hwaddr addr, MemTxAttrs attrs,
2843                                   const void *buf, hwaddr len)
2844 {
2845     hwaddr l;
2846     hwaddr mr_addr;
2847     MemoryRegion *mr;
2848 
2849     l = len;
2850     mr = flatview_translate(fv, addr, &mr_addr, &l, true, attrs);
2851     if (!flatview_access_allowed(mr, attrs, addr, len)) {
2852         return MEMTX_ACCESS_ERROR;
2853     }
2854     return flatview_write_continue(fv, addr, attrs, buf, len,
2855                                    mr_addr, l, mr);
2856 }
2857 
2858 static MemTxResult flatview_read_continue_step(MemTxAttrs attrs, uint8_t *buf,
2859                                                hwaddr len, hwaddr mr_addr,
2860                                                hwaddr *l,
2861                                                MemoryRegion *mr)
2862 {
2863     if (!flatview_access_allowed(mr, attrs, mr_addr, *l)) {
2864         return MEMTX_ACCESS_ERROR;
2865     }
2866 
2867     if (!memory_access_is_direct(mr, false)) {
2868         /* I/O case */
2869         uint64_t val;
2870         MemTxResult result;
2871         bool release_lock = prepare_mmio_access(mr);
2872 
2873         *l = memory_access_size(mr, *l, mr_addr);
2874         result = memory_region_dispatch_read(mr, mr_addr, &val, size_memop(*l),
2875                                              attrs);
2876 
2877         /*
2878          * Assure Coverity (and ourselves) that we are not going to OVERRUN
2879          * the buffer by following stn_he_p().
2880          */
2881 #ifdef QEMU_STATIC_ANALYSIS
2882         assert((*l == 1 && len >= 1) ||
2883                (*l == 2 && len >= 2) ||
2884                (*l == 4 && len >= 4) ||
2885                (*l == 8 && len >= 8));
2886 #endif
2887         stn_he_p(buf, *l, val);
2888 
2889         if (release_lock) {
2890             bql_unlock();
2891         }
2892         return result;
2893     } else {
2894         /* RAM case */
2895         uint8_t *ram_ptr = qemu_ram_ptr_length(mr->ram_block, mr_addr, l,
2896                                                false, false);
2897 
2898         memcpy(buf, ram_ptr, *l);
2899 
2900         return MEMTX_OK;
2901     }
2902 }
2903 
2904 /* Called within RCU critical section.  */
2905 MemTxResult flatview_read_continue(FlatView *fv, hwaddr addr,
2906                                    MemTxAttrs attrs, void *ptr,
2907                                    hwaddr len, hwaddr mr_addr, hwaddr l,
2908                                    MemoryRegion *mr)
2909 {
2910     MemTxResult result = MEMTX_OK;
2911     uint8_t *buf = ptr;
2912 
2913     fuzz_dma_read_cb(addr, len, mr);
2914     for (;;) {
2915         result |= flatview_read_continue_step(attrs, buf, len, mr_addr, &l, mr);
2916 
2917         len -= l;
2918         buf += l;
2919         addr += l;
2920 
2921         if (!len) {
2922             break;
2923         }
2924 
2925         l = len;
2926         mr = flatview_translate(fv, addr, &mr_addr, &l, false, attrs);
2927     }
2928 
2929     return result;
2930 }
2931 
2932 /* Called from RCU critical section.  */
2933 static MemTxResult flatview_read(FlatView *fv, hwaddr addr,
2934                                  MemTxAttrs attrs, void *buf, hwaddr len)
2935 {
2936     hwaddr l;
2937     hwaddr mr_addr;
2938     MemoryRegion *mr;
2939 
2940     l = len;
2941     mr = flatview_translate(fv, addr, &mr_addr, &l, false, attrs);
2942     if (!flatview_access_allowed(mr, attrs, addr, len)) {
2943         return MEMTX_ACCESS_ERROR;
2944     }
2945     return flatview_read_continue(fv, addr, attrs, buf, len,
2946                                   mr_addr, l, mr);
2947 }
2948 
2949 MemTxResult address_space_read_full(AddressSpace *as, hwaddr addr,
2950                                     MemTxAttrs attrs, void *buf, hwaddr len)
2951 {
2952     MemTxResult result = MEMTX_OK;
2953     FlatView *fv;
2954 
2955     if (len > 0) {
2956         RCU_READ_LOCK_GUARD();
2957         fv = address_space_to_flatview(as);
2958         result = flatview_read(fv, addr, attrs, buf, len);
2959     }
2960 
2961     return result;
2962 }
2963 
2964 MemTxResult address_space_write(AddressSpace *as, hwaddr addr,
2965                                 MemTxAttrs attrs,
2966                                 const void *buf, hwaddr len)
2967 {
2968     MemTxResult result = MEMTX_OK;
2969     FlatView *fv;
2970 
2971     if (len > 0) {
2972         RCU_READ_LOCK_GUARD();
2973         fv = address_space_to_flatview(as);
2974         result = flatview_write(fv, addr, attrs, buf, len);
2975     }
2976 
2977     return result;
2978 }
2979 
2980 MemTxResult address_space_rw(AddressSpace *as, hwaddr addr, MemTxAttrs attrs,
2981                              void *buf, hwaddr len, bool is_write)
2982 {
2983     if (is_write) {
2984         return address_space_write(as, addr, attrs, buf, len);
2985     } else {
2986         return address_space_read_full(as, addr, attrs, buf, len);
2987     }
2988 }
2989 
2990 MemTxResult address_space_set(AddressSpace *as, hwaddr addr,
2991                               uint8_t c, hwaddr len, MemTxAttrs attrs)
2992 {
2993 #define FILLBUF_SIZE 512
2994     uint8_t fillbuf[FILLBUF_SIZE];
2995     int l;
2996     MemTxResult error = MEMTX_OK;
2997 
2998     memset(fillbuf, c, FILLBUF_SIZE);
2999     while (len > 0) {
3000         l = len < FILLBUF_SIZE ? len : FILLBUF_SIZE;
3001         error |= address_space_write(as, addr, attrs, fillbuf, l);
3002         len -= l;
3003         addr += l;
3004     }
3005 
3006     return error;
3007 }
3008 
3009 void cpu_physical_memory_rw(hwaddr addr, void *buf,
3010                             hwaddr len, bool is_write)
3011 {
3012     address_space_rw(&address_space_memory, addr, MEMTXATTRS_UNSPECIFIED,
3013                      buf, len, is_write);
3014 }
3015 
3016 enum write_rom_type {
3017     WRITE_DATA,
3018     FLUSH_CACHE,
3019 };
3020 
3021 static inline MemTxResult address_space_write_rom_internal(AddressSpace *as,
3022                                                            hwaddr addr,
3023                                                            MemTxAttrs attrs,
3024                                                            const void *ptr,
3025                                                            hwaddr len,
3026                                                            enum write_rom_type type)
3027 {
3028     hwaddr l;
3029     uint8_t *ram_ptr;
3030     hwaddr addr1;
3031     MemoryRegion *mr;
3032     const uint8_t *buf = ptr;
3033 
3034     RCU_READ_LOCK_GUARD();
3035     while (len > 0) {
3036         l = len;
3037         mr = address_space_translate(as, addr, &addr1, &l, true, attrs);
3038 
3039         if (!(memory_region_is_ram(mr) ||
3040               memory_region_is_romd(mr))) {
3041             l = memory_access_size(mr, l, addr1);
3042         } else {
3043             /* ROM/RAM case */
3044             ram_ptr = qemu_map_ram_ptr(mr->ram_block, addr1);
3045             switch (type) {
3046             case WRITE_DATA:
3047                 memcpy(ram_ptr, buf, l);
3048                 invalidate_and_set_dirty(mr, addr1, l);
3049                 break;
3050             case FLUSH_CACHE:
3051                 flush_idcache_range((uintptr_t)ram_ptr, (uintptr_t)ram_ptr, l);
3052                 break;
3053             }
3054         }
3055         len -= l;
3056         buf += l;
3057         addr += l;
3058     }
3059     return MEMTX_OK;
3060 }
3061 
3062 /* used for ROM loading : can write in RAM and ROM */
3063 MemTxResult address_space_write_rom(AddressSpace *as, hwaddr addr,
3064                                     MemTxAttrs attrs,
3065                                     const void *buf, hwaddr len)
3066 {
3067     return address_space_write_rom_internal(as, addr, attrs,
3068                                             buf, len, WRITE_DATA);
3069 }
3070 
3071 void cpu_flush_icache_range(hwaddr start, hwaddr len)
3072 {
3073     /*
3074      * This function should do the same thing as an icache flush that was
3075      * triggered from within the guest. For TCG we are always cache coherent,
3076      * so there is no need to flush anything. For KVM / Xen we need to flush
3077      * the host's instruction cache at least.
3078      */
3079     if (tcg_enabled()) {
3080         return;
3081     }
3082 
3083     address_space_write_rom_internal(&address_space_memory,
3084                                      start, MEMTXATTRS_UNSPECIFIED,
3085                                      NULL, len, FLUSH_CACHE);
3086 }
3087 
3088 /*
3089  * A magic value stored in the first 8 bytes of the bounce buffer struct. Used
3090  * to detect illegal pointers passed to address_space_unmap.
3091  */
3092 #define BOUNCE_BUFFER_MAGIC 0xb4017ceb4ffe12ed
3093 
3094 typedef struct {
3095     uint64_t magic;
3096     MemoryRegion *mr;
3097     hwaddr addr;
3098     size_t len;
3099     uint8_t buffer[];
3100 } BounceBuffer;
3101 
3102 static void
3103 address_space_unregister_map_client_do(AddressSpaceMapClient *client)
3104 {
3105     QLIST_REMOVE(client, link);
3106     g_free(client);
3107 }
3108 
3109 static void address_space_notify_map_clients_locked(AddressSpace *as)
3110 {
3111     AddressSpaceMapClient *client;
3112 
3113     while (!QLIST_EMPTY(&as->map_client_list)) {
3114         client = QLIST_FIRST(&as->map_client_list);
3115         qemu_bh_schedule(client->bh);
3116         address_space_unregister_map_client_do(client);
3117     }
3118 }
3119 
3120 void address_space_register_map_client(AddressSpace *as, QEMUBH *bh)
3121 {
3122     AddressSpaceMapClient *client = g_malloc(sizeof(*client));
3123 
3124     QEMU_LOCK_GUARD(&as->map_client_list_lock);
3125     client->bh = bh;
3126     QLIST_INSERT_HEAD(&as->map_client_list, client, link);
3127     /* Write map_client_list before reading bounce_buffer_size. */
3128     smp_mb();
3129     if (qatomic_read(&as->bounce_buffer_size) < as->max_bounce_buffer_size) {
3130         address_space_notify_map_clients_locked(as);
3131     }
3132 }
3133 
3134 void cpu_exec_init_all(void)
3135 {
3136     qemu_mutex_init(&ram_list.mutex);
3137     /* The data structures we set up here depend on knowing the page size,
3138      * so no more changes can be made after this point.
3139      * In an ideal world, nothing we did before we had finished the
3140      * machine setup would care about the target page size, and we could
3141      * do this much later, rather than requiring board models to state
3142      * up front what their requirements are.
3143      */
3144     finalize_target_page_bits();
3145     io_mem_init();
3146     memory_map_init();
3147 }
3148 
3149 void address_space_unregister_map_client(AddressSpace *as, QEMUBH *bh)
3150 {
3151     AddressSpaceMapClient *client;
3152 
3153     QEMU_LOCK_GUARD(&as->map_client_list_lock);
3154     QLIST_FOREACH(client, &as->map_client_list, link) {
3155         if (client->bh == bh) {
3156             address_space_unregister_map_client_do(client);
3157             break;
3158         }
3159     }
3160 }
3161 
3162 static void address_space_notify_map_clients(AddressSpace *as)
3163 {
3164     QEMU_LOCK_GUARD(&as->map_client_list_lock);
3165     address_space_notify_map_clients_locked(as);
3166 }
3167 
3168 static bool flatview_access_valid(FlatView *fv, hwaddr addr, hwaddr len,
3169                                   bool is_write, MemTxAttrs attrs)
3170 {
3171     MemoryRegion *mr;
3172     hwaddr l, xlat;
3173 
3174     while (len > 0) {
3175         l = len;
3176         mr = flatview_translate(fv, addr, &xlat, &l, is_write, attrs);
3177         if (!memory_access_is_direct(mr, is_write)) {
3178             l = memory_access_size(mr, l, addr);
3179             if (!memory_region_access_valid(mr, xlat, l, is_write, attrs)) {
3180                 return false;
3181             }
3182         }
3183 
3184         len -= l;
3185         addr += l;
3186     }
3187     return true;
3188 }
3189 
3190 bool address_space_access_valid(AddressSpace *as, hwaddr addr,
3191                                 hwaddr len, bool is_write,
3192                                 MemTxAttrs attrs)
3193 {
3194     FlatView *fv;
3195 
3196     RCU_READ_LOCK_GUARD();
3197     fv = address_space_to_flatview(as);
3198     return flatview_access_valid(fv, addr, len, is_write, attrs);
3199 }
3200 
3201 static hwaddr
3202 flatview_extend_translation(FlatView *fv, hwaddr addr,
3203                             hwaddr target_len,
3204                             MemoryRegion *mr, hwaddr base, hwaddr len,
3205                             bool is_write, MemTxAttrs attrs)
3206 {
3207     hwaddr done = 0;
3208     hwaddr xlat;
3209     MemoryRegion *this_mr;
3210 
3211     for (;;) {
3212         target_len -= len;
3213         addr += len;
3214         done += len;
3215         if (target_len == 0) {
3216             return done;
3217         }
3218 
3219         len = target_len;
3220         this_mr = flatview_translate(fv, addr, &xlat,
3221                                      &len, is_write, attrs);
3222         if (this_mr != mr || xlat != base + done) {
3223             return done;
3224         }
3225     }
3226 }
3227 
3228 /* Map a physical memory region into a host virtual address.
3229  * May map a subset of the requested range, given by and returned in *plen.
3230  * May return NULL if resources needed to perform the mapping are exhausted.
3231  * Use only for reads OR writes - not for read-modify-write operations.
3232  * Use address_space_register_map_client() to know when retrying the map
3233  * operation is likely to succeed.
3234  */
3235 void *address_space_map(AddressSpace *as,
3236                         hwaddr addr,
3237                         hwaddr *plen,
3238                         bool is_write,
3239                         MemTxAttrs attrs)
3240 {
3241     hwaddr len = *plen;
3242     hwaddr l, xlat;
3243     MemoryRegion *mr;
3244     FlatView *fv;
3245 
3246     trace_address_space_map(as, addr, len, is_write, *(uint32_t *) &attrs);
3247 
3248     if (len == 0) {
3249         return NULL;
3250     }
3251 
3252     l = len;
3253     RCU_READ_LOCK_GUARD();
3254     fv = address_space_to_flatview(as);
3255     mr = flatview_translate(fv, addr, &xlat, &l, is_write, attrs);
3256 
3257     if (!memory_access_is_direct(mr, is_write)) {
3258         size_t used = qatomic_read(&as->bounce_buffer_size);
3259         for (;;) {
3260             hwaddr alloc = MIN(as->max_bounce_buffer_size - used, l);
3261             size_t new_size = used + alloc;
3262             size_t actual =
3263                 qatomic_cmpxchg(&as->bounce_buffer_size, used, new_size);
3264             if (actual == used) {
3265                 l = alloc;
3266                 break;
3267             }
3268             used = actual;
3269         }
3270 
3271         if (l == 0) {
3272             *plen = 0;
3273             return NULL;
3274         }
3275 
3276         BounceBuffer *bounce = g_malloc0(l + sizeof(BounceBuffer));
3277         bounce->magic = BOUNCE_BUFFER_MAGIC;
3278         memory_region_ref(mr);
3279         bounce->mr = mr;
3280         bounce->addr = addr;
3281         bounce->len = l;
3282 
3283         if (!is_write) {
3284             flatview_read(fv, addr, attrs,
3285                           bounce->buffer, l);
3286         }
3287 
3288         *plen = l;
3289         return bounce->buffer;
3290     }
3291 
3292     memory_region_ref(mr);
3293     *plen = flatview_extend_translation(fv, addr, len, mr, xlat,
3294                                         l, is_write, attrs);
3295     fuzz_dma_read_cb(addr, *plen, mr);
3296     return qemu_ram_ptr_length(mr->ram_block, xlat, plen, true, is_write);
3297 }
3298 
3299 /* Unmaps a memory region previously mapped by address_space_map().
3300  * Will also mark the memory as dirty if is_write is true.  access_len gives
3301  * the amount of memory that was actually read or written by the caller.
3302  */
3303 void address_space_unmap(AddressSpace *as, void *buffer, hwaddr len,
3304                          bool is_write, hwaddr access_len)
3305 {
3306     MemoryRegion *mr;
3307     ram_addr_t addr1;
3308 
3309     mr = memory_region_from_host(buffer, &addr1);
3310     if (mr != NULL) {
3311         if (is_write) {
3312             invalidate_and_set_dirty(mr, addr1, access_len);
3313         }
3314         if (xen_enabled()) {
3315             xen_invalidate_map_cache_entry(buffer);
3316         }
3317         memory_region_unref(mr);
3318         return;
3319     }
3320 
3321 
3322     BounceBuffer *bounce = container_of(buffer, BounceBuffer, buffer);
3323     assert(bounce->magic == BOUNCE_BUFFER_MAGIC);
3324 
3325     if (is_write) {
3326         address_space_write(as, bounce->addr, MEMTXATTRS_UNSPECIFIED,
3327                             bounce->buffer, access_len);
3328     }
3329 
3330     qatomic_sub(&as->bounce_buffer_size, bounce->len);
3331     bounce->magic = ~BOUNCE_BUFFER_MAGIC;
3332     memory_region_unref(bounce->mr);
3333     g_free(bounce);
3334     /* Write bounce_buffer_size before reading map_client_list. */
3335     smp_mb();
3336     address_space_notify_map_clients(as);
3337 }
3338 
3339 void *cpu_physical_memory_map(hwaddr addr,
3340                               hwaddr *plen,
3341                               bool is_write)
3342 {
3343     return address_space_map(&address_space_memory, addr, plen, is_write,
3344                              MEMTXATTRS_UNSPECIFIED);
3345 }
3346 
3347 void cpu_physical_memory_unmap(void *buffer, hwaddr len,
3348                                bool is_write, hwaddr access_len)
3349 {
3350     return address_space_unmap(&address_space_memory, buffer, len, is_write, access_len);
3351 }
3352 
3353 #define ARG1_DECL                AddressSpace *as
3354 #define ARG1                     as
3355 #define SUFFIX
3356 #define TRANSLATE(...)           address_space_translate(as, __VA_ARGS__)
3357 #define RCU_READ_LOCK(...)       rcu_read_lock()
3358 #define RCU_READ_UNLOCK(...)     rcu_read_unlock()
3359 #include "memory_ldst.c.inc"
3360 
3361 int64_t address_space_cache_init(MemoryRegionCache *cache,
3362                                  AddressSpace *as,
3363                                  hwaddr addr,
3364                                  hwaddr len,
3365                                  bool is_write)
3366 {
3367     AddressSpaceDispatch *d;
3368     hwaddr l;
3369     MemoryRegion *mr;
3370     Int128 diff;
3371 
3372     assert(len > 0);
3373 
3374     l = len;
3375     cache->fv = address_space_get_flatview(as);
3376     d = flatview_to_dispatch(cache->fv);
3377     cache->mrs = *address_space_translate_internal(d, addr, &cache->xlat, &l, true);
3378 
3379     /*
3380      * cache->xlat is now relative to cache->mrs.mr, not to the section itself.
3381      * Take that into account to compute how many bytes are there between
3382      * cache->xlat and the end of the section.
3383      */
3384     diff = int128_sub(cache->mrs.size,
3385                       int128_make64(cache->xlat - cache->mrs.offset_within_region));
3386     l = int128_get64(int128_min(diff, int128_make64(l)));
3387 
3388     mr = cache->mrs.mr;
3389     memory_region_ref(mr);
3390     if (memory_access_is_direct(mr, is_write)) {
3391         /* We don't care about the memory attributes here as we're only
3392          * doing this if we found actual RAM, which behaves the same
3393          * regardless of attributes; so UNSPECIFIED is fine.
3394          */
3395         l = flatview_extend_translation(cache->fv, addr, len, mr,
3396                                         cache->xlat, l, is_write,
3397                                         MEMTXATTRS_UNSPECIFIED);
3398         cache->ptr = qemu_ram_ptr_length(mr->ram_block, cache->xlat, &l, true,
3399                                          is_write);
3400     } else {
3401         cache->ptr = NULL;
3402     }
3403 
3404     cache->len = l;
3405     cache->is_write = is_write;
3406     return l;
3407 }
3408 
3409 void address_space_cache_invalidate(MemoryRegionCache *cache,
3410                                     hwaddr addr,
3411                                     hwaddr access_len)
3412 {
3413     assert(cache->is_write);
3414     if (likely(cache->ptr)) {
3415         invalidate_and_set_dirty(cache->mrs.mr, addr + cache->xlat, access_len);
3416     }
3417 }
3418 
3419 void address_space_cache_destroy(MemoryRegionCache *cache)
3420 {
3421     if (!cache->mrs.mr) {
3422         return;
3423     }
3424 
3425     if (xen_enabled()) {
3426         xen_invalidate_map_cache_entry(cache->ptr);
3427     }
3428     memory_region_unref(cache->mrs.mr);
3429     flatview_unref(cache->fv);
3430     cache->mrs.mr = NULL;
3431     cache->fv = NULL;
3432 }
3433 
3434 /* Called from RCU critical section.  This function has the same
3435  * semantics as address_space_translate, but it only works on a
3436  * predefined range of a MemoryRegion that was mapped with
3437  * address_space_cache_init.
3438  */
3439 static inline MemoryRegion *address_space_translate_cached(
3440     MemoryRegionCache *cache, hwaddr addr, hwaddr *xlat,
3441     hwaddr *plen, bool is_write, MemTxAttrs attrs)
3442 {
3443     MemoryRegionSection section;
3444     MemoryRegion *mr;
3445     IOMMUMemoryRegion *iommu_mr;
3446     AddressSpace *target_as;
3447 
3448     assert(!cache->ptr);
3449     *xlat = addr + cache->xlat;
3450 
3451     mr = cache->mrs.mr;
3452     iommu_mr = memory_region_get_iommu(mr);
3453     if (!iommu_mr) {
3454         /* MMIO region.  */
3455         return mr;
3456     }
3457 
3458     section = address_space_translate_iommu(iommu_mr, xlat, plen,
3459                                             NULL, is_write, true,
3460                                             &target_as, attrs);
3461     return section.mr;
3462 }
3463 
3464 /* Called within RCU critical section.  */
3465 static MemTxResult address_space_write_continue_cached(MemTxAttrs attrs,
3466                                                        const void *ptr,
3467                                                        hwaddr len,
3468                                                        hwaddr mr_addr,
3469                                                        hwaddr l,
3470                                                        MemoryRegion *mr)
3471 {
3472     MemTxResult result = MEMTX_OK;
3473     const uint8_t *buf = ptr;
3474 
3475     for (;;) {
3476         result |= flatview_write_continue_step(attrs, buf, len, mr_addr, &l,
3477                                                mr);
3478 
3479         len -= l;
3480         buf += l;
3481         mr_addr += l;
3482 
3483         if (!len) {
3484             break;
3485         }
3486 
3487         l = len;
3488     }
3489 
3490     return result;
3491 }
3492 
3493 /* Called within RCU critical section.  */
3494 static MemTxResult address_space_read_continue_cached(MemTxAttrs attrs,
3495                                                       void *ptr, hwaddr len,
3496                                                       hwaddr mr_addr, hwaddr l,
3497                                                       MemoryRegion *mr)
3498 {
3499     MemTxResult result = MEMTX_OK;
3500     uint8_t *buf = ptr;
3501 
3502     for (;;) {
3503         result |= flatview_read_continue_step(attrs, buf, len, mr_addr, &l, mr);
3504         len -= l;
3505         buf += l;
3506         mr_addr += l;
3507 
3508         if (!len) {
3509             break;
3510         }
3511         l = len;
3512     }
3513 
3514     return result;
3515 }
3516 
3517 /* Called from RCU critical section. address_space_read_cached uses this
3518  * out of line function when the target is an MMIO or IOMMU region.
3519  */
3520 MemTxResult
3521 address_space_read_cached_slow(MemoryRegionCache *cache, hwaddr addr,
3522                                    void *buf, hwaddr len)
3523 {
3524     hwaddr mr_addr, l;
3525     MemoryRegion *mr;
3526 
3527     l = len;
3528     mr = address_space_translate_cached(cache, addr, &mr_addr, &l, false,
3529                                         MEMTXATTRS_UNSPECIFIED);
3530     return address_space_read_continue_cached(MEMTXATTRS_UNSPECIFIED,
3531                                               buf, len, mr_addr, l, mr);
3532 }
3533 
3534 /* Called from RCU critical section. address_space_write_cached uses this
3535  * out of line function when the target is an MMIO or IOMMU region.
3536  */
3537 MemTxResult
3538 address_space_write_cached_slow(MemoryRegionCache *cache, hwaddr addr,
3539                                     const void *buf, hwaddr len)
3540 {
3541     hwaddr mr_addr, l;
3542     MemoryRegion *mr;
3543 
3544     l = len;
3545     mr = address_space_translate_cached(cache, addr, &mr_addr, &l, true,
3546                                         MEMTXATTRS_UNSPECIFIED);
3547     return address_space_write_continue_cached(MEMTXATTRS_UNSPECIFIED,
3548                                                buf, len, mr_addr, l, mr);
3549 }
3550 
3551 #define ARG1_DECL                MemoryRegionCache *cache
3552 #define ARG1                     cache
3553 #define SUFFIX                   _cached_slow
3554 #define TRANSLATE(...)           address_space_translate_cached(cache, __VA_ARGS__)
3555 #define RCU_READ_LOCK()          ((void)0)
3556 #define RCU_READ_UNLOCK()        ((void)0)
3557 #include "memory_ldst.c.inc"
3558 
3559 /* virtual memory access for debug (includes writing to ROM) */
3560 int cpu_memory_rw_debug(CPUState *cpu, vaddr addr,
3561                         void *ptr, size_t len, bool is_write)
3562 {
3563     hwaddr phys_addr;
3564     vaddr l, page;
3565     uint8_t *buf = ptr;
3566 
3567     cpu_synchronize_state(cpu);
3568     while (len > 0) {
3569         int asidx;
3570         MemTxAttrs attrs;
3571         MemTxResult res;
3572 
3573         page = addr & TARGET_PAGE_MASK;
3574         phys_addr = cpu_get_phys_page_attrs_debug(cpu, page, &attrs);
3575         asidx = cpu_asidx_from_attrs(cpu, attrs);
3576         /* if no physical page mapped, return an error */
3577         if (phys_addr == -1)
3578             return -1;
3579         l = (page + TARGET_PAGE_SIZE) - addr;
3580         if (l > len)
3581             l = len;
3582         phys_addr += (addr & ~TARGET_PAGE_MASK);
3583         if (is_write) {
3584             res = address_space_write_rom(cpu->cpu_ases[asidx].as, phys_addr,
3585                                           attrs, buf, l);
3586         } else {
3587             res = address_space_read(cpu->cpu_ases[asidx].as, phys_addr,
3588                                      attrs, buf, l);
3589         }
3590         if (res != MEMTX_OK) {
3591             return -1;
3592         }
3593         len -= l;
3594         buf += l;
3595         addr += l;
3596     }
3597     return 0;
3598 }
3599 
3600 bool cpu_physical_memory_is_io(hwaddr phys_addr)
3601 {
3602     MemoryRegion*mr;
3603     hwaddr l = 1;
3604 
3605     RCU_READ_LOCK_GUARD();
3606     mr = address_space_translate(&address_space_memory,
3607                                  phys_addr, &phys_addr, &l, false,
3608                                  MEMTXATTRS_UNSPECIFIED);
3609 
3610     return !(memory_region_is_ram(mr) || memory_region_is_romd(mr));
3611 }
3612 
3613 int qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque)
3614 {
3615     RAMBlock *block;
3616     int ret = 0;
3617 
3618     RCU_READ_LOCK_GUARD();
3619     RAMBLOCK_FOREACH(block) {
3620         ret = func(block, opaque);
3621         if (ret) {
3622             break;
3623         }
3624     }
3625     return ret;
3626 }
3627 
3628 /*
3629  * Unmap pages of memory from start to start+length such that
3630  * they a) read as 0, b) Trigger whatever fault mechanism
3631  * the OS provides for postcopy.
3632  * The pages must be unmapped by the end of the function.
3633  * Returns: 0 on success, none-0 on failure
3634  *
3635  */
3636 int ram_block_discard_range(RAMBlock *rb, uint64_t start, size_t length)
3637 {
3638     int ret = -1;
3639 
3640     uint8_t *host_startaddr = rb->host + start;
3641 
3642     if (!QEMU_PTR_IS_ALIGNED(host_startaddr, rb->page_size)) {
3643         error_report("%s: Unaligned start address: %p",
3644                      __func__, host_startaddr);
3645         goto err;
3646     }
3647 
3648     if ((start + length) <= rb->max_length) {
3649         bool need_madvise, need_fallocate;
3650         if (!QEMU_IS_ALIGNED(length, rb->page_size)) {
3651             error_report("%s: Unaligned length: %zx", __func__, length);
3652             goto err;
3653         }
3654 
3655         errno = ENOTSUP; /* If we are missing MADVISE etc */
3656 
3657         /* The logic here is messy;
3658          *    madvise DONTNEED fails for hugepages
3659          *    fallocate works on hugepages and shmem
3660          *    shared anonymous memory requires madvise REMOVE
3661          */
3662         need_madvise = (rb->page_size == qemu_real_host_page_size());
3663         need_fallocate = rb->fd != -1;
3664         if (need_fallocate) {
3665             /* For a file, this causes the area of the file to be zero'd
3666              * if read, and for hugetlbfs also causes it to be unmapped
3667              * so a userfault will trigger.
3668              */
3669 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
3670             /*
3671              * fallocate() will fail with readonly files. Let's print a
3672              * proper error message.
3673              */
3674             if (rb->flags & RAM_READONLY_FD) {
3675                 error_report("%s: Discarding RAM with readonly files is not"
3676                              " supported", __func__);
3677                 goto err;
3678 
3679             }
3680             /*
3681              * We'll discard data from the actual file, even though we only
3682              * have a MAP_PRIVATE mapping, possibly messing with other
3683              * MAP_PRIVATE/MAP_SHARED mappings. There is no easy way to
3684              * change that behavior whithout violating the promised
3685              * semantics of ram_block_discard_range().
3686              *
3687              * Only warn, because it works as long as nobody else uses that
3688              * file.
3689              */
3690             if (!qemu_ram_is_shared(rb)) {
3691                 warn_report_once("%s: Discarding RAM"
3692                                  " in private file mappings is possibly"
3693                                  " dangerous, because it will modify the"
3694                                  " underlying file and will affect other"
3695                                  " users of the file", __func__);
3696             }
3697 
3698             ret = fallocate(rb->fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
3699                             start, length);
3700             if (ret) {
3701                 ret = -errno;
3702                 error_report("%s: Failed to fallocate %s:%" PRIx64 " +%zx (%d)",
3703                              __func__, rb->idstr, start, length, ret);
3704                 goto err;
3705             }
3706 #else
3707             ret = -ENOSYS;
3708             error_report("%s: fallocate not available/file"
3709                          "%s:%" PRIx64 " +%zx (%d)",
3710                          __func__, rb->idstr, start, length, ret);
3711             goto err;
3712 #endif
3713         }
3714         if (need_madvise) {
3715             /* For normal RAM this causes it to be unmapped,
3716              * for shared memory it causes the local mapping to disappear
3717              * and to fall back on the file contents (which we just
3718              * fallocate'd away).
3719              */
3720 #if defined(CONFIG_MADVISE)
3721             if (qemu_ram_is_shared(rb) && rb->fd < 0) {
3722                 ret = madvise(host_startaddr, length, QEMU_MADV_REMOVE);
3723             } else {
3724                 ret = madvise(host_startaddr, length, QEMU_MADV_DONTNEED);
3725             }
3726             if (ret) {
3727                 ret = -errno;
3728                 error_report("%s: Failed to discard range "
3729                              "%s:%" PRIx64 " +%zx (%d)",
3730                              __func__, rb->idstr, start, length, ret);
3731                 goto err;
3732             }
3733 #else
3734             ret = -ENOSYS;
3735             error_report("%s: MADVISE not available %s:%" PRIx64 " +%zx (%d)",
3736                          __func__, rb->idstr, start, length, ret);
3737             goto err;
3738 #endif
3739         }
3740         trace_ram_block_discard_range(rb->idstr, host_startaddr, length,
3741                                       need_madvise, need_fallocate, ret);
3742     } else {
3743         error_report("%s: Overrun block '%s' (%" PRIu64 "/%zx/" RAM_ADDR_FMT")",
3744                      __func__, rb->idstr, start, length, rb->max_length);
3745     }
3746 
3747 err:
3748     return ret;
3749 }
3750 
3751 int ram_block_discard_guest_memfd_range(RAMBlock *rb, uint64_t start,
3752                                         size_t length)
3753 {
3754     int ret = -1;
3755 
3756 #ifdef CONFIG_FALLOCATE_PUNCH_HOLE
3757     ret = fallocate(rb->guest_memfd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
3758                     start, length);
3759 
3760     if (ret) {
3761         ret = -errno;
3762         error_report("%s: Failed to fallocate %s:%" PRIx64 " +%zx (%d)",
3763                      __func__, rb->idstr, start, length, ret);
3764     }
3765 #else
3766     ret = -ENOSYS;
3767     error_report("%s: fallocate not available %s:%" PRIx64 " +%zx (%d)",
3768                  __func__, rb->idstr, start, length, ret);
3769 #endif
3770 
3771     return ret;
3772 }
3773 
3774 bool ramblock_is_pmem(RAMBlock *rb)
3775 {
3776     return rb->flags & RAM_PMEM;
3777 }
3778 
3779 static void mtree_print_phys_entries(int start, int end, int skip, int ptr)
3780 {
3781     if (start == end - 1) {
3782         qemu_printf("\t%3d      ", start);
3783     } else {
3784         qemu_printf("\t%3d..%-3d ", start, end - 1);
3785     }
3786     qemu_printf(" skip=%d ", skip);
3787     if (ptr == PHYS_MAP_NODE_NIL) {
3788         qemu_printf(" ptr=NIL");
3789     } else if (!skip) {
3790         qemu_printf(" ptr=#%d", ptr);
3791     } else {
3792         qemu_printf(" ptr=[%d]", ptr);
3793     }
3794     qemu_printf("\n");
3795 }
3796 
3797 #define MR_SIZE(size) (int128_nz(size) ? (hwaddr)int128_get64( \
3798                            int128_sub((size), int128_one())) : 0)
3799 
3800 void mtree_print_dispatch(AddressSpaceDispatch *d, MemoryRegion *root)
3801 {
3802     int i;
3803 
3804     qemu_printf("  Dispatch\n");
3805     qemu_printf("    Physical sections\n");
3806 
3807     for (i = 0; i < d->map.sections_nb; ++i) {
3808         MemoryRegionSection *s = d->map.sections + i;
3809         const char *names[] = { " [unassigned]", " [not dirty]",
3810                                 " [ROM]", " [watch]" };
3811 
3812         qemu_printf("      #%d @" HWADDR_FMT_plx ".." HWADDR_FMT_plx
3813                     " %s%s%s%s%s",
3814             i,
3815             s->offset_within_address_space,
3816             s->offset_within_address_space + MR_SIZE(s->size),
3817             s->mr->name ? s->mr->name : "(noname)",
3818             i < ARRAY_SIZE(names) ? names[i] : "",
3819             s->mr == root ? " [ROOT]" : "",
3820             s == d->mru_section ? " [MRU]" : "",
3821             s->mr->is_iommu ? " [iommu]" : "");
3822 
3823         if (s->mr->alias) {
3824             qemu_printf(" alias=%s", s->mr->alias->name ?
3825                     s->mr->alias->name : "noname");
3826         }
3827         qemu_printf("\n");
3828     }
3829 
3830     qemu_printf("    Nodes (%d bits per level, %d levels) ptr=[%d] skip=%d\n",
3831                P_L2_BITS, P_L2_LEVELS, d->phys_map.ptr, d->phys_map.skip);
3832     for (i = 0; i < d->map.nodes_nb; ++i) {
3833         int j, jprev;
3834         PhysPageEntry prev;
3835         Node *n = d->map.nodes + i;
3836 
3837         qemu_printf("      [%d]\n", i);
3838 
3839         for (j = 0, jprev = 0, prev = *n[0]; j < ARRAY_SIZE(*n); ++j) {
3840             PhysPageEntry *pe = *n + j;
3841 
3842             if (pe->ptr == prev.ptr && pe->skip == prev.skip) {
3843                 continue;
3844             }
3845 
3846             mtree_print_phys_entries(jprev, j, prev.skip, prev.ptr);
3847 
3848             jprev = j;
3849             prev = *pe;
3850         }
3851 
3852         if (jprev != ARRAY_SIZE(*n)) {
3853             mtree_print_phys_entries(jprev, j, prev.skip, prev.ptr);
3854         }
3855     }
3856 }
3857 
3858 /* Require any discards to work. */
3859 static unsigned int ram_block_discard_required_cnt;
3860 /* Require only coordinated discards to work. */
3861 static unsigned int ram_block_coordinated_discard_required_cnt;
3862 /* Disable any discards. */
3863 static unsigned int ram_block_discard_disabled_cnt;
3864 /* Disable only uncoordinated discards. */
3865 static unsigned int ram_block_uncoordinated_discard_disabled_cnt;
3866 static QemuMutex ram_block_discard_disable_mutex;
3867 
3868 static void ram_block_discard_disable_mutex_lock(void)
3869 {
3870     static gsize initialized;
3871 
3872     if (g_once_init_enter(&initialized)) {
3873         qemu_mutex_init(&ram_block_discard_disable_mutex);
3874         g_once_init_leave(&initialized, 1);
3875     }
3876     qemu_mutex_lock(&ram_block_discard_disable_mutex);
3877 }
3878 
3879 static void ram_block_discard_disable_mutex_unlock(void)
3880 {
3881     qemu_mutex_unlock(&ram_block_discard_disable_mutex);
3882 }
3883 
3884 int ram_block_discard_disable(bool state)
3885 {
3886     int ret = 0;
3887 
3888     ram_block_discard_disable_mutex_lock();
3889     if (!state) {
3890         ram_block_discard_disabled_cnt--;
3891     } else if (ram_block_discard_required_cnt ||
3892                ram_block_coordinated_discard_required_cnt) {
3893         ret = -EBUSY;
3894     } else {
3895         ram_block_discard_disabled_cnt++;
3896     }
3897     ram_block_discard_disable_mutex_unlock();
3898     return ret;
3899 }
3900 
3901 int ram_block_uncoordinated_discard_disable(bool state)
3902 {
3903     int ret = 0;
3904 
3905     ram_block_discard_disable_mutex_lock();
3906     if (!state) {
3907         ram_block_uncoordinated_discard_disabled_cnt--;
3908     } else if (ram_block_discard_required_cnt) {
3909         ret = -EBUSY;
3910     } else {
3911         ram_block_uncoordinated_discard_disabled_cnt++;
3912     }
3913     ram_block_discard_disable_mutex_unlock();
3914     return ret;
3915 }
3916 
3917 int ram_block_discard_require(bool state)
3918 {
3919     int ret = 0;
3920 
3921     ram_block_discard_disable_mutex_lock();
3922     if (!state) {
3923         ram_block_discard_required_cnt--;
3924     } else if (ram_block_discard_disabled_cnt ||
3925                ram_block_uncoordinated_discard_disabled_cnt) {
3926         ret = -EBUSY;
3927     } else {
3928         ram_block_discard_required_cnt++;
3929     }
3930     ram_block_discard_disable_mutex_unlock();
3931     return ret;
3932 }
3933 
3934 int ram_block_coordinated_discard_require(bool state)
3935 {
3936     int ret = 0;
3937 
3938     ram_block_discard_disable_mutex_lock();
3939     if (!state) {
3940         ram_block_coordinated_discard_required_cnt--;
3941     } else if (ram_block_discard_disabled_cnt) {
3942         ret = -EBUSY;
3943     } else {
3944         ram_block_coordinated_discard_required_cnt++;
3945     }
3946     ram_block_discard_disable_mutex_unlock();
3947     return ret;
3948 }
3949 
3950 bool ram_block_discard_is_disabled(void)
3951 {
3952     return qatomic_read(&ram_block_discard_disabled_cnt) ||
3953            qatomic_read(&ram_block_uncoordinated_discard_disabled_cnt);
3954 }
3955 
3956 bool ram_block_discard_is_required(void)
3957 {
3958     return qatomic_read(&ram_block_discard_required_cnt) ||
3959            qatomic_read(&ram_block_coordinated_discard_required_cnt);
3960 }
3961