reprocess all libc/ldso symbolic relocations in dynamic linking stage 3
[oweals/musl.git] / src / ldso / dynlink.c
1 #define _GNU_SOURCE
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <stdarg.h>
5 #include <stddef.h>
6 #include <string.h>
7 #include <unistd.h>
8 #include <stdint.h>
9 #include <elf.h>
10 #include <sys/mman.h>
11 #include <limits.h>
12 #include <fcntl.h>
13 #include <sys/stat.h>
14 #include <errno.h>
15 #include <link.h>
16 #include <setjmp.h>
17 #include <pthread.h>
18 #include <ctype.h>
19 #include <dlfcn.h>
20 #include "pthread_impl.h"
21 #include "libc.h"
22 #include "dynlink.h"
23
24 static void error(const char *, ...);
25
26 #ifdef SHARED
27
28 #define MAXP2(a,b) (-(-(a)&-(b)))
29 #define ALIGN(x,y) ((x)+(y)-1 & -(y))
30
31 struct debug {
32         int ver;
33         void *head;
34         void (*bp)(void);
35         int state;
36         void *base;
37 };
38
39 struct td_index {
40         size_t args[2];
41         struct td_index *next;
42 };
43
44 struct dso {
45         unsigned char *base;
46         char *name;
47         size_t *dynv;
48         struct dso *next, *prev;
49
50         Phdr *phdr;
51         int phnum;
52         size_t phentsize;
53         int refcnt;
54         Sym *syms;
55         uint32_t *hashtab;
56         uint32_t *ghashtab;
57         int16_t *versym;
58         char *strings;
59         unsigned char *map;
60         size_t map_len;
61         dev_t dev;
62         ino_t ino;
63         signed char global;
64         char relocated;
65         char constructed;
66         char kernel_mapped;
67         struct dso **deps, *needed_by;
68         char *rpath_orig, *rpath;
69         void *tls_image;
70         size_t tls_len, tls_size, tls_align, tls_id, tls_offset;
71         size_t relro_start, relro_end;
72         void **new_dtv;
73         unsigned char *new_tls;
74         volatile int new_dtv_idx, new_tls_idx;
75         struct td_index *td_index;
76         struct dso *fini_next;
77         char *shortname;
78         char buf[];
79 };
80
81 struct symdef {
82         Sym *sym;
83         struct dso *dso;
84 };
85
86 int __init_tp(void *);
87 void __init_libc(char **, char *);
88
89 const char *__libc_get_version(void);
90
91 static struct builtin_tls {
92         char c;
93         struct pthread pt;
94         void *space[16];
95 } builtin_tls[1];
96 #define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
97
98 #define ADDEND_LIMIT 4096
99 static size_t *saved_addends, *apply_addends_to;
100
101 static struct dso ldso;
102 static struct dso *head, *tail, *fini_head;
103 static char *env_path, *sys_path;
104 static unsigned long long gencnt;
105 static int runtime;
106 static int ldd_mode;
107 static int ldso_fail;
108 static int noload;
109 static jmp_buf *rtld_fail;
110 static pthread_rwlock_t lock;
111 static struct debug debug;
112 static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
113 static size_t static_tls_cnt;
114 static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
115
116 struct debug *_dl_debug_addr = &debug;
117
118 static int dl_strcmp(const char *l, const char *r)
119 {
120         for (; *l==*r && *l; l++, r++);
121         return *(unsigned char *)l - *(unsigned char *)r;
122 }
123 #define strcmp(l,r) dl_strcmp(l,r)
124
125 static void decode_vec(size_t *v, size_t *a, size_t cnt)
126 {
127         size_t i;
128         for (i=0; i<cnt; i++) a[i] = 0;
129         for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
130                 a[0] |= 1UL<<v[0];
131                 a[v[0]] = v[1];
132         }
133 }
134
135 static int search_vec(size_t *v, size_t *r, size_t key)
136 {
137         for (; v[0]!=key; v+=2)
138                 if (!v[0]) return 0;
139         *r = v[1];
140         return 1;
141 }
142
143 static uint32_t sysv_hash(const char *s0)
144 {
145         const unsigned char *s = (void *)s0;
146         uint_fast32_t h = 0;
147         while (*s) {
148                 h = 16*h + *s++;
149                 h ^= h>>24 & 0xf0;
150         }
151         return h & 0xfffffff;
152 }
153
154 static uint32_t gnu_hash(const char *s0)
155 {
156         const unsigned char *s = (void *)s0;
157         uint_fast32_t h = 5381;
158         for (; *s; s++)
159                 h = h*33 + *s;
160         return h;
161 }
162
163 static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
164 {
165         size_t i;
166         Sym *syms = dso->syms;
167         uint32_t *hashtab = dso->hashtab;
168         char *strings = dso->strings;
169         for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
170                 if ((!dso->versym || dso->versym[i] >= 0)
171                     && (!strcmp(s, strings+syms[i].st_name)))
172                         return syms+i;
173         }
174         return 0;
175 }
176
177 static Sym *gnu_lookup(const char *s, uint32_t h1, struct dso *dso)
178 {
179         Sym *syms = dso->syms;
180         char *strings = dso->strings;
181         uint32_t *hashtab = dso->ghashtab;
182         uint32_t nbuckets = hashtab[0];
183         uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
184         uint32_t h2;
185         uint32_t *hashval;
186         uint32_t i = buckets[h1 % nbuckets];
187
188         if (!i) return 0;
189
190         hashval = buckets + nbuckets + (i - hashtab[1]);
191
192         for (h1 |= 1; ; i++) {
193                 h2 = *hashval++;
194                 if ((!dso->versym || dso->versym[i] >= 0)
195                     && (h1 == (h2|1)) && !strcmp(s, strings + syms[i].st_name))
196                         return syms+i;
197                 if (h2 & 1) break;
198         }
199
200         return 0;
201 }
202
203 #define OK_TYPES (1<<STT_NOTYPE | 1<<STT_OBJECT | 1<<STT_FUNC | 1<<STT_COMMON | 1<<STT_TLS)
204 #define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
205
206 #ifndef ARCH_SYM_REJECT_UND
207 #define ARCH_SYM_REJECT_UND(s) 0
208 #endif
209
210 static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
211 {
212         uint32_t h = 0, gh = 0;
213         struct symdef def = {0};
214         for (; dso; dso=dso->next) {
215                 Sym *sym;
216                 if (!dso->global) continue;
217                 if (dso->ghashtab) {
218                         if (!gh) gh = gnu_hash(s);
219                         sym = gnu_lookup(s, gh, dso);
220                 } else {
221                         if (!h) h = sysv_hash(s);
222                         sym = sysv_lookup(s, h, dso);
223                 }
224                 if (!sym) continue;
225                 if (!sym->st_shndx)
226                         if (need_def || (sym->st_info&0xf) == STT_TLS
227                             || ARCH_SYM_REJECT_UND(sym))
228                                 continue;
229                 if (!sym->st_value)
230                         if ((sym->st_info&0xf) != STT_TLS)
231                                 continue;
232                 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
233                 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
234
235                 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
236                 def.sym = sym;
237                 def.dso = dso;
238                 if (sym->st_info>>4 == STB_GLOBAL) break;
239         }
240         return def;
241 }
242
243 __attribute__((__visibility__("hidden")))
244 ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
245
246 static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
247 {
248         unsigned char *base = dso->base;
249         Sym *syms = dso->syms;
250         char *strings = dso->strings;
251         Sym *sym;
252         const char *name;
253         void *ctx;
254         int type;
255         int sym_index;
256         struct symdef def;
257         size_t *reloc_addr;
258         size_t sym_val;
259         size_t tls_val;
260         size_t addend;
261         int skip_relative = 0, reuse_addends = 0, save_slot = 0;
262
263         if (dso == &ldso) {
264                 /* Only ldso's REL table needs addend saving/reuse. */
265                 if (rel == apply_addends_to)
266                         reuse_addends = 1;
267                 skip_relative = 1;
268         }
269
270         for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
271                 if (skip_relative && IS_RELATIVE(rel[1])) continue;
272                 type = R_TYPE(rel[1]);
273                 sym_index = R_SYM(rel[1]);
274                 reloc_addr = (void *)(base + rel[0]);
275                 if (sym_index) {
276                         sym = syms + sym_index;
277                         name = strings + sym->st_name;
278                         ctx = type==REL_COPY ? head->next : head;
279                         def = find_sym(ctx, name, type==REL_PLT);
280                         if (!def.sym && (sym->st_shndx != SHN_UNDEF
281                             || sym->st_info>>4 != STB_WEAK)) {
282                                 error("Error relocating %s: %s: symbol not found",
283                                         dso->name, name);
284                                 if (runtime) longjmp(*rtld_fail, 1);
285                                 continue;
286                         }
287                 } else {
288                         sym = 0;
289                         def.sym = 0;
290                         def.dso = dso;
291                 }
292
293                 if (stride > 2) {
294                         addend = rel[2];
295                 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
296                         addend = 0;
297                 } else if (reuse_addends) {
298                         /* Save original addend in stage 2 where the dso
299                          * chain consists of just ldso; otherwise read back
300                          * saved addend since the inline one was clobbered. */
301                         if (head==&ldso)
302                                 saved_addends[save_slot] = *reloc_addr;
303                         addend = saved_addends[save_slot++];
304                 } else {
305                         addend = *reloc_addr;
306                 }
307
308                 sym_val = def.sym ? (size_t)def.dso->base+def.sym->st_value : 0;
309                 tls_val = def.sym ? def.sym->st_value : 0;
310
311                 switch(type) {
312                 case REL_NONE:
313                         break;
314                 case REL_OFFSET:
315                         addend -= (size_t)reloc_addr;
316                 case REL_SYMBOLIC:
317                 case REL_GOT:
318                 case REL_PLT:
319                         *reloc_addr = sym_val + addend;
320                         break;
321                 case REL_RELATIVE:
322                         *reloc_addr = (size_t)base + addend;
323                         break;
324                 case REL_SYM_OR_REL:
325                         if (sym) *reloc_addr = sym_val + addend;
326                         else *reloc_addr = (size_t)base + addend;
327                         break;
328                 case REL_COPY:
329                         memcpy(reloc_addr, (void *)sym_val, sym->st_size);
330                         break;
331                 case REL_OFFSET32:
332                         *(uint32_t *)reloc_addr = sym_val + addend
333                                 - (size_t)reloc_addr;
334                         break;
335                 case REL_DTPMOD:
336                         *reloc_addr = def.dso->tls_id;
337                         break;
338                 case REL_DTPOFF:
339                         *reloc_addr = tls_val + addend;
340                         break;
341 #ifdef TLS_ABOVE_TP
342                 case REL_TPOFF:
343                         *reloc_addr = tls_val + def.dso->tls_offset + TPOFF_K + addend;
344                         break;
345 #else
346                 case REL_TPOFF:
347                         *reloc_addr = tls_val - def.dso->tls_offset + addend;
348                         break;
349                 case REL_TPOFF_NEG:
350                         *reloc_addr = def.dso->tls_offset - tls_val + addend;
351                         break;
352 #endif
353                 case REL_TLSDESC:
354                         if (stride<3) addend = reloc_addr[1];
355                         if (runtime && def.dso->tls_id >= static_tls_cnt) {
356                                 struct td_index *new = malloc(sizeof *new);
357                                 if (!new) {
358                                         error(
359                                         "Error relocating %s: cannot allocate TLSDESC for %s",
360                                         dso->name, sym ? name : "(local)" );
361                                         longjmp(*rtld_fail, 1);
362                                 }
363                                 new->next = dso->td_index;
364                                 dso->td_index = new;
365                                 new->args[0] = def.dso->tls_id;
366                                 new->args[1] = tls_val + addend;
367                                 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
368                                 reloc_addr[1] = (size_t)new;
369                         } else {
370                                 reloc_addr[0] = (size_t)__tlsdesc_static;
371 #ifdef TLS_ABOVE_TP
372                                 reloc_addr[1] = tls_val + def.dso->tls_offset
373                                         + TPOFF_K + addend;
374 #else
375                                 reloc_addr[1] = tls_val - def.dso->tls_offset
376                                         + addend;
377 #endif
378                         }
379                         break;
380                 default:
381                         error("Error relocating %s: unsupported relocation type %d",
382                                 dso->name, type);
383                         if (runtime) longjmp(*rtld_fail, 1);
384                         continue;
385                 }
386         }
387 }
388
389 /* A huge hack: to make up for the wastefulness of shared libraries
390  * needing at least a page of dirty memory even if they have no global
391  * data, we reclaim the gaps at the beginning and end of writable maps
392  * and "donate" them to the heap by setting up minimal malloc
393  * structures and then freeing them. */
394
395 static void reclaim(struct dso *dso, size_t start, size_t end)
396 {
397         size_t *a, *z;
398         if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
399         if (end   >= dso->relro_start && end   < dso->relro_end) end = dso->relro_start;
400         start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
401         end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
402         if (start>end || end-start < 4*sizeof(size_t)) return;
403         a = (size_t *)(dso->base + start);
404         z = (size_t *)(dso->base + end);
405         a[-2] = 1;
406         a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
407         z[1] = 1;
408         free(a);
409 }
410
411 static void reclaim_gaps(struct dso *dso)
412 {
413         Phdr *ph = dso->phdr;
414         size_t phcnt = dso->phnum;
415
416         for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
417                 if (ph->p_type!=PT_LOAD) continue;
418                 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
419                 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
420                 reclaim(dso, ph->p_vaddr+ph->p_memsz,
421                         ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
422         }
423 }
424
425 static void *map_library(int fd, struct dso *dso)
426 {
427         Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
428         void *allocated_buf=0;
429         size_t phsize;
430         size_t addr_min=SIZE_MAX, addr_max=0, map_len;
431         size_t this_min, this_max;
432         off_t off_start;
433         Ehdr *eh;
434         Phdr *ph, *ph0;
435         unsigned prot;
436         unsigned char *map=MAP_FAILED, *base;
437         size_t dyn=0;
438         size_t tls_image=0;
439         size_t i;
440
441         ssize_t l = read(fd, buf, sizeof buf);
442         eh = buf;
443         if (l<0) return 0;
444         if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
445                 goto noexec;
446         phsize = eh->e_phentsize * eh->e_phnum;
447         if (phsize > sizeof buf - sizeof *eh) {
448                 allocated_buf = malloc(phsize);
449                 if (!allocated_buf) return 0;
450                 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
451                 if (l < 0) goto error;
452                 if (l != phsize) goto noexec;
453                 ph = ph0 = allocated_buf;
454         } else if (eh->e_phoff + phsize > l) {
455                 l = pread(fd, buf+1, phsize, eh->e_phoff);
456                 if (l < 0) goto error;
457                 if (l != phsize) goto noexec;
458                 ph = ph0 = (void *)(buf + 1);
459         } else {
460                 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
461         }
462         for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
463                 if (ph->p_type == PT_DYNAMIC) {
464                         dyn = ph->p_vaddr;
465                 } else if (ph->p_type == PT_TLS) {
466                         tls_image = ph->p_vaddr;
467                         dso->tls_align = ph->p_align;
468                         dso->tls_len = ph->p_filesz;
469                         dso->tls_size = ph->p_memsz;
470                 } else if (ph->p_type == PT_GNU_RELRO) {
471                         dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
472                         dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
473                 }
474                 if (ph->p_type != PT_LOAD) continue;
475                 if (ph->p_vaddr < addr_min) {
476                         addr_min = ph->p_vaddr;
477                         off_start = ph->p_offset;
478                         prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
479                                 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
480                                 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
481                 }
482                 if (ph->p_vaddr+ph->p_memsz > addr_max) {
483                         addr_max = ph->p_vaddr+ph->p_memsz;
484                 }
485         }
486         if (!dyn) goto noexec;
487         addr_max += PAGE_SIZE-1;
488         addr_max &= -PAGE_SIZE;
489         addr_min &= -PAGE_SIZE;
490         off_start &= -PAGE_SIZE;
491         map_len = addr_max - addr_min + off_start;
492         /* The first time, we map too much, possibly even more than
493          * the length of the file. This is okay because we will not
494          * use the invalid part; we just need to reserve the right
495          * amount of virtual address space to map over later. */
496         map = mmap((void *)addr_min, map_len, prot, MAP_PRIVATE, fd, off_start);
497         if (map==MAP_FAILED) goto error;
498         /* If the loaded file is not relocatable and the requested address is
499          * not available, then the load operation must fail. */
500         if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
501                 errno = EBUSY;
502                 goto error;
503         }
504         base = map - addr_min;
505         dso->phdr = 0;
506         dso->phnum = 0;
507         for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
508                 if (ph->p_type != PT_LOAD) continue;
509                 /* Check if the programs headers are in this load segment, and
510                  * if so, record the address for use by dl_iterate_phdr. */
511                 if (!dso->phdr && eh->e_phoff >= ph->p_offset
512                     && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
513                         dso->phdr = (void *)(base + ph->p_vaddr
514                                 + (eh->e_phoff-ph->p_offset));
515                         dso->phnum = eh->e_phnum;
516                         dso->phentsize = eh->e_phentsize;
517                 }
518                 /* Reuse the existing mapping for the lowest-address LOAD */
519                 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min) continue;
520                 this_min = ph->p_vaddr & -PAGE_SIZE;
521                 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
522                 off_start = ph->p_offset & -PAGE_SIZE;
523                 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
524                         ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
525                         ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
526                 if (mmap(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED)
527                         goto error;
528                 if (ph->p_memsz > ph->p_filesz) {
529                         size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
530                         size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
531                         memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
532                         if (pgbrk-(size_t)base < this_max && mmap((void *)pgbrk, (size_t)base+this_max-pgbrk, prot, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) == MAP_FAILED)
533                                 goto error;
534                 }
535         }
536         for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
537                 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
538                         if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC) < 0)
539                                 goto error;
540                         break;
541                 }
542         dso->map = map;
543         dso->map_len = map_len;
544         dso->base = base;
545         dso->dynv = (void *)(base+dyn);
546         if (dso->tls_size) dso->tls_image = (void *)(base+tls_image);
547         if (!runtime) reclaim_gaps(dso);
548         free(allocated_buf);
549         return map;
550 noexec:
551         errno = ENOEXEC;
552 error:
553         if (map!=MAP_FAILED) munmap(map, map_len);
554         free(allocated_buf);
555         return 0;
556 }
557
558 static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
559 {
560         size_t l;
561         int fd;
562         for (;;) {
563                 s += strspn(s, ":\n");
564                 l = strcspn(s, ":\n");
565                 if (l-1 >= INT_MAX) return -1;
566                 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
567                         if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
568                         switch (errno) {
569                         case ENOENT:
570                         case ENOTDIR:
571                         case EACCES:
572                         case ENAMETOOLONG:
573                                 break;
574                         default:
575                                 /* Any negative value but -1 will inhibit
576                                  * futher path search. */
577                                 return -2;
578                         }
579                 }
580                 s += l;
581         }
582 }
583
584 static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
585 {
586         size_t n, l;
587         const char *s, *t, *origin;
588         char *d;
589         if (p->rpath || !p->rpath_orig) return 0;
590         if (!strchr(p->rpath_orig, '$')) {
591                 p->rpath = p->rpath_orig;
592                 return 0;
593         }
594         n = 0;
595         s = p->rpath_orig;
596         while ((t=strchr(s, '$'))) {
597                 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
598                         return 0;
599                 s = t+1;
600                 n++;
601         }
602         if (n > SSIZE_MAX/PATH_MAX) return 0;
603
604         if (p->kernel_mapped) {
605                 /* $ORIGIN searches cannot be performed for the main program
606                  * when it is suid/sgid/AT_SECURE. This is because the
607                  * pathname is under the control of the caller of execve.
608                  * For libraries, however, $ORIGIN can be processed safely
609                  * since the library's pathname came from a trusted source
610                  * (either system paths or a call to dlopen). */
611                 if (libc.secure)
612                         return 0;
613                 l = readlink("/proc/self/exe", buf, buf_size);
614                 if (l == -1) switch (errno) {
615                 case ENOENT:
616                 case ENOTDIR:
617                 case EACCES:
618                         break;
619                 default:
620                         return -1;
621                 }
622                 if (l >= buf_size)
623                         return 0;
624                 buf[l] = 0;
625                 origin = buf;
626         } else {
627                 origin = p->name;
628         }
629         t = strrchr(origin, '/');
630         l = t ? t-origin : 0;
631         p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
632         if (!p->rpath) return -1;
633
634         d = p->rpath;
635         s = p->rpath_orig;
636         while ((t=strchr(s, '$'))) {
637                 memcpy(d, s, t-s);
638                 d += t-s;
639                 memcpy(d, origin, l);
640                 d += l;
641                 /* It was determined previously that the '$' is followed
642                  * either by "ORIGIN" or "{ORIGIN}". */
643                 s = t + 7 + 2*(t[1]=='{');
644         }
645         strcpy(d, s);
646         return 0;
647 }
648
649 static void decode_dyn(struct dso *p)
650 {
651         size_t dyn[DYN_CNT];
652         decode_vec(p->dynv, dyn, DYN_CNT);
653         p->syms = (void *)(p->base + dyn[DT_SYMTAB]);
654         p->strings = (void *)(p->base + dyn[DT_STRTAB]);
655         if (dyn[0]&(1<<DT_HASH))
656                 p->hashtab = (void *)(p->base + dyn[DT_HASH]);
657         if (dyn[0]&(1<<DT_RPATH))
658                 p->rpath_orig = (void *)(p->strings + dyn[DT_RPATH]);
659         if (dyn[0]&(1<<DT_RUNPATH))
660                 p->rpath_orig = (void *)(p->strings + dyn[DT_RUNPATH]);
661         if (search_vec(p->dynv, dyn, DT_GNU_HASH))
662                 p->ghashtab = (void *)(p->base + *dyn);
663         if (search_vec(p->dynv, dyn, DT_VERSYM))
664                 p->versym = (void *)(p->base + *dyn);
665 }
666
667 static struct dso *load_library(const char *name, struct dso *needed_by)
668 {
669         char buf[2*NAME_MAX+2];
670         const char *pathname;
671         unsigned char *map;
672         struct dso *p, temp_dso = {0};
673         int fd;
674         struct stat st;
675         size_t alloc_size;
676         int n_th = 0;
677         int is_self = 0;
678
679         if (!*name) {
680                 errno = EINVAL;
681                 return 0;
682         }
683
684         /* Catch and block attempts to reload the implementation itself */
685         if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
686                 static const char *rp, reserved[] =
687                         "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
688                 char *z = strchr(name, '.');
689                 if (z) {
690                         size_t l = z-name;
691                         for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
692                         if (*rp) {
693                                 if (ldd_mode) {
694                                         /* Track which names have been resolved
695                                          * and only report each one once. */
696                                         static unsigned reported;
697                                         unsigned mask = 1U<<(rp-reserved);
698                                         if (!(reported & mask)) {
699                                                 reported |= mask;
700                                                 dprintf(1, "\t%s => %s (%p)\n",
701                                                         name, ldso.name,
702                                                         ldso.base);
703                                         }
704                                 }
705                                 is_self = 1;
706                         }
707                 }
708         }
709         if (!strcmp(name, ldso.name)) is_self = 1;
710         if (is_self) {
711                 if (!ldso.prev) {
712                         tail->next = &ldso;
713                         ldso.prev = tail;
714                         tail = ldso.next ? ldso.next : &ldso;
715                 }
716                 return &ldso;
717         }
718         if (strchr(name, '/')) {
719                 pathname = name;
720                 fd = open(name, O_RDONLY|O_CLOEXEC);
721         } else {
722                 /* Search for the name to see if it's already loaded */
723                 for (p=head->next; p; p=p->next) {
724                         if (p->shortname && !strcmp(p->shortname, name)) {
725                                 p->refcnt++;
726                                 return p;
727                         }
728                 }
729                 if (strlen(name) > NAME_MAX) return 0;
730                 fd = -1;
731                 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
732                 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
733                         if (fixup_rpath(p, buf, sizeof buf) < 0)
734                                 fd = -2; /* Inhibit further search. */
735                         if (p->rpath)
736                                 fd = path_open(name, p->rpath, buf, sizeof buf);
737                 }
738                 if (fd == -1) {
739                         if (!sys_path) {
740                                 char *prefix = 0;
741                                 size_t prefix_len;
742                                 if (ldso.name[0]=='/') {
743                                         char *s, *t, *z;
744                                         for (s=t=z=ldso.name; *s; s++)
745                                                 if (*s=='/') z=t, t=s;
746                                         prefix_len = z-ldso.name;
747                                         if (prefix_len < PATH_MAX)
748                                                 prefix = ldso.name;
749                                 }
750                                 if (!prefix) {
751                                         prefix = "";
752                                         prefix_len = 0;
753                                 }
754                                 char etc_ldso_path[prefix_len + 1
755                                         + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
756                                 snprintf(etc_ldso_path, sizeof etc_ldso_path,
757                                         "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
758                                         (int)prefix_len, prefix);
759                                 FILE *f = fopen(etc_ldso_path, "rbe");
760                                 if (f) {
761                                         if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
762                                                 free(sys_path);
763                                                 sys_path = "";
764                                         }
765                                         fclose(f);
766                                 } else if (errno != ENOENT) {
767                                         sys_path = "";
768                                 }
769                         }
770                         if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
771                         fd = path_open(name, sys_path, buf, sizeof buf);
772                 }
773                 pathname = buf;
774         }
775         if (fd < 0) return 0;
776         if (fstat(fd, &st) < 0) {
777                 close(fd);
778                 return 0;
779         }
780         for (p=head->next; p; p=p->next) {
781                 if (p->dev == st.st_dev && p->ino == st.st_ino) {
782                         /* If this library was previously loaded with a
783                          * pathname but a search found the same inode,
784                          * setup its shortname so it can be found by name. */
785                         if (!p->shortname && pathname != name)
786                                 p->shortname = strrchr(p->name, '/')+1;
787                         close(fd);
788                         p->refcnt++;
789                         return p;
790                 }
791         }
792         map = noload ? 0 : map_library(fd, &temp_dso);
793         close(fd);
794         if (!map) return 0;
795
796         /* Allocate storage for the new DSO. When there is TLS, this
797          * storage must include a reservation for all pre-existing
798          * threads to obtain copies of both the new TLS, and an
799          * extended DTV capable of storing an additional slot for
800          * the newly-loaded DSO. */
801         alloc_size = sizeof *p + strlen(pathname) + 1;
802         if (runtime && temp_dso.tls_image) {
803                 size_t per_th = temp_dso.tls_size + temp_dso.tls_align
804                         + sizeof(void *) * (tls_cnt+3);
805                 n_th = libc.threads_minus_1 + 1;
806                 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
807                 else alloc_size += n_th * per_th;
808         }
809         p = calloc(1, alloc_size);
810         if (!p) {
811                 munmap(map, temp_dso.map_len);
812                 return 0;
813         }
814         memcpy(p, &temp_dso, sizeof temp_dso);
815         decode_dyn(p);
816         p->dev = st.st_dev;
817         p->ino = st.st_ino;
818         p->refcnt = 1;
819         p->needed_by = needed_by;
820         p->name = p->buf;
821         strcpy(p->name, pathname);
822         /* Add a shortname only if name arg was not an explicit pathname. */
823         if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
824         if (p->tls_image) {
825                 p->tls_id = ++tls_cnt;
826                 tls_align = MAXP2(tls_align, p->tls_align);
827 #ifdef TLS_ABOVE_TP
828                 p->tls_offset = tls_offset + ( (tls_align-1) &
829                         -(tls_offset + (uintptr_t)p->tls_image) );
830                 tls_offset += p->tls_size;
831 #else
832                 tls_offset += p->tls_size + p->tls_align - 1;
833                 tls_offset -= (tls_offset + (uintptr_t)p->tls_image)
834                         & (p->tls_align-1);
835                 p->tls_offset = tls_offset;
836 #endif
837                 p->new_dtv = (void *)(-sizeof(size_t) &
838                         (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
839                 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
840         }
841
842         tail->next = p;
843         p->prev = tail;
844         tail = p;
845
846         if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
847
848         return p;
849 }
850
851 static void load_deps(struct dso *p)
852 {
853         size_t i, ndeps=0;
854         struct dso ***deps = &p->deps, **tmp, *dep;
855         for (; p; p=p->next) {
856                 for (i=0; p->dynv[i]; i+=2) {
857                         if (p->dynv[i] != DT_NEEDED) continue;
858                         dep = load_library(p->strings + p->dynv[i+1], p);
859                         if (!dep) {
860                                 error("Error loading shared library %s: %m (needed by %s)",
861                                         p->strings + p->dynv[i+1], p->name);
862                                 if (runtime) longjmp(*rtld_fail, 1);
863                                 continue;
864                         }
865                         if (runtime) {
866                                 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
867                                 if (!tmp) longjmp(*rtld_fail, 1);
868                                 tmp[ndeps++] = dep;
869                                 tmp[ndeps] = 0;
870                                 *deps = tmp;
871                         }
872                 }
873         }
874 }
875
876 static void load_preload(char *s)
877 {
878         int tmp;
879         char *z;
880         for (z=s; *z; s=z) {
881                 for (   ; *s && (isspace(*s) || *s==':'); s++);
882                 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
883                 tmp = *z;
884                 *z = 0;
885                 load_library(s, 0);
886                 *z = tmp;
887         }
888 }
889
890 static void make_global(struct dso *p)
891 {
892         for (; p; p=p->next) p->global = 1;
893 }
894
895 static void do_mips_relocs(struct dso *p, size_t *got)
896 {
897         size_t i, j, rel[2];
898         unsigned char *base = p->base;
899         i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
900         if (p==&ldso) {
901                 got += i;
902         } else {
903                 while (i--) *got++ += (size_t)base;
904         }
905         j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
906         i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
907         Sym *sym = p->syms + j;
908         rel[0] = (unsigned char *)got - base;
909         for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
910                 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
911                 do_relocs(p, rel, sizeof rel, 2);
912         }
913 }
914
915 static void reloc_all(struct dso *p)
916 {
917         size_t dyn[DYN_CNT];
918         for (; p; p=p->next) {
919                 if (p->relocated) continue;
920                 decode_vec(p->dynv, dyn, DYN_CNT);
921                 if (NEED_MIPS_GOT_RELOCS)
922                         do_mips_relocs(p, (void *)(p->base+dyn[DT_PLTGOT]));
923                 do_relocs(p, (void *)(p->base+dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
924                         2+(dyn[DT_PLTREL]==DT_RELA));
925                 do_relocs(p, (void *)(p->base+dyn[DT_REL]), dyn[DT_RELSZ], 2);
926                 do_relocs(p, (void *)(p->base+dyn[DT_RELA]), dyn[DT_RELASZ], 3);
927
928                 if (head != &ldso && p->relro_start != p->relro_end &&
929                     mprotect(p->base+p->relro_start, p->relro_end-p->relro_start, PROT_READ) < 0) {
930                         error("Error relocating %s: RELRO protection failed: %m",
931                                 p->name);
932                         if (runtime) longjmp(*rtld_fail, 1);
933                 }
934
935                 p->relocated = 1;
936         }
937 }
938
939 static void kernel_mapped_dso(struct dso *p)
940 {
941         size_t min_addr = -1, max_addr = 0, cnt;
942         Phdr *ph = p->phdr;
943         for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
944                 if (ph->p_type == PT_DYNAMIC) {
945                         p->dynv = (void *)(p->base + ph->p_vaddr);
946                 } else if (ph->p_type == PT_GNU_RELRO) {
947                         p->relro_start = ph->p_vaddr & -PAGE_SIZE;
948                         p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
949                 }
950                 if (ph->p_type != PT_LOAD) continue;
951                 if (ph->p_vaddr < min_addr)
952                         min_addr = ph->p_vaddr;
953                 if (ph->p_vaddr+ph->p_memsz > max_addr)
954                         max_addr = ph->p_vaddr+ph->p_memsz;
955         }
956         min_addr &= -PAGE_SIZE;
957         max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
958         p->map = p->base + min_addr;
959         p->map_len = max_addr - min_addr;
960         p->kernel_mapped = 1;
961 }
962
963 static void do_fini()
964 {
965         struct dso *p;
966         size_t dyn[DYN_CNT];
967         for (p=fini_head; p; p=p->fini_next) {
968                 if (!p->constructed) continue;
969                 decode_vec(p->dynv, dyn, DYN_CNT);
970                 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
971                         size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
972                         size_t *fn = (size_t *)(p->base + dyn[DT_FINI_ARRAY])+n;
973                         while (n--) ((void (*)(void))*--fn)();
974                 }
975 #ifndef NO_LEGACY_INITFINI
976                 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
977                         ((void (*)(void))(p->base + dyn[DT_FINI]))();
978 #endif
979         }
980 }
981
982 static void do_init_fini(struct dso *p)
983 {
984         size_t dyn[DYN_CNT];
985         int need_locking = libc.threads_minus_1;
986         /* Allow recursive calls that arise when a library calls
987          * dlopen from one of its constructors, but block any
988          * other threads until all ctors have finished. */
989         if (need_locking) pthread_mutex_lock(&init_fini_lock);
990         for (; p; p=p->prev) {
991                 if (p->constructed) continue;
992                 p->constructed = 1;
993                 decode_vec(p->dynv, dyn, DYN_CNT);
994                 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
995                         p->fini_next = fini_head;
996                         fini_head = p;
997                 }
998 #ifndef NO_LEGACY_INITFINI
999                 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
1000                         ((void (*)(void))(p->base + dyn[DT_INIT]))();
1001 #endif
1002                 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1003                         size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
1004                         size_t *fn = (void *)(p->base + dyn[DT_INIT_ARRAY]);
1005                         while (n--) ((void (*)(void))*fn++)();
1006                 }
1007                 if (!need_locking && libc.threads_minus_1) {
1008                         need_locking = 1;
1009                         pthread_mutex_lock(&init_fini_lock);
1010                 }
1011         }
1012         if (need_locking) pthread_mutex_unlock(&init_fini_lock);
1013 }
1014
1015 static void dl_debug_state(void)
1016 {
1017 }
1018
1019 weak_alias(dl_debug_state, _dl_debug_state);
1020
1021 void __reset_tls()
1022 {
1023         pthread_t self = __pthread_self();
1024         struct dso *p;
1025         for (p=head; p; p=p->next) {
1026                 if (!p->tls_id || !self->dtv[p->tls_id]) continue;
1027                 memcpy(self->dtv[p->tls_id], p->tls_image, p->tls_len);
1028                 memset((char *)self->dtv[p->tls_id]+p->tls_len, 0,
1029                         p->tls_size - p->tls_len);
1030                 if (p->tls_id == (size_t)self->dtv[0]) break;
1031         }
1032 }
1033
1034 void *__copy_tls(unsigned char *mem)
1035 {
1036         pthread_t td;
1037         struct dso *p;
1038         void **dtv;
1039
1040 #ifdef TLS_ABOVE_TP
1041         dtv = (void **)(mem + libc.tls_size) - (tls_cnt + 1);
1042
1043         mem += -((uintptr_t)mem + sizeof(struct pthread)) & (tls_align-1);
1044         td = (pthread_t)mem;
1045         mem += sizeof(struct pthread);
1046
1047         for (p=head; p; p=p->next) {
1048                 if (!p->tls_id) continue;
1049                 dtv[p->tls_id] = mem + p->tls_offset;
1050                 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
1051         }
1052 #else
1053         dtv = (void **)mem;
1054
1055         mem += libc.tls_size - sizeof(struct pthread);
1056         mem -= (uintptr_t)mem & (tls_align-1);
1057         td = (pthread_t)mem;
1058
1059         for (p=head; p; p=p->next) {
1060                 if (!p->tls_id) continue;
1061                 dtv[p->tls_id] = mem - p->tls_offset;
1062                 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
1063         }
1064 #endif
1065         dtv[0] = (void *)tls_cnt;
1066         td->dtv = td->dtv_copy = dtv;
1067         return td;
1068 }
1069
1070 __attribute__((__visibility__("hidden")))
1071 void *__tls_get_new(size_t *v)
1072 {
1073         pthread_t self = __pthread_self();
1074
1075         /* Block signals to make accessing new TLS async-signal-safe */
1076         sigset_t set;
1077         __block_all_sigs(&set);
1078         if (v[0]<=(size_t)self->dtv[0]) {
1079                 __restore_sigs(&set);
1080                 return (char *)self->dtv[v[0]]+v[1];
1081         }
1082
1083         /* This is safe without any locks held because, if the caller
1084          * is able to request the Nth entry of the DTV, the DSO list
1085          * must be valid at least that far out and it was synchronized
1086          * at program startup or by an already-completed call to dlopen. */
1087         struct dso *p;
1088         for (p=head; p->tls_id != v[0]; p=p->next);
1089
1090         /* Get new DTV space from new DSO if needed */
1091         if (v[0] > (size_t)self->dtv[0]) {
1092                 void **newdtv = p->new_dtv +
1093                         (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
1094                 memcpy(newdtv, self->dtv,
1095                         ((size_t)self->dtv[0]+1) * sizeof(void *));
1096                 newdtv[0] = (void *)v[0];
1097                 self->dtv = self->dtv_copy = newdtv;
1098         }
1099
1100         /* Get new TLS memory from all new DSOs up to the requested one */
1101         unsigned char *mem;
1102         for (p=head; ; p=p->next) {
1103                 if (!p->tls_id || self->dtv[p->tls_id]) continue;
1104                 mem = p->new_tls + (p->tls_size + p->tls_align)
1105                         * a_fetch_add(&p->new_tls_idx,1);
1106                 mem += ((uintptr_t)p->tls_image - (uintptr_t)mem)
1107                         & (p->tls_align-1);
1108                 self->dtv[p->tls_id] = mem;
1109                 memcpy(mem, p->tls_image, p->tls_len);
1110                 if (p->tls_id == v[0]) break;
1111         }
1112         __restore_sigs(&set);
1113         return mem + v[1];
1114 }
1115
1116 static void update_tls_size()
1117 {
1118         libc.tls_size = ALIGN(
1119                 (1+tls_cnt) * sizeof(void *) +
1120                 tls_offset +
1121                 sizeof(struct pthread) +
1122                 tls_align * 2,
1123         tls_align);
1124 }
1125
1126 /* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1127  * following stage 2 and stage 3 functions via primitive symbolic lookup
1128  * since it does not have access to their addresses to begin with. */
1129
1130 /* Stage 2 of the dynamic linker is called after relative relocations 
1131  * have been processed. It can make function calls to static functions
1132  * and access string literals and static data, but cannot use extern
1133  * symbols. Its job is to perform symbolic relocations on the dynamic
1134  * linker itself, but some of the relocations performed may need to be
1135  * replaced later due to copy relocations in the main program. */
1136
1137 void __dls2(unsigned char *base, size_t *sp)
1138 {
1139         Ehdr *ehdr = (void *)base;
1140         ldso.base = base;
1141         ldso.name = ldso.shortname = "libc.so";
1142         ldso.global = 1;
1143         ldso.phnum = ehdr->e_phnum;
1144         ldso.phdr = (void *)(base + ehdr->e_phoff);
1145         ldso.phentsize = ehdr->e_phentsize;
1146         kernel_mapped_dso(&ldso);
1147         decode_dyn(&ldso);
1148
1149         /* Prepare storage for to save clobbered REL addends so they
1150          * can be reused in stage 3. There should be very few. If
1151          * something goes wrong and there are a huge number, abort
1152          * instead of risking stack overflow. */
1153         size_t dyn[DYN_CNT];
1154         decode_vec(ldso.dynv, dyn, DYN_CNT);
1155         size_t *rel = (void *)(base+dyn[DT_REL]);
1156         size_t rel_size = dyn[DT_RELSZ];
1157         size_t symbolic_rel_cnt = 0;
1158         apply_addends_to = rel;
1159         for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
1160                 if (!IS_RELATIVE(rel[1])) symbolic_rel_cnt++;
1161         if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1162         size_t addends[symbolic_rel_cnt+1];
1163         saved_addends = addends;
1164
1165         head = &ldso;
1166         reloc_all(&ldso);
1167
1168         ldso.relocated = 0;
1169
1170         /* Call dynamic linker stage-3, __dls3, looking it up
1171          * symbolically as a barrier against moving the address
1172          * load across the above relocation processing. */
1173         struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
1174         ((stage3_func)(ldso.base+dls3_def.sym->st_value))(sp);
1175 }
1176
1177 /* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1178  * fully functional. Its job is to load (if not already loaded) and
1179  * process dependencies and relocations for the main application and
1180  * transfer control to its entry point. */
1181
1182 _Noreturn void __dls3(size_t *sp)
1183 {
1184         static struct dso app, vdso;
1185         size_t aux[AUX_CNT], *auxv;
1186         size_t i;
1187         char *env_preload=0;
1188         size_t vdso_base;
1189         int argc = *sp;
1190         char **argv = (void *)(sp+1);
1191         char **argv_orig = argv;
1192         char **envp = argv+argc+1;
1193
1194         /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1195          * use during dynamic linking. If possible it will also serve as the
1196          * thread pointer at runtime. */
1197         libc.tls_size = sizeof builtin_tls;
1198         if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
1199                 a_crash();
1200         }
1201
1202         /* Find aux vector just past environ[] */
1203         for (i=argc+1; argv[i]; i++)
1204                 if (!memcmp(argv[i], "LD_LIBRARY_PATH=", 16))
1205                         env_path = argv[i]+16;
1206                 else if (!memcmp(argv[i], "LD_PRELOAD=", 11))
1207                         env_preload = argv[i]+11;
1208         auxv = (void *)(argv+i+1);
1209
1210         decode_vec(auxv, aux, AUX_CNT);
1211
1212         /* Only trust user/env if kernel says we're not suid/sgid */
1213         if ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1214           || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]) {
1215                 env_path = 0;
1216                 env_preload = 0;
1217                 libc.secure = 1;
1218         }
1219         libc.page_size = aux[AT_PAGESZ];
1220         libc.auxv = auxv;
1221
1222         /* If the main program was already loaded by the kernel,
1223          * AT_PHDR will point to some location other than the dynamic
1224          * linker's program headers. */
1225         if (aux[AT_PHDR] != (size_t)ldso.phdr) {
1226                 size_t interp_off = 0;
1227                 size_t tls_image = 0;
1228                 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
1229                 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1230                 app.phnum = aux[AT_PHNUM];
1231                 app.phentsize = aux[AT_PHENT];
1232                 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1233                         if (phdr->p_type == PT_PHDR)
1234                                 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
1235                         else if (phdr->p_type == PT_INTERP)
1236                                 interp_off = (size_t)phdr->p_vaddr;
1237                         else if (phdr->p_type == PT_TLS) {
1238                                 tls_image = phdr->p_vaddr;
1239                                 app.tls_len = phdr->p_filesz;
1240                                 app.tls_size = phdr->p_memsz;
1241                                 app.tls_align = phdr->p_align;
1242                         }
1243                 }
1244                 if (app.tls_size) app.tls_image = (char *)app.base + tls_image;
1245                 if (interp_off) ldso.name = (char *)app.base + interp_off;
1246                 if ((aux[0] & (1UL<<AT_EXECFN))
1247                     && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
1248                         app.name = (char *)aux[AT_EXECFN];
1249                 else
1250                         app.name = argv[0];
1251                 kernel_mapped_dso(&app);
1252         } else {
1253                 int fd;
1254                 char *ldname = argv[0];
1255                 size_t l = strlen(ldname);
1256                 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
1257                 argv++;
1258                 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1259                         char *opt = argv[0]+2;
1260                         *argv++ = (void *)-1;
1261                         if (!*opt) {
1262                                 break;
1263                         } else if (!memcmp(opt, "list", 5)) {
1264                                 ldd_mode = 1;
1265                         } else if (!memcmp(opt, "library-path", 12)) {
1266                                 if (opt[12]=='=') env_path = opt+13;
1267                                 else if (opt[12]) *argv = 0;
1268                                 else if (*argv) env_path = *argv++;
1269                         } else if (!memcmp(opt, "preload", 7)) {
1270                                 if (opt[7]=='=') env_preload = opt+8;
1271                                 else if (opt[7]) *argv = 0;
1272                                 else if (*argv) env_preload = *argv++;
1273                         } else {
1274                                 argv[0] = 0;
1275                         }
1276                 }
1277                 argv[-1] = (void *)(argc - (argv-argv_orig));
1278                 if (!argv[0]) {
1279                         dprintf(2, "musl libc\n"
1280                                 "Version %s\n"
1281                                 "Dynamic Program Loader\n"
1282                                 "Usage: %s [options] [--] pathname%s\n",
1283                                 __libc_get_version(), ldname,
1284                                 ldd_mode ? "" : " [args]");
1285                         _exit(1);
1286                 }
1287                 fd = open(argv[0], O_RDONLY);
1288                 if (fd < 0) {
1289                         dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1290                         _exit(1);
1291                 }
1292                 runtime = 1;
1293                 Ehdr *ehdr = (void *)map_library(fd, &app);
1294                 if (!ehdr) {
1295                         dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1296                         _exit(1);
1297                 }
1298                 runtime = 0;
1299                 close(fd);
1300                 ldso.name = ldname;
1301                 app.name = argv[0];
1302                 aux[AT_ENTRY] = (size_t)app.base + ehdr->e_entry;
1303                 /* Find the name that would have been used for the dynamic
1304                  * linker had ldd not taken its place. */
1305                 if (ldd_mode) {
1306                         for (i=0; i<app.phnum; i++) {
1307                                 if (app.phdr[i].p_type == PT_INTERP)
1308                                         ldso.name = (void *)(app.base
1309                                                 + app.phdr[i].p_vaddr);
1310                         }
1311                         dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
1312                 }
1313         }
1314         if (app.tls_size) {
1315                 app.tls_id = tls_cnt = 1;
1316 #ifdef TLS_ABOVE_TP
1317                 app.tls_offset = 0;
1318                 tls_offset = app.tls_size
1319                         + ( -((uintptr_t)app.tls_image + app.tls_size)
1320                         & (app.tls_align-1) );
1321 #else
1322                 tls_offset = app.tls_offset = app.tls_size
1323                         + ( -((uintptr_t)app.tls_image + app.tls_size)
1324                         & (app.tls_align-1) );
1325 #endif
1326                 tls_align = MAXP2(tls_align, app.tls_align);
1327         }
1328         app.global = 1;
1329         decode_dyn(&app);
1330
1331         /* Attach to vdso, if provided by the kernel */
1332         if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
1333                 Ehdr *ehdr = (void *)vdso_base;
1334                 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1335                 vdso.phnum = ehdr->e_phnum;
1336                 vdso.phentsize = ehdr->e_phentsize;
1337                 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1338                         if (phdr->p_type == PT_DYNAMIC)
1339                                 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
1340                         if (phdr->p_type == PT_LOAD)
1341                                 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
1342                 }
1343                 vdso.name = "";
1344                 vdso.shortname = "linux-gate.so.1";
1345                 vdso.global = 1;
1346                 vdso.relocated = 1;
1347                 decode_dyn(&vdso);
1348                 vdso.prev = &ldso;
1349                 ldso.next = &vdso;
1350         }
1351
1352         /* Initial dso chain consists only of the app. */
1353         head = tail = &app;
1354
1355         /* Donate unused parts of app and library mapping to malloc */
1356         reclaim_gaps(&app);
1357         reclaim_gaps(&ldso);
1358
1359         /* Load preload/needed libraries, add their symbols to the global
1360          * namespace, and perform all remaining relocations. */
1361         if (env_preload) load_preload(env_preload);
1362         load_deps(&app);
1363         make_global(&app);
1364
1365 #ifndef DYNAMIC_IS_RO
1366         for (i=0; app.dynv[i]; i+=2)
1367                 if (app.dynv[i]==DT_DEBUG)
1368                         app.dynv[i+1] = (size_t)&debug;
1369 #endif
1370
1371         /* The main program must be relocated LAST since it may contin
1372          * copy relocations which depend on libraries' relocations. */
1373         reloc_all(app.next);
1374         reloc_all(&app);
1375
1376         update_tls_size();
1377         if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1378                 void *initial_tls = calloc(libc.tls_size, 1);
1379                 if (!initial_tls) {
1380                         dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
1381                                 argv[0], libc.tls_size);
1382                         _exit(127);
1383                 }
1384                 if (__init_tp(__copy_tls(initial_tls)) < 0) {
1385                         a_crash();
1386                 }
1387         } else {
1388                 size_t tmp_tls_size = libc.tls_size;
1389                 pthread_t self = __pthread_self();
1390                 /* Temporarily set the tls size to the full size of
1391                  * builtin_tls so that __copy_tls will use the same layout
1392                  * as it did for before. Then check, just to be safe. */
1393                 libc.tls_size = sizeof builtin_tls;
1394                 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1395                 libc.tls_size = tmp_tls_size;
1396         }
1397         static_tls_cnt = tls_cnt;
1398
1399         if (ldso_fail) _exit(127);
1400         if (ldd_mode) _exit(0);
1401
1402         /* Switch to runtime mode: any further failures in the dynamic
1403          * linker are a reportable failure rather than a fatal startup
1404          * error. */
1405         runtime = 1;
1406
1407         debug.ver = 1;
1408         debug.bp = dl_debug_state;
1409         debug.head = head;
1410         debug.base = ldso.base;
1411         debug.state = 0;
1412         _dl_debug_state();
1413
1414         __init_libc(envp, argv[0]);
1415         atexit(do_fini);
1416         errno = 0;
1417         do_init_fini(tail);
1418
1419         CRTJMP((void *)aux[AT_ENTRY], argv-1);
1420         for(;;);
1421 }
1422
1423 void *dlopen(const char *file, int mode)
1424 {
1425         struct dso *volatile p, *orig_tail, *next;
1426         size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
1427         size_t i;
1428         int cs;
1429         jmp_buf jb;
1430
1431         if (!file) return head;
1432
1433         pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
1434         pthread_rwlock_wrlock(&lock);
1435         __inhibit_ptc();
1436
1437         p = 0;
1438         orig_tls_cnt = tls_cnt;
1439         orig_tls_offset = tls_offset;
1440         orig_tls_align = tls_align;
1441         orig_tail = tail;
1442         noload = mode & RTLD_NOLOAD;
1443
1444         rtld_fail = &jb;
1445         if (setjmp(*rtld_fail)) {
1446                 /* Clean up anything new that was (partially) loaded */
1447                 if (p && p->deps) for (i=0; p->deps[i]; i++)
1448                         if (p->deps[i]->global < 0)
1449                                 p->deps[i]->global = 0;
1450                 for (p=orig_tail->next; p; p=next) {
1451                         next = p->next;
1452                         munmap(p->map, p->map_len);
1453                         while (p->td_index) {
1454                                 void *tmp = p->td_index->next;
1455                                 free(p->td_index);
1456                                 p->td_index = tmp;
1457                         }
1458                         if (p->rpath != p->rpath_orig)
1459                                 free(p->rpath);
1460                         free(p->deps);
1461                         free(p);
1462                 }
1463                 tls_cnt = orig_tls_cnt;
1464                 tls_offset = orig_tls_offset;
1465                 tls_align = orig_tls_align;
1466                 tail = orig_tail;
1467                 tail->next = 0;
1468                 p = 0;
1469                 goto end;
1470         } else p = load_library(file, head);
1471
1472         if (!p) {
1473                 error(noload ?
1474                         "Library %s is not already loaded" :
1475                         "Error loading shared library %s: %m",
1476                         file);
1477                 goto end;
1478         }
1479
1480         /* First load handling */
1481         if (!p->deps) {
1482                 load_deps(p);
1483                 if (p->deps) for (i=0; p->deps[i]; i++)
1484                         if (!p->deps[i]->global)
1485                                 p->deps[i]->global = -1;
1486                 if (!p->global) p->global = -1;
1487                 reloc_all(p);
1488                 if (p->deps) for (i=0; p->deps[i]; i++)
1489                         if (p->deps[i]->global < 0)
1490                                 p->deps[i]->global = 0;
1491                 if (p->global < 0) p->global = 0;
1492         }
1493
1494         if (mode & RTLD_GLOBAL) {
1495                 if (p->deps) for (i=0; p->deps[i]; i++)
1496                         p->deps[i]->global = 1;
1497                 p->global = 1;
1498         }
1499
1500         update_tls_size();
1501         _dl_debug_state();
1502         orig_tail = tail;
1503 end:
1504         __release_ptc();
1505         if (p) gencnt++;
1506         pthread_rwlock_unlock(&lock);
1507         if (p) do_init_fini(orig_tail);
1508         pthread_setcancelstate(cs, 0);
1509         return p;
1510 }
1511
1512 static int invalid_dso_handle(void *h)
1513 {
1514         struct dso *p;
1515         for (p=head; p; p=p->next) if (h==p) return 0;
1516         error("Invalid library handle %p", (void *)h);
1517         return 1;
1518 }
1519
1520 void *__tls_get_addr(size_t *);
1521
1522 static void *do_dlsym(struct dso *p, const char *s, void *ra)
1523 {
1524         size_t i;
1525         uint32_t h = 0, gh = 0;
1526         Sym *sym;
1527         if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
1528                 if (p == RTLD_DEFAULT) {
1529                         p = head;
1530                 } else if (p == RTLD_NEXT) {
1531                         for (p=head; p && (unsigned char *)ra-p->map>p->map_len; p=p->next);
1532                         if (!p) p=head;
1533                         p = p->next;
1534                 }
1535                 struct symdef def = find_sym(p, s, 0);
1536                 if (!def.sym) goto failed;
1537                 if ((def.sym->st_info&0xf) == STT_TLS)
1538                         return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
1539                 return def.dso->base + def.sym->st_value;
1540         }
1541         if (invalid_dso_handle(p))
1542                 return 0;
1543         if (p->ghashtab) {
1544                 gh = gnu_hash(s);
1545                 sym = gnu_lookup(s, gh, p);
1546         } else {
1547                 h = sysv_hash(s);
1548                 sym = sysv_lookup(s, h, p);
1549         }
1550         if (sym && (sym->st_info&0xf) == STT_TLS)
1551                 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
1552         if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1553                 return p->base + sym->st_value;
1554         if (p->deps) for (i=0; p->deps[i]; i++) {
1555                 if (p->deps[i]->ghashtab) {
1556                         if (!gh) gh = gnu_hash(s);
1557                         sym = gnu_lookup(s, gh, p->deps[i]);
1558                 } else {
1559                         if (!h) h = sysv_hash(s);
1560                         sym = sysv_lookup(s, h, p->deps[i]);
1561                 }
1562                 if (sym && (sym->st_info&0xf) == STT_TLS)
1563                         return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
1564                 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1565                         return p->deps[i]->base + sym->st_value;
1566         }
1567 failed:
1568         error("Symbol not found: %s", s);
1569         return 0;
1570 }
1571
1572 int __dladdr(const void *addr, Dl_info *info)
1573 {
1574         struct dso *p;
1575         Sym *sym;
1576         uint32_t nsym;
1577         char *strings;
1578         size_t i;
1579         void *best = 0;
1580         char *bestname;
1581
1582         pthread_rwlock_rdlock(&lock);
1583         for (p=head; p && (unsigned char *)addr-p->map>p->map_len; p=p->next);
1584         pthread_rwlock_unlock(&lock);
1585
1586         if (!p) return 0;
1587
1588         sym = p->syms;
1589         strings = p->strings;
1590         if (p->hashtab) {
1591                 nsym = p->hashtab[1];
1592         } else {
1593                 uint32_t *buckets;
1594                 uint32_t *hashval;
1595                 buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
1596                 sym += p->ghashtab[1];
1597                 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
1598                         if (buckets[i] > nsym)
1599                                 nsym = buckets[i];
1600                 }
1601                 if (nsym) {
1602                         nsym -= p->ghashtab[1];
1603                         hashval = buckets + p->ghashtab[0] + nsym;
1604                         do nsym++;
1605                         while (!(*hashval++ & 1));
1606                 }
1607         }
1608
1609         for (; nsym; nsym--, sym++) {
1610                 if (sym->st_value
1611                  && (1<<(sym->st_info&0xf) & OK_TYPES)
1612                  && (1<<(sym->st_info>>4) & OK_BINDS)) {
1613                         void *symaddr = p->base + sym->st_value;
1614                         if (symaddr > addr || symaddr < best)
1615                                 continue;
1616                         best = symaddr;
1617                         bestname = strings + sym->st_name;
1618                         if (addr == symaddr)
1619                                 break;
1620                 }
1621         }
1622
1623         if (!best) return 0;
1624
1625         info->dli_fname = p->name;
1626         info->dli_fbase = p->base;
1627         info->dli_sname = bestname;
1628         info->dli_saddr = best;
1629
1630         return 1;
1631 }
1632
1633 __attribute__((__visibility__("hidden")))
1634 void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
1635 {
1636         void *res;
1637         pthread_rwlock_rdlock(&lock);
1638         res = do_dlsym(p, s, ra);
1639         pthread_rwlock_unlock(&lock);
1640         return res;
1641 }
1642
1643 int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1644 {
1645         struct dso *current;
1646         struct dl_phdr_info info;
1647         int ret = 0;
1648         for(current = head; current;) {
1649                 info.dlpi_addr      = (uintptr_t)current->base;
1650                 info.dlpi_name      = current->name;
1651                 info.dlpi_phdr      = current->phdr;
1652                 info.dlpi_phnum     = current->phnum;
1653                 info.dlpi_adds      = gencnt;
1654                 info.dlpi_subs      = 0;
1655                 info.dlpi_tls_modid = current->tls_id;
1656                 info.dlpi_tls_data  = current->tls_image;
1657
1658                 ret = (callback)(&info, sizeof (info), data);
1659
1660                 if (ret != 0) break;
1661
1662                 pthread_rwlock_rdlock(&lock);
1663                 current = current->next;
1664                 pthread_rwlock_unlock(&lock);
1665         }
1666         return ret;
1667 }
1668 #else
1669 static int invalid_dso_handle(void *h)
1670 {
1671         error("Invalid library handle %p", (void *)h);
1672         return 1;
1673 }
1674 void *dlopen(const char *file, int mode)
1675 {
1676         error("Dynamic loading not supported");
1677         return 0;
1678 }
1679 void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
1680 {
1681         error("Symbol not found: %s", s);
1682         return 0;
1683 }
1684 int __dladdr (const void *addr, Dl_info *info)
1685 {
1686         return 0;
1687 }
1688 #endif
1689
1690 int __dlinfo(void *dso, int req, void *res)
1691 {
1692         if (invalid_dso_handle(dso)) return -1;
1693         if (req != RTLD_DI_LINKMAP) {
1694                 error("Unsupported request %d", req);
1695                 return -1;
1696         }
1697         *(struct link_map **)res = dso;
1698         return 0;
1699 }
1700
1701 char *dlerror()
1702 {
1703         pthread_t self = __pthread_self();
1704         if (!self->dlerror_flag) return 0;
1705         self->dlerror_flag = 0;
1706         char *s = self->dlerror_buf;
1707         if (s == (void *)-1)
1708                 return "Dynamic linker failed to allocate memory for error message";
1709         else
1710                 return s;
1711 }
1712
1713 int dlclose(void *p)
1714 {
1715         return invalid_dso_handle(p);
1716 }
1717
1718 void __dl_thread_cleanup(void)
1719 {
1720         pthread_t self = __pthread_self();
1721         if (self->dlerror_buf != (void *)-1)
1722                 free(self->dlerror_buf);
1723 }
1724
1725 static void error(const char *fmt, ...)
1726 {
1727         va_list ap;
1728         va_start(ap, fmt);
1729 #ifdef SHARED
1730         if (!runtime) {
1731                 vdprintf(2, fmt, ap);
1732                 dprintf(2, "\n");
1733                 ldso_fail = 1;
1734                 va_end(ap);
1735                 return;
1736         }
1737 #endif
1738         pthread_t self = __pthread_self();
1739         if (self->dlerror_buf != (void *)-1)
1740                 free(self->dlerror_buf);
1741         size_t len = vsnprintf(0, 0, fmt, ap);
1742         va_end(ap);
1743         char *buf = malloc(len+1);
1744         if (buf) {
1745                 va_start(ap, fmt);
1746                 vsnprintf(buf, len+1, fmt, ap);
1747                 va_end(ap);
1748         } else {
1749                 buf = (void *)-1;       
1750         }
1751         self->dlerror_buf = buf;
1752         self->dlerror_flag = 1;
1753 }