Fix up several inline assembler blocks so that they produce correct
[wine] / loader / kthread.c
1 /*
2  * pthread emulation based on kernel threads
3  *
4  * We can't use pthreads directly, so why not let libcs
5  * that want pthreads use Wine's own threading instead...
6  *
7  * Copyright 1999 Ove Kåven
8  * Copyright 2003 Alexandre Julliard
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 struct _pthread_cleanup_buffer;
29
30 #include <assert.h>
31 #include <errno.h>
32 #include <stdlib.h>
33 #include <signal.h>
34 #include <setjmp.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <string.h>
39 #include <sys/types.h>
40 #ifdef HAVE_SYS_SOCKET_H
41 # include <sys/socket.h>
42 #endif
43 #ifdef HAVE_SYS_MMAN_H
44 #include <sys/mman.h>
45 #endif
46 #ifdef HAVE_NETINET_IN_H
47 # include <netinet/in.h>
48 #endif
49 #ifdef HAVE_ARPA_NAMESER_H
50 # include <arpa/nameser.h>
51 #endif
52 #ifdef HAVE_RESOLV_H
53 # include <resolv.h>
54 #endif
55 #ifdef HAVE_VALGRIND_MEMCHECK_H
56 #include <valgrind/memcheck.h>
57 #endif
58 #ifdef HAVE_SYS_SYSCALL_H
59 # include <sys/syscall.h>
60 #endif
61 #ifdef HAVE_SYS_LWP_H
62 # include <sys/lwp.h>
63 #endif
64 #ifdef HAVE_UCONTEXT_H
65 # include <ucontext.h>
66 #endif
67 #ifdef HAVE_SCHED_H
68 #include <sched.h>
69 #endif
70
71 #include "wine/library.h"
72 #include "wine/pthread.h"
73
74 #define P_OUTPUT(stuff) write(2,stuff,strlen(stuff))
75
76 #define PSTR(str) __ASM_NAME(#str)
77
78 static struct wine_pthread_functions funcs;
79
80 /* thread descriptor */
81
82 #define FIRST_KEY 0
83 #define MAX_KEYS 16 /* libc6 doesn't use that many, but... */
84 #define MAX_TSD  16
85
86 struct pthread_descr_struct
87 {
88     char               dummy[2048];
89     int                thread_errno;
90     int                thread_h_errno;
91     int                cancel_state;
92     int                cancel_type;
93     struct __res_state res_state;
94     const void        *key_data[MAX_KEYS];  /* for normal pthread keys */
95     const void        *tsd_data[MAX_TSD];   /* for libc internal tsd variables */
96 };
97
98 typedef struct pthread_descr_struct *pthread_descr;
99
100 static struct pthread_descr_struct initial_descr;
101
102 pthread_descr __pthread_thread_self(void)
103 {
104     struct pthread_descr_struct *descr;
105     if (!funcs.ptr_get_thread_data) return &initial_descr;
106     descr = funcs.ptr_get_thread_data();
107     if (!descr) return &initial_descr;
108     return descr;
109 }
110
111 static int (*libc_uselocale)(int set);
112 static int *libc_multiple_threads;
113
114 /***********************************************************************
115  *           __errno_location/__error/__errno/___errno/__thr_errno
116  *
117  * Get the per-thread errno location.
118  */
119 int *__errno_location(void)                            /* Linux */
120 {
121     pthread_descr descr = __pthread_thread_self();
122     return &descr->thread_errno;
123 }
124 int *__error(void)     { return __errno_location(); }  /* FreeBSD */
125 int *__errno(void)     { return __errno_location(); }  /* NetBSD */
126 int *___errno(void)    { return __errno_location(); }  /* Solaris */
127 int *__thr_errno(void) { return __errno_location(); }  /* UnixWare */
128
129 /***********************************************************************
130  *           __h_errno_location
131  *
132  * Get the per-thread h_errno location.
133  */
134 int *__h_errno_location(void)
135 {
136     pthread_descr descr = __pthread_thread_self();
137     return &descr->thread_h_errno;
138 }
139
140 struct __res_state *__res_state(void)
141 {
142     pthread_descr descr = __pthread_thread_self();
143     return &descr->res_state;
144 }
145
146 static inline void writejump( const char *symbol, void *dest )
147 {
148 #if defined(__GLIBC__) && defined(__i386__)
149     unsigned char *addr = wine_dlsym( RTLD_NEXT, symbol, NULL, 0 );
150
151     if (!addr) return;
152
153     /* write a relative jump at the function address */
154     mprotect((void*)((unsigned int)addr & ~(getpagesize()-1)), 5, PROT_READ|PROT_EXEC|PROT_WRITE);
155     addr[0] = 0xe9;
156     *(int *)(addr+1) = (unsigned char *)dest - (addr + 5);
157     mprotect((void*)((unsigned int)addr & ~(getpagesize()-1)), 5, PROT_READ|PROT_EXEC);
158
159 # ifdef HAVE_VALGRIND_MEMCHECK_H
160     VALGRIND_DISCARD_TRANSLATIONS( addr, 5 );
161 # endif
162 #endif  /* __GLIBC__ && __i386__ */
163 }
164
165 /* temporary stacks used on thread exit */
166 #define TEMP_STACK_SIZE 1024
167 #define NB_TEMP_STACKS  8
168 static char temp_stacks[NB_TEMP_STACKS][TEMP_STACK_SIZE];
169 static LONG next_temp_stack;  /* next temp stack to use */
170
171 /***********************************************************************
172  *           get_temp_stack
173  *
174  * Get a temporary stack address to run the thread exit code on.
175  */
176 inline static char *get_temp_stack(void)
177 {
178     unsigned int next = interlocked_xchg_add( &next_temp_stack, 1 );
179     return temp_stacks[next % NB_TEMP_STACKS] + TEMP_STACK_SIZE;
180 }
181
182
183 /***********************************************************************
184  *           cleanup_thread
185  *
186  * Cleanup the remains of a thread. Runs on a temporary stack.
187  */
188 static void cleanup_thread( void *ptr )
189 {
190     /* copy the info structure since it is on the stack we will free */
191     struct wine_pthread_thread_info info = *(struct wine_pthread_thread_info *)ptr;
192     wine_ldt_free_fs( info.teb_sel );
193     munmap( info.stack_base, info.stack_size );
194     munmap( info.teb_base, info.teb_size );
195 #ifdef HAVE__LWP_CREATE
196     _lwp_exit();
197 #endif
198     _exit( info.exit_status );
199 }
200
201
202 /***********************************************************************
203  *           wine_pthread_init_process
204  *
205  * Initialization for a newly created process.
206  */
207 void wine_pthread_init_process( const struct wine_pthread_functions *functions )
208 {
209     memcpy( &funcs, functions, min(functions->size,sizeof(funcs)) );
210     funcs.ptr_set_thread_data( &initial_descr );
211 }
212
213
214 /***********************************************************************
215  *           wine_pthread_init_thread
216  *
217  * Initialization for a newly created thread.
218  */
219 void wine_pthread_init_thread( struct wine_pthread_thread_info *info )
220 {
221     struct pthread_descr_struct *descr;
222
223     if (funcs.ptr_set_thread_data)
224     {
225         descr = calloc( 1, sizeof(*descr) );
226         funcs.ptr_set_thread_data( descr );
227         if (libc_multiple_threads) *libc_multiple_threads = 1;
228     }
229     else  /* first thread */
230     {
231         descr = &initial_descr;
232         writejump( "__errno_location", __errno_location );
233         writejump( "__h_errno_location", __h_errno_location );
234         writejump( "__res_state", __res_state );
235     }
236     descr->cancel_state = PTHREAD_CANCEL_ENABLE;
237     descr->cancel_type  = PTHREAD_CANCEL_ASYNCHRONOUS;
238     if (libc_uselocale) libc_uselocale( -1 /*LC_GLOBAL_LOCALE*/ );
239 }
240
241
242 /***********************************************************************
243  *           wine_pthread_create_thread
244  */
245 int wine_pthread_create_thread( struct wine_pthread_thread_info *info )
246 {
247     if (!info->stack_base)
248     {
249         info->stack_base = wine_anon_mmap( NULL, info->stack_size,
250                                            PROT_READ | PROT_WRITE | PROT_EXEC, 0 );
251         if (info->stack_base == (void *)-1) return -1;
252     }
253 #ifdef HAVE_CLONE
254     if (clone( (int (*)(void *))info->entry, (char *)info->stack_base + info->stack_size,
255                CLONE_VM | CLONE_FS | CLONE_FILES | SIGCHLD, info ) < 0)
256         return -1;
257     return 0;
258 #elif defined(HAVE_RFORK)
259     {
260         void **sp = (void **)((char *)info->stack_base + info->stack_size);
261         *--sp = info;
262         *--sp = 0;
263         *--sp = info->entry;
264         __asm__ __volatile__(
265             "pushl %2;\n\t"             /* flags */
266             "pushl $0;\n\t"             /* 0 ? */
267             "movl %1,%%eax;\n\t"        /* SYS_rfork */
268             ".byte 0x9a; .long 0; .word 7;\n\t" /* lcall 7:0... FreeBSD syscall */
269             "cmpl $0, %%edx;\n\t"
270             "je 1f;\n\t"
271             "movl %0,%%esp;\n\t"        /* child -> new thread */
272             "ret;\n"
273             "1:\n\t"                    /* parent -> caller thread */
274             "addl $8,%%esp" :
275             : "r" (sp), "r" (SYS_rfork), "r" (RFPROC | RFMEM | RFTHREAD)
276             : "eax", "edx");
277         return 0;
278     }
279 #elif defined(HAVE__LWP_CREATE)
280     {
281         ucontext_t context;
282         _lwp_makecontext( &context, (void(*)(void *))info->entry, info,
283                           NULL, info->stack_base, info->stack_size );
284         if ( _lwp_create( &context, 0, NULL ) )
285             return -1;
286         return 0;
287     }
288 #endif
289     return -1;
290 }
291
292
293 /***********************************************************************
294  *           wine_pthread_init_current_teb
295  *
296  * Set the current TEB for a new thread.
297  */
298 void wine_pthread_init_current_teb( struct wine_pthread_thread_info *info )
299 {
300 #ifdef __i386__
301     /* On the i386, the current thread is in the %fs register */
302     LDT_ENTRY fs_entry;
303
304     wine_ldt_set_base( &fs_entry, info->teb_base );
305     wine_ldt_set_limit( &fs_entry, info->teb_size - 1 );
306     wine_ldt_set_flags( &fs_entry, WINE_LDT_FLAGS_DATA|WINE_LDT_FLAGS_32BIT );
307     wine_ldt_init_fs( info->teb_sel, &fs_entry );
308 #elif defined(HAVE__LWP_CREATE)
309     /* On non-i386 Solaris, we use the LWP private pointer */
310     _lwp_setprivate( info->teb_base );
311 #elif defined(__powerpc__)
312     /* On PowerPC, the current TEB is in the gpr13 register */
313 # ifdef __APPLE__
314     __asm__ __volatile__("mr r13, %0" : : "r" (info->teb_base));
315 # else
316     __asm__ __volatile__("mr 2, %0" : : "r" (info->teb_base));
317 # endif
318 #elif defined(__ALPHA__)
319     /* FIXME: On Alpha, the current TEB is not accessible to user-space */
320 /*    __asm__ __volatile__();*/
321 #else
322 # error You must implement wine_pthread_init_current_teb for your platform
323 #endif
324
325     /* set pid and tid */
326     info->pid = getpid();
327 #ifdef HAVE__LWP_SELF
328     info->tid = _lwp_self();
329 #else
330     info->tid = -1;
331 #endif
332 }
333
334
335 /***********************************************************************
336  *           wine_pthread_get_current_teb
337  */
338 void *wine_pthread_get_current_teb(void)
339 {
340     void *ret;
341
342 #ifdef __i386__
343     __asm__( ".byte 0x64\n\tmovl 0x18,%0" : "=r" (ret) );
344 #elif defined(HAVE__LWP_CREATE)
345     ret = _lwp_getprivate();
346 #elif defined(__powerpc__)
347 # ifdef __APPLE__
348     __asm__( "mr %0,r13" : "=r" (ret) );
349 # else
350     __asm__( "mr %0,2" : "=r" (ret) );
351 # endif
352 #elif defined(__ALPHA__)
353     /* 0x00ab is the PAL opcode for rdteb */
354     __asm__( "lda $30,8($30)\n\t"
355              "stq $0,0($30)\n\t"
356              "call_pal 0x00ab\n\t"
357              "mov $0,%0\n\t"
358              "ldq $0,0($30)\n\t"
359              "lda $30,-8($30)" : "=r" (ret) );
360 #else
361 # error wine_pthread_get_current_teb not defined for this architecture
362 #endif  /* __i386__ */
363
364     return ret;
365 }
366
367
368 /***********************************************************************
369  *           wine_pthread_exit_thread
370  */
371 void wine_pthread_exit_thread( struct wine_pthread_thread_info *info )
372 {
373     wine_switch_to_stack( cleanup_thread, info, get_temp_stack() );
374 }
375
376
377 /***********************************************************************
378  *           wine_pthread_abort_thread
379  */
380 void wine_pthread_abort_thread( int status )
381 {
382 #ifdef HAVE__LWP_CREATE
383     _lwp_exit();
384 #endif
385     _exit( status );
386 }
387
388
389 /* Currently this probably works only for glibc2,
390  * which checks for the presence of double-underscore-prepended
391  * pthread primitives, and use them if available.
392  * If they are not available, the libc defaults to
393  * non-threadsafe operation (not good). */
394
395 #if defined(HAVE_PTHREAD_H) && (defined(__GLIBC__) || defined(__FreeBSD__))
396
397 /* adapt as necessary (a construct like this is used in glibc sources) */
398 #define strong_alias(orig, alias) \
399  asm(".globl " PSTR(alias) "\n" \
400      "\t.set " PSTR(alias) "," PSTR(orig))
401
402 struct fork_block;
403
404 /* pthread functions redirection */
405
406 struct pthread_functions
407 {
408   pid_t (*ptr_pthread_fork) (struct fork_block *);
409   int (*ptr_pthread_attr_destroy) (pthread_attr_t *);
410   int (*ptr___pthread_attr_init_2_0) (pthread_attr_t *);
411   int (*ptr___pthread_attr_init_2_1) (pthread_attr_t *);
412   int (*ptr_pthread_attr_getdetachstate) (const pthread_attr_t *, int *);
413   int (*ptr_pthread_attr_setdetachstate) (pthread_attr_t *, int);
414   int (*ptr_pthread_attr_getinheritsched) (const pthread_attr_t *, int *);
415   int (*ptr_pthread_attr_setinheritsched) (pthread_attr_t *, int);
416   int (*ptr_pthread_attr_getschedparam) (const pthread_attr_t *, struct sched_param *);
417   int (*ptr_pthread_attr_setschedparam) (pthread_attr_t *, const struct sched_param *);
418   int (*ptr_pthread_attr_getschedpolicy) (const pthread_attr_t *, int *);
419   int (*ptr_pthread_attr_setschedpolicy) (pthread_attr_t *, int);
420   int (*ptr_pthread_attr_getscope) (const pthread_attr_t *, int *);
421   int (*ptr_pthread_attr_setscope) (pthread_attr_t *, int);
422   int (*ptr_pthread_condattr_destroy) (pthread_condattr_t *);
423   int (*ptr_pthread_condattr_init) (pthread_condattr_t *);
424   int (*ptr___pthread_cond_broadcast) (pthread_cond_t *);
425   int (*ptr___pthread_cond_destroy) (pthread_cond_t *);
426   int (*ptr___pthread_cond_init) (pthread_cond_t *, const pthread_condattr_t *);
427   int (*ptr___pthread_cond_signal) (pthread_cond_t *);
428   int (*ptr___pthread_cond_wait) (pthread_cond_t *, pthread_mutex_t *);
429   int (*ptr_pthread_equal) (pthread_t, pthread_t);
430   void (*ptr___pthread_exit) (void *);
431   int (*ptr_pthread_getschedparam) (pthread_t, int *, struct sched_param *);
432   int (*ptr_pthread_setschedparam) (pthread_t, int, const struct sched_param *);
433   int (*ptr_pthread_mutex_destroy) (pthread_mutex_t *);
434   int (*ptr_pthread_mutex_init) (pthread_mutex_t *, const pthread_mutexattr_t *);
435   int (*ptr_pthread_mutex_lock) (pthread_mutex_t *);
436   int (*ptr_pthread_mutex_trylock) (pthread_mutex_t *);
437   int (*ptr_pthread_mutex_unlock) (pthread_mutex_t *);
438   pthread_t (*ptr_pthread_self) (void);
439   int (*ptr_pthread_setcancelstate) (int, int *);
440   int (*ptr_pthread_setcanceltype) (int, int *);
441   void (*ptr_pthread_do_exit) (void *retval, char *currentframe);
442   void (*ptr_pthread_cleanup_upto) (jmp_buf target, char *targetframe);
443   pthread_descr (*ptr_pthread_thread_self) (void);
444   int (*ptr_pthread_internal_tsd_set) (int key, const void *pointer);
445   void * (*ptr_pthread_internal_tsd_get) (int key);
446   void ** __attribute__ ((__const__)) (*ptr_pthread_internal_tsd_address) (int key);
447   int (*ptr_pthread_sigaction) (int sig, const struct sigaction * act, struct sigaction *oact);
448   int (*ptr_pthread_sigwait) (const sigset_t *set, int *sig);
449   int (*ptr_pthread_raise) (int sig);
450   int (*ptr___pthread_cond_timedwait) (pthread_cond_t *, pthread_mutex_t *, const struct timespec *);
451   void (*ptr__pthread_cleanup_push) (struct _pthread_cleanup_buffer * buffer, void (*routine)(void *), void * arg);
452   void (*ptr__pthread_cleanup_pop) (struct _pthread_cleanup_buffer * buffer, int execute);
453 };
454
455 static pid_t (*libc_fork)(void);
456 static int (*libc_sigaction)(int signum, const struct sigaction *act, struct sigaction *oldact);
457 static int *(*libc_pthread_init)( const struct pthread_functions *funcs );
458
459 static struct pthread_functions libc_pthread_functions;
460
461 strong_alias(__pthread_thread_self, pthread_thread_self);
462
463 /* redefine this to prevent libpthread from overriding our function pointers */
464 int *__libc_pthread_init( const struct pthread_functions *funcs )
465 {
466     return libc_multiple_threads;
467 }
468
469 typedef struct _wine_cleanup {
470   void (*routine)(void *);
471   void *arg;
472 } *wine_cleanup;
473
474 int pthread_create(pthread_t* thread, const pthread_attr_t* attr, void*
475         (*start_routine)(void *), void* arg)
476 {
477     assert( funcs.ptr_pthread_create );
478     return funcs.ptr_pthread_create( thread, attr, start_routine, arg );
479 }
480
481 int pthread_cancel(pthread_t thread)
482 {
483     assert( funcs.ptr_pthread_cancel );
484     return funcs.ptr_pthread_cancel( thread );
485 }
486
487 int pthread_join(pthread_t thread, void **value_ptr)
488 {
489     assert( funcs.ptr_pthread_join );
490     return funcs.ptr_pthread_join( thread, value_ptr );
491 }
492
493 int pthread_detach(pthread_t thread)
494 {
495     assert( funcs.ptr_pthread_detach );
496     return funcs.ptr_pthread_detach( thread );
497 }
498
499 /* FIXME: we have no equivalents in win32 for the policys */
500 /* so just keep this as a stub */
501 int pthread_attr_setschedpolicy(pthread_attr_t *attr, int policy)
502 {
503   P_OUTPUT("FIXME:pthread_attr_setschedpolicy\n");
504   return 0;
505 }
506
507 /* FIXME: no win32 equivalent for scope */
508 int pthread_attr_setscope(pthread_attr_t *attr, int scope)
509 {
510   P_OUTPUT("FIXME:pthread_attr_setscope\n");
511   return 0; /* return success */
512 }
513
514 /* FIXME: no win32 equivalent for schedule param */
515 int pthread_attr_setschedparam(pthread_attr_t *attr,
516     const struct sched_param *param)
517 {
518   P_OUTPUT("FIXME:pthread_attr_setschedparam\n");
519   return 0; /* return success */
520 }
521
522 /* FIXME */
523 int pthread_attr_setstack(pthread_attr_t *attr, void *addr, size_t size)
524 {
525   return 0; /* return success */
526 }
527
528 int __pthread_once(pthread_once_t *once_control, void (*init_routine)(void))
529 {
530     static pthread_once_t the_once = PTHREAD_ONCE_INIT;
531     long once_now;
532
533     memcpy(&once_now,&the_once,sizeof(once_now));
534     if (interlocked_cmpxchg((long*)once_control, once_now+1, once_now) == once_now)
535         (*init_routine)();
536     return 0;
537 }
538 strong_alias(__pthread_once, pthread_once);
539
540 void __pthread_kill_other_threads_np(void)
541 {
542     /* we don't need to do anything here */
543 }
544 strong_alias(__pthread_kill_other_threads_np, pthread_kill_other_threads_np);
545
546 /***** atfork *****/
547
548 #define MAX_ATFORK 8  /* libc doesn't need that many anyway */
549
550 static pthread_mutex_t atfork_mutex = PTHREAD_MUTEX_INITIALIZER;
551
552 typedef void (*atfork_handler)();
553 static atfork_handler atfork_prepare[MAX_ATFORK];
554 static atfork_handler atfork_parent[MAX_ATFORK];
555 static atfork_handler atfork_child[MAX_ATFORK];
556 static int atfork_count;
557
558 int __pthread_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void))
559 {
560     pthread_mutex_lock( &atfork_mutex );
561     assert( atfork_count < MAX_ATFORK );
562     atfork_prepare[atfork_count] = prepare;
563     atfork_parent[atfork_count] = parent;
564     atfork_child[atfork_count] = child;
565     atfork_count++;
566     pthread_mutex_unlock( &atfork_mutex );
567     return 0;
568 }
569 strong_alias(__pthread_atfork, pthread_atfork);
570
571 pid_t __fork(void)
572 {
573     pid_t pid;
574     int i;
575
576     if (!libc_fork)
577     {
578         libc_fork = wine_dlsym( RTLD_NEXT, "fork", NULL, 0 );
579         assert( libc_fork );
580     }
581     pthread_mutex_lock( &atfork_mutex );
582     /* prepare handlers are called in reverse insertion order */
583     for (i = atfork_count - 1; i >= 0; i--) if (atfork_prepare[i]) atfork_prepare[i]();
584     if (!(pid = libc_fork()))
585     {
586         pthread_mutex_init( &atfork_mutex, NULL );
587         for (i = 0; i < atfork_count; i++) if (atfork_child[i]) atfork_child[i]();
588     }
589     else
590     {
591         for (i = 0; i < atfork_count; i++) if (atfork_parent[i]) atfork_parent[i]();
592         pthread_mutex_unlock( &atfork_mutex );
593     }
594     return pid;
595 }
596 strong_alias(__fork, fork);
597
598 /***** MUTEXES *****/
599
600 int __pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *mutexattr)
601 {
602     if (!funcs.ptr_pthread_mutex_init) return 0;
603     return funcs.ptr_pthread_mutex_init( mutex, mutexattr );
604 }
605 strong_alias(__pthread_mutex_init, pthread_mutex_init);
606
607 int __pthread_mutex_lock(pthread_mutex_t *mutex)
608 {
609     if (!funcs.ptr_pthread_mutex_lock) return 0;
610     return funcs.ptr_pthread_mutex_lock( mutex );
611 }
612 strong_alias(__pthread_mutex_lock, pthread_mutex_lock);
613
614 int __pthread_mutex_trylock(pthread_mutex_t *mutex)
615 {
616     if (!funcs.ptr_pthread_mutex_trylock) return 0;
617     return funcs.ptr_pthread_mutex_trylock( mutex );
618 }
619 strong_alias(__pthread_mutex_trylock, pthread_mutex_trylock);
620
621 int __pthread_mutex_unlock(pthread_mutex_t *mutex)
622 {
623     if (!funcs.ptr_pthread_mutex_unlock) return 0;
624     return funcs.ptr_pthread_mutex_unlock( mutex );
625 }
626 strong_alias(__pthread_mutex_unlock, pthread_mutex_unlock);
627
628 int __pthread_mutex_destroy(pthread_mutex_t *mutex)
629 {
630     if (!funcs.ptr_pthread_mutex_destroy) return 0;
631     return funcs.ptr_pthread_mutex_destroy( mutex );
632 }
633 strong_alias(__pthread_mutex_destroy, pthread_mutex_destroy);
634
635
636 /***** MUTEX ATTRIBUTES *****/
637 /* just dummies, since critical sections are always recursive */
638
639 int __pthread_mutexattr_init(pthread_mutexattr_t *attr)
640 {
641   return 0;
642 }
643 strong_alias(__pthread_mutexattr_init, pthread_mutexattr_init);
644
645 int __pthread_mutexattr_destroy(pthread_mutexattr_t *attr)
646 {
647   return 0;
648 }
649 strong_alias(__pthread_mutexattr_destroy, pthread_mutexattr_destroy);
650
651 int __pthread_mutexattr_setkind_np(pthread_mutexattr_t *attr, int kind)
652 {
653   return 0;
654 }
655 strong_alias(__pthread_mutexattr_setkind_np, pthread_mutexattr_setkind_np);
656
657 int __pthread_mutexattr_getkind_np(pthread_mutexattr_t *attr, int *kind)
658 {
659   *kind = PTHREAD_MUTEX_RECURSIVE;
660   return 0;
661 }
662 strong_alias(__pthread_mutexattr_getkind_np, pthread_mutexattr_getkind_np);
663
664 int __pthread_mutexattr_settype(pthread_mutexattr_t *attr, int kind)
665 {
666   return 0;
667 }
668 strong_alias(__pthread_mutexattr_settype, pthread_mutexattr_settype);
669
670 int __pthread_mutexattr_gettype(const pthread_mutexattr_t *attr, int *kind)
671 {
672   *kind = PTHREAD_MUTEX_RECURSIVE;
673   return 0;
674 }
675 strong_alias(__pthread_mutexattr_gettype, pthread_mutexattr_gettype);
676
677
678 /***** THREAD-SPECIFIC VARIABLES (KEYS) *****/
679
680 int __pthread_key_create(pthread_key_t *key, void (*destr_function)(void *))
681 {
682     static long keycnt = FIRST_KEY;
683     *key = interlocked_xchg_add(&keycnt, 1);
684     return 0;
685 }
686 strong_alias(__pthread_key_create, pthread_key_create);
687
688 int __pthread_key_delete(pthread_key_t key)
689 {
690   return 0;
691 }
692 strong_alias(__pthread_key_delete, pthread_key_delete);
693
694 int __pthread_setspecific(pthread_key_t key, const void *pointer)
695 {
696     pthread_descr descr = __pthread_thread_self();
697     descr->key_data[key] = pointer;
698     return 0;
699 }
700 strong_alias(__pthread_setspecific, pthread_setspecific);
701
702 void *__pthread_getspecific(pthread_key_t key)
703 {
704     pthread_descr descr = __pthread_thread_self();
705     return (void *)descr->key_data[key];
706 }
707 strong_alias(__pthread_getspecific, pthread_getspecific);
708
709 static int pthread_internal_tsd_set( int key, const void *pointer )
710 {
711     pthread_descr descr = __pthread_thread_self();
712     descr->tsd_data[key] = pointer;
713     return 0;
714 }
715 int (*__libc_internal_tsd_set)(int, const void *) = pthread_internal_tsd_set;
716
717 static void *pthread_internal_tsd_get( int key )
718 {
719     pthread_descr descr = __pthread_thread_self();
720     return (void *)descr->tsd_data[key];
721 }
722 void* (*__libc_internal_tsd_get)(int) = pthread_internal_tsd_get;
723
724 static void ** __attribute__((const)) pthread_internal_tsd_address( int key )
725 {
726     pthread_descr descr = __pthread_thread_self();
727     return (void **)&descr->tsd_data[key];
728 }
729 void** (*__libc_internal_tsd_address)(int) = pthread_internal_tsd_address;
730
731 /***** "EXCEPTION" FRAMES *****/
732 /* not implemented right now */
733
734 void _pthread_cleanup_push(struct _pthread_cleanup_buffer *buffer, void (*routine)(void *), void *arg)
735 {
736   ((wine_cleanup)buffer)->routine = routine;
737   ((wine_cleanup)buffer)->arg = arg;
738 }
739
740 void _pthread_cleanup_pop(struct _pthread_cleanup_buffer *buffer, int execute)
741 {
742   if (execute) (*(((wine_cleanup)buffer)->routine))(((wine_cleanup)buffer)->arg);
743 }
744
745 void _pthread_cleanup_push_defer(struct _pthread_cleanup_buffer *buffer, void (*routine)(void *), void *arg)
746 {
747   _pthread_cleanup_push(buffer, routine, arg);
748 }
749
750 void _pthread_cleanup_pop_restore(struct _pthread_cleanup_buffer *buffer, int execute)
751 {
752   _pthread_cleanup_pop(buffer, execute);
753 }
754
755 void __pthread_cleanup_upto(jmp_buf target, char *frame)
756 {
757     /* FIXME */
758 }
759
760 /***** CONDITIONS *****/
761
762 int __pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *cond_attr)
763 {
764     if (!funcs.ptr_pthread_cond_init) return 0;
765     return funcs.ptr_pthread_cond_init(cond, cond_attr);
766 }
767 strong_alias(__pthread_cond_init, pthread_cond_init);
768
769 int __pthread_cond_destroy(pthread_cond_t *cond)
770 {
771     if (!funcs.ptr_pthread_cond_destroy) return 0;
772     return funcs.ptr_pthread_cond_destroy(cond);
773 }
774 strong_alias(__pthread_cond_destroy, pthread_cond_destroy);
775
776 int __pthread_cond_signal(pthread_cond_t *cond)
777 {
778     if (!funcs.ptr_pthread_cond_signal) return 0;
779     return funcs.ptr_pthread_cond_signal(cond);
780 }
781 strong_alias(__pthread_cond_signal, pthread_cond_signal);
782
783 int __pthread_cond_broadcast(pthread_cond_t *cond)
784 {
785     if (!funcs.ptr_pthread_cond_broadcast) return 0;
786     return funcs.ptr_pthread_cond_broadcast(cond);
787 }
788 strong_alias(__pthread_cond_broadcast, pthread_cond_broadcast);
789
790 int __pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
791 {
792     if (!funcs.ptr_pthread_cond_wait) return 0;
793     return funcs.ptr_pthread_cond_wait(cond, mutex);
794 }
795 strong_alias(__pthread_cond_wait, pthread_cond_wait);
796
797 int __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec *abstime)
798 {
799     if (!funcs.ptr_pthread_cond_timedwait) return 0;
800     return funcs.ptr_pthread_cond_timedwait(cond, mutex, abstime);
801 }
802 strong_alias(__pthread_cond_timedwait, pthread_cond_timedwait);
803
804 /**** CONDITION ATTRIBUTES *****/
805 /* not implemented right now */
806
807 int pthread_condattr_init(pthread_condattr_t *attr)
808 {
809   return 0;
810 }
811
812 int pthread_condattr_destroy(pthread_condattr_t *attr)
813 {
814   return 0;
815 }
816
817 /***** READ-WRITE LOCKS *****/
818
819 int __pthread_rwlock_init(pthread_rwlock_t *rwlock, const pthread_rwlockattr_t *rwlock_attr)
820 {
821     assert( funcs.ptr_pthread_rwlock_init );
822     return funcs.ptr_pthread_rwlock_init( rwlock, rwlock_attr );
823 }
824 strong_alias(__pthread_rwlock_init, pthread_rwlock_init);
825
826 int __pthread_rwlock_destroy(pthread_rwlock_t *rwlock)
827 {
828     assert( funcs.ptr_pthread_rwlock_destroy );
829     return funcs.ptr_pthread_rwlock_destroy( rwlock );
830 }
831 strong_alias(__pthread_rwlock_destroy, pthread_rwlock_destroy);
832
833 int __pthread_rwlock_rdlock(pthread_rwlock_t *rwlock)
834 {
835     if (!funcs.ptr_pthread_rwlock_rdlock) return 0;
836     return funcs.ptr_pthread_rwlock_rdlock( rwlock );
837 }
838 strong_alias(__pthread_rwlock_rdlock, pthread_rwlock_rdlock);
839
840 int __pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock)
841 {
842     assert( funcs.ptr_pthread_rwlock_tryrdlock );
843     return funcs.ptr_pthread_rwlock_tryrdlock( rwlock );
844 }
845 strong_alias(__pthread_rwlock_tryrdlock, pthread_rwlock_tryrdlock);
846
847 int __pthread_rwlock_wrlock(pthread_rwlock_t *rwlock)
848 {
849     assert( funcs.ptr_pthread_rwlock_wrlock );
850     return funcs.ptr_pthread_rwlock_wrlock( rwlock );
851 }
852 strong_alias(__pthread_rwlock_wrlock, pthread_rwlock_wrlock);
853
854 int __pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock)
855 {
856     assert( funcs.ptr_pthread_rwlock_trywrlock );
857     return funcs.ptr_pthread_rwlock_trywrlock( rwlock );
858 }
859 strong_alias(__pthread_rwlock_trywrlock, pthread_rwlock_trywrlock);
860
861 int __pthread_rwlock_unlock(pthread_rwlock_t *rwlock)
862 {
863     if (!funcs.ptr_pthread_rwlock_unlock) return 0;
864     return funcs.ptr_pthread_rwlock_unlock( rwlock );
865 }
866 strong_alias(__pthread_rwlock_unlock, pthread_rwlock_unlock);
867
868 /**** READ-WRITE LOCK ATTRIBUTES *****/
869 /* not implemented right now */
870
871 int pthread_rwlockattr_init(pthread_rwlockattr_t *attr)
872 {
873   return 0;
874 }
875
876 int __pthread_rwlockattr_destroy(pthread_rwlockattr_t *attr)
877 {
878   return 0;
879 }
880 strong_alias(__pthread_rwlockattr_destroy, pthread_rwlockattr_destroy);
881
882 int pthread_rwlockattr_getkind_np(const pthread_rwlockattr_t *attr, int *pref)
883 {
884   *pref = 0;
885   return 0;
886 }
887
888 int pthread_rwlockattr_setkind_np(pthread_rwlockattr_t *attr, int pref)
889 {
890   return 0;
891 }
892
893 /***** MISC *****/
894
895 pthread_t pthread_self(void)
896 {
897     assert( funcs.ptr_pthread_self );
898     return funcs.ptr_pthread_self();
899 }
900
901 int pthread_equal(pthread_t thread1, pthread_t thread2)
902 {
903     assert( funcs.ptr_pthread_equal );
904     return funcs.ptr_pthread_equal( thread1, thread2 );
905 }
906
907 void __pthread_do_exit(void *retval, char *currentframe)
908 {
909     assert( funcs.ptr_pthread_exit );
910     return funcs.ptr_pthread_exit( retval, currentframe );
911 }
912
913 void __pthread_exit(void *retval)
914 {
915     __pthread_do_exit( retval, NULL );
916 }
917 strong_alias(__pthread_exit, pthread_exit);
918
919 int pthread_setcancelstate(int state, int *oldstate)
920 {
921     pthread_descr descr = __pthread_thread_self();
922     if (oldstate) *oldstate = descr->cancel_state;
923     descr->cancel_state = state;
924     return 0;
925 }
926
927 int pthread_setcanceltype(int type, int *oldtype)
928 {
929     pthread_descr descr = __pthread_thread_self();
930     if (oldtype) *oldtype = descr->cancel_type;
931     descr->cancel_type = type;
932     return 0;
933 }
934
935 /***** ANTI-OVERRIDES *****/
936 /* pthreads tries to override these, point them back to libc */
937
938 int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact)
939 {
940     if (!libc_sigaction)
941     {
942         libc_sigaction = wine_dlsym( RTLD_NEXT, "sigaction", NULL, 0 );
943         assert( libc_sigaction );
944     }
945     return libc_sigaction(signum, act, oldact);
946 }
947
948 void __pthread_initialize(void)
949 {
950     static int done;
951
952     if (!done)
953     {
954         done = 1;
955         libc_fork = wine_dlsym( RTLD_NEXT, "fork", NULL, 0 );
956         libc_sigaction = wine_dlsym( RTLD_NEXT, "sigaction", NULL, 0 );
957         libc_uselocale = wine_dlsym( RTLD_DEFAULT, "uselocale", NULL, 0 );
958         libc_pthread_init = wine_dlsym( RTLD_NEXT, "__libc_pthread_init", NULL, 0 );
959         if (libc_pthread_init) libc_multiple_threads = libc_pthread_init( &libc_pthread_functions );
960     }
961 }
962 DECL_GLOBAL_CONSTRUCTOR(init) { __pthread_initialize(); }
963
964 static struct pthread_functions libc_pthread_functions =
965 {
966     NULL,                          /* ptr_pthread_fork */
967     NULL, /* FIXME */              /* ptr_pthread_attr_destroy */
968     NULL, /* FIXME */              /* ptr___pthread_attr_init_2_0 */
969     NULL, /* FIXME */              /* ptr___pthread_attr_init_2_1 */
970     NULL, /* FIXME */              /* ptr_pthread_attr_getdetachstate */
971     NULL, /* FIXME */              /* ptr_pthread_attr_setdetachstate */
972     NULL, /* FIXME */              /* ptr_pthread_attr_getinheritsched */
973     NULL, /* FIXME */              /* ptr_pthread_attr_setinheritsched */
974     NULL, /* FIXME */              /* ptr_pthread_attr_getschedparam */
975     pthread_attr_setschedparam,    /* ptr_pthread_attr_setschedparam */
976     NULL, /* FIXME */              /* ptr_pthread_attr_getschedpolicy */
977     NULL, /* FIXME */              /* ptr_pthread_attr_setschedpolicy */
978     NULL, /* FIXME */              /* ptr_pthread_attr_getscope */
979     NULL, /* FIXME */              /* ptr_pthread_attr_setscope */
980     pthread_condattr_destroy,      /* ptr_pthread_condattr_destroy */
981     pthread_condattr_init,         /* ptr_pthread_condattr_init */
982     __pthread_cond_broadcast,      /* ptr___pthread_cond_broadcast */
983     __pthread_cond_destroy,        /* ptr___pthread_cond_destroy */
984     __pthread_cond_init,           /* ptr___pthread_cond_init */
985     __pthread_cond_signal,         /* ptr___pthread_cond_signal */
986     __pthread_cond_wait,           /* ptr___pthread_cond_wait */
987     pthread_equal,                 /* ptr_pthread_equal */
988     __pthread_exit,                /* ptr___pthread_exit */
989     NULL, /* FIXME */              /* ptr_pthread_getschedparam */
990     NULL, /* FIXME */              /* ptr_pthread_setschedparam */
991     __pthread_mutex_destroy,       /* ptr_pthread_mutex_destroy */
992     __pthread_mutex_init,          /* ptr_pthread_mutex_init */
993     __pthread_mutex_lock,          /* ptr_pthread_mutex_lock */
994     __pthread_mutex_trylock,       /* ptr_pthread_mutex_trylock */
995     __pthread_mutex_unlock,        /* ptr_pthread_mutex_unlock */
996     pthread_self,                  /* ptr_pthread_self */
997     pthread_setcancelstate,        /* ptr_pthread_setcancelstate */
998     pthread_setcanceltype,         /* ptr_pthread_setcanceltype */
999     __pthread_do_exit,             /* ptr_pthread_do_exit */
1000     __pthread_cleanup_upto,        /* ptr_pthread_cleanup_upto */
1001     __pthread_thread_self,         /* ptr_pthread_thread_self */
1002     pthread_internal_tsd_set,      /* ptr_pthread_internal_tsd_set */
1003     pthread_internal_tsd_get,      /* ptr_pthread_internal_tsd_get */
1004     pthread_internal_tsd_address,  /* ptr_pthread_internal_tsd_address */
1005     NULL,                          /* ptr_pthread_sigaction */
1006     NULL,                          /* ptr_pthread_sigwait */
1007     NULL,                          /* ptr_pthread_raise */
1008     __pthread_cond_timedwait,      /* ptr___pthread_cond_timedwait */
1009     _pthread_cleanup_push,         /* ptr__pthread_cleanup_push */
1010     _pthread_cleanup_pop           /* ptr__pthread_cleanup_pop */
1011 };
1012
1013 #endif /* HAVE_PTHREAD_H && (__GLIBC__ || __FREEBSD__) */