Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
2dca797e710f244530755a417efc2d1d96c0cf29
[simgrid.git] / src / mc / sosp / Region.cpp
1 /* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/mc/sosp/Region.hpp"
7 #include "src/mc/mc_config.hpp"
8 #include "src/mc/mc_forward.hpp"
9 #include "src/mc/sosp/RemoteProcessMemory.hpp"
10
11 #include <cstdlib>
12 #include <sys/mman.h>
13 #ifdef __FreeBSD__
14 #define MAP_POPULATE MAP_PREFAULT_READ
15 #endif
16
17 namespace simgrid::mc {
18
19 Region::Region(PageStore& store, const RemoteProcessMemory& memory, RegionType region_type, void* start_addr,
20                size_t size)
21     : region_type_(region_type), start_addr_(start_addr), size_(size)
22 {
23   xbt_assert((((uintptr_t)start_addr) & (xbt_pagesize - 1)) == 0, "Start address not at the beginning of a page");
24
25   chunks_ = ChunkedData(store, memory, RemotePtr<void>(start_addr), mmu::chunk_count(size));
26 }
27
28 /** @brief Restore a region from a snapshot
29  *
30  *  @param region     Target region
31  */
32 void Region::restore(const RemoteProcessMemory& memory) const
33 {
34   xbt_assert(((start().address()) & (xbt_pagesize - 1)) == 0, "Not at the beginning of a page");
35   xbt_assert(simgrid::mc::mmu::chunk_count(size()) == get_chunks().page_count());
36
37   for (size_t i = 0; i != get_chunks().page_count(); ++i) {
38     auto* target_page       = (void*)simgrid::mc::mmu::join(i, (std::uintptr_t)(void*)start().address());
39     const void* source_page = get_chunks().page(i);
40     memory.write_bytes(source_page, xbt_pagesize, remote(target_page));
41   }
42 }
43
44 static XBT_ALWAYS_INLINE void* mc_translate_address_region(uintptr_t addr, const simgrid::mc::Region* region)
45 {
46   auto [pageno, offset] = simgrid::mc::mmu::split(addr - region->start().address());
47   void* snapshot_page   = region->get_chunks().page(pageno);
48   return (char*)snapshot_page + offset;
49 }
50
51 void* Region::read(void* target, const void* addr, std::size_t size) const
52 {
53   xbt_assert(contain(simgrid::mc::remote(addr)), "Trying to read out of the region boundary.");
54
55   // Last byte of the region:
56   const void* end_addr = (const char*)addr + size - 1;
57   if (simgrid::mc::mmu::same_chunk((std::uintptr_t)addr, (std::uintptr_t)end_addr)) {
58     // The memory is contained in a single page:
59     return mc_translate_address_region((uintptr_t)addr, this);
60   }
61   // Otherwise, the memory spans several pages. Let's copy it all into the provided buffer
62   xbt_assert(target != nullptr, "Missing destination buffer for fragmented memory access");
63
64   // TODO, we assume the chunks are aligned to natural chunk boundaries.
65   // We should remove this assumption.
66
67   // Page of the last byte of the memory area:
68   size_t page_end = simgrid::mc::mmu::split((std::uintptr_t)end_addr).first;
69
70   void* dest = target; // iterator in the buffer to where we should copy next
71
72   // Read each page:
73   while (simgrid::mc::mmu::split((std::uintptr_t)addr).first != page_end) {
74     const void* snapshot_addr = mc_translate_address_region((uintptr_t)addr, this);
75     auto* next_page     = (void*)simgrid::mc::mmu::join(simgrid::mc::mmu::split((std::uintptr_t)addr).first + 1, 0);
76     size_t readable     = (char*)next_page - (const char*)addr;
77     memcpy(dest, snapshot_addr, readable);
78     addr = (const char*)addr + readable;
79     dest = (char*)dest + readable;
80     size -= readable;
81   }
82
83   // Read the end:
84   const void* snapshot_addr = mc_translate_address_region((uintptr_t)addr, this);
85   memcpy(dest, snapshot_addr, size);
86
87   return target;
88 }
89
90 } // namespace simgrid::mc
91
92 /** Compare memory between snapshots (with known regions)
93  *
94  * @param addr1 Address in the first snapshot
95  * @param region1 Region of the address in the first snapshot
96  * @param addr2 Address in the second snapshot
97  * @param region2 Region of the address in the second snapshot
98  * @return same semantic as memcmp
99  */
100 int MC_snapshot_region_memcmp(const void* addr1, const simgrid::mc::Region* region1, const void* addr2,
101                               const simgrid::mc::Region* region2, size_t size)
102 {
103   // Using alloca() for large allocations may trigger stack overflow:
104   // use malloc if the buffer is too big.
105   bool stack_alloc    = size < 64;
106   void* buffer1a      = stack_alloc ? alloca(size) : ::operator new(size);
107   void* buffer2a      = stack_alloc ? alloca(size) : ::operator new(size);
108   const void* buffer1 = region1->read(buffer1a, addr1, size);
109   const void* buffer2 = region2->read(buffer2a, addr2, size);
110   int res;
111   if (buffer1 == buffer2)
112     res = 0;
113   else
114     res = memcmp(buffer1, buffer2, size);
115   if (not stack_alloc) {
116     ::operator delete(buffer1a);
117     ::operator delete(buffer2a);
118   }
119   return res;
120 }