test: mo-satcycle: add new MO satisfaction cycle example
[model-checker.git] / model.cc
1 #include <stdio.h>
2 #include <algorithm>
3 #include <new>
4 #include <stdarg.h>
5
6 #include "model.h"
7 #include "action.h"
8 #include "nodestack.h"
9 #include "schedule.h"
10 #include "snapshot-interface.h"
11 #include "common.h"
12 #include "datarace.h"
13 #include "threads-model.h"
14 #include "output.h"
15 #include "traceanalysis.h"
16 #include "execution.h"
17 #include "bugmessage.h"
18
19 ModelChecker *model;
20
21 /** @brief Constructor */
22 ModelChecker::ModelChecker(struct model_params params) :
23         /* Initialize default scheduler */
24         params(params),
25         scheduler(new Scheduler()),
26         node_stack(new NodeStack()),
27         execution(new ModelExecution(this, &this->params, scheduler, node_stack)),
28         execution_number(1),
29         diverge(NULL),
30         earliest_diverge(NULL),
31         trace_analyses()
32 {
33 }
34
35 /** @brief Destructor */
36 ModelChecker::~ModelChecker()
37 {
38         delete node_stack;
39         delete scheduler;
40 }
41
42 /**
43  * Restores user program to initial state and resets all model-checker data
44  * structures.
45  */
46 void ModelChecker::reset_to_initial_state()
47 {
48         DEBUG("+++ Resetting to initial state +++\n");
49         node_stack->reset_execution();
50
51         /**
52          * FIXME: if we utilize partial rollback, we will need to free only
53          * those pending actions which were NOT pending before the rollback
54          * point
55          */
56         for (unsigned int i = 0; i < get_num_threads(); i++)
57                 delete get_thread(int_to_id(i))->get_pending();
58
59         snapshot_backtrack_before(0);
60 }
61
62 /** @return the number of user threads created during this execution */
63 unsigned int ModelChecker::get_num_threads() const
64 {
65         return execution->get_num_threads();
66 }
67
68 /**
69  * Must be called from user-thread context (e.g., through the global
70  * thread_current() interface)
71  *
72  * @return The currently executing Thread.
73  */
74 Thread * ModelChecker::get_current_thread() const
75 {
76         return scheduler->get_current_thread();
77 }
78
79 /**
80  * @brief Choose the next thread to execute.
81  *
82  * This function chooses the next thread that should execute. It can enforce
83  * execution replay/backtracking or, if the model-checker has no preference
84  * regarding the next thread (i.e., when exploring a new execution ordering),
85  * we defer to the scheduler.
86  *
87  * @return The next chosen thread to run, if any exist. Or else if the current
88  * execution should terminate, return NULL.
89  */
90 Thread * ModelChecker::get_next_thread()
91 {
92         thread_id_t tid;
93
94         /*
95          * Have we completed exploring the preselected path? Then let the
96          * scheduler decide
97          */
98         if (diverge == NULL)
99                 return scheduler->select_next_thread(node_stack->get_head());
100
101
102         /* Else, we are trying to replay an execution */
103         ModelAction *next = node_stack->get_next()->get_action();
104
105         if (next == diverge) {
106                 if (earliest_diverge == NULL || *diverge < *earliest_diverge)
107                         earliest_diverge = diverge;
108
109                 Node *nextnode = next->get_node();
110                 Node *prevnode = nextnode->get_parent();
111                 scheduler->update_sleep_set(prevnode);
112
113                 /* Reached divergence point */
114                 if (nextnode->increment_behaviors()) {
115                         /* Execute the same thread with a new behavior */
116                         tid = next->get_tid();
117                         node_stack->pop_restofstack(2);
118                 } else {
119                         ASSERT(prevnode);
120                         /* Make a different thread execute for next step */
121                         scheduler->add_sleep(get_thread(next->get_tid()));
122                         tid = prevnode->get_next_backtrack();
123                         /* Make sure the backtracked thread isn't sleeping. */
124                         node_stack->pop_restofstack(1);
125                         if (diverge == earliest_diverge) {
126                                 earliest_diverge = prevnode->get_action();
127                         }
128                 }
129                 /* Start the round robin scheduler from this thread id */
130                 scheduler->set_scheduler_thread(tid);
131                 /* The correct sleep set is in the parent node. */
132                 execute_sleep_set();
133
134                 DEBUG("*** Divergence point ***\n");
135
136                 diverge = NULL;
137         } else {
138                 tid = next->get_tid();
139         }
140         DEBUG("*** ModelChecker chose next thread = %d ***\n", id_to_int(tid));
141         ASSERT(tid != THREAD_ID_T_NONE);
142         return get_thread(id_to_int(tid));
143 }
144
145 /**
146  * We need to know what the next actions of all threads in the sleep
147  * set will be.  This method computes them and stores the actions at
148  * the corresponding thread object's pending action.
149  */
150 void ModelChecker::execute_sleep_set()
151 {
152         for (unsigned int i = 0; i < get_num_threads(); i++) {
153                 thread_id_t tid = int_to_id(i);
154                 Thread *thr = get_thread(tid);
155                 if (scheduler->is_sleep_set(thr) && thr->get_pending()) {
156                         thr->get_pending()->set_sleep_flag();
157                 }
158         }
159 }
160
161 /**
162  * @brief Assert a bug in the executing program.
163  *
164  * Use this function to assert any sort of bug in the user program. If the
165  * current trace is feasible (actually, a prefix of some feasible execution),
166  * then this execution will be aborted, printing the appropriate message. If
167  * the current trace is not yet feasible, the error message will be stashed and
168  * printed if the execution ever becomes feasible.
169  *
170  * @param msg Descriptive message for the bug (do not include newline char)
171  * @return True if bug is immediately-feasible
172  */
173 bool ModelChecker::assert_bug(const char *msg, ...)
174 {
175         char str[800];
176
177         va_list ap;
178         va_start(ap, msg);
179         vsnprintf(str, sizeof(str), msg, ap);
180         va_end(ap);
181
182         return execution->assert_bug(str);
183 }
184
185 /**
186  * @brief Assert a bug in the executing program, asserted by a user thread
187  * @see ModelChecker::assert_bug
188  * @param msg Descriptive message for the bug (do not include newline char)
189  */
190 void ModelChecker::assert_user_bug(const char *msg)
191 {
192         /* If feasible bug, bail out now */
193         if (assert_bug(msg))
194                 switch_to_master(NULL);
195 }
196
197 /** @brief Print bug report listing for this execution (if any bugs exist) */
198 void ModelChecker::print_bugs() const
199 {
200         SnapVector<bug_message *> *bugs = execution->get_bugs();
201
202         model_print("Bug report: %zu bug%s detected\n",
203                         bugs->size(),
204                         bugs->size() > 1 ? "s" : "");
205         for (unsigned int i = 0; i < bugs->size(); i++)
206                 (*bugs)[i]->print();
207 }
208
209 /**
210  * @brief Record end-of-execution stats
211  *
212  * Must be run when exiting an execution. Records various stats.
213  * @see struct execution_stats
214  */
215 void ModelChecker::record_stats()
216 {
217         stats.num_total++;
218         if (!execution->isfeasibleprefix())
219                 stats.num_infeasible++;
220         else if (execution->have_bug_reports())
221                 stats.num_buggy_executions++;
222         else if (execution->is_complete_execution())
223                 stats.num_complete++;
224         else {
225                 stats.num_redundant++;
226
227                 /**
228                  * @todo We can violate this ASSERT() when fairness/sleep sets
229                  * conflict to cause an execution to terminate, e.g. with:
230                  * Scheduler: [0: disabled][1: disabled][2: sleep][3: current, enabled]
231                  */
232                 //ASSERT(scheduler->all_threads_sleeping());
233         }
234 }
235
236 /** @brief Print execution stats */
237 void ModelChecker::print_stats() const
238 {
239         model_print("Number of complete, bug-free executions: %d\n", stats.num_complete);
240         model_print("Number of redundant executions: %d\n", stats.num_redundant);
241         model_print("Number of buggy executions: %d\n", stats.num_buggy_executions);
242         model_print("Number of infeasible executions: %d\n", stats.num_infeasible);
243         model_print("Total executions: %d\n", stats.num_total);
244         model_print("Total nodes created: %d\n", node_stack->get_total_nodes());
245 }
246
247 /**
248  * @brief End-of-exeuction print
249  * @param printbugs Should any existing bugs be printed?
250  */
251 void ModelChecker::print_execution(bool printbugs) const
252 {
253         model_print("Program output from execution %d:\n",
254                         get_execution_number());
255         print_program_output();
256
257         if (params.verbose >= 2) {
258                 model_print("\nEarliest divergence point since last feasible execution:\n");
259                 if (earliest_diverge)
260                         earliest_diverge->print();
261                 else
262                         model_print("(Not set)\n");
263
264                 model_print("\n");
265                 print_stats();
266         }
267
268         /* Don't print invalid bugs */
269         if (printbugs && execution->have_bug_reports()) {
270                 model_print("\n");
271                 print_bugs();
272         }
273
274         model_print("\n");
275         execution->print_summary();
276 }
277
278 /**
279  * Queries the model-checker for more executions to explore and, if one
280  * exists, resets the model-checker state to execute a new execution.
281  *
282  * @return If there are more executions to explore, return true. Otherwise,
283  * return false.
284  */
285 bool ModelChecker::next_execution()
286 {
287         DBG();
288         /* Is this execution a feasible execution that's worth bug-checking? */
289         bool complete = execution->isfeasibleprefix() &&
290                 (execution->is_complete_execution() ||
291                  execution->have_bug_reports());
292
293         /* End-of-execution bug checks */
294         if (complete) {
295                 if (execution->is_deadlocked())
296                         assert_bug("Deadlock detected");
297
298                 checkDataRaces();
299                 run_trace_analyses();
300         }
301
302         record_stats();
303
304         /* Output */
305         if (params.verbose || (complete && execution->have_bug_reports()))
306                 print_execution(complete);
307         else
308                 clear_program_output();
309
310         if (complete)
311                 earliest_diverge = NULL;
312
313         if ((diverge = execution->get_next_backtrack()) == NULL)
314                 return false;
315
316         if (DBG_ENABLED()) {
317                 model_print("Next execution will diverge at:\n");
318                 diverge->print();
319         }
320
321         execution_number++;
322
323         reset_to_initial_state();
324         return true;
325 }
326
327 /** @brief Run trace analyses on complete trace */
328 void ModelChecker::run_trace_analyses() {
329         for (unsigned int i = 0; i < trace_analyses.size(); i++)
330                 trace_analyses[i]->analyze(execution->get_action_trace());
331 }
332
333 /**
334  * @brief Get a Thread reference by its ID
335  * @param tid The Thread's ID
336  * @return A Thread reference
337  */
338 Thread * ModelChecker::get_thread(thread_id_t tid) const
339 {
340         return execution->get_thread(tid);
341 }
342
343 /**
344  * @brief Get a reference to the Thread in which a ModelAction was executed
345  * @param act The ModelAction
346  * @return A Thread reference
347  */
348 Thread * ModelChecker::get_thread(const ModelAction *act) const
349 {
350         return execution->get_thread(act);
351 }
352
353 /**
354  * Switch from a model-checker context to a user-thread context. This is the
355  * complement of ModelChecker::switch_to_master and must be called from the
356  * model-checker context
357  *
358  * @param thread The user-thread to switch to
359  */
360 void ModelChecker::switch_from_master(Thread *thread)
361 {
362         scheduler->set_current_thread(thread);
363         Thread::swap(&system_context, thread);
364 }
365
366 /**
367  * Switch from a user-context to the "master thread" context (a.k.a. system
368  * context). This switch is made with the intention of exploring a particular
369  * model-checking action (described by a ModelAction object). Must be called
370  * from a user-thread context.
371  *
372  * @param act The current action that will be explored. May be NULL only if
373  * trace is exiting via an assertion (see ModelExecution::set_assert and
374  * ModelExecution::has_asserted).
375  * @return Return the value returned by the current action
376  */
377 uint64_t ModelChecker::switch_to_master(ModelAction *act)
378 {
379         DBG();
380         Thread *old = thread_current();
381         scheduler->set_current_thread(NULL);
382         ASSERT(!old->get_pending());
383         old->set_pending(act);
384         if (Thread::swap(old, &system_context) < 0) {
385                 perror("swap threads");
386                 exit(EXIT_FAILURE);
387         }
388         return old->get_return_value();
389 }
390
391 /** Wrapper to run the user's main function, with appropriate arguments */
392 void user_main_wrapper(void *)
393 {
394         user_main(model->params.argc, model->params.argv);
395 }
396
397 bool ModelChecker::should_terminate_execution()
398 {
399         /* Infeasible -> don't take any more steps */
400         if (execution->is_infeasible())
401                 return true;
402         else if (execution->isfeasibleprefix() && execution->have_bug_reports()) {
403                 execution->set_assert();
404                 return true;
405         }
406
407         if (execution->too_many_steps())
408                 return true;
409         return false;
410 }
411
412 /** @brief Run ModelChecker for the user program */
413 void ModelChecker::run()
414 {
415         do {
416                 thrd_t user_thread;
417                 Thread *t = new Thread(execution->get_next_id(), &user_thread, &user_main_wrapper, NULL, NULL);
418                 execution->add_thread(t);
419
420                 do {
421                         /*
422                          * Stash next pending action(s) for thread(s). There
423                          * should only need to stash one thread's action--the
424                          * thread which just took a step--plus the first step
425                          * for any newly-created thread
426                          */
427                         for (unsigned int i = 0; i < get_num_threads(); i++) {
428                                 thread_id_t tid = int_to_id(i);
429                                 Thread *thr = get_thread(tid);
430                                 if (!thr->is_model_thread() && !thr->is_complete() && !thr->get_pending()) {
431                                         switch_from_master(thr);
432                                         if (thr->is_waiting_on(thr))
433                                                 assert_bug("Deadlock detected (thread %u)", i);
434                                 }
435                         }
436
437                         /* Don't schedule threads which should be disabled */
438                         for (unsigned int i = 0; i < get_num_threads(); i++) {
439                                 Thread *th = get_thread(int_to_id(i));
440                                 ModelAction *act = th->get_pending();
441                                 if (act && execution->is_enabled(th) && !execution->check_action_enabled(act)) {
442                                         scheduler->sleep(th);
443                                 }
444                         }
445
446                         /* Catch assertions from prior take_step or from
447                          * between-ModelAction bugs (e.g., data races) */
448                         if (execution->has_asserted())
449                                 break;
450
451                         if (!t)
452                                 t = get_next_thread();
453                         if (!t || t->is_model_thread())
454                                 break;
455
456                         /* Consume the next action for a Thread */
457                         ModelAction *curr = t->get_pending();
458                         t->set_pending(NULL);
459                         t = execution->take_step(curr);
460                 } while (!should_terminate_execution());
461
462         } while (next_execution());
463
464         execution->fixup_release_sequences();
465
466         model_print("******* Model-checking complete: *******\n");
467         print_stats();
468
469         /* Have the trace analyses dump their output. */
470         for (unsigned int i = 0; i < trace_analyses.size(); i++)
471                 trace_analyses[i]->finish();
472 }