Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Fix type of expression resolution methods (uintpt_t and not Dwarf_Off)
[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 #ifndef WIN32
13 #include <sys/mman.h>
14 #endif
15 #include <elfutils/libdw.h>
16
17 #include "mc/mc.h"
18 #include "mc/datatypes.h"
19 #include "xbt/fifo.h"
20 #include "xbt/config.h"
21 #include "xbt/function_types.h"
22 #include "xbt/mmalloc.h"
23 #include "../simix/smx_private.h"
24 #include "xbt/automaton.h"
25 #include "xbt/hash.h"
26 #include "msg/msg.h"
27 #include "msg/datatypes.h"
28 #include "xbt/strbuff.h"
29 #include "xbt/parmap.h"
30
31 typedef struct s_dw_frame s_dw_frame_t, *dw_frame_t;
32 typedef struct s_mc_function_index_item s_mc_function_index_item_t, *mc_function_index_item_t;
33
34 /****************************** Snapshots ***********************************/
35
36 #define NB_REGIONS 3 /* binary data (data + BSS) (type = 2), libsimgrid data (data + BSS) (type = 1), std_heap (type = 0)*/ 
37
38 typedef struct s_mc_mem_region{
39   // Real address:
40   void *start_addr;
41   // Copy of the datra:
42   void *data;
43   // Size of the data region:
44   size_t size;
45 } s_mc_mem_region_t, *mc_mem_region_t;
46
47 typedef struct s_mc_snapshot{
48   size_t heap_bytes_used;
49   mc_mem_region_t regions[NB_REGIONS];
50   int nb_processes;
51   size_t *stack_sizes;
52   xbt_dynar_t stacks;
53   xbt_dynar_t to_ignore;
54   uint64_t hash;
55 } s_mc_snapshot_t, *mc_snapshot_t;
56
57 /** Information about a given stack frame
58  *
59  */
60 typedef struct s_mc_stack_frame {
61   /** Instruction pointer */
62   unw_word_t ip;
63   /** Stack pointer */
64   unw_word_t sp;
65   unw_word_t frame_base;
66   dw_frame_t frame;
67   char* frame_name;
68   unw_cursor_t unw_cursor;
69 } s_mc_stack_frame_t, *mc_stack_frame_t;
70
71 typedef struct s_mc_snapshot_stack{
72   xbt_dynar_t local_variables;
73   void *stack_pointer;
74   void *real_address;
75   xbt_dynar_t stack_frames; // mc_stack_frame_t
76 }s_mc_snapshot_stack_t, *mc_snapshot_stack_t;
77
78 typedef struct s_mc_global_t{
79   mc_snapshot_t snapshot;
80   int raw_mem_set;
81   int prev_pair;
82   char *prev_req;
83   int initial_communications_pattern_done;
84   int comm_deterministic;
85   int send_deterministic;
86 }s_mc_global_t, *mc_global_t;
87
88 typedef struct s_mc_checkpoint_ignore_region{
89   void *addr;
90   size_t size;
91 }s_mc_checkpoint_ignore_region_t, *mc_checkpoint_ignore_region_t;
92
93 mc_snapshot_t SIMIX_pre_mc_snapshot(smx_simcall_t simcall);
94 mc_snapshot_t MC_take_snapshot(int num_state);
95 void MC_restore_snapshot(mc_snapshot_t);
96 void MC_free_snapshot(mc_snapshot_t);
97
98 /** \brief Translate a pointer from process address space to snapshot address space
99  *
100  *  The address space contains snapshot of the main/application memory:
101  *  this function finds the address in a given snaphot for a given
102  *  real/application address.
103  *
104  *  For read only memory regions and other regions which are not int the
105  *  snapshot, the address is not changed.
106  *
107  *  \param addr     Application address
108  *  \param snapshot The snapshot of interest (if NULL no translation is done)
109  *  \return         Translated address in the snapshot address space
110  * */
111 void* mc_translate_address(uintptr_t addr, mc_snapshot_t snapshot);
112
113 /** \brief Translate a pointer from the snapshot address space to the application address space
114  *
115  *  This is the inverse of mc_translate_address.
116  *
117  * \param addr    Address in the snapshot address space
118  * \param snapsot Snapshot of interest (if NULL no translation is done)
119  * \return        Translated address in the application address space
120  */
121 uintptr_t mc_untranslate_address(void* addr, mc_snapshot_t snapshot);
122
123 extern xbt_dynar_t mc_checkpoint_ignore;
124
125 /********************************* MC Global **********************************/
126
127 extern double *mc_time;
128 extern FILE *dot_output;
129 extern const char* colors[13];
130 extern xbt_parmap_t parmap;
131
132 extern int user_max_depth_reached;
133
134 int MC_deadlock_check(void);
135 void MC_replay(xbt_fifo_t stack, int start);
136 void MC_replay_liveness(xbt_fifo_t stack, int all_stack);
137 void MC_wait_for_requests(void);
138 void MC_show_deadlock(smx_simcall_t req);
139 void MC_show_stack_safety(xbt_fifo_t stack);
140 void MC_dump_stack_safety(xbt_fifo_t stack);
141 void MC_init(void);
142 int SIMIX_pre_mc_random(smx_simcall_t simcall, int min, int max);
143
144
145 /********************************* Requests ***********************************/
146
147 int MC_request_depend(smx_simcall_t req1, smx_simcall_t req2);
148 char* MC_request_to_string(smx_simcall_t req, int value);
149 unsigned int MC_request_testany_fail(smx_simcall_t req);
150 /*int MC_waitany_is_enabled_by_comm(smx_req_t req, unsigned int comm);*/
151 int MC_request_is_visible(smx_simcall_t req);
152 int MC_request_is_enabled(smx_simcall_t req);
153 int MC_request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx);
154 int MC_process_is_enabled(smx_process_t process);
155 char *MC_request_get_dot_output(smx_simcall_t req, int value);
156
157
158 /******************************** States **************************************/
159
160 /* Possible exploration status of a process in a state */
161 typedef enum {
162   MC_NOT_INTERLEAVE=0,      /* Do not interleave (do not execute) */
163   MC_INTERLEAVE,            /* Interleave the process (one or more request) */
164   MC_MORE_INTERLEAVE,       /* Interleave twice the process (for mc_random simcall) */
165   MC_DONE                   /* Already interleaved */
166 } e_mc_process_state_t;
167
168 /* On every state, each process has an entry of the following type */
169 typedef struct mc_procstate{
170   e_mc_process_state_t state;       /* Exploration control information */
171   unsigned int interleave_count;    /* Number of times that the process was
172                                        interleaved */
173 } s_mc_procstate_t, *mc_procstate_t;
174
175 /* An exploration state is composed of: */
176 typedef struct mc_state {
177   unsigned long max_pid;            /* Maximum pid at state's creation time */
178   mc_procstate_t proc_status;       /* State's exploration status by process */
179   s_smx_action_t internal_comm;     /* To be referenced by the internal_req */
180   s_smx_simcall_t internal_req;         /* Internal translation of request */
181   s_smx_simcall_t executed_req;         /* The executed request of the state */
182   int req_num;                      /* The request number (in the case of a
183                                        multi-request like waitany ) */
184   mc_snapshot_t system_state;      /* Snapshot of system state */
185   int num;
186 } s_mc_state_t, *mc_state_t;
187
188 mc_state_t MC_state_new(void);
189 void MC_state_delete(mc_state_t state);
190 void MC_state_interleave_process(mc_state_t state, smx_process_t process);
191 unsigned int MC_state_interleave_size(mc_state_t state);
192 int MC_state_process_is_done(mc_state_t state, smx_process_t process);
193 void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int value);
194 smx_simcall_t MC_state_get_executed_request(mc_state_t state, int *value);
195 smx_simcall_t MC_state_get_internal_request(mc_state_t state);
196 smx_simcall_t MC_state_get_request(mc_state_t state, int *value);
197 void MC_state_remove_interleave_process(mc_state_t state, smx_process_t process);
198
199
200 /****************************** Statistics ************************************/
201
202 typedef struct mc_stats {
203   unsigned long state_size;
204   unsigned long visited_states;
205   unsigned long visited_pairs;
206   unsigned long expanded_states;
207   unsigned long expanded_pairs;
208   unsigned long executed_transitions;
209 } s_mc_stats_t, *mc_stats_t;
210
211 extern mc_stats_t mc_stats;
212
213 void MC_print_statistics(mc_stats_t);
214
215
216 /********************************** MEMORY ******************************/
217 /* The possible memory modes for the modelchecker are standard and raw. */
218 /* Normally the system should operate in std, for switching to raw mode */
219 /* you must wrap the code between MC_SET_RAW_MODE and MC_UNSET_RAW_MODE */
220
221 extern void *std_heap;
222 extern void *raw_heap;
223
224
225 /* FIXME: Horrible hack! because the mmalloc library doesn't provide yet of */
226 /* an API to query about the status of a heap, we simply call mmstats and */
227 /* because I now how does structure looks like, then I redefine it here */
228
229 /* struct mstats { */
230 /*   size_t bytes_total;           /\* Total size of the heap. *\/ */
231 /*   size_t chunks_used;           /\* Chunks allocated by the user. *\/ */
232 /*   size_t bytes_used;            /\* Byte total of user-allocated chunks. *\/ */
233 /*   size_t chunks_free;           /\* Chunks in the free list. *\/ */
234 /*   size_t bytes_free;            /\* Byte total of chunks in the free list. *\/ */
235 /* }; */
236
237 #define MC_SET_RAW_MEM    mmalloc_set_current_heap(raw_heap)
238 #define MC_UNSET_RAW_MEM  mmalloc_set_current_heap(std_heap)
239
240
241 /******************************* MEMORY MAPPINGS ***************************/
242 /* These functions and data structures implements a binary interface for   */
243 /* the proc maps ascii interface                                           */
244
245 /* Each field is defined as documented in proc's manual page  */
246 typedef struct s_map_region {
247
248   void *start_addr;             /* Start address of the map */
249   void *end_addr;               /* End address of the map */
250   int prot;                     /* Memory protection */
251   int flags;                    /* Additional memory flags */
252   void *offset;                 /* Offset in the file/whatever */
253   char dev_major;               /* Major of the device */
254   char dev_minor;               /* Minor of the device */
255   unsigned long inode;          /* Inode in the device */
256   char *pathname;               /* Path name of the mapped file */
257
258 } s_map_region_t;
259
260 typedef struct s_memory_map {
261
262   s_map_region_t *regions;      /* Pointer to an array of regions */
263   int mapsize;                  /* Number of regions in the memory */
264
265 } s_memory_map_t, *memory_map_t;
266
267
268 void MC_init_memory_map_info(void);
269 memory_map_t MC_get_memory_map(void);
270 void MC_free_memory_map(memory_map_t map);
271
272 extern char *libsimgrid_path;
273
274 /********************************** Snapshot comparison **********************************/
275
276 typedef struct s_mc_comparison_times{
277   double nb_processes_comparison_time;
278   double bytes_used_comparison_time;
279   double stacks_sizes_comparison_time;
280   double binary_global_variables_comparison_time;
281   double libsimgrid_global_variables_comparison_time;
282   double heap_comparison_time;
283   double stacks_comparison_time;
284 }s_mc_comparison_times_t, *mc_comparison_times_t;
285
286 extern __thread mc_comparison_times_t mc_comp_times;
287 extern __thread double mc_snapshot_comparison_time;
288
289 int snapshot_compare(void *state1, void *state2);
290 int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall, mc_snapshot_t s1, mc_snapshot_t s2);
291 void print_comparison_times(void);
292
293 //#define MC_DEBUG 1
294 #define MC_VERBOSE 1
295
296 /********************************** DPOR for safety property **************************************/
297
298 typedef enum {
299   e_mc_reduce_unset,
300   e_mc_reduce_none,
301   e_mc_reduce_dpor
302 } e_mc_reduce_t;
303
304 extern e_mc_reduce_t mc_reduce_kind;
305 extern mc_global_t initial_state_safety;
306 extern xbt_fifo_t mc_stack_safety;
307 extern xbt_dict_t first_enabled_state;
308
309 void MC_dpor_init(void);
310 void MC_dpor(void);
311
312 typedef struct s_mc_visited_state{
313   mc_snapshot_t system_state;
314   size_t heap_bytes_used;
315   int nb_processes;
316   int num;
317   int other_num; // dot_output for
318 }s_mc_visited_state_t, *mc_visited_state_t;
319
320
321 /********************************** Double-DFS for liveness property **************************************/
322
323 extern xbt_fifo_t mc_stack_liveness;
324 extern mc_global_t initial_state_liveness;
325 extern xbt_automaton_t _mc_property_automaton;
326 extern int compare;
327
328 typedef struct s_mc_pair{
329   int num;
330   int search_cycle;
331   mc_state_t graph_state; /* System state included */
332   xbt_automaton_state_t automaton_state;
333   xbt_dynar_t atomic_propositions;
334   int requests;
335 }s_mc_pair_t, *mc_pair_t;
336
337 typedef struct s_mc_visited_pair{
338   int num;
339   int other_num; /* Dot output for */
340   int acceptance_pair;
341   mc_state_t graph_state; /* System state included */
342   xbt_automaton_state_t automaton_state;
343   xbt_dynar_t atomic_propositions;
344   size_t heap_bytes_used;
345   int nb_processes;
346   int acceptance_removed;
347   int visited_removed;
348 }s_mc_visited_pair_t, *mc_visited_pair_t;
349
350 mc_pair_t MC_pair_new(void);
351 void MC_pair_delete(mc_pair_t);
352 void mc_pair_free_voidp(void *p);
353 mc_visited_pair_t MC_visited_pair_new(int pair_num, xbt_automaton_state_t automaton_state, xbt_dynar_t atomic_propositions);
354 void MC_visited_pair_delete(mc_visited_pair_t p);
355
356 void MC_ddfs_init(void);
357 void MC_ddfs(void);
358 void MC_show_stack_liveness(xbt_fifo_t stack);
359 void MC_dump_stack_liveness(xbt_fifo_t stack);
360
361
362 /********************************** Variables with DWARF **********************************/
363
364 #define MC_OBJECT_INFO_EXECUTABLE 1
365
366 struct s_mc_object_info {
367   size_t flags;
368   char* file_name;
369   char *start_exec, *end_exec; // Executable segment
370   char *start_rw, *end_rw; // Read-write segment
371   char *start_ro, *end_ro; // read-only segment
372   xbt_dict_t subprograms; // xbt_dict_t<origin as hexadecimal string, dw_frame_t>
373   xbt_dynar_t global_variables; // xbt_dynar_t<dw_variable_t>
374   xbt_dict_t types; // xbt_dict_t<origin as hexadecimal string, dw_type_t>
375   xbt_dict_t full_types_by_name; // xbt_dict_t<name, dw_type_t> (full defined type only)
376
377   // Here we sort the minimal information for an efficient (and cache-efficient)
378   // lookup of a function given an instruction pointer.
379   // The entries are sorted by low_pc and a binary search can be used to look them up.
380   xbt_dynar_t functions_index;
381 };
382
383 mc_object_info_t MC_new_object_info(void);
384 mc_object_info_t MC_find_object_info(memory_map_t maps, char* name, int executable);
385 void MC_free_object_info(mc_object_info_t* p);
386
387 void MC_dwarf_get_variables(mc_object_info_t info);
388 void MC_dwarf_get_variables_libdw(mc_object_info_t info);
389 const char* MC_dwarf_attrname(int attr);
390 const char* MC_dwarf_tagname(int tag);
391
392 dw_frame_t MC_find_function_by_ip(void* ip);
393 mc_object_info_t MC_ip_find_object_info(void* ip);
394
395 extern mc_object_info_t mc_libsimgrid_info;
396 extern mc_object_info_t mc_binary_info;
397 extern mc_object_info_t mc_object_infos[2];
398 extern size_t mc_object_infos_size;
399
400 void MC_find_object_address(memory_map_t maps, mc_object_info_t result);
401 void MC_post_process_types(mc_object_info_t info);
402
403 // ***** Expressions
404
405 /** \brief a DWARF expression with optional validity contraints */
406 typedef struct s_mc_expression {
407   size_t size;
408   Dwarf_Op* ops;
409   // Optional validity:
410   void* lowpc, *highpc;
411 } s_mc_expression_t, *mc_expression_t;
412
413 /** A location list (list of location expressions) */
414 typedef struct s_mc_location_list {
415   size_t size;
416   mc_expression_t locations;
417 } s_mc_location_list_t, *mc_location_list_t;
418
419 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);
420 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);
421
422 void mc_dwarf_expression_clear(mc_expression_t expression);
423 void mc_dwarf_expression_init(mc_expression_t expression, size_t len, Dwarf_Op* ops);
424
425 void mc_dwarf_location_list_clear(mc_location_list_t list);
426
427 void mc_dwarf_location_list_init_from_expression(mc_location_list_t target, size_t len, Dwarf_Op* ops);
428 void mc_dwarf_location_list_init(mc_location_list_t target, mc_object_info_t info, Dwarf_Die* die, Dwarf_Attribute* attr);
429
430 // ***** Variables and functions
431
432 struct s_dw_type{
433   e_dw_type_type type;
434   void *id; /* Offset in the section (in hexadecimal form) */
435   char *name; /* Name of the type */
436   int byte_size; /* Size in bytes */
437   int element_count; /* Number of elements for array type */
438   char *dw_type_id; /* DW_AT_type id */
439   xbt_dynar_t members; /* if DW_TAG_structure_type, DW_TAG_class_type, DW_TAG_union_type*/
440   int is_pointer_type;
441
442   // Location (for members) is either of:
443   struct s_mc_expression location;
444   int offset;
445
446   dw_type_t subtype; // DW_AT_type
447   dw_type_t full_type; // The same (but more complete) type
448 };
449
450 void* mc_member_resolve(const void* base, dw_type_t type, dw_type_t member, mc_snapshot_t snapshot);
451 void* mc_member_snapshot_resolve(const void* base, dw_type_t type, dw_type_t member, mc_snapshot_t snapshot);
452
453 typedef struct s_dw_variable{
454   Dwarf_Off dwarf_offset; /* Global offset of the field. */
455   int global;
456   char *name;
457   char *type_origin;
458   dw_type_t type;
459
460   // Use either of:
461   s_mc_location_list_t locations;
462   void* address;
463
464   size_t start_scope;
465   mc_object_info_t object_info;
466
467 }s_dw_variable_t, *dw_variable_t;
468
469 struct s_dw_frame{
470   int tag;
471   char *name;
472   void *low_pc;
473   void *high_pc;
474   s_mc_location_list_t frame_base;
475   xbt_dynar_t /* <dw_variable_t> */ variables; /* Cannot use dict, there may be several variables with the same name (in different lexical blocks)*/
476   unsigned long int id; /* DWARF offset of the subprogram */
477   xbt_dynar_t /* <dw_frame_t> */ scopes;
478   Dwarf_Off abstract_origin_id;
479   mc_object_info_t object_info;
480 };
481
482 struct s_mc_function_index_item {
483   void* low_pc, *high_pc;
484   dw_frame_t function;
485 };
486
487 void mc_frame_free(dw_frame_t freme);
488
489 void dw_type_free(dw_type_t t);
490 void dw_variable_free(dw_variable_t v);
491 void dw_variable_free_voidp(void *t);
492
493 void MC_dwarf_register_global_variable(mc_object_info_t info, dw_variable_t variable);
494 void MC_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
495 void MC_dwarf_register_non_global_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
496 void MC_dwarf_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
497
498 /** Find the DWARF offset for this ELF object
499  *
500  *  An offset is applied to address found in DWARF:
501  *
502  *  <ul>
503  *    <li>for an executable obejct, addresses are virtual address
504  *        (there is no offset) i.e. \f$\text{virtual address} = \{dwarf address}\f$;</li>
505  *    <li>for a shared object, the addreses are offset from the begining
506  *        of the shared object (the base address of the mapped shared
507  *        object must be used as offset
508  *        i.e. \f$\text{virtual address} = \text{shared object base address}
509  *             + \text{dwarf address}\f$.</li>
510  *
511  */
512 void* MC_object_base_address(mc_object_info_t info);
513
514 /********************************** DWARF **********************************/
515
516 #define MC_EXPRESSION_STACK_SIZE 64
517
518 #define MC_EXPRESSION_OK 0
519 #define MC_EXPRESSION_E_UNSUPPORTED_OPERATION 1
520 #define MC_EXPRESSION_E_STACK_OVERFLOW 2
521 #define MC_EXPRESSION_E_STACK_UNDERFLOW 3
522 #define MC_EXPRESSION_E_MISSING_STACK_CONTEXT 4
523 #define MC_EXPRESSION_E_MISSING_FRAME_BASE 5
524 #define MC_EXPRESSION_E_NO_BASE_ADDRESS 6
525
526 typedef struct s_mc_expression_state {
527   uintptr_t stack[MC_EXPRESSION_STACK_SIZE];
528   size_t stack_size;
529
530   unw_cursor_t* cursor;
531   void* frame_base;
532   mc_snapshot_t snapshot;
533   mc_object_info_t object_info;
534 } s_mc_expression_state_t, *mc_expression_state_t;
535
536 int mc_dwarf_execute_expression(size_t n, const Dwarf_Op* ops, mc_expression_state_t state);
537
538 void* mc_find_frame_base(dw_frame_t frame, mc_object_info_t object_info, unw_cursor_t* unw_cursor);
539
540 /********************************** Miscellaneous **********************************/
541
542 typedef struct s_local_variable{
543   dw_frame_t subprogram;
544   unsigned long ip;
545   char *name;
546   dw_type_t type;
547   void *address;
548   int region;
549 }s_local_variable_t, *local_variable_t;
550
551 /********************************* Communications pattern ***************************/
552
553 typedef struct s_mc_comm_pattern{
554   int num;
555   smx_action_t comm;
556   e_smx_comm_type_t type;
557   int completed;
558   unsigned long src_proc;
559   unsigned long dst_proc;
560   const char *src_host;
561   const char *dst_host;
562   char *rdv;
563   size_t data_size;
564   void *data;
565   int matched_comm;
566 }s_mc_comm_pattern_t, *mc_comm_pattern_t;
567
568 extern xbt_dynar_t communications_pattern;
569
570 void get_comm_pattern(xbt_dynar_t communications_pattern, smx_simcall_t request, int call);
571
572 /* *********** Sets *********** */
573
574 typedef struct s_mc_address_set *mc_address_set_t;
575
576 mc_address_set_t mc_address_set_new();
577 void mc_address_set_free(mc_address_set_t* p);
578 void mc_address_add(mc_address_set_t p, const void* value);
579 bool mc_address_test(mc_address_set_t p, const void* value);
580
581 /* *********** Hash *********** */
582
583 /** \brief Hash the current state
584  *  \param num_state number of states
585  *  \param stacks stacks (mc_snapshot_stak_t) used fot the stack unwinding informations
586  *  \result resulting hash
587  * */
588 uint64_t mc_hash_processes_state(int num_state, xbt_dynar_t stacks);
589
590 #endif
591