model: add bug reporting framework
authorBrian Norris <banorris@uci.edu>
Thu, 15 Nov 2012 21:25:35 +0000 (13:25 -0800)
committerBrian Norris <banorris@uci.edu>
Fri, 16 Nov 2012 01:38:55 +0000 (17:38 -0800)
This will help clean up bug reporting so that bugs are only printed for
complete, valid executions.

model.cc
model.h

index 3ed8203fe9a2111618ced00d3ac07bf0cc5a6ac1..98d7e093add60f8dfde8ad249506a81aabec47d8 100644 (file)
--- a/model.cc
+++ b/model.cc
 
 ModelChecker *model;
 
+struct bug_message {
+       bug_message(const char *str) {
+               const char *fmt = "  [BUG] %s\n";
+               msg = (char *)snapshot_malloc(strlen(fmt) + strlen(str));
+               sprintf(msg, fmt, str);
+       }
+       ~bug_message() { if (msg) snapshot_free(msg); }
+
+       char *msg;
+       void print() { printf("%s", msg); }
+};
+
 /**
  * Structure for holding small ModelChecker members that should be snapshotted
  */
@@ -27,6 +39,7 @@ struct model_snapshot_members {
        modelclock_t used_sequence_numbers;
        Thread *nextThread;
        ModelAction *next_backtrack;
+       std::vector< bug_message *, SnapshotAlloc<bug_message *> > bugs;
 };
 
 /** @brief Constructor */
@@ -89,6 +102,9 @@ ModelChecker::~ModelChecker()
        delete scheduler;
        delete mo_graph;
 
+       for (unsigned int i = 0; i < priv->bugs.size(); i++)
+               delete priv->bugs[i];
+       priv->bugs.clear();
        snapshot_free(priv);
 }
 
@@ -311,6 +327,72 @@ bool ModelChecker::is_complete_execution() const
        return true;
 }
 
+/**
+ * @brief Assert a bug in the executing program.
+ *
+ * Use this function to assert any sort of bug in the user program. If the
+ * current trace is feasible (actually, a prefix of some feasible execution),
+ * then this execution will be aborted, printing the appropriate message. If
+ * the current trace is not yet feasible, the error message will be stashed and
+ * printed if the execution ever becomes feasible.
+ *
+ * This function can also be used to immediately trigger the bug; that is, we
+ * don't wait for a feasible execution before aborting. Only use the
+ * "immediate" option when you know that the infeasibility is justified (e.g.,
+ * pending release sequences are not a problem)
+ *
+ * @param msg Descriptive message for the bug (do not include newline char)
+ * @param user_thread Was this assertion triggered from a user thread?
+ * @param immediate Should this bug be triggered immediately?
+ */
+void ModelChecker::assert_bug(const char *msg, bool user_thread, bool immediate)
+{
+       priv->bugs.push_back(new bug_message(msg));
+
+       if (immediate || isfeasibleprefix()) {
+               set_assert();
+               if (user_thread)
+                       switch_to_master(NULL);
+       }
+}
+
+/**
+ * @brief Assert a bug in the executing program, with a default message
+ * @see ModelChecker::assert_bug
+ * @param user_thread Was this assertion triggered from a user thread?
+ */
+void ModelChecker::assert_bug(bool user_thread)
+{
+       assert_bug("bug detected", user_thread);
+}
+
+/**
+ * @brief Assert a bug in the executing program immediately
+ * @see ModelChecker::assert_bug
+ * @param msg Descriptive message for the bug (do not include newline char)
+ */
+void ModelChecker::assert_bug_immediate(const char *msg)
+{
+       printf("Feasible: %s\n", isfeasibleprefix() ? "yes" : "no");
+       assert_bug(msg, false, true);
+}
+
+/** @return True, if any bugs have been reported for this execution */
+bool ModelChecker::have_bug_reports() const
+{
+       return priv->bugs.size() != 0;
+}
+
+/** @brief Print bug report listing for this execution (if any bugs exist) */
+void ModelChecker::print_bugs() const
+{
+       if (have_bug_reports()) {
+               printf("Bug report: %zu bugs detected\n", priv->bugs.size());
+               for (unsigned int i = 0; i < priv->bugs.size(); i++)
+                       priv->bugs[i]->print();
+       }
+}
+
 /**
  * Queries the model-checker for more executions to explore and, if one
  * exists, resets the model-checker state to execute a new execution.
@@ -2303,6 +2385,10 @@ bool ModelChecker::take_step() {
        /* Infeasible -> don't take any more steps */
        if (!isfeasible())
                return false;
+       else if (isfeasibleprefix() && have_bug_reports()) {
+               set_assert();
+               return false;
+       }
 
        if (params.bound != 0) {
                if (priv->used_sequence_numbers > params.bound) {
diff --git a/model.h b/model.h
index baec467bb41b6dfd638c457cd7ea4d69ae74739e..e64597f8d4d9a745a9a9f09f6eda9fe198a4b945 100644 (file)
--- a/model.h
+++ b/model.h
@@ -107,6 +107,11 @@ public:
        void get_release_seq_heads(ModelAction *act, rel_heads_list_t *release_heads);
        void finish_execution();
        bool isfeasibleprefix() const;
+
+       void assert_bug(const char *msg, bool user_thread = false, bool immediate = false);
+       void assert_bug(bool user_thread = true);
+       void assert_bug_immediate(const char *msg);
+
        void set_assert() {asserted=true;}
        bool is_deadlocked() const;
        bool is_complete_execution() const;
@@ -232,6 +237,9 @@ private:
        bool asserted;
        /** @brief Incorrectly-ordered synchronization was made */
        bool bad_synchronization;
+
+       bool have_bug_reports() const;
+       void print_bugs() const;
 };
 
 extern ModelChecker *model;