]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libthr/thread/thr_fork.c
MFV: r347413
[FreeBSD/FreeBSD.git] / lib / libthr / thread / thr_fork.c
1 /*
2  * Copyright (c) 2005 David Xu <davidxu@freebsd.org>
3  * Copyright (c) 2003 Daniel Eischen <deischen@freebsd.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Neither the name of the author nor the names of any co-contributors
12  *    may be used to endorse or promote products derived from this software
13  *    without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27
28 /*-
29  * SPDX-License-Identifier: BSD-3-Clause
30  *
31  * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au>
32  * All rights reserved.
33  *
34  * Redistribution and use in source and binary forms, with or without
35  * modification, are permitted provided that the following conditions
36  * are met:
37  * 1. Redistributions of source code must retain the above copyright
38  *    notice, this list of conditions and the following disclaimer.
39  * 2. Redistributions in binary form must reproduce the above copyright
40  *    notice, this list of conditions and the following disclaimer in the
41  *    documentation and/or other materials provided with the distribution.
42  * 3. Neither the name of the author nor the names of any co-contributors
43  *    may be used to endorse or promote products derived from this software
44  *    without specific prior written permission.
45  *
46  * THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
47  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
48  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
49  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
50  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
51  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
52  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
53  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
54  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
55  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
56  * SUCH DAMAGE.
57  *
58  */
59
60 #include <sys/cdefs.h>
61 __FBSDID("$FreeBSD$");
62
63 #include <sys/syscall.h>
64 #include "namespace.h"
65 #include <errno.h>
66 #include <link.h>
67 #include <string.h>
68 #include <stdlib.h>
69 #include <unistd.h>
70 #include <pthread.h>
71 #include <spinlock.h>
72 #include "un-namespace.h"
73
74 #include "libc_private.h"
75 #include "rtld_lock.h"
76 #include "thr_private.h"
77
78 __weak_reference(_pthread_atfork, pthread_atfork);
79
80 int
81 _pthread_atfork(void (*prepare)(void), void (*parent)(void),
82     void (*child)(void))
83 {
84         struct pthread *curthread;
85         struct pthread_atfork *af;
86
87         _thr_check_init();
88
89         if ((af = malloc(sizeof(struct pthread_atfork))) == NULL)
90                 return (ENOMEM);
91
92         curthread = _get_curthread();
93         af->prepare = prepare;
94         af->parent = parent;
95         af->child = child;
96         THR_CRITICAL_ENTER(curthread);
97         _thr_rwl_wrlock(&_thr_atfork_lock);
98         TAILQ_INSERT_TAIL(&_thr_atfork_list, af, qe);
99         _thr_rwl_unlock(&_thr_atfork_lock);
100         THR_CRITICAL_LEAVE(curthread);
101         return (0);
102 }
103
104 void
105 __pthread_cxa_finalize(struct dl_phdr_info *phdr_info)
106 {
107         atfork_head    temp_list = TAILQ_HEAD_INITIALIZER(temp_list);
108         struct pthread *curthread;
109         struct pthread_atfork *af, *af1;
110
111         _thr_check_init();
112
113         curthread = _get_curthread();
114         THR_CRITICAL_ENTER(curthread);
115         _thr_rwl_wrlock(&_thr_atfork_lock);
116         TAILQ_FOREACH_SAFE(af, &_thr_atfork_list, qe, af1) {
117                 if (__elf_phdr_match_addr(phdr_info, af->prepare) ||
118                     __elf_phdr_match_addr(phdr_info, af->parent) ||
119                     __elf_phdr_match_addr(phdr_info, af->child)) {
120                         TAILQ_REMOVE(&_thr_atfork_list, af, qe);
121                         TAILQ_INSERT_TAIL(&temp_list, af, qe);
122                 }
123         }
124         _thr_rwl_unlock(&_thr_atfork_lock);
125         THR_CRITICAL_LEAVE(curthread);
126         while ((af = TAILQ_FIRST(&temp_list)) != NULL) {
127                 TAILQ_REMOVE(&temp_list, af, qe);
128                 free(af);
129         }
130         _thr_tsd_unload(phdr_info);
131         _thr_sigact_unload(phdr_info);
132 }
133
134 __weak_reference(__thr_fork, _fork);
135
136 pid_t
137 __thr_fork(void)
138 {
139         struct pthread *curthread;
140         struct pthread_atfork *af;
141         pid_t ret;
142         int errsave, cancelsave;
143         int was_threaded;
144         int rtld_locks[MAX_RTLD_LOCKS];
145
146         if (!_thr_is_inited())
147                 return (__sys_fork());
148
149         curthread = _get_curthread();
150         cancelsave = curthread->no_cancel;
151         curthread->no_cancel = 1;
152         _thr_rwl_rdlock(&_thr_atfork_lock);
153
154         /* Run down atfork prepare handlers. */
155         TAILQ_FOREACH_REVERSE(af, &_thr_atfork_list, atfork_head, qe) {
156                 if (af->prepare != NULL)
157                         af->prepare();
158         }
159
160         /*
161          * Block all signals until we reach a safe point.
162          */
163         _thr_signal_block(curthread);
164         _thr_signal_prefork();
165
166         /*
167          * All bets are off as to what should happen soon if the parent
168          * process was not so kindly as to set up pthread fork hooks to
169          * relinquish all running threads.
170          */
171         if (_thr_isthreaded() != 0) {
172                 was_threaded = 1;
173                 __thr_malloc_prefork(curthread);
174                 _malloc_prefork();
175                 __thr_pshared_atfork_pre();
176                 _rtld_atfork_pre(rtld_locks);
177         } else {
178                 was_threaded = 0;
179         }
180
181         /*
182          * Fork a new process.
183          * There is no easy way to pre-resolve the __sys_fork symbol
184          * without performing the fork.  Use the syscall(2)
185          * indirection, the syscall symbol is resolved in
186          * _thr_rtld_init() with side-effect free call.
187          */
188         ret = syscall(SYS_fork);
189         if (ret == 0) {
190                 /* Child process */
191                 errsave = errno;
192                 curthread->cancel_pending = 0;
193                 curthread->flags &= ~(THR_FLAGS_NEED_SUSPEND|THR_FLAGS_DETACHED);
194
195                 /*
196                  * Thread list will be reinitialized, and later we call
197                  * _libpthread_init(), it will add us back to list.
198                  */
199                 curthread->tlflags &= ~TLFLAGS_IN_TDLIST;
200
201                 /* before thr_self() */
202                 if (was_threaded)
203                         __thr_malloc_postfork(curthread);
204
205                 /* child is a new kernel thread. */
206                 thr_self(&curthread->tid);
207
208                 /* clear other threads locked us. */
209                 _thr_umutex_init(&curthread->lock);
210                 _mutex_fork(curthread);
211
212                 _thr_signal_postfork_child();
213
214                 if (was_threaded) {
215                         _rtld_atfork_post(rtld_locks);
216                         __thr_pshared_atfork_post();
217                 }
218                 _thr_setthreaded(0);
219
220                 /* reinitalize library. */
221                 _libpthread_init(curthread);
222
223                 /* atfork is reinitialized by _libpthread_init()! */
224                 _thr_rwl_rdlock(&_thr_atfork_lock);
225
226                 if (was_threaded) {
227                         _thr_setthreaded(1);
228                         _malloc_postfork();
229                         _thr_setthreaded(0);
230                 }
231
232                 /* Ready to continue, unblock signals. */ 
233                 _thr_signal_unblock(curthread);
234
235                 /* Run down atfork child handlers. */
236                 TAILQ_FOREACH(af, &_thr_atfork_list, qe) {
237                         if (af->child != NULL)
238                                 af->child();
239                 }
240                 _thr_rwlock_unlock(&_thr_atfork_lock);
241                 curthread->no_cancel = cancelsave;
242         } else {
243                 /* Parent process */
244                 errsave = errno;
245
246                 _thr_signal_postfork();
247
248                 if (was_threaded) {
249                         __thr_malloc_postfork(curthread);
250                         _rtld_atfork_post(rtld_locks);
251                         __thr_pshared_atfork_post();
252                         _malloc_postfork();
253                 }
254
255                 /* Ready to continue, unblock signals. */ 
256                 _thr_signal_unblock(curthread);
257
258                 /* Run down atfork parent handlers. */
259                 TAILQ_FOREACH(af, &_thr_atfork_list, qe) {
260                         if (af->parent != NULL)
261                                 af->parent();
262                 }
263
264                 _thr_rwlock_unlock(&_thr_atfork_lock);
265                 curthread->no_cancel = cancelsave;
266                 /* test async cancel */
267                 if (curthread->cancel_async)
268                         _thr_testcancel(curthread);
269         }
270         errno = errsave;
271
272         return (ret);
273 }