Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / mc / mc_checkpoint.cpp
1 /* Copyright (c) 2008-2015. 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 <unistd.h>
8
9 #include <string.h>
10 #include <link.h>
11 #include <dirent.h>
12
13 #include "src/internal_config.h"
14 #include "mc_private.h"
15 #include "xbt/module.h"
16 #include <xbt/mmalloc.h>
17 #include "src/smpi/private.h"
18 #include <alloca.h>
19
20 #include "src/xbt/mmalloc/mmprivate.h"
21
22 #include "src/simix/smx_private.h"
23
24 #include <libunwind.h>
25 #include <libelf.h>
26
27 #include "mc_private.h"
28 #include <mc/mc.h>
29
30 #include "mc_snapshot.h"
31 #include "mc_object_info.h"
32 #include "mc_mmu.h"
33 #include "mc_unw.h"
34 #include "mc_protocol.h"
35 #include "mc_smx.h"
36 #include "mc_hash.hpp"
37
38 #include "src/mc/ObjectInformation.hpp"
39 #include "src/mc/Frame.hpp"
40 #include "src/mc/Variable.hpp"
41
42 using simgrid::mc::remote;
43
44 extern "C" {
45
46 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_checkpoint, mc,
47                                 "Logging specific to mc_checkpoint");
48
49 /************************************  Free functions **************************************/
50 /*****************************************************************************************/
51
52 /** @brief Restore a region from a snapshot
53  *
54  *  @param reg     Target region
55  */
56 static void MC_region_restore(mc_mem_region_t region)
57 {
58   switch(region->storage_type()) {
59   case simgrid::mc::StorageType::NoData:
60   default:
61     xbt_die("Storage type not supported");
62     break;
63
64   case simgrid::mc::StorageType::Flat:
65     mc_model_checker->process().write_bytes(region->flat_data(),
66       region->size(), region->permanent_address());
67     break;
68
69   case simgrid::mc::StorageType::Chunked:
70     mc_region_restore_sparse(&mc_model_checker->process(), region);
71     break;
72
73   case simgrid::mc::StorageType::Privatized:
74     for (auto& p : region->privatized_data())
75       MC_region_restore(&p);
76     break;
77   }
78 }
79
80 }
81
82 namespace simgrid {
83 namespace mc {
84
85 #ifdef HAVE_SMPI
86 simgrid::mc::RegionSnapshot privatized_region(
87     RegionType region_type, void *start_addr, void* permanent_addr,
88     std::size_t size, const simgrid::mc::RegionSnapshot* ref_region
89     )
90 {
91   size_t process_count = MC_smpi_process_count();
92
93   // Read smpi_privatisation_regions from MCed:
94   smpi_privatisation_region_t remote_smpi_privatisation_regions;
95   mc_model_checker->process().read_variable(
96     "smpi_privatisation_regions",
97     &remote_smpi_privatisation_regions, sizeof(remote_smpi_privatisation_regions));
98   s_smpi_privatisation_region_t privatisation_regions[process_count];
99   mc_model_checker->process().read_bytes(
100     &privatisation_regions, sizeof(privatisation_regions),
101     remote(remote_smpi_privatisation_regions));
102
103   std::vector<simgrid::mc::RegionSnapshot> data;
104   data.reserve(process_count);
105   for (size_t i = 0; i < process_count; i++) {
106     const simgrid::mc::RegionSnapshot* ref_privatized_region = nullptr;
107     if (ref_region && ref_region->storage_type() == StorageType::Privatized)
108       ref_privatized_region = &ref_region->privatized_data()[i];
109     data.push_back(simgrid::mc::region(region_type, start_addr,
110       privatisation_regions[i].address, size, ref_privatized_region));
111   }
112
113   simgrid::mc::RegionSnapshot region = simgrid::mc::RegionSnapshot(
114     region_type, start_addr, permanent_addr, size);
115   region.privatized_data(std::move(data));
116   return std::move(region);
117 }
118 #endif
119
120 }
121 }
122
123 extern "C" {
124
125 static void MC_snapshot_add_region(int index, mc_snapshot_t snapshot,
126                                   simgrid::mc::RegionType type,
127                                   simgrid::mc::ObjectInformation* object_info,
128                                   void *start_addr, void* permanent_addr,
129                                   std::size_t size)
130 {
131   if (type == simgrid::mc::RegionType::Data)
132     xbt_assert(object_info, "Missing object info for object.");
133   else if (type == simgrid::mc::RegionType::Heap)
134     xbt_assert(!object_info, "Unexpected object info for heap region.");
135
136   simgrid::mc::RegionSnapshot const* ref_region = nullptr;
137   if (mc_model_checker->parent_snapshot_)
138     ref_region = mc_model_checker->parent_snapshot_->snapshot_regions[index].get();
139
140   simgrid::mc::RegionSnapshot region;
141 #ifdef HAVE_SMPI
142   const bool privatization_aware = object_info
143     && mc_model_checker->process().privatized(*object_info);
144   if (privatization_aware && MC_smpi_process_count())
145     region = simgrid::mc::privatized_region(
146       type, start_addr, permanent_addr, size, ref_region);
147   else
148 #endif
149     region = simgrid::mc::region(type, start_addr, permanent_addr, size, ref_region);
150
151   region.object_info(object_info);
152   snapshot->snapshot_regions[index]
153     = std::unique_ptr<simgrid::mc::RegionSnapshot>(
154       new simgrid::mc::RegionSnapshot(std::move(region)));
155   return;
156 }
157
158 static void MC_get_memory_regions(simgrid::mc::Process* process, mc_snapshot_t snapshot)
159 {
160   const size_t n = process->object_infos.size();
161   snapshot->snapshot_regions.resize(n + 1);
162   int i = 0;
163   for (auto const& object_info : process->object_infos) {
164     MC_snapshot_add_region(i, snapshot, simgrid::mc::RegionType::Data,
165       object_info.get(),
166       object_info->start_rw, object_info->start_rw,
167       object_info->end_rw - object_info->start_rw);
168     ++i;
169   }
170
171   xbt_mheap_t heap = process->get_heap();
172   void *start_heap = heap->base;
173   void *end_heap = heap->breakval;
174
175   MC_snapshot_add_region(n, snapshot, simgrid::mc::RegionType::Heap, NULL,
176                         start_heap, start_heap,
177                         (char *) end_heap - (char *) start_heap);
178   snapshot->heap_bytes_used = mmalloc_get_bytes_used_remote(
179     heap->heaplimit,
180     process->get_malloc_info());
181
182 #ifdef HAVE_SMPI
183   if (mc_model_checker->process().privatized() && MC_smpi_process_count()) {
184     // snapshot->privatization_index = smpi_loaded_page
185     mc_model_checker->process().read_variable(
186       "smpi_loaded_page", &snapshot->privatization_index,
187       sizeof(snapshot->privatization_index));
188   } else
189 #endif
190   {
191     snapshot->privatization_index = simgrid::mc::ProcessIndexMissing;
192   }
193 }
194
195 /** \brief Fills the position of the segments (executable, read-only, read/write).
196  *
197  *  `dl_iterate_phdr` would be more robust but would not work in cross-process.
198  * */
199 void MC_find_object_address(
200   std::vector<simgrid::xbt::VmMap> const& maps,
201   simgrid::mc::ObjectInformation* result)
202 {
203   char* file_name = xbt_strdup(result->file_name.c_str());
204   const char *name = basename(file_name);
205   for (size_t i = 0; i < maps.size(); ++i) {
206     simgrid::xbt::VmMap const& reg = maps[i];
207     if (maps[i].pathname.empty()
208         || strcmp(basename(maps[i].pathname.c_str()), name)) {
209       // Nothing to do
210     } else if ((reg.prot & PROT_WRITE)) {
211       xbt_assert(!result->start_rw,
212                  "Multiple read-write segments for %s, not supported",
213                  maps[i].pathname.c_str());
214       result->start_rw = (char*) reg.start_addr;
215       result->end_rw = (char*) reg.end_addr;
216       // .bss is usually after the .data:
217       simgrid::xbt::VmMap const& next = maps[i + 1];
218       if (next.pathname.empty() && (next.prot & PROT_WRITE)
219           && next.start_addr == reg.end_addr) {
220         result->end_rw = (char*) maps[i + 1].end_addr;
221       }
222     } else if ((reg.prot & PROT_READ) && (reg.prot & PROT_EXEC)) {
223       xbt_assert(!result->start_exec,
224                  "Multiple executable segments for %s, not supported",
225                  maps[i].pathname.c_str());
226       result->start_exec = (char*) reg.start_addr;
227       result->end_exec = (char*) reg.end_addr;
228     } else if ((reg.prot & PROT_READ) && !(reg.prot & PROT_EXEC)) {
229       xbt_assert(!result->start_ro,
230                  "Multiple read only segments for %s, not supported",
231                  maps[i].pathname.c_str());
232       result->start_ro = (char*) reg.start_addr;
233       result->end_ro = (char*) reg.end_addr;
234     }
235   }
236
237   result->start = result->start_rw;
238   if ((const void*) result->start_ro > result->start)
239     result->start = result->start_ro;
240   if ((const void*) result->start_exec > result->start)
241     result->start = result->start_exec;
242
243   result->end = result->end_rw;
244   if (result->end_ro && (const void*) result->end_ro < result->end)
245     result->end = result->end_ro;
246   if (result->end_exec && (const void*) result->end_exec > result->end)
247     result->end = result->end_exec;
248
249   xbt_assert(result->start_rw);
250   xbt_assert(result->start_exec);
251   free(file_name);
252 }
253
254 /************************************* Take Snapshot ************************************/
255 /****************************************************************************************/
256
257 /** \brief Checks whether the variable is in scope for a given IP.
258  *
259  *  A variable may be defined only from a given value of IP.
260  *
261  *  \param var   Variable description
262  *  \param frame Scope description
263  *  \param ip    Instruction pointer
264  *  \return      true if the variable is valid
265  * */
266 static bool mc_valid_variable(simgrid::mc::Variable* var,
267                               simgrid::mc::Frame* scope,
268                               const void *ip)
269 {
270   // The variable is not yet valid:
271   if ((const void *) ((const char *) scope->low_pc + var->start_scope) > ip)
272     return false;
273   else
274     return true;
275 }
276
277 static void mc_fill_local_variables_values(mc_stack_frame_t stack_frame,
278                                            simgrid::mc::Frame* scope,
279                                            int process_index,
280                                            std::vector<s_local_variable>& result)
281 {
282   simgrid::mc::Process* process = &mc_model_checker->process();
283
284   void *ip = (void *) stack_frame->ip;
285   if (ip < scope->low_pc || ip >= scope->high_pc)
286     return;
287
288   for(simgrid::mc::Variable& current_variable :
289       scope->variables) {
290
291     if (!mc_valid_variable(&current_variable, scope, (void *) stack_frame->ip))
292       continue;
293
294     int region_type;
295     // FIXME, get rid of `region_type`
296     if ((long) stack_frame->ip > (long) process->libsimgrid_info->start_exec)
297       region_type = 1;
298     else
299       region_type = 2;
300
301     s_local_variable_t new_var;
302     new_var.subprogram = stack_frame->frame;
303     new_var.ip = stack_frame->ip;
304     new_var.name = current_variable.name;
305     new_var.type = current_variable.type;
306     new_var.region = region_type;
307     new_var.address = nullptr;
308
309     if (current_variable.address != NULL) {
310       new_var.address = current_variable.address;
311     } else if (!current_variable.location_list.empty()) {
312       simgrid::dwarf::Location location =
313         simgrid::dwarf::resolve(
314           current_variable.location_list,
315           current_variable.object_info,
316           &(stack_frame->unw_cursor),
317           (void *) stack_frame->frame_base,
318           &mc_model_checker->process(), process_index);
319
320       if (!location.in_memory())
321         xbt_die("Cannot handle non-address variable");
322       new_var.address = location.address();
323
324     } else {
325       xbt_die("No address");
326     }
327
328     result.push_back(std::move(new_var));
329   }
330
331   // Recursive processing of nested scopes:
332   for(simgrid::mc::Frame& nested_scope : scope->scopes)
333     mc_fill_local_variables_values(
334       stack_frame, &nested_scope, process_index, result);
335 }
336
337 static std::vector<s_local_variable> MC_get_local_variables_values(
338   std::vector<s_mc_stack_frame_t>& stack_frames, int process_index)
339 {
340   std::vector<s_local_variable> variables;
341   for (s_mc_stack_frame_t& stack_frame : stack_frames)
342     mc_fill_local_variables_values(&stack_frame, stack_frame.frame, process_index, variables);
343   return std::move(variables);
344 }
345
346 static void MC_stack_frame_free_voipd(void *s)
347 {
348   mc_stack_frame_t stack_frame = *(mc_stack_frame_t *) s;
349   delete(stack_frame);
350 }
351
352 static std::vector<s_mc_stack_frame_t> MC_unwind_stack_frames(mc_unw_context_t stack_context)
353 {
354   simgrid::mc::Process* process = &mc_model_checker->process();
355   std::vector<s_mc_stack_frame_t> result;
356
357   unw_cursor_t c;
358
359   // TODO, check condition check (unw_init_local==0 means end of frame)
360   if (mc_unw_init_cursor(&c, stack_context) != 0) {
361
362     xbt_die("Could not initialize stack unwinding");
363
364   } else
365     while (1) {
366
367       s_mc_stack_frame_t stack_frame;
368
369       stack_frame.unw_cursor = c;
370
371       unw_word_t ip, sp;
372
373       unw_get_reg(&c, UNW_REG_IP, &ip);
374       unw_get_reg(&c, UNW_REG_SP, &sp);
375
376       stack_frame.ip = ip;
377       stack_frame.sp = sp;
378
379       // TODO, use real addresses in frame_t instead of fixing it here
380
381       simgrid::mc::Frame* frame = process->find_function(remote(ip));
382       stack_frame.frame = frame;
383
384       if (frame) {
385         stack_frame.frame_name = frame->name;
386         stack_frame.frame_base =
387             (unw_word_t) frame->frame_base(c);
388       } else {
389         stack_frame.frame_base = 0;
390         stack_frame.frame_name = std::string();
391       }
392
393       result.push_back(std::move(stack_frame));
394
395       /* Stop before context switch with maestro */
396       if (frame != nullptr &&
397           frame->name == "smx_ctx_sysv_wrapper")
398         break;
399
400       int ret = unw_step(&c);
401       if (ret == 0) {
402         xbt_die("Unexpected end of stack.");
403       } else if (ret < 0) {
404         xbt_die("Error while unwinding stack");
405       }
406     }
407
408   if (result.empty()) {
409     XBT_INFO("unw_init_local failed");
410     xbt_abort();
411   }
412
413   return std::move(result);
414 };
415
416 static std::vector<s_mc_snapshot_stack_t> MC_take_snapshot_stacks(mc_snapshot_t * snapshot)
417 {
418   std::vector<s_mc_snapshot_stack_t> res;
419
420   unsigned int cursor = 0;
421   stack_region_t current_stack;
422
423   // FIXME, cross-process support (stack_areas)
424   xbt_dynar_foreach(stacks_areas, cursor, current_stack) {
425     s_mc_snapshot_stack_t st;
426
427     // Read the context from remote process:
428     unw_context_t context;
429     mc_model_checker->process().read_bytes(
430       &context, sizeof(context), remote(current_stack->context));
431
432     if (mc_unw_init_context(&st.context, &mc_model_checker->process(),
433       &context) < 0) {
434       xbt_die("Could not initialise the libunwind context.");
435     }
436     st.stack_frames = MC_unwind_stack_frames(&st.context);
437     st.local_variables = MC_get_local_variables_values(st.stack_frames, current_stack->process_index);
438     st.process_index = current_stack->process_index;
439
440     unw_word_t sp = st.stack_frames[0].sp;
441
442     res.push_back(std::move(st));
443
444     size_t stack_size =
445       (char*) current_stack->address + current_stack->size - (char*) sp;
446     (*snapshot)->stack_sizes.push_back(stack_size);
447   }
448
449   return std::move(res);
450
451 }
452
453 static std::vector<s_mc_heap_ignore_region_t> MC_take_snapshot_ignore()
454 {
455   std::vector<s_mc_heap_ignore_region_t> res;
456
457   if (mc_heap_comparison_ignore == NULL)
458     return std::move(res);
459
460   unsigned int cursor = 0;
461   mc_heap_ignore_region_t current_region;
462
463   xbt_dynar_foreach(mc_heap_comparison_ignore, cursor, current_region) {
464     s_mc_heap_ignore_region_t new_region;
465     new_region.address = current_region->address;
466     new_region.size = current_region->size;
467     new_region.block = current_region->block;
468     new_region.fragment = current_region->fragment;
469     res.push_back(std::move(new_region));
470   }
471
472   return std::move(res);
473 }
474
475 static void MC_snapshot_handle_ignore(mc_snapshot_t snapshot)
476 {
477   xbt_assert(snapshot->process());
478   
479   // Copy the memory:
480   for (auto const& region : mc_model_checker->process().ignored_regions()) {
481     s_mc_snapshot_ignored_data_t ignored_data;
482     ignored_data.start = (void*)region.addr;
483     ignored_data.data.resize(region.size);
484     // TODO, we should do this once per privatization segment:
485     snapshot->process()->read_bytes(
486       ignored_data.data.data(), region.size, remote(region.addr),
487       simgrid::mc::ProcessIndexDisabled);
488     snapshot->ignored_data.push_back(std::move(ignored_data));
489   }
490
491   // Zero the memory:
492   for(auto const& region : mc_model_checker->process().ignored_regions()) {
493     snapshot->process()->clear_bytes(remote(region.addr), region.size);
494   }
495
496 }
497
498 static void MC_snapshot_ignore_restore(mc_snapshot_t snapshot)
499 {
500   for (auto const& ignored_data : snapshot->ignored_data)
501     snapshot->process()->write_bytes(
502       ignored_data.data.data(), ignored_data.data.size(),
503       remote(ignored_data.start));
504 }
505
506 static std::vector<s_fd_infos_t> MC_get_current_fds(pid_t pid)
507 {
508   const size_t fd_dir_path_size = 20;
509   char fd_dir_path[fd_dir_path_size];
510   int res = snprintf(fd_dir_path, fd_dir_path_size,
511     "/proc/%lli/fd", (long long int) pid);
512   xbt_assert(res >= 0);
513   if ((size_t) res > fd_dir_path_size)
514     xbt_die("Unexpected buffer is too small for fd_dir_path");
515
516   DIR* fd_dir = opendir(fd_dir_path);
517   if (fd_dir == NULL)
518     xbt_die("Cannot open directory '/proc/self/fd'\n");
519
520   std::vector<s_fd_infos_t> fds;
521
522   struct dirent* fd_number;
523   while ((fd_number = readdir(fd_dir))) {
524
525     int fd_value = atoi(fd_number->d_name);
526
527     if(fd_value < 3)
528       continue;
529
530     const size_t source_size = 25;
531     char source[25];
532     int res = snprintf(source, source_size, "/proc/%lli/fd/%s",
533         (long long int) pid, fd_number->d_name);
534     xbt_assert(res >= 0);
535     if ((size_t) res > source_size)
536       xbt_die("Unexpected buffer is too small for fd %s", fd_number->d_name);
537
538     const size_t link_size = 200;
539     char link[200];
540     res = readlink(source, link, link_size);
541     if (res<0) {
542       xbt_die("Could not read link for %s", source);
543     }
544     if (res==200) {
545       xbt_die("Buffer to small for link of %s", source);
546     }
547     link[res] = '\0';
548
549 #ifdef HAVE_SMPI
550     if(smpi_is_privatisation_file(link))
551       continue;
552 #endif
553
554     // This is (probably) the DIR* we are reading:
555     // TODO, read all the file entries at once and close the DIR.*
556     if(strcmp(fd_dir_path, link) == 0)
557       continue;
558
559     // We don't handle them.
560     // It does not mean we should silently ignore them however.
561     if (strncmp(link, "pipe:", 5) == 0 || strncmp(link, "socket:", 7) == 0)
562       continue;
563
564     // If dot_output enabled, do not handle the corresponding file
565     if (dot_output !=  NULL && strcmp(basename(link), _sg_mc_dot_output_file) == 0)
566       continue;
567
568     // This is probably a shared memory used by lttng-ust:
569     if(strncmp("/dev/shm/ust-shm-tmp-", link, 21)==0)
570       continue;
571
572     // Add an entry for this FD in the snapshot:
573     s_fd_infos_t fd;
574     fd.filename = std::string(link);
575     fd.number = fd_value;
576     fd.flags = fcntl(fd_value, F_GETFL) | fcntl(fd_value, F_GETFD) ;
577     fd.current_position = lseek(fd_value, 0, SEEK_CUR);
578     fds.push_back(std::move(fd));
579   }
580
581   closedir (fd_dir);
582   return std::move(fds);
583 }
584
585 mc_snapshot_t MC_take_snapshot(int num_state)
586 {
587   XBT_DEBUG("Taking snapshot %i", num_state);
588
589   simgrid::mc::Process* mc_process = &mc_model_checker->process();
590
591   mc_snapshot_t snapshot = new simgrid::mc::Snapshot(mc_process);
592
593   snapshot->num_state = num_state;
594
595   smx_process_t process;
596   MC_EACH_SIMIX_PROCESS(process,
597     snapshot->enabled_processes.insert(process->pid));
598
599   MC_snapshot_handle_ignore(snapshot);
600
601   if (_sg_mc_snapshot_fds)
602     snapshot->current_fds = MC_get_current_fds(process->pid);
603
604   const bool use_soft_dirty = _sg_mc_sparse_checkpoint && _sg_mc_soft_dirty;
605
606   /* Save the std heap and the writable mapped pages of libsimgrid and binary */
607   MC_get_memory_regions(mc_process, snapshot);
608   if (use_soft_dirty)
609     mc_process->reset_soft_dirty();
610
611   snapshot->to_ignore = MC_take_snapshot_ignore();
612
613   if (_sg_mc_visited > 0 || strcmp(_sg_mc_property_file, "")) {
614     snapshot->stacks =
615         MC_take_snapshot_stacks(&snapshot);
616     if (_sg_mc_hash) {
617       snapshot->hash = simgrid::mc::hash(*snapshot);
618     } else {
619       snapshot->hash = 0;
620     }
621   } else {
622     snapshot->hash = 0;
623   }
624
625   MC_snapshot_ignore_restore(snapshot);
626   if (use_soft_dirty)
627     mc_model_checker->parent_snapshot_ = snapshot;
628   return snapshot;
629 }
630
631 static inline
632 void MC_restore_snapshot_regions(mc_snapshot_t snapshot)
633 {
634   for(std::unique_ptr<s_mc_mem_region_t> const& region : snapshot->snapshot_regions) {
635     // For privatized, variables we decided it was not necessary to take the snapshot:
636     if (region)
637       MC_region_restore(region.get());
638   }
639
640 #ifdef HAVE_SMPI
641   // TODO, send a message to implement this in the MCed process
642   if(snapshot->privatization_index >= 0) {
643     // Fix the privatization mmap:
644     s_mc_restore_message message;
645     message.type = MC_MESSAGE_RESTORE;
646     message.index = snapshot->privatization_index;
647     mc_model_checker->process().send_message(message);
648   }
649 #endif
650 }
651
652 static inline
653 void MC_restore_snapshot_fds(mc_snapshot_t snapshot)
654 {
655   if (mc_mode == MC_MODE_SERVER)
656     xbt_die("FD snapshot not implemented in client/server mode.");
657
658   for (auto const& fd : snapshot->current_fds) {
659     
660     int new_fd = open(fd.filename.c_str(), fd.flags);
661     if (new_fd < 0) {
662       xbt_die("Could not reopen the file %s fo restoring the file descriptor",
663         fd.filename.c_str());
664     }
665     if (new_fd != fd.number) {
666       dup2(new_fd, fd.number);
667       close(new_fd);
668     };
669     lseek(fd.number, fd.current_position, SEEK_SET);
670   }
671 }
672
673 void MC_restore_snapshot(mc_snapshot_t snapshot)
674 {
675   XBT_DEBUG("Restore snapshot %i", snapshot->num_state);
676   const bool use_soft_dirty = _sg_mc_sparse_checkpoint && _sg_mc_soft_dirty;
677   MC_restore_snapshot_regions(snapshot);
678   if (_sg_mc_snapshot_fds)
679     MC_restore_snapshot_fds(snapshot);
680   if (use_soft_dirty)
681     mc_model_checker->process().reset_soft_dirty();
682   MC_snapshot_ignore_restore(snapshot);
683   mc_model_checker->process().cache_flags = 0;
684   if (use_soft_dirty)
685     mc_model_checker->parent_snapshot_ = snapshot;
686 }
687
688 mc_snapshot_t simcall_HANDLER_mc_snapshot(smx_simcall_t simcall)
689 {
690   return MC_take_snapshot(1);
691 }
692
693 }