Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix return type for get_maxpid().
[simgrid.git] / src / kernel / actor / ActorImpl.cpp
1 /* Copyright (c) 2007-2020. 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 "simgrid/s4u/Actor.hpp"
9 #include "simgrid/s4u/Exec.hpp"
10 #include "src/kernel/activity/CommImpl.hpp"
11 #include "src/kernel/activity/ExecImpl.hpp"
12 #include "src/kernel/activity/IoImpl.hpp"
13 #include "src/kernel/activity/SleepImpl.hpp"
14 #include "src/kernel/activity/SynchroRaw.hpp"
15 #include "src/mc/mc_replay.hpp"
16 #include "src/mc/remote/AppSide.hpp"
17 #include "src/simix/smx_private.hpp"
18 #include "src/surf/HostImpl.hpp"
19 #include "src/surf/cpu_interface.hpp"
20
21 #include <boost/range/algorithm.hpp>
22 #include <utility>
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_process, simix, "Logging specific to SIMIX (process)");
25
26 /**
27  * @brief Returns the current agent.
28  *
29  * This functions returns the currently running SIMIX process.
30  *
31  * @return The SIMIX process
32  */
33 smx_actor_t SIMIX_process_self()
34 {
35   return simgrid::kernel::actor::ActorImpl::self();
36 }
37
38 namespace simgrid {
39 namespace kernel {
40 namespace actor {
41
42 static unsigned long maxpid = 0;
43 unsigned long get_maxpid()
44 {
45   return maxpid;
46 }
47
48 ActorImpl* ActorImpl::self()
49 {
50   const context::Context* self_context = context::Context::self();
51
52   return (self_context != nullptr) ? self_context->get_actor() : nullptr;
53 }
54
55 ActorImpl::ActorImpl(xbt::string name, s4u::Host* host) : host_(host), name_(std::move(name)), piface_(this)
56 {
57   pid_            = maxpid++;
58   simcall_.issuer_ = this;
59   stacksize_      = smx_context_stack_size;
60 }
61
62 ActorImpl::~ActorImpl()
63 {
64   if (simix_global != nullptr && this != simix_global->maestro_)
65     s4u::Actor::on_destruction(*get_ciface());
66 }
67
68 /* Become an actor in the simulation
69  *
70  * Currently this can only be called by the main thread (once) and only work with some thread factories
71  * (currently ThreadContextFactory).
72  *
73  * In the future, it might be extended in order to attach other threads created by a third party library.
74  */
75
76 ActorImplPtr ActorImpl::attach(const std::string& name, void* data, s4u::Host* host,
77                                const std::unordered_map<std::string, std::string>* properties)
78 {
79   // This is mostly a copy/paste from create(), it'd be nice to share some code between those two functions.
80
81   XBT_DEBUG("Attach actor %s on host '%s'", name.c_str(), host->get_cname());
82
83   if (not host->is_on()) {
84     XBT_WARN("Cannot attach actor '%s' on failed host '%s'", name.c_str(), host->get_cname());
85     throw HostFailureException(XBT_THROW_POINT, "Cannot attach actor on failed host.");
86   }
87
88   auto* actor = new ActorImpl(xbt::string(name), host);
89   /* Actor data */
90   actor->set_user_data(data);
91   actor->code_ = nullptr;
92
93   XBT_VERB("Create context %s", actor->get_cname());
94   xbt_assert(simix_global != nullptr, "simix is not initialized, please call MSG_init first");
95   actor->context_.reset(simix_global->context_factory->attach(actor));
96
97   /* Add properties */
98   if (properties != nullptr)
99     actor->set_properties(*properties);
100
101   /* Add the actor to it's host actor list */
102   host->pimpl_->add_actor(actor);
103
104   /* Now insert it in the global actor list and in the actors to run list */
105   simix_global->process_list[actor->get_pid()] = actor;
106   XBT_DEBUG("Inserting [%p] %s(%s) in the to_run list", actor, actor->get_cname(), host->get_cname());
107   simix_global->actors_to_run.push_back(actor);
108   intrusive_ptr_add_ref(actor);
109
110   auto* context = dynamic_cast<context::AttachContext*>(actor->context_.get());
111   xbt_assert(nullptr != context, "Not a suitable context");
112   context->attach_start();
113
114   /* The on_creation() signal must be delayed until there, where the pid and everything is set */
115   s4u::Actor::on_creation(*actor->get_ciface());
116
117   return ActorImplPtr(actor);
118 }
119 /** @brief Detach an actor attached with `attach()`
120  *
121  *  This is called when the current actor has finished its job.
122  *  Used in the main thread, it waits for the simulation to finish before returning. When it returns, the other
123  *  simulated actors and the maestro are destroyed.
124  */
125 void ActorImpl::detach()
126 {
127   auto* context = dynamic_cast<context::AttachContext*>(context::Context::self());
128   if (context == nullptr)
129     xbt_die("Not a suitable context");
130
131   context->get_actor()->cleanup();
132   context->attach_stop();
133 }
134
135 void ActorImpl::cleanup_from_simix()
136 {
137   const std::lock_guard<std::mutex> lock(simix_global->mutex);
138   simix_global->process_list.erase(pid_);
139   if (host_ && host_actor_list_hook.is_linked())
140     host_->pimpl_->remove_actor(this);
141   if (not smx_destroy_list_hook.is_linked()) {
142 #if SIMGRID_HAVE_MC
143     xbt_dynar_push_as(simix_global->dead_actors_vector, ActorImpl*, this);
144 #endif
145     simix_global->actors_to_destroy.push_back(*this);
146   }
147 }
148
149 void ActorImpl::cleanup()
150 {
151   finished_ = true;
152
153   if (has_to_auto_restart() && not get_host()->is_on()) {
154     XBT_DEBUG("Insert host %s to watched_hosts because it's off and %s needs to restart", get_host()->get_cname(),
155               get_cname());
156     watched_hosts.insert(get_host()->get_name());
157   }
158
159   if (on_exit) {
160     // Execute the termination callbacks
161     bool failed = context_->wannadie();
162     for (auto exit_fun = on_exit->crbegin(); exit_fun != on_exit->crend(); ++exit_fun)
163       (*exit_fun)(failed);
164     on_exit.reset();
165   }
166   undaemonize();
167
168   /* cancel non-blocking activities */
169   for (auto activity : activities_)
170     activity->cancel();
171   activities_.clear();
172
173   XBT_DEBUG("%s@%s(%ld) should not run anymore", get_cname(), get_host()->get_cname(), get_pid());
174
175   if (this == simix_global->maestro_) /* Do not cleanup maestro */
176     return;
177
178   XBT_DEBUG("Cleanup actor %s (%p), waiting synchro %p", get_cname(), this, waiting_synchro_.get());
179
180   /* Unregister associated timers if any */
181   if (kill_timer_ != nullptr) {
182     kill_timer_->remove();
183     kill_timer_ = nullptr;
184   }
185   if (simcall_.timeout_cb_) {
186     simcall_.timeout_cb_->remove();
187     simcall_.timeout_cb_ = nullptr;
188   }
189
190   cleanup_from_simix();
191
192   context_->set_wannadie(false); // don't let the simcall's yield() do a Context::stop(), to avoid infinite loops
193   actor::simcall([this] { s4u::Actor::on_termination(*get_ciface()); });
194   context_->set_wannadie();
195 }
196
197 void ActorImpl::exit()
198 {
199   context_->set_wannadie();
200   suspended_          = false;
201   exception_          = nullptr;
202
203   /* destroy the blocking synchro if any */
204   if (waiting_synchro_ != nullptr) {
205     waiting_synchro_->cancel();
206     waiting_synchro_->state_ = activity::State::FAILED;
207
208     activity::ExecImplPtr exec = boost::dynamic_pointer_cast<activity::ExecImpl>(waiting_synchro_);
209     activity::CommImplPtr comm = boost::dynamic_pointer_cast<activity::CommImpl>(waiting_synchro_);
210
211     if (exec != nullptr) {
212       exec->clean_action();
213     } else if (comm != nullptr) {
214       // Remove first occurrence of &actor->simcall:
215       auto i = boost::range::find(waiting_synchro_->simcalls_, &simcall_);
216       if (i != waiting_synchro_->simcalls_.end())
217         waiting_synchro_->simcalls_.remove(&simcall_);
218     } else {
219       activity::ActivityImplPtr(waiting_synchro_)->finish();
220     }
221
222     activities_.remove(waiting_synchro_);
223     waiting_synchro_ = nullptr;
224   }
225
226   // Forcefully kill the actor if its host is turned off. Not a HostFailureException because you should not survive that
227   this->throw_exception(std::make_exception_ptr(ForcefulKillException(host_->is_on() ? "exited" : "host failed")));
228 }
229
230 void ActorImpl::kill(ActorImpl* actor) const
231 {
232   xbt_assert(actor != simix_global->maestro_, "Killing maestro is a rather bad idea");
233   if (actor->finished_) {
234     XBT_DEBUG("Ignoring request to kill actor %s@%s that is already dead", actor->get_cname(),
235               actor->host_->get_cname());
236     return;
237   }
238
239   XBT_DEBUG("Actor '%s'@%s is killing actor '%s'@%s", get_cname(), host_ ? host_->get_cname() : "", actor->get_cname(),
240             actor->host_ ? actor->host_->get_cname() : "");
241
242   actor->exit();
243
244   if (actor == this) {
245     XBT_DEBUG("Go on, this is a suicide,");
246   } else if (std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), actor) !=
247              end(simix_global->actors_to_run)) {
248     XBT_DEBUG("Actor %s is already in the to_run list", actor->get_cname());
249   } else {
250     XBT_DEBUG("Inserting %s in the to_run list", actor->get_cname());
251     simix_global->actors_to_run.push_back(actor);
252   }
253 }
254
255 void ActorImpl::kill_all() const
256 {
257   for (auto const& kv : simix_global->process_list)
258     if (kv.second != this)
259       this->kill(kv.second);
260 }
261
262 void ActorImpl::set_kill_time(double kill_time)
263 {
264   if (kill_time <= SIMIX_get_clock())
265     return;
266   XBT_DEBUG("Set kill time %f for actor %s@%s", kill_time, get_cname(), host_->get_cname());
267   kill_timer_ = simix::Timer::set(kill_time, [this] {
268     this->exit();
269     kill_timer_ = nullptr;
270   });
271 }
272
273 double ActorImpl::get_kill_time() const
274 {
275   return kill_timer_ ? kill_timer_->get_date() : 0;
276 }
277
278 void ActorImpl::yield()
279 {
280   XBT_DEBUG("Yield actor '%s'", get_cname());
281
282   /* Go into sleep and return control to maestro */
283   context_->suspend();
284
285   /* Ok, maestro returned control to us */
286   XBT_DEBUG("Control returned to me: '%s'", get_cname());
287
288   if (context_->wannadie()) {
289     XBT_DEBUG("Actor %s@%s is dead", get_cname(), host_->get_cname());
290     context_->stop();
291     THROW_IMPOSSIBLE;
292   }
293
294   if (suspended_) {
295     XBT_DEBUG("Hey! I'm suspended.");
296
297     xbt_assert(exception_ == nullptr, "Gasp! This exception may be lost by subsequent calls.");
298
299     if (waiting_synchro_ != nullptr) // Not sure of when this will happen. Maybe when suspending early in the SR when a
300       waiting_synchro_->suspend();   // waiting_synchro was terminated
301
302     yield(); // Yield back to maestro without proceeding with my execution. I'll get rescheduled by resume()
303   }
304
305   if (exception_ != nullptr) {
306     XBT_DEBUG("Wait, maestro left me an exception");
307     std::exception_ptr exception = std::move(exception_);
308     exception_                   = nullptr;
309     std::rethrow_exception(std::move(exception));
310   }
311
312   if (SMPI_switch_data_segment && not finished_) {
313     SMPI_switch_data_segment(get_iface());
314   }
315 }
316
317 /** This actor will be terminated automatically when the last non-daemon actor finishes */
318 void ActorImpl::daemonize()
319 {
320   if (not daemon_) {
321     daemon_ = true;
322     simix_global->daemons.push_back(this);
323   }
324 }
325
326 void ActorImpl::undaemonize()
327 {
328   if (daemon_) {
329     auto& vect = simix_global->daemons;
330     auto it    = std::find(vect.begin(), vect.end(), this);
331     xbt_assert(it != vect.end(), "The dying daemon is not a daemon after all. Please report that bug.");
332     /* Don't move the whole content since we don't really care about the order */
333
334     std::swap(*it, vect.back());
335     vect.pop_back();
336     daemon_ = false;
337   }
338 }
339
340 s4u::Actor* ActorImpl::restart()
341 {
342   xbt_assert(this != simix_global->maestro_, "Restarting maestro is not supported");
343
344   XBT_DEBUG("Restarting actor %s on %s", get_cname(), host_->get_cname());
345
346   // retrieve the arguments of the old actor
347   ProcessArg arg = ProcessArg(host_, this);
348
349   // kill the old actor
350   context::Context::self()->get_actor()->kill(this);
351
352   // start the new actor
353   ActorImplPtr actor = ActorImpl::create(arg.name, arg.code, arg.data, arg.host, arg.properties.get(), nullptr);
354   *actor->on_exit = std::move(*arg.on_exit);
355   actor->set_kill_time(arg.kill_time);
356   actor->set_auto_restart(arg.auto_restart);
357
358   return actor->get_ciface();
359 }
360
361 void ActorImpl::suspend()
362 {
363   if (suspended_) {
364     XBT_DEBUG("Actor '%s' is already suspended", get_cname());
365     return;
366   }
367
368   suspended_ = true;
369
370   /* If the suspended actor is waiting on a sync, suspend its synchronization.
371    * Otherwise, it will suspend itself when scheduled, ie, very soon. */
372   if (waiting_synchro_ != nullptr)
373     waiting_synchro_->suspend();
374 }
375
376 void ActorImpl::resume()
377 {
378   XBT_IN("actor = %p", this);
379
380   if (context_->wannadie()) {
381     XBT_VERB("Ignoring request to suspend an actor that is currently dying.");
382     return;
383   }
384
385   if (not suspended_)
386     return;
387   suspended_ = false;
388
389   /* resume the activity that was blocking the resumed actor. */
390   if (waiting_synchro_)
391     waiting_synchro_->resume();
392   else // Reschedule the actor if it was forcefully unscheduled in yield()
393     simix_global->actors_to_run.push_back(this);
394
395   XBT_OUT();
396 }
397
398 activity::ActivityImplPtr ActorImpl::join(const ActorImpl* actor, double timeout)
399 {
400   activity::ActivityImplPtr sleep = this->sleep(timeout);
401   actor->on_exit->emplace_back([sleep](bool) {
402     if (sleep->surf_action_)
403       sleep->surf_action_->finish(resource::Action::State::FINISHED);
404   });
405   return sleep;
406 }
407
408 activity::ActivityImplPtr ActorImpl::sleep(double duration)
409 {
410   if (not host_->is_on())
411     throw_exception(std::make_exception_ptr(HostFailureException(
412         XBT_THROW_POINT, std::string("Host ") + host_->get_cname() + " failed, you cannot sleep there.")));
413
414   auto sleep = new activity::SleepImpl();
415   sleep->set_name("sleep").set_host(host_).set_duration(duration).start();
416   return activity::SleepImplPtr(sleep);
417 }
418
419 void ActorImpl::throw_exception(std::exception_ptr e)
420 {
421   exception_ = e;
422
423   if (suspended_)
424     resume();
425
426   /* cancel the blocking synchro if any */
427   if (waiting_synchro_) {
428     waiting_synchro_->cancel();
429     activities_.remove(waiting_synchro_);
430     waiting_synchro_ = nullptr;
431   }
432 }
433
434 void ActorImpl::simcall_answer()
435 {
436   if (this != simix_global->maestro_) {
437     XBT_DEBUG("Answer simcall %s (%d) issued by %s (%p)", SIMIX_simcall_name(simcall_.call_), (int)simcall_.call_,
438               get_cname(), this);
439     xbt_assert(simcall_.call_ != simix::Simcall::NONE);
440     simcall_.call_ = simix::Simcall::NONE;
441     xbt_assert(not XBT_LOG_ISENABLED(simix_process, xbt_log_priority_debug) ||
442                    std::find(begin(simix_global->actors_to_run), end(simix_global->actors_to_run), this) ==
443                        end(simix_global->actors_to_run),
444                "Actor %p should not exist in actors_to_run!", this);
445     simix_global->actors_to_run.push_back(this);
446   }
447 }
448
449 void ActorImpl::set_host(s4u::Host* dest)
450 {
451   host_->pimpl_->remove_actor(this);
452   host_ = dest;
453   dest->pimpl_->add_actor(this);
454 }
455
456 ActorImplPtr ActorImpl::init(const std::string& name, s4u::Host* host) const
457 {
458   auto* actor = new ActorImpl(xbt::string(name), host);
459   actor->set_ppid(this->pid_);
460
461   intrusive_ptr_add_ref(actor);
462   /* The on_creation() signal must be delayed until there, where the pid and everything is set */
463   s4u::Actor::on_creation(*actor->get_ciface());
464
465   return ActorImplPtr(actor);
466 }
467
468 ActorImpl* ActorImpl::start(const ActorCode& code)
469 {
470   xbt_assert(code && host_ != nullptr, "Invalid parameters");
471
472   if (not host_->is_on()) {
473     XBT_WARN("Cannot launch actor '%s' on failed host '%s'", name_.c_str(), host_->get_cname());
474     intrusive_ptr_release(this);
475     throw HostFailureException(XBT_THROW_POINT, "Cannot start actor on failed host.");
476   }
477
478   this->code_ = code;
479   XBT_VERB("Create context %s", get_cname());
480   context_.reset(simix_global->context_factory->create_context(ActorCode(code), this));
481
482   XBT_DEBUG("Start context '%s'", get_cname());
483
484   /* Add the actor to its host's actor list */
485   host_->pimpl_->add_actor(this);
486   simix_global->process_list[pid_] = this;
487
488   /* Now insert it in the global actor list and in the actor to run list */
489   XBT_DEBUG("Inserting [%p] %s(%s) in the to_run list", this, get_cname(), host_->get_cname());
490   simix_global->actors_to_run.push_back(this);
491
492   return this;
493 }
494
495 ActorImplPtr ActorImpl::create(const std::string& name, const ActorCode& code, void* data, s4u::Host* host,
496                                const std::unordered_map<std::string, std::string>* properties,
497                                const ActorImpl* parent_actor)
498 {
499   XBT_DEBUG("Start actor %s@'%s'", name.c_str(), host->get_cname());
500
501   ActorImplPtr actor;
502   if (parent_actor != nullptr)
503     actor = parent_actor->init(xbt::string(name), host);
504   else
505     actor = self()->init(xbt::string(name), host);
506
507   /* actor data */
508   actor->set_user_data(data);
509
510   /* Add properties */
511   if (properties != nullptr)
512     actor->set_properties(*properties);
513
514   actor->start(code);
515
516   return actor;
517 }
518
519 void create_maestro(const std::function<void()>& code)
520 {
521   /* Create maestro actor and initialize it */
522   auto* maestro = new ActorImpl(xbt::string(""), /*host*/ nullptr);
523
524   if (not code) {
525     maestro->context_.reset(simix_global->context_factory->create_context(ActorCode(), maestro));
526   } else {
527     maestro->context_.reset(simix_global->context_factory->create_maestro(ActorCode(code), maestro));
528   }
529
530   maestro->simcall_.issuer_     = maestro;
531   simix_global->maestro_        = maestro;
532 }
533
534 } // namespace actor
535 } // namespace kernel
536 } // namespace simgrid
537
538 int SIMIX_process_count() // XBT_ATTRIB_DEPRECATED_v329
539 {
540   return simix_global->process_list.size();
541 }
542
543 void* SIMIX_process_self_get_data() // XBT_ATTRIB_DEPRECATED_v329
544 {
545   smx_actor_t self = simgrid::kernel::actor::ActorImpl::self();
546
547   if (self == nullptr) {
548     return nullptr;
549   }
550   return self->get_user_data();
551 }
552
553 void SIMIX_process_self_set_data(void* data) // XBT_ATTRIB_DEPRECATED_v329
554 {
555   simgrid::kernel::actor::ActorImpl::self()->set_user_data(data);
556 }
557
558 /* needs to be public and without simcall because it is called
559    by exceptions and logging events */
560 const char* SIMIX_process_self_get_name()
561 {
562   return SIMIX_is_maestro() ? "maestro" : simgrid::kernel::actor::ActorImpl::self()->get_cname();
563 }
564
565 /**
566  * @brief Calling this function makes the process to yield.
567  *
568  * Only the current process can call this function, giving back the control to maestro.
569  *
570  * @param self the current process
571  */
572
573 /** @brief Returns the process from PID. */
574 smx_actor_t SIMIX_process_from_PID(aid_t PID)
575 {
576   auto item = simix_global->process_list.find(PID);
577   if (item == simix_global->process_list.end()) {
578     for (auto& a : simix_global->actors_to_destroy)
579       if (a.get_pid() == PID)
580         return &a;
581     return nullptr; // Not found, even in the trash
582   }
583   return item->second;
584 }
585
586 void SIMIX_process_on_exit(smx_actor_t actor,
587                            const std::function<void(bool /*failed*/)>& fun) // XBT_ATTRIB_DEPRECATED_v329
588 {
589   xbt_assert(actor, "current process not found: are you in maestro context ?");
590   actor->on_exit->emplace_back(fun);
591 }
592
593 void simcall_process_set_data(smx_actor_t process, void* data) // XBT_ATTRIB_DEPRECATED_v329
594 {
595   simgrid::kernel::actor::simcall([process, data] { process->set_user_data(data); });
596 }