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