Logo AND Algorithmique Numérique Distribuée

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