Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Fix memory leak in MC_get_memory_regions()
[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   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   free(file_name);
262 }
263
264 /************************************* Take Snapshot ************************************/
265 /****************************************************************************************/
266
267 /** \brief Checks whether the variable is in scope for a given IP.
268  *
269  *  A variable may be defined only from a given value of IP.
270  *
271  *  \param var   Variable description
272  *  \param frame Scope description
273  *  \param ip    Instruction pointer
274  *  \return      true if the variable is valid
275  * */
276 static bool mc_valid_variable(simgrid::mc::Variable* var, simgrid::mc::Frame* scope,
277                               const void *ip)
278 {
279   // The variable is not yet valid:
280   if ((const void *) ((const char *) scope->low_pc + var->start_scope) > ip)
281     return false;
282   else
283     return true;
284 }
285
286 static void mc_fill_local_variables_values(mc_stack_frame_t stack_frame,
287                                            simgrid::mc::Frame* scope, int process_index,
288                                            std::vector<s_local_variable>& result)
289 {
290   simgrid::mc::Process* process = &mc_model_checker->process();
291
292   void *ip = (void *) stack_frame->ip;
293   if (ip < scope->low_pc || ip >= scope->high_pc)
294     return;
295
296   for(simgrid::mc::Variable& current_variable :
297       scope->variables) {
298
299     if (!mc_valid_variable(&current_variable, scope, (void *) stack_frame->ip))
300       continue;
301
302     int region_type;
303     // FIXME, get rid of `region_type`
304     if ((long) stack_frame->ip > (long) process->libsimgrid_info->start_exec)
305       region_type = 1;
306     else
307       region_type = 2;
308
309     s_local_variable_t new_var;
310     new_var.subprogram = stack_frame->frame;
311     new_var.ip = stack_frame->ip;
312     new_var.name = current_variable.name;
313     new_var.type = current_variable.type;
314     new_var.region = region_type;
315     new_var.address = nullptr;
316
317     if (current_variable.address != NULL) {
318       new_var.address = current_variable.address;
319     } else if (!current_variable.location_list.empty()) {
320       s_mc_location_t location;
321       mc_dwarf_resolve_locations(
322         &location, &current_variable.location_list,
323         current_variable.object_info,
324         &(stack_frame->unw_cursor),
325         (void *) stack_frame->frame_base,
326         &mc_model_checker->process(), process_index);
327
328       switch(mc_get_location_type(&location)) {
329       case MC_LOCATION_TYPE_ADDRESS:
330         new_var.address = location.memory_location;
331         break;
332       case MC_LOCATION_TYPE_REGISTER:
333       default:
334         xbt_die("Cannot handle non-address variable");
335       }
336
337     } else {
338       xbt_die("No address");
339     }
340
341     result.push_back(std::move(new_var));
342   }
343
344   // Recursive processing of nested scopes:
345   for(simgrid::mc::Frame& nested_scope : scope->scopes)
346     mc_fill_local_variables_values(
347       stack_frame, &nested_scope, process_index, result);
348 }
349
350 static std::vector<s_local_variable> MC_get_local_variables_values(
351   std::vector<s_mc_stack_frame_t>& stack_frames, int process_index)
352 {
353   std::vector<s_local_variable> variables;
354   for (s_mc_stack_frame_t& stack_frame : stack_frames)
355     mc_fill_local_variables_values(&stack_frame, stack_frame.frame, process_index, variables);
356   return std::move(variables);
357 }
358
359 static void MC_stack_frame_free_voipd(void *s)
360 {
361   mc_stack_frame_t stack_frame = *(mc_stack_frame_t *) s;
362   delete(stack_frame);
363 }
364
365 static std::vector<s_mc_stack_frame_t> MC_unwind_stack_frames(mc_unw_context_t stack_context)
366 {
367   simgrid::mc::Process* process = &mc_model_checker->process();
368   std::vector<s_mc_stack_frame_t> result;
369
370   unw_cursor_t c;
371
372   // TODO, check condition check (unw_init_local==0 means end of frame)
373   if (mc_unw_init_cursor(&c, stack_context) != 0) {
374
375     xbt_die("Could not initialize stack unwinding");
376
377   } else
378     while (1) {
379
380       s_mc_stack_frame_t stack_frame;
381
382       stack_frame.unw_cursor = c;
383
384       unw_word_t ip, sp;
385
386       unw_get_reg(&c, UNW_REG_IP, &ip);
387       unw_get_reg(&c, UNW_REG_SP, &sp);
388
389       stack_frame.ip = ip;
390       stack_frame.sp = sp;
391
392       // TODO, use real addresses in frame_t instead of fixing it here
393
394       simgrid::mc::Frame* frame = process->find_function(remote(ip));
395       stack_frame.frame = frame;
396
397       if (frame) {
398         stack_frame.frame_name = frame->name;
399         stack_frame.frame_base =
400             (unw_word_t) mc_find_frame_base(frame, frame->object_info, &c);
401       } else {
402         stack_frame.frame_base = 0;
403         stack_frame.frame_name = std::string();
404       }
405
406       result.push_back(std::move(stack_frame));
407
408       /* Stop before context switch with maestro */
409       if (frame != nullptr &&
410           frame->name == "smx_ctx_sysv_wrapper")
411         break;
412
413       int ret = unw_step(&c);
414       if (ret == 0) {
415         xbt_die("Unexpected end of stack.");
416       } else if (ret < 0) {
417         xbt_die("Error while unwinding stack");
418       }
419     }
420
421   if (result.empty()) {
422     XBT_INFO("unw_init_local failed");
423     xbt_abort();
424   }
425
426   return std::move(result);
427 };
428
429 static std::vector<s_mc_snapshot_stack_t> MC_take_snapshot_stacks(mc_snapshot_t * snapshot)
430 {
431   std::vector<s_mc_snapshot_stack_t> res;
432
433   unsigned int cursor = 0;
434   stack_region_t current_stack;
435
436   // FIXME, cross-process support (stack_areas)
437   xbt_dynar_foreach(stacks_areas, cursor, current_stack) {
438     s_mc_snapshot_stack_t st;
439
440     // Read the context from remote process:
441     unw_context_t context;
442     mc_model_checker->process().read_bytes(
443       &context, sizeof(context), remote(current_stack->context));
444
445     if (mc_unw_init_context(&st.context, &mc_model_checker->process(),
446       &context) < 0) {
447       xbt_die("Could not initialise the libunwind context.");
448     }
449     st.stack_frames = MC_unwind_stack_frames(&st.context);
450     st.local_variables = MC_get_local_variables_values(st.stack_frames, current_stack->process_index);
451     st.process_index = current_stack->process_index;
452
453     unw_word_t sp = st.stack_frames[0].sp;
454
455     res.push_back(std::move(st));
456
457     size_t stack_size =
458       (char*) current_stack->address + current_stack->size - (char*) sp;
459     (*snapshot)->stack_sizes.push_back(stack_size);
460   }
461
462   return std::move(res);
463
464 }
465
466 static std::vector<s_mc_heap_ignore_region_t> MC_take_snapshot_ignore()
467 {
468   std::vector<s_mc_heap_ignore_region_t> res;
469
470   if (mc_heap_comparison_ignore == NULL)
471     return std::move(res);
472
473   unsigned int cursor = 0;
474   mc_heap_ignore_region_t current_region;
475
476   xbt_dynar_foreach(mc_heap_comparison_ignore, cursor, current_region) {
477     s_mc_heap_ignore_region_t new_region;
478     new_region.address = current_region->address;
479     new_region.size = current_region->size;
480     new_region.block = current_region->block;
481     new_region.fragment = current_region->fragment;
482     res.push_back(std::move(new_region));
483   }
484
485   return std::move(res);
486 }
487
488 static void MC_snapshot_handle_ignore(mc_snapshot_t snapshot)
489 {
490   xbt_assert(snapshot->process);
491   
492   // Copy the memory:
493   for (auto const& region : mc_model_checker->process().ignored_regions()) {
494     s_mc_snapshot_ignored_data_t ignored_data;
495     ignored_data.start = (void*)region.addr;
496     ignored_data.data.resize(region.size);
497     // TODO, we should do this once per privatization segment:
498     snapshot->process->read_bytes(
499       ignored_data.data.data(), region.size, remote(region.addr),
500       simgrid::mc::ProcessIndexDisabled);
501     snapshot->ignored_data.push_back(std::move(ignored_data));
502   }
503
504   // Zero the memory:
505   for(auto const& region : mc_model_checker->process().ignored_regions()) {
506     snapshot->process->clear_bytes(remote(region.addr), region.size);
507   }
508
509 }
510
511 static void MC_snapshot_ignore_restore(mc_snapshot_t snapshot)
512 {
513   for (auto const& ignored_data : snapshot->ignored_data)
514     snapshot->process->write_bytes(
515       ignored_data.data.data(), ignored_data.data.size(),
516       remote(ignored_data.start));
517 }
518
519 static std::vector<s_fd_infos_t> MC_get_current_fds(pid_t pid)
520 {
521   const size_t fd_dir_path_size = 20;
522   char fd_dir_path[fd_dir_path_size];
523   int res = snprintf(fd_dir_path, fd_dir_path_size,
524     "/proc/%lli/fd", (long long int) pid);
525   xbt_assert(res >= 0);
526   if ((size_t) res > fd_dir_path_size)
527     xbt_die("Unexpected buffer is too small for fd_dir_path");
528
529   DIR* fd_dir = opendir(fd_dir_path);
530   if (fd_dir == NULL)
531     xbt_die("Cannot open directory '/proc/self/fd'\n");
532
533   std::vector<s_fd_infos_t> fds;
534
535   struct dirent* fd_number;
536   while ((fd_number = readdir(fd_dir))) {
537
538     int fd_value = atoi(fd_number->d_name);
539
540     if(fd_value < 3)
541       continue;
542
543     const size_t source_size = 25;
544     char source[25];
545     int res = snprintf(source, source_size, "/proc/%lli/fd/%s",
546         (long long int) pid, fd_number->d_name);
547     xbt_assert(res >= 0);
548     if ((size_t) res > source_size)
549       xbt_die("Unexpected buffer is too small for fd %s", fd_number->d_name);
550
551     const size_t link_size = 200;
552     char link[200];
553     res = readlink(source, link, link_size);
554     if (res<0) {
555       xbt_die("Could not read link for %s", source);
556     }
557     if (res==200) {
558       xbt_die("Buffer to small for link of %s", source);
559     }
560     link[res] = '\0';
561
562 #ifdef HAVE_SMPI
563     if(smpi_is_privatisation_file(link))
564       continue;
565 #endif
566
567     // This is (probably) the DIR* we are reading:
568     // TODO, read all the file entries at once and close the DIR.*
569     if(strcmp(fd_dir_path, link) == 0)
570       continue;
571
572     // We don't handle them.
573     // It does not mean we should silently ignore them however.
574     if (strncmp(link, "pipe:", 5) == 0 || strncmp(link, "socket:", 7) == 0)
575       continue;
576
577     // If dot_output enabled, do not handle the corresponding file
578     if (dot_output !=  NULL && strcmp(basename(link), _sg_mc_dot_output_file) == 0)
579       continue;
580
581     // This is probably a shared memory used by lttng-ust:
582     if(strncmp("/dev/shm/ust-shm-tmp-", link, 21)==0)
583       continue;
584
585     // Add an entry for this FD in the snapshot:
586     s_fd_infos_t fd;
587     fd.filename = std::string(link);
588     fd.number = fd_value;
589     fd.flags = fcntl(fd_value, F_GETFL) | fcntl(fd_value, F_GETFD) ;
590     fd.current_position = lseek(fd_value, 0, SEEK_CUR);
591     fds.push_back(std::move(fd));
592   }
593
594   closedir (fd_dir);
595   return std::move(fds);
596 }
597
598 mc_snapshot_t MC_take_snapshot(int num_state)
599 {
600   XBT_DEBUG("Taking snapshot %i", num_state);
601
602   simgrid::mc::Process* mc_process = &mc_model_checker->process();
603
604   mc_snapshot_t snapshot = new simgrid::mc::Snapshot();
605
606   snapshot->process = mc_process;
607   snapshot->num_state = num_state;
608
609   smx_process_t process;
610   MC_EACH_SIMIX_PROCESS(process,
611     snapshot->enabled_processes.insert(process->pid));
612
613   MC_snapshot_handle_ignore(snapshot);
614
615   if (_sg_mc_snapshot_fds)
616     snapshot->current_fds = MC_get_current_fds(process->pid);
617
618   const bool use_soft_dirty = _sg_mc_sparse_checkpoint && _sg_mc_soft_dirty;
619
620   /* Save the std heap and the writable mapped pages of libsimgrid and binary */
621   MC_get_memory_regions(mc_process, snapshot);
622   if (use_soft_dirty)
623     mc_process->reset_soft_dirty();
624
625   snapshot->to_ignore = MC_take_snapshot_ignore();
626
627   if (_sg_mc_visited > 0 || strcmp(_sg_mc_property_file, "")) {
628     snapshot->stacks =
629         MC_take_snapshot_stacks(&snapshot);
630     if (_sg_mc_hash && !snapshot->stacks.empty()) {
631       snapshot->hash = simgrid::mc::hash(*snapshot);
632     } else {
633       snapshot->hash = 0;
634     }
635   } else {
636     snapshot->hash = 0;
637   }
638
639   MC_snapshot_ignore_restore(snapshot);
640   if (use_soft_dirty)
641     mc_model_checker->parent_snapshot_ = snapshot;
642   return snapshot;
643 }
644
645 static inline
646 void MC_restore_snapshot_regions(mc_snapshot_t snapshot)
647 {
648   for(std::unique_ptr<s_mc_mem_region_t> const& region : snapshot->snapshot_regions) {
649     // For privatized, variables we decided it was not necessary to take the snapshot:
650     if (region)
651       MC_region_restore(region.get());
652   }
653
654 #ifdef HAVE_SMPI
655   // TODO, send a message to implement this in the MCed process
656   if(snapshot->privatization_index >= 0) {
657     // We just rewrote the global variables.
658     // The privatisation segment SMPI thinks
659     // is mapped might be inconsistent with the segment which
660     // is really mapped in memory (kernel state).
661     // We ask politely SMPI to map the segment anyway,
662     // even if it thinks it is the current one:
663     smpi_really_switch_data_segment(snapshot->privatization_index);
664   }
665 #endif
666 }
667
668 static inline
669 void MC_restore_snapshot_fds(mc_snapshot_t snapshot)
670 {
671   if (mc_mode == MC_MODE_SERVER)
672     xbt_die("FD snapshot not implemented in client/server mode.");
673
674   for (auto const& fd : snapshot->current_fds) {
675     
676     int new_fd = open(fd.filename.c_str(), fd.flags);
677     if (new_fd < 0) {
678       xbt_die("Could not reopen the file %s fo restoring the file descriptor",
679         fd.filename.c_str());
680     }
681     if (new_fd != fd.number) {
682       dup2(new_fd, fd.number);
683       close(new_fd);
684     };
685     lseek(fd.number, fd.current_position, SEEK_SET);
686   }
687 }
688
689 void MC_restore_snapshot(mc_snapshot_t snapshot)
690 {
691   XBT_DEBUG("Restore snapshot %i", snapshot->num_state);
692   const bool use_soft_dirty = _sg_mc_sparse_checkpoint && _sg_mc_soft_dirty;
693   MC_restore_snapshot_regions(snapshot);
694   if (_sg_mc_snapshot_fds)
695     MC_restore_snapshot_fds(snapshot);
696   if (use_soft_dirty)
697     mc_model_checker->process().reset_soft_dirty();
698   MC_snapshot_ignore_restore(snapshot);
699   mc_model_checker->process().cache_flags = 0;
700   if (use_soft_dirty)
701     mc_model_checker->parent_snapshot_ = snapshot;
702 }
703
704 mc_snapshot_t simcall_HANDLER_mc_snapshot(smx_simcall_t simcall)
705 {
706   return MC_take_snapshot(1);
707 }
708
709 }