Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ba5ed9a8a3cfca4ca6ec4f6d422c5c2d6df3c3c0
[simgrid.git] / src / kernel / context / ContextUnix.cpp
1 /* Copyright (c) 2009-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 /* \file UContext.cpp Context switching with ucontexts from System V        */
7
8 #include "context_private.hpp"
9
10 #include "mc/mc.h"
11 #include "simgrid/Exception.hpp"
12 #include "src/mc/mc_ignore.hpp"
13 #include "src/simix/ActorImpl.hpp"
14 #include "src/simix/smx_private.hpp"
15
16 #include "ContextUnix.hpp"
17
18 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(simix_context);
19
20 /** Up to two integers may be needed to store a pointer on the system we target */
21 constexpr int CTX_ADDR_LEN = 2;
22
23 static_assert(sizeof(simgrid::kernel::context::UContext*) <= CTX_ADDR_LEN * sizeof(int),
24               "Ucontexts are not supported on this arch yet. Please increase CTX_ADDR_LEN.");
25
26 namespace simgrid {
27 namespace kernel {
28 namespace context {
29 // The name of this function is currently hardcoded in MC (as string).
30 // Do not change it without fixing those references as well.
31 static void smx_ctx_wrapper(int i1, int i2)
32 {
33   // Rebuild the Context* pointer from the integers:
34   int ctx_addr[CTX_ADDR_LEN] = {i1, i2};
35   simgrid::kernel::context::UContext* context;
36   memcpy(&context, ctx_addr, sizeof context);
37
38   ASAN_FINISH_SWITCH(nullptr, &context->asan_ctx_->asan_stack_, &context->asan_ctx_->asan_stack_size_);
39   try {
40     (*context)();
41   } catch (simgrid::kernel::context::Context::StopRequest const&) {
42     XBT_DEBUG("Caught a StopRequest");
43   } catch (simgrid::Exception const& e) {
44     XBT_INFO("Actor killed by an uncatched exception %s", simgrid::xbt::demangle(typeid(e).name()).get());
45     throw;
46   }
47   context->Context::stop();
48   ASAN_ONLY(context->asan_stop_ = true);
49   context->suspend();
50 }
51
52 // UContextFactory
53 Context* UContextFactory::create_context(std::function<void()> code, void_pfn_smxprocess_t cleanup, smx_actor_t actor)
54 {
55   return new_context<UContext>(std::move(code), cleanup, actor, this);
56 }
57
58
59 // UContext
60
61 UContext::UContext(std::function<void()> code, void_pfn_smxprocess_t cleanup_func, smx_actor_t actor,
62                    SwappedContextFactory* factory)
63     : SwappedContext(std::move(code), cleanup_func, actor, factory)
64 {
65   /* if the user provided a function for the actor then use it. If not, nothing to do for maestro. */
66   if (has_code()) {
67     getcontext(&this->uc_);
68     this->uc_.uc_link = nullptr;
69     this->uc_.uc_stack.ss_sp   = sg_makecontext_stack_addr(get_stack());
70     this->uc_.uc_stack.ss_size = sg_makecontext_stack_size(smx_context_usable_stack_size);
71 #if PTH_STACKGROWTH == -1
72     ASAN_ONLY(this->asan_stack_ = static_cast<char*>(get_stack()) + smx_context_usable_stack_size);
73 #else
74     ASAN_ONLY(this->asan_stack_ = get_stack());
75 #endif
76     // Makecontext expects integer arguments; we want to pass a pointer.
77     // This context address is decomposed into a serie of integers, which are passed as arguments to makecontext.
78
79     int ctx_addr[CTX_ADDR_LEN]{};
80     UContext* arg = this;
81     memcpy(ctx_addr, &arg, sizeof this);
82     makecontext(&this->uc_, (void (*)())smx_ctx_wrapper, 2, ctx_addr[0], ctx_addr[1]);
83   }
84
85 #if SIMGRID_HAVE_MC
86   if (MC_is_active() && has_code()) {
87     MC_register_stack_area(get_stack(), actor, &(this->uc_), smx_context_usable_stack_size);
88   }
89 #endif
90 }
91
92 void UContext::swap_into(SwappedContext* to_)
93 {
94   UContext* to = static_cast<UContext*>(to_);
95   ASAN_ONLY(void* fake_stack = nullptr);
96   ASAN_ONLY(to->asan_ctx_ = this);
97   ASAN_START_SWITCH(this->asan_stop_ ? nullptr : &fake_stack, to->asan_stack_, to->asan_stack_size_);
98   swapcontext(&this->uc_, &to->uc_);
99   ASAN_FINISH_SWITCH(fake_stack, &this->asan_ctx_->asan_stack_, &this->asan_ctx_->asan_stack_size_);
100 }
101
102
103 XBT_PRIVATE ContextFactory* sysv_factory()
104 {
105   XBT_VERB("Activating SYSV context factory");
106   return new UContextFactory();
107 }
108 }}} // namespace simgrid::kernel::context