2.9
[glibc/nacl-glibc.git] / nptl / sysdeps / unix / sysv / linux / libc_pthread_init.c
blob4b614bd1a681ddfd7ed7a89046be09677d7ebab5
1 /* Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <unistd.h>
21 #include <list.h>
22 #include <fork.h>
23 #include <dl-sysdep.h>
24 #include <tls.h>
25 #include <string.h>
26 #include <pthreadP.h>
27 #include <bits/libc-lock.h>
28 #include <sysdep.h>
29 #include <ldsodefs.h>
32 #ifdef TLS_MULTIPLE_THREADS_IN_TCB
33 void
34 #else
35 extern int __libc_multiple_threads attribute_hidden;
37 int *
38 #endif
39 __libc_pthread_init (ptr, reclaim, functions)
40 unsigned long int *ptr;
41 void (*reclaim) (void);
42 const struct pthread_functions *functions;
44 /* Remember the pointer to the generation counter in libpthread. */
45 __fork_generation_pointer = ptr;
47 /* Called by a child after fork. */
48 __register_atfork (NULL, NULL, reclaim, NULL);
50 #ifdef SHARED
51 /* Copy the function pointers into an array in libc. This enables
52 access with just one memory reference but moreso, it prevents
53 hijacking the function pointers with just one pointer change. We
54 "encrypt" the function pointers since we cannot write-protect the
55 array easily enough. */
56 union ptrhack
58 struct pthread_functions pf;
59 void *parr[1];
60 } const *src;
61 union ptrhack *dest;
62 # define NPTRS (sizeof (struct pthread_functions) / sizeof (void *))
64 src = (const void *) functions;
65 dest = (void *) &__libc_pthread_functions;
67 for (size_t cnt = 0; cnt < NPTRS; ++cnt)
69 void *p = src->parr[cnt];
70 PTR_MANGLE (p);
71 dest->parr[cnt] = p;
73 __libc_pthread_functions_init = 1;
74 #endif
76 #ifndef TLS_MULTIPLE_THREADS_IN_TCB
77 return &__libc_multiple_threads;
78 #endif
81 #ifdef SHARED
82 libc_freeres_fn (freeres_libptread)
84 if (__libc_pthread_functions_init)
85 PTHFCT_CALL (ptr_freeres, ());
87 #endif