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