Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[pvs] Expression 'req' is always true.
[simgrid.git] / src / mc / checker / SafetyChecker.cpp
1 /* Copyright (c) 2016-2020. 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 <cassert>
7 #include <cstdio>
8
9 #include <memory>
10 #include <string>
11 #include <vector>
12
13 #include <xbt/log.h>
14 #include <xbt/sysdep.h>
15
16 #include "src/mc/Session.hpp"
17 #include "src/mc/Transition.hpp"
18 #include "src/mc/VisitedState.hpp"
19 #include "src/mc/checker/SafetyChecker.hpp"
20 #include "src/mc/mc_config.hpp"
21 #include "src/mc/mc_exit.hpp"
22 #include "src/mc/mc_private.hpp"
23 #include "src/mc/mc_record.hpp"
24 #include "src/mc/mc_request.hpp"
25 #include "src/mc/mc_smx.hpp"
26
27 #include "src/xbt/mmalloc/mmprivate.h"
28
29 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_safety, mc, "Logging specific to MC safety verification ");
30
31 namespace simgrid {
32 namespace mc {
33
34 void SafetyChecker::check_non_termination(const State* current_state)
35 {
36   for (auto state = stack_.rbegin(); state != stack_.rend(); ++state)
37     if (snapshot_equal((*state)->system_state_.get(), current_state->system_state_.get())) {
38       XBT_INFO("Non-progressive cycle: state %d -> state %d", (*state)->num_, current_state->num_);
39       XBT_INFO("******************************************");
40       XBT_INFO("*** NON-PROGRESSIVE CYCLE DETECTED ***");
41       XBT_INFO("******************************************");
42       XBT_INFO("Counter-example execution trace:");
43       for (auto const& s : mc_model_checker->getChecker()->get_textual_trace())
44         XBT_INFO("  %s", s.c_str());
45       dumpRecordPath();
46       session->log_state();
47
48       throw TerminationError();
49     }
50 }
51
52 RecordTrace SafetyChecker::get_record_trace() // override
53 {
54   RecordTrace res;
55   for (auto const& state : stack_)
56     res.push_back(state->get_transition());
57   return res;
58 }
59
60 std::vector<std::string> SafetyChecker::get_textual_trace() // override
61 {
62   std::vector<std::string> trace;
63   for (auto const& state : stack_) {
64     int value         = state->transition_.argument_;
65     smx_simcall_t req = &state->executed_req_;
66     trace.push_back(request_to_string(req, value, RequestType::executed));
67   }
68   return trace;
69 }
70
71 void SafetyChecker::log_state() // override
72 {
73   XBT_INFO("Expanded states = %lu", expanded_states_count_);
74   XBT_INFO("Visited states = %lu", mc_model_checker->visited_states);
75   XBT_INFO("Executed transitions = %lu", mc_model_checker->executed_transitions);
76 }
77
78 void SafetyChecker::run()
79 {
80   /* This function runs the DFS algorithm the state space.
81    * We do so iteratively instead of recursively, dealing with the call stack manually.
82    * This allows one to explore the call stack at will. */
83
84   while (not stack_.empty()) {
85     /* Get current state */
86     State* state = stack_.back().get();
87
88     XBT_DEBUG("**************************************************");
89     XBT_VERB("Exploration depth=%zu (state=%p, num %d)(%zu interleave)", stack_.size(), state, state->num_,
90              state->interleave_size());
91
92     mc_model_checker->visited_states++;
93
94     // Backtrack if we reached the maximum depth
95     if (stack_.size() > (std::size_t)_sg_mc_max_depth) {
96       XBT_WARN("/!\\ Max depth reached ! /!\\ ");
97       this->backtrack();
98       continue;
99     }
100
101     // Backtrack if we are revisiting a state we saw previously
102     if (visited_state_ != nullptr) {
103       XBT_DEBUG("State already visited (equal to state %d), exploration stopped on this path.",
104                 visited_state_->original_num == -1 ? visited_state_->num : visited_state_->original_num);
105
106       visited_state_ = nullptr;
107       this->backtrack();
108       continue;
109     }
110
111     // Search an enabled transition in the current state; backtrack if the interleave set is empty
112     // get_request also sets state.transition to be the one corresponding to the returned req
113     smx_simcall_t req = MC_state_choose_request(state);
114     // req is now the transition of the process that was selected to be executed
115
116     if (req == nullptr) {
117       XBT_DEBUG("There are no more processes to interleave. (depth %zu)", stack_.size() + 1);
118
119       this->backtrack();
120       continue;
121     }
122
123     // If there are processes to interleave and the maximum depth has not been
124     // reached then perform one step of the exploration algorithm.
125     XBT_DEBUG("Execute: %s", request_to_string(req, state->transition_.argument_, RequestType::simix).c_str());
126
127     std::string req_str;
128     if (dot_output != nullptr)
129       req_str = request_get_dot_output(req, state->transition_.argument_);
130
131     mc_model_checker->executed_transitions++;
132
133     /* Actually answer the request: let execute the selected request (MCed does one step) */
134     this->get_session().execute(state->transition_);
135
136     /* Create the new expanded state (copy the state of MCed into our MCer data) */
137     ++expanded_states_count_;
138     auto next_state = std::make_unique<State>(expanded_states_count_);
139
140     if (_sg_mc_termination)
141       this->check_non_termination(next_state.get());
142
143     /* Check whether we already explored next_state in the past (but only if interested in state-equality reduction) */
144     if (_sg_mc_max_visited_states > 0)
145       visited_state_ = visited_states_.addVisitedState(expanded_states_count_, next_state.get(), true);
146
147     /* If this is a new state (or if we don't care about state-equality reduction) */
148     if (visited_state_ == nullptr) {
149       /* Get an enabled process and insert it in the interleave set of the next state */
150       for (auto& remoteActor : mc_model_checker->get_remote_simulation().actors()) {
151         auto actor = remoteActor.copy.get_buffer();
152         if (actor_is_enabled(actor)) {
153           next_state->add_interleaving_set(actor);
154           if (reductionMode_ == ReductionMode::dpor)
155             break; // With DPOR, we take the first enabled transition
156         }
157       }
158
159       if (dot_output != nullptr)
160         std::fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num_, next_state->num_, req_str.c_str());
161
162     } else if (dot_output != nullptr)
163       std::fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num_,
164                    visited_state_->original_num == -1 ? visited_state_->num : visited_state_->original_num,
165                    req_str.c_str());
166
167     stack_.push_back(std::move(next_state));
168   }
169
170   XBT_INFO("No property violation found.");
171   session->log_state();
172 }
173
174 void SafetyChecker::backtrack()
175 {
176   stack_.pop_back();
177
178   /* Check for deadlocks */
179   if (mc_model_checker->checkDeadlock()) {
180     MC_show_deadlock();
181     throw DeadlockError();
182   }
183
184   /* Traverse the stack backwards until a state with a non empty interleave set is found, deleting all the states that
185    *  have it empty in the way. For each deleted state, check if the request that has generated it (from its
186    *  predecessor state), depends on any other previous request executed before it. If it does then add it to the
187    *  interleave set of the state that executed that previous request. */
188
189   while (not stack_.empty()) {
190     std::unique_ptr<State> state = std::move(stack_.back());
191     stack_.pop_back();
192     if (reductionMode_ == ReductionMode::dpor) {
193       smx_simcall_t req = &state->internal_req_;
194       if (req->call_ == simix::Simcall::MUTEX_LOCK || req->call_ == simix::Simcall::MUTEX_TRYLOCK)
195         xbt_die("Mutex is currently not supported with DPOR,  use --cfg=model-check/reduction:none");
196
197       const kernel::actor::ActorImpl* issuer = MC_smx_simcall_get_issuer(req);
198       for (auto i = stack_.rbegin(); i != stack_.rend(); ++i) {
199         State* prev_state = i->get();
200         if (request_depend(req, &prev_state->internal_req_)) {
201           if (XBT_LOG_ISENABLED(mc_safety, xbt_log_priority_debug)) {
202             XBT_DEBUG("Dependent Transitions:");
203             int value              = prev_state->transition_.argument_;
204             smx_simcall_t prev_req = &prev_state->executed_req_;
205             XBT_DEBUG("%s (state=%d)", simgrid::mc::request_to_string(prev_req, value, RequestType::internal).c_str(),
206                       prev_state->num_);
207             value    = state->transition_.argument_;
208             prev_req = &state->executed_req_;
209             XBT_DEBUG("%s (state=%d)", simgrid::mc::request_to_string(prev_req, value, RequestType::executed).c_str(),
210                       state->num_);
211           }
212
213           if (not prev_state->actor_states_[issuer->get_pid()].is_done())
214             prev_state->add_interleaving_set(issuer);
215           else
216             XBT_DEBUG("Process %p is in done set", req->issuer_);
217           break;
218         } else if (req->issuer_ == prev_state->internal_req_.issuer_) {
219           XBT_DEBUG("Simcall %s and %s with same issuer", SIMIX_simcall_name(req->call_),
220                     SIMIX_simcall_name(prev_state->internal_req_.call_));
221           break;
222         } else {
223           const kernel::actor::ActorImpl* previous_issuer = MC_smx_simcall_get_issuer(&prev_state->internal_req_);
224           XBT_DEBUG("Simcall %s, process %ld (state %d) and simcall %s, process %ld (state %d) are independent",
225                     SIMIX_simcall_name(req->call_), issuer->get_pid(), state->num_,
226                     SIMIX_simcall_name(prev_state->internal_req_.call_), previous_issuer->get_pid(), prev_state->num_);
227         }
228       }
229     }
230
231     if (state->interleave_size() && stack_.size() < (std::size_t)_sg_mc_max_depth) {
232       /* We found a back-tracking point, let's loop */
233       XBT_DEBUG("Back-tracking to state %d at depth %zu", state->num_, stack_.size() + 1);
234       stack_.push_back(std::move(state));
235       this->restore_state();
236       XBT_DEBUG("Back-tracking to state %d at depth %zu done", stack_.back()->num_, stack_.size());
237       break;
238     } else {
239       XBT_DEBUG("Delete state %d at depth %zu", state->num_, stack_.size() + 1);
240     }
241   }
242 }
243
244 void SafetyChecker::restore_state()
245 {
246   /* Intermediate backtracking */
247   const State* last_state = stack_.back().get();
248   if (last_state->system_state_) {
249     last_state->system_state_->restore(&mc_model_checker->get_remote_simulation());
250     return;
251   }
252
253   /* Restore the initial state */
254   session->restore_initial_state();
255
256   /* Traverse the stack from the state at position start and re-execute the transitions */
257   for (std::unique_ptr<State> const& state : stack_) {
258     if (state == stack_.back())
259       break;
260     session->execute(state->transition_);
261     /* Update statistics */
262     mc_model_checker->visited_states++;
263     mc_model_checker->executed_transitions++;
264   }
265 }
266
267 SafetyChecker::SafetyChecker(Session& s) : Checker(s)
268 {
269   reductionMode_ = reduction_mode;
270   if (_sg_mc_termination)
271     reductionMode_ = ReductionMode::none;
272   else if (reductionMode_ == ReductionMode::unset)
273     reductionMode_ = ReductionMode::dpor;
274
275   if (_sg_mc_termination)
276     XBT_INFO("Check non progressive cycles");
277   else
278     XBT_INFO("Check a safety property. Reduction is: %s.",
279              (reductionMode_ == ReductionMode::none ? "none"
280                                                     : (reductionMode_ == ReductionMode::dpor ? "dpor" : "unknown")));
281   session->initialize();
282
283   XBT_DEBUG("Starting the safety algorithm");
284
285   ++expanded_states_count_;
286   auto initial_state = std::make_unique<State>(expanded_states_count_);
287
288   XBT_DEBUG("**************************************************");
289   XBT_DEBUG("Initial state");
290
291   /* Get an enabled actor and insert it in the interleave set of the initial state */
292   for (auto& actor : mc_model_checker->get_remote_simulation().actors())
293     if (actor_is_enabled(actor.copy.get_buffer())) {
294       initial_state->add_interleaving_set(actor.copy.get_buffer());
295       if (reductionMode_ != ReductionMode::none)
296         break;
297     }
298
299   stack_.push_back(std::move(initial_state));
300 }
301
302 Checker* createSafetyChecker(Session& s)
303 {
304   return new SafetyChecker(s);
305 }
306
307 } // namespace mc
308 } // namespace simgrid