Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New callback: simgrid::s4u::onPlatformCreated (right before the simulation start)
[simgrid.git] / src / simix / smx_context.cpp
1 /* a fast and simple context switching library                              */
2
3 /* Copyright (c) 2009-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <cerrno>
10 #include <cstring>
11
12 #include <utility>
13 #include <string>
14
15 #include <xbt/config.hpp>
16 #include <xbt/log.h>
17 #include <xbt/range.hpp>
18 #include <xbt/sysdep.h>
19
20 #include "src/internal_config.h"
21 #include "xbt/log.h"
22 #include "xbt/swag.h"
23 #include "xbt/xbt_os_thread.h"
24 #include "smx_private.h"
25 #include "simgrid/sg_config.h"
26 #include "src/internal_config.h"
27 #include "simgrid/modelchecker.h"
28
29
30 #ifdef _WIN32
31 #include <windows.h>
32 #include <malloc.h>
33 #else
34 #include <sys/mman.h>
35 #endif
36
37 #ifdef __MINGW32__ 
38 #define _aligned_malloc __mingw_aligned_malloc 
39 #define _aligned_free  __mingw_aligned_free 
40 #endif //MINGW
41
42 #if HAVE_VALGRIND_H
43 # include <valgrind/valgrind.h>
44 #endif
45
46 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_context, simix, "Context switching mechanism");
47
48 static std::pair<const char*, simgrid::kernel::context::ContextFactoryInitializer> context_factories[] = {
49 #if HAVE_RAW_CONTEXTS
50   { "raw", &simgrid::kernel::context::raw_factory },
51 #endif
52 #if HAVE_UCONTEXT_CONTEXTS
53   { "ucontext", &simgrid::kernel::context::sysv_factory },
54 #endif
55 #if HAVE_BOOST_CONTEXTS
56   { "boost", &simgrid::kernel::context::boost_factory },
57 #endif
58 #if HAVE_THREAD_CONTEXTS
59   { "thread", &simgrid::kernel::context::thread_factory },
60 #endif
61 };
62
63 static_assert(sizeof(context_factories) != 0, "No context factories are enabled for this build");
64
65 // Create the list of possible contexts:
66 static inline
67 std::string contexts_list()
68 {
69   std::string res;
70   const std::size_t n = sizeof(context_factories) / sizeof(context_factories[0]);
71   for (std::size_t i = 1; i != n; ++i) {
72     res += ", ";
73     res += context_factories[i].first;
74   }
75   return res;
76 }
77
78 static simgrid::config::Flag<std::string> context_factory_name(
79   "contexts/factory",
80   (std::string("Possible values: ")+contexts_list()).c_str(),
81   context_factories[0].first);
82
83 int smx_context_stack_size;
84 int smx_context_stack_size_was_set = 0;
85 int smx_context_guard_size;
86 int smx_context_guard_size_was_set = 0;
87 #if HAVE_THREAD_LOCAL_STORAGE
88 static XBT_THREAD_LOCAL smx_context_t smx_current_context_parallel;
89 #else
90 static xbt_os_thread_key_t smx_current_context_key = 0;
91 #endif
92 static smx_context_t smx_current_context_serial;
93 static int smx_parallel_contexts = 1;
94 static int smx_parallel_threshold = 2;
95 static e_xbt_parmap_mode_t smx_parallel_synchronization_mode = XBT_PARMAP_DEFAULT;
96
97 /**
98  * This function is called by SIMIX_global_init() to initialize the context module.
99  */
100 void SIMIX_context_mod_init()
101 {
102   xbt_assert(simix_global->context_factory == nullptr);
103
104 #if HAVE_THREAD_CONTEXTS && !HAVE_THREAD_LOCAL_STORAGE
105   /* the __thread storage class is not available on this platform:
106    * use getspecific/setspecific instead to store the current context in each thread */
107   xbt_os_thread_key_create(&smx_current_context_key);
108 #endif
109
110   /* select the context factory to use to create the contexts */
111   if (simgrid::kernel::context::factory_initializer) { // Give Java a chance to hijack the factory mechanism
112     simix_global->context_factory = simgrid::kernel::context::factory_initializer();
113     return;
114   }
115   /* use the factory specified by --cfg=contexts/factory:value */
116   for (auto const& factory : context_factories)
117     if (context_factory_name == factory.first) {
118       simix_global->context_factory = factory.second();
119       break;
120     }
121
122   if (simix_global->context_factory == nullptr) {
123     XBT_ERROR("Invalid context factory specified. Valid factories on this machine:");
124 #if HAVE_RAW_CONTEXTS
125     XBT_ERROR("  raw: high performance context factory implemented specifically for SimGrid");
126 #else
127     XBT_ERROR("  (raw contexts were disabled at compilation time on this machine -- check configure logs for details)");
128 #endif
129 #if HAVE_UCONTEXT_CONTEXTS
130     XBT_ERROR("  ucontext: classical system V contexts (implemented with makecontext, swapcontext and friends)");
131 #else
132     XBT_ERROR("  (ucontext was disabled at compilation time on this machine -- check configure logs for details)");
133 #endif
134 #if HAVE_BOOST_CONTEXTS
135     XBT_ERROR("  boost: this uses the boost libraries context implementation");
136 #else
137     XBT_ERROR("  (boost was disabled at compilation time on this machine -- check configure logs for details. Did you install the libboost-context-dev package?)");
138 #endif
139     XBT_ERROR("  thread: slow portability layer using pthreads as provided by gcc");
140     xbt_die("Please use a valid factory.");
141   }
142 }
143
144 /**
145  * This function is called by SIMIX_clean() to finalize the context module.
146  */
147 void SIMIX_context_mod_exit()
148 {
149   delete simix_global->context_factory;
150   simix_global->context_factory = nullptr;
151 }
152
153 void *SIMIX_context_stack_new()
154 {
155   void *stack;
156
157   /* FIXME: current code for stack overflow protection assumes that stacks are
158    * growing downward (PTH_STACKGROWTH == -1).  Protected pages need to be put
159    * after the stack when PTH_STACKGROWTH == 1. */
160
161   if (smx_context_guard_size > 0 && !MC_is_active()) {
162
163 #if !defined(PTH_STACKGROWTH) || (PTH_STACKGROWTH != -1)
164     static int warned_once = 0;
165     if (!warned_once) {
166       XBT_WARN("Stack overflow protection is known to be broken on your system.  Either stack grows upwards, or it was not even tested properly.");
167       warned_once = 1;
168     }
169 #endif
170
171     size_t size = smx_context_stack_size + smx_context_guard_size;
172 #if HAVE_MC
173     /* Cannot use posix_memalign when HAVE_MC. Align stack by hand, and save the
174      * pointer returned by xbt_malloc0. */
175     char *alloc = (char*)xbt_malloc0(size + xbt_pagesize);
176     stack = alloc - ((uintptr_t)alloc & (xbt_pagesize - 1)) + xbt_pagesize;
177     *((void **)stack - 1) = alloc;
178 #elif !defined(_WIN32)
179     if (posix_memalign(&stack, xbt_pagesize, size) != 0)
180       xbt_die("Failed to allocate stack.");
181 #else
182     stack = _aligned_malloc(size, xbt_pagesize);
183 #endif
184
185 #ifndef _WIN32
186     if (mprotect(stack, smx_context_guard_size, PROT_NONE) == -1) {
187       xbt_die("Failed to protect stack %p: %s", stack, strerror(errno));
188       /* This is fatal. We are going to fail at some point when we try reusing this. */
189     }
190 #endif
191     stack = (char *)stack + smx_context_guard_size;
192   } else {
193     stack = xbt_malloc0(smx_context_stack_size);
194   }
195
196 #if HAVE_VALGRIND_H
197   unsigned int valgrind_stack_id = VALGRIND_STACK_REGISTER(stack, (char *)stack + smx_context_stack_size);
198   memcpy((char *)stack + smx_context_usable_stack_size, &valgrind_stack_id, sizeof valgrind_stack_id);
199 #endif
200
201   return stack;
202 }
203
204 void SIMIX_context_stack_delete(void *stack)
205 {
206   if (!stack)
207     return;
208
209 #if HAVE_VALGRIND_H
210   unsigned int valgrind_stack_id;
211   memcpy(&valgrind_stack_id, (char *)stack + smx_context_usable_stack_size, sizeof valgrind_stack_id);
212   VALGRIND_STACK_DEREGISTER(valgrind_stack_id);
213 #endif
214
215 #ifndef _WIN32
216   if (smx_context_guard_size > 0 && !MC_is_active()) {
217     stack = (char *)stack - smx_context_guard_size;
218     if (mprotect(stack, smx_context_guard_size, PROT_READ | PROT_WRITE) == -1) {
219       XBT_WARN("Failed to remove page protection: %s", strerror(errno));
220       /* try to pursue anyway */
221     }
222 #if HAVE_MC
223     /* Retrieve the saved pointer.  See SIMIX_context_stack_new above. */
224     stack = *((void **)stack - 1);
225 #endif
226   }
227 #endif /* not windows */
228
229   xbt_free(stack);
230 }
231
232 /** @brief Returns whether some parallel threads are used for the user contexts. */
233 int SIMIX_context_is_parallel() {
234   return smx_parallel_contexts > 1;
235 }
236
237 /**
238  * @brief Returns the number of parallel threads used for the user contexts.
239  * \return the number of threads (1 means no parallelism)
240  */
241 int SIMIX_context_get_nthreads() {
242   return smx_parallel_contexts;
243 }
244
245 /**
246  * \brief Sets the number of parallel threads to use
247  * for the user contexts.
248  *
249  * This function should be called before initializing SIMIX.
250  * A value of 1 means no parallelism (1 thread only).
251  * If the value is greater than 1, the thread support must be enabled.
252  *
253  * \param nb_threads the number of threads to use
254  */
255 void SIMIX_context_set_nthreads(int nb_threads) {
256   if (nb_threads<=0) {  
257      nb_threads = xbt_os_get_numcores();
258      XBT_INFO("Auto-setting contexts/nthreads to %d",nb_threads);
259   }   
260 #if !HAVE_THREAD_CONTEXTS
261   xbt_assert(nb_threads == 1, "Parallel runs are impossible when the pthreads are missing.");
262 #endif
263   smx_parallel_contexts = nb_threads;
264 }
265
266 /**
267  * \brief Returns the threshold above which user processes are run in parallel.
268  *
269  * If the number of threads is set to 1, there is no parallelism and this
270  * threshold has no effect.
271  *
272  * \return when the number of user processes ready to run is above
273  * this threshold, they are run in parallel
274  */
275 int SIMIX_context_get_parallel_threshold() {
276   return smx_parallel_threshold;
277 }
278
279 /**
280  * \brief Sets the threshold above which user processes are run in parallel.
281  *
282  * If the number of threads is set to 1, there is no parallelism and this
283  * threshold has no effect.
284  *
285  * \param threshold when the number of user processes ready to run is above
286  * this threshold, they are run in parallel
287  */
288 void SIMIX_context_set_parallel_threshold(int threshold) {
289   smx_parallel_threshold = threshold;
290 }
291
292 /**
293  * \brief Returns the synchronization mode used when processes are run in
294  * parallel.
295  * \return how threads are synchronized if processes are run in parallel
296  */
297 e_xbt_parmap_mode_t SIMIX_context_get_parallel_mode() {
298   return smx_parallel_synchronization_mode;
299 }
300
301 /**
302  * \brief Sets the synchronization mode to use when processes are run in
303  * parallel.
304  * \param mode how to synchronize threads if processes are run in parallel
305  */
306 void SIMIX_context_set_parallel_mode(e_xbt_parmap_mode_t mode) {
307   smx_parallel_synchronization_mode = mode;
308 }
309
310 /**
311  * \brief Returns the current context of this thread.
312  * \return the current context of this thread
313  */
314 smx_context_t SIMIX_context_get_current()
315 {
316   if (SIMIX_context_is_parallel()) {
317 #if HAVE_THREAD_LOCAL_STORAGE
318     return smx_current_context_parallel;
319 #else
320     return xbt_os_thread_get_specific(smx_current_context_key);
321 #endif
322   }
323   else {
324     return smx_current_context_serial;
325   }
326 }
327
328 /**
329  * \brief Sets the current context of this thread.
330  * \param context the context to set
331  */
332 void SIMIX_context_set_current(smx_context_t context)
333 {
334   if (SIMIX_context_is_parallel()) {
335 #if HAVE_THREAD_LOCAL_STORAGE
336     smx_current_context_parallel = context;
337 #else
338     xbt_os_thread_set_specific(smx_current_context_key, context);
339 #endif
340   }
341   else {
342     smx_current_context_serial = context;
343   }
344 }