Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
caff24d421a63ca14d06cbdb19fb771d3d61bffd
[simgrid.git] / src / mc / mc_private.h
1 /* Copyright (c) 2007-2012 Da SimGrid Team. All rights reserved.            */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef MC_PRIVATE_H
7 #define MC_PRIVATE_H
8
9 #include "simgrid_config.h"
10 #include <stdio.h>
11 #include <sys/mman.h>
12 #include "mc/mc.h"
13 #include "mc/datatypes.h"
14 #include "xbt/fifo.h"
15 #include "xbt/config.h"
16 #include "xbt/function_types.h"
17 #include "xbt/mmalloc.h"
18 #include "../simix/smx_private.h"
19 #include "xbt/automaton.h"
20 #include "xbt/hash.h"
21 #include "msg/msg.h"
22 #include "msg/datatypes.h"
23 #include "xbt/strbuff.h"
24
25 /****************************** Snapshots ***********************************/
26
27 typedef struct s_mc_mem_region{
28   int type;
29   void *start_addr;
30   void *data;
31   size_t size;
32 } s_mc_mem_region_t, *mc_mem_region_t;
33
34 typedef struct s_mc_snapshot{
35   unsigned int num_reg;
36   mc_mem_region_t *regions;
37   xbt_dynar_t stacks;
38 } s_mc_snapshot_t, *mc_snapshot_t;
39
40 typedef struct s_mc_snapshot_stack{
41   xbt_strbuff_t local_variables;
42   void *stack_pointer;
43 }s_mc_snapshot_stack_t, *mc_snapshot_stack_t;
44
45 void MC_take_snapshot(mc_snapshot_t);
46 void MC_take_snapshot_liveness(mc_snapshot_t s);
47 void MC_restore_snapshot(mc_snapshot_t);
48 void MC_free_snapshot(mc_snapshot_t);
49
50
51 /********************************* MC Global **********************************/
52 extern double *mc_time;
53
54 /* Bound of the MC depth-first search algorithm */
55 #define MAX_DEPTH 1000
56 #define MAX_DEPTH_LIVENESS 500
57
58 int MC_deadlock_check(void);
59 void MC_replay(xbt_fifo_t stack, int start);
60 void MC_replay_liveness(xbt_fifo_t stack, int all_stack);
61 void MC_wait_for_requests(void);
62 void MC_get_enabled_processes();
63 void MC_show_deadlock(smx_simcall_t req);
64 void MC_show_stack_safety(xbt_fifo_t stack);
65 void MC_dump_stack_safety(xbt_fifo_t stack);
66
67 /********************************* Requests ***********************************/
68 int MC_request_depend(smx_simcall_t req1, smx_simcall_t req2);
69 char* MC_request_to_string(smx_simcall_t req, int value);
70 unsigned int MC_request_testany_fail(smx_simcall_t req);
71 /*int MC_waitany_is_enabled_by_comm(smx_req_t req, unsigned int comm);*/
72 int MC_request_is_visible(smx_simcall_t req);
73 int MC_request_is_enabled(smx_simcall_t req);
74 int MC_request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx);
75 int MC_process_is_enabled(smx_process_t process);
76
77
78 /******************************** States **************************************/
79 /* Possible exploration status of a process in a state */
80 typedef enum {
81   MC_NOT_INTERLEAVE=0,      /* Do not interleave (do not execute) */
82   MC_INTERLEAVE,            /* Interleave the process (one or more request) */
83   MC_DONE                   /* Already interleaved */
84 } e_mc_process_state_t;
85
86 /* On every state, each process has an entry of the following type */
87 typedef struct mc_procstate{
88   e_mc_process_state_t state;       /* Exploration control information */
89   unsigned int interleave_count;    /* Number of times that the process was
90                                        interleaved */
91 } s_mc_procstate_t, *mc_procstate_t;
92
93 /* An exploration state is composed of: */
94 typedef struct mc_state {
95   unsigned long max_pid;            /* Maximum pid at state's creation time */
96   mc_procstate_t proc_status;       /* State's exploration status by process */
97   s_smx_action_t internal_comm;     /* To be referenced by the internal_req */
98   s_smx_simcall_t internal_req;         /* Internal translation of request */
99   s_smx_simcall_t executed_req;         /* The executed request of the state */
100   int req_num;                      /* The request number (in the case of a
101                                        multi-request like waitany ) */
102   mc_snapshot_t system_state;      /* Snapshot of system state */
103 } s_mc_state_t, *mc_state_t;
104
105 extern xbt_fifo_t mc_stack_safety_stateless;
106
107 mc_state_t MC_state_new(void);
108 void MC_state_delete(mc_state_t state);
109 void MC_state_interleave_process(mc_state_t state, smx_process_t process);
110 unsigned int MC_state_interleave_size(mc_state_t state);
111 int MC_state_process_is_done(mc_state_t state, smx_process_t process);
112 void MC_state_set_executed_request(mc_state_t state, smx_simcall_t req, int value);
113 smx_simcall_t MC_state_get_executed_request(mc_state_t state, int *value);
114 smx_simcall_t MC_state_get_internal_request(mc_state_t state);
115 smx_simcall_t MC_state_get_request(mc_state_t state, int *value);
116
117 /****************************** Statistics ************************************/
118 typedef struct mc_stats {
119   unsigned long state_size;
120   unsigned long visited_states;
121   unsigned long expanded_states;
122   unsigned long executed_transitions;
123 } s_mc_stats_t, *mc_stats_t;
124
125 typedef struct mc_stats_pair {
126   //unsigned long pair_size;
127   unsigned long visited_pairs;
128   unsigned long expanded_pairs;
129   unsigned long executed_transitions;
130 } s_mc_stats_pair_t, *mc_stats_pair_t;
131
132 extern mc_stats_t mc_stats;
133 extern mc_stats_pair_t mc_stats_pair;
134
135 void MC_print_statistics(mc_stats_t);
136 void MC_print_statistics_pairs(mc_stats_pair_t);
137
138 /********************************** MEMORY ******************************/
139 /* The possible memory modes for the modelchecker are standard and raw. */
140 /* Normally the system should operate in std, for switching to raw mode */
141 /* you must wrap the code between MC_SET_RAW_MODE and MC_UNSET_RAW_MODE */
142
143 extern void *std_heap;
144 extern void *raw_heap;
145
146
147 /* FIXME: Horrible hack! because the mmalloc library doesn't provide yet of */
148 /* an API to query about the status of a heap, we simply call mmstats and */
149 /* because I now how does structure looks like, then I redefine it here */
150
151 /* struct mstats { */
152 /*   size_t bytes_total;           /\* Total size of the heap. *\/ */
153 /*   size_t chunks_used;           /\* Chunks allocated by the user. *\/ */
154 /*   size_t bytes_used;            /\* Byte total of user-allocated chunks. *\/ */
155 /*   size_t chunks_free;           /\* Chunks in the free list. *\/ */
156 /*   size_t bytes_free;            /\* Byte total of chunks in the free list. *\/ */
157 /* }; */
158
159 #define MC_SET_RAW_MEM    mmalloc_set_current_heap(raw_heap)
160 #define MC_UNSET_RAW_MEM  mmalloc_set_current_heap(std_heap)
161
162 extern int raw_mem_set;
163
164 /******************************* MEMORY MAPPINGS ***************************/
165 /* These functions and data structures implements a binary interface for   */
166 /* the proc maps ascii interface                                           */
167
168 /* Each field is defined as documented in proc's manual page  */
169 typedef struct s_map_region {
170
171   void *start_addr;             /* Start address of the map */
172   void *end_addr;               /* End address of the map */
173   int prot;                     /* Memory protection */
174   int flags;                    /* Aditional memory flags */
175   void *offset;                 /* Offset in the file/whatever */
176   char dev_major;               /* Major of the device */
177   char dev_minor;               /* Minor of the device */
178   unsigned long inode;          /* Inode in the device */
179   char *pathname;               /* Path name of the mapped file */
180
181 } s_map_region_t;
182
183 typedef struct s_memory_map {
184
185   s_map_region_t *regions;      /* Pointer to an array of regions */
186   int mapsize;                  /* Number of regions in the memory */
187
188 } s_memory_map_t, *memory_map_t;
189
190 memory_map_t get_memory_map(void);
191 void free_memory_map(memory_map_t map);
192 void get_libsimgrid_plt_section(void);
193 void get_binary_plt_section(void);
194
195 extern void *start_data_libsimgrid;
196
197 /********************************** DPOR for safety  **************************************/
198 typedef enum {
199   e_mc_reduce_unset,
200   e_mc_reduce_none,
201   e_mc_reduce_dpor
202 } e_mc_reduce_t;
203
204 extern e_mc_reduce_t mc_reduce_kind;
205
206 void MC_dpor_init(void);
207 void MC_dpor(void);
208 void MC_dpor_exit(void);
209 void MC_init_safety(void);
210
211
212 /********************************** Double-DFS for liveness property**************************************/
213
214 extern xbt_fifo_t mc_stack_liveness;
215 extern mc_snapshot_t initial_snapshot_liveness;
216 extern xbt_automaton_t _mc_property_automaton;
217 extern int compare;
218 extern void *start_plt_libsimgrid;
219 extern void *end_plt_libsimgrid;
220 extern void *start_plt_binary;
221 extern void *end_plt_binary;
222
223 typedef struct s_mc_pair{
224   mc_snapshot_t system_state;
225   mc_state_t graph_state;
226   xbt_state_t automaton_state;
227 }s_mc_pair_t, *mc_pair_t;
228
229 typedef struct s_mc_pair_reached{
230   int nb;
231   xbt_state_t automaton_state;
232   xbt_dynar_t prop_ato;
233   mc_snapshot_t system_state;
234 }s_mc_pair_reached_t, *mc_pair_reached_t;
235
236 int MC_automaton_evaluate_label(xbt_exp_label_t l);
237 mc_pair_t new_pair(mc_snapshot_t sn, mc_state_t sg, xbt_state_t st);
238
239 int reached(xbt_state_t st);
240 void set_pair_reached(xbt_state_t st);
241 int snapshot_compare(mc_snapshot_t s1, mc_snapshot_t s2);
242 void MC_pair_delete(mc_pair_t pair);
243 void MC_exit_liveness(void);
244 mc_state_t MC_state_pair_new(void);
245
246 /* **** Double-DFS stateless **** */
247
248 typedef struct s_mc_pair_stateless{
249   mc_state_t graph_state;
250   xbt_state_t automaton_state;
251   int requests;
252 }s_mc_pair_stateless_t, *mc_pair_stateless_t;
253
254 mc_pair_stateless_t new_pair_stateless(mc_state_t sg, xbt_state_t st, int r);
255 void MC_ddfs_init(void);
256 void MC_ddfs(int search_cycle);
257 void MC_show_stack_liveness(xbt_fifo_t stack);
258 void MC_dump_stack_liveness(xbt_fifo_t stack);
259 void MC_pair_stateless_delete(mc_pair_stateless_t pair);
260
261 /********************************** Configuration of MC **************************************/
262 extern xbt_fifo_t mc_stack_safety;
263
264 extern int _surf_mc_checkpoint;
265 extern char* _surf_mc_property_file;
266
267 /****** Core dump ******/
268
269 int create_dump(int pair);
270
271 /****** Local variables with DWARF ******/
272
273 typedef enum {
274   e_dw_loclist,
275   e_dw_register,
276   e_dw_bregister_op,
277   e_dw_lit,
278   e_dw_fbregister_op,
279   e_dw_piece,
280   e_dw_arithmetic,
281   e_dw_plus_uconst,
282   e_dw_compose,
283   e_dw_deref,
284   e_dw_uconstant,
285   e_dw_sconstant,
286   e_dw_unsupported
287 } e_dw_location_type;
288
289 typedef struct s_dw_location{
290   e_dw_location_type type;
291   union{
292     
293     xbt_dynar_t loclist;
294     
295     int reg;
296     
297     struct{
298       unsigned int reg;
299       int offset;
300     }breg_op;
301
302     unsigned int lit;
303
304     int fbreg_op;
305
306     int piece;
307
308     unsigned short int deref_size;
309
310     xbt_dynar_t compose;
311
312     char *arithmetic;
313
314     struct{
315       int bytes;
316       long unsigned int value;
317     }uconstant;
318
319     struct{
320       int bytes;
321       long signed int value;
322     }sconstant;
323
324     unsigned int plus_uconst;
325
326   }location;
327 }s_dw_location_t, *dw_location_t;
328
329 typedef struct s_dw_location_entry{
330   long lowpc;
331   long highpc;
332   dw_location_t location;
333 }s_dw_location_entry_t, *dw_location_entry_t;
334
335 typedef struct s_dw_local_variable{
336   char *name;
337   dw_location_t location;
338 }s_dw_local_variable_t, *dw_local_variable_t;
339
340 typedef struct s_dw_frame{
341   char *name;
342   void *low_pc;
343   void *high_pc;
344   dw_location_t frame_base;
345   xbt_dict_t variables;
346   unsigned long int start;
347   unsigned long int end;
348 }s_dw_frame_t, *dw_frame_t;
349
350 /* FIXME : implement free functions for each structure */
351
352 extern xbt_dict_t mc_local_variables;
353
354 typedef struct s_variable_value{
355   char *type;
356   
357   union{
358     void *address;
359     long int res;
360   }value;
361 }s_variable_value_t, *variable_value_t;
362
363 void MC_get_local_variables(const char *elf_file, xbt_dict_t location_list, xbt_dict_t *variables);
364 void print_local_variables(xbt_dict_t list);
365 char *get_libsimgrid_path(void);
366 xbt_dict_t MC_get_location_list(const char *elf_file);
367
368 #endif