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
|
/* $OpenBSD: rthread_fork.c,v 1.23 2017/10/29 08:45:53 mpi 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 <elf.h>
#pragma weak _DYNAMIC
#endif
#include <errno.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <tib.h>
#include <unistd.h>
#include "rthread.h"
#include "rthread_cb.h"
/* make {fork,vfork,getthrid} call _thread_sys_{fork,vfork,getthrid} */
REDIRECT_SYSCALL(fork);
REDIRECT_SYSCALL(vfork);
REDIRECT_SYSCALL(getthrid);
static pid_t
_dofork(pid_t (*sys_fork)(void))
{
pthread_t me;
pid_t newid;
extern int _post_threaded;
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
newid = _thread_dofork(sys_fork);
if (newid == 0) {
struct tib *tib = me->tib;
#ifndef NO_PIC
/* reinitialize the lock in the child */
if (_DYNAMIC)
_rthread_dl_lock(2);
#endif
/* update this thread's structure */
tib->tib_tid = getthrid();
me->donesem.lock = _SPINLOCK_UNLOCKED;
me->flags_lock = _SPINLOCK_UNLOCKED;
/* reinit the thread list */
LIST_INIT(&_thread_list);
LIST_INSERT_HEAD(&_thread_list, me, threads);
_thread_lock = _SPINLOCK_UNLOCKED;
/* single threaded now */
__isthreaded = 0;
_post_threaded = 0; /* notyet... */
}
#ifndef NO_PIC
else if (_DYNAMIC)
_rthread_dl_lock(1);
#endif
return newid;
}
pid_t
_thread_fork(void)
{
return _dofork(&fork);
}
pid_t
_thread_vfork(void)
{
return _dofork(&vfork);
}
|