1 /* Allocate a new thread structure.
2 Copyright (C) 2000-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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, see
17 <https://www.gnu.org/licenses/>. */
25 #include <pt-internal.h>
27 /* This braindamage is necessary because the standard says that some
28 of the threads functions "shall fail" if "No thread could be found
29 corresponding to that specified by the given thread ID." */
31 /* The size of the thread ID lookup table. */
32 int __pthread_max_threads
;
34 /* List of thread structures corresponding to free thread IDs. */
35 struct __pthread
*__pthread_free_threads
;
36 pthread_mutex_t __pthread_free_threads_lock
;
39 initialize_pthread (struct __pthread
*new)
43 err
= __pthread_init_specific (new);
48 new->cancel_lock
= (pthread_mutex_t
) PTHREAD_MUTEX_INITIALIZER
;
49 new->cancel_hook
= NULL
;
50 new->cancel_hook_arg
= NULL
;
51 new->cancel_state
= PTHREAD_CANCEL_ENABLE
;
52 new->cancel_type
= PTHREAD_CANCEL_DEFERRED
;
53 new->cancel_pending
= 0;
55 new->state_lock
= (pthread_mutex_t
) PTHREAD_MUTEX_INITIALIZER
;
56 new->state_cond
= (pthread_cond_t
) PTHREAD_COND_INITIALIZER
;
57 new->terminated
= FALSE
;
59 memset (&new->res_state
, '\0', sizeof (new->res_state
));
70 /* Allocate a new thread structure and its pthread thread ID (but not
73 __pthread_alloc (struct __pthread
**pthread
)
77 struct __pthread
*new;
78 struct __pthread
**threads
;
79 struct __pthread
**old_threads
;
83 __pthread_mutex_lock (&__pthread_free_threads_lock
);
84 for (new = __pthread_free_threads
; new; new = new->next
)
86 /* There is no need to take NEW->STATE_LOCK: if NEW is on this
87 list, then it is protected by __PTHREAD_FREE_THREADS_LOCK
88 except in __pthread_dealloc_finish where after it is added to the
89 list (with the lock held), it drops the lock and then sets
90 NEW->STATE and immediately stops using NEW. */
93 __pthread_dequeue (new);
97 __pthread_mutex_unlock (&__pthread_free_threads_lock
);
103 /* Drop old values */
104 _dl_deallocate_tls (new->tcb
, 1);
107 err
= initialize_pthread (new);
113 /* Allocate a new thread structure. */
114 new = malloc (sizeof (struct __pthread
));
118 err
= initialize_pthread (new);
126 __libc_rwlock_wrlock (GL (dl_pthread_threads_lock
));
128 if (GL (dl_pthread_num_threads
) < __pthread_max_threads
)
130 /* We have a free slot. Use the slot number plus one as the
131 thread ID for the new thread. */
132 new->thread
= 1 + GL (dl_pthread_num_threads
)++;
133 GL (dl_pthread_threads
)[new->thread
- 1] = NULL
;
135 __libc_rwlock_unlock (GL (dl_pthread_threads_lock
));
140 #ifdef PTHREAD_THREADS_MAX
141 else if (GL (dl_pthread_num_threads
) >= PTHREAD_THREADS_MAX
)
143 /* We have reached the limit on the number of threads per process. */
144 __libc_rwlock_unlock (GL (dl_pthread_threads_lock
));
151 /* We are going to enlarge the threads table. Save its current
152 size. We're going to release the lock before doing the necessary
153 memory allocation, since that's a potentially blocking operation. */
154 max_threads
= __pthread_max_threads
;
156 __libc_rwlock_unlock (GL (dl_pthread_threads_lock
));
158 /* Allocate a new lookup table that's twice as large. */
160 = max_threads
> 0 ? max_threads
* 2 : _POSIX_THREAD_THREADS_MAX
;
161 threads
= malloc (new_max_threads
* sizeof (struct __pthread
*));
168 __libc_rwlock_wrlock (GL (dl_pthread_threads_lock
));
170 /* Check if nobody else has already enlarged the table. */
171 if (max_threads
!= __pthread_max_threads
)
174 __libc_rwlock_unlock (GL (dl_pthread_threads_lock
));
176 /* Free the newly allocated table and try again to allocate a slot. */
181 /* Copy over the contents of the old table. */
182 memcpy (threads
, GL (dl_pthread_threads
),
183 __pthread_max_threads
* sizeof (struct __pthread
*));
185 /* Save the location of the old table. We want to deallocate its
186 storage after we released the lock. */
187 old_threads
= GL (dl_pthread_threads
);
189 /* Replace the table with the new one. */
190 __pthread_max_threads
= new_max_threads
;
191 GL (dl_pthread_threads
) = threads
;
193 /* And allocate ourselves one of the newly created slots. */
194 new->thread
= 1 + GL (dl_pthread_num_threads
)++;
195 GL (dl_pthread_threads
)[new->thread
- 1] = NULL
;
197 __libc_rwlock_unlock (GL (dl_pthread_threads_lock
));
207 __pthread_init_static_tls (struct link_map
*map
)
211 __libc_rwlock_wrlock (GL (dl_pthread_threads_lock
));
212 for (i
= 0; i
< GL (dl_pthread_num_threads
); ++i
)
214 struct __pthread
*t
= GL (dl_pthread_threads
)[i
];
220 void *dest
= (char *) t
->tcb
- map
->l_tls_offset
;
222 void *dest
= (char *) t
->tcb
+ map
->l_tls_offset
+ TLS_PRE_TCB_SIZE
;
224 # error "Either TLS_TCB_AT_TP or TLS_DTV_AT_TP must be defined"
227 /* Initialize the memory. */
228 memset (__mempcpy (dest
, map
->l_tls_initimage
, map
->l_tls_initimage_size
),
229 '\0', map
->l_tls_blocksize
- map
->l_tls_initimage_size
);
231 __libc_rwlock_unlock (GL (dl_pthread_threads_lock
));