1 /* Copyright (C) 2002-2006, 2007 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 #include <sys/types.h>
28 #include <hp-timing.h>
30 #include <lowlevellock.h>
31 #include <pthreaddef.h>
32 #include <dl-sysdep.h>
33 #include "../nptl_db/thread_db.h"
35 #ifdef HAVE_FORCED_UNWIND
38 #define __need_res_state
42 # define TCB_ALIGNMENT sizeof (double)
46 /* We keep thread specific data in a special data structure, a two-level
47 array. The top-level array contains pointers to dynamically allocated
48 arrays of a certain number of data pointers. So we can implement a
49 sparse array. Each dynamic second-level array has
50 PTHREAD_KEY_2NDLEVEL_SIZE
51 entries. This value shouldn't be too large. */
52 #define PTHREAD_KEY_2NDLEVEL_SIZE 32
54 /* We need to address PTHREAD_KEYS_MAX key with PTHREAD_KEY_2NDLEVEL_SIZE
55 keys in each subarray. */
56 #define PTHREAD_KEY_1STLEVEL_SIZE \
57 ((PTHREAD_KEYS_MAX + PTHREAD_KEY_2NDLEVEL_SIZE - 1) \
58 / PTHREAD_KEY_2NDLEVEL_SIZE)
63 /* Internal version of the buffer to store cancellation handler
65 struct pthread_unwind_buf
75 /* This is the placeholder of the public version. */
80 /* Pointer to the previous cleanup buffer. */
81 struct pthread_unwind_buf
*prev
;
83 /* Backward compatibility: state of the old-style cleanup
84 handler at the time of the previous new-style cleanup handler
86 struct _pthread_cleanup_buffer
*cleanup
;
88 /* Cancellation type before the push call. */
95 /* Opcodes and data types for communication with the signal handler to
96 change user/group IDs. */
105 /* Data structure used by the kernel to find robust futexes. */
106 struct robust_list_head
109 long int futex_offset
;
110 void *list_op_pending
;
114 /* Data strcture used to handle thread priority protection. */
115 struct priority_protection_data
118 unsigned int priomap
[];
122 /* Thread descriptor data structure. */
128 /* This overlaps the TCB as used for TLS without threads (see tls.h). */
133 int multiple_threads
;
138 /* This extra padding has no special purpose, and this structure layout
139 is private and subject to change without affecting the official ABI.
140 We just have it here in case it might be convenient for some
141 implementation-specific instrumentation hack or suchlike. */
145 /* This descriptor's link on the `stack_used' or `__stack_user' list. */
148 /* Thread ID - which is also a 'is this thread descriptor (and
149 therefore stack) used' flag. */
152 /* Process ID - thread group ID in kernel speak. */
155 /* List of robust mutexes the thread is holding. */
156 #ifdef __PTHREAD_MUTEX_HAVE_PREV
158 struct robust_list_head robust_head
;
160 /* The list above is strange. It is basically a double linked list
161 but the pointer to the next/previous element of the list points
162 in the middle of the object, the __next element. Whenever
163 casting to __pthread_list_t we need to adjust the pointer
165 # define QUEUE_PTR_ADJUST (offsetof (__pthread_list_t, __next))
167 # define ENQUEUE_MUTEX_BOTH(mutex, val) \
169 __pthread_list_t *next = (__pthread_list_t *) \
170 ((((uintptr_t) THREAD_GETMEM (THREAD_SELF, robust_head.list)) & ~1ul) \
171 - QUEUE_PTR_ADJUST); \
172 next->__prev = (void *) &mutex->__data.__list.__next; \
173 mutex->__data.__list.__next = THREAD_GETMEM (THREAD_SELF, \
175 mutex->__data.__list.__prev = (void *) &THREAD_SELF->robust_head; \
176 THREAD_SETMEM (THREAD_SELF, robust_head.list, \
177 (void *) (((uintptr_t) &mutex->__data.__list.__next) \
180 # define DEQUEUE_MUTEX(mutex) \
182 __pthread_list_t *next = (__pthread_list_t *) \
183 ((char *) (((uintptr_t) mutex->__data.__list.__next) & ~1ul) \
184 - QUEUE_PTR_ADJUST); \
185 next->__prev = mutex->__data.__list.__prev; \
186 __pthread_list_t *prev = (__pthread_list_t *) \
187 ((char *) (((uintptr_t) mutex->__data.__list.__prev) & ~1ul) \
188 - QUEUE_PTR_ADJUST); \
189 prev->__next = mutex->__data.__list.__next; \
190 mutex->__data.__list.__prev = NULL; \
191 mutex->__data.__list.__next = NULL; \
196 __pthread_slist_t robust_list
;
197 struct robust_list_head robust_head
;
200 # define ENQUEUE_MUTEX_BOTH(mutex, val) \
202 mutex->__data.__list.__next \
203 = THREAD_GETMEM (THREAD_SELF, robust_list.__next); \
204 THREAD_SETMEM (THREAD_SELF, robust_list.__next, \
205 (void *) (((uintptr_t) &mutex->__data.__list) | val)); \
207 # define DEQUEUE_MUTEX(mutex) \
209 __pthread_slist_t *runp = (__pthread_slist_t *) \
210 (((uintptr_t) THREAD_GETMEM (THREAD_SELF, robust_list.__next)) & ~1ul); \
211 if (runp == &mutex->__data.__list) \
212 THREAD_SETMEM (THREAD_SELF, robust_list.__next, runp->__next); \
215 __pthread_slist_t *next = (__pthread_slist_t *) \
216 (((uintptr_t) runp->__next) & ~1ul); \
217 while (next != &mutex->__data.__list) \
220 next = (__pthread_slist_t *) (((uintptr_t) runp->__next) & ~1ul); \
223 runp->__next = next->__next; \
224 mutex->__data.__list.__next = NULL; \
228 #define ENQUEUE_MUTEX(mutex) ENQUEUE_MUTEX_BOTH (mutex, 0)
229 #define ENQUEUE_MUTEX_PI(mutex) ENQUEUE_MUTEX_BOTH (mutex, 1)
231 /* List of cleanup buffers. */
232 struct _pthread_cleanup_buffer
*cleanup
;
234 /* Unwind information. */
235 struct pthread_unwind_buf
*cleanup_jmp_buf
;
236 #define HAVE_CLEANUP_JMP_BUF
238 /* Flags determining processing of cancellation. */
240 /* Bit set if cancellation is disabled. */
241 #define CANCELSTATE_BIT 0
242 #define CANCELSTATE_BITMASK 0x01
243 /* Bit set if asynchronous cancellation mode is selected. */
244 #define CANCELTYPE_BIT 1
245 #define CANCELTYPE_BITMASK 0x02
246 /* Bit set if canceling has been initiated. */
247 #define CANCELING_BIT 2
248 #define CANCELING_BITMASK 0x04
249 /* Bit set if canceled. */
250 #define CANCELED_BIT 3
251 #define CANCELED_BITMASK 0x08
252 /* Bit set if thread is exiting. */
253 #define EXITING_BIT 4
254 #define EXITING_BITMASK 0x10
255 /* Bit set if thread terminated and TCB is freed. */
256 #define TERMINATED_BIT 5
257 #define TERMINATED_BITMASK 0x20
258 /* Bit set if thread is supposed to change XID. */
260 #define SETXID_BITMASK 0x40
261 /* Mask for the rest. Helps the compiler to optimize. */
262 #define CANCEL_RESTMASK 0xffffff80
264 #define CANCEL_ENABLED_AND_CANCELED(value) \
265 (((value) & (CANCELSTATE_BITMASK | CANCELED_BITMASK | EXITING_BITMASK \
266 | CANCEL_RESTMASK | TERMINATED_BITMASK)) == CANCELED_BITMASK)
267 #define CANCEL_ENABLED_AND_CANCELED_AND_ASYNCHRONOUS(value) \
268 (((value) & (CANCELSTATE_BITMASK | CANCELTYPE_BITMASK | CANCELED_BITMASK \
269 | EXITING_BITMASK | CANCEL_RESTMASK | TERMINATED_BITMASK)) \
270 == (CANCELTYPE_BITMASK | CANCELED_BITMASK))
272 /* Flags. Including those copied from the thread attribute. */
275 /* We allocate one block of references here. This should be enough
276 to avoid allocating any memory dynamically for most applications. */
277 struct pthread_key_data
279 /* Sequence number. We use uintptr_t to not require padding on
280 32- and 64-bit machines. On 64-bit machines it helps to avoid
286 } specific_1stblock
[PTHREAD_KEY_2NDLEVEL_SIZE
];
288 /* Two-level array for the thread-specific data. */
289 struct pthread_key_data
*specific
[PTHREAD_KEY_1STLEVEL_SIZE
];
291 /* Flag which is set when specific data is set. */
294 /* True if events must be reported. */
297 /* True if the user provided the stack. */
300 /* True if thread must stop at startup time. */
303 /* The parent's cancel handling at the time of the pthread_create
304 call. This might be needed to undo the effects of a cancellation. */
305 int parent_cancelhandling
;
307 /* Lock to synchronize access to the descriptor. */
310 /* Lock for synchronizing setxid calls. */
311 lll_lock_t setxid_futex
;
314 /* Offset of the CPU clock at start thread start time. */
315 hp_timing_t cpuclock_offset
;
318 /* If the thread waits to join another one the ID of the latter is
321 In case a thread is detached this field contains a pointer of the
322 TCB if the thread itself. This is something which cannot happen
323 in normal operation. */
324 struct pthread
*joinid
;
325 /* Check whether a thread is detached. */
326 #define IS_DETACHED(pd) ((pd)->joinid == (pd))
328 /* The result of the thread function. */
331 /* Scheduling parameters for the new thread. */
332 struct sched_param schedparam
;
335 /* Start position of the code to be executed and the argument passed
337 void *(*start_routine
) (void *);
341 td_eventbuf_t eventbuf
;
342 /* Next descriptor with a pending event. */
343 struct pthread
*nextevent
;
345 #ifdef HAVE_FORCED_UNWIND
346 /* Machine-specific unwind info. */
347 struct _Unwind_Exception exc
;
350 /* If nonzero pointer to area allocated for the stack and its
353 size_t stackblock_size
;
354 /* Size of the included guard area. */
356 /* This is what the user specified and what we will report. */
357 size_t reported_guardsize
;
359 /* Thread Priority Protection data. */
360 struct priority_protection_data
*tpp
;
362 /* Resolver state. */
363 struct __res_state res
;
365 /* This member must be last. */
368 #define PTHREAD_STRUCT_END_PADDING \
369 (sizeof (struct pthread) - offsetof (struct pthread, end_padding))
370 } __attribute ((aligned (TCB_ALIGNMENT
)));