Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Misc sonar issues.
[simgrid.git] / src / mc / remote / AppSide.cpp
1 /* Copyright (c) 2015-2023. 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/remote/AppSide.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "src/internal_config.h"
9 #include "src/kernel/EngineImpl.hpp"
10 #include "src/kernel/actor/ActorImpl.hpp"
11 #include "src/kernel/actor/SimcallObserver.hpp"
12 #include "src/mc/mc_base.hpp"
13 #include "src/mc/mc_config.hpp"
14 #include "src/mc/mc_environ.h"
15 #if SIMGRID_HAVE_STATEFUL_MC
16 #include "src/mc/sosp/RemoteProcessMemory.hpp"
17 #endif
18 #if HAVE_SMPI
19 #include "src/smpi/include/private.hpp"
20 #endif
21 #include "src/sthread/sthread.h"
22 #include "src/xbt/coverage.h"
23 #include "xbt/str.h"
24 #include <simgrid/modelchecker.h>
25
26 #include <cerrno>
27 #include <cinttypes>
28 #include <cstdio> // setvbuf
29 #include <cstdlib>
30 #include <memory>
31 #include <numeric>
32 #include <sys/ptrace.h>
33 #include <sys/socket.h>
34 #include <sys/types.h>
35 #include <sys/un.h>
36 #include <sys/wait.h>
37
38 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_client, mc, "MC client logic");
39 XBT_LOG_EXTERNAL_CATEGORY(mc_global);
40
41 namespace simgrid::mc {
42
43 std::unique_ptr<AppSide> AppSide::instance_;
44
45 AppSide* AppSide::get()
46 {
47   // Only initialize the MC world once
48   if (instance_ != nullptr)
49     return instance_.get();
50
51   if (std::getenv(MC_ENV_SOCKET_FD) == nullptr) // We are not in MC mode: don't initialize the MC world
52     return nullptr;
53
54   XBT_DEBUG("Initialize the MC world. %s=%s", MC_ENV_NEED_PTRACE, std::getenv(MC_ENV_NEED_PTRACE));
55
56   simgrid::mc::set_model_checking_mode(ModelCheckingMode::APP_SIDE);
57
58   setvbuf(stdout, nullptr, _IOLBF, 0);
59
60   // Fetch socket from MC_ENV_SOCKET_FD:
61   const char* fd_env = std::getenv(MC_ENV_SOCKET_FD);
62   int fd             = xbt_str_parse_int(fd_env, "Not a number in variable '" MC_ENV_SOCKET_FD "'");
63   XBT_DEBUG("Model-checked application found socket FD %i", fd);
64
65   instance_ = std::make_unique<simgrid::mc::AppSide>(fd);
66
67   // Wait for the model-checker:
68   if (getenv(MC_ENV_NEED_PTRACE) != nullptr) {
69     errno = 0;
70 #if defined __linux__
71     ptrace(PTRACE_TRACEME, 0, nullptr, nullptr);
72 #elif defined BSD
73     ptrace(PT_TRACE_ME, 0, nullptr, 0);
74 #else
75     xbt_die("no ptrace equivalent coded for this platform, please don't use the liveness checker here.");
76 #endif
77
78     xbt_assert(errno == 0 && raise(SIGSTOP) == 0, "Could not wait for the model-checker (errno = %d: %s)", errno,
79                strerror(errno));
80   }
81
82   instance_->handle_messages();
83   return instance_.get();
84 }
85
86 void AppSide::handle_deadlock_check(const s_mc_message_t*) const
87 {
88   const auto* engine     = kernel::EngineImpl::get_instance();
89   const auto& actor_list = engine->get_actor_list();
90   bool deadlock = not actor_list.empty() && std::none_of(begin(actor_list), end(actor_list), [](const auto& kv) {
91     return mc::actor_is_enabled(kv.second);
92   });
93
94   if (deadlock) {
95     XBT_CINFO(mc_global, "**************************");
96     XBT_CINFO(mc_global, "*** DEADLOCK DETECTED ***");
97     XBT_CINFO(mc_global, "**************************");
98     engine->display_all_actor_status();
99   }
100   // Send result:
101   s_mc_message_int_t answer = {};
102   answer.type  = MessageType::DEADLOCK_CHECK_REPLY;
103   answer.value = deadlock;
104   xbt_assert(channel_.send(answer) == 0, "Could not send response");
105 }
106 void AppSide::handle_simcall_execute(const s_mc_message_simcall_execute_t* message) const
107 {
108   kernel::actor::ActorImpl* actor = kernel::EngineImpl::get_instance()->get_actor_by_pid(message->aid_);
109   xbt_assert(actor != nullptr, "Invalid pid %ld", message->aid_);
110
111   // The client may send some messages to the server while processing the transition
112   actor->simcall_handle(message->times_considered_);
113   // Say the server that the transition is over and that it should proceed
114   xbt_assert(channel_.send(MessageType::WAITING) == 0, "Could not send MESSAGE_WAITING to model-checker");
115
116   // Finish the RPC from the server: return a serialized observer, to build a Transition on Checker side
117   s_mc_message_simcall_execute_answer_t answer = {};
118   answer.type                                  = MessageType::SIMCALL_EXECUTE_REPLY;
119   std::stringstream stream;
120   if (actor->simcall_.observer_ != nullptr) {
121     actor->simcall_.observer_->serialize(stream);
122   } else {
123     stream << (short)mc::Transition::Type::UNKNOWN;
124   }
125   std::string str = stream.str();
126   xbt_assert(str.size() + 1 <= answer.buffer.size(),
127              "The serialized simcall is too large for the buffer. Please fix the code.");
128   strncpy(answer.buffer.data(), str.c_str(), answer.buffer.size() - 1);
129   answer.buffer.back() = '\0';
130
131   XBT_DEBUG("send SIMCALL_EXECUTE_ANSWER(%s) ~> '%s'", actor->get_cname(), str.c_str());
132   xbt_assert(channel_.send(answer) == 0, "Could not send response");
133 }
134
135 void AppSide::handle_finalize(const s_mc_message_int_t* msg) const
136 {
137   bool terminate_asap = msg->value;
138   XBT_DEBUG("Finalize (terminate = %d)", (int)terminate_asap);
139   if (not terminate_asap) {
140     if (XBT_LOG_ISENABLED(mc_client, xbt_log_priority_debug))
141       kernel::EngineImpl::get_instance()->display_all_actor_status();
142 #if HAVE_SMPI
143     XBT_DEBUG("Smpi_enabled: %d", SMPI_is_inited());
144     if (SMPI_is_inited())
145       SMPI_finalize();
146 #endif
147   }
148   coverage_checkpoint();
149   xbt_assert(channel_.send(MessageType::FINALIZE_REPLY) == 0, "Could not answer to FINALIZE");
150   std::fflush(stdout);
151   if (terminate_asap)
152     ::_Exit(0);
153 }
154 void AppSide::handle_fork(const s_mc_message_int_t* msg)
155 {
156   int status;
157   int pid;
158   /* Reap any zombie child, saving its status for later use in AppSide::handle_wait_child() */
159   while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
160     child_statuses_[pid] = status;
161
162   pid = fork();
163   xbt_assert(pid >= 0, "Could not fork application sub-process: %s.", strerror(errno));
164
165   if (pid == 0) { // Child
166     int sock = socket(AF_UNIX,
167 #ifdef __APPLE__
168                       SOCK_STREAM, /* Mac OSX does not have AF_UNIX + SOCK_SEQPACKET, even if that's faster*/
169 #else
170                       SOCK_SEQPACKET,
171 #endif
172                       0);
173
174     struct sockaddr_un addr = {};
175     addr.sun_family         = AF_UNIX;
176     snprintf(addr.sun_path, 64, "/tmp/simgrid-mc-%" PRIu64, msg->value);
177     auto addr_size = offsetof(struct sockaddr_un, sun_path) + strlen(addr.sun_path);
178
179     xbt_assert(connect(sock, (struct sockaddr*)&addr, addr_size) >= 0,
180                "Cannot connect to Checker on %s: %s.", addr.sun_path, strerror(errno));
181
182     channel_.reset_socket(sock);
183
184     s_mc_message_int_t answer = {};
185     answer.type               = MessageType::FORK_REPLY;
186     answer.value              = getpid();
187     xbt_assert(channel_.send(answer) == 0, "Could not send response to WAIT_CHILD_REPLY: %s", strerror(errno));
188   } else {
189     XBT_VERB("App %d forks subprocess %d.", getpid(), pid);
190   }
191 }
192 void AppSide::handle_wait_child(const s_mc_message_int_t* msg)
193 {
194   int status;
195   errno = 0;
196   if (auto search = child_statuses_.find(msg->value); search != child_statuses_.end()) {
197     status = search->second;
198     child_statuses_.erase(search); // We only need this info once
199   } else {
200     waitpid(msg->value, &status, 0);
201   }
202   xbt_assert(errno == 0, "Cannot wait on behalf of the checker: %s.", strerror(errno));
203
204   s_mc_message_int_t answer = {};
205   answer.type               = MessageType::WAIT_CHILD_REPLY;
206   answer.value              = status;
207   xbt_assert(channel_.send(answer) == 0, "Could not send response to WAIT_CHILD: %s", strerror(errno));
208 }
209 void AppSide::handle_need_meminfo()
210 {
211 #if SIMGRID_HAVE_STATEFUL_MC
212   this->need_memory_info_                  = true;
213   s_mc_message_need_meminfo_reply_t answer = {};
214   answer.type                              = MessageType::NEED_MEMINFO_REPLY;
215   answer.mmalloc_default_mdp               = mmalloc_get_current_heap();
216   xbt_assert(channel_.send(answer) == 0, "Could not send response to the request for meminfo.");
217 #else
218   xbt_die("SimGrid was compiled without MC suppport, so liveness and similar features are not available.");
219 #endif
220 }
221 void AppSide::handle_actors_status() const
222 {
223   auto const& actor_list = kernel::EngineImpl::get_instance()->get_actor_list();
224   XBT_DEBUG("Serialize the actors to answer ACTORS_STATUS from the checker. %zu actors to go.", actor_list.size());
225
226   std::vector<s_mc_message_actors_status_one_t> status;
227   for (auto const& [aid, actor] : actor_list) {
228     s_mc_message_actors_status_one_t one = {};
229     one.type                             = MessageType::ACTORS_STATUS_REPLY_TRANSITION;
230     one.aid                              = aid;
231     one.enabled                          = mc::actor_is_enabled(actor);
232     one.max_considered                   = actor->simcall_.observer_->get_max_consider();
233     status.push_back(one);
234   }
235
236   struct s_mc_message_actors_status_answer_t answer = {};
237   answer.type                                       = MessageType::ACTORS_STATUS_REPLY_COUNT;
238   answer.count                                      = static_cast<int>(status.size());
239
240   xbt_assert(channel_.send(answer) == 0, "Could not send ACTORS_STATUS_REPLY msg");
241   if (answer.count > 0) {
242     size_t size = status.size() * sizeof(s_mc_message_actors_status_one_t);
243     xbt_assert(channel_.send(status.data(), size) == 0, "Could not send ACTORS_STATUS_REPLY data");
244   }
245
246   // Serialize each transition to describe what each actor is doing
247   XBT_DEBUG("Deliver ACTOR_TRANSITION_PROBE payload");
248   for (const auto& actor_status : status) {
249     if (not actor_status.enabled)
250       continue;
251
252     const auto& actor        = actor_list.at(actor_status.aid);
253     const int max_considered = actor_status.max_considered;
254
255     for (int times_considered = 0; times_considered < max_considered; times_considered++) {
256       std::stringstream stream;
257       s_mc_message_simcall_probe_one_t probe;
258       probe.type = MessageType::ACTORS_STATUS_REPLY_SIMCALL;
259
260       if (actor->simcall_.observer_ != nullptr) {
261         actor->simcall_.observer_->prepare(times_considered);
262         actor->simcall_.observer_->serialize(stream);
263       } else {
264         stream << (short)mc::Transition::Type::UNKNOWN;
265       }
266
267       std::string str = stream.str();
268       xbt_assert(str.size() + 1 <= probe.buffer.size(),
269                  "The serialized transition is too large for the buffer. Please fix the code.");
270       strncpy(probe.buffer.data(), str.c_str(), probe.buffer.size() - 1);
271       probe.buffer.back() = '\0';
272
273       xbt_assert(channel_.send(probe) == 0, "Could not send ACTOR_TRANSITION_PROBE payload");
274     }
275     // NOTE: We do NOT need to reset `times_considered` for each actor's
276     // simcall observer here to the "original" value (i.e. the value BEFORE
277     // multiple prepare() calls were made for serialization purposes) since
278     // each SIMCALL_EXECUTE provides a `times_considered` to be used to prepare
279     // the transition before execution.
280   }
281 }
282 void AppSide::handle_actors_maxpid() const
283 {
284   s_mc_message_int_t answer = {};
285   answer.type               = MessageType::ACTORS_MAXPID_REPLY;
286   answer.value              = kernel::actor::ActorImpl::get_maxpid();
287   xbt_assert(channel_.send(answer) == 0, "Could not send response");
288 }
289
290 #define assert_msg_size(_name_, _type_)                                                                                \
291   xbt_assert(received_size == sizeof(_type_), "Unexpected size for " _name_ " (%zd != %zu)", received_size,            \
292              sizeof(_type_))
293
294 void AppSide::handle_messages()
295 {
296   while (true) { // Until we get a CONTINUE message
297     XBT_DEBUG("Waiting messages from the model-checker");
298
299     std::array<char, MC_MESSAGE_LENGTH> message_buffer;
300     ssize_t received_size = channel_.receive(message_buffer.data(), message_buffer.size());
301
302     if (received_size == 0) {
303       XBT_DEBUG("Socket closed on the Checker side, bailing out.");
304       ::_Exit(0); // Nobody's listening to that process anymore => exit as quickly as possible.
305     }
306     xbt_assert(received_size >= 0, "Could not receive commands from the model-checker");
307     xbt_assert(static_cast<size_t>(received_size) >= sizeof(s_mc_message_t), "Cannot handle short message (size=%zd)",
308                received_size);
309
310     const s_mc_message_t* message = (s_mc_message_t*)message_buffer.data();
311     switch (message->type) {
312       case MessageType::CONTINUE:
313         assert_msg_size("MESSAGE_CONTINUE", s_mc_message_t);
314         return;
315
316       case MessageType::DEADLOCK_CHECK:
317         assert_msg_size("DEADLOCK_CHECK", s_mc_message_t);
318         handle_deadlock_check(message);
319         break;
320
321       case MessageType::SIMCALL_EXECUTE:
322         assert_msg_size("SIMCALL_EXECUTE", s_mc_message_simcall_execute_t);
323         handle_simcall_execute((s_mc_message_simcall_execute_t*)message_buffer.data());
324         break;
325
326       case MessageType::FINALIZE:
327         assert_msg_size("FINALIZE", s_mc_message_int_t);
328         handle_finalize((s_mc_message_int_t*)message_buffer.data());
329         break;
330
331       case MessageType::FORK:
332         assert_msg_size("FORK", s_mc_message_int_t);
333         handle_fork((s_mc_message_int_t*)message_buffer.data());
334         break;
335
336       case MessageType::WAIT_CHILD:
337         assert_msg_size("WAIT_CHILD", s_mc_message_int_t);
338         handle_wait_child((s_mc_message_int_t*)message_buffer.data());
339         break;
340
341       case MessageType::NEED_MEMINFO:
342         assert_msg_size("NEED_MEMINFO", s_mc_message_t);
343         handle_need_meminfo();
344         break;
345
346       case MessageType::ACTORS_STATUS:
347         assert_msg_size("ACTORS_STATUS", s_mc_message_t);
348         handle_actors_status();
349         break;
350
351       case MessageType::ACTORS_MAXPID:
352         assert_msg_size("ACTORS_MAXPID", s_mc_message_t);
353         handle_actors_maxpid();
354         break;
355
356       default:
357         xbt_die("Received unexpected message %s (%i)", to_c_str(message->type), static_cast<int>(message->type));
358         break;
359     }
360   }
361 }
362
363 void AppSide::main_loop()
364 {
365   simgrid::mc::processes_time.resize(simgrid::kernel::actor::ActorImpl::get_maxpid());
366   MC_ignore_heap(simgrid::mc::processes_time.data(),
367                  simgrid::mc::processes_time.size() * sizeof(simgrid::mc::processes_time[0]));
368
369   sthread_disable();
370   coverage_checkpoint();
371   sthread_enable();
372   while (true) {
373     simgrid::mc::execute_actors();
374     xbt_assert(channel_.send(MessageType::WAITING) == 0, "Could not send WAITING message to model-checker");
375     this->handle_messages();
376   }
377 }
378
379 void AppSide::report_assertion_failure()
380 {
381   xbt_assert(channel_.send(MessageType::ASSERTION_FAILED) == 0, "Could not send assertion to model-checker");
382   this->handle_messages();
383 }
384
385 void AppSide::ignore_memory(void* addr, std::size_t size) const
386 {
387   if (not MC_is_active() || not need_memory_info_)
388     return;
389
390 #if SIMGRID_HAVE_STATEFUL_MC
391   s_mc_message_ignore_memory_t message = {};
392   message.type = MessageType::IGNORE_MEMORY;
393   message.addr = (std::uintptr_t)addr;
394   message.size = size;
395   xbt_assert(channel_.send(message) == 0, "Could not send IGNORE_MEMORY message to model-checker");
396 #else
397   xbt_die("Cannot really call ignore_heap() in non-SIMGRID_MC mode.");
398 #endif
399 }
400
401 void AppSide::ignore_heap(void* address, std::size_t size) const
402 {
403   if (not MC_is_active() || not need_memory_info_)
404     return;
405
406 #if SIMGRID_HAVE_STATEFUL_MC
407   const s_xbt_mheap_t* heap = mmalloc_get_current_heap();
408
409   s_mc_message_ignore_heap_t message = {};
410   message.type    = MessageType::IGNORE_HEAP;
411   message.address = address;
412   message.size    = size;
413   message.block   = ((char*)address - (char*)heap->heapbase) / BLOCKSIZE + 1;
414   if (heap->heapinfo[message.block].type == 0) {
415     message.fragment = -1;
416     heap->heapinfo[message.block].busy_block.ignore++;
417   } else {
418     message.fragment = (ADDR2UINT(address) % BLOCKSIZE) >> heap->heapinfo[message.block].type;
419     heap->heapinfo[message.block].busy_frag.ignore[message.fragment]++;
420   }
421
422   xbt_assert(channel_.send(message) == 0, "Could not send ignored region to MCer");
423 #else
424   xbt_die("Cannot really call ignore_heap() in non-SIMGRID_MC mode.");
425 #endif
426 }
427
428 void AppSide::unignore_heap(void* address, std::size_t size) const
429 {
430   if (not MC_is_active() || not need_memory_info_)
431     return;
432
433 #if SIMGRID_HAVE_STATEFUL_MC
434   s_mc_message_ignore_memory_t message = {};
435   message.type = MessageType::UNIGNORE_HEAP;
436   message.addr = (std::uintptr_t)address;
437   message.size = size;
438   xbt_assert(channel_.send(message) == 0, "Could not send IGNORE_HEAP message to model-checker");
439 #else
440   xbt_die("Cannot really call unignore_heap() in non-SIMGRID_MC mode.");
441 #endif
442 }
443
444 void AppSide::declare_symbol(const char* name, int* value) const
445 {
446   if (not MC_is_active() || not need_memory_info_) {
447     XBT_CRITICAL("Ignore AppSide::declare_symbol(%s)", name);
448     return;
449   }
450
451 #if SIMGRID_HAVE_STATEFUL_MC
452   s_mc_message_register_symbol_t message = {};
453   message.type = MessageType::REGISTER_SYMBOL;
454   xbt_assert(strlen(name) + 1 <= message.name.size(), "Symbol is too long");
455   strncpy(message.name.data(), name, message.name.size() - 1);
456   message.callback = nullptr;
457   message.data     = value;
458   xbt_assert(channel_.send(message) == 0, "Could send REGISTER_SYMBOL message to model-checker");
459 #else
460   xbt_die("Cannot really call declare_symbol() in non-SIMGRID_MC mode.");
461 #endif
462 }
463
464 /** Register a stack in the model checker
465  *
466  *  The stacks are allocated in the heap. The MC handle them specifically
467  *  when we analyze/compare the content of the heap so it must be told where
468  *  they are with this function.
469  */
470 #if HAVE_UCONTEXT_H /* Apple don't want us to use ucontexts */
471 void AppSide::declare_stack(void* stack, size_t size, ucontext_t* context) const
472 {
473   if (not MC_is_active() || not need_memory_info_)
474     return;
475
476 #if SIMGRID_HAVE_STATEFUL_MC
477   const s_xbt_mheap_t* heap = mmalloc_get_current_heap();
478
479   s_stack_region_t region = {};
480   region.address = stack;
481   region.context = context;
482   region.size    = size;
483   region.block   = ((char*)stack - (char*)heap->heapbase) / BLOCKSIZE + 1;
484
485   s_mc_message_stack_region_t message = {};
486   message.type         = MessageType::STACK_REGION;
487   message.stack_region = region;
488   xbt_assert(channel_.send(message) == 0, "Could not send STACK_REGION to model-checker");
489 #else
490   xbt_die("Cannot really call declare_stack() in non-SIMGRID_MC mode.");
491 #endif
492 }
493 #endif
494
495 } // namespace simgrid::mc