Logo AND Algorithmique Numérique Distribuée

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