Logo AND Algorithmique Numérique Distribuée

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