Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into actor-yield
[simgrid.git] / src / mc / mc_snapshot.cpp
1 /* Copyright (c) 2014-2017. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <cstddef>
8
9 #include <memory>
10 #include <utility>
11
12 #include "xbt/asserts.h"
13 #include "xbt/sysdep.h"
14
15 #include "src/internal_config.h"
16 #include "src/smpi/include/private.hpp"
17
18 #include "src/mc/PageStore.hpp"
19 #include "src/mc/mc_mmu.hpp"
20 #include "src/mc/mc_private.hpp"
21 #include "src/mc/mc_snapshot.hpp"
22
23 extern "C" {
24
25 /** @brief Find the snapshoted region from a pointer
26  *
27  *  @param addr     Pointer
28  *  @param snapshot Snapshot
29  *  @param Snapshot region in the snapshot this pointer belongs to
30  *         (or nullptr if it does not belong to any snapshot region)
31  * */
32 mc_mem_region_t mc_get_snapshot_region(
33   const void* addr, const simgrid::mc::Snapshot* snapshot, int process_index)
34 {
35   size_t n = snapshot->snapshot_regions.size();
36   for (size_t i = 0; i != n; ++i) {
37     mc_mem_region_t region = snapshot->snapshot_regions[i].get();
38     if (not(region && region->contain(simgrid::mc::remote(addr))))
39       continue;
40
41     if (region->storage_type() == simgrid::mc::StorageType::Privatized) {
42 #if HAVE_SMPI
43       // Use the current process index of the snapshot:
44       if (process_index == simgrid::mc::ProcessIndexDisabled)
45         process_index = snapshot->privatization_index;
46       if (process_index < 0)
47         xbt_die("Missing process index");
48       if (process_index >= (int) region->privatized_data().size())
49         xbt_die("Invalid process index");
50       simgrid::mc::RegionSnapshot& priv_region = region->privatized_data()[process_index];
51       xbt_assert(priv_region.contain(simgrid::mc::remote(addr)));
52       return &priv_region;
53 #else
54       xbt_die("Privatized region in a non SMPI build (this should not happen)");
55 #endif
56     }
57
58     return region;
59   }
60
61   return nullptr;
62 }
63
64 /** @brief Read memory from a snapshot region broken across fragmented pages
65  *
66  *  @param addr    Process (non-snapshot) address of the data
67  *  @param region  Snapshot memory region where the data is located
68  *  @param target  Buffer to store the value
69  *  @param size    Size of the data to read in bytes
70  *  @return Pointer where the data is located (target buffer of original location)
71  */
72 const void* MC_region_read_fragmented(mc_mem_region_t region, void* target, const void* addr, size_t size)
73 {
74   // Last byte of the memory area:
75   void* end = (char*) addr + size - 1;
76
77   // TODO, we assume the chunks are aligned to natural chunk boundaries.
78   // We should remove this assumption.
79
80   // Page of the last byte of the memory area:
81   size_t page_end = simgrid::mc::mmu::split((std::uintptr_t) end).first;
82
83   void* dest = target;
84
85   if (dest==nullptr)
86     xbt_die("Missing destination buffer for fragmented memory access");
87
88   // Read each page:
89   while (simgrid::mc::mmu::split((std::uintptr_t) addr).first != page_end) {
90     void* snapshot_addr = mc_translate_address_region_chunked((uintptr_t) addr, region);
91     void* next_page = (void*) simgrid::mc::mmu::join(
92       simgrid::mc::mmu::split((std::uintptr_t) addr).first + 1,
93       0);
94     size_t readable = (char*) next_page - (char*) addr;
95     memcpy(dest, snapshot_addr, readable);
96     addr = (char*) addr + readable;
97     dest = (char*) dest + readable;
98     size -= readable;
99   }
100
101   // Read the end:
102   void* snapshot_addr = mc_translate_address_region_chunked((uintptr_t)addr, region);
103   memcpy(dest, snapshot_addr, size);
104
105   return target;
106 }
107
108 /** Compare memory between snapshots (with known regions)
109  *
110  * @param addr1 Address in the first snapshot
111  * @param snapshot2 Region of the address in the first snapshot
112  * @param addr2 Address in the second snapshot
113  * @param snapshot2 Region of the address in the second snapshot
114  * @return same as memcmp
115  * */
116 int MC_snapshot_region_memcmp(
117   const void* addr1, mc_mem_region_t region1,
118   const void* addr2, mc_mem_region_t region2,
119   size_t size)
120 {
121   // Using alloca() for large allocations may trigger stack overflow:
122   // use malloc if the buffer is too big.
123   bool stack_alloc = size < 64;
124   const bool region1_need_buffer = region1==nullptr || region1->storage_type()==simgrid::mc::StorageType::Flat;
125   const bool region2_need_buffer = region2==nullptr || region2->storage_type()==simgrid::mc::StorageType::Flat;
126   void* buffer1a                 = region1_need_buffer ? nullptr : stack_alloc ? alloca(size) : ::operator new(size);
127   void* buffer2a                 = region2_need_buffer ? nullptr : stack_alloc ? alloca(size) : ::operator new(size);
128   const void* buffer1 = MC_region_read(region1, buffer1a, addr1, size);
129   const void* buffer2 = MC_region_read(region2, buffer2a, addr2, size);
130   int res;
131   if (buffer1 == buffer2)
132     res = 0;
133   else
134     res = memcmp(buffer1, buffer2, size);
135   if (not stack_alloc) {
136     ::operator delete(buffer1a);
137     ::operator delete(buffer2a);
138   }
139   return res;
140 }
141
142 /** Compare memory between snapshots
143  *
144  * @param addr1 Address in the first snapshot
145  * @param snapshot1 First snapshot
146  * @param addr2 Address in the second snapshot
147  * @param snapshot2 Second snapshot
148  * @return same as memcmp
149  * */
150 int MC_snapshot_memcmp(
151   const void* addr1, simgrid::mc::Snapshot* snapshot1,
152   const void* addr2, simgrid::mc::Snapshot* snapshot2, int process_index, size_t size)
153 {
154   mc_mem_region_t region1 = mc_get_snapshot_region(addr1, snapshot1, process_index);
155   mc_mem_region_t region2 = mc_get_snapshot_region(addr2, snapshot2, process_index);
156   return MC_snapshot_region_memcmp(addr1, region1, addr2, region2, size);
157 }
158
159 } // extern "C"
160
161 namespace simgrid {
162 namespace mc {
163
164 Snapshot::Snapshot(RemoteClient* process, int _num_state)
165     : AddressSpace(process)
166     , num_state(_num_state)
167     , heap_bytes_used(0)
168     , enabled_processes()
169     , privatization_index(0)
170     , hash(0)
171 {
172
173 }
174
175 const void* Snapshot::read_bytes(void* buffer, std::size_t size,
176   RemotePtr<void> address, int process_index,
177   ReadOptions options) const
178 {
179   mc_mem_region_t region = mc_get_snapshot_region((void*)address.address(), this, process_index);
180   if (region) {
181     const void* res = MC_region_read(region, buffer, (void*)address.address(), size);
182     if (buffer == res || options & ReadOptions::lazy())
183       return res;
184     else {
185       memcpy(buffer, res, size);
186       return buffer;
187     }
188   }
189   else
190     return this->process()->read_bytes(
191       buffer, size, address, process_index, options);
192 }
193
194 }
195 }
196
197 #ifdef SIMGRID_TEST
198
199 #include <cstdlib>
200 #include <cstring>
201
202 #include <sys/mman.h>
203
204 #include "src/mc/mc_mmu.hpp"
205 #include "src/mc/mc_private.hpp"
206 #include "src/mc/mc_snapshot.hpp"
207
208 XBT_TEST_SUITE("mc_snapshot", "Snapshots");
209
210 static inline void init_memory(void* mem, size_t size)
211 {
212   char* dest = (char*) mem;
213   for (size_t i = 0; i < size; ++i) {
214     dest[i] = rand() & 255;
215   }
216 }
217
218 static void test_snapshot(bool sparse_checkpoint);
219
220 XBT_TEST_UNIT("flat_snapshot", test_flat_snapshots, "Test flat snapshots")
221 {
222   test_snapshot(0);
223 }
224
225 XBT_TEST_UNIT("page_snapshots", test_per_snpashots, "Test per-page snapshots")
226 {
227   test_snapshot(1);
228 }
229
230 static void test_snapshot(bool sparse_checkpoint) {
231
232   xbt_test_add("Initialization");
233   _sg_mc_sparse_checkpoint = sparse_checkpoint;
234   xbt_assert(xbt_pagesize == getpagesize());
235   xbt_assert(1 << xbt_pagebits == xbt_pagesize);
236
237   std::unique_ptr<simgrid::mc::RemoteClient> process(new simgrid::mc::RemoteClient(getpid(), -1));
238   process->init();
239   mc_model_checker = new ::simgrid::mc::ModelChecker(std::move(process));
240
241   for(int n=1; n!=256; ++n) {
242
243     // Store region page(s):
244     size_t byte_size = n * xbt_pagesize;
245     void* source = mmap(nullptr, byte_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
246     xbt_assert(source!=MAP_FAILED, "Could not allocate source memory");
247
248     // Init memory and take snapshots:
249     init_memory(source, byte_size);
250     simgrid::mc::RegionSnapshot region0 = simgrid::mc::sparse_region(
251       simgrid::mc::RegionType::Unknown, source, source, byte_size);
252     for(int i=0; i<n; i+=2) {
253       init_memory((char*) source + i*xbt_pagesize, xbt_pagesize);
254     }
255     simgrid::mc::RegionSnapshot region = simgrid::mc::sparse_region(
256       simgrid::mc::RegionType::Unknown, source, source, byte_size);
257
258     void* destination = mmap(nullptr, byte_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
259     xbt_assert(source!=MAP_FAILED, "Could not allocate destination memory");
260
261     xbt_test_add("Reading whole region data for %i page(s)", n);
262     const void* read = MC_region_read(&region, destination, source, byte_size);
263     xbt_test_assert(not memcmp(source, read, byte_size), "Mismatch in MC_region_read()");
264
265     xbt_test_add("Reading parts of region data for %i page(s)", n);
266     for(int j=0; j!=100; ++j) {
267       size_t offset = rand() % byte_size;
268       size_t size = rand() % (byte_size - offset);
269       const void* read = MC_region_read(&region, destination, (const char*) source+offset, size);
270       xbt_test_assert(not memcmp((char*)source + offset, read, size), "Mismatch in MC_region_read()");
271     }
272
273     xbt_test_add("Compare whole region data for %i page(s)", n);
274
275     xbt_test_assert(MC_snapshot_region_memcmp(source, &region0, source, &region, byte_size),
276       "Unexpected match in MC_snapshot_region_memcmp() with previous snapshot");
277
278     xbt_test_add("Compare parts of region data for %i page(s) with itself", n);
279     for(int j=0; j!=100; ++j) {
280       size_t offset = rand() % byte_size;
281       size_t size = rand() % (byte_size - offset);
282       xbt_test_assert(
283           not MC_snapshot_region_memcmp((char*)source + offset, &region, (char*)source + offset, &region, size),
284           "Mismatch in MC_snapshot_region_memcmp()");
285     }
286
287     if (n==1) {
288       xbt_test_add("Read pointer for %i page(s)", n);
289       memcpy(source, &mc_model_checker, sizeof(void*));
290       simgrid::mc::RegionSnapshot region2 = simgrid::mc::sparse_region(
291         simgrid::mc::RegionType::Unknown, source, source, byte_size);
292       xbt_test_assert(MC_region_read_pointer(&region2, source) == mc_model_checker,
293         "Mismtach in MC_region_read_pointer()");
294     }
295
296     munmap(destination, byte_size);
297     munmap(source, byte_size);
298   }
299
300   delete mc_model_checker;
301   mc_model_checker = nullptr;
302 }
303
304 #endif /* SIMGRID_TEST */
305