1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/* $OpenBSD: rthread_fork.c,v 1.14 2015/10/18 08:02:58 guenther Exp $ */
/*
* Copyright (c) 2008 Kurt Miller <kurt@openbsd.org>
* Copyright (c) 2008 Philip Guenther <guenther@openbsd.org>
* Copyright (c) 2003 Daniel Eischen <deischen@freebsd.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Neither the name of the author nor the names of any co-contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD: /repoman/r/ncvs/src/lib/libc_r/uthread/uthread_atfork.c,v 1.1 2004/12/10 03:36:45 grog Exp $
*/
#ifndef NO_PIC
#include <sys/types.h>
#include <sys/exec_elf.h>
#pragma weak _DYNAMIC
#endif
#include <errno.h>
#include <pthread.h>
#include <stdlib.h>
#include <unistd.h>
#include "thread_private.h" /* in libc/include */
#include "rthread.h"
pid_t _thread_sys_fork(void);
pid_t _thread_sys_vfork(void);
pid_t _dofork(int);
pid_t
_dofork(int is_vfork)
{
pthread_t me;
pid_t (*sys_fork)(void);
pid_t newid;
sys_fork = is_vfork ? &_thread_sys_vfork : &_thread_sys_fork;
if (!_threads_ready)
return sys_fork();
me = pthread_self();
/*
* Protect important libc/ld.so critical areas across the fork call.
* dlclose() will grab the atexit lock via __cxa_finalize() so lock
* the dl_lock first. malloc()/free() can use arc4random(), so lock
* malloc_lock before arc4_lock
*/
#ifndef NO_PIC
if (_DYNAMIC)
_rthread_dl_lock(0);
#endif
_thread_atexit_lock();
_thread_malloc_lock();
_thread_arc4_lock();
newid = sys_fork();
_thread_arc4_unlock();
_thread_malloc_unlock();
_thread_atexit_unlock();
if (newid == 0) {
#ifndef NO_PIC
/* reinitialize the lock in the child */
if (_DYNAMIC)
_rthread_dl_lock(2);
#endif
/* update this thread's structure */
me->tid = getthrid();
me->donesem.lock = _SPINLOCK_UNLOCKED_ASSIGN;
me->flags &= ~THREAD_DETACHED;
me->flags_lock = _SPINLOCK_UNLOCKED_ASSIGN;
/* this thread is the initial thread for the new process */
me->flags |= THREAD_ORIGINAL;
/* reinit the thread list */
LIST_INIT(&_thread_list);
LIST_INSERT_HEAD(&_thread_list, me, threads);
_thread_lock = _SPINLOCK_UNLOCKED_ASSIGN;
/* single threaded now */
__isthreaded = 0;
}
#ifndef NO_PIC
else if (_DYNAMIC)
_rthread_dl_lock(1);
#endif
return newid;
}
pid_t
_thread_fork(void)
{
return _dofork(0);
}
pid_t
vfork(void)
{
return _dofork(1);
}
|