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