Logo AND Algorithmique Numérique Distribuée

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