Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Define simgrid::xbt::Path to manage file names.
[simgrid.git] / src / xbt / xbt_os_thread.c
1 /* xbt_os_thread -- portability layer over the pthread API                  */
2 /* Used in RL to get win/lin portability, and in SG when CONTEXT_THREAD     */
3 /* in SG, when using HAVE_UCONTEXT_CONTEXTS, xbt_os_thread_stub is used instead   */
4
5 /* Copyright (c) 2007-2017. The SimGrid Team.
6  * All rights reserved.                                                     */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #include "src/internal_config.h"
12 #if HAVE_PTHREAD_SETAFFINITY
13 #define _GNU_SOURCE
14 #include <sched.h>
15 #endif
16
17 #include <pthread.h>
18
19 #if defined(__FreeBSD__)
20 #include "pthread_np.h"
21 #define cpu_set_t cpuset_t
22 #endif
23
24 #include <limits.h>
25 #include <semaphore.h>
26 #include <errno.h>
27
28 #if defined(_WIN32)
29 #include <windows.h>
30 #elif defined(__MACH__) && defined(__APPLE__)
31 #include <stdint.h>
32 #include <sys/types.h>
33 #include <sys/sysctl.h>
34 #else
35 #include <unistd.h>
36 #endif
37
38 #include "xbt/sysdep.h"
39 #include "xbt/ex.h"
40 #include "src/internal_config.h"
41 #include "xbt/xbt_os_time.h"       /* Portable time facilities */
42 #include "xbt/xbt_os_thread.h"     /* This module */
43 #include "src/xbt_modinter.h"      /* Initialization/finalization of this module */
44
45 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_sync_os, xbt, "Synchronization mechanism (OS-level)");
46
47 /* use named semaphore when sem_init() does not work */
48 #if !HAVE_SEM_INIT
49 static int next_sem_ID = 0;
50 static xbt_os_mutex_t next_sem_ID_lock;
51 #endif
52
53 typedef struct xbt_os_thread_ {
54   pthread_t t;
55   char *name;
56   void *param;
57   pvoid_f_pvoid_t start_routine;
58   void *extra_data;
59 } s_xbt_os_thread_t;
60 static xbt_os_thread_t main_thread = NULL;
61
62 /* thread-specific data containing the xbt_os_thread_t structure */
63 static pthread_key_t xbt_self_thread_key;
64 static int thread_mod_inited = 0;
65
66 /* defaults attribute for pthreads */
67 //FIXME: find where to put this
68 static pthread_attr_t thread_attr;
69
70 /* frees the xbt_os_thread_t corresponding to the current thread */
71 static void xbt_os_thread_free_thread_data(xbt_os_thread_t thread)
72 {
73   if (thread == main_thread)    /* just killed main thread */
74     main_thread = NULL;
75   free(thread->name);
76   free(thread);
77 }
78
79 void xbt_os_thread_mod_preinit(void)
80 {
81   if (thread_mod_inited)
82     return;
83
84   int errcode = pthread_key_create(&xbt_self_thread_key, NULL);
85   xbt_assert(errcode == 0, "pthread_key_create failed for xbt_self_thread_key");
86
87   main_thread = xbt_new(s_xbt_os_thread_t, 1);
88   main_thread->name = NULL;
89   main_thread->name = xbt_strdup("main");
90   main_thread->param = NULL;
91   main_thread->start_routine = NULL;
92   main_thread->extra_data = NULL;
93
94   if ((errcode = pthread_setspecific(xbt_self_thread_key, main_thread)))
95     THROWF(system_error, errcode,
96            "Impossible to set the SimGrid identity descriptor to the main thread (pthread_setspecific failed)");
97
98   pthread_attr_init(&thread_attr);
99
100   thread_mod_inited = 1;
101
102 #if !HAVE_SEM_INIT
103   next_sem_ID_lock = xbt_os_mutex_init();
104 #endif
105 }
106
107 void xbt_os_thread_mod_postexit(void)
108 {
109   /* FIXME: don't try to free our key on shutdown.
110      Valgrind detects no leak if we don't, and whine if we try to */
111   //   int errcode;
112
113   //   if ((errcode=pthread_key_delete(xbt_self_thread_key)))
114   //     THROWF(system_error,errcode,"pthread_key_delete failed for xbt_self_thread_key");
115   free(main_thread->name);
116   free(main_thread);
117   main_thread = NULL;
118   thread_mod_inited = 0;
119 #if !HAVE_SEM_INIT
120   xbt_os_mutex_destroy(next_sem_ID_lock);
121 #endif
122 }
123
124 /** Calls pthread_atfork() if present, and raise an exception otherwise.
125  *
126  * The only known user of this wrapper is mmalloc_preinit(), but it is absolutely mandatory there:
127  * when used with tesh, mmalloc *must* be mutex protected and resistant to forks.
128  * This functionality is the only way to get it working (by ensuring that the mutex is consistently released on forks)
129  */
130
131 /* this function is critical to tesh+mmalloc, don't mess with it */
132 int xbt_os_thread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void))
133 {
134   return pthread_atfork(prepare, parent, child);
135 }
136
137 static void *wrapper_start_routine(void *s)
138 {
139   xbt_os_thread_t t = s;
140
141   int errcode = pthread_setspecific(xbt_self_thread_key, t);
142   xbt_assert(errcode == 0, "pthread_setspecific failed for xbt_self_thread_key");
143
144   return t->start_routine(t->param);
145 }
146
147 xbt_os_thread_t xbt_os_thread_create(const char *name,  pvoid_f_pvoid_t start_routine, void *param, void *extra_data)
148 {
149   xbt_os_thread_t res_thread = xbt_new(s_xbt_os_thread_t, 1);
150   res_thread->name = xbt_strdup(name);
151   res_thread->start_routine = start_routine;
152   res_thread->param = param;
153   res_thread->extra_data = extra_data;
154
155   int errcode = pthread_create(&(res_thread->t), &thread_attr, wrapper_start_routine, res_thread);
156   xbt_assert(errcode == 0, "pthread_create failed: %s", strerror(errcode));
157
158   return res_thread;
159 }
160
161 /** Bind the thread to the given core, if possible.
162  *
163  * If pthread_setaffinity_np is not usable on that (non-gnu) platform, this function does nothing.
164  */
165 int xbt_os_thread_bind(XBT_ATTRIB_UNUSED xbt_os_thread_t thread, XBT_ATTRIB_UNUSED int cpu)
166 {
167   int errcode = 0;
168 #if HAVE_PTHREAD_SETAFFINITY
169   pthread_t pthread = thread->t;
170   cpu_set_t cpuset;
171   CPU_ZERO(&cpuset);
172   CPU_SET(cpu, &cpuset);
173   errcode = pthread_setaffinity_np(pthread, sizeof(cpu_set_t), &cpuset);
174 #endif
175   return errcode;
176 }
177
178 void xbt_os_thread_setstacksize(int stack_size)
179 {
180   size_t alignment[] = {
181     xbt_pagesize,
182 #ifdef PTHREAD_STACK_MIN
183     PTHREAD_STACK_MIN,
184 #endif
185     0
186   };
187
188   xbt_assert(stack_size >= 0, "stack size %d is negative, maybe it exceeds MAX_INT?", stack_size);
189
190   size_t sz = stack_size;
191   int res = pthread_attr_setstacksize(&thread_attr, sz);
192
193   for (int i = 0; res == EINVAL && alignment[i] > 0; i++) {
194     /* Invalid size, try again with next multiple of alignment[i]. */
195     size_t rem = sz % alignment[i];
196     if (rem != 0 || sz == 0) {
197       size_t sz2 = sz - rem + alignment[i];
198       XBT_DEBUG("pthread_attr_setstacksize failed for %zu, try again with %zu", sz, sz2);
199       sz = sz2;
200       res = pthread_attr_setstacksize(&thread_attr, sz);
201     }
202   }
203
204   if (res == EINVAL)
205     XBT_WARN("invalid stack size (maybe too big): %zu", sz);
206   else if (res != 0)
207     XBT_WARN("unknown error %d in pthread stacksize setting: %zu", res, sz);
208 }
209
210 void xbt_os_thread_setguardsize(int guard_size)
211 {
212 #ifdef WIN32
213   THROW_UNIMPLEMENTED; //pthread_attr_setguardsize is not implemented in pthread.h on windows
214 #else
215   size_t sz = guard_size;
216   int res = pthread_attr_setguardsize(&thread_attr, sz);
217   if (res)
218     XBT_WARN("pthread_attr_setguardsize failed (%d) for size: %zu", res, sz);
219 #endif
220 }
221
222 const char *xbt_os_thread_self_name(void)
223 {
224   xbt_os_thread_t me = xbt_os_thread_self();
225   return me ? (const char *)me->name : "main";
226 }
227
228 void xbt_os_thread_join(xbt_os_thread_t thread, void **thread_return)
229 {
230   int errcode = pthread_join(thread->t, thread_return);
231
232   xbt_assert(errcode==0, "pthread_join failed: %s", strerror(errcode));
233   xbt_os_thread_free_thread_data(thread);
234 }
235
236 void xbt_os_thread_exit(int *retval)
237 {
238   pthread_exit(retval);
239 }
240
241 xbt_os_thread_t xbt_os_thread_self(void )
242 {
243   if (!thread_mod_inited)
244     return NULL;
245
246   return pthread_getspecific(xbt_self_thread_key);
247 }
248
249 void xbt_os_thread_key_create(xbt_os_thread_key_t* key)
250 {
251   int errcode = pthread_key_create(key, NULL);
252   xbt_assert(errcode==0 , "pthread_key_create failed");
253 }
254
255 void xbt_os_thread_key_destroy(xbt_os_thread_key_t key)
256 {
257   int errcode = pthread_key_delete(key);
258   xbt_assert(errcode == 0, "pthread_key_delete failed");
259 }
260
261 void xbt_os_thread_set_specific(xbt_os_thread_key_t key, void* value)
262 {
263   int errcode = pthread_setspecific(key, value);
264   xbt_assert(errcode==0, "pthread_setspecific failed");
265 }
266
267 void* xbt_os_thread_get_specific(xbt_os_thread_key_t key)
268 {
269   return pthread_getspecific(key);
270 }
271
272 #include <sched.h>
273 void xbt_os_thread_yield(void)
274 {
275   sched_yield();
276 }
277
278 /****** mutex related functions ******/
279 typedef struct xbt_os_mutex_ {
280   pthread_mutex_t m;
281 } s_xbt_os_mutex_t;
282
283 #include <time.h>
284 #include <math.h>
285
286 xbt_os_mutex_t xbt_os_mutex_init(void)
287 {
288   pthread_mutexattr_t Attr;
289   pthread_mutexattr_init(&Attr);
290   pthread_mutexattr_settype(&Attr, PTHREAD_MUTEX_RECURSIVE);
291
292   xbt_os_mutex_t res = xbt_new(s_xbt_os_mutex_t, 1);
293   int errcode = pthread_mutex_init(&(res->m), &Attr);
294   xbt_assert(errcode==0, "pthread_mutex_init() failed: %s", strerror(errcode));
295
296   return res;
297 }
298
299 void xbt_os_mutex_acquire(xbt_os_mutex_t mutex)
300 {
301   int errcode = pthread_mutex_lock(&(mutex->m));
302   xbt_assert(errcode==0, "pthread_mutex_lock(%p) failed: %s", mutex, strerror(errcode));
303 }
304
305 void xbt_os_mutex_release(xbt_os_mutex_t mutex)
306 {
307   int errcode = pthread_mutex_unlock(&(mutex->m));
308   xbt_assert(errcode==0, "pthread_mutex_unlock(%p) failed: %s", mutex, strerror(errcode));
309 }
310
311 void xbt_os_mutex_destroy(xbt_os_mutex_t mutex)
312 {
313   if (!mutex)
314     return;
315
316   int errcode = pthread_mutex_destroy(&(mutex->m));
317   xbt_assert(errcode == 0, "pthread_mutex_destroy(%p) failed: %s", mutex, strerror(errcode));
318   free(mutex);
319 }
320
321 /***** condition related functions *****/
322 typedef struct xbt_os_cond_ {
323   pthread_cond_t c;
324 } s_xbt_os_cond_t;
325
326 xbt_os_cond_t xbt_os_cond_init(void)
327 {
328   xbt_os_cond_t res = xbt_new(s_xbt_os_cond_t, 1);
329   int errcode = pthread_cond_init(&(res->c), NULL);
330   xbt_assert(errcode==0, "pthread_cond_init() failed: %s", strerror(errcode));
331   return res;
332 }
333
334 void xbt_os_cond_wait(xbt_os_cond_t cond, xbt_os_mutex_t mutex)
335 {
336   int errcode = pthread_cond_wait(&(cond->c), &(mutex->m));
337   xbt_assert(errcode==0, "pthread_cond_wait(%p,%p) failed: %s", cond, mutex, strerror(errcode));
338 }
339
340 void xbt_os_cond_signal(xbt_os_cond_t cond)
341 {
342   int errcode = pthread_cond_signal(&(cond->c));
343   xbt_assert(errcode==0, "pthread_cond_signal(%p) failed: %s", cond, strerror(errcode));
344 }
345
346 void xbt_os_cond_broadcast(xbt_os_cond_t cond)
347 {
348   int errcode = pthread_cond_broadcast(&(cond->c));
349   xbt_assert(errcode==0, "pthread_cond_broadcast(%p) failed: %s", cond, strerror(errcode));
350 }
351
352 void xbt_os_cond_destroy(xbt_os_cond_t cond)
353 {
354   if (!cond)
355     return;
356
357   int errcode = pthread_cond_destroy(&(cond->c));
358   xbt_assert(errcode==0, "pthread_cond_destroy(%p) failed: %s", cond, strerror(errcode));
359   free(cond);
360 }
361
362 typedef struct xbt_os_sem_ {
363 #if !HAVE_SEM_INIT
364   char *name;
365 #endif
366   sem_t s;
367   sem_t *ps;
368 } s_xbt_os_sem_t;
369
370 #ifndef SEM_FAILED
371 #define SEM_FAILED (-1)
372 #endif
373
374 xbt_os_sem_t xbt_os_sem_init(unsigned int value)
375 {
376   xbt_os_sem_t res = xbt_new(s_xbt_os_sem_t, 1);
377
378   /* On some systems (MAC OS X), only the stub of sem_init is to be found.
379    * Any attempt to use it leads to ENOSYS (function not implemented).
380    * If such a prehistoric system is detected, do the job with sem_open instead
381    */
382 #if HAVE_SEM_INIT
383   if (sem_init(&(res->s), 0, value) != 0)
384     THROWF(system_error, errno, "sem_init() failed: %s", strerror(errno));
385   res->ps = &(res->s);
386
387 #else                           /* damn, no sem_init(). Reimplement it */
388
389   xbt_os_mutex_acquire(next_sem_ID_lock);
390   res->name = bprintf("/sg-%d", ++next_sem_ID);
391   xbt_os_mutex_release(next_sem_ID_lock);
392
393   sem_unlink(res->name);
394   res->ps = sem_open(res->name, O_CREAT, 0644, value);
395   if ((res->ps == (sem_t *) SEM_FAILED) && (errno == ENAMETOOLONG)) {
396     /* Old darwins only allow 13 chars. Did you create *that* amount of semaphores? */
397     res->name[13] = '\0';
398     sem_unlink(res->name);
399     res->ps = sem_open(res->name, O_CREAT, 0644, value);
400   }
401   if (res->ps == (sem_t *) SEM_FAILED)
402     THROWF(system_error, errno, "sem_open() failed: %s", strerror(errno));
403
404   /* Remove the name from the semaphore namespace: we never join on it */
405   if (sem_unlink(res->name) < 0)
406     THROWF(system_error, errno, "sem_unlink() failed: %s",
407            strerror(errno));
408
409 #endif
410
411   return res;
412 }
413
414 void xbt_os_sem_acquire(xbt_os_sem_t sem)
415 {
416   if (sem_wait(sem->ps) < 0)
417     THROWF(system_error, errno, "sem_wait() failed: %s", strerror(errno));
418 }
419
420 void xbt_os_sem_release(xbt_os_sem_t sem)
421 {
422   if (sem_post(sem->ps) < 0)
423     THROWF(system_error, errno, "sem_post() failed: %s", strerror(errno));
424 }
425
426 void xbt_os_sem_destroy(xbt_os_sem_t sem)
427 {
428 #if HAVE_SEM_INIT
429   if (sem_destroy(sem->ps) < 0)
430     THROWF(system_error, errno, "sem_destroy() failed: %s", strerror(errno));
431 #else
432   if (sem_close(sem->ps) < 0)
433     THROWF(system_error, errno, "sem_close() failed: %s", strerror(errno));
434   xbt_free(sem->name);
435 #endif
436   xbt_free(sem);
437 }
438
439 /** @brief Returns the amount of cores on the current host */
440 int xbt_os_get_numcores(void) {
441 #ifdef WIN32
442     SYSTEM_INFO sysinfo;
443     GetSystemInfo(&sysinfo);
444     return sysinfo.dwNumberOfProcessors;
445 #elif defined(__APPLE__) && defined(__MACH__)
446     int nm[2];
447     size_t len = 4;
448     uint32_t count;
449
450     nm[0] = CTL_HW; nm[1] = HW_AVAILCPU;
451     sysctl(nm, 2, &count, &len, NULL, 0);
452
453     if(count < 1) {
454         nm[1] = HW_NCPU;
455         sysctl(nm, 2, &count, &len, NULL, 0);
456         if(count < 1) { count = 1; }
457     }
458     return count;
459 #else
460     return sysconf(_SC_NPROCESSORS_ONLN);
461 #endif
462 }
463
464 void xbt_os_thread_set_extra_data(void *data)
465 {
466   xbt_os_thread_self()->extra_data = data;
467 }
468
469 void *xbt_os_thread_get_extra_data(void)
470 {
471   xbt_os_thread_t thread = xbt_os_thread_self();
472   return thread ? thread->extra_data : NULL;
473 }