Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[Doc] Updated deployment description file.
[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_die("Failed to protect stack: %s", strerror(errno));
167       /* This is fatal. We are going to fail at some point when
168          we tryi reusing this. */
169     }
170 #endif
171     stack = (char *)stack + smx_context_guard_size;
172   } else {
173     stack = xbt_malloc0(smx_context_stack_size);
174   }
175
176 #ifdef HAVE_VALGRIND_VALGRIND_H
177   unsigned int valgrind_stack_id =
178     VALGRIND_STACK_REGISTER(stack, (char *)stack + smx_context_stack_size);
179   memcpy((char *)stack + smx_context_usable_stack_size, &valgrind_stack_id,
180          sizeof valgrind_stack_id);
181 #endif
182
183   return stack;
184 }
185
186 void SIMIX_context_stack_delete(void *stack)
187 {
188   if (!stack)
189     return;
190
191 #ifdef HAVE_VALGRIND_VALGRIND_H
192   unsigned int valgrind_stack_id;
193   memcpy(&valgrind_stack_id, (char *)stack + smx_context_usable_stack_size,
194          sizeof valgrind_stack_id);
195   VALGRIND_STACK_DEREGISTER(valgrind_stack_id);
196 #endif
197
198 #ifndef WIN32
199   if (smx_context_guard_size > 0 && !MC_is_active()) {
200     stack = (char *)stack - smx_context_guard_size;
201     if (mprotect(stack, smx_context_guard_size,
202                  PROT_READ | PROT_WRITE) == -1) {
203       XBT_WARN("Failed to remove page protection: %s", strerror(errno));
204       /* try to pursue anyway */
205     }
206 #ifdef HAVE_MC
207     /* Retrieve the saved pointer.  See SIMIX_context_stack_new above. */
208     stack = *((void **)stack - 1);
209 #endif
210   }
211 #endif
212
213   xbt_free(stack);
214 }
215
216 /**
217  * \brief Returns whether some parallel threads are used
218  * for the user contexts.
219  * \return 1 if parallelism is used
220  */
221 XBT_INLINE int SIMIX_context_is_parallel(void) {
222   return smx_parallel_contexts > 1;
223 }
224
225 /**
226  * \brief Returns the number of parallel threads used
227  * for the user contexts.
228  * \return the number of threads (1 means no parallelism)
229  */
230 XBT_INLINE int SIMIX_context_get_nthreads(void) {
231   return smx_parallel_contexts;
232 }
233
234 /**
235  * \brief Sets the number of parallel threads to use
236  * for the user contexts.
237  *
238  * This function should be called before initializing SIMIX.
239  * A value of 1 means no parallelism (1 thread only).
240  * If the value is greater than 1, the thread support must be enabled.
241  *
242  * \param nb_threads the number of threads to use
243  */
244 void SIMIX_context_set_nthreads(int nb_threads) {
245   if (nb_threads<=0) {  
246      nb_threads = xbt_os_get_numcores();
247      XBT_INFO("Auto-setting contexts/nthreads to %d",nb_threads);
248   }   
249   
250   if (nb_threads > 1) {
251 #ifndef CONTEXT_THREADS
252     THROWF(arg_error, 0, "The thread factory cannot be run in parallel");
253 #endif
254   }
255   smx_parallel_contexts = nb_threads;
256 }
257
258 /**
259  * \brief Returns the threshold above which user processes are run in parallel.
260  *
261  * If the number of threads is set to 1, there is no parallelism and this
262  * threshold has no effect.
263  *
264  * \return when the number of user processes ready to run is above
265  * this threshold, they are run in parallel
266  */
267 XBT_INLINE int SIMIX_context_get_parallel_threshold(void) {
268   return smx_parallel_threshold;
269 }
270
271 /**
272  * \brief Sets the threshold above which user processes are run in parallel.
273  *
274  * If the number of threads is set to 1, there is no parallelism and this
275  * threshold has no effect.
276  *
277  * \param threshold when the number of user processes ready to run is above
278  * this threshold, they are run in parallel
279  */
280 XBT_INLINE void SIMIX_context_set_parallel_threshold(int threshold) {
281   smx_parallel_threshold = threshold;
282 }
283
284 /**
285  * \brief Returns the synchronization mode used when processes are run in
286  * parallel.
287  * \return how threads are synchronized if processes are run in parallel
288  */
289 XBT_INLINE e_xbt_parmap_mode_t SIMIX_context_get_parallel_mode(void) {
290   return smx_parallel_synchronization_mode;
291 }
292
293 /**
294  * \brief Sets the synchronization mode to use when processes are run in
295  * parallel.
296  * \param mode how to synchronize threads if processes are run in parallel
297  */
298 XBT_INLINE void SIMIX_context_set_parallel_mode(e_xbt_parmap_mode_t mode) {
299   smx_parallel_synchronization_mode = mode;
300 }
301
302 /**
303  * \brief Returns the current context of this thread.
304  * \return the current context of this thread
305  */
306 XBT_INLINE smx_context_t SIMIX_context_get_current(void)
307 {
308   if (SIMIX_context_is_parallel()) {
309 #ifdef HAVE_THREAD_LOCAL_STORAGE
310     return smx_current_context_parallel;
311 #else
312     return xbt_os_thread_get_specific(smx_current_context_key);
313 #endif
314   }
315   else {
316     return smx_current_context_serial;
317   }
318 }
319
320 /**
321  * \brief Sets the current context of this thread.
322  * \param context the context to set
323  */
324 XBT_INLINE void SIMIX_context_set_current(smx_context_t context)
325 {
326   if (SIMIX_context_is_parallel()) {
327 #ifdef HAVE_THREAD_LOCAL_STORAGE
328     smx_current_context_parallel = context;
329 #else
330     xbt_os_thread_set_specific(smx_current_context_key, context);
331 #endif
332   }
333   else {
334     smx_current_context_serial = context;
335   }
336 }