Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
e7a2ce28a7ecd76593e1d04ab83ec3609c936c54
[simgrid.git] / src / mc / mc_private.h
1 /* Copyright (c) 2007-2013. 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
33 /****************************** Snapshots ***********************************/
34
35 #define NB_REGIONS 3 /* binary data (data + BSS) (type = 2), libsimgrid data (data + BSS) (type = 1), std_heap (type = 0)*/ 
36
37 typedef struct s_mc_mem_region{
38   void *start_addr;
39   void *data;
40   size_t size;
41 } s_mc_mem_region_t, *mc_mem_region_t;
42
43 typedef struct s_mc_snapshot{
44   size_t heap_bytes_used;
45   mc_mem_region_t regions[NB_REGIONS];
46   int nb_processes;
47   size_t *stack_sizes;
48   xbt_dynar_t stacks;
49   xbt_dynar_t to_ignore;
50   uint64_t hash;
51 } s_mc_snapshot_t, *mc_snapshot_t;
52
53 /** Information about a given stack frame
54  *
55  */
56 typedef struct s_mc_stack_frame {
57   /** Instruction pointer */
58   unw_word_t ip;
59   /** Stack pointer */
60   unw_word_t sp;
61   unw_word_t frame_base;
62   dw_frame_t frame;
63   char* frame_name;
64   unw_cursor_t unw_cursor;
65 } s_mc_stack_frame_t, *mc_stack_frame_t;
66
67 typedef struct s_mc_snapshot_stack{
68   xbt_dynar_t local_variables;
69   void *stack_pointer;
70   void *real_address;
71   xbt_dynar_t stack_frames; // mc_stack_frame_t
72 }s_mc_snapshot_stack_t, *mc_snapshot_stack_t;
73
74 typedef struct s_mc_global_t{
75   mc_snapshot_t snapshot;
76   int raw_mem_set;
77   int prev_pair;
78   char *prev_req;
79   int initial_communications_pattern_done;
80   int comm_deterministic;
81   int send_deterministic;
82 }s_mc_global_t, *mc_global_t;
83
84 typedef struct s_mc_checkpoint_ignore_region{
85   void *addr;
86   size_t size;
87 }s_mc_checkpoint_ignore_region_t, *mc_checkpoint_ignore_region_t;
88
89 mc_snapshot_t SIMIX_pre_mc_snapshot(smx_simcall_t simcall);
90 mc_snapshot_t MC_take_snapshot(int num_state);
91 void MC_restore_snapshot(mc_snapshot_t);
92 void MC_free_snapshot(mc_snapshot_t);
93
94 extern xbt_dynar_t mc_checkpoint_ignore;
95
96 /********************************* MC Global **********************************/
97
98 extern double *mc_time;
99 extern FILE *dot_output;
100 extern const char* colors[13];
101 extern xbt_parmap_t parmap;
102
103 extern int user_max_depth_reached;
104
105 int MC_deadlock_check(void);
106 void MC_replay(xbt_fifo_t stack, int start);
107 void MC_replay_liveness(xbt_fifo_t stack, int all_stack);
108 void MC_wait_for_requests(void);
109 void MC_show_deadlock(smx_simcall_t req);
110 void MC_show_stack_safety(xbt_fifo_t stack);
111 void MC_dump_stack_safety(xbt_fifo_t stack);
112 void MC_init(void);
113 int SIMIX_pre_mc_random(smx_simcall_t simcall, int min, int max);
114
115
116 /********************************* Requests ***********************************/
117
118 int MC_request_depend(smx_simcall_t req1, smx_simcall_t req2);
119 char* MC_request_to_string(smx_simcall_t req, int value);
120 unsigned int MC_request_testany_fail(smx_simcall_t req);
121 /*int MC_waitany_is_enabled_by_comm(smx_req_t req, unsigned int comm);*/
122 int MC_request_is_visible(smx_simcall_t req);
123 int MC_request_is_enabled(smx_simcall_t req);
124 int MC_request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx);
125 int MC_process_is_enabled(smx_process_t process);
126 char *MC_request_get_dot_output(smx_simcall_t req, int value);
127
128
129 /******************************** States **************************************/
130
131 /* Possible exploration status of a process in a state */
132 typedef enum {
133   MC_NOT_INTERLEAVE=0,      /* Do not interleave (do not execute) */
134   MC_INTERLEAVE,            /* Interleave the process (one or more request) */
135   MC_MORE_INTERLEAVE,       /* Interleave twice the process (for mc_random simcall) */
136   MC_DONE                   /* Already interleaved */
137 } e_mc_process_state_t;
138
139 /* On every state, each process has an entry of the following type */
140 typedef struct mc_procstate{
141   e_mc_process_state_t state;       /* Exploration control information */
142   unsigned int interleave_count;    /* Number of times that the process was
143                                        interleaved */
144 } s_mc_procstate_t, *mc_procstate_t;
145
146 /* An exploration state is composed of: */
147 typedef struct mc_state {
148   unsigned long max_pid;            /* Maximum pid at state's creation time */
149   mc_procstate_t proc_status;       /* State's exploration status by process */
150   s_smx_action_t internal_comm;     /* To be referenced by the internal_req */
151   s_smx_simcall_t internal_req;         /* Internal translation of request */
152   s_smx_simcall_t executed_req;         /* The executed request of the state */
153   int req_num;                      /* The request number (in the case of a
154                                        multi-request like waitany ) */
155   mc_snapshot_t system_state;      /* Snapshot of system state */
156   int num;
157 } s_mc_state_t, *mc_state_t;
158
159 mc_state_t MC_state_new(void);
160 void MC_state_delete(mc_state_t state);
161 void MC_state_interleave_process(mc_state_t state, smx_process_t process);
162 unsigned int MC_state_interleave_size(mc_state_t state);
163 int MC_state_process_is_done(mc_state_t state, smx_process_t process);
164 void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int value);
165 smx_simcall_t MC_state_get_executed_request(mc_state_t state, int *value);
166 smx_simcall_t MC_state_get_internal_request(mc_state_t state);
167 smx_simcall_t MC_state_get_request(mc_state_t state, int *value);
168 void MC_state_remove_interleave_process(mc_state_t state, smx_process_t process);
169
170
171 /****************************** Statistics ************************************/
172
173 typedef struct mc_stats {
174   unsigned long state_size;
175   unsigned long visited_states;
176   unsigned long visited_pairs;
177   unsigned long expanded_states;
178   unsigned long expanded_pairs;
179   unsigned long executed_transitions;
180 } s_mc_stats_t, *mc_stats_t;
181
182 extern mc_stats_t mc_stats;
183
184 void MC_print_statistics(mc_stats_t);
185
186
187 /********************************** MEMORY ******************************/
188 /* The possible memory modes for the modelchecker are standard and raw. */
189 /* Normally the system should operate in std, for switching to raw mode */
190 /* you must wrap the code between MC_SET_RAW_MODE and MC_UNSET_RAW_MODE */
191
192 extern void *std_heap;
193 extern void *raw_heap;
194
195
196 /* FIXME: Horrible hack! because the mmalloc library doesn't provide yet of */
197 /* an API to query about the status of a heap, we simply call mmstats and */
198 /* because I now how does structure looks like, then I redefine it here */
199
200 /* struct mstats { */
201 /*   size_t bytes_total;           /\* Total size of the heap. *\/ */
202 /*   size_t chunks_used;           /\* Chunks allocated by the user. *\/ */
203 /*   size_t bytes_used;            /\* Byte total of user-allocated chunks. *\/ */
204 /*   size_t chunks_free;           /\* Chunks in the free list. *\/ */
205 /*   size_t bytes_free;            /\* Byte total of chunks in the free list. *\/ */
206 /* }; */
207
208 #define MC_SET_RAW_MEM    mmalloc_set_current_heap(raw_heap)
209 #define MC_UNSET_RAW_MEM  mmalloc_set_current_heap(std_heap)
210
211
212 /******************************* MEMORY MAPPINGS ***************************/
213 /* These functions and data structures implements a binary interface for   */
214 /* the proc maps ascii interface                                           */
215
216 /* Each field is defined as documented in proc's manual page  */
217 typedef struct s_map_region {
218
219   void *start_addr;             /* Start address of the map */
220   void *end_addr;               /* End address of the map */
221   int prot;                     /* Memory protection */
222   int flags;                    /* Additional memory flags */
223   void *offset;                 /* Offset in the file/whatever */
224   char dev_major;               /* Major of the device */
225   char dev_minor;               /* Minor of the device */
226   unsigned long inode;          /* Inode in the device */
227   char *pathname;               /* Path name of the mapped file */
228
229 } s_map_region_t;
230
231 typedef struct s_memory_map {
232
233   s_map_region_t *regions;      /* Pointer to an array of regions */
234   int mapsize;                  /* Number of regions in the memory */
235
236 } s_memory_map_t, *memory_map_t;
237
238
239 void MC_init_memory_map_info(void);
240 memory_map_t MC_get_memory_map(void);
241 void MC_free_memory_map(memory_map_t map);
242
243 extern char *libsimgrid_path;
244
245 /********************************** Snapshot comparison **********************************/
246
247 typedef struct s_mc_comparison_times{
248   double nb_processes_comparison_time;
249   double bytes_used_comparison_time;
250   double stacks_sizes_comparison_time;
251   double binary_global_variables_comparison_time;
252   double libsimgrid_global_variables_comparison_time;
253   double heap_comparison_time;
254   double stacks_comparison_time;
255 }s_mc_comparison_times_t, *mc_comparison_times_t;
256
257 extern __thread mc_comparison_times_t mc_comp_times;
258 extern __thread double mc_snapshot_comparison_time;
259
260 int snapshot_compare(void *state1, void *state2);
261 int SIMIX_pre_mc_compare_snapshots(smx_simcall_t simcall, mc_snapshot_t s1, mc_snapshot_t s2);
262 void print_comparison_times(void);
263
264 //#define MC_DEBUG 1
265 #define MC_VERBOSE 1
266
267 /********************************** DPOR for safety property **************************************/
268
269 typedef enum {
270   e_mc_reduce_unset,
271   e_mc_reduce_none,
272   e_mc_reduce_dpor
273 } e_mc_reduce_t;
274
275 extern e_mc_reduce_t mc_reduce_kind;
276 extern mc_global_t initial_state_safety;
277 extern xbt_fifo_t mc_stack_safety;
278 extern xbt_dict_t first_enabled_state;
279
280 void MC_dpor_init(void);
281 void MC_dpor(void);
282
283 typedef struct s_mc_visited_state{
284   mc_snapshot_t system_state;
285   size_t heap_bytes_used;
286   int nb_processes;
287   int num;
288   int other_num; // dot_output for
289 }s_mc_visited_state_t, *mc_visited_state_t;
290
291
292 /********************************** Double-DFS for liveness property **************************************/
293
294 extern xbt_fifo_t mc_stack_liveness;
295 extern mc_global_t initial_state_liveness;
296 extern xbt_automaton_t _mc_property_automaton;
297 extern int compare;
298
299 typedef struct s_mc_pair{
300   int num;
301   int search_cycle;
302   mc_state_t graph_state; /* System state included */
303   xbt_automaton_state_t automaton_state;
304   xbt_dynar_t atomic_propositions;
305   int requests;
306 }s_mc_pair_t, *mc_pair_t;
307
308 typedef struct s_mc_visited_pair{
309   int num;
310   int other_num; /* Dot output for */
311   int acceptance_pair;
312   mc_state_t graph_state; /* System state included */
313   xbt_automaton_state_t automaton_state;
314   xbt_dynar_t atomic_propositions;
315   size_t heap_bytes_used;
316   int nb_processes;
317   int acceptance_removed;
318   int visited_removed;
319 }s_mc_visited_pair_t, *mc_visited_pair_t;
320
321 mc_pair_t MC_pair_new(void);
322 void MC_pair_delete(mc_pair_t);
323 void mc_pair_free_voidp(void *p);
324 mc_visited_pair_t MC_visited_pair_new(int pair_num, xbt_automaton_state_t automaton_state, xbt_dynar_t atomic_propositions);
325 void MC_visited_pair_delete(mc_visited_pair_t p);
326
327 void MC_ddfs_init(void);
328 void MC_ddfs(void);
329 void MC_show_stack_liveness(xbt_fifo_t stack);
330 void MC_dump_stack_liveness(xbt_fifo_t stack);
331
332
333 /********************************** Variables with DWARF **********************************/
334
335 struct s_mc_object_info {
336   char* file_name;
337   char *start_exec, *end_exec; // Executable segment
338   char *start_rw, *end_rw; // Read-write segment
339   char *start_ro, *end_ro; // read-only segment
340   xbt_dict_t local_variables; // xbt_dict_t<frame_name, dw_frame_t>
341   xbt_dynar_t global_variables; // xbt_dynar_t<dw_variable_t>
342   xbt_dict_t types; // xbt_dict_t<origin as hexadecimal string, dw_type_t>
343   xbt_dict_t types_by_name; // xbt_dict_t<name, dw_type_t> (full defined type only)
344 };
345
346 mc_object_info_t MC_new_object_info(void);
347 mc_object_info_t MC_find_object_info(memory_map_t maps, char* name);
348 void MC_free_object_info(mc_object_info_t* p);
349
350 void MC_dwarf_get_variables(mc_object_info_t info);
351 void MC_dwarf_get_variables_libdw(mc_object_info_t info);
352 const char* MC_dwarf_attrname(int attr);
353 const char* MC_dwarf_tagname(int tag);
354
355 extern mc_object_info_t mc_libsimgrid_info;
356 extern mc_object_info_t mc_binary_info;
357
358 typedef enum {
359   e_dw_loclist,
360   e_dw_register,
361   e_dw_bregister_op,
362   e_dw_lit,
363   e_dw_fbregister_op,
364   e_dw_piece,
365   e_dw_arithmetic,
366   e_dw_plus_uconst,
367   e_dw_compose,
368   e_dw_deref,
369   e_dw_uconstant,
370   e_dw_sconstant,
371   e_dw_unsupported
372 } e_dw_location_type;
373
374 typedef struct s_dw_location{
375   e_dw_location_type type;
376   union{
377     
378     xbt_dynar_t loclist;
379     
380     int reg;
381     
382     struct{
383       unsigned int reg;
384       int offset;
385     }breg_op;
386
387     unsigned int lit;
388
389     int fbreg_op;
390
391     int piece;
392
393     unsigned short int deref_size;
394
395     xbt_dynar_t compose;
396
397     char *arithmetic;
398
399     struct{
400       int bytes;
401       long unsigned int value;
402     }uconstant;
403
404     struct{
405       int bytes;
406       long signed int value;
407     }sconstant;
408
409     unsigned int plus_uconst;
410
411   }location;
412 }s_dw_location_t, *dw_location_t;
413
414 typedef struct s_dw_location_entry{
415   long lowpc;
416   long highpc;
417   dw_location_t location;
418 }s_dw_location_entry_t, *dw_location_entry_t;
419
420 typedef struct s_dw_variable{
421   Dwarf_Off dwarf_offset; /* Global offset of the field. */
422   int global;
423   char *name;
424   char *type_origin;
425
426   // Use either of:
427   dw_location_t location;
428   void* address;
429
430 }s_dw_variable_t, *dw_variable_t;
431
432 struct s_dw_frame{
433   char *name;
434   void *low_pc;
435   void *high_pc;
436   dw_location_t frame_base;
437   xbt_dynar_t /* <dw_variable_t> */ variables; /* Cannot use dict, there may be several variables with the same name (in different lexical blocks)*/
438   unsigned long int start; /* DWARF offset of the subprogram */
439   unsigned long int end;   /* Dwarf offset of the next sibling */
440 };
441
442 void dw_type_free(dw_type_t t);
443 void dw_variable_free(dw_variable_t v);
444 void dw_variable_free_voidp(void *t);
445
446 void MC_dwarf_register_global_variable(mc_object_info_t info, dw_variable_t variable);
447 void MC_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
448 void MC_dwarf_register_non_global_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
449 void MC_dwarf_register_variable(mc_object_info_t info, dw_frame_t frame, dw_variable_t variable);
450
451 /********************************** DWARF **********************************/
452
453 Dwarf_Off MC_dwarf_resolve_location(unw_cursor_t* c, dw_location_t location, void* frame_pointer_address);
454 void* mc_find_frame_base(unw_word_t ip, dw_frame_t frame, unw_cursor_t* unw_cursor);
455
456 /********************************** Miscellaneous **********************************/
457
458 typedef struct s_local_variable{
459   char *frame;
460   unsigned long ip;
461   char *name;
462   char *type;
463   void *address;
464   int region;
465 }s_local_variable_t, *local_variable_t;
466
467 /********************************* Communications pattern ***************************/
468
469 typedef struct s_mc_comm_pattern{
470   int num;
471   smx_action_t comm;
472   e_smx_comm_type_t type;
473   int completed;
474   unsigned long src_proc;
475   unsigned long dst_proc;
476   char *rdv;
477   size_t data_size;
478   void *data;
479   int matched_comm;
480 }s_mc_comm_pattern_t, *mc_comm_pattern_t;
481
482 extern xbt_dynar_t communications_pattern;
483
484 void get_comm_pattern(xbt_dynar_t communications_pattern, smx_simcall_t request, int call);
485
486 /* *********** Sets *********** */
487
488 typedef struct s_mc_address_set *mc_address_set_t;
489
490 mc_address_set_t mc_address_set_new();
491 mc_address_set_t mc_address_set_free(mc_address_set_t* p);
492 void mc_address_add(mc_address_set_t p, const void* value);
493 bool mc_address_test(mc_address_set_t p, const void* value);
494
495 /* *********** Hash *********** */
496
497 /** \brief Hash the current state
498  *  \param num_state number of states
499  *  \param stacks stacks (mc_snapshot_stak_t) used fot the stack unwinding informations
500  *  \result resulting hash
501  * */
502 uint64_t mc_hash_processes_state(int num_state, xbt_dynar_t stacks);
503
504 #endif
505