Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move request_execute and request_to_string from api::get() to Transition
[simgrid.git] / src / mc / checker / CommunicationDeterminismChecker.cpp
1 /* Copyright (c) 2008-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/CommunicationDeterminismChecker.hpp"
7 #include "src/kernel/activity/MailboxImpl.hpp"
8 #include "src/mc/Session.hpp"
9 #include "src/mc/mc_config.hpp"
10 #include "src/mc/mc_exit.hpp"
11 #include "src/mc/mc_private.hpp"
12
13 #include <cstdint>
14
15 using api = simgrid::mc::Api;
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_comm_determinism, mc, "Logging specific to MC communication determinism detection");
18
19 /********** Global variables **********/
20
21 std::vector<simgrid::mc::PatternCommunicationList> initial_communications_pattern;
22 std::vector<std::vector<simgrid::mc::PatternCommunication*>> incomplete_communications_pattern;
23
24 /********** Static functions ***********/
25
26 static simgrid::mc::CommPatternDifference compare_comm_pattern(const simgrid::mc::PatternCommunication* comm1,
27                                                                const simgrid::mc::PatternCommunication* comm2)
28 {
29   using simgrid::mc::CommPatternDifference;
30   if (comm1->type != comm2->type)
31     return CommPatternDifference::TYPE;
32   if (comm1->rdv != comm2->rdv)
33     return CommPatternDifference::RDV;
34   if (comm1->src_proc != comm2->src_proc)
35     return CommPatternDifference::SRC_PROC;
36   if (comm1->dst_proc != comm2->dst_proc)
37     return CommPatternDifference::DST_PROC;
38   if (comm1->tag != comm2->tag)
39     return CommPatternDifference::TAG;
40   if (comm1->data.size() != comm2->data.size())
41     return CommPatternDifference::DATA_SIZE;
42   if (comm1->data != comm2->data)
43     return CommPatternDifference::DATA;
44   return CommPatternDifference::NONE;
45 }
46
47 static void patterns_copy(std::vector<simgrid::mc::PatternCommunication*>& dest,
48                              std::vector<simgrid::mc::PatternCommunication> const& source)
49 {
50   dest.clear();
51   for (simgrid::mc::PatternCommunication const& comm : source) {
52     auto* copy_comm = new simgrid::mc::PatternCommunication(comm.dup());
53     dest.push_back(copy_comm);
54   }
55 }
56
57 static void restore_communications_pattern(simgrid::mc::State* state)
58 {
59   for (size_t i = 0; i < initial_communications_pattern.size(); i++)
60     initial_communications_pattern[i].index_comm = state->communication_indices_[i];
61
62   const unsigned long maxpid = api::get().get_maxpid();
63   for (unsigned long i = 0; i < maxpid; i++)
64     patterns_copy(incomplete_communications_pattern[i], state->incomplete_comm_pattern_[i]);
65 }
66
67 static char* print_determinism_result(simgrid::mc::CommPatternDifference diff, aid_t process,
68                                       const simgrid::mc::PatternCommunication* comm, unsigned int cursor)
69 {
70   char* type;
71   char* res;
72
73   if (comm->type == simgrid::mc::PatternCommunicationType::send)
74     type = bprintf("The send communications pattern of the process %ld is different!", process - 1);
75   else
76     type = bprintf("The recv communications pattern of the process %ld is different!", process - 1);
77
78   using simgrid::mc::CommPatternDifference;
79   switch (diff) {
80     case CommPatternDifference::TYPE:
81       res = bprintf("%s Different type for communication #%u", type, cursor);
82       break;
83     case CommPatternDifference::RDV:
84       res = bprintf("%s Different rdv for communication #%u", type, cursor);
85       break;
86     case CommPatternDifference::TAG:
87       res = bprintf("%s Different tag for communication #%u", type, cursor);
88       break;
89     case CommPatternDifference::SRC_PROC:
90       res = bprintf("%s Different source for communication #%u", type, cursor);
91       break;
92     case CommPatternDifference::DST_PROC:
93       res = bprintf("%s Different destination for communication #%u", type, cursor);
94       break;
95     case CommPatternDifference::DATA_SIZE:
96       res = bprintf("%s Different data size for communication #%u", type, cursor);
97       break;
98     case CommPatternDifference::DATA:
99       res = bprintf("%s Different data for communication #%u", type, cursor);
100       break;
101     default:
102       res = nullptr;
103       break;
104   }
105
106   return res;
107 }
108
109 static void update_comm_pattern(simgrid::mc::PatternCommunication* comm_pattern,
110                                 simgrid::mc::RemotePtr<simgrid::kernel::activity::CommImpl> const& comm_addr)
111 {
112   auto src_proc = api::get().get_src_actor(comm_addr);
113   auto dst_proc = api::get().get_dst_actor(comm_addr);
114   comm_pattern->src_proc = src_proc->get_pid();
115   comm_pattern->dst_proc = dst_proc->get_pid();
116   comm_pattern->src_host = &api::get().get_actor_host_name(src_proc);
117   comm_pattern->dst_host = &api::get().get_actor_host_name(dst_proc);
118
119   if (comm_pattern->data.empty()) {
120     comm_pattern->data = api::get().get_pattern_comm_data(comm_addr);
121   }
122 }
123
124 namespace simgrid {
125 namespace mc {
126
127 void CommunicationDeterminismChecker::deterministic_comm_pattern(aid_t process, const PatternCommunication* comm,
128                                                                  bool backtracking)
129 {
130   if (not backtracking) {
131     PatternCommunicationList& list = initial_communications_pattern[process];
132     CommPatternDifference diff     = compare_comm_pattern(list.list[list.index_comm].get(), comm);
133
134     if (diff != CommPatternDifference::NONE) {
135       if (comm->type == PatternCommunicationType::send) {
136         this->send_deterministic = false;
137         if (this->send_diff != nullptr)
138           xbt_free(this->send_diff);
139         this->send_diff = print_determinism_result(diff, process, comm, list.index_comm + 1);
140       } else {
141         this->recv_deterministic = false;
142         if (this->recv_diff != nullptr)
143           xbt_free(this->recv_diff);
144         this->recv_diff = print_determinism_result(diff, process, comm, list.index_comm + 1);
145       }
146       if (_sg_mc_send_determinism && not this->send_deterministic) {
147         XBT_INFO("*********************************************************");
148         XBT_INFO("***** Non-send-deterministic communications pattern *****");
149         XBT_INFO("*********************************************************");
150         XBT_INFO("%s", this->send_diff);
151         xbt_free(this->send_diff);
152         this->send_diff = nullptr;
153         api::get().log_state();
154         api::get().mc_exit(SIMGRID_MC_EXIT_NON_DETERMINISM);
155       } else if (_sg_mc_comms_determinism && (not this->send_deterministic && not this->recv_deterministic)) {
156         XBT_INFO("****************************************************");
157         XBT_INFO("***** Non-deterministic communications pattern *****");
158         XBT_INFO("****************************************************");
159         if (this->send_diff) {
160           XBT_INFO("%s", this->send_diff);
161           xbt_free(this->send_diff);
162           this->send_diff = nullptr;
163         }
164         if (this->recv_diff) {
165           XBT_INFO("%s", this->recv_diff);
166           xbt_free(this->recv_diff);
167           this->recv_diff = nullptr;
168         }
169         api::get().log_state();
170         api::get().mc_exit(SIMGRID_MC_EXIT_NON_DETERMINISM);
171       }
172     }
173   }
174 }
175
176 /********** Non Static functions ***********/
177
178 void CommunicationDeterminismChecker::get_comm_pattern(smx_simcall_t request, CallType call_type, bool backtracking)
179 {
180   const smx_actor_t issuer                                     = api::get().simcall_get_issuer(request);
181   const mc::PatternCommunicationList& initial_pattern          = initial_communications_pattern[issuer->get_pid()];
182   const std::vector<PatternCommunication*>& incomplete_pattern = incomplete_communications_pattern[issuer->get_pid()];
183
184   auto pattern   = std::make_unique<PatternCommunication>();
185   pattern->index = initial_pattern.index_comm + incomplete_pattern.size();
186
187   if (call_type == CallType::SEND) {
188     /* Create comm pattern */
189     pattern->type      = PatternCommunicationType::send;
190     pattern->comm_addr = api::get().get_comm_isend_raw_addr(request);
191     pattern->rdv       = api::get().get_pattern_comm_rdv(pattern->comm_addr);
192     pattern->src_proc  = api::get().get_pattern_comm_src_proc(pattern->comm_addr);
193     pattern->src_host  = &api::get().get_actor_host_name(issuer);
194
195 #if HAVE_SMPI
196     pattern->tag = api::get().get_smpi_request_tag(request, simgrid::simix::Simcall::COMM_ISEND);
197 #endif
198     pattern->data = api::get().get_pattern_comm_data(pattern->comm_addr);
199
200 #if HAVE_SMPI
201     auto send_detached = api::get().check_send_request_detached(request);
202     if (send_detached) {
203       if (this->initial_communications_pattern_done) {
204         /* Evaluate comm determinism */
205         this->deterministic_comm_pattern(pattern->src_proc, pattern.get(), backtracking);
206         initial_communications_pattern[pattern->src_proc].index_comm++;
207       } else {
208         /* Store comm pattern */
209         initial_communications_pattern[pattern->src_proc].list.push_back(std::move(pattern));
210       }
211       return;
212     }
213 #endif
214   } else if (call_type == CallType::RECV) {
215     pattern->type = PatternCommunicationType::receive;
216     pattern->comm_addr = api::get().get_comm_isend_raw_addr(request);
217
218 #if HAVE_SMPI
219     pattern->tag = api::get().get_smpi_request_tag(request, simgrid::simix::Simcall::COMM_IRECV);
220 #endif
221     pattern->rdv = api::get().get_pattern_comm_rdv(pattern->comm_addr);
222     pattern->dst_proc = api::get().get_pattern_comm_dst_proc(pattern->comm_addr);
223     pattern->dst_host = &api::get().get_actor_host_name(issuer);
224   } else
225     xbt_die("Unexpected call_type %i", (int)call_type);
226
227   XBT_DEBUG("Insert incomplete comm pattern %p for process %ld", pattern.get(), issuer->get_pid());
228   incomplete_communications_pattern[issuer->get_pid()].push_back(pattern.release());
229 }
230
231 void CommunicationDeterminismChecker::complete_comm_pattern(RemotePtr<kernel::activity::CommImpl> const& comm_addr,
232                                                             aid_t issuer, bool backtracking)
233 {
234   /* Complete comm pattern */
235   std::vector<PatternCommunication*>& incomplete_pattern = incomplete_communications_pattern[issuer];
236   auto current_comm_pattern =
237       std::find_if(begin(incomplete_pattern), end(incomplete_pattern),
238                    [&comm_addr](const PatternCommunication* comm) { return (comm->comm_addr == comm_addr); });
239   xbt_assert(current_comm_pattern != std::end(incomplete_pattern), "Corresponding communication not found!");
240
241   update_comm_pattern(*current_comm_pattern, comm_addr);
242   std::unique_ptr<PatternCommunication> comm_pattern(*current_comm_pattern);
243   XBT_DEBUG("Remove incomplete comm pattern for process %ld at cursor %zd", issuer,
244             std::distance(begin(incomplete_pattern), current_comm_pattern));
245   incomplete_pattern.erase(current_comm_pattern);
246
247   if (this->initial_communications_pattern_done) {
248     /* Evaluate comm determinism */
249     this->deterministic_comm_pattern(issuer, comm_pattern.get(), backtracking);
250     initial_communications_pattern[issuer].index_comm++;
251   } else {
252     /* Store comm pattern */
253     initial_communications_pattern[issuer].list.push_back(std::move(comm_pattern));
254   }
255 }
256
257 CommunicationDeterminismChecker::CommunicationDeterminismChecker(Session* session) : Checker(session) {}
258
259 CommunicationDeterminismChecker::~CommunicationDeterminismChecker() = default;
260
261 RecordTrace CommunicationDeterminismChecker::get_record_trace() // override
262 {
263   RecordTrace res;
264   for (auto const& state : stack_)
265     res.push_back(state->get_transition());
266   return res;
267 }
268
269 std::vector<std::string> CommunicationDeterminismChecker::get_textual_trace() // override
270 {
271   std::vector<std::string> trace;
272   for (auto const& state : stack_)
273     trace.push_back(state->transition_.to_string());
274   return trace;
275 }
276
277 void CommunicationDeterminismChecker::log_state() // override
278 {
279   if (_sg_mc_comms_determinism) {
280     if (this->send_deterministic && not this->recv_deterministic) {
281       XBT_INFO("*******************************************************");
282       XBT_INFO("**** Only-send-deterministic communication pattern ****");
283       XBT_INFO("*******************************************************");
284       XBT_INFO("%s", this->recv_diff);
285     }
286     if (not this->send_deterministic && this->recv_deterministic) {
287       XBT_INFO("*******************************************************");
288       XBT_INFO("**** Only-recv-deterministic communication pattern ****");
289       XBT_INFO("*******************************************************");
290       XBT_INFO("%s", this->send_diff);
291     }
292   }
293   XBT_INFO("Expanded states = %lu", expanded_states_count_);
294   XBT_INFO("Visited states = %lu", api::get().mc_get_visited_states());
295   XBT_INFO("Executed transitions = %lu", api::get().mc_get_executed_trans());
296   XBT_INFO("Send-deterministic : %s", this->send_deterministic ? "Yes" : "No");
297   if (_sg_mc_comms_determinism)
298     XBT_INFO("Recv-deterministic : %s", this->recv_deterministic ? "Yes" : "No");
299 }
300
301 void CommunicationDeterminismChecker::prepare()
302 {
303   const unsigned long maxpid = api::get().get_maxpid();
304
305   initial_communications_pattern.resize(maxpid);
306   incomplete_communications_pattern.resize(maxpid);
307
308   ++expanded_states_count_;
309   auto initial_state = std::make_unique<State>(expanded_states_count_);
310
311   XBT_DEBUG("********* Start communication determinism verification *********");
312
313   /* Add all enabled actors to the interleave set of the initial state */
314   for (auto& act : api::get().get_actors()) {
315     auto actor = act.copy.get_buffer();
316     if (get_session().actor_is_enabled(actor->get_pid()))
317       initial_state->mark_todo(actor->get_pid());
318   }
319
320   stack_.push_back(std::move(initial_state));
321 }
322
323 static inline bool all_communications_are_finished()
324 {
325   const unsigned long maxpid = api::get().get_maxpid();
326   for (size_t current_actor = 1; current_actor < maxpid; current_actor++) {
327     if (not incomplete_communications_pattern[current_actor].empty()) {
328       XBT_DEBUG("Some communications are not finished, cannot stop the exploration! State not visited.");
329       return false;
330     }
331   }
332   return true;
333 }
334
335 void CommunicationDeterminismChecker::restoreState()
336 {
337   /* Intermediate backtracking */
338   State* last_state = stack_.back().get();
339   if (last_state->system_state_) {
340     api::get().restore_state(last_state->system_state_);
341     restore_communications_pattern(last_state);
342     return;
343   }
344
345   get_session().restore_initial_state();
346
347   const unsigned long maxpid = api::get().get_maxpid();
348   assert(maxpid == incomplete_communications_pattern.size());
349   assert(maxpid == initial_communications_pattern.size());
350   for (unsigned long j = 0; j < maxpid; j++) {
351     incomplete_communications_pattern[j].clear();
352     initial_communications_pattern[j].index_comm = 0;
353   }
354
355   /* Traverse the stack from the state at position start and re-execute the transitions */
356   for (std::unique_ptr<simgrid::mc::State> const& state : stack_) {
357     if (state == stack_.back())
358       break;
359
360     int req_num                    = state->transition_.times_considered_;
361     const s_smx_simcall* saved_req = &state->executed_req_;
362     xbt_assert(saved_req);
363
364     /* because we got a copy of the executed request, we have to fetch the
365        real one, pointed by the request field of the issuer process */
366
367     const smx_actor_t issuer = api::get().simcall_get_issuer(saved_req);
368     smx_simcall_t req        = &issuer->simcall_;
369
370     /* TODO : handle test and testany simcalls */
371     CallType call = MC_get_call_type(req);
372     api::get().handle_simcall(state->transition_);
373     handle_comm_pattern(call, req, req_num, 1);
374     api::get().mc_wait_for_requests();
375
376     /* Update statistics */
377     api::get().mc_inc_visited_states();
378     api::get().mc_inc_executed_trans();
379   }
380 }
381
382 void CommunicationDeterminismChecker::handle_comm_pattern(simgrid::mc::CallType call_type, smx_simcall_t req, int value,
383                                                           bool backtracking)
384 {
385   using simgrid::mc::CallType;
386   switch(call_type) {
387     case CallType::NONE:
388       break;
389     case CallType::SEND:
390     case CallType::RECV:
391       get_comm_pattern(req, call_type, backtracking);
392       break;
393     case CallType::WAIT:
394     case CallType::WAITANY: {
395       RemotePtr<simgrid::kernel::activity::CommImpl> comm_addr;
396       if (call_type == CallType::WAIT)
397         comm_addr = remote(simcall_comm_wait__getraw__comm(req));
398       else
399         comm_addr = api::get().get_comm_waitany_raw_addr(req, value);
400       auto simcall_issuer = api::get().simcall_get_issuer(req);
401       complete_comm_pattern(comm_addr, simcall_issuer->get_pid(), backtracking);
402     } break;
403   default:
404     xbt_die("Unexpected call type %i", (int)call_type);
405   }
406 }
407
408 void CommunicationDeterminismChecker::real_run()
409 {
410   std::unique_ptr<VisitedState> visited_state = nullptr;
411
412   while (not stack_.empty()) {
413     /* Get current state */
414     State* cur_state = stack_.back().get();
415
416     XBT_DEBUG("**************************************************");
417     XBT_DEBUG("Exploration depth = %zu (state = %d, interleaved processes = %zu)", stack_.size(), cur_state->num_,
418               cur_state->count_todo());
419
420     /* Update statistics */
421     api::get().mc_inc_visited_states();
422
423     bool found_transition = false;
424     if (stack_.size() <= (std::size_t)_sg_mc_max_depth)
425       found_transition = api::get().mc_state_choose_request(cur_state);
426
427     if (found_transition && visited_state == nullptr) {
428       aid_t aid         = cur_state->transition_.aid_;
429       int req_num = cur_state->transition_.times_considered_;
430       smx_simcall_t req = &cur_state->executed_req_;
431
432       XBT_DEBUG("Execute: %s", cur_state->transition_.to_string().c_str());
433
434       std::string req_str;
435       if (dot_output != nullptr)
436         req_str = api::get().request_get_dot_output(aid, req_num);
437
438       api::get().mc_inc_executed_trans();
439
440       /* TODO : handle test and testany simcalls */
441       CallType call = CallType::NONE;
442       if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
443         call = MC_get_call_type(req);
444
445       /* Answer the request */
446       api::get().handle_simcall(cur_state->transition_);
447       /* After this call req is no longer useful */
448
449       handle_comm_pattern(call, req, req_num, 0);
450
451       /* Wait for requests (schedules processes) */
452       api::get().mc_wait_for_requests();
453
454       /* Create the new expanded state */
455       ++expanded_states_count_;
456       auto next_state = std::make_unique<State>(expanded_states_count_);
457
458       /* If comm determinism verification, we cannot stop the exploration if some communications are not finished (at
459        * least, data are transferred). These communications  are incomplete and they cannot be analyzed and compared
460        * with the initial pattern. */
461       bool compare_snapshots = this->initial_communications_pattern_done && all_communications_are_finished();
462
463       if (_sg_mc_max_visited_states != 0)
464         visited_state = visited_states_.addVisitedState(expanded_states_count_, next_state.get(), compare_snapshots);
465       else
466         visited_state = nullptr;
467
468       if (visited_state == nullptr) {
469         /* Add all enabled actors to the interleave set of the next state */
470         for (auto& act : api::get().get_actors()) {
471           auto actor = act.copy.get_buffer();
472           if (get_session().actor_is_enabled(actor->get_pid()))
473             next_state->mark_todo(actor->get_pid());
474         }
475
476         if (dot_output != nullptr)
477           fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", cur_state->num_, next_state->num_, req_str.c_str());
478
479       } else if (dot_output != nullptr)
480         fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", cur_state->num_,
481                 visited_state->original_num == -1 ? visited_state->num : visited_state->original_num, req_str.c_str());
482
483       stack_.push_back(std::move(next_state));
484     } else {
485       if (stack_.size() > (std::size_t)_sg_mc_max_depth)
486         XBT_WARN("/!\\ Max depth reached! /!\\ ");
487       else if (visited_state != nullptr)
488         XBT_DEBUG("State already visited (equal to state %d), exploration stopped on this path.",
489                   visited_state->original_num == -1 ? visited_state->num : visited_state->original_num);
490       else
491         XBT_DEBUG("There are no more processes to interleave. (depth %zu)", stack_.size());
492
493       this->initial_communications_pattern_done = true;
494
495       /* Trash the current state, no longer needed */
496       XBT_DEBUG("Delete state %d at depth %zu", cur_state->num_, stack_.size());
497       stack_.pop_back();
498
499       visited_state = nullptr;
500
501       api::get().mc_check_deadlock();
502
503       while (not stack_.empty()) {
504         std::unique_ptr<State> state(std::move(stack_.back()));
505         stack_.pop_back();
506         if (state->count_todo() && stack_.size() < (std::size_t)_sg_mc_max_depth) {
507           /* We found a back-tracking point, let's loop */
508           XBT_DEBUG("Back-tracking to state %d at depth %zu", state->num_, stack_.size() + 1);
509           stack_.push_back(std::move(state));
510
511           this->restoreState();
512
513           XBT_DEBUG("Back-tracking to state %d at depth %zu done", stack_.back()->num_, stack_.size());
514
515           break;
516         } else {
517           XBT_DEBUG("Delete state %d at depth %zu", state->num_, stack_.size() + 1);
518         }
519       }
520     }
521   }
522
523   api::get().log_state();
524 }
525
526 void CommunicationDeterminismChecker::run()
527 {
528   XBT_INFO("Check communication determinism");
529   get_session().take_initial_snapshot();
530
531   this->prepare();
532   this->real_run();
533 }
534
535 Checker* create_communication_determinism_checker(Session* session)
536 {
537   return new CommunicationDeterminismChecker(session);
538 }
539
540 } // namespace mc
541 } // namespace simgrid