Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mm] Allow to disable the mm based `malloc` at runtime
[simgrid.git] / src / mc / mc_checkpoint.c
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 #define _GNU_SOURCE
8 #define UNW_LOCAL_ONLY
9
10 #include <unistd.h>
11
12 #include <string.h>
13 #include <link.h>
14 #include <dirent.h>
15
16 #include "internal_config.h"
17 #include "mc_memory_map.h"
18 #include "mc_private.h"
19 #include "xbt/module.h"
20 #include <xbt/mmalloc.h>
21 #include "../smpi/private.h"
22 #include <alloca.h>
23
24 #include "xbt/mmalloc/mmprivate.h"
25
26 #include "../simix/smx_private.h"
27
28 #define UNW_LOCAL_ONLY
29 #include <libunwind.h>
30 #include <libelf.h>
31
32 #include "mc_private.h"
33 #include <mc/mc.h>
34
35 #include "mc_snapshot.h"
36 #include "mc_object_info.h"
37 #include "mc_mmu.h"
38
39 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_checkpoint, mc,
40                                 "Logging specific to mc_checkpoint");
41
42 /************************************  Free functions **************************************/
43 /*****************************************************************************************/
44
45 static void MC_snapshot_stack_free(mc_snapshot_stack_t s)
46 {
47   if (s) {
48     xbt_dynar_free(&(s->local_variables));
49     xbt_dynar_free(&(s->stack_frames));
50     xbt_free(s);
51   }
52 }
53
54 static void MC_snapshot_stack_free_voidp(void *s)
55 {
56   MC_snapshot_stack_free((mc_snapshot_stack_t) * (void **) s);
57 }
58
59 static void local_variable_free(local_variable_t v)
60 {
61   xbt_free(v->name);
62   xbt_free(v);
63 }
64
65 static void local_variable_free_voidp(void *v)
66 {
67   local_variable_free((local_variable_t) * (void **) v);
68 }
69
70 void MC_region_destroy(mc_mem_region_t region)
71 {
72   if (!region)
73     return;
74   switch(region->storage_type) {
75     case MC_REGION_STORAGE_TYPE_NONE:
76       break;
77     case MC_REGION_STORAGE_TYPE_FLAT:
78       xbt_free(region->flat.data);
79       break;
80     case MC_REGION_STORAGE_TYPE_CHUNKED:
81       mc_free_page_snapshot_region(region->chunked.page_numbers, mc_page_count(region->size));
82       xbt_free(region->chunked.page_numbers);
83       break;
84     case MC_REGION_STORAGE_TYPE_PRIVATIZED:
85       {
86         size_t regions_count = region->privatized.regions_count;
87         for (size_t i=0; i!=regions_count; ++i) {
88           MC_region_destroy(region->privatized.regions[i]);
89         }
90         free(region->privatized.regions);
91         break;
92       }
93   }
94   xbt_free(region);
95 }
96
97 void MC_free_snapshot(mc_snapshot_t snapshot)
98 {
99   for (size_t i = 0; i < snapshot->snapshot_regions_count; i++) {
100     MC_region_destroy(snapshot->snapshot_regions[i]);
101   }
102   xbt_free(snapshot->snapshot_regions);
103   xbt_free(snapshot->stack_sizes);
104   xbt_dynar_free(&(snapshot->stacks));
105   xbt_dynar_free(&(snapshot->to_ignore));
106   xbt_dynar_free(&snapshot->ignored_data);
107   xbt_free(snapshot);
108 }
109
110 /*******************************  Snapshot regions ********************************/
111 /*********************************************************************************/
112
113 static mc_mem_region_t mc_region_new_dense(
114   mc_region_type_t region_type,
115   void *start_addr, void* permanent_addr, size_t size, mc_mem_region_t ref_reg)
116 {
117   mc_mem_region_t region = xbt_new(s_mc_mem_region_t, 1);
118   region->region_type = region_type;
119   region->storage_type = MC_REGION_STORAGE_TYPE_FLAT;
120   region->start_addr = start_addr;
121   region->permanent_addr = permanent_addr;
122   region->size = size;
123   region->flat.data = xbt_malloc(size);
124   memcpy(region->flat.data, permanent_addr, size);
125   XBT_DEBUG("New region : type : %d, data : %p (real addr %p), size : %zu",
126             region_type, region->flat.data, permanent_addr, size);
127   return region;
128 }
129
130 /** @brief Take a snapshot of a given region
131  *
132  * @param type
133  * @param start_addr   Address of the region in the simulated process
134  * @param permanent_addr Permanent address of this data (for privatized variables, this is the virtual address of the privatized mapping)
135  * @param size         Size of the data*
136  * @param ref_reg      Reference corresponding region
137  */
138 static mc_mem_region_t MC_region_new(mc_region_type_t type, void *start_addr, void* permanent_addr, size_t size, mc_mem_region_t ref_reg)
139 {
140   if (_sg_mc_sparse_checkpoint) {
141     return mc_region_new_sparse(type, start_addr, permanent_addr, size, ref_reg);
142   } else  {
143     return mc_region_new_dense(type, start_addr, permanent_addr, size, ref_reg);
144   }
145 }
146
147 /** @brief Restore a region from a snapshot
148  *
149  *  If we are using per page snapshots, it is possible to use the reference
150  *  region in order to do an incremental restoration of the region: the
151  *  softclean pages which are shared between the two snapshots do not need
152  *  to be restored.
153  *
154  *  @param reg     Target region
155  *  @param reg_reg Current region (if not NULL), used for lazy per page restoration
156  */
157 static void MC_region_restore(mc_mem_region_t region, mc_mem_region_t ref_region)
158 {
159   switch(region->storage_type) {
160   case MC_REGION_STORAGE_TYPE_NONE:
161   default:
162     xbt_die("Storage type not supported");
163     break;
164
165   case MC_REGION_STORAGE_TYPE_FLAT:
166     memcpy(region->permanent_addr, region->flat.data, region->size);
167     break;
168
169   case MC_REGION_STORAGE_TYPE_CHUNKED:
170     mc_region_restore_sparse(region, ref_region);
171     break;
172
173   case MC_REGION_STORAGE_TYPE_PRIVATIZED:
174     {
175       bool has_ref_regions = ref_region &&
176         ref_region->storage_type == MC_REGION_STORAGE_TYPE_PRIVATIZED;
177       size_t process_count = region->privatized.regions_count;
178       for (size_t i = 0; i < process_count; i++) {
179         MC_region_restore(region->privatized.regions[i],
180           has_ref_regions ? ref_region->privatized.regions[i] : NULL);
181       }
182       break;
183     }
184   }
185 }
186
187 static inline
188 void* MC_privatization_address(mc_process_t process, int process_index)
189 {
190   xbt_assert(process_index >= 0);
191   return smpi_privatisation_regions[process_index].address;
192 }
193
194 static mc_mem_region_t MC_region_new_privatized(
195     mc_region_type_t region_type, void *start_addr, void* permanent_addr, size_t size,
196     mc_mem_region_t ref_reg)
197 {
198   size_t process_count = smpi_process_count();
199   mc_mem_region_t region = xbt_new(s_mc_mem_region_t, 1);
200   region->region_type = region_type;
201   region->storage_type = MC_REGION_STORAGE_TYPE_PRIVATIZED;
202   region->start_addr = start_addr;
203   region->permanent_addr = permanent_addr;
204   region->size = size;
205   region->privatized.regions_count = process_count;
206   region->privatized.regions = xbt_new(mc_mem_region_t, process_count);
207
208   for (size_t i = 0; i < process_count; i++) {
209     mc_mem_region_t ref_subreg = NULL;
210     if (ref_reg && ref_reg->storage_type == MC_REGION_STORAGE_TYPE_PRIVATIZED)
211       ref_subreg = ref_reg->privatized.regions[i];
212     region->privatized.regions[i] =
213       MC_region_new(region_type, start_addr,
214         MC_privatization_address(&mc_model_checker->process, i), size,
215         ref_subreg);
216   }
217
218   return region;
219 }
220
221 static void MC_snapshot_add_region(int index, mc_snapshot_t snapshot, mc_region_type_t type,
222                                   mc_object_info_t object_info,
223                                   void *start_addr, void* permanent_addr, size_t size)
224 {
225   if (type == MC_REGION_TYPE_DATA)
226     xbt_assert(object_info, "Missing object info for object.");
227   else if (type == MC_REGION_TYPE_HEAP)
228     xbt_assert(!object_info, "Unexpected object info for heap region.");
229
230   mc_mem_region_t ref_reg = NULL;
231   if (mc_model_checker->parent_snapshot)
232     ref_reg = mc_model_checker->parent_snapshot->snapshot_regions[index];
233
234   mc_mem_region_t region;
235   const bool privatization_aware = object_info && MC_object_info_executable(object_info);
236   if (privatization_aware && smpi_privatize_global_variables && smpi_process_count())
237     region = MC_region_new_privatized(type, start_addr, permanent_addr, size, ref_reg);
238   else
239     region = MC_region_new(type, start_addr, permanent_addr, size, ref_reg);
240
241   region->object_info = object_info;
242   snapshot->snapshot_regions[index] = region;
243   return;
244 }
245
246 static void MC_get_memory_regions(mc_snapshot_t snapshot)
247 {
248   const mc_process_t process = &mc_model_checker->process;
249   const size_t n = process->object_infos_size;
250   snapshot->snapshot_regions_count = n + 1;
251   snapshot->snapshot_regions = xbt_new0(mc_mem_region_t, n + 1);
252
253   for (size_t i = 0; i!=n; ++i) {
254     mc_object_info_t object_info = mc_model_checker->process.object_infos[i];
255     MC_snapshot_add_region(i, snapshot, MC_REGION_TYPE_DATA, object_info,
256       object_info->start_rw, object_info->start_rw,
257       object_info->end_rw - object_info->start_rw);
258   }
259
260   void *start_heap = std_heap->base;
261   void *end_heap = std_heap->breakval;
262   MC_snapshot_add_region(n, snapshot, MC_REGION_TYPE_HEAP, NULL,
263                         start_heap, start_heap,
264                         (char *) end_heap - (char *) start_heap);
265   snapshot->heap_bytes_used = mmalloc_get_bytes_used(std_heap);
266
267 #ifdef HAVE_SMPI
268   if (smpi_privatize_global_variables && smpi_process_count()) {
269     snapshot->privatization_index = smpi_loaded_page;
270   } else
271 #endif
272   {
273     snapshot->privatization_index = MC_NO_PROCESS_INDEX;
274   }
275 }
276
277 /** \brief Fills the position of the segments (executable, read-only, read/write).
278  *
279  * TODO, use dl_iterate_phdr to be more robust
280  * */
281 void MC_find_object_address(memory_map_t maps, mc_object_info_t result)
282 {
283   unsigned int i = 0;
284   s_map_region_t reg;
285   const char *name = basename(result->file_name);
286   while (i < maps->mapsize) {
287     reg = maps->regions[i];
288     if (maps->regions[i].pathname == NULL
289         || strcmp(basename(maps->regions[i].pathname), name)) {
290       // Nothing to do
291     } else if ((reg.prot & PROT_WRITE)) {
292       xbt_assert(!result->start_rw,
293                  "Multiple read-write segments for %s, not supported",
294                  maps->regions[i].pathname);
295       result->start_rw = reg.start_addr;
296       result->end_rw = reg.end_addr;
297       // .bss is usually after the .data:
298       s_map_region_t *next = &(maps->regions[i + 1]);
299       if (next->pathname == NULL && (next->prot & PROT_WRITE)
300           && next->start_addr == reg.end_addr) {
301         result->end_rw = maps->regions[i + 1].end_addr;
302       }
303     } else if ((reg.prot & PROT_READ) && (reg.prot & PROT_EXEC)) {
304       xbt_assert(!result->start_exec,
305                  "Multiple executable segments for %s, not supported",
306                  maps->regions[i].pathname);
307       result->start_exec = reg.start_addr;
308       result->end_exec = reg.end_addr;
309     } else if ((reg.prot & PROT_READ) && !(reg.prot & PROT_EXEC)) {
310       xbt_assert(!result->start_ro,
311                  "Multiple read only segments for %s, not supported",
312                  maps->regions[i].pathname);
313       result->start_ro = reg.start_addr;
314       result->end_ro = reg.end_addr;
315     }
316     i++;
317   }
318
319   xbt_assert(result->file_name);
320   xbt_assert(result->start_rw);
321   xbt_assert(result->start_exec);
322 }
323
324 /************************************* Take Snapshot ************************************/
325 /****************************************************************************************/
326
327 /** \brief Checks whether the variable is in scope for a given IP.
328  *
329  *  A variable may be defined only from a given value of IP.
330  *
331  *  \param var   Variable description
332  *  \param frame Scope description
333  *  \param ip    Instruction pointer
334  *  \return      true if the variable is valid
335  * */
336 static bool mc_valid_variable(dw_variable_t var, dw_frame_t scope,
337                               const void *ip)
338 {
339   // The variable is not yet valid:
340   if ((const void *) ((const char *) scope->low_pc + var->start_scope) > ip)
341     return false;
342   else
343     return true;
344 }
345
346 static void mc_fill_local_variables_values(mc_stack_frame_t stack_frame,
347                                            dw_frame_t scope, int process_index, xbt_dynar_t result)
348 {
349   mc_process_t process = &mc_model_checker->process;
350
351   void *ip = (void *) stack_frame->ip;
352   if (ip < scope->low_pc || ip >= scope->high_pc)
353     return;
354
355   unsigned cursor = 0;
356   dw_variable_t current_variable;
357   xbt_dynar_foreach(scope->variables, cursor, current_variable) {
358
359     if (!mc_valid_variable(current_variable, scope, (void *) stack_frame->ip))
360       continue;
361
362     int region_type;
363     if ((long) stack_frame->ip > (long) process->libsimgrid_info->start_exec)
364       region_type = 1;
365     else
366       region_type = 2;
367
368     local_variable_t new_var = xbt_new0(s_local_variable_t, 1);
369     new_var->subprogram = stack_frame->frame;
370     new_var->ip = stack_frame->ip;
371     new_var->name = xbt_strdup(current_variable->name);
372     new_var->type = current_variable->type;
373     new_var->region = region_type;
374
375     if (current_variable->address != NULL) {
376       new_var->address = current_variable->address;
377     } else if (current_variable->locations.size != 0) {
378       s_mc_location_t location;
379       mc_dwarf_resolve_locations(&location, &current_variable->locations,
380                                               current_variable->object_info,
381                                               &(stack_frame->unw_cursor),
382                                               (void *) stack_frame->frame_base,
383                                               NULL, process_index);
384
385       switch(mc_get_location_type(&location)) {
386       case MC_LOCATION_TYPE_ADDRESS:
387         new_var->address = location.memory_location;
388         break;
389       case MC_LOCATION_TYPE_REGISTER:
390       default:
391         xbt_die("Cannot handle non-address variable");
392       }
393
394     } else {
395       xbt_die("No address");
396     }
397
398     xbt_dynar_push(result, &new_var);
399   }
400
401   // Recursive processing of nested scopes:
402   dw_frame_t nested_scope = NULL;
403   xbt_dynar_foreach(scope->scopes, cursor, nested_scope) {
404     mc_fill_local_variables_values(stack_frame, nested_scope, process_index, result);
405   }
406 }
407
408 static xbt_dynar_t MC_get_local_variables_values(xbt_dynar_t stack_frames, int process_index)
409 {
410
411   unsigned cursor1 = 0;
412   mc_stack_frame_t stack_frame;
413   xbt_dynar_t variables =
414       xbt_dynar_new(sizeof(local_variable_t), local_variable_free_voidp);
415
416   xbt_dynar_foreach(stack_frames, cursor1, stack_frame) {
417     mc_fill_local_variables_values(stack_frame, stack_frame->frame, process_index, variables);
418   }
419
420   return variables;
421 }
422
423 static void MC_stack_frame_free_voipd(void *s)
424 {
425   mc_stack_frame_t stack_frame = *(mc_stack_frame_t *) s;
426   if (stack_frame) {
427     xbt_free(stack_frame->frame_name);
428     xbt_free(stack_frame);
429   }
430 }
431
432 static xbt_dynar_t MC_unwind_stack_frames(void *stack_context)
433 {
434   mc_process_t process = &mc_model_checker->process;
435   xbt_dynar_t result =
436       xbt_dynar_new(sizeof(mc_stack_frame_t), MC_stack_frame_free_voipd);
437
438   unw_cursor_t c;
439
440   // TODO, check condition check (unw_init_local==0 means end of frame)
441   if (unw_init_local(&c, (unw_context_t *) stack_context) != 0) {
442
443     xbt_die("Could not initialize stack unwinding");
444
445   } else
446     while (1) {
447
448       mc_stack_frame_t stack_frame = xbt_new(s_mc_stack_frame_t, 1);
449       xbt_dynar_push(result, &stack_frame);
450
451       stack_frame->unw_cursor = c;
452
453       unw_word_t ip, sp;
454
455       unw_get_reg(&c, UNW_REG_IP, &ip);
456       unw_get_reg(&c, UNW_REG_SP, &sp);
457
458       stack_frame->ip = ip;
459       stack_frame->sp = sp;
460
461       // TODO, use real addresses in frame_t instead of fixing it here
462
463       dw_frame_t frame = MC_process_find_function(process, (void *) ip);
464       stack_frame->frame = frame;
465
466       if (frame) {
467         stack_frame->frame_name = xbt_strdup(frame->name);
468         stack_frame->frame_base =
469             (unw_word_t) mc_find_frame_base(frame, frame->object_info, &c);
470       } else {
471         stack_frame->frame_base = 0;
472         stack_frame->frame_name = NULL;
473       }
474
475       /* Stop before context switch with maestro */
476       if (frame != NULL && frame->name != NULL
477           && !strcmp(frame->name, "smx_ctx_sysv_wrapper"))
478         break;
479
480       int ret = ret = unw_step(&c);
481       if (ret == 0) {
482         xbt_die("Unexpected end of stack.");
483       } else if (ret < 0) {
484         xbt_die("Error while unwinding stack.");
485       }
486     }
487
488   if (xbt_dynar_length(result) == 0) {
489     XBT_INFO("unw_init_local failed");
490     xbt_abort();
491   }
492
493   return result;
494 };
495
496 static xbt_dynar_t MC_take_snapshot_stacks(mc_snapshot_t * snapshot)
497 {
498
499   xbt_dynar_t res =
500       xbt_dynar_new(sizeof(s_mc_snapshot_stack_t),
501                     MC_snapshot_stack_free_voidp);
502
503   unsigned int cursor = 0;
504   stack_region_t current_stack;
505
506   xbt_dynar_foreach(stacks_areas, cursor, current_stack) {
507     mc_snapshot_stack_t st = xbt_new(s_mc_snapshot_stack_t, 1);
508     st->stack_frames = MC_unwind_stack_frames(current_stack->context);
509     st->local_variables = MC_get_local_variables_values(st->stack_frames, current_stack->process_index);
510     st->process_index = current_stack->process_index;
511
512     unw_word_t sp = xbt_dynar_get_as(st->stack_frames, 0, mc_stack_frame_t)->sp;
513
514     xbt_dynar_push(res, &st);
515     (*snapshot)->stack_sizes =
516         xbt_realloc((*snapshot)->stack_sizes, (cursor + 1) * sizeof(size_t));
517     (*snapshot)->stack_sizes[cursor] =
518       (char*) current_stack->address + current_stack->size - (char*) sp;
519   }
520
521   return res;
522
523 }
524
525 static xbt_dynar_t MC_take_snapshot_ignore()
526 {
527
528   if (mc_heap_comparison_ignore == NULL)
529     return NULL;
530
531   xbt_dynar_t cpy =
532       xbt_dynar_new(sizeof(mc_heap_ignore_region_t),
533                     heap_ignore_region_free_voidp);
534
535   unsigned int cursor = 0;
536   mc_heap_ignore_region_t current_region;
537
538   xbt_dynar_foreach(mc_heap_comparison_ignore, cursor, current_region) {
539     mc_heap_ignore_region_t new_region = NULL;
540     new_region = xbt_new0(s_mc_heap_ignore_region_t, 1);
541     new_region->address = current_region->address;
542     new_region->size = current_region->size;
543     new_region->block = current_region->block;
544     new_region->fragment = current_region->fragment;
545     xbt_dynar_push(cpy, &new_region);
546   }
547
548   return cpy;
549
550 }
551
552 static void mc_free_snapshot_ignored_data_pvoid(void* data) {
553   mc_snapshot_ignored_data_t ignored_data = (mc_snapshot_ignored_data_t) data;
554   free(ignored_data->data);
555 }
556
557 static void MC_snapshot_handle_ignore(mc_snapshot_t snapshot)
558 {
559   snapshot->ignored_data = xbt_dynar_new(sizeof(s_mc_snapshot_ignored_data_t), mc_free_snapshot_ignored_data_pvoid);
560
561   // Copy the memory:
562   unsigned int cursor = 0;
563   mc_checkpoint_ignore_region_t region;
564   xbt_dynar_foreach (mc_checkpoint_ignore, cursor, region) {
565     s_mc_snapshot_ignored_data_t ignored_data;
566     ignored_data.start = region->addr;
567     ignored_data.size = region->size;
568     ignored_data.data = malloc(region->size);
569     memcpy(ignored_data.data, region->addr, region->size);
570     xbt_dynar_push(snapshot->ignored_data, &ignored_data);
571   }
572
573   // Zero the memory:
574   xbt_dynar_foreach (mc_checkpoint_ignore, cursor, region) {
575     memset(region->addr, 0, region->size);
576   }
577
578 }
579
580 static void MC_snapshot_ignore_restore(mc_snapshot_t snapshot)
581 {
582   unsigned int cursor = 0;
583   s_mc_snapshot_ignored_data_t ignored_data;
584   xbt_dynar_foreach (snapshot->ignored_data, cursor, ignored_data) {
585     memcpy(ignored_data.start, ignored_data.data, ignored_data.size);
586   }
587 }
588
589 /** @brief Can we remove this snapshot?
590  *
591  * Some snapshots cannot be removed (yet) because we need them
592  * at this point.
593  *
594  * @param snapshot
595  */
596 int mc_important_snapshot(mc_snapshot_t snapshot)
597 {
598   // We need this snapshot in order to know which
599   // pages needs to be stored in the next snapshot.
600   // This field is only non-NULL when using soft-dirty
601   // page tracking.
602   if (snapshot == mc_model_checker->parent_snapshot)
603     return true;
604
605   return false;
606 }
607
608 static void MC_get_current_fd(mc_snapshot_t snapshot){
609
610   snapshot->total_fd = 0;
611
612   const size_t fd_dir_path_size = 20;
613   char fd_dir_path[fd_dir_path_size];
614   if (snprintf(fd_dir_path, fd_dir_path_size,
615     "/proc/%lli/fd", (long long int) getpid()) > fd_dir_path_size)
616     xbt_die("Unexpected buffer is too small for fd_dir_path");
617
618   DIR* fd_dir = opendir (fd_dir_path);
619   if (fd_dir == NULL)
620     xbt_die("Cannot open directory '/proc/self/fd'\n");
621
622   size_t total_fd = 0;
623   struct dirent* fd_number;
624   while ((fd_number = readdir(fd_dir))) {
625
626     int fd_value = atoi(fd_number->d_name);
627
628     if(fd_value < 3)
629       continue;
630
631     const size_t source_size = 25;
632     char source[25];
633     if (snprintf(source, source_size, "/proc/self/fd/%s", fd_number->d_name) > source_size)
634       xbt_die("Unexpected buffer is too small for fd %s", fd_number->d_name);
635
636     const size_t link_size = 200;
637     char link[200];
638     int res = readlink(source, link, link_size);
639     if (res<0) {
640       xbt_die("Could not read link for %s", source);
641     }
642     if (res==200) {
643       xbt_die("Buffer to small for link of %s", source);
644     }
645     link[res] = '\0';
646
647     if(smpi_is_privatisation_file(link))
648       continue;
649
650     // This is (probably) the DIR* we are reading:
651     // TODO, read all the file entries at once and close the DIR.*
652     if(strcmp(fd_dir_path, link) == 0)
653       continue;
654
655     // We don't handle them.
656     // It does not mean we should silently ignore them however.
657     if (strncmp(link, "pipe:", 5) == 0 || strncmp(link, "socket:", 7) == 0)
658       continue;
659
660     // This is probably a shared memory used by lttng-ust:
661     if(strncmp("/dev/shm/ust-shm-tmp-", link, 21)==0)
662       continue;
663
664     // Add an entry for this FD in the snapshot:
665     fd_infos_t fd = xbt_new0(s_fd_infos_t, 1);
666     fd->filename = strdup(link);
667     fd->number = fd_value;
668     fd->flags = fcntl(fd_value, F_GETFL) | fcntl(fd_value, F_GETFD) ;
669     fd->current_position = lseek(fd_value, 0, SEEK_CUR);
670     snapshot->current_fd = xbt_realloc(snapshot->current_fd, (total_fd + 1) * sizeof(fd_infos_t));
671     snapshot->current_fd[total_fd] = fd;
672     total_fd++;
673   }
674
675   snapshot->total_fd = total_fd;
676   closedir (fd_dir);
677 }
678
679 mc_snapshot_t MC_take_snapshot(int num_state)
680 {
681   mc_snapshot_t snapshot = xbt_new0(s_mc_snapshot_t, 1);
682
683   snapshot->enabled_processes = xbt_dynar_new(sizeof(int), NULL);
684   smx_process_t process;
685   xbt_swag_foreach(process, simix_global->process_list) {
686     xbt_dynar_push_as(snapshot->enabled_processes, int, (int)process->pid);
687   }
688
689   MC_snapshot_handle_ignore(snapshot);
690
691   MC_get_current_fd(snapshot);
692
693   /* Save the std heap and the writable mapped pages of libsimgrid and binary */
694   MC_get_memory_regions(snapshot);
695   if (_sg_mc_sparse_checkpoint && _sg_mc_soft_dirty) {
696     mc_softdirty_reset();
697   }
698
699   snapshot->to_ignore = MC_take_snapshot_ignore();
700
701   if (_sg_mc_visited > 0 || strcmp(_sg_mc_property_file, "")) {
702     snapshot->stacks =
703         MC_take_snapshot_stacks(&snapshot);
704     if (_sg_mc_hash && snapshot->stacks != NULL) {
705       snapshot->hash = mc_hash_processes_state(num_state, snapshot->stacks);
706     } else {
707       snapshot->hash = 0;
708     }
709   } else {
710     snapshot->hash = 0;
711   }
712
713   MC_snapshot_ignore_restore(snapshot);
714   if (_sg_mc_sparse_checkpoint && _sg_mc_soft_dirty) {
715     mc_model_checker->parent_snapshot = snapshot;
716   }
717   return snapshot;
718 }
719
720 static inline
721 void MC_restore_snapshot_regions(mc_snapshot_t snapshot)
722 {
723   mc_snapshot_t parent_snapshot = mc_model_checker->parent_snapshot;
724
725   const size_t n = snapshot->snapshot_regions_count;
726   for (size_t i = 0; i < n; i++) {
727     // For privatized, variables we decided it was not necessary to take the snapshot:
728     if (snapshot->snapshot_regions[i])
729       MC_region_restore(snapshot->snapshot_regions[i],
730         parent_snapshot ? parent_snapshot->snapshot_regions[i] : NULL);
731   }
732
733 #ifdef HAVE_SMPI
734   if(snapshot->privatization_index >= 0) {
735     // We just rewrote the global variables.
736     // The privatisation segment SMPI thinks
737     // is mapped might be inconsistent with the segment which
738     // is really mapped in memory (kernel state).
739     // We ask politely SMPI to map the segment anyway,
740     // even if it thinks it is the current one:
741     smpi_really_switch_data_segment(snapshot->privatization_index);
742   }
743 #endif
744 }
745
746 static inline
747 void MC_restore_snapshot_fds(mc_snapshot_t snapshot)
748 {
749   int new_fd;
750   size_t i;
751   for(i=0; i < snapshot->total_fd; i++){
752     
753     new_fd = open(snapshot->current_fd[i]->filename, snapshot->current_fd[i]->flags);
754     if (new_fd <0) {
755       xbt_die("Could not reopen the file %s fo restoring the file descriptor",
756         snapshot->current_fd[i]->filename);
757     }
758     if(new_fd != -1 && new_fd != snapshot->current_fd[i]->number){
759       dup2(new_fd, snapshot->current_fd[i]->number);
760       //fprintf(stderr, "%p\n", fdopen(snapshot->current_fd[i]->number, "rw"));
761       close(new_fd);
762     };
763     lseek(snapshot->current_fd[i]->number, snapshot->current_fd[i]->current_position, SEEK_SET);
764   }
765 }
766
767 void MC_restore_snapshot(mc_snapshot_t snapshot)
768 {
769   MC_restore_snapshot_regions(snapshot);
770   MC_restore_snapshot_fds(snapshot);
771   if (_sg_mc_sparse_checkpoint && _sg_mc_soft_dirty) {
772     mc_softdirty_reset();
773   }
774   MC_snapshot_ignore_restore(snapshot);
775   if (_sg_mc_sparse_checkpoint && _sg_mc_soft_dirty) {
776     mc_model_checker->parent_snapshot = snapshot;
777   }
778 }
779
780 mc_snapshot_t simcall_HANDLER_mc_snapshot(smx_simcall_t simcall)
781 {
782   return MC_take_snapshot(1);
783 }
784
785 void *MC_snapshot(void)
786 {
787   return simcall_mc_snapshot();
788 }