Logo AND Algorithmique Numérique Distribuée

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