Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
06e64afc333668ecb09a26c7bed1f51538a3aa38
[simgrid.git] / src / simix / ActorImpl.cpp
1 /* Copyright (c) 2007-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 "mc/mc.h"
7 #include "simgrid/Exception.hpp"
8 #include "smx_private.hpp"
9 #include "src/kernel/activity/CommImpl.hpp"
10 #include "src/kernel/activity/ExecImpl.hpp"
11 #include "src/kernel/activity/IoImpl.hpp"
12 #include "src/kernel/activity/SleepImpl.hpp"
13 #include "src/kernel/activity/SynchroRaw.hpp"
14 #include "src/mc/mc_replay.hpp"
15 #include "src/mc/remote/Client.hpp"
16 #include "src/simix/smx_host_private.hpp"
17 #include "src/simix/smx_io_private.hpp"
18 #include "src/simix/smx_synchro_private.hpp"
19 #include "src/surf/HostImpl.hpp"
20 #include "src/surf/cpu_interface.hpp"
21
22 #include <boost/range/algorithm.hpp>
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_process, simix, "Logging specific to SIMIX (process)");
25
26 static unsigned long simix_process_maxpid = 0;
27
28 /**
29  * @brief Returns the current agent.
30  *
31  * This functions returns the currently running SIMIX process.
32  *
33  * @return The SIMIX process
34  */
35 smx_actor_t SIMIX_process_self()
36 {
37   smx_context_t self_context = simgrid::kernel::context::Context::self();
38
39   return (self_context != nullptr) ? self_context->process() : nullptr;
40 }
41
42 /**
43  * @brief Returns whether a process has pending asynchronous communications.
44  * @return true if there are asynchronous communications in this process
45  */
46 int SIMIX_process_has_pending_comms(smx_actor_t process) {
47
48   return process->comms.size() > 0;
49 }
50
51 /**
52  * @brief Moves a process to the list of processes to destroy.
53  */
54 void SIMIX_process_cleanup(smx_actor_t process)
55 {
56   XBT_DEBUG("Cleanup process %s (%p), waiting synchro %p", process->get_cname(), process,
57             process->waiting_synchro.get());
58
59   process->finished_ = true;
60   SIMIX_process_on_exit_runall(process);
61
62   /* Unregister from the kill timer if any */
63   if (process->kill_timer != nullptr) {
64     SIMIX_timer_remove(process->kill_timer);
65     process->kill_timer = nullptr;
66   }
67
68   simix_global->mutex.lock();
69
70   /* cancel non-blocking communications */
71   while (not process->comms.empty()) {
72     smx_activity_t synchro = process->comms.front();
73     process->comms.pop_front();
74     simgrid::kernel::activity::CommImplPtr comm =
75         boost::static_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
76
77     /* make sure no one will finish the comm after this process is destroyed,
78      * because src_proc or dst_proc would be an invalid pointer */
79
80     if (comm->src_proc == process) {
81       XBT_DEBUG("Found an unfinished send comm %p (detached = %d), state %d, src = %p, dst = %p", comm.get(),
82                 comm->detached, (int)comm->state_, comm->src_proc, comm->dst_proc);
83       comm->src_proc = nullptr;
84
85     } else if (comm->dst_proc == process) {
86       XBT_DEBUG("Found an unfinished recv comm %p, state %d, src = %p, dst = %p", comm.get(), (int)comm->state_,
87                 comm->src_proc, comm->dst_proc);
88       comm->dst_proc = nullptr;
89
90       if (comm->detached && comm->src_proc != nullptr) {
91         /* the comm will be freed right now, remove it from the sender */
92         comm->src_proc->comms.remove(comm);
93       }
94     } else {
95       xbt_die("Communication synchro %p is in my list but I'm not the sender nor the receiver", synchro.get());
96     }
97     comm->cancel();
98   }
99
100   XBT_DEBUG("%s@%s(%ld) should not run anymore", process->get_cname(), process->iface()->get_host()->get_cname(),
101             process->pid_);
102   simix_global->process_list.erase(process->pid_);
103   if (process->host_ && process->host_process_list_hook.is_linked())
104     simgrid::xbt::intrusive_erase(process->host_->pimpl_->process_list_, *process);
105   if (not process->smx_destroy_list_hook.is_linked()) {
106 #if SIMGRID_HAVE_MC
107     xbt_dynar_push_as(simix_global->dead_actors_vector, smx_actor_t, process);
108 #endif
109     simix_global->process_to_destroy.push_back(*process);
110   }
111   process->context_->iwannadie = false;
112
113   simix_global->mutex.unlock();
114 }
115
116 /**
117  * Garbage collection
118  *
119  * Should be called some time to time to free the memory allocated for processes that have finished (or killed).
120  */
121 void SIMIX_process_empty_trash()
122 {
123   while (not simix_global->process_to_destroy.empty()) {
124     smx_actor_t process = &simix_global->process_to_destroy.front();
125     simix_global->process_to_destroy.pop_front();
126     XBT_DEBUG("Getting rid of %p",process);
127     intrusive_ptr_release(process);
128   }
129 #if SIMGRID_HAVE_MC
130   xbt_dynar_reset(simix_global->dead_actors_vector);
131 #endif
132 }
133
134 namespace simgrid {
135
136 namespace kernel {
137 namespace actor {
138
139 ActorImpl::ActorImpl(simgrid::xbt::string name, simgrid::s4u::Host* host) : name_(name), host_(host), piface_(this)
140 {
141   pid_ = simix_process_maxpid++;
142   simcall.issuer = this;
143 }
144
145 ActorImpl::~ActorImpl()
146 {
147   delete this->context_;
148 }
149
150 static void dying_daemon(int /*exit_status*/, void* data)
151 {
152   std::vector<ActorImpl*>* vect = &simix_global->daemons;
153
154   auto it = std::find(vect->begin(), vect->end(), static_cast<ActorImpl*>(data));
155   xbt_assert(it != vect->end(), "The dying daemon is not a daemon after all. Please report that bug.");
156
157   /* Don't move the whole content since we don't really care about the order */
158   std::swap(*it, vect->back());
159   vect->pop_back();
160 }
161
162 /** This process will be terminated automatically when the last non-daemon process finishes */
163 void ActorImpl::daemonize()
164 {
165   if (not daemon_) {
166     daemon_ = true;
167     simix_global->daemons.push_back(this);
168     SIMIX_process_on_exit(this, dying_daemon, this);
169   }
170 }
171
172 simgrid::s4u::Actor* ActorImpl::restart()
173 {
174   XBT_DEBUG("Restarting process %s on %s", get_cname(), host_->get_cname());
175
176   // retrieve the arguments of the old process
177   simgrid::kernel::actor::ProcessArg arg = ProcessArg(host_, this);
178
179   // kill the old process
180   SIMIX_process_kill(this, (this == simix_global->maestro_process) ? this : SIMIX_process_self());
181
182   // start the new process
183   ActorImpl* actor =
184       SIMIX_process_create(arg.name, std::move(arg.code), arg.data, arg.host, arg.properties.get(), nullptr);
185   simcall_process_set_kill_time(actor, arg.kill_time);
186   actor->set_auto_restart(arg.auto_restart);
187
188   return actor->ciface();
189 }
190
191 smx_activity_t ActorImpl::suspend(ActorImpl* issuer)
192 {
193   if (suspended_) {
194     XBT_DEBUG("Actor '%s' is already suspended", get_cname());
195     return nullptr;
196   }
197
198   suspended_ = true;
199
200   /* If we are suspending another actor that is waiting on a sync, suspend its synchronization. */
201   if (this != issuer) {
202     if (waiting_synchro)
203       waiting_synchro->suspend();
204     /* If the other actor is not waiting, its suspension is delayed to when the actor is rescheduled. */
205
206     return nullptr;
207   } else {
208     return SIMIX_execution_start("suspend", "", 0.0, 1.0, 0.0, this->host_);
209   }
210 }
211
212 void ActorImpl::resume()
213 {
214   XBT_IN("process = %p", this);
215
216   if (context_->iwannadie) {
217     XBT_VERB("Ignoring request to suspend an actor that is currently dying.");
218     return;
219   }
220
221   if (not suspended_)
222     return;
223   suspended_ = false;
224
225   /* resume the synchronization that was blocking the resumed actor. */
226   if (waiting_synchro)
227     waiting_synchro->resume();
228
229   XBT_OUT();
230 }
231
232 smx_activity_t ActorImpl::sleep(double duration)
233 {
234   if (host_->is_off())
235     throw_exception(std::make_exception_ptr(simgrid::HostFailureException(
236         XBT_THROW_POINT, std::string("Host ") + std::string(host_->get_cname()) + " failed, you cannot sleep there.")));
237
238   simgrid::kernel::activity::SleepImpl* synchro = new simgrid::kernel::activity::SleepImpl();
239   synchro->host                                 = host_;
240   synchro->surf_sleep                           = host_->pimpl_cpu->sleep(duration);
241   synchro->surf_sleep->set_data(synchro);
242   XBT_DEBUG("Create sleep synchronization %p", synchro);
243
244   return synchro;
245 }
246
247 void ActorImpl::throw_exception(std::exception_ptr e)
248 {
249   exception = e;
250
251   if (suspended_)
252     resume();
253
254   /* cancel the blocking synchro if any */
255   if (waiting_synchro) {
256
257     simgrid::kernel::activity::ExecImplPtr exec =
258         boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(waiting_synchro);
259     if (exec != nullptr && exec->surf_action_)
260       exec->surf_action_->cancel();
261
262     simgrid::kernel::activity::CommImplPtr comm =
263         boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(waiting_synchro);
264     if (comm != nullptr) {
265       comms.remove(comm);
266       comm->cancel();
267     }
268
269     simgrid::kernel::activity::SleepImplPtr sleep =
270         boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(waiting_synchro);
271     if (sleep != nullptr) {
272       SIMIX_process_sleep_destroy(waiting_synchro);
273       if (std::find(begin(simix_global->process_to_run), end(simix_global->process_to_run), this) ==
274               end(simix_global->process_to_run) &&
275           this != SIMIX_process_self()) {
276         XBT_DEBUG("Inserting %s in the to_run list", get_cname());
277         simix_global->process_to_run.push_back(this);
278       }
279     }
280
281     simgrid::kernel::activity::RawImplPtr raw =
282         boost::dynamic_pointer_cast<simgrid::kernel::activity::RawImpl>(waiting_synchro);
283     if (raw != nullptr) {
284       SIMIX_synchro_stop_waiting(this, &simcall);
285     }
286
287     simgrid::kernel::activity::IoImplPtr io =
288         boost::dynamic_pointer_cast<simgrid::kernel::activity::IoImpl>(waiting_synchro);
289     if (io != nullptr) {
290       delete io.get();
291     }
292   }
293   waiting_synchro = nullptr;
294 }
295
296 void create_maestro(simgrid::simix::ActorCode code)
297 {
298   /* Create maestro process and initialize it */
299   smx_actor_t maestro = new simgrid::kernel::actor::ActorImpl(simgrid::xbt::string(""), /*host*/ nullptr);
300
301   if (not code) {
302     maestro->context_ = SIMIX_context_new(simgrid::simix::ActorCode(), nullptr, maestro);
303   } else {
304     if (not simix_global)
305       xbt_die("simix is not initialized, please call MSG_init first");
306     maestro->context_ = simix_global->context_factory->create_maestro(code, maestro);
307   }
308
309   maestro->simcall.issuer = maestro;
310   simix_global->maestro_process = maestro;
311 }
312
313 } // namespace actor
314 }
315 }
316
317 /** @brief Creates and runs the maestro process */
318 void SIMIX_maestro_create(void (*code)(void*), void* data)
319 {
320   simgrid::kernel::actor::create_maestro(std::bind(code, data));
321 }
322
323 /**
324  * @brief Internal function to create a process.
325  *
326  * This function actually creates the process.
327  * It may be called when a SIMCALL_PROCESS_CREATE simcall occurs,
328  * or directly for SIMIX internal purposes. The sure thing is that it's called from maestro context.
329  *
330  * @return the process created
331  */
332 smx_actor_t SIMIX_process_create(std::string name, simgrid::simix::ActorCode code, void* data, simgrid::s4u::Host* host,
333                                  std::unordered_map<std::string, std::string>* properties, smx_actor_t parent_process)
334 {
335
336   XBT_DEBUG("Start actor %s@'%s'", name.c_str(), host->get_cname());
337
338   if (host->is_off()) {
339     XBT_WARN("Cannot launch process '%s' on failed host '%s'", name.c_str(), host->get_cname());
340     return nullptr;
341   }
342
343   smx_actor_t process = new simgrid::kernel::actor::ActorImpl(simgrid::xbt::string(name), host);
344
345   xbt_assert(code && host != nullptr, "Invalid parameters");
346   /* Process data */
347   process->set_user_data(data);
348   process->code = code;
349
350   if (parent_process != nullptr)
351     process->ppid_ = parent_process->pid_;
352
353   XBT_VERB("Create context %s", process->get_cname());
354   process->context_ = SIMIX_context_new(std::move(code), &SIMIX_process_cleanup, process);
355
356   /* Add properties */
357   if (properties != nullptr)
358     for (auto const& kv : *properties)
359       process->set_property(kv.first, kv.second);
360
361   /* Add the process to its host's process list */
362   host->pimpl_->process_list_.push_back(*process);
363
364   XBT_DEBUG("Start context '%s'", process->get_cname());
365
366   /* Now insert it in the global process list and in the process to run list */
367   simix_global->process_list[process->pid_] = process;
368   XBT_DEBUG("Inserting %s(%s) in the to_run list", process->get_cname(), host->get_cname());
369   simix_global->process_to_run.push_back(process);
370   intrusive_ptr_add_ref(process);
371
372   /* The on_creation() signal must be delayed until there, where the pid and everything is set */
373   simgrid::s4u::Actor::on_creation(process->iface());
374
375   return process;
376 }
377
378 smx_actor_t SIMIX_process_attach(const char* name, void* data, const char* hostname,
379                                  std::unordered_map<std::string, std::string>* properties, smx_actor_t parent_process)
380 {
381   // This is mostly a copy/paste from SIMIX_process_new(),
382   // it'd be nice to share some code between those two functions.
383
384   sg_host_t host = sg_host_by_name(hostname);
385   XBT_DEBUG("Attach process %s on host '%s'", name, hostname);
386
387   if (host->is_off()) {
388     XBT_WARN("Cannot launch process '%s' on failed host '%s'", name, hostname);
389     return nullptr;
390   }
391
392   smx_actor_t actor = new simgrid::kernel::actor::ActorImpl(simgrid::xbt::string(name), host);
393   /* Actor data */
394   actor->set_user_data(data);
395   actor->code = nullptr;
396
397   if (parent_process != nullptr)
398     actor->ppid_ = parent_process->pid_;
399
400   XBT_VERB("Create context %s", actor->get_cname());
401   xbt_assert(simix_global != nullptr, "simix is not initialized, please call MSG_init first");
402   actor->context_ = simix_global->context_factory->attach(&SIMIX_process_cleanup, actor);
403
404   /* Add properties */
405   if (properties != nullptr)
406     for (auto const& kv : *properties)
407       actor->set_property(kv.first, kv.second);
408
409   /* Add the process to it's host process list */
410   host->pimpl_->process_list_.push_back(*actor);
411
412   /* Now insert it in the global process list and in the process to run list */
413   simix_global->process_list[actor->pid_] = actor;
414   XBT_DEBUG("Inserting %s(%s) in the to_run list", actor->get_cname(), host->get_cname());
415   simix_global->process_to_run.push_back(actor);
416   intrusive_ptr_add_ref(actor);
417
418   auto* context = dynamic_cast<simgrid::kernel::context::AttachContext*>(actor->context_);
419   xbt_assert(nullptr != context, "Not a suitable context");
420   context->attach_start();
421
422   /* The on_creation() signal must be delayed until there, where the pid and everything is set */
423   simgrid::s4u::ActorPtr tmp = actor->iface(); // Passing this directly to on_creation will lead to crashes
424   simgrid::s4u::Actor::on_creation(tmp);
425
426   return actor;
427 }
428
429 void SIMIX_process_detach()
430 {
431   auto* context = dynamic_cast<simgrid::kernel::context::AttachContext*>(simgrid::kernel::context::Context::self());
432   if (context == nullptr)
433     xbt_die("Not a suitable context");
434
435   SIMIX_process_cleanup(context->process());
436   context->attach_stop();
437 }
438
439 /**
440  * @brief Executes the processes from simix_global->process_to_run.
441  *
442  * The processes of simix_global->process_to_run are run (in parallel if
443  * possible).  On exit, simix_global->process_to_run is empty, and
444  * simix_global->process_that_ran contains the list of processes that just ran.
445  * The two lists are swapped so, be careful when using them before and after a
446  * call to this function.
447  */
448 void SIMIX_process_runall()
449 {
450   SIMIX_context_runall();
451
452   simix_global->process_to_run.swap(simix_global->process_that_ran);
453   simix_global->process_to_run.clear();
454 }
455
456 /**
457  * @brief Internal function to kill a SIMIX process.
458  *
459  * This function may be called when a SIMCALL_PROCESS_KILL simcall occurs,
460  * or directly for SIMIX internal purposes.
461  *
462  * @param actor poor victim
463  * @param issuer the actor which has sent the PROCESS_KILL. Important to not schedule twice the same actor.
464  */
465 void SIMIX_process_kill(smx_actor_t actor, smx_actor_t issuer)
466 {
467
468   if (actor->finished_) {
469     XBT_DEBUG("Ignoring request to kill process %s@%s that is already dead", actor->get_cname(),
470               actor->host_->get_cname());
471     return;
472   }
473
474   XBT_DEBUG("Actor '%s'@%s is killing actor '%s'@%s", issuer == nullptr ? "(null)" : issuer->get_cname(),
475             (issuer == nullptr || issuer->host_ == nullptr ? "(null)" : issuer->host_->get_cname()), actor->get_cname(),
476             actor->host_->get_cname());
477
478   actor->context_->iwannadie = true;
479   actor->blocked_            = false;
480   actor->suspended_          = false;
481   actor->exception           = nullptr;
482
483   // Forcefully kill the actor if its host is turned off. Not an HostFailureException because you should not survive that
484   if (actor->host_->is_off()) {
485     /* HORRIBLE HACK: Don't throw an StopRequest exception in Java, because it breaks sometimes.
486      *
487      * It seems to break for the actors started from the Java world, with new Process()
488      * while it works for the ones started from the C world, with the deployment file.
489      * When it happens, the simulation stops brutally with a message "untrapped exception StopRequest".
490      *
491      * From what I understand, it works for the native actors because they have a nice try/catch block around their main
492      * but I fail to have something like that for pure Java actors. That's probably a story of C->Java vs Java->C
493      * calling conventions. The right solution may be to have try/catch(StopRequest) blocks around each native call in
494      * JNI. ie, protect every Java->C++ call from C++ exceptions. But this sounds long and painful to do before we
495      * switch to an automatic generator such as SWIG. For now, we don't throw here that exception that we sometimes fail
496      * to catch.
497      *
498      * One of the unfortunate outcome is that the threads started from the deployment file are not stopped anymore.
499      * Or maybe this is the actors stopping gracefully as opposed to the killed ones? Or maybe this is absolutely all
500      * actors of the Java simulation? I'm not sure. Anyway. Because of them, the simulation hangs at the end, waiting
501      * for them to stop but they won't. The current answer to that is very brutal:
502      * we do a "exit(0)" to kill the JVM from the C code after the call to MSG_run(). Definitely unpleasant.
503      */
504
505     if (simgrid::kernel::context::factory_initializer == nullptr) // Only Java sets a factory_initializer, for now
506       actor->throw_exception(std::make_exception_ptr(simgrid::kernel::context::Context::StopRequest("host failed")));
507   }
508
509   /* destroy the blocking synchro if any */
510   if (actor->waiting_synchro != nullptr) {
511
512     simgrid::kernel::activity::ExecImplPtr exec =
513         boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(actor->waiting_synchro);
514     simgrid::kernel::activity::CommImplPtr comm =
515         boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(actor->waiting_synchro);
516     simgrid::kernel::activity::SleepImplPtr sleep =
517         boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(actor->waiting_synchro);
518     simgrid::kernel::activity::RawImplPtr raw =
519         boost::dynamic_pointer_cast<simgrid::kernel::activity::RawImpl>(actor->waiting_synchro);
520     simgrid::kernel::activity::IoImplPtr io =
521         boost::dynamic_pointer_cast<simgrid::kernel::activity::IoImpl>(actor->waiting_synchro);
522
523     if (exec != nullptr) {
524       if (exec->surf_action_) {
525         exec->surf_action_->cancel();
526         exec->surf_action_->unref();
527         exec->surf_action_ = nullptr;
528       }
529     } else if (comm != nullptr) {
530       actor->comms.remove(actor->waiting_synchro);
531       comm->cancel();
532       // Remove first occurrence of &process->simcall:
533       auto i = boost::range::find(actor->waiting_synchro->simcalls_, &actor->simcall);
534       if (i != actor->waiting_synchro->simcalls_.end())
535         actor->waiting_synchro->simcalls_.remove(&actor->simcall);
536     } else if (sleep != nullptr) {
537       if (sleep->surf_sleep)
538         sleep->surf_sleep->cancel();
539       sleep->post();
540     } else if (raw != nullptr) {
541       SIMIX_synchro_stop_waiting(actor, &actor->simcall);
542
543     } else if (io != nullptr) {
544       delete io.get();
545     } else {
546       simgrid::kernel::activity::ActivityImplPtr activity = actor->waiting_synchro;
547       xbt_die("Activity %s is of unknown type %s", activity->name_.c_str(),
548               simgrid::xbt::demangle(typeid(activity).name()).get());
549     }
550
551     actor->waiting_synchro = nullptr;
552   }
553   if (std::find(begin(simix_global->process_to_run), end(simix_global->process_to_run), actor) ==
554           end(simix_global->process_to_run) &&
555       actor != issuer) {
556     XBT_DEBUG("Inserting %s in the to_run list", actor->get_cname());
557     simix_global->process_to_run.push_back(actor);
558   }
559 }
560
561 /** @deprecated When this function gets removed, also remove the xbt_ex class, that is only there to help users to
562  * transition */
563 void SIMIX_process_throw(smx_actor_t actor, xbt_errcat_t cat, int value, const char* msg)
564 {
565   SMX_EXCEPTION(actor, cat, value, msg);
566
567   if (actor->suspended_)
568     actor->resume();
569
570   /* cancel the blocking synchro if any */
571   if (actor->waiting_synchro) {
572
573     simgrid::kernel::activity::ExecImplPtr exec =
574         boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(actor->waiting_synchro);
575     if (exec != nullptr && exec->surf_action_)
576       exec->surf_action_->cancel();
577
578     simgrid::kernel::activity::CommImplPtr comm =
579         boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(actor->waiting_synchro);
580     if (comm != nullptr) {
581       actor->comms.remove(comm);
582       comm->cancel();
583     }
584
585     simgrid::kernel::activity::SleepImplPtr sleep =
586         boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(actor->waiting_synchro);
587     if (sleep != nullptr) {
588       SIMIX_process_sleep_destroy(actor->waiting_synchro);
589       if (std::find(begin(simix_global->process_to_run), end(simix_global->process_to_run), actor) ==
590               end(simix_global->process_to_run) &&
591           actor != SIMIX_process_self()) {
592         XBT_DEBUG("Inserting %s in the to_run list", actor->get_cname());
593         simix_global->process_to_run.push_back(actor);
594       }
595     }
596
597     simgrid::kernel::activity::RawImplPtr raw =
598         boost::dynamic_pointer_cast<simgrid::kernel::activity::RawImpl>(actor->waiting_synchro);
599     if (raw != nullptr) {
600       SIMIX_synchro_stop_waiting(actor, &actor->simcall);
601     }
602
603     simgrid::kernel::activity::IoImplPtr io =
604         boost::dynamic_pointer_cast<simgrid::kernel::activity::IoImpl>(actor->waiting_synchro);
605     if (io != nullptr) {
606       delete io.get();
607     }
608   }
609   actor->waiting_synchro = nullptr;
610 }
611
612 /**
613  * @brief Kills all running processes.
614  * @param issuer this one will not be killed
615  */
616 void SIMIX_process_killall(smx_actor_t issuer)
617 {
618   for (auto const& kv : simix_global->process_list)
619     if (kv.second != issuer)
620       SIMIX_process_kill(kv.second, issuer);
621 }
622
623 void SIMIX_process_change_host(smx_actor_t actor, sg_host_t dest)
624 {
625   xbt_assert((actor != nullptr), "Invalid parameters");
626   simgrid::xbt::intrusive_erase(actor->host_->pimpl_->process_list_, *actor);
627   actor->host_ = dest;
628   dest->pimpl_->process_list_.push_back(*actor);
629 }
630
631 void simcall_HANDLER_process_suspend(smx_simcall_t simcall, smx_actor_t actor)
632 {
633   smx_activity_t sync_suspend = actor->suspend(simcall->issuer);
634
635   if (actor != simcall->issuer) {
636     SIMIX_simcall_answer(simcall);
637   } else {
638     sync_suspend->simcalls_.push_back(simcall);
639     actor->waiting_synchro = sync_suspend;
640     actor->waiting_synchro->suspend();
641   }
642   /* If we are suspending ourselves, then just do not finish the simcall now */
643 }
644
645 int SIMIX_process_get_maxpid() {
646   return simix_process_maxpid;
647 }
648
649 int SIMIX_process_count()
650 {
651   return simix_global->process_list.size();
652 }
653
654 void* SIMIX_process_self_get_data()
655 {
656   smx_actor_t self = SIMIX_process_self();
657
658   if (self == nullptr) {
659     return nullptr;
660   }
661   return self->get_user_data();
662 }
663
664 void SIMIX_process_self_set_data(void *data)
665 {
666   SIMIX_process_self()->set_user_data(data);
667 }
668
669
670 /* needs to be public and without simcall because it is called
671    by exceptions and logging events */
672 const char* SIMIX_process_self_get_name() {
673
674   smx_actor_t process = SIMIX_process_self();
675   if (process == nullptr || process == simix_global->maestro_process)
676     return "maestro";
677
678   return process->get_cname();
679 }
680
681 void simcall_HANDLER_process_join(smx_simcall_t simcall, smx_actor_t process, double timeout)
682 {
683   if (process->finished_) {
684     // The joined process is already finished, just wake up the issuer process right away
685     simcall_process_sleep__set__result(simcall, SIMIX_DONE);
686     SIMIX_simcall_answer(simcall);
687     return;
688   }
689   smx_activity_t sync = SIMIX_process_join(simcall->issuer, process, timeout);
690   sync->simcalls_.push_back(simcall);
691   simcall->issuer->waiting_synchro = sync;
692 }
693
694 smx_activity_t SIMIX_process_join(smx_actor_t issuer, smx_actor_t process, double timeout)
695 {
696   smx_activity_t res = issuer->sleep(timeout);
697   intrusive_ptr_add_ref(res.get());
698   SIMIX_process_on_exit(process,
699                         [](int, void* arg) {
700                           auto sleep = static_cast<simgrid::kernel::activity::SleepImpl*>(arg);
701                           if (sleep->surf_sleep)
702                             sleep->surf_sleep->finish(simgrid::kernel::resource::Action::State::FINISHED);
703                           intrusive_ptr_release(sleep);
704                         },
705                         res.get());
706   return res;
707 }
708
709 void simcall_HANDLER_process_sleep(smx_simcall_t simcall, double duration)
710 {
711   if (MC_is_active() || MC_record_replay_is_active()) {
712     MC_process_clock_add(simcall->issuer, duration);
713     simcall_process_sleep__set__result(simcall, SIMIX_DONE);
714     SIMIX_simcall_answer(simcall);
715     return;
716   }
717   smx_activity_t sync = simcall->issuer->sleep(duration);
718   sync->simcalls_.push_back(simcall);
719   simcall->issuer->waiting_synchro = sync;
720 }
721
722 void SIMIX_process_sleep_destroy(smx_activity_t synchro)
723 {
724   XBT_DEBUG("Destroy sleep synchro %p", synchro.get());
725   simgrid::kernel::activity::SleepImplPtr sleep =
726       boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(synchro);
727
728   if (sleep->surf_sleep) {
729     sleep->surf_sleep->unref();
730     sleep->surf_sleep = nullptr;
731   }
732 }
733
734 /**
735  * @brief Calling this function makes the process to yield.
736  *
737  * Only the current process can call this function, giving back the control to maestro.
738  *
739  * @param self the current process
740  */
741 void SIMIX_process_yield(smx_actor_t self)
742 {
743   XBT_DEBUG("Yield actor '%s'", self->get_cname());
744
745   /* Go into sleep and return control to maestro */
746   self->context_->suspend();
747
748   /* Ok, maestro returned control to us */
749   XBT_DEBUG("Control returned to me: '%s'", self->get_cname());
750
751   if (self->context_->iwannadie) {
752     XBT_DEBUG("I wanna die!");
753     self->finished_ = true;
754     /* execute the on_exit functions */
755     SIMIX_process_on_exit_runall(self);
756
757     if (self->auto_restart_ && self->host_->is_off() &&
758         watched_hosts.find(self->host_->get_cname()) == watched_hosts.end()) {
759       XBT_DEBUG("Push host %s to watched_hosts because it's off and %s needs to restart", self->host_->get_cname(),
760                 self->get_cname());
761       watched_hosts.insert(self->host_->get_cname());
762     }
763
764     XBT_DEBUG("Process %s@%s is dead", self->get_cname(), self->host_->get_cname());
765     self->context_->stop();
766     xbt_backtrace_display_current();
767     xbt_die("I should be dead by now.");
768   }
769
770   if (self->suspended_) {
771     XBT_DEBUG("Hey! I'm suspended.");
772     xbt_assert(self->exception != nullptr, "Gasp! This exception may be lost by subsequent calls.");
773     self->suspended_ = false;
774     self->suspend(self);
775   }
776
777   if (self->exception != nullptr) {
778     XBT_DEBUG("Wait, maestro left me an exception");
779     std::exception_ptr exception = std::move(self->exception);
780     self->exception = nullptr;
781     std::rethrow_exception(std::move(exception));
782   }
783
784   if (SMPI_switch_data_segment && not self->finished_) {
785     SMPI_switch_data_segment(self->iface());
786   }
787 }
788
789 /** @brief Returns the list of processes to run. */
790 const std::vector<smx_actor_t>& simgrid::simix::process_get_runnable()
791 {
792   return simix_global->process_to_run;
793 }
794
795 /** @brief Returns the process from PID. */
796 smx_actor_t SIMIX_process_from_PID(aid_t PID)
797 {
798   auto actor = simix_global->process_list.find(PID);
799   return actor == simix_global->process_list.end() ? nullptr : actor->second;
800 }
801
802 void SIMIX_process_on_exit_runall(smx_actor_t actor)
803 {
804   simgrid::s4u::Actor::on_destruction(actor->iface());
805   smx_process_exit_status_t exit_status = (actor->context_->iwannadie) ? SMX_EXIT_FAILURE : SMX_EXIT_SUCCESS;
806   while (not actor->on_exit.empty()) {
807     s_smx_process_exit_fun_t exit_fun = actor->on_exit.back();
808     actor->on_exit.pop_back();
809     (exit_fun.fun)(exit_status, exit_fun.arg);
810   }
811 }
812
813 void SIMIX_process_on_exit(smx_actor_t actor, int_f_pvoid_pvoid_t fun, void* data)
814 {
815   SIMIX_process_on_exit(actor, [fun](int a, void* b) { fun((void*)(intptr_t)a, b); }, data);
816 }
817
818 void SIMIX_process_on_exit(smx_actor_t actor, std::function<void(int, void*)> fun, void* data)
819 {
820   xbt_assert(actor, "current process not found: are you in maestro context ?");
821
822   actor->on_exit.emplace_back(s_smx_process_exit_fun_t{fun, data});
823 }
824
825 /** @brief Restart a process, starting it again from the beginning. */
826 /**
827  * @ingroup simix_process_management
828  * @brief Creates and runs a new SIMIX process.
829  *
830  * The structure and the corresponding thread are created and put in the list of ready processes.
831  *
832  * @param name a name for the process. It is for user-level information and can be nullptr.
833  * @param code the main function of the process
834  * @param data a pointer to any data one may want to attach to the new object. It is for user-level information and can
835  * be nullptr.
836  * It can be retrieved with the method ActorImpl::getUserData().
837  * @param host where the new agent is executed.
838  * @param properties the properties of the process
839  */
840 smx_actor_t simcall_process_create(std::string name, simgrid::simix::ActorCode code, void* data, sg_host_t host,
841                                    std::unordered_map<std::string, std::string>* properties)
842 {
843   smx_actor_t self = SIMIX_process_self();
844   return simgrid::simix::simcall([name, code, data, host, properties, self] {
845     return SIMIX_process_create(name, std::move(code), data, host, properties, self);
846   });
847 }