blob: 4c0c8924a32cfdd828eb7ad02e220a3c2ea2e8b6 [file] [log] [blame]
Alexandre Julliardf45325e2003-11-06 23:05:41 +00001/*
2 * Wine threading routines using the pthread library
3 *
4 * Copyright 2003 Alexandre Julliard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
Jonathan Ernst360a3f92006-05-18 14:49:52 +020018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliardf45325e2003-11-06 23:05:41 +000019 */
20
21#include "config.h"
22#include "wine/port.h"
23
Alexandre Julliardf45325e2003-11-06 23:05:41 +000024#include <assert.h>
25#include <stdlib.h>
26#include <signal.h>
27#ifdef HAVE_UNISTD_H
28# include <unistd.h>
29#endif
30#include <string.h>
31#include <sys/types.h>
32#ifdef HAVE_SYS_MMAN_H
33#include <sys/mman.h>
34#endif
Alexandre Julliard150b5dc2006-12-29 20:02:02 +010035#ifdef HAVE_MACH_MACH_H
36#include <mach/mach.h>
37#endif
Tijl Coosemans60833da2007-08-08 00:25:24 +020038#ifdef HAVE_SYS_THR_H
39#include <sys/ucontext.h>
40#include <sys/thr.h>
41#endif
Alexandre Julliardf45325e2003-11-06 23:05:41 +000042
43#include "wine/library.h"
44#include "wine/pthread.h"
45
Alexandre Julliard679aab82008-04-29 20:19:02 +020046#ifdef HAVE_PTHREAD_H
47
Alexandre Julliard883d3c52005-09-03 15:11:29 +000048static int init_done;
Alexandre Julliard5da3e552006-08-11 19:27:32 +020049static int nb_threads = 1;
Alexandre Julliard50fba7f2003-11-09 01:25:23 +000050
Maarten Lankhorst0a393d72008-11-25 08:50:37 +010051#if !defined(__i386__) && !defined(__x86_64__)
Alexandre Julliard50fba7f2003-11-09 01:25:23 +000052static pthread_key_t teb_key;
53#endif
54
Maarten Lankhorst0a393d72008-11-25 08:50:37 +010055#if defined(__x86_64__) && defined(__linux__)
56#include <asm/prctl.h>
57extern int arch_prctl(int func, void *ptr);
58#endif
59
Alexandre Julliardf45325e2003-11-06 23:05:41 +000060/***********************************************************************
Alexandre Julliard883d3c52005-09-03 15:11:29 +000061 * init_process
Alexandre Julliardf45325e2003-11-06 23:05:41 +000062 *
63 * Initialization for a newly created process.
64 */
Alexandre Julliard883d3c52005-09-03 15:11:29 +000065static void init_process( const struct wine_pthread_callbacks *callbacks, size_t size )
Alexandre Julliardf45325e2003-11-06 23:05:41 +000066{
Alexandre Julliard883d3c52005-09-03 15:11:29 +000067 init_done = 1;
Alexandre Julliardf45325e2003-11-06 23:05:41 +000068}
69
70
71/***********************************************************************
Alexandre Julliard883d3c52005-09-03 15:11:29 +000072 * init_thread
Alexandre Julliardf45325e2003-11-06 23:05:41 +000073 *
74 * Initialization for a newly created thread.
75 */
Alexandre Julliard883d3c52005-09-03 15:11:29 +000076static void init_thread( struct wine_pthread_thread_info *info )
Alexandre Julliardf45325e2003-11-06 23:05:41 +000077{
Alexandre Julliard50fba7f2003-11-09 01:25:23 +000078 /* retrieve the stack info (except for main thread) */
Alexandre Julliard883d3c52005-09-03 15:11:29 +000079 if (init_done)
Alexandre Julliard50fba7f2003-11-09 01:25:23 +000080 {
Alexandre Julliard821ab862003-11-12 22:44:56 +000081#ifdef HAVE_PTHREAD_GETATTR_NP
Alexandre Julliard50fba7f2003-11-09 01:25:23 +000082 pthread_attr_t attr;
83 pthread_getattr_np( pthread_self(), &attr );
84 pthread_attr_getstack( &attr, &info->stack_base, &info->stack_size );
Eric Pouech4642e1e2006-02-14 11:34:58 +010085 pthread_attr_destroy( &attr );
Tijl Coosemansfc8172f2006-08-05 23:31:07 +020086#elif defined(HAVE_PTHREAD_ATTR_GET_NP)
87 pthread_attr_t attr;
88 pthread_attr_init( &attr );
89 pthread_attr_get_np( pthread_self(), &attr );
90 pthread_attr_getstack( &attr, &info->stack_base, &info->stack_size );
91 pthread_attr_destroy( &attr );
Emmanuel Maillardd110e1f2004-07-21 03:06:03 +000092#elif defined(HAVE_PTHREAD_GET_STACKSIZE_NP) && defined(HAVE_PTHREAD_GET_STACKADDR_NP)
Alexandre Julliard538cd172006-01-24 15:11:58 +010093 char dummy;
Emmanuel Maillardd110e1f2004-07-21 03:06:03 +000094 info->stack_size = pthread_get_stacksize_np(pthread_self());
95 info->stack_base = pthread_get_stackaddr_np(pthread_self());
Alexandre Julliard538cd172006-01-24 15:11:58 +010096 /* if base is too large assume it's the top of the stack instead */
97 if ((char *)info->stack_base > &dummy)
98 info->stack_base = (char *)info->stack_base - info->stack_size;
Alexandre Julliard821ab862003-11-12 22:44:56 +000099#else
100 /* assume that the stack allocation is page aligned */
101 char dummy;
Alexandre Julliardb64c6272004-03-30 05:13:35 +0000102 size_t page_size = getpagesize();
103 char *stack_top = (char *)((unsigned long)&dummy & ~(page_size - 1)) + page_size;
Alexandre Julliard821ab862003-11-12 22:44:56 +0000104 info->stack_base = stack_top - info->stack_size;
105#endif
Alexandre Julliard50fba7f2003-11-09 01:25:23 +0000106 }
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000107}
108
109
110/***********************************************************************
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000111 * create_thread
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000112 */
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000113static int create_thread( struct wine_pthread_thread_info *info )
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000114{
115 pthread_t id;
116 pthread_attr_t attr;
Alexandre Julliard50fba7f2003-11-09 01:25:23 +0000117 int ret = 0;
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000118
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000119 pthread_attr_init( &attr );
Alexandre Julliard50fba7f2003-11-09 01:25:23 +0000120 pthread_attr_setstacksize( &attr, info->stack_size );
Alexandre Julliarda4d18262004-02-11 23:58:46 +0000121 pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED );
Alexandre Julliardc6ad0202006-06-23 12:26:23 +0200122 pthread_attr_setscope( &attr, PTHREAD_SCOPE_SYSTEM ); /* force creating a kernel thread on Solaris */
Alexandre Julliard5da3e552006-08-11 19:27:32 +0200123 interlocked_xchg_add( &nb_threads, 1 );
124 if (pthread_create( &id, &attr, (void * (*)(void *))info->entry, info ))
125 {
126 interlocked_xchg_add( &nb_threads, -1 );
127 ret = -1;
128 }
Alexandre Julliard50fba7f2003-11-09 01:25:23 +0000129 pthread_attr_destroy( &attr );
130 return ret;
131}
132
133
134/***********************************************************************
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000135 * init_current_teb
Alexandre Julliard4fac95d2004-02-05 02:01:35 +0000136 *
137 * Set the current TEB for a new thread.
138 */
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000139static void init_current_teb( struct wine_pthread_thread_info *info )
Alexandre Julliard4fac95d2004-02-05 02:01:35 +0000140{
141#ifdef __i386__
142 /* On the i386, the current thread is in the %fs register */
143 LDT_ENTRY fs_entry;
144
145 wine_ldt_set_base( &fs_entry, info->teb_base );
146 wine_ldt_set_limit( &fs_entry, info->teb_size - 1 );
147 wine_ldt_set_flags( &fs_entry, WINE_LDT_FLAGS_DATA|WINE_LDT_FLAGS_32BIT );
148 wine_ldt_init_fs( info->teb_sel, &fs_entry );
Maarten Lankhorst0a393d72008-11-25 08:50:37 +0100149#elif defined(__x86_64__)
150 /* On x86_64, it's in %gs */
151# ifdef __linux__
152 arch_prctl(ARCH_SET_GS, info->teb_base);
153# else
154# error Please define setting %gs for your architecture
155# endif
Alexandre Julliard4fac95d2004-02-05 02:01:35 +0000156#else
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000157 if (!init_done) /* first thread */
Alexandre Julliard4fac95d2004-02-05 02:01:35 +0000158 pthread_key_create( &teb_key, NULL );
159 pthread_setspecific( teb_key, info->teb_base );
160#endif
161
162 /* set pid and tid */
163 info->pid = getpid();
Alexandre Julliardc6ad0202006-06-23 12:26:23 +0200164#ifdef __sun
165 info->tid = pthread_self(); /* this should return the lwp id on solaris */
Alexandre Julliard150b5dc2006-12-29 20:02:02 +0100166#elif defined(__APPLE__)
167 info->tid = mach_thread_self();
Tijl Coosemans60833da2007-08-08 00:25:24 +0200168#elif defined(__FreeBSD__)
169 {
170 long lwpid;
171 thr_self( &lwpid );
172 info->tid = (int) lwpid;
173 }
Alexandre Julliardc6ad0202006-06-23 12:26:23 +0200174#else
Alexandre Julliard4fac95d2004-02-05 02:01:35 +0000175 info->tid = gettid();
Alexandre Julliardc6ad0202006-06-23 12:26:23 +0200176#endif
Alexandre Julliard4fac95d2004-02-05 02:01:35 +0000177}
178
179
180/***********************************************************************
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000181 * get_current_teb
Alexandre Julliard50fba7f2003-11-09 01:25:23 +0000182 */
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000183static void *get_current_teb(void)
Alexandre Julliard50fba7f2003-11-09 01:25:23 +0000184{
185#ifdef __i386__
186 void *ret;
187 __asm__( ".byte 0x64\n\tmovl 0x18,%0" : "=r" (ret) );
188 return ret;
Maarten Lankhorst0a393d72008-11-25 08:50:37 +0100189#elif defined(__x86_64__)
190 void *ret;
191 __asm__( ".byte 0x65\n\tmovq 0x30,%0" : "=r" (ret) );
192 return ret;
Alexandre Julliard50fba7f2003-11-09 01:25:23 +0000193#else
194 return pthread_getspecific( teb_key );
195#endif
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000196}
197
198
199/***********************************************************************
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000200 * exit_thread
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000201 */
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000202static void DECLSPEC_NORETURN exit_thread( struct wine_pthread_thread_info *info )
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000203{
Alexandre Julliard5da3e552006-08-11 19:27:32 +0200204 if (interlocked_xchg_add( &nb_threads, -1 ) <= 1) exit( info->exit_status );
Alexandre Julliarda4d18262004-02-11 23:58:46 +0000205 wine_ldt_free_fs( info->teb_sel );
Alexandre Julliardc79cf022006-07-13 20:47:07 +0200206 if (info->teb_size) munmap( info->teb_base, info->teb_size );
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000207 pthread_exit( (void *)info->exit_status );
208}
209
210
211/***********************************************************************
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000212 * abort_thread
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000213 */
Alexandre Julliard7e4c88c2005-09-13 11:07:14 +0000214static void DECLSPEC_NORETURN abort_thread( long status )
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000215{
Alexandre Julliard5da3e552006-08-11 19:27:32 +0200216 if (interlocked_xchg_add( &nb_threads, -1 ) <= 1) _exit( status );
Alexandre Julliardf45325e2003-11-06 23:05:41 +0000217 pthread_exit( (void *)status );
218}
219
Alexandre Julliard679aab82008-04-29 20:19:02 +0200220#else /* HAVE_PTHREAD_H */
221
222static void init_process( const struct wine_pthread_callbacks *callbacks, size_t size )
223{
224}
225
226static void init_thread( struct wine_pthread_thread_info *info )
227{
228}
229
230static int create_thread( struct wine_pthread_thread_info *info )
231{
232 return -1;
233}
234
235static void init_current_teb( struct wine_pthread_thread_info *info )
236{
237}
238
239static void *get_current_teb(void)
240{
241 return NULL;
242}
243
244static void DECLSPEC_NORETURN exit_thread( struct wine_pthread_thread_info *info )
245{
246 abort();
247}
248
249static void DECLSPEC_NORETURN abort_thread( long status )
250{
251 abort();
252}
253
254static int pthread_sigmask( int how, const sigset_t *newset, sigset_t *oldset )
255{
256 return -1;
257}
258
259#endif /* HAVE_PTHREAD_H */
260
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000261
262/***********************************************************************
263 * pthread_functions
264 */
Alexandre Julliard17ab5872008-11-07 11:11:21 +0100265static const struct wine_pthread_functions pthread_functions =
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000266{
267 init_process,
268 init_thread,
269 create_thread,
270 init_current_teb,
271 get_current_teb,
272 exit_thread,
Alexandre Julliarde040e6c2006-06-23 12:27:45 +0200273 abort_thread,
274 pthread_sigmask
Alexandre Julliard883d3c52005-09-03 15:11:29 +0000275};
Alexandre Julliard17ab5872008-11-07 11:11:21 +0100276
277void init_pthread_functions(void)
278{
279 wine_pthread_set_functions( &pthread_functions, sizeof(pthread_functions) );
280}