Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MC: move a check_deadlock from ModelChecker to Session, and kill cruft in mc::api
[simgrid.git] / src / mc / checker / LivenessChecker.cpp
1 /* Copyright (c) 2011-2022. The 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 #include "src/mc/checker/LivenessChecker.hpp"
7 #include "src/mc/Session.hpp"
8 #include "src/mc/mc_config.hpp"
9 #include "src/mc/mc_exit.hpp"
10 #include "src/mc/mc_private.hpp"
11
12 #include <boost/range/algorithm.hpp>
13 #include <cstring>
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_liveness, mc, "Logging specific to algorithms for liveness properties verification");
16
17 using api = simgrid::mc::Api;
18
19 /********* Static functions *********/
20
21 namespace simgrid {
22 namespace mc {
23
24 VisitedPair::VisitedPair(int pair_num, xbt_automaton_state_t automaton_state,
25                          std::shared_ptr<const std::vector<int>> atomic_propositions,
26                          std::shared_ptr<State> graph_state)
27     : num(pair_num), automaton_state(automaton_state)
28 {
29   this->graph_state = std::move(graph_state);
30   if (this->graph_state->system_state_ == nullptr)
31     this->graph_state->system_state_ = std::make_shared<Snapshot>(pair_num);
32   this->heap_bytes_used = api::get().get_remote_heap_bytes();
33   this->actors_count        = api::get().get_actors().size();
34   this->other_num = -1;
35   this->atomic_propositions = std::move(atomic_propositions);
36 }
37
38 static bool evaluate_label(const xbt_automaton_exp_label* l, std::vector<int> const& values)
39 {
40   switch (l->type) {
41   case xbt_automaton_exp_label::AUT_OR:
42     return evaluate_label(l->u.or_and.left_exp, values)
43       || evaluate_label(l->u.or_and.right_exp, values);
44   case xbt_automaton_exp_label::AUT_AND:
45     return evaluate_label(l->u.or_and.left_exp, values)
46       && evaluate_label(l->u.or_and.right_exp, values);
47   case xbt_automaton_exp_label::AUT_NOT:
48     return not evaluate_label(l->u.exp_not, values);
49   case xbt_automaton_exp_label::AUT_PREDICAT:
50     return values.at(api::get().compare_automaton_exp_label(l)) != 0;
51   case xbt_automaton_exp_label::AUT_ONE:
52     return true;
53   default:
54     xbt_die("Unexpected value for automaton");
55   }
56 }
57
58 Pair::Pair(unsigned long expanded_pairs) : num(expanded_pairs)
59 {}
60
61 std::shared_ptr<const std::vector<int>> LivenessChecker::get_proposition_values() const
62 {
63   auto values = api::get().automaton_propositional_symbol_evaluate();
64   return std::make_shared<const std::vector<int>>(std::move(values));
65 }
66
67 std::shared_ptr<VisitedPair> LivenessChecker::insert_acceptance_pair(simgrid::mc::Pair* pair)
68 {
69   auto new_pair =
70       std::make_shared<VisitedPair>(pair->num, pair->automaton_state, pair->atomic_propositions, pair->graph_state);
71
72   auto res = boost::range::equal_range(acceptance_pairs_, new_pair.get(), api::get().compare_pair());
73
74   if (pair->search_cycle) for (auto i = res.first; i != res.second; ++i) {
75     std::shared_ptr<simgrid::mc::VisitedPair> const& pair_test = *i;
76     if (api::get().automaton_state_compare(pair_test->automaton_state, new_pair->automaton_state) != 0 ||
77         *(pair_test->atomic_propositions) != *(new_pair->atomic_propositions) ||
78         not api::get().snapshot_equal(pair_test->graph_state->system_state_.get(), new_pair->graph_state->system_state_.get()))
79       continue;
80     XBT_INFO("Pair %d already reached (equal to pair %d) !", new_pair->num, pair_test->num);
81     exploration_stack_.pop_back();
82     if (dot_output != nullptr)
83       fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", this->previous_pair_, pair_test->num,
84               this->previous_request_.c_str());
85     return nullptr;
86   }
87
88   acceptance_pairs_.insert(res.first, new_pair);
89   return new_pair;
90 }
91
92 void LivenessChecker::remove_acceptance_pair(int pair_num)
93 {
94   for (auto i = acceptance_pairs_.begin(); i != acceptance_pairs_.end(); ++i)
95     if ((*i)->num == pair_num) {
96       acceptance_pairs_.erase(i);
97       break;
98     }
99 }
100
101 void LivenessChecker::replay()
102 {
103   XBT_DEBUG("**** Begin Replay ****");
104
105   /* Intermediate backtracking */
106   if(_sg_mc_checkpoint > 0) {
107     const Pair* pair = exploration_stack_.back().get();
108     if (pair->graph_state->system_state_) {
109       api::get().restore_state(pair->graph_state->system_state_);
110       return;
111     }
112   }
113
114   get_session().restore_initial_state();
115
116   /* Traverse the stack from the initial state and re-execute the transitions */
117   int depth = 1;
118   for (std::shared_ptr<Pair> const& pair : exploration_stack_) {
119     if (pair == exploration_stack_.back())
120       break;
121
122     std::shared_ptr<State> state = pair->graph_state;
123
124     if (pair->exploration_started) {
125       state->get_transition()->replay();
126       XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, state->get_transition()->to_string().c_str(), state.get());
127     }
128
129     /* Update statistics */
130     visited_pairs_count_++;
131     depth++;
132   }
133   XBT_DEBUG("**** End Replay ****");
134 }
135
136 /**
137  * @brief Checks whether a given pair has already been visited by the algorithm.
138  */
139 int LivenessChecker::insert_visited_pair(std::shared_ptr<VisitedPair> visited_pair, simgrid::mc::Pair* pair)
140 {
141   if (_sg_mc_max_visited_states == 0)
142     return -1;
143
144   if (visited_pair == nullptr)
145     visited_pair =
146         std::make_shared<VisitedPair>(pair->num, pair->automaton_state, pair->atomic_propositions, pair->graph_state);
147
148   auto range = boost::range::equal_range(visited_pairs_, visited_pair.get(), api::get().compare_pair());
149
150   for (auto i = range.first; i != range.second; ++i) {
151     const VisitedPair* pair_test = i->get();
152     if (api::get().automaton_state_compare(pair_test->automaton_state, visited_pair->automaton_state) != 0 ||
153         *(pair_test->atomic_propositions) != *(visited_pair->atomic_propositions) ||
154         not api::get().snapshot_equal(pair_test->graph_state->system_state_.get(), visited_pair->graph_state->system_state_.get()))
155       continue;
156     if (pair_test->other_num == -1)
157       visited_pair->other_num = pair_test->num;
158     else
159       visited_pair->other_num = pair_test->other_num;
160     if (dot_output == nullptr)
161       XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", visited_pair->num, pair_test->num);
162     else
163       XBT_DEBUG("Pair %d already visited ! (equal to pair %d (pair %d in dot_output))",
164         visited_pair->num, pair_test->num, visited_pair->other_num);
165     (*i) = std::move(visited_pair);
166     return (*i)->other_num;
167   }
168
169   visited_pairs_.insert(range.first, std::move(visited_pair));
170   this->purge_visited_pairs();
171   return -1;
172 }
173
174 void LivenessChecker::purge_visited_pairs()
175 {
176   if (_sg_mc_max_visited_states != 0 && visited_pairs_.size() > (std::size_t)_sg_mc_max_visited_states) {
177     // Remove the oldest entry with a linear search:
178     visited_pairs_.erase(
179         boost::min_element(visited_pairs_, [](std::shared_ptr<VisitedPair> const a,
180                                               std::shared_ptr<VisitedPair> const& b) { return a->num < b->num; }));
181   }
182 }
183
184 LivenessChecker::LivenessChecker(Session* session) : Checker(session) {}
185
186 RecordTrace LivenessChecker::get_record_trace() // override
187 {
188   RecordTrace res;
189   for (std::shared_ptr<Pair> const& pair : exploration_stack_)
190     res.push_back(pair->graph_state->get_transition());
191   return res;
192 }
193
194 void LivenessChecker::log_state() // override
195 {
196   XBT_INFO("Expanded pairs = %lu", expanded_pairs_count_);
197   XBT_INFO("Visited pairs = %lu", visited_pairs_count_);
198   XBT_INFO("Executed transitions = %lu", Transition::get_executed_transitions());
199 }
200
201 void LivenessChecker::show_acceptance_cycle(std::size_t depth)
202 {
203   XBT_INFO("*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*");
204   XBT_INFO("|             ACCEPTANCE CYCLE            |");
205   XBT_INFO("*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*");
206   XBT_INFO("Counter-example that violates formula:");
207   for (auto const& s : this->get_textual_trace())
208     XBT_INFO("  %s", s.c_str());
209   XBT_INFO("Path = %s", get_record_trace().to_string().c_str());
210   log_state();
211   XBT_INFO("Counter-example depth: %zu", depth);
212 }
213
214 std::vector<std::string> LivenessChecker::get_textual_trace() // override
215 {
216   std::vector<std::string> trace;
217   for (std::shared_ptr<Pair> const& pair : exploration_stack_)
218     trace.push_back(pair->graph_state->get_transition()->to_string());
219
220   return trace;
221 }
222
223 std::shared_ptr<Pair> LivenessChecker::create_pair(const Pair* current_pair, xbt_automaton_state_t state,
224                                                    std::shared_ptr<const std::vector<int>> propositions)
225 {
226   ++expanded_pairs_count_;
227   auto next_pair                  = std::make_shared<Pair>(expanded_pairs_count_);
228   next_pair->automaton_state      = state;
229   next_pair->graph_state          = std::make_shared<State>();
230   next_pair->atomic_propositions  = std::move(propositions);
231   if (current_pair)
232     next_pair->depth = current_pair->depth + 1;
233   else
234     next_pair->depth = 1;
235   /* Add all enabled actors to the interleave set of the initial state */
236   for (auto& act : api::get().get_actors()) {
237     auto actor = act.copy.get_buffer();
238     if (get_session().actor_is_enabled(actor->get_pid()))
239       next_pair->graph_state->mark_todo(actor->get_pid());
240   }
241
242   next_pair->requests = next_pair->graph_state->count_todo();
243   /* FIXME : get search_cycle value for each accepting state */
244   if (next_pair->automaton_state->type == 1 || (current_pair && current_pair->search_cycle))
245     next_pair->search_cycle = true;
246   else
247     next_pair->search_cycle = false;
248   return next_pair;
249 }
250
251 void LivenessChecker::backtrack()
252 {
253   /* Traverse the stack backwards until a pair with a non empty interleave
254      set is found, deleting all the pairs that have it empty in the way. */
255   while (not exploration_stack_.empty()) {
256     std::shared_ptr<simgrid::mc::Pair> current_pair = exploration_stack_.back();
257     exploration_stack_.pop_back();
258     if (current_pair->requests > 0) {
259       /* We found a backtracking point */
260       XBT_DEBUG("Backtracking to depth %d", current_pair->depth);
261       exploration_stack_.push_back(std::move(current_pair));
262       this->replay();
263       XBT_DEBUG("Backtracking done");
264       break;
265     } else {
266       XBT_DEBUG("Delete pair %d at depth %d", current_pair->num, current_pair->depth);
267       if (current_pair->automaton_state->type == 1)
268         this->remove_acceptance_pair(current_pair->num);
269     }
270   }
271 }
272
273 void LivenessChecker::run()
274 {
275   XBT_INFO("Check the liveness property %s", _sg_mc_property_file.get().c_str());
276   api::get().automaton_load(_sg_mc_property_file.get().c_str());
277
278   XBT_DEBUG("Starting the liveness algorithm");
279   get_session().take_initial_snapshot();
280
281   /* Initialize */
282   this->previous_pair_ = 0;
283
284   std::shared_ptr<const std::vector<int>> propos = this->get_proposition_values();
285
286   // For each initial state of the property automaton, push a
287   // (application_state, automaton_state) pair to the exploration stack:
288   auto automaton_stack = api::get().get_automaton_state();
289   for (auto* automaton_state : automaton_stack) {
290     if (automaton_state->type == -1)
291       exploration_stack_.push_back(this->create_pair(nullptr, automaton_state, propos));
292   }
293
294   /* Actually run the double DFS search for counter-examples */
295   while (not exploration_stack_.empty()) {
296     std::shared_ptr<Pair> current_pair = exploration_stack_.back();
297
298     /* Update current state in buchi automaton */
299     api::get().set_property_automaton(current_pair->automaton_state);
300
301     XBT_DEBUG(
302         "********************* ( Depth = %d, search_cycle = %d, interleave size = %zu, pair_num = %d, requests = %d)",
303         current_pair->depth, current_pair->search_cycle, current_pair->graph_state->count_todo(), current_pair->num,
304         current_pair->requests);
305
306     if (current_pair->requests == 0) {
307       this->backtrack();
308       continue;
309     }
310
311     std::shared_ptr<VisitedPair> reached_pair;
312     if (current_pair->automaton_state->type == 1 && not current_pair->exploration_started) {
313       reached_pair = this->insert_acceptance_pair(current_pair.get());
314       if (reached_pair == nullptr) {
315         this->show_acceptance_cycle(current_pair->depth);
316         throw LivenessError();
317       }
318     }
319
320     /* Pair already visited ? stop the exploration on the current path */
321     if (not current_pair->exploration_started) {
322       int visited_num = this->insert_visited_pair(reached_pair, current_pair.get());
323       if (visited_num != -1) {
324         if (dot_output != nullptr) {
325           fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", this->previous_pair_, visited_num,
326                   this->previous_request_.c_str());
327           fflush(dot_output);
328         }
329         XBT_DEBUG("Pair already visited (equal to pair %d), exploration on the current path stopped.", visited_num);
330         current_pair->requests = 0;
331         this->backtrack();
332         continue;
333       }
334     }
335
336     current_pair->graph_state->execute_next(current_pair->graph_state->next_transition());
337     XBT_DEBUG("Execute: %s", current_pair->graph_state->get_transition()->to_string().c_str());
338
339     if (dot_output != nullptr) {
340       if (this->previous_pair_ != 0 && this->previous_pair_ != current_pair->num) {
341         fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", this->previous_pair_, current_pair->num,
342                 this->previous_request_.c_str());
343         this->previous_request_.clear();
344       }
345       this->previous_pair_    = current_pair->num;
346       this->previous_request_ = api::get().request_get_dot_output(current_pair->graph_state->get_transition());
347       if (current_pair->search_cycle)
348         fprintf(dot_output, "%d [shape=doublecircle];\n", current_pair->num);
349       fflush(dot_output);
350     }
351
352     if (not current_pair->exploration_started)
353       visited_pairs_count_++;
354
355     current_pair->requests--;
356     current_pair->exploration_started = true;
357
358     /* Get values of atomic propositions (variables used in the property formula) */
359     std::shared_ptr<const std::vector<int>> prop_values = this->get_proposition_values();
360
361     // For each enabled transition in the property automaton, push a
362     // (application_state, automaton_state) pair to the exploration stack:
363     for (int i = api::get().get_dynar_length(current_pair->automaton_state->out) - 1; i >= 0; i--) {
364       auto transition_succ_label = api::get().get_automaton_transition_label(current_pair->automaton_state->out, i);
365       auto transition_succ_dst   = api::get().get_automaton_transition_dst(current_pair->automaton_state->out, i);
366       if (evaluate_label(transition_succ_label, *prop_values))
367         exploration_stack_.push_back(this->create_pair(current_pair.get(), transition_succ_dst, prop_values));
368     }
369   }
370
371   XBT_INFO("No property violation found.");
372   log_state();
373 }
374
375 Checker* create_liveness_checker(Session* session)
376 {
377   return new LivenessChecker(session);
378 }
379
380 } // namespace mc
381 } // namespace simgrid