Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Storage-kill: this survives to make
[simgrid.git] / src / simix / smx_global.cpp
1 /* Copyright (c) 2007-2021. 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 "mc/mc.h"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Host.hpp"
9 #include "src/smpi/include/smpi_actor.hpp"
10
11 #include "simgrid/sg_config.hpp"
12 #include "src/kernel/activity/ExecImpl.hpp"
13 #include "src/kernel/activity/IoImpl.hpp"
14 #include "src/kernel/activity/MailboxImpl.hpp"
15 #include "src/kernel/activity/SleepImpl.hpp"
16 #include "src/kernel/activity/SynchroRaw.hpp"
17 #include "src/mc/mc_record.hpp"
18 #include "src/mc/mc_replay.hpp"
19 #include "src/simix/smx_private.hpp"
20 #include "src/surf/xml/platf.hpp"
21
22 #include "simgrid/kernel/resource/Model.hpp"
23
24 #if SIMGRID_HAVE_MC
25 #include "src/mc/remote/AppSide.hpp"
26 #endif
27
28 #include <memory>
29
30 XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories");
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_kernel, simix, "Logging specific to SIMIX (kernel)");
32
33 std::unique_ptr<simgrid::simix::Global> simix_global;
34
35 void (*SMPI_switch_data_segment)(simgrid::s4u::ActorPtr) = nullptr;
36
37 namespace simgrid {
38 namespace simix {
39 config::Flag<bool> cfg_verbose_exit{"debug/verbose-exit",
40                                     "Display the actor status at exit",
41                                     true};
42 } // namespace simix
43 } // namespace simgrid
44
45 XBT_ATTRIB_NORETURN static void inthandler(int)
46 {
47   if (simgrid::simix::cfg_verbose_exit) {
48     XBT_INFO("CTRL-C pressed. The current status will be displayed before exit (disable that behavior with option "
49              "'debug/verbose-exit').");
50     simix_global->display_all_actor_status();
51   }
52   else {
53     XBT_INFO("CTRL-C pressed, exiting. Hiding the current process status since 'debug/verbose-exit' is set to false.");
54   }
55   exit(1);
56 }
57
58 #ifndef _WIN32
59 static void segvhandler(int signum, siginfo_t* siginfo, void* /*context*/)
60 {
61   if ((siginfo->si_signo == SIGSEGV && siginfo->si_code == SEGV_ACCERR) || siginfo->si_signo == SIGBUS) {
62     fprintf(stderr,
63             "Access violation or Bus error detected.\n"
64             "This probably comes from a programming error in your code, or from a stack\n"
65             "overflow. If you are certain of your code, try increasing the stack size\n"
66             "   --cfg=contexts/stack-size=XXX (current size is %u KiB).\n"
67             "\n"
68             "If it does not help, this may have one of the following causes:\n"
69             "a bug in SimGrid, a bug in the OS or a bug in a third-party libraries.\n"
70             "Failing hardware can sometimes generate such errors too.\n"
71             "\n"
72             "If you think you've found a bug in SimGrid, please report it along with a\n"
73             "Minimal Working Example (MWE) reproducing your problem and a full backtrace\n"
74             "of the fault captured with gdb or valgrind.\n",
75             smx_context_stack_size / 1024);
76   } else  if (siginfo->si_signo == SIGSEGV) {
77     fprintf(stderr, "Segmentation fault.\n");
78 #if HAVE_SMPI
79     if (smpi_enabled() && smpi_cfg_privatization() == SmpiPrivStrategies::NONE) {
80 #if HAVE_PRIVATIZATION
81       fprintf(stderr, "Try to enable SMPI variable privatization with --cfg=smpi/privatization:yes.\n");
82 #else
83       fprintf(stderr, "Sadly, your system does not support --cfg=smpi/privatization:yes (yet).\n");
84 #endif /* HAVE_PRIVATIZATION */
85     }
86 #endif /* HAVE_SMPI */
87   }
88   std::raise(signum);
89 }
90
91 std::array<unsigned char, SIGSTKSZ> sigsegv_stack; /* alternate stack for SIGSEGV handler */
92
93 /**
94  * Install signal handler for SIGSEGV.  Check that nobody has already installed
95  * its own handler.  For example, the Java VM does this.
96  */
97 static void install_segvhandler()
98 {
99   stack_t old_stack;
100
101   if (simgrid::kernel::context::Context::install_sigsegv_stack(&old_stack, true) == -1) {
102     XBT_WARN("Failed to register alternate signal stack: %s", strerror(errno));
103     return;
104   }
105   if (not(old_stack.ss_flags & SS_DISABLE)) {
106     XBT_DEBUG("An alternate stack was already installed (sp=%p, size=%zu, flags=%x). Restore it.", old_stack.ss_sp,
107               old_stack.ss_size, (unsigned)old_stack.ss_flags);
108     sigaltstack(&old_stack, nullptr);
109   }
110
111   struct sigaction action;
112   struct sigaction old_action;
113   action.sa_sigaction = &segvhandler;
114   action.sa_flags = SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
115   sigemptyset(&action.sa_mask);
116
117   /* Linux tend to raise only SIGSEGV where other systems also raise SIGBUS on severe error */
118   for (int sig : {SIGSEGV, SIGBUS}) {
119     if (sigaction(sig, &action, &old_action) == -1) {
120       XBT_WARN("Failed to register signal handler for signal %d: %s", sig, strerror(errno));
121       continue;
122     }
123     if ((old_action.sa_flags & SA_SIGINFO) || old_action.sa_handler != SIG_DFL) {
124       XBT_DEBUG("A signal handler was already installed for signal %d (%p). Restore it.", sig,
125                 (old_action.sa_flags & SA_SIGINFO) ? (void*)old_action.sa_sigaction : (void*)old_action.sa_handler);
126       sigaction(sig, &old_action, nullptr);
127     }
128   }
129 }
130
131 #endif /* _WIN32 */
132
133 /********************************* SIMIX **************************************/
134 namespace simgrid {
135 namespace simix {
136
137 Timer* Timer::set(double date, xbt::Task<void()>&& callback)
138 {
139   auto* timer    = new Timer(date, std::move(callback));
140   timer->handle_ = simix_timers().emplace(std::make_pair(date, timer));
141   return timer;
142 }
143
144 /** @brief cancels a timer that was added earlier */
145 void Timer::remove()
146 {
147   simix_timers().erase(handle_);
148   delete this;
149 }
150
151 /** Execute all the tasks that are queued, e.g. `.then()` callbacks of futures. */
152 bool Global::execute_tasks()
153 {
154   xbt_assert(tasksTemp.empty());
155
156   if (tasks.empty())
157     return false;
158
159   do {
160     // We don't want the callbacks to modify the vector we are iterating over:
161     tasks.swap(tasksTemp);
162
163     // Execute all the queued tasks:
164     for (auto& task : tasksTemp)
165       task();
166
167     tasksTemp.clear();
168   } while (not tasks.empty());
169
170   return true;
171 }
172
173 void Global::empty_trash()
174 {
175   while (not actors_to_destroy.empty()) {
176     kernel::actor::ActorImpl* actor = &actors_to_destroy.front();
177     actors_to_destroy.pop_front();
178     XBT_DEBUG("Getting rid of %s (refcount: %d)", actor->get_cname(), actor->get_refcount());
179     intrusive_ptr_release(actor);
180   }
181 #if SIMGRID_HAVE_MC
182   xbt_dynar_reset(dead_actors_vector);
183 #endif
184 }
185 /**
186  * @brief Executes the actors in actors_to_run.
187  *
188  * The actors in actors_to_run are run (in parallel if possible). On exit, actors_to_run is empty, and actors_that_ran
189  * contains the list of actors that just ran.  The two lists are swapped so, be careful when using them before and after
190  * a call to this function.
191  */
192 void Global::run_all_actors()
193 {
194   simix_global->context_factory->run_all();
195
196   actors_to_run.swap(actors_that_ran);
197   actors_to_run.clear();
198 }
199
200 /** Wake up all actors waiting for a Surf action to finish */
201 void Global::wake_all_waiting_actors() const
202 {
203   for (auto const& model : all_existing_models) {
204     kernel::resource::Action* action;
205
206     XBT_DEBUG("Handling the failed actions (if any)");
207     while ((action = model->extract_failed_action())) {
208       XBT_DEBUG("   Handling Action %p", action);
209       if (action->get_activity() != nullptr)
210         kernel::activity::ActivityImplPtr(action->get_activity())->post();
211     }
212     XBT_DEBUG("Handling the terminated actions (if any)");
213     while ((action = model->extract_done_action())) {
214       XBT_DEBUG("   Handling Action %p", action);
215       if (action->get_activity() == nullptr)
216         XBT_DEBUG("probably vcpu's action %p, skip", action);
217       else
218         kernel::activity::ActivityImplPtr(action->get_activity())->post();
219     }
220   }
221 }
222
223 void Global::display_all_actor_status() const
224 {
225   XBT_INFO("%zu actors are still running, waiting for something.", process_list.size());
226   /*  List the actors and their state */
227   XBT_INFO("Legend of the following listing: \"Actor <pid> (<name>@<host>): <status>\"");
228   for (auto const& kv : process_list) {
229     kernel::actor::ActorImpl* actor = kv.second;
230
231     if (actor->waiting_synchro_) {
232       const char* synchro_description = "unknown";
233
234       if (boost::dynamic_pointer_cast<kernel::activity::ExecImpl>(actor->waiting_synchro_) != nullptr)
235         synchro_description = "execution";
236
237       if (boost::dynamic_pointer_cast<kernel::activity::CommImpl>(actor->waiting_synchro_) != nullptr)
238         synchro_description = "communication";
239
240       if (boost::dynamic_pointer_cast<kernel::activity::SleepImpl>(actor->waiting_synchro_) != nullptr)
241         synchro_description = "sleeping";
242
243       if (boost::dynamic_pointer_cast<kernel::activity::RawImpl>(actor->waiting_synchro_) != nullptr)
244         synchro_description = "synchronization";
245
246       if (boost::dynamic_pointer_cast<kernel::activity::IoImpl>(actor->waiting_synchro_) != nullptr)
247         synchro_description = "I/O";
248
249       XBT_INFO("Actor %ld (%s@%s): waiting for %s activity %#zx (%s) in state %d to finish", actor->get_pid(),
250                actor->get_cname(), actor->get_host()->get_cname(), synchro_description,
251                (xbt_log_no_loc ? (size_t)0xDEADBEEF : (size_t)actor->waiting_synchro_.get()),
252                actor->waiting_synchro_->get_cname(), (int)actor->waiting_synchro_->state_);
253     } else {
254       XBT_INFO("Actor %ld (%s@%s)", actor->get_pid(), actor->get_cname(), actor->get_host()->get_cname());
255     }
256   }
257 }
258
259 config::Flag<double> cfg_breakpoint{"debug/breakpoint",
260                                     "When non-negative, raise a SIGTRAP after given (simulated) time",
261                                     -1.0};
262 } // namespace simix
263 } // namespace simgrid
264
265 static simgrid::kernel::actor::ActorCode maestro_code;
266 void SIMIX_set_maestro(void (*code)(void*), void* data)
267 {
268 #ifdef _WIN32
269   XBT_INFO("WARNING, SIMIX_set_maestro is believed to not work on windows. Please help us investigating this issue if you need that feature");
270 #endif
271   maestro_code = std::bind(code, data);
272 }
273
274 /**
275  * @ingroup SIMIX_API
276  * @brief Initialize SIMIX internal data.
277  */
278 void SIMIX_global_init(int *argc, char **argv)
279 {
280 #if SIMGRID_HAVE_MC
281   // The communication initialization is done ASAP.
282   // We need to communicate  initialization of the different layers to the model-checker.
283   simgrid::mc::AppSide::initialize();
284 #endif
285
286   if (simix_global == nullptr) {
287     surf_init(argc, argv); /* Initialize SURF structures */
288
289     simix_global           = std::make_unique<simgrid::simix::Global>();
290     simix_global->maestro_ = nullptr;
291     SIMIX_context_mod_init();
292
293     // Either create a new context with maestro or create
294     // a context object with the current context maestro):
295     simgrid::kernel::actor::create_maestro(maestro_code);
296
297     /* Prepare to display some more info when dying on Ctrl-C pressing */
298     std::signal(SIGINT, inthandler);
299
300 #ifndef _WIN32
301     install_segvhandler();
302 #endif
303     /* register a function to be called by SURF after the environment creation */
304     sg_platf_init();
305     simgrid::s4u::Engine::on_platform_created.connect(surf_presolve);
306   }
307
308   if (simgrid::config::get_value<bool>("debug/clean-atexit"))
309     atexit(SIMIX_clean);
310 }
311
312 int smx_cleaned = 0;
313 /**
314  * @ingroup SIMIX_API
315  * @brief Clean the SIMIX simulation
316  *
317  * This functions remove the memory used by SIMIX
318  */
319 void SIMIX_clean()
320 {
321   if (smx_cleaned)
322     return; // to avoid double cleaning by java and C
323
324   smx_cleaned = 1;
325   XBT_DEBUG("SIMIX_clean called. Simulation's over.");
326   if (not simix_global->actors_to_run.empty() && SIMIX_get_clock() <= 0.0) {
327     XBT_CRITICAL("   ");
328     XBT_CRITICAL("The time is still 0, and you still have processes ready to run.");
329     XBT_CRITICAL("It seems that you forgot to run the simulation that you setup.");
330     xbt_die("Bailing out to avoid that stop-before-start madness. Please fix your code.");
331   }
332
333 #if HAVE_SMPI
334   if (not simix_global->process_list.empty()) {
335     if(smpi_process()->initialized()){
336       xbt_die("Process exited without calling MPI_Finalize - Killing simulation");
337     }else{
338       XBT_WARN("Process called exit when leaving - Skipping cleanups");
339       return;
340     }
341   }
342 #endif
343
344   /* Kill all processes (but maestro) */
345   simix_global->maestro_->kill_all();
346   simix_global->run_all_actors();
347   simix_global->empty_trash();
348
349   /* Exit the SIMIX network module */
350   SIMIX_mailbox_exit();
351
352   while (not simgrid::simix::simix_timers().empty()) {
353     delete simgrid::simix::simix_timers().top().second;
354     simgrid::simix::simix_timers().pop();
355   }
356   /* Free the remaining data structures */
357   simix_global->actors_to_run.clear();
358   simix_global->actors_that_ran.clear();
359   simix_global->actors_to_destroy.clear();
360   simix_global->process_list.clear();
361
362 #if SIMGRID_HAVE_MC
363   xbt_dynar_free(&simix_global->actors_vector);
364   xbt_dynar_free(&simix_global->dead_actors_vector);
365 #endif
366
367   /* Let's free maestro now */
368   delete simix_global->maestro_;
369   simix_global->maestro_ = nullptr;
370
371   /* Finish context module and SURF */
372   SIMIX_context_mod_exit();
373
374   surf_exit();
375
376   simix_global = nullptr;
377 }
378
379 /**
380  * @ingroup SIMIX_API
381  * @brief A clock (in second).
382  *
383  * @return Return the clock.
384  */
385 double SIMIX_get_clock()
386 {
387   if(MC_is_active() || MC_record_replay_is_active()){
388     return MC_process_clock_get(SIMIX_process_self());
389   }else{
390     return surf_get_clock();
391   }
392 }
393
394 /** Handle any pending timer. Returns if something was actually run. */
395 static bool SIMIX_execute_timers()
396 {
397   bool result = false;
398   while (not simgrid::simix::simix_timers().empty() &&
399          SIMIX_get_clock() >= simgrid::simix::simix_timers().top().first) {
400     result = true;
401     // FIXME: make the timers being real callbacks (i.e. provide dispatchers that read and expand the args)
402     smx_timer_t timer = simgrid::simix::simix_timers().top().second;
403     simgrid::simix::simix_timers().pop();
404     timer->callback();
405     delete timer;
406   }
407   return result;
408 }
409
410 /**
411  * @ingroup SIMIX_API
412  * @brief Run the main simulation loop.
413  */
414 void SIMIX_run()
415 {
416   if (MC_record_replay_is_active()) {
417     simgrid::mc::replay(MC_record_path());
418     return;
419   }
420
421   double time = 0;
422
423   do {
424     XBT_DEBUG("New Schedule Round; size(queue)=%zu", simix_global->actors_to_run.size());
425
426     if (simgrid::simix::cfg_breakpoint >= 0.0 && surf_get_clock() >= simgrid::simix::cfg_breakpoint) {
427       XBT_DEBUG("Breakpoint reached (%g)", simgrid::simix::cfg_breakpoint.get());
428       simgrid::simix::cfg_breakpoint = -1.0;
429 #ifdef SIGTRAP
430       std::raise(SIGTRAP);
431 #else
432       std::raise(SIGABRT);
433 #endif
434     }
435
436     simix_global->execute_tasks();
437
438     while (not simix_global->actors_to_run.empty()) {
439       XBT_DEBUG("New Sub-Schedule Round; size(queue)=%zu", simix_global->actors_to_run.size());
440
441       /* Run all processes that are ready to run, possibly in parallel */
442       simix_global->run_all_actors();
443
444       /* answer sequentially and in a fixed arbitrary order all the simcalls that were issued during that sub-round */
445
446       /* WARNING, the order *must* be fixed or you'll jeopardize the simulation reproducibility (see RR-7653) */
447
448       /* Here, the order is ok because:
449        *
450        *   Short proof: only maestro adds stuff to the actors_to_run array, so the execution order of user contexts do
451        *   not impact its order.
452        *
453        *   Long proof: actors remain sorted through an arbitrary (implicit, complex but fixed) order in all cases.
454        *
455        *   - if there is no kill during the simulation, actors remain sorted according by their PID.
456        *     Rationale: This can be proved inductively.
457        *        Assume that actors_to_run is sorted at a beginning of one round (it is at round 0: the deployment file
458        *        is parsed linearly).
459        *        Let's show that it is still so at the end of this round.
460        *        - if an actor is added when being created, that's from maestro. It can be either at startup
461        *          time (and then in PID order), or in response to a process_create simcall. Since simcalls are handled
462        *          in arbitrary order (inductive hypothesis), we are fine.
463        *        - If an actor is added because it's getting killed, its subsequent actions shouldn't matter
464        *        - If an actor gets added to actors_to_run because one of their blocking action constituting the meat
465        *          of a simcall terminates, we're still good. Proof:
466        *          - You are added from ActorImpl::simcall_answer() only. When this function is called depends on the
467        *            resource kind (network, cpu, disk, whatever), but the same arguments hold. Let's take communications
468        *            as an example.
469        *          - For communications, this function is called from SIMIX_comm_finish().
470        *            This function itself don't mess with the order since simcalls are handled in FIFO order.
471        *            The function is called:
472        *            - before the comm starts (invalid parameters, or resource already dead or whatever).
473        *              The order then trivial holds since maestro didn't interrupt its handling of the simcall yet
474        *            - because the communication failed or were canceled after startup. In this case, it's called from
475        *              the function we are in, by the chunk:
476        *                       set = model->states.failed_action_set;
477        *                       while ((synchro = extract(set)))
478        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
479        *              This order is also fixed because it depends of the order in which the surf actions were
480        *              added to the system, and only maestro can add stuff this way, through simcalls.
481        *              We thus use the inductive hypothesis once again to conclude that the order in which synchros are
482        *              popped out of the set does not depend on the user code's execution order.
483        *            - because the communication terminated. In this case, synchros are served in the order given by
484        *                       set = model->states.done_action_set;
485        *                       while ((synchro = extract(set)))
486        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
487        *              and the argument is very similar to the previous one.
488        *            So, in any case, the orders of calls to CommImpl::finish() do not depend on the order in which user
489        *            actors are executed.
490        *          So, in any cases, the orders of actors within actors_to_run do not depend on the order in which
491        *          user actors were executed previously.
492        *     So, if there is no killing in the simulation, the simulation reproducibility is not jeopardized.
493        *   - If there is some actor killings, the order is changed by this decision that comes from user-land
494        *     But this decision may not have been motivated by a situation that were different because the simulation is
495        *     not reproducible.
496        *     So, even the order change induced by the actor killing is perfectly reproducible.
497        *
498        *   So science works, bitches [http://xkcd.com/54/].
499        *
500        *   We could sort the actors_that_ran array completely so that we can describe the order in which simcalls are
501        *   handled (like "according to the PID of issuer"), but it's not mandatory (order is fixed already even if
502        *   unfriendly).
503        *   That would thus be a pure waste of time.
504        */
505
506       for (auto const& actor : simix_global->actors_that_ran) {
507         if (actor->simcall_.call_ != simgrid::simix::Simcall::NONE) {
508           actor->simcall_handle(0);
509         }
510       }
511
512       simix_global->execute_tasks();
513       do {
514         simix_global->wake_all_waiting_actors();
515       } while (simix_global->execute_tasks());
516
517       /* If only daemon processes remain, cancel their actions, mark them to die and reschedule them */
518       if (simix_global->process_list.size() == simix_global->daemons.size())
519         for (auto const& dmon : simix_global->daemons) {
520           XBT_DEBUG("Kill %s", dmon->get_cname());
521           simix_global->maestro_->kill(dmon);
522         }
523     }
524
525     time = simgrid::simix::Timer::next();
526     if (time > -1.0 || not simix_global->process_list.empty()) {
527       XBT_DEBUG("Calling surf_solve");
528       time = surf_solve(time);
529       XBT_DEBUG("Moving time ahead : %g", time);
530     }
531
532     /* Notify all the hosts that have failed */
533     /* FIXME: iterate through the list of failed host and mark each of them */
534     /* as failed. On each host, signal all the running processes with host_fail */
535
536     // Execute timers and tasks until there isn't anything to be done:
537     bool again = false;
538     do {
539       again = SIMIX_execute_timers();
540       if (simix_global->execute_tasks())
541         again = true;
542       simix_global->wake_all_waiting_actors();
543     } while (again);
544
545     /* Clean actors to destroy */
546     simix_global->empty_trash();
547
548     XBT_DEBUG("### time %f, #processes %zu, #to_run %zu", time, simix_global->process_list.size(),
549               simix_global->actors_to_run.size());
550
551     if (time < 0. && simix_global->actors_to_run.empty() && not simix_global->process_list.empty()) {
552       if (simix_global->process_list.size() <= simix_global->daemons.size()) {
553         XBT_CRITICAL("Oops! Daemon actors cannot do any blocking activity (communications, synchronization, etc) "
554                      "once the simulation is over. Please fix your on_exit() functions.");
555       } else {
556         XBT_CRITICAL("Oops! Deadlock or code not perfectly clean.");
557       }
558       simix_global->display_all_actor_status();
559       simgrid::s4u::Engine::on_deadlock();
560       for (auto const& kv : simix_global->process_list) {
561         XBT_DEBUG("Kill %s", kv.second->get_cname());
562         simix_global->maestro_->kill(kv.second);
563       }
564     }
565   } while (time > -1.0 || not simix_global->actors_to_run.empty());
566
567   if (not simix_global->process_list.empty())
568     THROW_IMPOSSIBLE;
569
570   simgrid::s4u::Engine::on_simulation_end();
571 }
572
573 double SIMIX_timer_next() // XBT_ATTRIB_DEPRECATED_v329
574 {
575   return simgrid::simix::Timer::next();
576 }
577
578 smx_timer_t SIMIX_timer_set(double date, void (*callback)(void*), void* arg) // XBT_ATTRIB_DEPRECATED_v329
579 {
580   return simgrid::simix::Timer::set(date, std::bind(callback, arg));
581 }
582
583 /** @brief cancels a timer that was added earlier */
584 void SIMIX_timer_remove(smx_timer_t timer) // XBT_ATTRIB_DEPRECATED_v329
585 {
586   timer->remove();
587 }
588
589 /** @brief Returns the date at which the timer will trigger (or 0 if nullptr timer) */
590 double SIMIX_timer_get_date(smx_timer_t timer) // XBT_ATTRIB_DEPRECATED_v329
591 {
592   return timer ? timer->get_date() : 0;
593 }
594
595 void SIMIX_display_process_status() // XBT_ATTRIB_DEPRECATED_v329
596 {
597   simix_global->display_all_actor_status();
598 }
599
600 int SIMIX_is_maestro()
601 {
602   if (simix_global == nullptr) // SimDag
603     return true;
604   const simgrid::kernel::actor::ActorImpl* self = SIMIX_process_self();
605   return self == nullptr || self == simix_global->maestro_;
606 }