fix aliasing violations in mbtowc and mbrtowc
[musl] / src / env / __init_tls.c
1 #include <elf.h>
2 #include <limits.h>
3 #include <sys/mman.h>
4 #include <string.h>
5 #include "pthread_impl.h"
6 #include "libc.h"
7 #include "atomic.h"
8 #include "syscall.h"
9
10 int __init_tp(void *p)
11 {
12         pthread_t td = p;
13         td->self = td;
14         int r = __set_thread_area(TP_ADJ(p));
15         if (r < 0) return -1;
16         if (!r) libc.can_do_threads = 1;
17         libc.has_thread_pointer = 1;
18         td->tid = td->pid = __syscall(SYS_set_tid_address, &td->tid);
19         return 0;
20 }
21
22 #ifndef SHARED
23
24 static long long builtin_tls[(sizeof(struct pthread) + 64)/sizeof(long long)];
25
26 struct tls_image {
27         void *image;
28         size_t len, size, align;
29 } __static_tls ATTR_LIBC_VISIBILITY;
30
31 #define T __static_tls
32
33 void *__copy_tls(unsigned char *mem)
34 {
35         pthread_t td;
36         if (!T.image) return mem;
37         void **dtv = (void *)mem;
38         dtv[0] = (void *)1;
39 #ifdef TLS_ABOVE_TP
40         mem += sizeof(void *) * 2;
41         mem += -((uintptr_t)mem + sizeof(struct pthread)) & (T.align-1);
42         td = (pthread_t)mem;
43         mem += sizeof(struct pthread);
44 #else
45         mem += libc.tls_size - sizeof(struct pthread);
46         mem -= (uintptr_t)mem & (T.align-1);
47         td = (pthread_t)mem;
48         mem -= T.size;
49 #endif
50         td->dtv = dtv;
51         dtv[1] = mem;
52         memcpy(mem, T.image, T.len);
53         return td;
54 }
55
56 #if ULONG_MAX == 0xffffffff
57 typedef Elf32_Phdr Phdr;
58 #else
59 typedef Elf64_Phdr Phdr;
60 #endif
61
62 void __init_tls(size_t *aux)
63 {
64         unsigned char *p;
65         size_t n;
66         Phdr *phdr, *tls_phdr=0;
67         size_t base = 0;
68         void *mem;
69
70         libc.tls_size = sizeof(struct pthread);
71
72         for (p=(void *)aux[AT_PHDR],n=aux[AT_PHNUM]; n; n--,p+=aux[AT_PHENT]) {
73                 phdr = (void *)p;
74                 if (phdr->p_type == PT_PHDR)
75                         base = aux[AT_PHDR] - phdr->p_vaddr;
76                 if (phdr->p_type == PT_TLS)
77                         tls_phdr = phdr;
78         }
79
80         if (tls_phdr) {
81                 T.image = (void *)(base + tls_phdr->p_vaddr);
82                 T.len = tls_phdr->p_filesz;
83                 T.size = tls_phdr->p_memsz;
84                 T.align = tls_phdr->p_align;
85         }
86
87         T.size += (-T.size - (uintptr_t)T.image) & (T.align-1);
88         if (T.align < 4*sizeof(size_t)) T.align = 4*sizeof(size_t);
89
90         libc.tls_size = 2*sizeof(void *)+T.size+T.align+sizeof(struct pthread);
91
92         if (libc.tls_size > sizeof builtin_tls) {
93                 mem = (void *)__syscall(
94 #ifdef SYS_mmap2
95                         SYS_mmap2,
96 #else
97                         SYS_mmap,
98 #endif
99                         0, libc.tls_size, PROT_READ|PROT_WRITE,
100                         MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
101                 /* -4095...-1 cast to void * will crash on dereference anyway,
102                  * so don't bloat the init code checking for error codes and
103                  * explicitly calling a_crash(). */
104         } else {
105                 mem = builtin_tls;
106         }
107
108         /* Failure to initialize thread pointer is fatal if TLS is used. */
109         if (__init_tp(__copy_tls(mem)) < 0 && tls_phdr)
110                 a_crash();
111 }
112 #else
113 void __init_tls(size_t *auxv) { }
114 #endif