Logo AND Algorithmique Numérique Distribuée

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