Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
899168c3d9355c2ed1e7a457adb91ccd5d5f81d8
[simgrid.git] / src / mc / mc_private.h
1 /* Copyright (c) 2007-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 #ifndef MC_PRIVATE_H
8 #define MC_PRIVATE_H
9
10 #include "simgrid_config.h"
11 #include <stdio.h>
12 #include <stdbool.h>
13 #ifndef WIN32
14 #include <sys/mman.h>
15 #endif
16 #include <elfutils/libdw.h>
17
18 #include "mc/mc.h"
19 #include "mc/datatypes.h"
20 #include "xbt/fifo.h"
21 #include "xbt/config.h"
22 #include "xbt/function_types.h"
23 #include "xbt/mmalloc.h"
24 #include "../simix/smx_private.h"
25 #include "../xbt/mmalloc/mmprivate.h"
26 #include "xbt/automaton.h"
27 #include "xbt/hash.h"
28 #include "msg/msg.h"
29 #include "msg/datatypes.h"
30 #include "xbt/strbuff.h"
31 #include "xbt/parmap.h"
32 #include "mc_mmu.h"
33 #include "mc_page_store.h"
34
35 SG_BEGIN_DECL()
36
37 typedef struct s_dw_frame s_dw_frame_t, *dw_frame_t;
38 typedef struct s_mc_function_index_item s_mc_function_index_item_t, *mc_function_index_item_t;
39
40 /****************************** Snapshots ***********************************/
41
42 #define NB_REGIONS 3 /* binary data (data + BSS) (type = 2), libsimgrid data (data + BSS) (type = 1), std_heap (type = 0)*/ 
43
44 typedef struct s_mc_mem_region{
45   // Real address:
46   void *start_addr;
47   // Copy of the datra:
48   void *data;
49   // Size of the data region:
50   size_t size;
51   // For per-page snapshots, this is an array to the number of
52   size_t* page_numbers;
53 } s_mc_mem_region_t, *mc_mem_region_t;
54
55 static inline  __attribute__ ((always_inline))
56 bool mc_region_contain(mc_mem_region_t region, void* p)
57 {
58   return p >= region->start_addr &&
59     p < (void*)((char*) region->start_addr + region->size);
60 }
61
62 /** Ignored data
63  *
64  *  Some parts of the snapshot are ignored by zeroing them out: the real
65  *  values is stored here.
66  * */
67 typedef struct s_mc_snapshot_ignored_data {
68   void* start;
69   size_t size;
70   void* data;
71 } s_mc_snapshot_ignored_data_t, *mc_snapshot_ignored_data_t;
72
73 typedef struct s_mc_snapshot{
74   size_t heap_bytes_used;
75   mc_mem_region_t regions[NB_REGIONS];
76   xbt_dynar_t enabled_processes;
77   mc_mem_region_t* privatization_regions;
78   int privatization_index;
79   size_t *stack_sizes;
80   xbt_dynar_t stacks;
81   xbt_dynar_t to_ignore;
82   uint64_t hash;
83   xbt_dynar_t ignored_data;
84 } s_mc_snapshot_t, *mc_snapshot_t;
85
86 mc_mem_region_t mc_get_snapshot_region(void* addr, mc_snapshot_t snapshot);
87
88 static inline __attribute__ ((always_inline))
89 mc_mem_region_t mc_get_region_hinted(void* addr, mc_snapshot_t snapshot, mc_mem_region_t region)
90 {
91   if (mc_region_contain(region, addr))
92     return region;
93   else
94     return mc_get_snapshot_region(addr, snapshot);
95 }
96
97 /** Information about a given stack frame
98  *
99  */
100 typedef struct s_mc_stack_frame {
101   /** Instruction pointer */
102   unw_word_t ip;
103   /** Stack pointer */
104   unw_word_t sp;
105   unw_word_t frame_base;
106   dw_frame_t frame;
107   char* frame_name;
108   unw_cursor_t unw_cursor;
109 } s_mc_stack_frame_t, *mc_stack_frame_t;
110
111 typedef struct s_mc_snapshot_stack{
112   xbt_dynar_t local_variables;
113   xbt_dynar_t stack_frames; // mc_stack_frame_t
114 }s_mc_snapshot_stack_t, *mc_snapshot_stack_t;
115
116 typedef struct s_mc_global_t{
117   mc_snapshot_t snapshot;
118   int raw_mem_set;
119   int prev_pair;
120   char *prev_req;
121   int initial_communications_pattern_done;
122   int comm_deterministic;
123   int send_deterministic;
124 }s_mc_global_t, *mc_global_t;
125
126 typedef struct s_mc_checkpoint_ignore_region{
127   void *addr;
128   size_t size;
129 }s_mc_checkpoint_ignore_region_t, *mc_checkpoint_ignore_region_t;
130
131 static void* mc_snapshot_get_heap_end(mc_snapshot_t snapshot);
132
133 mc_snapshot_t SIMIX_pre_mc_snapshot(smx_simcall_t simcall);
134 mc_snapshot_t MC_take_snapshot(int num_state);
135 void MC_restore_snapshot(mc_snapshot_t);
136 void MC_free_snapshot(mc_snapshot_t);
137
138 int mc_important_snapshot(mc_snapshot_t snapshot);
139
140 size_t* mc_take_page_snapshot_region(void* data, size_t page_count, uint64_t* pagemap, size_t* reference_pages);
141 void mc_free_page_snapshot_region(size_t* pagenos, size_t page_count);
142 void mc_restore_page_snapshot_region(void* start_addr, size_t page_count, size_t* pagenos, uint64_t* pagemap, size_t* reference_pagenos);
143
144 mc_mem_region_t mc_region_new_sparse(int type, void *start_addr, size_t size, mc_mem_region_t ref_reg);
145 void MC_region_destroy(mc_mem_region_t reg);
146 void mc_region_restore_sparse(mc_mem_region_t reg, mc_mem_region_t ref_reg);
147 void mc_softdirty_reset();
148
149 static inline __attribute__((always_inline))
150 bool mc_snapshot_region_linear(mc_mem_region_t region) {
151   return !region || !region->data;
152 }
153
154 void* mc_snapshot_read_fragmented(void* addr, mc_mem_region_t region, void* target, size_t size);
155
156 void* mc_snapshot_read(void* addr, mc_snapshot_t snapshot, void* target, size_t size);
157 int mc_snapshot_region_memcmp(
158   void* addr1, mc_mem_region_t region1,
159   void* addr2, mc_mem_region_t region2, size_t size);
160 int mc_snapshot_memcmp(
161   void* addr1, mc_snapshot_t snapshot1,
162   void* addr2, mc_snapshot_t snapshot2, size_t size);
163
164 static void* mc_snapshot_read_pointer(void* addr, mc_snapshot_t snapshot);
165
166 /** @brief State of the model-checker (global variables for the model checker)
167  *
168  *  Each part of the state of the model chercker represented as a global
169  *  variable prevents some sharing between snapshots and must be ignored.
170  *  By moving as much state as possible in this structure allocated
171  *  on the model-chercker heap, we avoid those issues.
172  */
173 typedef struct s_mc_model_checker {
174   // This is the parent snapshot of the current state:
175   mc_snapshot_t parent_snapshot;
176   mc_pages_store_t pages;
177   int fd_clear_refs;
178   int fd_pagemap;
179 } s_mc_model_checker_t, *mc_model_checker_t;
180
181 extern mc_model_checker_t mc_model_checker;
182
183 extern xbt_dynar_t mc_checkpoint_ignore;
184
185 /********************************* MC Global **********************************/
186
187 extern double *mc_time;
188 extern FILE *dot_output;
189 extern const char* colors[13];
190 extern xbt_parmap_t parmap;
191
192 extern int user_max_depth_reached;
193
194 int MC_deadlock_check(void);
195 void MC_replay(xbt_fifo_t stack, int start);
196 void MC_replay_liveness(xbt_fifo_t stack, int all_stack);
197 void MC_wait_for_requests(void);
198 void MC_show_deadlock(smx_simcall_t req);
199 void MC_show_stack_safety(xbt_fifo_t stack);
200 void MC_dump_stack_safety(xbt_fifo_t stack);
201 int SIMIX_pre_mc_random(smx_simcall_t simcall, int min, int max);
202
203 extern xbt_fifo_t mc_stack;
204 int get_search_interval(xbt_dynar_t list, void *ref, int *min, int *max);
205
206
207 /********************************* Requests ***********************************/
208
209 int MC_request_depend(smx_simcall_t req1, smx_simcall_t req2);
210 char* MC_request_to_string(smx_simcall_t req, int value);
211 unsigned int MC_request_testany_fail(smx_simcall_t req);
212 /*int MC_waitany_is_enabled_by_comm(smx_req_t req, unsigned int comm);*/
213 int MC_request_is_visible(smx_simcall_t req);
214 int MC_request_is_enabled(smx_simcall_t req);
215 int MC_request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx);
216 int MC_process_is_enabled(smx_process_t process);
217 char *MC_request_get_dot_output(smx_simcall_t req, int value);
218
219
220 /******************************** States **************************************/
221
222 extern mc_global_t initial_global_state;
223
224 /* Possible exploration status of a process in a state */
225 typedef enum {
226   MC_NOT_INTERLEAVE=0,      /* Do not interleave (do not execute) */
227   MC_INTERLEAVE,            /* Interleave the process (one or more request) */
228   MC_MORE_INTERLEAVE,       /* Interleave twice the process (for mc_random simcall) */
229   MC_DONE                   /* Already interleaved */
230 } e_mc_process_state_t;
231
232 /* On every state, each process has an entry of the following type */
233 typedef struct mc_procstate{
234   e_mc_process_state_t state;       /* Exploration control information */
235   unsigned int interleave_count;    /* Number of times that the process was
236                                        interleaved */
237 } s_mc_procstate_t, *mc_procstate_t;
238
239 /* An exploration state is composed of: */
240 typedef struct mc_state {
241   unsigned long max_pid;            /* Maximum pid at state's creation time */
242   mc_procstate_t proc_status;       /* State's exploration status by process */
243   s_smx_action_t internal_comm;     /* To be referenced by the internal_req */
244   s_smx_simcall_t internal_req;         /* Internal translation of request */
245   s_smx_simcall_t executed_req;         /* The executed request of the state */
246   int req_num;                      /* The request number (in the case of a
247                                        multi-request like waitany ) */
248   mc_snapshot_t system_state;      /* Snapshot of system state */
249   int num;
250 } s_mc_state_t, *mc_state_t;
251
252 mc_state_t MC_state_new(void);
253 void MC_state_delete(mc_state_t state);
254 void MC_state_interleave_process(mc_state_t state, smx_process_t process);
255 unsigned int MC_state_interleave_size(mc_state_t state);
256 int MC_state_process_is_done(mc_state_t state, smx_process_t process);
257 void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int value);
258 smx_simcall_t MC_state_get_executed_request(mc_state_t state, int *value);
259 smx_simcall_t MC_state_get_internal_request(mc_state_t state);
260 smx_simcall_t MC_state_get_request(mc_state_t state, int *value);
261 void MC_state_remove_interleave_process(mc_state_t state, smx_process_t process);
262
263
264 /****************************** Statistics ************************************/
265
266 typedef struct mc_stats {
267   unsigned long state_size;
268   unsigned long visited_states;
269   unsigned long visited_pairs;
270   unsigned long expanded_states;
271   unsigned long expanded_pairs;
272   unsigned long executed_transitions;
273 } s_mc_stats_t, *mc_stats_t;
274
275 extern mc_stats_t mc_stats;
276
277 void MC_print_statistics(mc_stats_t);
278
279
280 /********************************** MEMORY ******************************/
281 /* The possible memory modes for the modelchecker are standard and raw. */
282 /* Normally the system should operate in std, for switching to raw mode */
283 /* you must wrap the code between MC_SET_RAW_MODE and MC_UNSET_RAW_MODE */
284
285 extern void *std_heap;
286 extern void *mc_heap;
287
288
289 /* FIXME: Horrible hack! because the mmalloc library doesn't provide yet of */
290 /* an API to query about the status of a heap, we simply call mmstats and */
291 /* because I now how does structure looks like, then I redefine it here */
292
293 /* struct mstats { */
294 /*   size_t bytes_total;           /\* Total size of the heap. *\/ */
295 /*   size_t chunks_used;           /\* Chunks allocated by the user. *\/ */
296 /*   size_t bytes_used;            /\* Byte total of user-allocated chunks. *\/ */
297 /*   size_t chunks_free;           /\* Chunks in the free list. *\/ */
298 /*   size_t bytes_free;            /\* Byte total of chunks in the free list. *\/ */
299 /* }; */
300
301 #define MC_SET_MC_HEAP    mmalloc_set_current_heap(mc_heap)
302 #define MC_SET_STD_HEAP  mmalloc_set_current_heap(std_heap)
303
304
305 /******************************* MEMORY MAPPINGS ***************************/
306 /* These functions and data structures implements a binary interface for   */
307 /* the proc maps ascii interface                                           */
308
309 /* Each field is defined as documented in proc's manual page  */
310 typedef struct s_map_region {
311
312   void *start_addr;             /* Start address of the map */
313   void *end_addr;               /* End address of the map */
314   int prot;                     /* Memory protection */
315   int flags;                    /* Additional memory flags */
316   void *offset;                 /* Offset in the file/whatever */
317   char dev_major;               /* Major of the device */
318   char dev_minor;               /* Minor of the device */
319   unsigned long inode;          /* Inode in the device */
320   char *pathname;               /* Path name of the mapped file */
321
322 } s_map_region_t;
323
324 typedef struct s_memory_map {
325
326   s_map_region_t *regions;      /* Pointer to an array of regions */
327   int mapsize;                  /* Number of regions in the memory */
328
329 } s_memory_map_t, *memory_map_t;
330
331
332 void MC_init_memory_map_info(void);
333 memory_map_t MC_get_memory_map(void);
334 void MC_free_memory_map(memory_map_t map);
335
336 extern char *libsimgrid_path;
337
338 /********************************** Snapshot comparison **********************************/
339
340 typedef struct s_mc_comparison_times{
341   double nb_processes_comparison_time;
342   double bytes_used_comparison_time;
343   double stacks_sizes_comparison_time;
344   double binary_global_variables_comparison_time;
345   double libsimgrid_global_variables_comparison_time;
346   double heap_comparison_time;
347   double stacks_comparison_time;
348 }s_mc_comparison_times_t, *mc_comparison_times_t;
349
350 extern __thread mc_comparison_times_t mc_comp_times;
351 extern __thread double mc_snapshot_comparison_time;
352
353 int snapshot_compare(void *state1, void *state2);
354 int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall, mc_snapshot_t s1, mc_snapshot_t s2);
355 void print_comparison_times(void);
356
357 //#define MC_DEBUG 1
358 #define MC_VERBOSE 1
359
360 /********************************** Safety verification **************************************/
361
362 typedef enum {
363   e_mc_reduce_unset,
364   e_mc_reduce_none,
365   e_mc_reduce_dpor
366 } e_mc_reduce_t;
367
368 extern e_mc_reduce_t mc_reduce_kind;
369 extern xbt_dict_t first_enabled_state;
370
371 void MC_pre_modelcheck_safety(void);
372 void MC_modelcheck_safety(void);
373
374 typedef struct s_mc_visited_state{
375   mc_snapshot_t system_state;
376   size_t heap_bytes_used;
377   int nb_processes;
378   int num;
379   int other_num; // dot_output for
380 }s_mc_visited_state_t, *mc_visited_state_t;
381
382 extern xbt_dynar_t visited_states;
383 mc_visited_state_t is_visited_state(void);
384 void visited_state_free(mc_visited_state_t state);
385 void visited_state_free_voidp(void *s);
386
387 /********************************** Liveness verification **************************************/
388
389 extern xbt_automaton_t _mc_property_automaton;
390
391 typedef struct s_mc_pair{
392   int num;
393   int search_cycle;
394   mc_state_t graph_state; /* System state included */
395   xbt_automaton_state_t automaton_state;
396   xbt_dynar_t atomic_propositions;
397   int requests;
398 }s_mc_pair_t, *mc_pair_t;
399
400 typedef struct s_mc_visited_pair{
401   int num;
402   int other_num; /* Dot output for */
403   int acceptance_pair;
404   mc_state_t graph_state; /* System state included */
405   xbt_automaton_state_t automaton_state;
406   xbt_dynar_t atomic_propositions;
407   size_t heap_bytes_used;
408   int nb_processes;
409   int acceptance_removed;
410   int visited_removed;
411 }s_mc_visited_pair_t, *mc_visited_pair_t;
412
413 mc_pair_t MC_pair_new(void);
414 void MC_pair_delete(mc_pair_t);
415 void mc_pair_free_voidp(void *p);
416 mc_visited_pair_t MC_visited_pair_new(int pair_num, xbt_automaton_state_t automaton_state, xbt_dynar_t atomic_propositions);
417 void MC_visited_pair_delete(mc_visited_pair_t p);
418
419 void MC_pre_modelcheck_liveness(void);
420 void MC_modelcheck_liveness(void);
421 void MC_show_stack_liveness(xbt_fifo_t stack);
422 void MC_dump_stack_liveness(xbt_fifo_t stack);
423
424 extern xbt_dynar_t visited_pairs;
425 int is_visited_pair(mc_visited_pair_t pair, int pair_num, xbt_automaton_state_t automaton_state, xbt_dynar_t atomic_propositions);
426
427
428 /********************************** Variables with DWARF **********************************/
429
430 #define MC_OBJECT_INFO_EXECUTABLE 1
431
432 struct s_mc_object_info {
433   size_t flags;
434   char* file_name;
435   char *start_exec, *end_exec; // Executable segment
436   char *start_rw, *end_rw; // Read-write segment
437   char *start_ro, *end_ro; // read-only segment
438   xbt_dict_t subprograms; // xbt_dict_t<origin as hexadecimal string, dw_frame_t>
439   xbt_dynar_t global_variables; // xbt_dynar_t<dw_variable_t>
440   xbt_dict_t types; // xbt_dict_t<origin as hexadecimal string, dw_type_t>
441   xbt_dict_t full_types_by_name; // xbt_dict_t<name, dw_type_t> (full defined type only)
442
443   // Here we sort the minimal information for an efficient (and cache-efficient)
444   // lookup of a function given an instruction pointer.
445   // The entries are sorted by low_pc and a binary search can be used to look them up.
446   xbt_dynar_t functions_index;
447 };
448
449 mc_object_info_t MC_new_object_info(void);
450 mc_object_info_t MC_find_object_info(memory_map_t maps, char* name, int executable);
451 void MC_free_object_info(mc_object_info_t* p);
452
453 void MC_dwarf_get_variables(mc_object_info_t info);
454 void MC_dwarf_get_variables_libdw(mc_object_info_t info);
455 const char* MC_dwarf_attrname(int attr);
456 const char* MC_dwarf_tagname(int tag);
457
458 dw_frame_t MC_find_function_by_ip(void* ip);
459 mc_object_info_t MC_ip_find_object_info(void* ip);
460
461 extern mc_object_info_t mc_libsimgrid_info;
462 extern mc_object_info_t mc_binary_info;
463 extern mc_object_info_t mc_object_infos[2];
464 extern size_t mc_object_infos_size;
465
466 void MC_find_object_address(memory_map_t maps, mc_object_info_t result);
467 void MC_post_process_types(mc_object_info_t info);
468 void MC_post_process_object_info(mc_object_info_t info);
469
470 // ***** Expressions
471
472 /** \brief a DWARF expression with optional validity contraints */
473 typedef struct s_mc_expression {
474   size_t size;
475   Dwarf_Op* ops;
476   // Optional validity:
477   void* lowpc, *highpc;
478 } s_mc_expression_t, *mc_expression_t;
479
480 /** A location list (list of location expressions) */
481 typedef struct s_mc_location_list {
482   size_t size;
483   mc_expression_t locations;
484 } s_mc_location_list_t, *mc_location_list_t;
485
486 uintptr_t mc_dwarf_resolve_location(mc_expression_t expression, mc_object_info_t object_info, unw_cursor_t* c, void* frame_pointer_address, mc_snapshot_t snapshot);
487 uintptr_t mc_dwarf_resolve_locations(mc_location_list_t locations, mc_object_info_t object_info, unw_cursor_t* c, void* frame_pointer_address, mc_snapshot_t snapshot);
488
489 void mc_dwarf_expression_clear(mc_expression_t expression);
490 void mc_dwarf_expression_init(mc_expression_t expression, size_t len, Dwarf_Op* ops);
491
492 void mc_dwarf_location_list_clear(mc_location_list_t list);
493
494 void mc_dwarf_location_list_init_from_expression(mc_location_list_t target, size_t len, Dwarf_Op* ops);
495 void mc_dwarf_location_list_init(mc_location_list_t target, mc_object_info_t info, Dwarf_Die* die, Dwarf_Attribute* attr);
496
497 // ***** Variables and functions
498
499 struct s_dw_type{
500   e_dw_type_type type;
501   Dwarf_Off id; /* Offset in the section (in hexadecimal form) */
502   char *name; /* Name of the type */
503   int byte_size; /* Size in bytes */
504   int element_count; /* Number of elements for array type */
505   char *dw_type_id; /* DW_AT_type id */
506   xbt_dynar_t members; /* if DW_TAG_structure_type, DW_TAG_class_type, DW_TAG_union_type*/
507   int is_pointer_type;
508
509   // Location (for members) is either of:
510   struct s_mc_expression location;
511   int offset;
512
513   dw_type_t subtype; // DW_AT_type
514   dw_type_t full_type; // The same (but more complete) type
515 };
516
517 void* mc_member_resolve(const void* base, dw_type_t type, dw_type_t member, mc_snapshot_t snapshot);
518
519 typedef struct s_dw_variable{
520   Dwarf_Off dwarf_offset; /* Global offset of the field. */
521   int global;
522   char *name;
523   char *type_origin;
524   dw_type_t type;
525
526   // Use either of:
527   s_mc_location_list_t locations;
528   void* address;
529
530   size_t start_scope;
531   mc_object_info_t object_info;
532
533 }s_dw_variable_t, *dw_variable_t;
534
535 struct s_dw_frame{
536   int tag;
537   char *name;
538   void *low_pc;
539   void *high_pc;
540   s_mc_location_list_t frame_base;
541   xbt_dynar_t /* <dw_variable_t> */ variables; /* Cannot use dict, there may be several variables with the same name (in different lexical blocks)*/
542   unsigned long int id; /* DWARF offset of the subprogram */
543   xbt_dynar_t /* <dw_frame_t> */ scopes;
544   Dwarf_Off abstract_origin_id;
545   mc_object_info_t object_info;
546 };
547
548 struct s_mc_function_index_item {
549   void* low_pc, *high_pc;
550   dw_frame_t function;
551 };
552
553 void mc_frame_free(dw_frame_t freme);
554
555 void dw_type_free(dw_type_t t);
556 void dw_variable_free(dw_variable_t v);
557 void dw_variable_free_voidp(void *t);
558
559 void MC_dwarf_register_global_variable(mc_object_info_t info, dw_variable_t variable);
560 void MC_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
561 void MC_dwarf_register_non_global_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
562 void MC_dwarf_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
563
564 /** Find the DWARF offset for this ELF object
565  *
566  *  An offset is applied to address found in DWARF:
567  *
568  *  <ul>
569  *    <li>for an executable obejct, addresses are virtual address
570  *        (there is no offset) i.e. \f$\text{virtual address} = \{dwarf address}\f$;</li>
571  *    <li>for a shared object, the addreses are offset from the begining
572  *        of the shared object (the base address of the mapped shared
573  *        object must be used as offset
574  *        i.e. \f$\text{virtual address} = \text{shared object base address}
575  *             + \text{dwarf address}\f$.</li>
576  *
577  */
578 void* MC_object_base_address(mc_object_info_t info);
579
580 /********************************** DWARF **********************************/
581
582 #define MC_EXPRESSION_STACK_SIZE 64
583
584 #define MC_EXPRESSION_OK 0
585 #define MC_EXPRESSION_E_UNSUPPORTED_OPERATION 1
586 #define MC_EXPRESSION_E_STACK_OVERFLOW 2
587 #define MC_EXPRESSION_E_STACK_UNDERFLOW 3
588 #define MC_EXPRESSION_E_MISSING_STACK_CONTEXT 4
589 #define MC_EXPRESSION_E_MISSING_FRAME_BASE 5
590 #define MC_EXPRESSION_E_NO_BASE_ADDRESS 6
591
592 typedef struct s_mc_expression_state {
593   uintptr_t stack[MC_EXPRESSION_STACK_SIZE];
594   size_t stack_size;
595
596   unw_cursor_t* cursor;
597   void* frame_base;
598   mc_snapshot_t snapshot;
599   mc_object_info_t object_info;
600 } s_mc_expression_state_t, *mc_expression_state_t;
601
602 int mc_dwarf_execute_expression(size_t n, const Dwarf_Op* ops, mc_expression_state_t state);
603
604 void* mc_find_frame_base(dw_frame_t frame, mc_object_info_t object_info, unw_cursor_t* unw_cursor);
605
606 /********************************** Miscellaneous **********************************/
607
608 typedef struct s_local_variable{
609   dw_frame_t subprogram;
610   unsigned long ip;
611   char *name;
612   dw_type_t type;
613   void *address;
614   int region;
615 }s_local_variable_t, *local_variable_t;
616
617 /********************************* Communications pattern ***************************/
618
619 typedef struct s_mc_comm_pattern{
620   int num;
621   smx_action_t comm;
622   e_smx_comm_type_t type;
623   unsigned long src_proc;
624   unsigned long dst_proc;
625   const char *src_host;
626   const char *dst_host;
627   char *rdv;
628   ssize_t data_size;
629   void *data;
630 }s_mc_comm_pattern_t, *mc_comm_pattern_t;
631
632 extern xbt_dynar_t initial_communications_pattern;
633 extern xbt_dynar_t communications_pattern;
634 extern xbt_dynar_t incomplete_communications_pattern;
635
636 void get_comm_pattern(xbt_dynar_t communications_pattern, smx_simcall_t request, int call);
637 void complete_comm_pattern(xbt_dynar_t list, smx_action_t comm);
638 void MC_pre_modelcheck_comm_determinism(void);
639 void MC_modelcheck_comm_determinism(void);
640
641 /* *********** Sets *********** */
642
643 typedef struct s_mc_address_set *mc_address_set_t;
644
645 mc_address_set_t mc_address_set_new();
646 void mc_address_set_free(mc_address_set_t* p);
647 void mc_address_add(mc_address_set_t p, const void* value);
648 bool mc_address_test(mc_address_set_t p, const void* value);
649
650 /* *********** Hash *********** */
651
652 /** \brief Hash the current state
653  *  \param num_state number of states
654  *  \param stacks stacks (mc_snapshot_stak_t) used fot the stack unwinding informations
655  *  \result resulting hash
656  * */
657 uint64_t mc_hash_processes_state(int num_state, xbt_dynar_t stacks);
658
659 /* *********** Snapshot *********** */
660
661 static inline __attribute__((always_inline))
662 void* mc_translate_address_region(uintptr_t addr, mc_mem_region_t region)
663 {
664     size_t pageno = mc_page_number(region->start_addr, (void*) addr);
665     size_t snapshot_pageno = region->page_numbers[pageno];
666     const void* snapshot_page = mc_page_store_get_page(mc_model_checker->pages, snapshot_pageno);
667     return (char*) snapshot_page + mc_page_offset((void*) addr);
668 }
669
670 /** \brief Translate a pointer from process address space to snapshot address space
671  *
672  *  The address space contains snapshot of the main/application memory:
673  *  this function finds the address in a given snaphot for a given
674  *  real/application address.
675  *
676  *  For read only memory regions and other regions which are not int the
677  *  snapshot, the address is not changed.
678  *
679  *  \param addr     Application address
680  *  \param snapshot The snapshot of interest (if NULL no translation is done)
681  *  \return         Translated address in the snapshot address space
682  * */
683 static inline __attribute__((always_inline))
684 void* mc_translate_address(uintptr_t addr, mc_snapshot_t snapshot)
685 {
686
687   // If not in a process state/clone:
688   if (!snapshot) {
689     return (uintptr_t *) addr;
690   }
691
692   mc_mem_region_t region = mc_get_snapshot_region((void*) addr, snapshot);
693
694   xbt_assert(mc_region_contain(region, (void*) addr), "Trying to read out of the region boundary.");
695
696   if (!region) {
697     return (void *) addr;
698   }
699
700   // Flat snapshot:
701   else if (region->data) {
702     uintptr_t offset = addr - (uintptr_t) region->start_addr;
703     return (void *) ((uintptr_t) region->data + offset);
704   }
705
706   // Per-page snapshot:
707   else if (region->page_numbers) {
708     return mc_translate_address_region(addr, region);
709   }
710
711   else {
712     xbt_die("No data for this memory region");
713   }
714 }
715
716 static inline __attribute__ ((always_inline))
717   void* mc_snapshot_get_heap_end(mc_snapshot_t snapshot) {
718   if(snapshot==NULL)
719       xbt_die("snapshot is NULL");
720   void** addr = &((xbt_mheap_t)std_heap)->breakval;
721   return mc_snapshot_read_pointer(addr, snapshot);
722 }
723
724 static inline __attribute__ ((always_inline))
725 void* mc_snapshot_read_pointer(void* addr, mc_snapshot_t snapshot)
726 {
727   void* res;
728   return *(void**) mc_snapshot_read(addr, snapshot, &res, sizeof(void*));
729 }
730
731 /** @brief Read memory from a snapshot region
732  *
733  *  @param addr    Process (non-snapshot) address of the data
734  *  @param region  Snapshot memory region where the data is located
735  *  @param target  Buffer to store the value
736  *  @param size    Size of the data to read in bytes
737  *  @return Pointer where the data is located (target buffer of original location)
738  */
739 static inline __attribute__((always_inline))
740 void* mc_snapshot_read_region(void* addr, mc_mem_region_t region, void* target, size_t size)
741 {
742   if (region==NULL)
743     return addr;
744
745   uintptr_t offset = (char*) addr - (char*) region->start_addr;
746
747   xbt_assert(mc_region_contain(region, addr),
748     "Trying to read out of the region boundary.");
749
750   // Linear memory region:
751   if (region->data) {
752     return (char*) region->data + offset;
753   }
754
755   // Fragmented memory region:
756   else if (region->page_numbers) {
757     // Last byte of the region:
758     void* end = (char*) addr + size - 1;
759     if( mc_same_page(addr, end) ) {
760       // The memory is contained in a single page:
761       return mc_translate_address_region((uintptr_t) addr, region);
762     } else {
763       // The memory spans several pages:
764       return mc_snapshot_read_fragmented(addr, region, target, size);
765     }
766   }
767
768   else {
769     xbt_die("No data available for this region");
770   }
771 }
772
773 static inline __attribute__ ((always_inline))
774 void* mc_snapshot_read_pointer_region(void* addr, mc_mem_region_t region)
775 {
776   void* res;
777   return *(void**) mc_snapshot_read_region(addr, region, &res, sizeof(void*));
778 }
779
780 SG_END_DECL()
781
782 #endif
783