]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libthr/thread/thr_exit.c
MFC r337983, r338044:
[FreeBSD/FreeBSD.git] / lib / libthr / thread / thr_exit.c
1 /*
2  * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include "namespace.h"
34 #include <errno.h>
35 #ifdef _PTHREAD_FORCED_UNWIND
36 #include <dlfcn.h>
37 #endif
38 #include <stdarg.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <pthread.h>
42 #include <sys/types.h>
43 #include <sys/signalvar.h>
44 #include "un-namespace.h"
45
46 #include "libc_private.h"
47 #include "thr_private.h"
48
49 static void     exit_thread(void) __dead2;
50
51 __weak_reference(_pthread_exit, pthread_exit);
52
53 #ifdef _PTHREAD_FORCED_UNWIND
54 static int message_printed;
55
56 static void thread_unwind(void) __dead2;
57 #ifdef PIC
58 static void thread_uw_init(void);
59 static _Unwind_Reason_Code thread_unwind_stop(int version,
60         _Unwind_Action actions,
61         int64_t exc_class,
62         struct _Unwind_Exception *exc_obj,
63         struct _Unwind_Context *context, void *stop_parameter);
64 /* unwind library pointers */
65 static _Unwind_Reason_Code (*uwl_forcedunwind)(struct _Unwind_Exception *,
66         _Unwind_Stop_Fn, void *);
67 static unsigned long (*uwl_getcfa)(struct _Unwind_Context *);
68
69 static void
70 thread_uw_init(void)
71 {
72         static int inited = 0;
73         Dl_info dli;
74         void *handle;
75         void *forcedunwind, *getcfa;
76
77         if (inited)
78             return;
79         handle = RTLD_DEFAULT;
80         if ((forcedunwind = dlsym(handle, "_Unwind_ForcedUnwind")) != NULL) {
81             if (dladdr(forcedunwind, &dli)) {
82                 /*
83                  * Make sure the address is always valid by holding the library,
84                  * also assume functions are in same library.
85                  */
86                 if ((handle = dlopen(dli.dli_fname, RTLD_LAZY)) != NULL) {
87                     forcedunwind = dlsym(handle, "_Unwind_ForcedUnwind");
88                     getcfa = dlsym(handle, "_Unwind_GetCFA");
89                     if (forcedunwind != NULL && getcfa != NULL) {
90                         uwl_getcfa = getcfa;
91                         atomic_store_rel_ptr((volatile void *)&uwl_forcedunwind,
92                                 (uintptr_t)forcedunwind);
93                     } else {
94                         dlclose(handle);
95                     }
96                 }
97             }
98         }
99         inited = 1;
100 }
101
102 _Unwind_Reason_Code
103 _Unwind_ForcedUnwind(struct _Unwind_Exception *ex, _Unwind_Stop_Fn stop_func,
104         void *stop_arg)
105 {
106         return (*uwl_forcedunwind)(ex, stop_func, stop_arg);
107 }
108
109 unsigned long
110 _Unwind_GetCFA(struct _Unwind_Context *context)
111 {
112         return (*uwl_getcfa)(context);
113 }
114 #else
115 #pragma weak _Unwind_GetCFA
116 #pragma weak _Unwind_ForcedUnwind
117 #endif /* PIC */
118
119 static void
120 thread_unwind_cleanup(_Unwind_Reason_Code code __unused,
121     struct _Unwind_Exception *e __unused)
122 {
123         /*
124          * Specification said that _Unwind_Resume should not be used here,
125          * instead, user should rethrow the exception. For C++ user, they
126          * should put "throw" sentence in catch(...) block.
127          */
128         PANIC("exception should be rethrown");
129 }
130
131 static _Unwind_Reason_Code
132 thread_unwind_stop(int version __unused, _Unwind_Action actions,
133         int64_t exc_class __unused,
134         struct _Unwind_Exception *exc_obj __unused,
135         struct _Unwind_Context *context, void *stop_parameter __unused)
136 {
137         struct pthread *curthread = _get_curthread();
138         struct pthread_cleanup *cur;
139         uintptr_t cfa;
140         int done = 0;
141
142         /* XXX assume stack grows down to lower address */
143
144         cfa = _Unwind_GetCFA(context);
145         if (actions & _UA_END_OF_STACK ||
146             cfa >= (uintptr_t)curthread->unwind_stackend) {
147                 done = 1;
148         }
149
150         while ((cur = curthread->cleanup) != NULL &&
151                (done || (uintptr_t)cur <= cfa)) {
152                 __pthread_cleanup_pop_imp(1);
153         }
154
155         if (done) {
156                 /* Tell libc that it should call non-trivial TLS dtors. */
157                 __cxa_thread_call_dtors();
158
159                 exit_thread(); /* Never return! */
160         }
161
162         return (_URC_NO_REASON);
163 }
164
165 static void
166 thread_unwind(void)
167 {
168         struct pthread  *curthread = _get_curthread();
169
170         curthread->ex.exception_class = 0;
171         curthread->ex.exception_cleanup = thread_unwind_cleanup;
172         _Unwind_ForcedUnwind(&curthread->ex, thread_unwind_stop, NULL);
173         PANIC("_Unwind_ForcedUnwind returned");
174 }
175
176 #endif
177
178 void
179 _thread_exitf(const char *fname, int lineno, const char *fmt, ...)
180 {
181         va_list ap;
182
183         /* Write an error message to the standard error file descriptor: */
184         _thread_printf(STDERR_FILENO, "Fatal error '");
185
186         va_start(ap, fmt);
187         _thread_vprintf(STDERR_FILENO, fmt, ap);
188         va_end(ap);
189
190         _thread_printf(STDERR_FILENO, "' at line %d in file %s (errno = %d)\n",
191             lineno, fname, errno);
192
193         abort();
194 }
195
196 void
197 _thread_exit(const char *fname, int lineno, const char *msg)
198 {
199
200         _thread_exitf(fname, lineno, "%s", msg);
201 }
202
203 void
204 _pthread_exit(void *status)
205 {
206         _pthread_exit_mask(status, NULL);
207 }
208
209 void
210 _pthread_exit_mask(void *status, sigset_t *mask)
211 {
212         struct pthread *curthread = _get_curthread();
213
214         /* Check if this thread is already in the process of exiting: */
215         if (curthread->cancelling)
216                 PANIC("Thread %p has called "
217                     "pthread_exit() from a destructor. POSIX 1003.1 "
218                     "1996 s16.2.5.2 does not allow this!", curthread);
219
220         /* Flag this thread as exiting. */
221         curthread->cancelling = 1;
222         curthread->no_cancel = 1;
223         curthread->cancel_async = 0;
224         curthread->cancel_point = 0;
225         if (mask != NULL)
226                 __sys_sigprocmask(SIG_SETMASK, mask, NULL);
227         if (curthread->unblock_sigcancel) {
228                 sigset_t set;
229
230                 curthread->unblock_sigcancel = 0;
231                 SIGEMPTYSET(set);
232                 SIGADDSET(set, SIGCANCEL);
233                 __sys_sigprocmask(SIG_UNBLOCK, mask, NULL);
234         }
235         
236         /* Save the return value: */
237         curthread->ret = status;
238 #ifdef _PTHREAD_FORCED_UNWIND
239
240 #ifdef PIC
241         thread_uw_init();
242 #endif /* PIC */
243
244 #ifdef PIC
245         if (uwl_forcedunwind != NULL) {
246 #else
247         if (_Unwind_ForcedUnwind != NULL) {
248 #endif
249                 if (curthread->unwind_disabled) {
250                         if (message_printed == 0) {
251                                 message_printed = 1;
252                                 _thread_printf(2, "Warning: old _pthread_cleanup_push was called, "
253                                         "stack unwinding is disabled.\n");
254                         }
255                         goto cleanup;
256                 }
257                 thread_unwind();
258
259         } else {
260 cleanup:
261                 while (curthread->cleanup != NULL) {
262                         __pthread_cleanup_pop_imp(1);
263                 }
264                 __cxa_thread_call_dtors();
265
266                 exit_thread();
267         }
268
269 #else
270         while (curthread->cleanup != NULL) {
271                 __pthread_cleanup_pop_imp(1);
272         }
273         __cxa_thread_call_dtors();
274
275         exit_thread();
276 #endif /* _PTHREAD_FORCED_UNWIND */
277 }
278
279 static void
280 exit_thread(void)
281 {
282         struct pthread *curthread = _get_curthread();
283
284         free(curthread->name);
285         curthread->name = NULL;
286
287         /* Check if there is thread specific data: */
288         if (curthread->specific != NULL) {
289                 /* Run the thread-specific data destructors: */
290                 _thread_cleanupspecific();
291         }
292
293         if (!_thr_isthreaded())
294                 exit(0);
295
296         if (atomic_fetchadd_int(&_thread_active_threads, -1) == 1) {
297                 exit(0);
298                 /* Never reach! */
299         }
300
301         /* Tell malloc that the thread is exiting. */
302         _malloc_thread_cleanup();
303
304         THR_LOCK(curthread);
305         curthread->state = PS_DEAD;
306         if (curthread->flags & THR_FLAGS_NEED_SUSPEND) {
307                 curthread->cycle++;
308                 _thr_umtx_wake(&curthread->cycle, INT_MAX, 0);
309         }
310         if (!curthread->force_exit && SHOULD_REPORT_EVENT(curthread, TD_DEATH))
311                 _thr_report_death(curthread);
312         /*
313          * Thread was created with initial refcount 1, we drop the
314          * reference count to allow it to be garbage collected.
315          */
316         curthread->refcount--;
317         _thr_try_gc(curthread, curthread); /* thread lock released */
318
319 #if defined(_PTHREADS_INVARIANTS)
320         if (THR_IN_CRITICAL(curthread))
321                 PANIC("thread %p exits with resources held!", curthread);
322 #endif
323         /*
324          * Kernel will do wakeup at the address, so joiner thread
325          * will be resumed if it is sleeping at the address.
326          */
327         thr_exit(&curthread->tid);
328         PANIC("thr_exit() returned");
329         /* Never reach! */
330 }