add consume to run
[c11tester.git] / model.cc
1 #include <stdio.h>
2 #include <algorithm>
3 #include <new>
4 #include <stdarg.h>
5 #include <string.h>
6 #include <cstdlib>
7
8 #include "model.h"
9 #include "action.h"
10 #include "schedule.h"
11 #include "snapshot-interface.h"
12 #include "common.h"
13 #include "datarace.h"
14 #include "threads-model.h"
15 #include "output.h"
16 #include "traceanalysis.h"
17 #include "execution.h"
18 #include "history.h"
19 #include "bugmessage.h"
20 #include "params.h"
21 #include "plugins.h"
22
23 ModelChecker *model = NULL;
24
25 void placeholder(void *) {
26         ASSERT(0);
27 }
28
29 /** @brief Constructor */
30 ModelChecker::ModelChecker() :
31         /* Initialize default scheduler */
32         params(),
33         scheduler(new Scheduler()),
34         history(new ModelHistory()),
35         execution(new ModelExecution(this, scheduler)),
36         execution_number(1),
37         trace_analyses(),
38         inspect_plugin(NULL)
39 {
40         model_print("C11Tester\n"
41                                                         "Copyright (c) 2013 and 2019 Regents of the University of California. All rights reserved.\n"
42                                                         "Distributed under the GPLv2\n"
43                                                         "Written by Weiyu Luo, Brian Norris, and Brian Demsky\n\n");
44         memset(&stats,0,sizeof(struct execution_stats));
45         init_thread = new Thread(execution->get_next_id(), (thrd_t *) model_malloc(sizeof(thrd_t)), &placeholder, NULL, NULL);
46 #ifdef TLS
47         init_thread->setTLS((char *)get_tls_addr());
48 #endif
49         execution->add_thread(init_thread);
50         scheduler->set_current_thread(init_thread);
51         register_plugins();
52         execution->setParams(&params);
53         param_defaults(&params);
54         parse_options(&params);
55         initRaceDetector();
56         /* Configure output redirection for the model-checker */
57         redirect_output();
58         install_trace_analyses(get_execution());
59 }
60
61 /** @brief Destructor */
62 ModelChecker::~ModelChecker()
63 {
64         delete scheduler;
65 }
66
67 /** Method to set parameters */
68 model_params * ModelChecker::getParams() {
69         return &params;
70 }
71
72 /**
73  * Restores user program to initial state and resets all model-checker data
74  * structures.
75  */
76 void ModelChecker::reset_to_initial_state()
77 {
78
79         /**
80          * FIXME: if we utilize partial rollback, we will need to free only
81          * those pending actions which were NOT pending before the rollback
82          * point
83          */
84         for (unsigned int i = 0;i < get_num_threads();i++)
85                 delete get_thread(int_to_id(i))->get_pending();
86
87         snapshot_roll_back(snapshot);
88 }
89
90 /** @return the number of user threads created during this execution */
91 unsigned int ModelChecker::get_num_threads() const
92 {
93         return execution->get_num_threads();
94 }
95
96 /**
97  * Must be called from user-thread context (e.g., through the global
98  * thread_current() interface)
99  *
100  * @return The currently executing Thread.
101  */
102 Thread * ModelChecker::get_current_thread() const
103 {
104         return scheduler->get_current_thread();
105 }
106
107 /**
108  * @brief Choose the next thread to execute.
109  *
110  * This function chooses the next thread that should execute. It can enforce
111  * execution replay/backtracking or, if the model-checker has no preference
112  * regarding the next thread (i.e., when exploring a new execution ordering),
113  * we defer to the scheduler.
114  *
115  * @return The next chosen thread to run, if any exist. Or else if the current
116  * execution should terminate, return NULL.
117  */
118 Thread * ModelChecker::get_next_thread()
119 {
120
121         /*
122          * Have we completed exploring the preselected path? Then let the
123          * scheduler decide
124          */
125         return scheduler->select_next_thread();
126 }
127
128 /**
129  * @brief Assert a bug in the executing program.
130  *
131  * Use this function to assert any sort of bug in the user program. If the
132  * current trace is feasible (actually, a prefix of some feasible execution),
133  * then this execution will be aborted, printing the appropriate message. If
134  * the current trace is not yet feasible, the error message will be stashed and
135  * printed if the execution ever becomes feasible.
136  *
137  * @param msg Descriptive message for the bug (do not include newline char)
138  * @return True if bug is immediately-feasible
139  */
140 void ModelChecker::assert_bug(const char *msg, ...)
141 {
142         char str[800];
143
144         va_list ap;
145         va_start(ap, msg);
146         vsnprintf(str, sizeof(str), msg, ap);
147         va_end(ap);
148
149         execution->assert_bug(str);
150 }
151
152 /**
153  * @brief Assert a bug in the executing program, asserted by a user thread
154  * @see ModelChecker::assert_bug
155  * @param msg Descriptive message for the bug (do not include newline char)
156  */
157 void ModelChecker::assert_user_bug(const char *msg)
158 {
159         /* If feasible bug, bail out now */
160         assert_bug(msg);
161         switch_to_master(NULL);
162 }
163
164 /** @brief Print bug report listing for this execution (if any bugs exist) */
165 void ModelChecker::print_bugs() const
166 {
167         SnapVector<bug_message *> *bugs = execution->get_bugs();
168
169         model_print("Bug report: %zu bug%s detected\n",
170                                                         bugs->size(),
171                                                         bugs->size() > 1 ? "s" : "");
172         for (unsigned int i = 0;i < bugs->size();i++)
173                 (*bugs)[i] -> print();
174 }
175
176 /**
177  * @brief Record end-of-execution stats
178  *
179  * Must be run when exiting an execution. Records various stats.
180  * @see struct execution_stats
181  */
182 void ModelChecker::record_stats()
183 {
184         stats.num_total ++;
185         if (execution->have_bug_reports())
186                 stats.num_buggy_executions ++;
187         else if (execution->is_complete_execution())
188                 stats.num_complete ++;
189         else {
190                 //All threads are sleeping
191                 /**
192                  * @todo We can violate this ASSERT() when fairness/sleep sets
193                  * conflict to cause an execution to terminate, e.g. with:
194                  * Scheduler: [0: disabled][1: disabled][2: sleep][3: current, enabled]
195                  */
196                 //ASSERT(scheduler->all_threads_sleeping());
197         }
198 }
199
200 /** @brief Print execution stats */
201 void ModelChecker::print_stats() const
202 {
203         model_print("Number of complete, bug-free executions: %d\n", stats.num_complete);
204         model_print("Number of buggy executions: %d\n", stats.num_buggy_executions);
205         model_print("Total executions: %d\n", stats.num_total);
206 }
207
208 /**
209  * @brief End-of-exeuction print
210  * @param printbugs Should any existing bugs be printed?
211  */
212 void ModelChecker::print_execution(bool printbugs) const
213 {
214         model_print("Program output from execution %d:\n",
215                                                         get_execution_number());
216         print_program_output();
217
218         if (params.verbose >= 3) {
219                 print_stats();
220         }
221
222         /* Don't print invalid bugs */
223         if (printbugs && execution->have_bug_reports()) {
224                 model_print("\n");
225                 print_bugs();
226         }
227
228         model_print("\n");
229         execution->print_summary();
230 }
231
232 /**
233  * Queries the model-checker for more executions to explore and, if one
234  * exists, resets the model-checker state to execute a new execution.
235  *
236  * @return If there are more executions to explore, return true. Otherwise,
237  * return false.
238  */
239 void ModelChecker::finish_execution(bool more_executions)
240 {
241         DBG();
242         /* Is this execution a feasible execution that's worth bug-checking? */
243         bool complete = (execution->is_complete_execution() ||
244                                                                          execution->have_bug_reports());
245
246         /* End-of-execution bug checks */
247         if (complete) {
248                 if (execution->is_deadlocked())
249                         assert_bug("Deadlock detected");
250
251                 run_trace_analyses();
252         }
253
254         record_stats();
255         /* Output */
256         if ( (complete && params.verbose) || params.verbose>1 || (complete && execution->have_bug_reports()))
257                 print_execution(complete);
258         else
259                 clear_program_output();
260
261 // test code
262         execution_number ++;
263         if (more_executions)
264                 reset_to_initial_state();
265         history->set_new_exec_flag();
266 }
267
268 /** @brief Run trace analyses on complete trace */
269 void ModelChecker::run_trace_analyses() {
270         for (unsigned int i = 0;i < trace_analyses.size();i ++)
271                 trace_analyses[i] -> analyze(execution->get_action_trace());
272 }
273
274 /**
275  * @brief Get a Thread reference by its ID
276  * @param tid The Thread's ID
277  * @return A Thread reference
278  */
279 Thread * ModelChecker::get_thread(thread_id_t tid) const
280 {
281         return execution->get_thread(tid);
282 }
283
284 /**
285  * @brief Get a reference to the Thread in which a ModelAction was executed
286  * @param act The ModelAction
287  * @return A Thread reference
288  */
289 Thread * ModelChecker::get_thread(const ModelAction *act) const
290 {
291         return execution->get_thread(act);
292 }
293
294 /**
295  * Switch from a model-checker context to a user-thread context. This is the
296  * complement of ModelChecker::switch_to_master and must be called from the
297  * model-checker context
298  *
299  * @param thread The user-thread to switch to
300  */
301 void ModelChecker::switch_from_master(Thread *thread)
302 {
303         scheduler->set_current_thread(thread);
304         Thread::swap(&system_context, thread);
305 }
306
307 /**
308  * Switch from a user-context to the "master thread" context (a.k.a. system
309  * context). This switch is made with the intention of exploring a particular
310  * model-checking action (described by a ModelAction object). Must be called
311  * from a user-thread context.
312  *
313  * @param act The current action that will be explored. May be NULL only if
314  * trace is exiting via an assertion (see ModelExecution::set_assert and
315  * ModelExecution::has_asserted).
316  * @return Return the value returned by the current action
317  */
318 uint64_t ModelChecker::switch_to_master(ModelAction *act)
319 {
320         if (modellock) {
321                 static bool fork_message_printed = false;
322
323                 if (!fork_message_printed) {
324                         model_print("Fork handler or dead thread trying to call into model checker...\n");
325                         fork_message_printed = true;
326                 }
327                 delete act;
328                 return 0;
329         }
330         DBG();
331         Thread *old = thread_current();
332         scheduler->set_current_thread(NULL);
333         ASSERT(!old->get_pending());
334
335         if (inspect_plugin != NULL) {
336                 inspect_plugin->inspectModelAction(act);
337         }
338
339         old->set_pending(act);
340         if (Thread::swap(old, &system_context) < 0) {
341                 perror("swap threads");
342                 exit(EXIT_FAILURE);
343         }
344         return old->get_return_value();
345 }
346
347 void ModelChecker::continueRunExecution(Thread *old) 
348 {
349         if (params.traceminsize != 0 &&
350                         execution->get_curr_seq_num() > checkfree) {
351                 checkfree += params.checkthreshold;
352                 execution->collectActions();
353         }
354         thread_chosen = false;
355         curr_thread_num = 1;
356         Thread *thr = getNextThread();
357         if (thr != nullptr) {
358                 scheduler->set_current_thread(thr);
359                 if (Thread::swap(old, thr) < 0) {
360                         perror("swap threads");
361                         exit(EXIT_FAILURE);
362                 }
363         } else
364                 handleChosenThread(old);        
365 }
366
367 void ModelChecker::startRunExecution(ucontext_t *old) 
368 {
369         if (params.traceminsize != 0 &&
370                         execution->get_curr_seq_num() > checkfree) {
371                 checkfree += params.checkthreshold;
372                 execution->collectActions();
373         }
374         thread_chosen = false;
375         curr_thread_num = 1;
376         Thread *thr = getNextThread();
377         if (thr != nullptr) {
378                 scheduler->set_current_thread(thr);
379                 if (Thread::swap(old, thr) < 0) {
380                         perror("swap threads");
381                         exit(EXIT_FAILURE);
382                 }
383         } else
384                 handleChosenThread(old);        
385 }
386
387 Thread* ModelChecker::getNextThread()
388 {
389         Thread *nextThread = nullptr;
390         for (unsigned int i = curr_thread_num; i < get_num_threads(); i++) {
391                 thread_id_t tid = int_to_id(i);
392                 Thread *thr = get_thread(tid);
393                 
394                 if (!thr->is_complete() && !thr->get_pending()) {
395                         curr_thread_num = i;
396                         nextThread = thr;
397                         break;
398                 }
399                 ModelAction *act = thr->get_pending();
400                 
401                 if (act && execution->is_enabled(thr) && !execution->check_action_enabled(act)) {
402                         scheduler->sleep(thr);
403                 }
404
405                 chooseThread(act, thr);
406         }
407         return nextThread;
408 }
409
410 void ModelChecker::finishRunExecution(Thread *old) 
411 {
412         scheduler->set_current_thread(NULL);
413         if (Thread::swap(old, &system_context) < 0) {
414                 perror("swap threads");
415                 exit(EXIT_FAILURE);
416         }
417 }
418
419 void ModelChecker::finishRunExecution(ucontext_t *old) 
420 {
421         scheduler->set_current_thread(NULL);
422 }
423
424 void ModelChecker::consumeAction()
425 {
426         ModelAction *curr = chosen_thread->get_pending();
427         chosen_thread->set_pending(NULL);
428         chosen_thread = execution->take_step(curr);
429 }
430
431 void ModelChecker::chooseThread(ModelAction *act, Thread *thr)
432 {
433         if (!thread_chosen && act && execution->is_enabled(thr) && (thr->get_state() != THREAD_BLOCKED) ) {
434                 if (act->is_write()) {
435                         std::memory_order order = act->get_mo();
436                         if (order == std::memory_order_relaxed || \
437                                         order == std::memory_order_release) {
438                                 chosen_thread = thr;
439                                 thread_chosen = true;
440                         }
441                 } else if (act->get_type() == THREAD_CREATE || \
442                                                         act->get_type() == PTHREAD_CREATE || \
443                                                         act->get_type() == THREAD_START || \
444                                                         act->get_type() == THREAD_FINISH) {
445                         chosen_thread = thr;
446                         thread_chosen = true;
447                 }
448         }       
449 }
450
451 uint64_t ModelChecker::switch_thread(ModelAction *act)
452 {
453         if (modellock) {
454                 static bool fork_message_printed = false;
455
456                 if (!fork_message_printed) {
457                         model_print("Fork handler or dead thread trying to call into model checker...\n");
458                         fork_message_printed = true;
459                 }
460                 delete act;
461                 return 0;
462         }
463         DBG();
464         Thread *old = thread_current();
465         ASSERT(!old->get_pending());
466
467         if (inspect_plugin != NULL) {
468                 inspect_plugin->inspectModelAction(act);
469         }
470
471         old->set_pending(act);
472         
473         if (old->is_waiting_on(old))
474                 assert_bug("Deadlock detected (thread %u)", curr_thread_num);
475
476         ModelAction *act2 = old->get_pending();
477                 
478         if (act2 && execution->is_enabled(old) && !execution->check_action_enabled(act2)) {
479                 scheduler->sleep(old);
480         }
481         chooseThread(act2, old);
482
483         curr_thread_num++;
484         Thread* next = getNextThread();
485         if (next != nullptr) 
486                 handleNewValidThread(old, next);
487         else
488                 handleChosenThread(old);
489
490         return old->get_return_value();
491 }
492
493 void ModelChecker::handleNewValidThread(Thread *old, Thread *next)
494 {
495         scheduler->set_current_thread(next);    
496
497         if (Thread::swap(old, next) < 0) {
498                 perror("swap threads");
499                 exit(EXIT_FAILURE);
500         }               
501 }
502
503 void ModelChecker::handleChosenThread(Thread *old)
504 {
505         if (execution->has_asserted())
506                 finishRunExecution(old);
507         if (!chosen_thread)
508                 chosen_thread = get_next_thread();
509         if (!chosen_thread || chosen_thread->is_model_thread())
510                 finishRunExecution(old);
511         if (chosen_thread->just_woken_up()) {
512                 chosen_thread->set_wakeup_state(false);
513                 chosen_thread->set_pending(NULL);
514                 chosen_thread = NULL;
515                 // Allow this thread to stash the next pending action
516                 if (should_terminate_execution())
517                         finishRunExecution(old);
518                 else
519                         continueRunExecution(old);      
520         } else {
521                 /* Consume the next action for a Thread */
522                 consumeAction();
523
524                 if (should_terminate_execution())
525                         finishRunExecution(old);
526                 else
527                         continueRunExecution(old);              
528         }
529 }
530
531 void ModelChecker::handleChosenThread(ucontext_t *old)
532 {
533         if (execution->has_asserted())
534                 finishRunExecution(old);
535         if (!chosen_thread)
536                 chosen_thread = get_next_thread();
537         if (!chosen_thread || chosen_thread->is_model_thread())
538                 finishRunExecution(old);
539         if (chosen_thread->just_woken_up()) {
540                 chosen_thread->set_wakeup_state(false);
541                 chosen_thread->set_pending(NULL);
542                 chosen_thread = NULL;
543                 // Allow this thread to stash the next pending action
544                 if (should_terminate_execution())
545                         finishRunExecution(old);
546                 else
547                         startRunExecution(old); 
548         } else {
549                 /* Consume the next action for a Thread */
550                 consumeAction();
551
552                 if (should_terminate_execution())
553                         finishRunExecution(old);
554                 else
555                         startRunExecution(old);         
556         }
557 }
558
559
560 static void runChecker() {
561         model->run();
562         delete model;
563 }
564
565 void ModelChecker::startChecker() {
566         startExecution(get_system_context(), runChecker);
567         snapshot = take_snapshot();
568         initMainThread();
569 }
570
571 bool ModelChecker::should_terminate_execution()
572 {
573         if (execution->have_bug_reports()) {
574                 execution->set_assert();
575                 return true;
576         } else if (execution->isFinished()) {
577                 return true;
578         }
579         return false;
580 }
581
582 /** @brief Run ModelChecker for the user program */
583 void ModelChecker::run()
584 {
585         //Need to initial random number generator state to avoid resets on rollback
586         char random_state[256];
587         initstate(423121, random_state, sizeof(random_state));
588         checkfree = params.checkthreshold;
589         for(int exec = 0;exec < params.maxexecutions;exec++) {
590                 chosen_thread = init_thread;
591                 thread_chosen = false;
592                 curr_thread_num = 1;
593                 startRunExecution(&system_context);
594                 finish_execution((exec+1) < params.maxexecutions);
595                 //restore random number generator state after rollback
596                 setstate(random_state);
597         }
598
599         model_print("******* Model-checking complete: *******\n");
600         print_stats();
601
602         /* Have the trace analyses dump their output. */
603         for (unsigned int i = 0;i < trace_analyses.size();i++)
604                 trace_analyses[i]->finish();
605
606         /* unlink tmp file created by last child process */
607         char filename[256];
608         snprintf_(filename, sizeof(filename), "C11FuzzerTmp%d", getpid());
609         unlink(filename);
610 }