Logo AND Algorithmique Numérique Distribuée

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