Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill redundant blank lines (codefactor.io)
[simgrid.git] / src / mc / explo / DFSExplorer.cpp
1 /* Copyright (c) 2016-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/explo/DFSExplorer.hpp"
7 #include "src/mc/VisitedState.hpp"
8 #include "src/mc/mc_config.hpp"
9 #include "src/mc/mc_exit.hpp"
10 #include "src/mc/mc_private.hpp"
11 #include "src/mc/mc_record.hpp"
12 #include "src/mc/transition/Transition.hpp"
13
14 #include "src/xbt/mmalloc/mmprivate.h"
15 #include "xbt/log.h"
16 #include "xbt/sysdep.h"
17
18 #include <cassert>
19 #include <cstdio>
20
21 #include <memory>
22 #include <string>
23 #include <vector>
24
25 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_dfs, mc, "DFS exploration algorithm of the model-checker");
26
27 namespace simgrid::mc {
28
29 xbt::signal<void(RemoteApp&)> DFSExplorer::on_exploration_start_signal;
30 xbt::signal<void(RemoteApp&)> DFSExplorer::on_backtracking_signal;
31
32 xbt::signal<void(State*, RemoteApp&)> DFSExplorer::on_state_creation_signal;
33
34 xbt::signal<void(State*, RemoteApp&)> DFSExplorer::on_restore_system_state_signal;
35 xbt::signal<void(RemoteApp&)> DFSExplorer::on_restore_initial_state_signal;
36 xbt::signal<void(Transition*, RemoteApp&)> DFSExplorer::on_transition_replay_signal;
37 xbt::signal<void(Transition*, RemoteApp&)> DFSExplorer::on_transition_execute_signal;
38
39 xbt::signal<void(RemoteApp&)> DFSExplorer::on_log_state_signal;
40
41 void DFSExplorer::check_non_termination(const State* current_state)
42 {
43   for (auto state = stack_.rbegin(); state != stack_.rend(); ++state)
44     if (*(*state)->get_system_state() == *current_state->get_system_state()) {
45       XBT_INFO("Non-progressive cycle: state %ld -> state %ld", (*state)->get_num(), current_state->get_num());
46       XBT_INFO("******************************************");
47       XBT_INFO("*** NON-PROGRESSIVE CYCLE DETECTED ***");
48       XBT_INFO("******************************************");
49       XBT_INFO("Counter-example execution trace:");
50       for (auto const& s : get_textual_trace())
51         XBT_INFO("  %s", s.c_str());
52       XBT_INFO("Path = %s", get_record_trace().to_string().c_str());
53       log_state();
54
55       throw TerminationError();
56     }
57 }
58
59 RecordTrace DFSExplorer::get_record_trace() // override
60 {
61   RecordTrace res;
62   for (auto const& state : stack_)
63     res.push_back(state->get_transition());
64   return res;
65 }
66
67 std::vector<std::string> DFSExplorer::get_textual_trace() // override
68 {
69   std::vector<std::string> trace;
70   for (auto const& state : stack_) {
71     const auto* t = state->get_transition();
72     trace.push_back(xbt::string_printf("%ld: %s", t->aid_, t->to_string().c_str()));
73   }
74   return trace;
75 }
76
77 void DFSExplorer::log_state() // override
78 {
79   on_log_state_signal(get_remote_app());
80   XBT_INFO("DFS exploration ended. %ld unique states visited; %ld backtracks (%lu transition replays, %lu states "
81            "visited overall)",
82            State::get_expanded_states(), backtrack_count_, mc_model_checker->get_visited_states(),
83            Transition::get_replayed_transitions());
84 }
85
86 void DFSExplorer::run()
87 {
88   on_exploration_start_signal(get_remote_app());
89   /* This function runs the DFS algorithm the state space.
90    * We do so iteratively instead of recursively, dealing with the call stack manually.
91    * This allows one to explore the call stack at will. */
92
93   while (not stack_.empty()) {
94     /* Get current state */
95     State* state = stack_.back().get();
96
97     XBT_DEBUG("**************************************************");
98     XBT_DEBUG("Exploration depth=%zu (state:%ld; %zu interleaves)", stack_.size(), state->get_num(),
99               state->count_todo());
100
101     mc_model_checker->inc_visited_states();
102
103     // Backtrack if we reached the maximum depth
104     if (stack_.size() > (std::size_t)_sg_mc_max_depth) {
105       if (reduction_mode_ == ReductionMode::dpor) {
106         XBT_ERROR("/!\\ Max depth of %d reached! THIS WILL PROBABLY BREAK the dpor reduction /!\\",
107                   _sg_mc_max_depth.get());
108         XBT_ERROR("/!\\ If bad things happen, disable dpor with --cfg=model-check/reduction:none /!\\");
109       } else
110         XBT_WARN("/!\\ Max depth reached ! /!\\ ");
111       this->backtrack();
112       continue;
113     }
114
115     // Backtrack if we are revisiting a state we saw previously
116     if (visited_state_ != nullptr) {
117       XBT_DEBUG("State already visited (equal to state %ld), exploration stopped on this path.",
118                 visited_state_->original_num == -1 ? visited_state_->num : visited_state_->original_num);
119
120       visited_state_ = nullptr;
121       this->backtrack();
122       continue;
123     }
124
125     // Search for the next transition
126     int next = state->next_transition();
127
128     if (next < 0) { // If there is no more transition in the current state, backtrack.
129       XBT_DEBUG("There remains %lu actors, but none to interleave (depth %zu).", state->get_actor_count(),
130                 stack_.size() + 1);
131
132       if (state->get_actor_count() == 0) {
133         mc_model_checker->finalize_app();
134         XBT_VERB("Execution came to an end at %s (state: %ld, depth: %zu)", get_record_trace().to_string().c_str(),
135                  state->get_num(), stack_.size());
136       }
137       this->backtrack();
138       continue;
139     }
140
141     /* Actually answer the request: let's execute the selected request (MCed does one step) */
142     state->execute_next(next);
143     on_transition_execute_signal(state->get_transition(), get_remote_app());
144
145     // If there are processes to interleave and the maximum depth has not been
146     // reached then perform one step of the exploration algorithm.
147     XBT_VERB("Execute %ld: %.60s (stack depth: %zu, state: %ld, %zu interleaves)", state->get_transition()->aid_,
148              state->get_transition()->to_string().c_str(), stack_.size(), state->get_num(), state->count_todo());
149
150     /* Create the new expanded state (copy the state of MCed into our MCer data) */
151     auto next_state = std::make_unique<State>(get_remote_app());
152     on_state_creation_signal(next_state.get(), get_remote_app());
153
154     if (_sg_mc_termination)
155       this->check_non_termination(next_state.get());
156
157     /* Check whether we already explored next_state in the past (but only if interested in state-equality reduction) */
158     if (_sg_mc_max_visited_states > 0)
159       visited_state_ = visited_states_.addVisitedState(next_state->get_num(), next_state.get());
160
161     /* If this is a new state (or if we don't care about state-equality reduction) */
162     if (visited_state_ == nullptr) {
163       /* Get an enabled process and insert it in the interleave set of the next state */
164       for (auto const& [aid, _] : next_state->get_actors_list()) {
165         if (next_state->is_actor_enabled(aid)) {
166           next_state->mark_todo(aid);
167           if (reduction_mode_ == ReductionMode::dpor)
168             break; // With DPOR, we take the first enabled transition
169         }
170       }
171
172       mc_model_checker->dot_output("\"%ld\" -> \"%ld\" [%s];\n", state->get_num(), next_state->get_num(),
173                                    state->get_transition()->dot_string().c_str());
174     } else
175       mc_model_checker->dot_output("\"%ld\" -> \"%ld\" [%s];\n", state->get_num(),
176                                    visited_state_->original_num == -1 ? visited_state_->num
177                                                                       : visited_state_->original_num,
178                                    state->get_transition()->dot_string().c_str());
179
180     stack_.push_back(std::move(next_state));
181   }
182
183   log_state();
184 }
185
186 void DFSExplorer::backtrack()
187 {
188   backtrack_count_++;
189   XBT_VERB("Backtracking from %s", get_record_trace().to_string().c_str());
190   on_backtracking_signal(get_remote_app());
191   stack_.pop_back();
192
193   get_remote_app().check_deadlock();
194
195   /* Traverse the stack backwards until a state with a non empty interleave set is found, deleting all the states that
196    *  have it empty in the way. For each deleted state, check if the request that has generated it (from its
197    *  predecessor state), depends on any other previous request executed before it. If it does then add it to the
198    *  interleave set of the state that executed that previous request. */
199   bool found_backtracking_point = false;
200   while (not stack_.empty() && not found_backtracking_point) {
201     std::unique_ptr<State> state = std::move(stack_.back());
202     stack_.pop_back();
203     if (reduction_mode_ == ReductionMode::dpor) {
204       aid_t issuer_id = state->get_transition()->aid_;
205       for (auto i = stack_.rbegin(); i != stack_.rend(); ++i) {
206         State* prev_state = i->get();
207         if (state->get_transition()->aid_ == prev_state->get_transition()->aid_) {
208           XBT_DEBUG("Simcall >>%s<< and >>%s<< with same issuer %ld", state->get_transition()->to_string().c_str(),
209                     prev_state->get_transition()->to_string().c_str(), issuer_id);
210           break;
211         } else if (prev_state->get_transition()->depends(state->get_transition())) {
212           XBT_VERB("Dependent Transitions:");
213           XBT_VERB("  %s (state=%ld)", prev_state->get_transition()->to_string().c_str(), prev_state->get_num());
214           XBT_VERB("  %s (state=%ld)", state->get_transition()->to_string().c_str(), state->get_num());
215
216           if (not prev_state->is_done(issuer_id))
217             prev_state->mark_todo(issuer_id);
218           else
219             XBT_DEBUG("Actor %ld is in done set", issuer_id);
220           break;
221         } else {
222           XBT_VERB("INDEPENDENT Transitions:");
223           XBT_VERB("  %s (state=%ld)", prev_state->get_transition()->to_string().c_str(), prev_state->get_num());
224           XBT_VERB("  %s (state=%ld)", state->get_transition()->to_string().c_str(), state->get_num());
225         }
226       }
227     }
228
229     if (state->count_todo() == 0) { // Empty interleaving set
230       XBT_DEBUG("Delete state %ld at depth %zu", state->get_num(), stack_.size() + 1);
231
232     } else {
233       XBT_DEBUG("Back-tracking to state %ld at depth %zu", state->get_num(), stack_.size() + 1);
234       stack_.push_back(std::move(state)); // Put it back on the stack
235       found_backtracking_point = true;
236     }
237   }
238
239   if (found_backtracking_point) {
240     /* If asked to rollback on a state that has a snapshot, restore it */
241     State* last_state = stack_.back().get();
242     if (const auto* system_state = last_state->get_system_state()) {
243       system_state->restore(&get_remote_app().get_remote_process());
244       on_restore_system_state_signal(last_state, get_remote_app());
245       return;
246     }
247
248     /* if no snapshot, we need to restore the initial state and replay the transitions */
249     get_remote_app().restore_initial_state();
250     on_restore_initial_state_signal(get_remote_app());
251
252     /* Traverse the stack from the state at position start and re-execute the transitions */
253     for (std::unique_ptr<State> const& state : stack_) {
254       if (state == stack_.back()) /* If we are arrived on the target state, don't replay the outgoing transition */
255         break;
256       state->get_transition()->replay();
257       on_transition_replay_signal(state->get_transition(), get_remote_app());
258       /* Update statistics */
259       mc_model_checker->inc_visited_states();
260     }
261   } // If no backtracing point, then the stack is empty and the exploration is over
262 }
263
264 DFSExplorer::DFSExplorer(const std::vector<char*>& args, bool with_dpor) : Exploration(args)
265 {
266   if (with_dpor)
267     reduction_mode_ = ReductionMode::dpor;
268   else
269     reduction_mode_ = ReductionMode::none;
270
271   if (_sg_mc_termination) {
272     if (with_dpor) {
273       XBT_INFO("Check non progressive cycles (turning DPOR off)");
274       reduction_mode_ = ReductionMode::none;
275     } else {
276       XBT_INFO("Check non progressive cycles");
277     }
278   } else
279     XBT_INFO("Start a DFS exploration. Reduction is: %s.", to_c_str(reduction_mode_));
280
281   auto initial_state = std::make_unique<State>(get_remote_app());
282
283   XBT_DEBUG("**************************************************");
284
285   /* Get an enabled actor and insert it in the interleave set of the initial state */
286   XBT_DEBUG("Initial state. %lu actors to consider", initial_state->get_actor_count());
287   for (auto const& [aid, _] : initial_state->get_actors_list()) {
288     if (initial_state->is_actor_enabled(aid)) {
289       initial_state->mark_todo(aid);
290       if (reduction_mode_ == ReductionMode::dpor) {
291         XBT_DEBUG("Actor %ld is TODO, DPOR is ON so let's go for this one.", aid);
292         break;
293       }
294       XBT_DEBUG("Actor %ld is TODO", aid);
295     }
296   }
297
298   stack_.push_back(std::move(initial_state));
299 }
300
301 Exploration* create_dfs_exploration(const std::vector<char*>& args, bool with_dpor)
302 {
303   return new DFSExplorer(args, with_dpor);
304 }
305
306 } // namespace simgrid::mc