Logo AND Algorithmique Numérique Distribuée

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