Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7da8e4b9bea107c9742201a72bea992e7950e6f0
[simgrid.git] / src / mc / mc_global.c
1 #include <unistd.h>
2 #include <sys/types.h>
3 #include <sys/wait.h>
4 #include <sys/time.h>
5
6 #include "../surf/surf_private.h"
7 #include "../simix/private.h"
8 #include "xbt/fifo.h"
9 #include "private.h"
10
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_global, mc,
13                                 "Logging specific to MC (global)");
14
15 /* MC global data structures */
16
17 mc_state_t mc_current_state = NULL;
18 char mc_replay_mode = FALSE;
19 double *mc_time = NULL;
20 mc_snapshot_t initial_snapshot = NULL;
21
22 /* Safety */
23
24 xbt_fifo_t mc_stack_safety_stateful = NULL;
25 xbt_fifo_t mc_stack_safety_stateless = NULL;
26 mc_stats_t mc_stats = NULL;
27
28 /* Liveness */
29
30 xbt_fifo_t mc_stack_liveness_stateful = NULL;
31 mc_stats_pair_t mc_stats_pair = NULL;
32 xbt_fifo_t mc_stack_liveness_stateless = NULL;
33
34
35 /**
36  *  \brief Initialize the model-checker data structures
37  */
38 void MC_init_safety_stateless(void)
39 {
40
41   /* Check if MC is already initialized */
42   if (initial_snapshot)
43     return;
44
45   mc_time = xbt_new0(double, simix_process_maxpid);
46
47   /* Initialize the data structures that must be persistent across every
48      iteration of the model-checker (in RAW memory) */
49   MC_SET_RAW_MEM;
50
51   /* Initialize statistics */
52   mc_stats = xbt_new0(s_mc_stats_t, 1);
53   mc_stats->state_size = 1;
54
55   /* Create exploration stack */
56   mc_stack_safety_stateless = xbt_fifo_new();
57
58   MC_UNSET_RAW_MEM;
59
60   MC_dpor_init();
61
62   MC_SET_RAW_MEM;
63   /* Save the initial state */
64   initial_snapshot = xbt_new0(s_mc_snapshot_t, 1);
65   MC_take_snapshot(initial_snapshot);
66   MC_UNSET_RAW_MEM;
67 }
68
69 void MC_init_safety_stateful(void){
70
71   
72    /* Check if MC is already initialized */
73   if (initial_snapshot)
74     return;
75
76   mc_time = xbt_new0(double, simix_process_maxpid);
77
78   /* Initialize the data structures that must be persistent across every
79      iteration of the model-checker (in RAW memory) */
80   MC_SET_RAW_MEM;
81
82   /* Initialize statistics */
83   mc_stats = xbt_new0(s_mc_stats_t, 1);
84   mc_stats->state_size = 1;
85
86   /* Create exploration stack */
87   mc_stack_safety_stateful = xbt_fifo_new();
88
89   MC_UNSET_RAW_MEM;
90
91   MC_dpor_stateful_init();
92
93
94 }
95
96 void MC_init_liveness_stateful(xbt_automaton_t a){
97
98   XBT_DEBUG("Start init mc");
99   
100   mc_time = xbt_new0(double, simix_process_maxpid);
101
102   /* Initialize the data structures that must be persistent across every
103      iteration of the model-checker (in RAW memory) */
104
105   MC_SET_RAW_MEM;
106
107   /* Initialize statistics */
108   mc_stats_pair = xbt_new0(s_mc_stats_pair_t, 1);
109   //mc_stats = xbt_new0(s_mc_stats_t, 1);
110
111   XBT_DEBUG("Creating snapshot_stack");
112
113  /* Create exploration stack */
114   mc_stack_liveness_stateful = xbt_fifo_new();
115
116
117   MC_UNSET_RAW_MEM;
118
119   MC_ddfs_stateful_init(a);
120   //MC_dpor2_init(a);
121   //MC_dpor3_init(a);
122 }
123
124 void MC_init_liveness_stateless(xbt_automaton_t a){
125
126   XBT_DEBUG("Start init mc");
127   
128   mc_time = xbt_new0(double, simix_process_maxpid);
129
130   /* Initialize the data structures that must be persistent across every
131      iteration of the model-checker (in RAW memory) */
132
133   MC_SET_RAW_MEM;
134
135   /* Initialize statistics */
136   mc_stats_pair = xbt_new0(s_mc_stats_pair_t, 1);
137
138   XBT_DEBUG("Creating stack");
139
140  /* Create exploration stack */
141   mc_stack_liveness_stateless = xbt_fifo_new();
142
143   MC_UNSET_RAW_MEM;
144
145   MC_ddfs_stateless_init(a);
146
147   
148 }
149
150
151 void MC_modelcheck(void)
152 {
153   MC_init_safety_stateless();
154   MC_dpor();
155   MC_exit();
156 }
157
158 void MC_modelcheck_stateful(void)
159 {
160   MC_init_safety_stateful();
161   MC_dpor_stateful();
162   MC_exit();
163 }
164
165 void MC_modelcheck_liveness_stateful(xbt_automaton_t a){
166   MC_init_liveness_stateful(a);
167   MC_exit_liveness();
168 }
169
170 void MC_modelcheck_liveness_stateless(xbt_automaton_t a){
171   MC_init_liveness_stateless(a);
172   MC_exit_liveness();
173 }
174
175 void MC_exit_liveness(void)
176 {
177   MC_print_statistics_pairs(mc_stats_pair);
178   xbt_free(mc_time);
179   MC_memory_exit();
180 }
181
182
183 void MC_exit(void)
184 {
185   MC_print_statistics(mc_stats);
186   xbt_free(mc_time);
187   MC_memory_exit();
188 }
189
190
191 int MC_random(int min, int max)
192 {
193   /*FIXME: return mc_current_state->executed_transition->random.value;*/
194   return 0;
195 }
196
197 /**
198  * \brief Schedules all the process that are ready to run
199  */
200 void MC_wait_for_requests(void)
201 {
202   smx_process_t process;
203   smx_req_t req;
204   unsigned int iter;
205
206   while (xbt_dynar_length(simix_global->process_to_run)) {
207     SIMIX_process_runall();
208     xbt_dynar_foreach(simix_global->process_that_ran, iter, process) {
209       req = &process->request;
210       if (req->call != REQ_NO_REQ && !MC_request_is_visible(req))
211           SIMIX_request_pre(req, 0);
212     }
213   }
214 }
215
216 int MC_deadlock_check()
217 {
218   int deadlock = FALSE;
219   smx_process_t process;
220   if(xbt_swag_size(simix_global->process_list)){
221     deadlock = TRUE;
222     xbt_swag_foreach(process, simix_global->process_list){
223       if(process->request.call != REQ_NO_REQ
224          && MC_request_is_enabled(&process->request)){
225         deadlock = FALSE;
226         break;
227       }
228     }
229   }
230   return deadlock;
231 }
232
233 /**
234  * \brief Re-executes from the initial state all the transitions indicated by
235  *        a given model-checker stack.
236  * \param stack The stack with the transitions to execute.
237 */
238 void MC_replay(xbt_fifo_t stack)
239 {
240   int value;
241   char *req_str;
242   smx_req_t req = NULL, saved_req = NULL;
243   xbt_fifo_item_t item;
244   mc_state_t state;
245
246   XBT_DEBUG("**** Begin Replay ****");
247
248   /* Restore the initial state */
249   MC_restore_snapshot(initial_snapshot);
250   /* At the moment of taking the snapshot the raw heap was set, so restoring
251    * it will set it back again, we have to unset it to continue  */
252   MC_UNSET_RAW_MEM;
253
254   /* Traverse the stack from the initial state and re-execute the transitions */
255   for (item = xbt_fifo_get_last_item(stack);
256        item != xbt_fifo_get_first_item(stack);
257        item = xbt_fifo_get_prev_item(item)) {
258
259     state = (mc_state_t) xbt_fifo_get_item_content(item);
260     saved_req = MC_state_get_executed_request(state, &value);
261    
262     if(saved_req){
263       /* because we got a copy of the executed request, we have to fetch the  
264          real one, pointed by the request field of the issuer process */
265       req = &saved_req->issuer->request;
266
267       /* Debug information */
268       if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){
269         req_str = MC_request_to_string(req, value);
270         XBT_DEBUG("Replay: %s (%p)", req_str, state);
271         xbt_free(req_str);
272       }
273     }
274          
275     SIMIX_request_pre(req, value);
276     MC_wait_for_requests();
277          
278     /* Update statistics */
279     mc_stats->visited_states++;
280     mc_stats->executed_transitions++;
281   }
282   XBT_DEBUG("**** End Replay ****");
283 }
284
285 void MC_replay_liveness(xbt_fifo_t stack)
286 {
287   int value;
288   char *req_str;
289   smx_req_t req = NULL, saved_req = NULL;
290   xbt_fifo_item_t item;
291   mc_state_t state;
292   mc_pair_stateless_t pair;
293
294   XBT_DEBUG("**** Begin Replay ****");
295
296   /* Restore the initial state */
297   MC_restore_snapshot(initial_snapshot);
298   /* At the moment of taking the snapshot the raw heap was set, so restoring
299    * it will set it back again, we have to unset it to continue  */
300   MC_UNSET_RAW_MEM;
301
302   /* Traverse the stack from the initial state and re-execute the transitions */
303   for (item = xbt_fifo_get_last_item(stack);
304        item != xbt_fifo_get_first_item(stack);
305        item = xbt_fifo_get_prev_item(item)) {
306
307     pair = (mc_pair_stateless_t) xbt_fifo_get_item_content(item);
308     state = (mc_state_t) pair->graph_state;
309     saved_req = MC_state_get_executed_request(state, &value);
310     //XBT_DEBUG("SavedReq->call %u", saved_req->call);
311    
312     if(saved_req != NULL){
313       /* because we got a copy of the executed request, we have to fetch the  
314          real one, pointed by the request field of the issuer process */
315       req = &saved_req->issuer->request;
316       //XBT_DEBUG("Req->call %u", req->call);
317
318       /* Debug information */
319       if(XBT_LOG_ISENABLED(mc_global, xbt_log_priority_debug)){
320         req_str = MC_request_to_string(req, value);
321         XBT_DEBUG("Replay: %s (%p)", req_str, state);
322         xbt_free(req_str);
323       }
324     }
325          
326     SIMIX_request_pre(req, value);
327     MC_wait_for_requests();
328          
329     /* Update statistics */
330     mc_stats_pair->visited_pairs++;
331   }
332   XBT_DEBUG("**** End Replay ****");
333 }
334
335
336 /**
337  * \brief Dumps the contents of a model-checker's stack and shows the actual
338  *        execution trace
339  * \param stack The stack to dump
340 */
341 void MC_dump_stack_safety_stateless(xbt_fifo_t stack)
342 {
343   mc_state_t state;
344
345   MC_show_stack_safety_stateless(stack);
346
347   MC_SET_RAW_MEM;
348   while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
349     MC_state_delete(state);
350   MC_UNSET_RAW_MEM;
351 }
352
353
354 void MC_show_stack_safety_stateless(xbt_fifo_t stack)
355 {
356   int value;
357   mc_state_t state;
358   xbt_fifo_item_t item;
359   smx_req_t req;
360   char *req_str = NULL;
361   
362   for (item = xbt_fifo_get_last_item(stack);
363        (item ? (state = (mc_state_t) (xbt_fifo_get_item_content(item)))
364         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
365     req = MC_state_get_executed_request(state, &value);
366     if(req){
367       req_str = MC_request_to_string(req, value);
368       XBT_INFO("%s", req_str);
369       xbt_free(req_str);
370     }
371   }
372 }
373
374 void MC_show_deadlock(smx_req_t req)
375 {
376   /*char *req_str = NULL;*/
377   XBT_INFO("**************************");
378   XBT_INFO("*** DEAD-LOCK DETECTED ***");
379   XBT_INFO("**************************");
380   XBT_INFO("Locked request:");
381   /*req_str = MC_request_to_string(req);
382   XBT_INFO("%s", req_str);
383   xbt_free(req_str);*/
384   XBT_INFO("Counter-example execution trace:");
385   MC_dump_stack_safety_stateless(mc_stack_safety_stateless);
386 }
387
388 void MC_show_deadlock_stateful(smx_req_t req)
389 {
390   /*char *req_str = NULL;*/
391   XBT_INFO("**************************");
392   XBT_INFO("*** DEAD-LOCK DETECTED ***");
393   XBT_INFO("**************************");
394   XBT_INFO("Locked request:");
395   /*req_str = MC_request_to_string(req);
396   XBT_INFO("%s", req_str);
397   xbt_free(req_str);*/
398   XBT_INFO("Counter-example execution trace:");
399   MC_show_stack_safety_stateful(mc_stack_safety_stateful);
400 }
401
402 void MC_dump_stack_safety_stateful(xbt_fifo_t stack)
403 {
404   //mc_state_ws_t state;
405
406   MC_show_stack_safety_stateful(stack);
407
408   /*MC_SET_RAW_MEM;
409   while ((state = (mc_state_t) xbt_fifo_pop(stack)) != NULL)
410     MC_state_delete(state);
411     MC_UNSET_RAW_MEM;*/
412 }
413
414
415 void MC_show_stack_safety_stateful(xbt_fifo_t stack)
416 {
417   int value;
418   mc_state_ws_t state;
419   xbt_fifo_item_t item;
420   smx_req_t req;
421   char *req_str = NULL;
422   
423   for (item = xbt_fifo_get_last_item(stack);
424        (item ? (state = (mc_state_ws_t) (xbt_fifo_get_item_content(item)))
425         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
426     req = MC_state_get_executed_request(state->graph_state, &value);
427     if(req){
428       req_str = MC_request_to_string(req, value);
429       XBT_INFO("%s", req_str);
430       xbt_free(req_str);
431     }
432   }
433 }
434
435 void MC_show_stack_liveness_stateful(xbt_fifo_t stack){
436   int value;
437   mc_pair_t pair;
438   xbt_fifo_item_t item;
439   smx_req_t req;
440   char *req_str = NULL;
441   
442   for (item = xbt_fifo_get_last_item(stack);
443        (item ? (pair = (mc_pair_t) (xbt_fifo_get_item_content(item)))
444         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
445     req = MC_state_get_executed_request(pair->graph_state, &value);
446     if(req){
447       req_str = MC_request_to_string(req, value);
448       XBT_INFO("%s", req_str);
449       xbt_free(req_str);
450     }
451   }
452 }
453
454 void MC_dump_stack_liveness_stateful(xbt_fifo_t stack){
455   mc_pair_t pair;
456
457   MC_SET_RAW_MEM;
458   while ((pair = (mc_pair_t) xbt_fifo_pop(stack)) != NULL)
459     MC_pair_delete(pair);
460   MC_UNSET_RAW_MEM;
461 }
462
463 void MC_show_stack_liveness_stateless(xbt_fifo_t stack){
464   int value;
465   mc_pair_stateless_t pair;
466   xbt_fifo_item_t item;
467   smx_req_t req;
468   char *req_str = NULL;
469   
470   for (item = xbt_fifo_get_last_item(stack);
471        (item ? (pair = (mc_pair_stateless_t) (xbt_fifo_get_item_content(item)))
472         : (NULL)); item = xbt_fifo_get_prev_item(item)) {
473     req = MC_state_get_executed_request(pair->graph_state, &value);
474     if(req){
475       req_str = MC_request_to_string(req, value);
476       XBT_INFO("%s", req_str);
477       xbt_free(req_str);
478     }
479   }
480 }
481
482 void MC_dump_stack_liveness_stateless(xbt_fifo_t stack){
483   mc_pair_stateless_t pair;
484
485   MC_SET_RAW_MEM;
486   while ((pair = (mc_pair_stateless_t) xbt_fifo_pop(stack)) != NULL)
487     MC_pair_stateless_delete(pair);
488   MC_UNSET_RAW_MEM;
489 }
490
491
492 void MC_print_statistics(mc_stats_t stats)
493 {
494   XBT_INFO("State space size ~= %lu", stats->state_size);
495   XBT_INFO("Expanded states = %lu", stats->expanded_states);
496   XBT_INFO("Visited states = %lu", stats->visited_states);
497   XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
498   XBT_INFO("Expanded / Visited = %lf",
499         (double) stats->visited_states / stats->expanded_states);
500   /*XBT_INFO("Exploration coverage = %lf",
501      (double)stats->expanded_states / stats->state_size); */
502 }
503
504 void MC_print_statistics_pairs(mc_stats_pair_t stats)
505 {
506   XBT_INFO("Expanded pairs = %lu", stats->expanded_pairs);
507   XBT_INFO("Visited pairs = %lu", stats->visited_pairs);
508   //XBT_INFO("Executed transitions = %lu", stats->executed_transitions);
509   XBT_INFO("Expanded / Visited = %lf",
510         (double) stats->visited_pairs / stats->expanded_pairs);
511   /*XBT_INFO("Exploration coverage = %lf",
512      (double)stats->expanded_states / stats->state_size); */
513 }
514
515 void MC_assert(int prop)
516 {
517   if (MC_IS_ENABLED && !prop) {
518     XBT_INFO("**************************");
519     XBT_INFO("*** PROPERTY NOT VALID ***");
520     XBT_INFO("**************************");
521     XBT_INFO("Counter-example execution trace:");
522     MC_dump_stack_safety_stateless(mc_stack_safety_stateless);
523     MC_print_statistics(mc_stats);
524     xbt_abort();
525   }
526 }
527
528 void MC_assert_stateful(int prop)
529 {
530   if (MC_IS_ENABLED && !prop) {
531     XBT_INFO("**************************");
532     XBT_INFO("*** PROPERTY NOT VALID ***");
533     XBT_INFO("**************************");
534     XBT_INFO("Counter-example execution trace:");
535     MC_dump_stack_safety_stateful(mc_stack_safety_stateful);
536     MC_print_statistics(mc_stats);
537     xbt_abort();
538   }
539 }
540
541 void MC_assert_pair_stateful(int prop){
542   if (MC_IS_ENABLED && !prop) {
543     XBT_INFO("**************************");
544     XBT_INFO("*** PROPERTY NOT VALID ***");
545     XBT_INFO("**************************");
546     //XBT_INFO("Counter-example execution trace:");
547     MC_show_stack_liveness_stateful(mc_stack_liveness_stateful);
548     //MC_dump_snapshot_stack(mc_snapshot_stack);
549     MC_print_statistics_pairs(mc_stats_pair);
550     xbt_abort();
551   }
552 }
553
554 void MC_assert_pair_stateless(int prop){
555   if (MC_IS_ENABLED && !prop) {
556     XBT_INFO("**************************");
557     XBT_INFO("*** PROPERTY NOT VALID ***");
558     XBT_INFO("**************************");
559     //XBT_INFO("Counter-example execution trace:");
560     MC_show_stack_liveness_stateless(mc_stack_liveness_stateless);
561     //MC_dump_snapshot_stack(mc_snapshot_stack);
562     MC_print_statistics_pairs(mc_stats_pair);
563     xbt_abort();
564   }
565 }
566
567 void MC_process_clock_add(smx_process_t process, double amount)
568 {
569   mc_time[process->pid] += amount;
570 }
571
572 double MC_process_clock_get(smx_process_t process)
573 {
574   if(mc_time)
575     return mc_time[process->pid];
576   else
577     return 0;
578 }