Logo AND Algorithmique Numérique Distribuée

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