Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Zero-initialize messages (essentially their padding bits).
[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/remote/RemoteProcess.hpp"
15 #if HAVE_SMPI
16 #include "src/smpi/include/private.hpp"
17 #endif
18 #include "src/sthread/sthread.h"
19 #include "src/xbt/coverage.h"
20 #include "xbt/str.h"
21 #include <simgrid/modelchecker.h>
22
23 #include <cerrno>
24 #include <cstdio> // setvbuf
25 #include <cstdlib>
26 #include <cstring>
27 #include <memory>
28 #include <numeric>
29 #include <sys/ptrace.h>
30 #include <sys/socket.h>
31 #include <sys/types.h>
32
33 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_client, mc, "MC client logic");
34 XBT_LOG_EXTERNAL_CATEGORY(mc_global);
35
36 namespace simgrid::mc {
37
38 std::unique_ptr<AppSide> AppSide::instance_;
39
40 AppSide* AppSide::initialize()
41 {
42   if (not std::getenv(MC_ENV_SOCKET_FD)) // We are not in MC mode: don't initialize the MC world
43     return nullptr;
44
45   // Do not break if we are called multiple times:
46   if (instance_)
47     return instance_.get();
48
49   simgrid::mc::cfg_do_model_check = true;
50
51   setvbuf(stdout, nullptr, _IOLBF, 0);
52
53   // Fetch socket from MC_ENV_SOCKET_FD:
54   const char* fd_env = std::getenv(MC_ENV_SOCKET_FD);
55   int fd             = xbt_str_parse_int(fd_env, "Not a number in variable '" MC_ENV_SOCKET_FD "'");
56   XBT_DEBUG("Model-checked application found socket FD %i", fd);
57
58   // Check the socket type/validity:
59   int type;
60   socklen_t socklen = sizeof(type);
61   xbt_assert(getsockopt(fd, SOL_SOCKET, SO_TYPE, &type, &socklen) == 0, "Could not check socket type");
62   xbt_assert(type == SOCK_SEQPACKET, "Unexpected socket type %i", type);
63   XBT_DEBUG("Model-checked application found expected socket type");
64
65   instance_ = std::make_unique<simgrid::mc::AppSide>(fd);
66
67   // Wait for the model-checker:
68   errno = 0;
69 #if defined __linux__
70   ptrace(PTRACE_TRACEME, 0, nullptr, nullptr);
71 #elif defined BSD
72   ptrace(PT_TRACE_ME, 0, nullptr, 0);
73 #else
74 #error "no ptrace equivalent coded for this platform"
75 #endif
76   xbt_assert(errno == 0 && raise(SIGSTOP) == 0, "Could not wait for the model-checker (errno = %d: %s)", errno,
77              strerror(errno));
78
79   s_mc_message_initial_addresses_t message = {};
80   message.type                = MessageType::INITIAL_ADDRESSES;
81   message.mmalloc_default_mdp = mmalloc_get_current_heap();
82   message.maxpid              = kernel::actor::ActorImpl::get_maxpid_addr();
83   xbt_assert(instance_->channel_.send(message) == 0, "Could not send the initial message with addresses.");
84
85   instance_->handle_messages();
86   return instance_.get();
87 }
88
89 void AppSide::handle_deadlock_check(const s_mc_message_t*) const
90 {
91   const auto* engine     = kernel::EngineImpl::get_instance();
92   const auto& actor_list = engine->get_actor_list();
93   bool deadlock = not actor_list.empty() && std::none_of(begin(actor_list), end(actor_list), [](const auto& kv) {
94     return mc::actor_is_enabled(kv.second);
95   });
96
97   if (deadlock) {
98     XBT_CINFO(mc_global, "**************************");
99     XBT_CINFO(mc_global, "*** DEADLOCK DETECTED ***");
100     XBT_CINFO(mc_global, "**************************");
101     engine->display_all_actor_status();
102   }
103   // Send result:
104   s_mc_message_int_t answer{MessageType::DEADLOCK_CHECK_REPLY, deadlock};
105   xbt_assert(channel_.send(answer) == 0, "Could not send response");
106 }
107 void AppSide::handle_simcall_execute(const s_mc_message_simcall_execute_t* message) const
108 {
109   kernel::actor::ActorImpl* actor = kernel::EngineImpl::get_instance()->get_actor_by_pid(message->aid_);
110   xbt_assert(actor != nullptr, "Invalid pid %ld", message->aid_);
111
112   // The client may send some messages to the server while processing the transition
113   actor->simcall_handle(message->times_considered_);
114   // Say the server that the transition is over and that it should proceed
115   xbt_assert(channel_.send(MessageType::WAITING) == 0, "Could not send MESSAGE_WAITING to model-checker");
116
117   // Finish the RPC from the server: return a serialized observer, to build a Transition on Checker side
118   s_mc_message_simcall_execute_answer_t answer;
119   memset(&answer, 0, sizeof(answer));
120   answer.type = MessageType::SIMCALL_EXECUTE_ANSWER;
121   std::stringstream stream;
122   if (actor->simcall_.observer_ != nullptr) {
123     actor->simcall_.observer_->serialize(stream);
124   } else {
125     stream << (short)mc::Transition::Type::UNKNOWN;
126   }
127   std::string str = stream.str();
128   xbt_assert(str.size() + 1 <= answer.buffer.size(),
129              "The serialized simcall is too large for the buffer. Please fix the code.");
130   strncpy(answer.buffer.data(), str.c_str(), answer.buffer.size() - 1);
131   answer.buffer.back() = '\0';
132
133   XBT_DEBUG("send SIMCALL_EXECUTE_ANSWER(%s) ~> '%s'", actor->get_cname(), str.c_str());
134   xbt_assert(channel_.send(answer) == 0, "Could not send response");
135 }
136
137 void AppSide::handle_finalize(const s_mc_message_int_t* msg) const
138 {
139   bool terminate_asap = msg->value;
140   XBT_DEBUG("Finalize (terminate = %d)", (int)terminate_asap);
141   if (not terminate_asap) {
142     if (XBT_LOG_ISENABLED(mc_client, xbt_log_priority_debug))
143       kernel::EngineImpl::get_instance()->display_all_actor_status();
144 #if HAVE_SMPI
145     XBT_DEBUG("Smpi_enabled: %d", SMPI_is_inited());
146     if (SMPI_is_inited())
147       SMPI_finalize();
148 #endif
149   }
150   coverage_checkpoint();
151   xbt_assert(channel_.send(MessageType::FINALIZE_REPLY) == 0, "Could not answer to FINALIZE");
152   std::fflush(stdout);
153   if (terminate_asap)
154     ::_Exit(0);
155 }
156 void AppSide::handle_actors_status() const
157 {
158   auto const& actor_list = kernel::EngineImpl::get_instance()->get_actor_list();
159   const int num_actors   = actor_list.size();
160   XBT_DEBUG("Serialize the actors to answer ACTORS_STATUS from the checker. %d actors to go.", num_actors);
161
162   std::vector<s_mc_message_actors_status_one_t> status(num_actors);
163   int i                 = 0;
164   int total_transitions = 0;
165
166   for (auto const& [aid, actor] : actor_list) {
167     status[i].aid            = aid;
168     status[i].enabled        = mc::actor_is_enabled(actor);
169     status[i].max_considered = actor->simcall_.observer_->get_max_consider();
170     status[i].n_transitions  = mc::actor_is_enabled(actor) ? status[i].max_considered : 0;
171     total_transitions += status[i].n_transitions;
172     i++;
173   }
174
175   struct s_mc_message_actors_status_answer_t answer {
176     MessageType::ACTORS_STATUS_REPLY, num_actors, total_transitions
177   };
178
179   xbt_assert(channel_.send(answer) == 0, "Could not send ACTORS_STATUS_REPLY msg");
180   if (answer.count > 0) {
181     size_t size = status.size() * sizeof(s_mc_message_actors_status_one_t);
182     xbt_assert(channel_.send(status.data(), size) == 0, "Could not send ACTORS_STATUS_REPLY data");
183   }
184
185   // Serialize each transition to describe what each actor is doing
186   if (total_transitions > 0) {
187     std::vector<s_mc_message_simcall_probe_one_t> probes(total_transitions);
188     auto probes_iter = probes.begin();
189
190     for (const auto& actor_status : status) {
191       if (not actor_status.enabled)
192         continue;
193
194       const auto& actor        = actor_list.at(actor_status.aid);
195       const int max_considered = actor_status.max_considered;
196
197       for (int times_considered = 0; times_considered < max_considered; times_considered++, probes_iter++) {
198         std::stringstream stream;
199         s_mc_message_simcall_probe_one_t& probe = *probes_iter;
200
201         if (actor->simcall_.observer_ != nullptr) {
202           actor->simcall_.observer_->prepare(times_considered);
203           actor->simcall_.observer_->serialize(stream);
204         } else {
205           stream << (short)mc::Transition::Type::UNKNOWN;
206         }
207
208         std::string str = stream.str();
209         xbt_assert(str.size() + 1 <= probe.buffer.size(),
210                    "The serialized transition is too large for the buffer. Please fix the code.");
211         strncpy(probe.buffer.data(), str.c_str(), probe.buffer.size() - 1);
212         probe.buffer.back() = '\0';
213       }
214       // NOTE: We do NOT need to reset `times_considered` for each actor's
215       // simcall observer here to the "original" value (i.e. the value BEFORE
216       // multiple prepare() calls were made for serialization purposes) since
217       // each SIMCALL_EXECUTE provides a `times_considered` to be used to prepare
218       // the transition before execution.
219     }
220     XBT_DEBUG("Deliver ACTOR_TRANSITION_PROBE payload");
221
222     for (const auto& probe : probes)
223       xbt_assert(channel_.send(probe) == 0, "Could not send ACTOR_TRANSITION_PROBE payload");
224   }
225 }
226
227 #define assert_msg_size(_name_, _type_)                                                                                \
228   xbt_assert(received_size == sizeof(_type_), "Unexpected size for " _name_ " (%zd != %zu)", received_size,            \
229              sizeof(_type_))
230
231 void AppSide::handle_messages() const
232 {
233   while (true) { // Until we get a CONTINUE message
234     XBT_DEBUG("Waiting messages from model-checker");
235
236     std::array<char, MC_MESSAGE_LENGTH> message_buffer;
237     ssize_t received_size = channel_.receive(message_buffer.data(), message_buffer.size());
238
239     xbt_assert(received_size >= 0, "Could not receive commands from the model-checker");
240     xbt_assert(static_cast<size_t>(received_size) >= sizeof(s_mc_message_t), "Cannot handle short message (size=%zd)",
241                received_size);
242
243     const s_mc_message_t* message = (s_mc_message_t*)message_buffer.data();
244     switch (message->type) {
245       case MessageType::DEADLOCK_CHECK:
246         assert_msg_size("DEADLOCK_CHECK", s_mc_message_t);
247         handle_deadlock_check(message);
248         break;
249
250       case MessageType::CONTINUE:
251         assert_msg_size("MESSAGE_CONTINUE", s_mc_message_t);
252         return;
253
254       case MessageType::SIMCALL_EXECUTE:
255         assert_msg_size("SIMCALL_EXECUTE", s_mc_message_simcall_execute_t);
256         handle_simcall_execute((s_mc_message_simcall_execute_t*)message_buffer.data());
257         break;
258
259       case MessageType::FINALIZE:
260         assert_msg_size("FINALIZE", s_mc_message_int_t);
261         handle_finalize((s_mc_message_int_t*)message_buffer.data());
262         break;
263
264       case MessageType::ACTORS_STATUS:
265         assert_msg_size("ACTORS_STATUS", s_mc_message_t);
266         handle_actors_status();
267         break;
268
269       default:
270         xbt_die("Received unexpected message %s (%i)", to_c_str(message->type), static_cast<int>(message->type));
271         break;
272     }
273   }
274 }
275
276 void AppSide::main_loop() const
277 {
278   simgrid::mc::processes_time.resize(simgrid::kernel::actor::ActorImpl::get_maxpid());
279   MC_ignore_heap(simgrid::mc::processes_time.data(),
280                  simgrid::mc::processes_time.size() * sizeof(simgrid::mc::processes_time[0]));
281
282   sthread_disable();
283   coverage_checkpoint();
284   sthread_enable();
285   while (true) {
286     simgrid::mc::execute_actors();
287     xbt_assert(channel_.send(MessageType::WAITING) == 0, "Could not send WAITING message to model-checker");
288     this->handle_messages();
289   }
290 }
291
292 void AppSide::report_assertion_failure() const
293 {
294   xbt_assert(channel_.send(MessageType::ASSERTION_FAILED) == 0, "Could not send assertion to model-checker");
295   this->handle_messages();
296 }
297
298 void AppSide::ignore_memory(void* addr, std::size_t size) const
299 {
300   if (not MC_is_active())
301     return;
302
303   s_mc_message_ignore_memory_t message = {};
304   message.type = MessageType::IGNORE_MEMORY;
305   message.addr = (std::uintptr_t)addr;
306   message.size = size;
307   xbt_assert(channel_.send(message) == 0, "Could not send IGNORE_MEMORY message to model-checker");
308 }
309
310 void AppSide::ignore_heap(void* address, std::size_t size) const
311 {
312   if (not MC_is_active())
313     return;
314
315   const s_xbt_mheap_t* heap = mmalloc_get_current_heap();
316
317   s_mc_message_ignore_heap_t message = {};
318   message.type    = MessageType::IGNORE_HEAP;
319   message.address = address;
320   message.size    = size;
321   message.block   = ((char*)address - (char*)heap->heapbase) / BLOCKSIZE + 1;
322   if (heap->heapinfo[message.block].type == 0) {
323     message.fragment = -1;
324     heap->heapinfo[message.block].busy_block.ignore++;
325   } else {
326     message.fragment = (ADDR2UINT(address) % BLOCKSIZE) >> heap->heapinfo[message.block].type;
327     heap->heapinfo[message.block].busy_frag.ignore[message.fragment]++;
328   }
329
330   xbt_assert(channel_.send(message) == 0, "Could not send ignored region to MCer");
331 }
332
333 void AppSide::unignore_heap(void* address, std::size_t size) const
334 {
335   if (not MC_is_active())
336     return;
337
338   s_mc_message_ignore_memory_t message;
339   message.type = MessageType::UNIGNORE_HEAP;
340   message.addr = (std::uintptr_t)address;
341   message.size = size;
342   xbt_assert(channel_.send(message) == 0, "Could not send IGNORE_HEAP message to model-checker");
343 }
344
345 void AppSide::declare_symbol(const char* name, int* value) const
346 {
347   if (not MC_is_active())
348     return;
349
350   s_mc_message_register_symbol_t message;
351   memset(&message, 0, sizeof(message));
352   message.type = MessageType::REGISTER_SYMBOL;
353   xbt_assert(strlen(name) + 1 <= message.name.size(), "Symbol is too long");
354   strncpy(message.name.data(), name, message.name.size() - 1);
355   message.callback = nullptr;
356   message.data     = value;
357   xbt_assert(channel_.send(message) == 0, "Could send REGISTER_SYMBOL message to model-checker");
358 }
359
360 /** Register a stack in the model checker
361  *
362  *  The stacks are allocated in the heap. The MC handle them specifically
363  *  when we analyze/compare the content of the heap so it must be told where
364  *  they are with this function.
365  */
366 void AppSide::declare_stack(void* stack, size_t size, ucontext_t* context) const
367 {
368   if (not MC_is_active())
369     return;
370
371   const s_xbt_mheap_t* heap = mmalloc_get_current_heap();
372
373   s_stack_region_t region;
374   memset(&region, 0, sizeof(region));
375   region.address = stack;
376   region.context = context;
377   region.size    = size;
378   region.block   = ((char*)stack - (char*)heap->heapbase) / BLOCKSIZE + 1;
379
380   s_mc_message_stack_region_t message = {};
381   message.type         = MessageType::STACK_REGION;
382   message.stack_region = region;
383   xbt_assert(channel_.send(message) == 0, "Could not send STACK_REGION to model-checker");
384 }
385 } // namespace simgrid::mc