Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mc: kill model-check/ksm option. Was not activated because not very useful
[simgrid.git] / src / mc / sosp / RegionSnapshot.cpp
1 /* Copyright (c) 2007-2019. 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 <cstdlib>
7
8 #include <sys/mman.h>
9 #ifdef __FreeBSD__
10 #define MAP_POPULATE MAP_PREFAULT_READ
11 #endif
12
13 #include "mc/mc.h"
14 #include "src/mc/mc_config.hpp"
15 #include "src/mc/sosp/mc_snapshot.hpp"
16
17 #include "src/mc/sosp/ChunkedData.hpp"
18 #include "src/mc/sosp/RegionSnapshot.hpp"
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_RegionSnaphot, mc, "Logging specific to region snapshots");
21
22 namespace simgrid {
23 namespace mc {
24
25 static inline const char* to_cstr(RegionType region)
26 {
27   switch (region) {
28     case RegionType::Unknown:
29       return "unknown";
30     case RegionType::Heap:
31       return "Heap";
32     case RegionType::Data:
33       return "Data";
34     default:
35       return "?";
36   }
37 }
38
39 Buffer::Buffer(std::size_t size, Type type) : size_(size), type_(type)
40 {
41   switch (type_) {
42     case Type::Malloc:
43       data_ = ::operator new(size_);
44       break;
45     case Type::Mmap:
46       data_ = ::mmap(nullptr, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_POPULATE, -1, 0);
47       if (data_ == MAP_FAILED) {
48         data_ = nullptr;
49         size_ = 0;
50         type_ = Type::Malloc;
51         throw std::bad_alloc();
52       }
53       break;
54     default:
55       abort();
56   }
57 }
58
59 void Buffer::clear() noexcept
60 {
61   switch (type_) {
62     case Type::Malloc:
63       ::operator delete(data_);
64       break;
65     case Type::Mmap:
66       if (munmap(data_, size_) != 0)
67         abort();
68       break;
69     default:
70       abort();
71   }
72   data_ = nullptr;
73   size_ = 0;
74   type_ = Type::Malloc;
75 }
76
77 RegionSnapshot dense_region(RegionType region_type, void* start_addr, void* permanent_addr, size_t size)
78 {
79   simgrid::mc::Buffer data = Buffer::malloc(size);
80
81   mc_model_checker->process().read_bytes(data.get(), size, remote(permanent_addr), simgrid::mc::ProcessIndexDisabled);
82
83   simgrid::mc::RegionSnapshot region(region_type, start_addr, permanent_addr, size);
84   region.flat_data(std::move(data));
85
86   XBT_DEBUG("New region : type : %s, data : %p (real addr %p), size : %zu", to_cstr(region_type),
87             region.flat_data().get(), permanent_addr, size);
88   return region;
89 }
90
91 /** @brief Take a snapshot of a given region
92  *
93  * @param type
94  * @param start_addr   Address of the region in the simulated process
95  * @param permanent_addr Permanent address of this data (for privatized variables, this is the virtual address of the
96  * privatized mapping)
97  * @param size         Size of the data*
98  */
99 RegionSnapshot region(RegionType type, void* start_addr, void* permanent_addr, size_t size)
100 {
101   if (_sg_mc_sparse_checkpoint)
102     return sparse_region(type, start_addr, permanent_addr, size);
103   else
104     return dense_region(type, start_addr, permanent_addr, size);
105 }
106
107 RegionSnapshot sparse_region(RegionType region_type, void* start_addr, void* permanent_addr, size_t size)
108 {
109   simgrid::mc::RemoteClient* process = &mc_model_checker->process();
110   assert(process != nullptr);
111
112   xbt_assert((((uintptr_t)start_addr) & (xbt_pagesize - 1)) == 0, "Not at the beginning of a page");
113   xbt_assert((((uintptr_t)permanent_addr) & (xbt_pagesize - 1)) == 0, "Not at the beginning of a page");
114   size_t page_count = simgrid::mc::mmu::chunkCount(size);
115
116   simgrid::mc::ChunkedData page_data(mc_model_checker->page_store(), *process, RemotePtr<void>(permanent_addr),
117                                      page_count);
118
119   simgrid::mc::RegionSnapshot region(region_type, start_addr, permanent_addr, size);
120   region.page_data(std::move(page_data));
121   return region;
122 }
123
124 } // namespace mc
125 } // namespace simgrid