Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
proper check for the -std=gnu++11 standard, and take in on clang too
[simgrid.git] / src / simix / smx_context.c
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 "portable.h"
10 #include "xbt/log.h"
11 #include "xbt/swag.h"
12 #include "xbt/xbt_os_thread.h"
13 #include "smx_private.h"
14 #include "simgrid/sg_config.h"
15 #include "internal_config.h"
16 #include "simgrid/modelchecker.h"
17
18
19 #ifdef _WIN32
20 #include <windows.h>
21 #else
22 #include <sys/mman.h>
23 #endif
24
25 #ifdef __MINGW32__ 
26 #define _aligned_malloc __mingw_aligned_malloc 
27 #define _aligned_free  __mingw_aligned_free 
28 #endif //MINGW
29
30 #if defined(_XBT_WIN32)
31 #include <malloc.h>
32 #endif
33
34 #ifdef HAVE_VALGRIND_VALGRIND_H
35 # include <valgrind/valgrind.h>
36 #endif
37
38 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_context, simix,
39                                 "Context switching mechanism");
40
41 char* smx_context_factory_name = NULL; /* factory name specified by --cfg=contexts/factory:value */
42 smx_ctx_factory_initializer_t smx_factory_initializer_to_use = NULL;
43 int smx_context_stack_size;
44 int smx_context_stack_size_was_set = 0;
45 int smx_context_guard_size;
46 int smx_context_guard_size_was_set = 0;
47 #ifdef HAVE_THREAD_LOCAL_STORAGE
48 static __thread smx_context_t smx_current_context_parallel;
49 #else
50 static xbt_os_thread_key_t smx_current_context_key = 0;
51 #endif
52 static smx_context_t smx_current_context_serial;
53 static int smx_parallel_contexts = 1;
54 static int smx_parallel_threshold = 2;
55 static e_xbt_parmap_mode_t smx_parallel_synchronization_mode = XBT_PARMAP_DEFAULT;
56
57 /** 
58  * This function is called by SIMIX_global_init() to initialize the context module.
59  */
60 void SIMIX_context_mod_init(void)
61 {
62 #if defined(CONTEXT_THREADS) && !defined(HAVE_THREAD_LOCAL_STORAGE)
63   /* the __thread storage class is not available on this platform:
64    * use getspecific/setspecific instead to store the current context in each thread */
65   xbt_os_thread_key_create(&smx_current_context_key);
66 #endif
67   if (!simix_global->context_factory) {
68     /* select the context factory to use to create the contexts */
69     if (smx_factory_initializer_to_use) {
70       smx_factory_initializer_to_use(&simix_global->context_factory);
71     }
72     else { /* use the factory specified by --cfg=contexts/factory:value */
73
74
75       if (!strcmp(smx_context_factory_name, "thread")) {
76         /* use os threads (either pthreads or windows ones) */
77         SIMIX_ctx_thread_factory_init(&simix_global->context_factory);
78       }
79 #ifdef CONTEXT_UCONTEXT
80       else if (!strcmp(smx_context_factory_name, "ucontext")) {
81         /* use ucontext */
82         SIMIX_ctx_sysv_factory_init(&simix_global->context_factory);
83       }
84 #endif
85 #ifdef HAVE_RAWCTX
86       else if (!strcmp(smx_context_factory_name, "raw")) {
87         /* use raw contexts */
88         SIMIX_ctx_raw_factory_init(&simix_global->context_factory);
89       }
90 #endif
91 #ifdef HAVE_BOOST_CONTEXT
92       else if (!strcmp(smx_context_factory_name, "boost")) {
93         /* use Boost.Context */
94         SIMIX_ctx_boost_factory_init(&simix_global->context_factory);
95       }
96 #endif
97       else {
98         XBT_ERROR("Invalid context factory specified. Valid factories on this machine:");
99 #ifdef HAVE_RAWCTX
100         XBT_ERROR("  raw: high performance context factory implemented specifically for SimGrid");
101 #else
102         XBT_ERROR("  (raw contexts are disabled at compilation time on this machine -- check configure logs for details)");
103 #endif
104 #ifdef CONTEXT_UCONTEXT
105         XBT_ERROR("  ucontext: classical system V contexts (implemented with makecontext, swapcontext and friends)");
106 #else
107         XBT_ERROR("  (ucontext is disabled at compilation time on this machine -- check configure logs for details)");
108 #endif
109         XBT_ERROR("  thread: slow portability layer using system threads (pthreads on UNIX, CreateThread() on windows)");
110         xbt_die("Please use a valid factory.");
111       }
112     }
113   }
114 }
115
116 /**
117  * This function is called by SIMIX_clean() to finalize the context module.
118  */
119 void SIMIX_context_mod_exit(void)
120 {
121   if (simix_global->context_factory) {
122     smx_pfn_context_factory_finalize_t finalize_factory;
123
124     /* finalize the context factory */
125     finalize_factory = simix_global->context_factory->finalize;
126     finalize_factory(&simix_global->context_factory);
127   }
128   xbt_dict_remove((xbt_dict_t) _sg_cfg_set,"contexts/factory");
129 }
130
131 void *SIMIX_context_stack_new(void)
132 {
133   void *stack;
134
135   /* FIXME: current code for stack overflow protection assumes that stacks are
136    * growing downward (PTH_STACKGROWTH == -1).  Protected pages need to be put
137    * after the stack when PTH_STACKGROWTH == 1. */
138
139   if (smx_context_guard_size > 0 && !MC_is_active()) {
140
141 #if defined(_XBT_WIN32) || (PTH_STACKGROWTH != -1)
142     static int warned_once = 0;
143     if (!warned_once) {
144       XBT_WARN("Stack overflow protection is known to be broken on your system.  Either you're on Windows or PTH_STACKGROWTH != -1 (current value is %d).",
145                PTH_STACKGROWTH);
146       warned_once = 1;
147     }
148 #endif
149
150     size_t size = smx_context_stack_size + smx_context_guard_size;
151 #ifdef HAVE_MC
152     /* Cannot use posix_memalign when HAVE_MC. Align stack by hand, and save the
153      * pointer returned by xbt_malloc0. */
154     char *alloc = xbt_malloc0(size + xbt_pagesize);
155     stack = alloc - ((uintptr_t)alloc & (xbt_pagesize - 1)) + xbt_pagesize;
156     *((void **)stack - 1) = alloc;
157 #elif !defined(_XBT_WIN32)
158     if (posix_memalign(&stack, xbt_pagesize, size) != 0)
159       xbt_die("Failed to allocate stack.");
160 #else
161     stack = _aligned_malloc(size, xbt_pagesize);
162 #endif
163
164 #ifndef _XBT_WIN32
165     if (mprotect(stack, smx_context_guard_size, PROT_NONE) == -1) {
166       XBT_WARN("Failed to protect stack: %s", strerror(errno));
167       /* That's not fatal, pursue anyway. */
168     }
169 #endif
170     stack = (char *)stack + smx_context_guard_size;
171   } else {
172     stack = xbt_malloc0(smx_context_stack_size);
173   }
174
175 #ifdef HAVE_VALGRIND_VALGRIND_H
176   unsigned int valgrind_stack_id =
177     VALGRIND_STACK_REGISTER(stack, (char *)stack + smx_context_stack_size);
178   memcpy((char *)stack + smx_context_usable_stack_size, &valgrind_stack_id,
179          sizeof valgrind_stack_id);
180 #endif
181
182   return stack;
183 }
184
185 void SIMIX_context_stack_delete(void *stack)
186 {
187   if (!stack)
188     return;
189
190 #ifdef HAVE_VALGRIND_VALGRIND_H
191   unsigned int valgrind_stack_id;
192   memcpy(&valgrind_stack_id, (char *)stack + smx_context_usable_stack_size,
193          sizeof valgrind_stack_id);
194   VALGRIND_STACK_DEREGISTER(valgrind_stack_id);
195 #endif
196
197 #ifndef WIN32
198   if (smx_context_guard_size > 0 && !MC_is_active()) {
199     stack = (char *)stack - smx_context_guard_size;
200     if (mprotect(stack, smx_context_guard_size,
201                  PROT_READ | PROT_WRITE | PROT_EXEC) == -1) {
202       XBT_WARN("Failed to remove page protection: %s", strerror(errno));
203       /* try to pursue anyway */
204     }
205 #ifdef HAVE_MC
206     /* Retrieve the saved pointer.  See SIMIX_context_stack_new above. */
207     stack = *((void **)stack - 1);
208 #endif
209   }
210 #endif
211
212   xbt_free(stack);
213 }
214
215 /**
216  * \brief Returns whether some parallel threads are used
217  * for the user contexts.
218  * \return 1 if parallelism is used
219  */
220 XBT_INLINE int SIMIX_context_is_parallel(void) {
221   return smx_parallel_contexts > 1;
222 }
223
224 /**
225  * \brief Returns the number of parallel threads used
226  * for the user contexts.
227  * \return the number of threads (1 means no parallelism)
228  */
229 XBT_INLINE int SIMIX_context_get_nthreads(void) {
230   return smx_parallel_contexts;
231 }
232
233 /**
234  * \brief Sets the number of parallel threads to use
235  * for the user contexts.
236  *
237  * This function should be called before initializing SIMIX.
238  * A value of 1 means no parallelism (1 thread only).
239  * If the value is greater than 1, the thread support must be enabled.
240  *
241  * \param nb_threads the number of threads to use
242  */
243 void SIMIX_context_set_nthreads(int nb_threads) {
244   if (nb_threads<=0) {  
245      nb_threads = xbt_os_get_numcores();
246      XBT_INFO("Auto-setting contexts/nthreads to %d",nb_threads);
247   }   
248   
249   if (nb_threads > 1) {
250 #ifndef CONTEXT_THREADS
251     THROWF(arg_error, 0, "The thread factory cannot be run in parallel");
252 #endif
253   }
254   smx_parallel_contexts = nb_threads;
255 }
256
257 /**
258  * \brief Returns the threshold above which user processes are run in parallel.
259  *
260  * If the number of threads is set to 1, there is no parallelism and this
261  * threshold has no effect.
262  *
263  * \return when the number of user processes ready to run is above
264  * this threshold, they are run in parallel
265  */
266 XBT_INLINE int SIMIX_context_get_parallel_threshold(void) {
267   return smx_parallel_threshold;
268 }
269
270 /**
271  * \brief Sets the threshold above which user processes are run in parallel.
272  *
273  * If the number of threads is set to 1, there is no parallelism and this
274  * threshold has no effect.
275  *
276  * \param threshold when the number of user processes ready to run is above
277  * this threshold, they are run in parallel
278  */
279 XBT_INLINE void SIMIX_context_set_parallel_threshold(int threshold) {
280   smx_parallel_threshold = threshold;
281 }
282
283 /**
284  * \brief Returns the synchronization mode used when processes are run in
285  * parallel.
286  * \return how threads are synchronized if processes are run in parallel
287  */
288 XBT_INLINE e_xbt_parmap_mode_t SIMIX_context_get_parallel_mode(void) {
289   return smx_parallel_synchronization_mode;
290 }
291
292 /**
293  * \brief Sets the synchronization mode to use when processes are run in
294  * parallel.
295  * \param mode how to synchronize threads if processes are run in parallel
296  */
297 XBT_INLINE void SIMIX_context_set_parallel_mode(e_xbt_parmap_mode_t mode) {
298   smx_parallel_synchronization_mode = mode;
299 }
300
301 /**
302  * \brief Returns the current context of this thread.
303  * \return the current context of this thread
304  */
305 XBT_INLINE smx_context_t SIMIX_context_get_current(void)
306 {
307   if (SIMIX_context_is_parallel()) {
308 #ifdef HAVE_THREAD_LOCAL_STORAGE
309     return smx_current_context_parallel;
310 #else
311     return xbt_os_thread_get_specific(smx_current_context_key);
312 #endif
313   }
314   else {
315     return smx_current_context_serial;
316   }
317 }
318
319 /**
320  * \brief Sets the current context of this thread.
321  * \param context the context to set
322  */
323 XBT_INLINE void SIMIX_context_set_current(smx_context_t context)
324 {
325   if (SIMIX_context_is_parallel()) {
326 #ifdef HAVE_THREAD_LOCAL_STORAGE
327     smx_current_context_parallel = context;
328 #else
329     xbt_os_thread_set_specific(smx_current_context_key, context);
330 #endif
331   }
332   else {
333     smx_current_context_serial = context;
334   }
335 }