2 #define SYSCALL_NO_TLS 1
21 #include <semaphore.h>
22 #include <sys/membarrier.h>
23 #include "pthread_impl.h"
26 #include "malloc_impl.h"
28 static void error(const char *, ...);
30 #define MAXP2(a,b) (-(-(a)&-(b)))
31 #define ALIGN(x,y) ((x)+(y)-1 & -(y))
33 #define container_of(p,t,m) ((t*)((char *)(p)-offsetof(t,m)))
34 #define countof(a) ((sizeof (a))/(sizeof (a)[0]))
46 struct td_index
*next
;
51 struct fdpic_loadmap
*loadmap
;
57 struct dso
*next
, *prev
;
67 struct dso
*syms_next
, *lazy_next
;
68 size_t *lazy
, lazy_cnt
;
79 struct dso
**deps
, *needed_by
;
83 char *rpath_orig
, *rpath
;
84 struct tls_module tls
;
86 size_t relro_start
, relro_end
;
88 unsigned char *new_tls
;
89 struct td_index
*td_index
;
90 struct dso
*fini_next
;
95 struct fdpic_loadmap
*loadmap
;
110 typedef void (*stage3_func
)(size_t *, size_t *);
112 static struct builtin_tls
{
117 #define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
119 #define ADDEND_LIMIT 4096
120 static size_t *saved_addends
, *apply_addends_to
;
122 static struct dso ldso
;
123 static struct dso
*head
, *tail
, *fini_head
, *syms_tail
, *lazy_head
;
124 static char *env_path
, *sys_path
;
125 static unsigned long long gencnt
;
128 static int ldso_fail
;
130 static int shutting_down
;
131 static jmp_buf *rtld_fail
;
132 static pthread_rwlock_t lock
;
133 static struct debug debug
;
134 static struct tls_module
*tls_tail
;
135 static size_t tls_cnt
, tls_offset
, tls_align
= MIN_TLS_ALIGN
;
136 static size_t static_tls_cnt
;
137 static pthread_mutex_t init_fini_lock
;
138 static pthread_cond_t ctor_cond
;
139 static struct dso
*builtin_deps
[2];
140 static struct dso
*const no_deps
[1];
141 static struct dso
*builtin_ctor_queue
[4];
142 static struct dso
**main_ctor_queue
;
143 static struct fdpic_loadmap
*app_loadmap
;
144 static struct fdpic_dummy_loadmap app_dummy_loadmap
;
146 struct debug
*_dl_debug_addr
= &debug
;
148 extern hidden
int __malloc_replaced
;
150 hidden
void (*const __init_array_start
)(void)=0, (*const __fini_array_start
)(void)=0;
152 extern hidden
void (*const __init_array_end
)(void), (*const __fini_array_end
)(void);
154 weak_alias(__init_array_start
, __init_array_end
);
155 weak_alias(__fini_array_start
, __fini_array_end
);
157 static int dl_strcmp(const char *l
, const char *r
)
159 for (; *l
==*r
&& *l
; l
++, r
++);
160 return *(unsigned char *)l
- *(unsigned char *)r
;
162 #define strcmp(l,r) dl_strcmp(l,r)
164 /* Compute load address for a virtual address in a given dso. */
166 static void *laddr(const struct dso
*p
, size_t v
)
169 if (!p
->loadmap
) return p
->base
+ v
;
170 for (j
=0; v
-p
->loadmap
->segs
[j
].p_vaddr
>= p
->loadmap
->segs
[j
].p_memsz
; j
++);
171 return (void *)(v
- p
->loadmap
->segs
[j
].p_vaddr
+ p
->loadmap
->segs
[j
].addr
);
173 static void *laddr_pg(const struct dso
*p
, size_t v
)
176 size_t pgsz
= PAGE_SIZE
;
177 if (!p
->loadmap
) return p
->base
+ v
;
179 size_t a
= p
->loadmap
->segs
[j
].p_vaddr
;
180 size_t b
= a
+ p
->loadmap
->segs
[j
].p_memsz
;
186 return (void *)(v
- p
->loadmap
->segs
[j
].p_vaddr
+ p
->loadmap
->segs
[j
].addr
);
188 static void (*fdbarrier(void *p
))()
191 __asm__("" : "=r"(fd
) : "0"(p
));
194 #define fpaddr(p, v) fdbarrier((&(struct funcdesc){ \
195 laddr(p, v), (p)->got }))
197 #define laddr(p, v) (void *)((p)->base + (v))
198 #define laddr_pg(p, v) laddr(p, v)
199 #define fpaddr(p, v) ((void (*)())laddr(p, v))
202 static void decode_vec(size_t *v
, size_t *a
, size_t cnt
)
205 for (i
=0; i
<cnt
; i
++) a
[i
] = 0;
206 for (; v
[0]; v
+=2) if (v
[0]-1<cnt
-1) {
212 static int search_vec(size_t *v
, size_t *r
, size_t key
)
214 for (; v
[0]!=key
; v
+=2)
220 static uint32_t sysv_hash(const char *s0
)
222 const unsigned char *s
= (void *)s0
;
228 return h
& 0xfffffff;
231 static uint32_t gnu_hash(const char *s0
)
233 const unsigned char *s
= (void *)s0
;
234 uint_fast32_t h
= 5381;
240 static Sym
*sysv_lookup(const char *s
, uint32_t h
, struct dso
*dso
)
243 Sym
*syms
= dso
->syms
;
244 Elf_Symndx
*hashtab
= dso
->hashtab
;
245 char *strings
= dso
->strings
;
246 for (i
=hashtab
[2+h
%hashtab
[0]]; i
; i
=hashtab
[2+hashtab
[0]+i
]) {
247 if ((!dso
->versym
|| dso
->versym
[i
] >= 0)
248 && (!strcmp(s
, strings
+syms
[i
].st_name
)))
254 static Sym
*gnu_lookup(uint32_t h1
, uint32_t *hashtab
, struct dso
*dso
, const char *s
)
256 uint32_t nbuckets
= hashtab
[0];
257 uint32_t *buckets
= hashtab
+ 4 + hashtab
[2]*(sizeof(size_t)/4);
258 uint32_t i
= buckets
[h1
% nbuckets
];
262 uint32_t *hashval
= buckets
+ nbuckets
+ (i
- hashtab
[1]);
264 for (h1
|= 1; ; i
++) {
265 uint32_t h2
= *hashval
++;
266 if ((h1
== (h2
|1)) && (!dso
->versym
|| dso
->versym
[i
] >= 0)
267 && !strcmp(s
, dso
->strings
+ dso
->syms
[i
].st_name
))
275 static Sym
*gnu_lookup_filtered(uint32_t h1
, uint32_t *hashtab
, struct dso
*dso
, const char *s
, uint32_t fofs
, size_t fmask
)
277 const size_t *bloomwords
= (const void *)(hashtab
+4);
278 size_t f
= bloomwords
[fofs
& (hashtab
[2]-1)];
279 if (!(f
& fmask
)) return 0;
281 f
>>= (h1
>> hashtab
[3]) % (8 * sizeof f
);
282 if (!(f
& 1)) return 0;
284 return gnu_lookup(h1
, hashtab
, dso
, s
);
287 #define OK_TYPES (1<<STT_NOTYPE | 1<<STT_OBJECT | 1<<STT_FUNC | 1<<STT_COMMON | 1<<STT_TLS)
288 #define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
290 #ifndef ARCH_SYM_REJECT_UND
291 #define ARCH_SYM_REJECT_UND(s) 0
294 #if defined(__GNUC__)
295 __attribute__((always_inline
))
297 static inline struct symdef
find_sym2(struct dso
*dso
, const char *s
, int need_def
, int use_deps
)
299 uint32_t h
= 0, gh
= gnu_hash(s
), gho
= gh
/ (8*sizeof(size_t)), *ght
;
300 size_t ghm
= 1ul << gh
% (8*sizeof(size_t));
301 struct symdef def
= {0};
302 struct dso
**deps
= use_deps
? dso
->deps
: 0;
303 for (; dso
; dso
=use_deps
? *deps
++ : dso
->syms_next
) {
305 if ((ght
= dso
->ghashtab
)) {
306 sym
= gnu_lookup_filtered(gh
, ght
, dso
, s
, gho
, ghm
);
308 if (!h
) h
= sysv_hash(s
);
309 sym
= sysv_lookup(s
, h
, dso
);
313 if (need_def
|| (sym
->st_info
&0xf) == STT_TLS
314 || ARCH_SYM_REJECT_UND(sym
))
317 if ((sym
->st_info
&0xf) != STT_TLS
)
319 if (!(1<<(sym
->st_info
&0xf) & OK_TYPES
)) continue;
320 if (!(1<<(sym
->st_info
>>4) & OK_BINDS
)) continue;
328 static struct symdef
find_sym(struct dso
*dso
, const char *s
, int need_def
)
330 return find_sym2(dso
, s
, need_def
, 0);
333 static void do_relocs(struct dso
*dso
, size_t *rel
, size_t rel_size
, size_t stride
)
335 unsigned char *base
= dso
->base
;
336 Sym
*syms
= dso
->syms
;
337 char *strings
= dso
->strings
;
348 int skip_relative
= 0, reuse_addends
= 0, save_slot
= 0;
351 /* Only ldso's REL table needs addend saving/reuse. */
352 if (rel
== apply_addends_to
)
357 for (; rel_size
; rel
+=stride
, rel_size
-=stride
*sizeof(size_t)) {
358 if (skip_relative
&& IS_RELATIVE(rel
[1], dso
->syms
)) continue;
359 type
= R_TYPE(rel
[1]);
360 if (type
== REL_NONE
) continue;
361 reloc_addr
= laddr(dso
, rel
[0]);
365 } else if (type
==REL_GOT
|| type
==REL_PLT
|| type
==REL_COPY
) {
367 } else if (reuse_addends
) {
368 /* Save original addend in stage 2 where the dso
369 * chain consists of just ldso; otherwise read back
370 * saved addend since the inline one was clobbered. */
372 saved_addends
[save_slot
] = *reloc_addr
;
373 addend
= saved_addends
[save_slot
++];
375 addend
= *reloc_addr
;
378 sym_index
= R_SYM(rel
[1]);
380 sym
= syms
+ sym_index
;
381 name
= strings
+ sym
->st_name
;
382 ctx
= type
==REL_COPY
? head
->syms_next
: head
;
383 def
= (sym
->st_info
>>4) == STB_LOCAL
384 ? (struct symdef
){ .dso
= dso
, .sym
= sym
}
385 : find_sym(ctx
, name
, type
==REL_PLT
);
386 if (!def
.sym
&& (sym
->st_shndx
!= SHN_UNDEF
387 || sym
->st_info
>>4 != STB_WEAK
)) {
388 if (dso
->lazy
&& (type
==REL_PLT
|| type
==REL_GOT
)) {
389 dso
->lazy
[3*dso
->lazy_cnt
+0] = rel
[0];
390 dso
->lazy
[3*dso
->lazy_cnt
+1] = rel
[1];
391 dso
->lazy
[3*dso
->lazy_cnt
+2] = addend
;
395 error("Error relocating %s: %s: symbol not found",
397 if (runtime
) longjmp(*rtld_fail
, 1);
406 sym_val
= def
.sym
? (size_t)laddr(def
.dso
, def
.sym
->st_value
) : 0;
407 tls_val
= def
.sym
? def
.sym
->st_value
: 0;
409 if ((type
== REL_TPOFF
|| type
== REL_TPOFF_NEG
)
410 && def
.dso
->tls_id
> static_tls_cnt
) {
411 error("Error relocating %s: %s: initial-exec TLS "
412 "resolves to dynamic definition in %s",
413 dso
->name
, name
, def
.dso
->name
);
414 longjmp(*rtld_fail
, 1);
421 addend
-= (size_t)reloc_addr
;
425 *reloc_addr
= sym_val
+ addend
;
428 memcpy(reloc_addr
, &(size_t){sym_val
+ addend
}, sizeof(size_t));
431 *reloc_addr
= (size_t)base
+ addend
;
434 if (sym
) *reloc_addr
= sym_val
+ addend
;
435 else *reloc_addr
= (size_t)base
+ addend
;
438 memcpy(reloc_addr
, (void *)sym_val
, sym
->st_size
);
441 *(uint32_t *)reloc_addr
= sym_val
+ addend
442 - (size_t)reloc_addr
;
445 *reloc_addr
= def
.sym
? (size_t)(def
.dso
->funcdescs
446 + (def
.sym
- def
.dso
->syms
)) : 0;
448 case REL_FUNCDESC_VAL
:
449 if ((sym
->st_info
&0xf) == STT_SECTION
) *reloc_addr
+= sym_val
;
450 else *reloc_addr
= sym_val
;
451 reloc_addr
[1] = def
.sym
? (size_t)def
.dso
->got
: 0;
454 *reloc_addr
= def
.dso
->tls_id
;
457 *reloc_addr
= tls_val
+ addend
- DTP_OFFSET
;
461 *reloc_addr
= tls_val
+ def
.dso
->tls
.offset
+ TPOFF_K
+ addend
;
465 *reloc_addr
= tls_val
- def
.dso
->tls
.offset
+ addend
;
468 *reloc_addr
= def
.dso
->tls
.offset
- tls_val
+ addend
;
472 if (stride
<3) addend
= reloc_addr
[1];
473 if (def
.dso
->tls_id
> static_tls_cnt
) {
474 struct td_index
*new = malloc(sizeof *new);
477 "Error relocating %s: cannot allocate TLSDESC for %s",
478 dso
->name
, sym
? name
: "(local)" );
479 longjmp(*rtld_fail
, 1);
481 new->next
= dso
->td_index
;
483 new->args
[0] = def
.dso
->tls_id
;
484 new->args
[1] = tls_val
+ addend
- DTP_OFFSET
;
485 reloc_addr
[0] = (size_t)__tlsdesc_dynamic
;
486 reloc_addr
[1] = (size_t)new;
488 reloc_addr
[0] = (size_t)__tlsdesc_static
;
490 reloc_addr
[1] = tls_val
+ def
.dso
->tls
.offset
493 reloc_addr
[1] = tls_val
- def
.dso
->tls
.offset
497 #ifdef TLSDESC_BACKWARDS
498 /* Some archs (32-bit ARM at least) invert the order of
499 * the descriptor members. Fix them up here. */
500 size_t tmp
= reloc_addr
[0];
501 reloc_addr
[0] = reloc_addr
[1];
506 error("Error relocating %s: unsupported relocation type %d",
508 if (runtime
) longjmp(*rtld_fail
, 1);
514 static void redo_lazy_relocs()
516 struct dso
*p
= lazy_head
, *next
;
520 size_t size
= p
->lazy_cnt
*3*sizeof(size_t);
522 do_relocs(p
, p
->lazy
, size
, 3);
524 p
->lazy_next
= lazy_head
;
534 /* A huge hack: to make up for the wastefulness of shared libraries
535 * needing at least a page of dirty memory even if they have no global
536 * data, we reclaim the gaps at the beginning and end of writable maps
537 * and "donate" them to the heap. */
539 static void reclaim(struct dso
*dso
, size_t start
, size_t end
)
541 if (start
>= dso
->relro_start
&& start
< dso
->relro_end
) start
= dso
->relro_end
;
542 if (end
>= dso
->relro_start
&& end
< dso
->relro_end
) end
= dso
->relro_start
;
543 if (start
>= end
) return;
544 char *base
= laddr_pg(dso
, start
);
545 __malloc_donate(base
, base
+(end
-start
));
548 static void reclaim_gaps(struct dso
*dso
)
550 Phdr
*ph
= dso
->phdr
;
551 size_t phcnt
= dso
->phnum
;
553 for (; phcnt
--; ph
=(void *)((char *)ph
+dso
->phentsize
)) {
554 if (ph
->p_type
!=PT_LOAD
) continue;
555 if ((ph
->p_flags
&(PF_R
|PF_W
))!=(PF_R
|PF_W
)) continue;
556 reclaim(dso
, ph
->p_vaddr
& -PAGE_SIZE
, ph
->p_vaddr
);
557 reclaim(dso
, ph
->p_vaddr
+ph
->p_memsz
,
558 ph
->p_vaddr
+ph
->p_memsz
+PAGE_SIZE
-1 & -PAGE_SIZE
);
562 static void *mmap_fixed(void *p
, size_t n
, int prot
, int flags
, int fd
, off_t off
)
564 static int no_map_fixed
;
567 q
= mmap(p
, n
, prot
, flags
|MAP_FIXED
, fd
, off
);
568 if (!DL_NOMMU_SUPPORT
|| q
!= MAP_FAILED
|| errno
!= EINVAL
)
572 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
573 if (flags
& MAP_ANONYMOUS
) {
578 if (lseek(fd
, off
, SEEK_SET
) < 0) return MAP_FAILED
;
579 for (q
=p
; n
; q
+=r
, off
+=r
, n
-=r
) {
581 if (r
< 0 && errno
!= EINTR
) return MAP_FAILED
;
590 static void unmap_library(struct dso
*dso
)
594 for (i
=0; i
<dso
->loadmap
->nsegs
; i
++) {
595 if (!dso
->loadmap
->segs
[i
].p_memsz
)
597 munmap((void *)dso
->loadmap
->segs
[i
].addr
,
598 dso
->loadmap
->segs
[i
].p_memsz
);
601 } else if (dso
->map
&& dso
->map_len
) {
602 munmap(dso
->map
, dso
->map_len
);
606 static void *map_library(int fd
, struct dso
*dso
)
608 Ehdr buf
[(896+sizeof(Ehdr
))/sizeof(Ehdr
)];
609 void *allocated_buf
=0;
611 size_t addr_min
=SIZE_MAX
, addr_max
=0, map_len
;
612 size_t this_min
, this_max
;
618 unsigned char *map
=MAP_FAILED
, *base
;
623 ssize_t l
= read(fd
, buf
, sizeof buf
);
626 if (l
<sizeof *eh
|| (eh
->e_type
!= ET_DYN
&& eh
->e_type
!= ET_EXEC
))
628 phsize
= eh
->e_phentsize
* eh
->e_phnum
;
629 if (phsize
> sizeof buf
- sizeof *eh
) {
630 allocated_buf
= malloc(phsize
);
631 if (!allocated_buf
) return 0;
632 l
= pread(fd
, allocated_buf
, phsize
, eh
->e_phoff
);
633 if (l
< 0) goto error
;
634 if (l
!= phsize
) goto noexec
;
635 ph
= ph0
= allocated_buf
;
636 } else if (eh
->e_phoff
+ phsize
> l
) {
637 l
= pread(fd
, buf
+1, phsize
, eh
->e_phoff
);
638 if (l
< 0) goto error
;
639 if (l
!= phsize
) goto noexec
;
640 ph
= ph0
= (void *)(buf
+ 1);
642 ph
= ph0
= (void *)((char *)buf
+ eh
->e_phoff
);
644 for (i
=eh
->e_phnum
; i
; i
--, ph
=(void *)((char *)ph
+eh
->e_phentsize
)) {
645 if (ph
->p_type
== PT_DYNAMIC
) {
647 } else if (ph
->p_type
== PT_TLS
) {
648 tls_image
= ph
->p_vaddr
;
649 dso
->tls
.align
= ph
->p_align
;
650 dso
->tls
.len
= ph
->p_filesz
;
651 dso
->tls
.size
= ph
->p_memsz
;
652 } else if (ph
->p_type
== PT_GNU_RELRO
) {
653 dso
->relro_start
= ph
->p_vaddr
& -PAGE_SIZE
;
654 dso
->relro_end
= (ph
->p_vaddr
+ ph
->p_memsz
) & -PAGE_SIZE
;
655 } else if (ph
->p_type
== PT_GNU_STACK
) {
656 if (!runtime
&& ph
->p_memsz
> __default_stacksize
) {
657 __default_stacksize
=
658 ph
->p_memsz
< DEFAULT_STACK_MAX
?
659 ph
->p_memsz
: DEFAULT_STACK_MAX
;
662 if (ph
->p_type
!= PT_LOAD
) continue;
664 if (ph
->p_vaddr
< addr_min
) {
665 addr_min
= ph
->p_vaddr
;
666 off_start
= ph
->p_offset
;
667 prot
= (((ph
->p_flags
&PF_R
) ? PROT_READ
: 0) |
668 ((ph
->p_flags
&PF_W
) ? PROT_WRITE
: 0) |
669 ((ph
->p_flags
&PF_X
) ? PROT_EXEC
: 0));
671 if (ph
->p_vaddr
+ph
->p_memsz
> addr_max
) {
672 addr_max
= ph
->p_vaddr
+ph
->p_memsz
;
675 if (!dyn
) goto noexec
;
676 if (DL_FDPIC
&& !(eh
->e_flags
& FDPIC_CONSTDISP_FLAG
)) {
677 dso
->loadmap
= calloc(1, sizeof *dso
->loadmap
678 + nsegs
* sizeof *dso
->loadmap
->segs
);
679 if (!dso
->loadmap
) goto error
;
680 dso
->loadmap
->nsegs
= nsegs
;
681 for (ph
=ph0
, i
=0; i
<nsegs
; ph
=(void *)((char *)ph
+eh
->e_phentsize
)) {
682 if (ph
->p_type
!= PT_LOAD
) continue;
683 prot
= (((ph
->p_flags
&PF_R
) ? PROT_READ
: 0) |
684 ((ph
->p_flags
&PF_W
) ? PROT_WRITE
: 0) |
685 ((ph
->p_flags
&PF_X
) ? PROT_EXEC
: 0));
686 map
= mmap(0, ph
->p_memsz
+ (ph
->p_vaddr
& PAGE_SIZE
-1),
688 fd
, ph
->p_offset
& -PAGE_SIZE
);
689 if (map
== MAP_FAILED
) {
693 dso
->loadmap
->segs
[i
].addr
= (size_t)map
+
694 (ph
->p_vaddr
& PAGE_SIZE
-1);
695 dso
->loadmap
->segs
[i
].p_vaddr
= ph
->p_vaddr
;
696 dso
->loadmap
->segs
[i
].p_memsz
= ph
->p_memsz
;
698 if (prot
& PROT_WRITE
) {
699 size_t brk
= (ph
->p_vaddr
& PAGE_SIZE
-1)
701 size_t pgbrk
= brk
+ PAGE_SIZE
-1 & -PAGE_SIZE
;
702 size_t pgend
= brk
+ ph
->p_memsz
- ph
->p_filesz
703 + PAGE_SIZE
-1 & -PAGE_SIZE
;
704 if (pgend
> pgbrk
&& mmap_fixed(map
+pgbrk
,
706 MAP_PRIVATE
|MAP_FIXED
|MAP_ANONYMOUS
,
707 -1, off_start
) == MAP_FAILED
)
709 memset(map
+ brk
, 0, pgbrk
-brk
);
712 map
= (void *)dso
->loadmap
->segs
[0].addr
;
716 addr_max
+= PAGE_SIZE
-1;
717 addr_max
&= -PAGE_SIZE
;
718 addr_min
&= -PAGE_SIZE
;
719 off_start
&= -PAGE_SIZE
;
720 map_len
= addr_max
- addr_min
+ off_start
;
721 /* The first time, we map too much, possibly even more than
722 * the length of the file. This is okay because we will not
723 * use the invalid part; we just need to reserve the right
724 * amount of virtual address space to map over later. */
725 map
= DL_NOMMU_SUPPORT
726 ? mmap((void *)addr_min
, map_len
, PROT_READ
|PROT_WRITE
|PROT_EXEC
,
727 MAP_PRIVATE
|MAP_ANONYMOUS
, -1, 0)
728 : mmap((void *)addr_min
, map_len
, prot
,
729 MAP_PRIVATE
, fd
, off_start
);
730 if (map
==MAP_FAILED
) goto error
;
732 dso
->map_len
= map_len
;
733 /* If the loaded file is not relocatable and the requested address is
734 * not available, then the load operation must fail. */
735 if (eh
->e_type
!= ET_DYN
&& addr_min
&& map
!=(void *)addr_min
) {
739 base
= map
- addr_min
;
742 for (ph
=ph0
, i
=eh
->e_phnum
; i
; i
--, ph
=(void *)((char *)ph
+eh
->e_phentsize
)) {
743 if (ph
->p_type
!= PT_LOAD
) continue;
744 /* Check if the programs headers are in this load segment, and
745 * if so, record the address for use by dl_iterate_phdr. */
746 if (!dso
->phdr
&& eh
->e_phoff
>= ph
->p_offset
747 && eh
->e_phoff
+phsize
<= ph
->p_offset
+ph
->p_filesz
) {
748 dso
->phdr
= (void *)(base
+ ph
->p_vaddr
749 + (eh
->e_phoff
-ph
->p_offset
));
750 dso
->phnum
= eh
->e_phnum
;
751 dso
->phentsize
= eh
->e_phentsize
;
753 this_min
= ph
->p_vaddr
& -PAGE_SIZE
;
754 this_max
= ph
->p_vaddr
+ph
->p_memsz
+PAGE_SIZE
-1 & -PAGE_SIZE
;
755 off_start
= ph
->p_offset
& -PAGE_SIZE
;
756 prot
= (((ph
->p_flags
&PF_R
) ? PROT_READ
: 0) |
757 ((ph
->p_flags
&PF_W
) ? PROT_WRITE
: 0) |
758 ((ph
->p_flags
&PF_X
) ? PROT_EXEC
: 0));
759 /* Reuse the existing mapping for the lowest-address LOAD */
760 if ((ph
->p_vaddr
& -PAGE_SIZE
) != addr_min
|| DL_NOMMU_SUPPORT
)
761 if (mmap_fixed(base
+this_min
, this_max
-this_min
, prot
, MAP_PRIVATE
|MAP_FIXED
, fd
, off_start
) == MAP_FAILED
)
763 if (ph
->p_memsz
> ph
->p_filesz
&& (ph
->p_flags
&PF_W
)) {
764 size_t brk
= (size_t)base
+ph
->p_vaddr
+ph
->p_filesz
;
765 size_t pgbrk
= brk
+PAGE_SIZE
-1 & -PAGE_SIZE
;
766 memset((void *)brk
, 0, pgbrk
-brk
& PAGE_SIZE
-1);
767 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
)
771 for (i
=0; ((size_t *)(base
+dyn
))[i
]; i
+=2)
772 if (((size_t *)(base
+dyn
))[i
]==DT_TEXTREL
) {
773 if (mprotect(map
, map_len
, PROT_READ
|PROT_WRITE
|PROT_EXEC
)
780 dso
->dynv
= laddr(dso
, dyn
);
781 if (dso
->tls
.size
) dso
->tls
.image
= laddr(dso
, tls_image
);
787 if (map
!=MAP_FAILED
) unmap_library(dso
);
792 static int path_open(const char *name
, const char *s
, char *buf
, size_t buf_size
)
797 s
+= strspn(s
, ":\n");
798 l
= strcspn(s
, ":\n");
799 if (l
-1 >= INT_MAX
) return -1;
800 if (snprintf(buf
, buf_size
, "%.*s/%s", (int)l
, s
, name
) < buf_size
) {
801 if ((fd
= open(buf
, O_RDONLY
|O_CLOEXEC
))>=0) return fd
;
809 /* Any negative value but -1 will inhibit
810 * futher path search. */
818 static int fixup_rpath(struct dso
*p
, char *buf
, size_t buf_size
)
821 const char *s
, *t
, *origin
;
823 if (p
->rpath
|| !p
->rpath_orig
) return 0;
824 if (!strchr(p
->rpath_orig
, '$')) {
825 p
->rpath
= p
->rpath_orig
;
830 while ((t
=strchr(s
, '$'))) {
831 if (strncmp(t
, "$ORIGIN", 7) && strncmp(t
, "${ORIGIN}", 9))
836 if (n
> SSIZE_MAX
/PATH_MAX
) return 0;
838 if (p
->kernel_mapped
) {
839 /* $ORIGIN searches cannot be performed for the main program
840 * when it is suid/sgid/AT_SECURE. This is because the
841 * pathname is under the control of the caller of execve.
842 * For libraries, however, $ORIGIN can be processed safely
843 * since the library's pathname came from a trusted source
844 * (either system paths or a call to dlopen). */
847 l
= readlink("/proc/self/exe", buf
, buf_size
);
848 if (l
== -1) switch (errno
) {
863 t
= strrchr(origin
, '/');
867 /* Normally p->name will always be an absolute or relative
868 * pathname containing at least one '/' character, but in the
869 * case where ldso was invoked as a command to execute a
870 * program in the working directory, app.name may not. Fix. */
874 /* Disallow non-absolute origins for suid/sgid/AT_SECURE. */
875 if (libc
.secure
&& *origin
!= '/')
877 p
->rpath
= malloc(strlen(p
->rpath_orig
) + n
*l
+ 1);
878 if (!p
->rpath
) return -1;
882 while ((t
=strchr(s
, '$'))) {
885 memcpy(d
, origin
, l
);
887 /* It was determined previously that the '$' is followed
888 * either by "ORIGIN" or "{ORIGIN}". */
889 s
= t
+ 7 + 2*(t
[1]=='{');
895 static void decode_dyn(struct dso
*p
)
898 decode_vec(p
->dynv
, dyn
, DYN_CNT
);
899 p
->syms
= laddr(p
, dyn
[DT_SYMTAB
]);
900 p
->strings
= laddr(p
, dyn
[DT_STRTAB
]);
901 if (dyn
[0]&(1<<DT_HASH
))
902 p
->hashtab
= laddr(p
, dyn
[DT_HASH
]);
903 if (dyn
[0]&(1<<DT_RPATH
))
904 p
->rpath_orig
= p
->strings
+ dyn
[DT_RPATH
];
905 if (dyn
[0]&(1<<DT_RUNPATH
))
906 p
->rpath_orig
= p
->strings
+ dyn
[DT_RUNPATH
];
907 if (dyn
[0]&(1<<DT_PLTGOT
))
908 p
->got
= laddr(p
, dyn
[DT_PLTGOT
]);
909 if (search_vec(p
->dynv
, dyn
, DT_GNU_HASH
))
910 p
->ghashtab
= laddr(p
, *dyn
);
911 if (search_vec(p
->dynv
, dyn
, DT_VERSYM
))
912 p
->versym
= laddr(p
, *dyn
);
915 static size_t count_syms(struct dso
*p
)
917 if (p
->hashtab
) return p
->hashtab
[1];
920 uint32_t *buckets
= p
->ghashtab
+ 4 + (p
->ghashtab
[2]*sizeof(size_t)/4);
922 for (i
= nsym
= 0; i
< p
->ghashtab
[0]; i
++) {
923 if (buckets
[i
] > nsym
)
927 hashval
= buckets
+ p
->ghashtab
[0] + (nsym
- p
->ghashtab
[1]);
929 while (!(*hashval
++ & 1));
934 static void *dl_mmap(size_t n
)
937 int prot
= PROT_READ
|PROT_WRITE
, flags
= MAP_ANONYMOUS
|MAP_PRIVATE
;
939 p
= (void *)__syscall(SYS_mmap2
, 0, n
, prot
, flags
, -1, 0);
941 p
= (void *)__syscall(SYS_mmap
, 0, n
, prot
, flags
, -1, 0);
943 return (unsigned long)p
> -4096UL ? 0 : p
;
946 static void makefuncdescs(struct dso
*p
)
948 static int self_done
;
949 size_t nsym
= count_syms(p
);
950 size_t i
, size
= nsym
* sizeof(*p
->funcdescs
);
953 p
->funcdescs
= dl_mmap(size
);
956 p
->funcdescs
= malloc(size
);
959 if (!runtime
) a_crash();
960 error("Error allocating function descriptors for %s", p
->name
);
961 longjmp(*rtld_fail
, 1);
963 for (i
=0; i
<nsym
; i
++) {
964 if ((p
->syms
[i
].st_info
&0xf)==STT_FUNC
&& p
->syms
[i
].st_shndx
) {
965 p
->funcdescs
[i
].addr
= laddr(p
, p
->syms
[i
].st_value
);
966 p
->funcdescs
[i
].got
= p
->got
;
968 p
->funcdescs
[i
].addr
= 0;
969 p
->funcdescs
[i
].got
= 0;
974 static struct dso
*load_library(const char *name
, struct dso
*needed_by
)
976 char buf
[2*NAME_MAX
+2];
977 const char *pathname
;
979 struct dso
*p
, temp_dso
= {0};
991 /* Catch and block attempts to reload the implementation itself */
992 if (name
[0]=='l' && name
[1]=='i' && name
[2]=='b') {
993 static const char reserved
[] =
994 "c.pthread.rt.m.dl.util.xnet.";
995 const char *rp
, *next
;
996 for (rp
=reserved
; *rp
; rp
=next
) {
997 next
= strchr(rp
, '.') + 1;
998 if (strncmp(name
+3, rp
, next
-rp
) == 0)
1003 /* Track which names have been resolved
1004 * and only report each one once. */
1005 static unsigned reported
;
1006 unsigned mask
= 1U<<(rp
-reserved
);
1007 if (!(reported
& mask
)) {
1009 dprintf(1, "\t%s => %s (%p)\n",
1017 if (!strcmp(name
, ldso
.name
)) is_self
= 1;
1026 if (strchr(name
, '/')) {
1028 fd
= open(name
, O_RDONLY
|O_CLOEXEC
);
1030 /* Search for the name to see if it's already loaded */
1031 for (p
=head
->next
; p
; p
=p
->next
) {
1032 if (p
->shortname
&& !strcmp(p
->shortname
, name
)) {
1036 if (strlen(name
) > NAME_MAX
) return 0;
1038 if (env_path
) fd
= path_open(name
, env_path
, buf
, sizeof buf
);
1039 for (p
=needed_by
; fd
== -1 && p
; p
=p
->needed_by
) {
1040 if (fixup_rpath(p
, buf
, sizeof buf
) < 0)
1041 fd
= -2; /* Inhibit further search. */
1043 fd
= path_open(name
, p
->rpath
, buf
, sizeof buf
);
1049 if (ldso
.name
[0]=='/') {
1051 for (s
=t
=z
=ldso
.name
; *s
; s
++)
1052 if (*s
=='/') z
=t
, t
=s
;
1053 prefix_len
= z
-ldso
.name
;
1054 if (prefix_len
< PATH_MAX
)
1061 char etc_ldso_path
[prefix_len
+ 1
1062 + sizeof "/etc/ld-musl-" LDSO_ARCH
".path"];
1063 snprintf(etc_ldso_path
, sizeof etc_ldso_path
,
1064 "%.*s/etc/ld-musl-" LDSO_ARCH
".path",
1065 (int)prefix_len
, prefix
);
1066 FILE *f
= fopen(etc_ldso_path
, "rbe");
1068 if (getdelim(&sys_path
, (size_t[1]){0}, 0, f
) <= 0) {
1073 } else if (errno
!= ENOENT
) {
1077 if (!sys_path
) sys_path
= "/lib:/usr/local/lib:/usr/lib";
1078 fd
= path_open(name
, sys_path
, buf
, sizeof buf
);
1082 if (fd
< 0) return 0;
1083 if (fstat(fd
, &st
) < 0) {
1087 for (p
=head
->next
; p
; p
=p
->next
) {
1088 if (p
->dev
== st
.st_dev
&& p
->ino
== st
.st_ino
) {
1089 /* If this library was previously loaded with a
1090 * pathname but a search found the same inode,
1091 * setup its shortname so it can be found by name. */
1092 if (!p
->shortname
&& pathname
!= name
)
1093 p
->shortname
= strrchr(p
->name
, '/')+1;
1098 map
= noload
? 0 : map_library(fd
, &temp_dso
);
1102 /* Avoid the danger of getting two versions of libc mapped into the
1103 * same process when an absolute pathname was used. The symbols
1104 * checked are chosen to catch both musl and glibc, and to avoid
1105 * false positives from interposition-hack libraries. */
1106 decode_dyn(&temp_dso
);
1107 if (find_sym(&temp_dso
, "__libc_start_main", 1).sym
&&
1108 find_sym(&temp_dso
, "stdin", 1).sym
) {
1109 unmap_library(&temp_dso
);
1110 return load_library("libc.so", needed_by
);
1112 /* Past this point, if we haven't reached runtime yet, ldso has
1113 * committed either to use the mapped library or to abort execution.
1114 * Unmapping is not possible, so we can safely reclaim gaps. */
1115 if (!runtime
) reclaim_gaps(&temp_dso
);
1117 /* Allocate storage for the new DSO. When there is TLS, this
1118 * storage must include a reservation for all pre-existing
1119 * threads to obtain copies of both the new TLS, and an
1120 * extended DTV capable of storing an additional slot for
1121 * the newly-loaded DSO. */
1122 alloc_size
= sizeof *p
+ strlen(pathname
) + 1;
1123 if (runtime
&& temp_dso
.tls
.image
) {
1124 size_t per_th
= temp_dso
.tls
.size
+ temp_dso
.tls
.align
1125 + sizeof(void *) * (tls_cnt
+3);
1126 n_th
= libc
.threads_minus_1
+ 1;
1127 if (n_th
> SSIZE_MAX
/ per_th
) alloc_size
= SIZE_MAX
;
1128 else alloc_size
+= n_th
* per_th
;
1130 p
= calloc(1, alloc_size
);
1132 unmap_library(&temp_dso
);
1135 memcpy(p
, &temp_dso
, sizeof temp_dso
);
1138 p
->needed_by
= needed_by
;
1140 p
->runtime_loaded
= runtime
;
1141 strcpy(p
->name
, pathname
);
1142 /* Add a shortname only if name arg was not an explicit pathname. */
1143 if (pathname
!= name
) p
->shortname
= strrchr(p
->name
, '/')+1;
1145 p
->tls_id
= ++tls_cnt
;
1146 tls_align
= MAXP2(tls_align
, p
->tls
.align
);
1148 p
->tls
.offset
= tls_offset
+ ( (p
->tls
.align
-1) &
1149 (-tls_offset
+ (uintptr_t)p
->tls
.image
) );
1150 tls_offset
= p
->tls
.offset
+ p
->tls
.size
;
1152 tls_offset
+= p
->tls
.size
+ p
->tls
.align
- 1;
1153 tls_offset
-= (tls_offset
+ (uintptr_t)p
->tls
.image
)
1155 p
->tls
.offset
= tls_offset
;
1157 p
->new_dtv
= (void *)(-sizeof(size_t) &
1158 (uintptr_t)(p
->name
+strlen(p
->name
)+sizeof(size_t)));
1159 p
->new_tls
= (void *)(p
->new_dtv
+ n_th
*(tls_cnt
+1));
1160 if (tls_tail
) tls_tail
->next
= &p
->tls
;
1161 else libc
.tls_head
= &p
->tls
;
1169 if (DL_FDPIC
) makefuncdescs(p
);
1171 if (ldd_mode
) dprintf(1, "\t%s => %s (%p)\n", name
, pathname
, p
->base
);
1176 static void load_direct_deps(struct dso
*p
)
1180 if (p
->deps
) return;
1181 /* For head, all preloads are direct pseudo-dependencies.
1182 * Count and include them now to avoid realloc later. */
1183 if (p
==head
) for (struct dso
*q
=p
->next
; q
; q
=q
->next
)
1185 for (i
=0; p
->dynv
[i
]; i
+=2)
1186 if (p
->dynv
[i
] == DT_NEEDED
) cnt
++;
1187 /* Use builtin buffer for apps with no external deps, to
1188 * preserve property of no runtime failure paths. */
1189 p
->deps
= (p
==head
&& cnt
<2) ? builtin_deps
:
1190 calloc(cnt
+1, sizeof *p
->deps
);
1192 error("Error loading dependencies for %s", p
->name
);
1193 if (runtime
) longjmp(*rtld_fail
, 1);
1196 if (p
==head
) for (struct dso
*q
=p
->next
; q
; q
=q
->next
)
1198 for (i
=0; p
->dynv
[i
]; i
+=2) {
1199 if (p
->dynv
[i
] != DT_NEEDED
) continue;
1200 struct dso
*dep
= load_library(p
->strings
+ p
->dynv
[i
+1], p
);
1202 error("Error loading shared library %s: %m (needed by %s)",
1203 p
->strings
+ p
->dynv
[i
+1], p
->name
);
1204 if (runtime
) longjmp(*rtld_fail
, 1);
1207 p
->deps
[cnt
++] = dep
;
1210 p
->ndeps_direct
= cnt
;
1213 static void load_deps(struct dso
*p
)
1215 if (p
->deps
) return;
1216 for (; p
; p
=p
->next
)
1217 load_direct_deps(p
);
1220 static void extend_bfs_deps(struct dso
*p
)
1222 size_t i
, j
, cnt
, ndeps_all
;
1225 /* Can't use realloc if the original p->deps was allocated at
1226 * program entry and malloc has been replaced, or if it's
1227 * the builtin non-allocated trivial main program deps array. */
1228 int no_realloc
= (__malloc_replaced
&& !p
->runtime_loaded
)
1229 || p
->deps
== builtin_deps
;
1231 if (p
->bfs_built
) return;
1232 ndeps_all
= p
->ndeps_direct
;
1234 /* Mark existing (direct) deps so they won't be duplicated. */
1235 for (i
=0; p
->deps
[i
]; i
++)
1236 p
->deps
[i
]->mark
= 1;
1238 /* For each dependency already in the list, copy its list of direct
1239 * dependencies to the list, excluding any items already in the
1240 * list. Note that the list this loop iterates over will grow during
1241 * the loop, but since duplicates are excluded, growth is bounded. */
1242 for (i
=0; p
->deps
[i
]; i
++) {
1243 struct dso
*dep
= p
->deps
[i
];
1244 for (j
=cnt
=0; j
<dep
->ndeps_direct
; j
++)
1245 if (!dep
->deps
[j
]->mark
) cnt
++;
1247 malloc(sizeof(*tmp
) * (ndeps_all
+cnt
+1)) :
1248 realloc(p
->deps
, sizeof(*tmp
) * (ndeps_all
+cnt
+1));
1250 error("Error recording dependencies for %s", p
->name
);
1251 if (runtime
) longjmp(*rtld_fail
, 1);
1255 memcpy(tmp
, p
->deps
, sizeof(*tmp
) * (ndeps_all
+1));
1259 for (j
=0; j
<dep
->ndeps_direct
; j
++) {
1260 if (dep
->deps
[j
]->mark
) continue;
1261 dep
->deps
[j
]->mark
= 1;
1262 p
->deps
[ndeps_all
++] = dep
->deps
[j
];
1264 p
->deps
[ndeps_all
] = 0;
1267 for (p
=head
; p
; p
=p
->next
)
1271 static void load_preload(char *s
)
1275 for (z
=s
; *z
; s
=z
) {
1276 for ( ; *s
&& (isspace(*s
) || *s
==':'); s
++);
1277 for (z
=s
; *z
&& !isspace(*z
) && *z
!=':'; z
++);
1285 static void add_syms(struct dso
*p
)
1287 if (!p
->syms_next
&& syms_tail
!= p
) {
1288 syms_tail
->syms_next
= p
;
1293 static void revert_syms(struct dso
*old_tail
)
1295 struct dso
*p
, *next
;
1296 /* Chop off the tail of the list of dsos that participate in
1297 * the global symbol table, reverting them to RTLD_LOCAL. */
1298 for (p
=old_tail
; p
; p
=next
) {
1299 next
= p
->syms_next
;
1302 syms_tail
= old_tail
;
1305 static void do_mips_relocs(struct dso
*p
, size_t *got
)
1307 size_t i
, j
, rel
[2];
1308 unsigned char *base
= p
->base
;
1309 i
=0; search_vec(p
->dynv
, &i
, DT_MIPS_LOCAL_GOTNO
);
1313 while (i
--) *got
++ += (size_t)base
;
1315 j
=0; search_vec(p
->dynv
, &j
, DT_MIPS_GOTSYM
);
1316 i
=0; search_vec(p
->dynv
, &i
, DT_MIPS_SYMTABNO
);
1317 Sym
*sym
= p
->syms
+ j
;
1318 rel
[0] = (unsigned char *)got
- base
;
1319 for (i
-=j
; i
; i
--, sym
++, rel
[0]+=sizeof(size_t)) {
1320 rel
[1] = R_INFO(sym
-p
->syms
, R_MIPS_JUMP_SLOT
);
1321 do_relocs(p
, rel
, sizeof rel
, 2);
1325 static void reloc_all(struct dso
*p
)
1327 size_t dyn
[DYN_CNT
];
1328 for (; p
; p
=p
->next
) {
1329 if (p
->relocated
) continue;
1330 decode_vec(p
->dynv
, dyn
, DYN_CNT
);
1331 if (NEED_MIPS_GOT_RELOCS
)
1332 do_mips_relocs(p
, laddr(p
, dyn
[DT_PLTGOT
]));
1333 do_relocs(p
, laddr(p
, dyn
[DT_JMPREL
]), dyn
[DT_PLTRELSZ
],
1334 2+(dyn
[DT_PLTREL
]==DT_RELA
));
1335 do_relocs(p
, laddr(p
, dyn
[DT_REL
]), dyn
[DT_RELSZ
], 2);
1336 do_relocs(p
, laddr(p
, dyn
[DT_RELA
]), dyn
[DT_RELASZ
], 3);
1338 if (head
!= &ldso
&& p
->relro_start
!= p
->relro_end
&&
1339 mprotect(laddr(p
, p
->relro_start
), p
->relro_end
-p
->relro_start
, PROT_READ
)
1340 && errno
!= ENOSYS
) {
1341 error("Error relocating %s: RELRO protection failed: %m",
1343 if (runtime
) longjmp(*rtld_fail
, 1);
1350 static void kernel_mapped_dso(struct dso
*p
)
1352 size_t min_addr
= -1, max_addr
= 0, cnt
;
1354 for (cnt
= p
->phnum
; cnt
--; ph
= (void *)((char *)ph
+ p
->phentsize
)) {
1355 if (ph
->p_type
== PT_DYNAMIC
) {
1356 p
->dynv
= laddr(p
, ph
->p_vaddr
);
1357 } else if (ph
->p_type
== PT_GNU_RELRO
) {
1358 p
->relro_start
= ph
->p_vaddr
& -PAGE_SIZE
;
1359 p
->relro_end
= (ph
->p_vaddr
+ ph
->p_memsz
) & -PAGE_SIZE
;
1360 } else if (ph
->p_type
== PT_GNU_STACK
) {
1361 if (!runtime
&& ph
->p_memsz
> __default_stacksize
) {
1362 __default_stacksize
=
1363 ph
->p_memsz
< DEFAULT_STACK_MAX
?
1364 ph
->p_memsz
: DEFAULT_STACK_MAX
;
1367 if (ph
->p_type
!= PT_LOAD
) continue;
1368 if (ph
->p_vaddr
< min_addr
)
1369 min_addr
= ph
->p_vaddr
;
1370 if (ph
->p_vaddr
+ph
->p_memsz
> max_addr
)
1371 max_addr
= ph
->p_vaddr
+ph
->p_memsz
;
1373 min_addr
&= -PAGE_SIZE
;
1374 max_addr
= (max_addr
+ PAGE_SIZE
-1) & -PAGE_SIZE
;
1375 p
->map
= p
->base
+ min_addr
;
1376 p
->map_len
= max_addr
- min_addr
;
1377 p
->kernel_mapped
= 1;
1380 void __libc_exit_fini()
1383 size_t dyn
[DYN_CNT
];
1384 int self
= __pthread_self()->tid
;
1386 /* Take both locks before setting shutting_down, so that
1387 * either lock is sufficient to read its value. The lock
1388 * order matches that in dlopen to avoid deadlock. */
1389 pthread_rwlock_wrlock(&lock
);
1390 pthread_mutex_lock(&init_fini_lock
);
1392 pthread_rwlock_unlock(&lock
);
1393 for (p
=fini_head
; p
; p
=p
->fini_next
) {
1394 while (p
->ctor_visitor
&& p
->ctor_visitor
!=self
)
1395 pthread_cond_wait(&ctor_cond
, &init_fini_lock
);
1396 if (!p
->constructed
) continue;
1397 decode_vec(p
->dynv
, dyn
, DYN_CNT
);
1398 if (dyn
[0] & (1<<DT_FINI_ARRAY
)) {
1399 size_t n
= dyn
[DT_FINI_ARRAYSZ
]/sizeof(size_t);
1400 size_t *fn
= (size_t *)laddr(p
, dyn
[DT_FINI_ARRAY
])+n
;
1401 while (n
--) ((void (*)(void))*--fn
)();
1403 #ifndef NO_LEGACY_INITFINI
1404 if ((dyn
[0] & (1<<DT_FINI
)) && dyn
[DT_FINI
])
1405 fpaddr(p
, dyn
[DT_FINI
])();
1410 static struct dso
**queue_ctors(struct dso
*dso
)
1412 size_t cnt
, qpos
, spos
, i
;
1413 struct dso
*p
, **queue
, **stack
;
1415 if (ldd_mode
) return 0;
1417 /* Bound on queue size is the total number of indirect deps.
1418 * If a bfs deps list was built, we can use it. Otherwise,
1419 * bound by the total number of DSOs, which is always safe and
1420 * is reasonable we use it (for main app at startup). */
1421 if (dso
->bfs_built
) {
1422 for (cnt
=0; dso
->deps
[cnt
]; cnt
++)
1423 dso
->deps
[cnt
]->mark
= 0;
1424 cnt
++; /* self, not included in deps */
1426 for (cnt
=0, p
=head
; p
; cnt
++, p
=p
->next
)
1429 cnt
++; /* termination slot */
1430 if (dso
==head
&& cnt
<= countof(builtin_ctor_queue
))
1431 queue
= builtin_ctor_queue
;
1433 queue
= calloc(cnt
, sizeof *queue
);
1436 error("Error allocating constructor queue: %m\n");
1437 if (runtime
) longjmp(*rtld_fail
, 1);
1441 /* Opposite ends of the allocated buffer serve as an output queue
1442 * and a working stack. Setup initial stack with just the argument
1443 * dso and initial queue empty... */
1447 stack
[--spos
] = dso
;
1451 /* Then perform pseudo-DFS sort, but ignoring circular deps. */
1454 while (p
->next_dep
< p
->ndeps_direct
) {
1455 if (p
->deps
[p
->next_dep
]->mark
) {
1459 p
= p
->deps
[p
->next_dep
];
1467 for (i
=0; i
<qpos
; i
++) queue
[i
]->mark
= 0;
1472 static void do_init_fini(struct dso
**queue
)
1475 size_t dyn
[DYN_CNT
], i
;
1476 int self
= __pthread_self()->tid
;
1478 pthread_mutex_lock(&init_fini_lock
);
1479 for (i
=0; (p
=queue
[i
]); i
++) {
1480 while ((p
->ctor_visitor
&& p
->ctor_visitor
!=self
) || shutting_down
)
1481 pthread_cond_wait(&ctor_cond
, &init_fini_lock
);
1482 if (p
->ctor_visitor
|| p
->constructed
)
1484 p
->ctor_visitor
= self
;
1486 decode_vec(p
->dynv
, dyn
, DYN_CNT
);
1487 if (dyn
[0] & ((1<<DT_FINI
) | (1<<DT_FINI_ARRAY
))) {
1488 p
->fini_next
= fini_head
;
1492 pthread_mutex_unlock(&init_fini_lock
);
1494 #ifndef NO_LEGACY_INITFINI
1495 if ((dyn
[0] & (1<<DT_INIT
)) && dyn
[DT_INIT
])
1496 fpaddr(p
, dyn
[DT_INIT
])();
1498 if (dyn
[0] & (1<<DT_INIT_ARRAY
)) {
1499 size_t n
= dyn
[DT_INIT_ARRAYSZ
]/sizeof(size_t);
1500 size_t *fn
= laddr(p
, dyn
[DT_INIT_ARRAY
]);
1501 while (n
--) ((void (*)(void))*fn
++)();
1504 pthread_mutex_lock(&init_fini_lock
);
1505 p
->ctor_visitor
= 0;
1507 pthread_cond_broadcast(&ctor_cond
);
1509 pthread_mutex_unlock(&init_fini_lock
);
1512 void __libc_start_init(void)
1514 do_init_fini(main_ctor_queue
);
1515 if (!__malloc_replaced
&& main_ctor_queue
!= builtin_ctor_queue
)
1516 free(main_ctor_queue
);
1517 main_ctor_queue
= 0;
1520 static void dl_debug_state(void)
1524 weak_alias(dl_debug_state
, _dl_debug_state
);
1526 void __init_tls(size_t *auxv
)
1530 static void update_tls_size()
1532 libc
.tls_cnt
= tls_cnt
;
1533 libc
.tls_align
= tls_align
;
1534 libc
.tls_size
= ALIGN(
1535 (1+tls_cnt
) * sizeof(void *) +
1537 sizeof(struct pthread
) +
1542 static void install_new_tls(void)
1545 pthread_t self
= __pthread_self(), td
;
1546 struct dso
*dtv_provider
= container_of(tls_tail
, struct dso
, tls
);
1547 uintptr_t (*newdtv
)[tls_cnt
+1] = (void *)dtv_provider
->new_dtv
;
1550 size_t old_cnt
= self
->dtv
[0];
1552 __block_app_sigs(&set
);
1554 /* Copy existing dtv contents from all existing threads. */
1555 for (i
=0, td
=self
; !i
|| td
!=self
; i
++, td
=td
->next
) {
1556 memcpy(newdtv
+i
, td
->dtv
,
1557 (old_cnt
+1)*sizeof(uintptr_t));
1558 newdtv
[i
][0] = tls_cnt
;
1560 /* Install new dtls into the enlarged, uninstalled dtv copies. */
1561 for (p
=head
; ; p
=p
->next
) {
1562 if (p
->tls_id
<= old_cnt
) continue;
1563 unsigned char *mem
= p
->new_tls
;
1564 for (j
=0; j
<i
; j
++) {
1565 unsigned char *new = mem
;
1566 new += ((uintptr_t)p
->tls
.image
- (uintptr_t)mem
)
1568 memcpy(new, p
->tls
.image
, p
->tls
.len
);
1569 newdtv
[j
][p
->tls_id
] =
1570 (uintptr_t)new + DTP_OFFSET
;
1571 mem
+= p
->tls
.size
+ p
->tls
.align
;
1573 if (p
->tls_id
== tls_cnt
) break;
1576 /* Broadcast barrier to ensure contents of new dtv is visible
1577 * if the new dtv pointer is. The __membarrier function has a
1578 * fallback emulation using signals for kernels that lack the
1579 * feature at the syscall level. */
1581 __membarrier(MEMBARRIER_CMD_PRIVATE_EXPEDITED
, 0);
1583 /* Install new dtv for each thread. */
1584 for (j
=0, td
=self
; !j
|| td
!=self
; j
++, td
=td
->next
) {
1585 td
->dtv
= td
->dtv_copy
= newdtv
[j
];
1589 __restore_sigs(&set
);
1592 /* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1593 * following stage 2 and stage 3 functions via primitive symbolic lookup
1594 * since it does not have access to their addresses to begin with. */
1596 /* Stage 2 of the dynamic linker is called after relative relocations
1597 * have been processed. It can make function calls to static functions
1598 * and access string literals and static data, but cannot use extern
1599 * symbols. Its job is to perform symbolic relocations on the dynamic
1600 * linker itself, but some of the relocations performed may need to be
1601 * replaced later due to copy relocations in the main program. */
1603 hidden
void __dls2(unsigned char *base
, size_t *sp
)
1606 for (auxv
=sp
+1+*sp
+1; *auxv
; auxv
++);
1609 void *p1
= (void *)sp
[-2];
1610 void *p2
= (void *)sp
[-1];
1612 size_t aux
[AUX_CNT
];
1613 decode_vec(auxv
, aux
, AUX_CNT
);
1614 if (aux
[AT_BASE
]) ldso
.base
= (void *)aux
[AT_BASE
];
1615 else ldso
.base
= (void *)(aux
[AT_PHDR
] & -4096);
1617 app_loadmap
= p2
? p1
: 0;
1618 ldso
.loadmap
= p2
? p2
: p1
;
1619 ldso
.base
= laddr(&ldso
, 0);
1623 Ehdr
*ehdr
= (void *)ldso
.base
;
1624 ldso
.name
= ldso
.shortname
= "libc.so";
1625 ldso
.phnum
= ehdr
->e_phnum
;
1626 ldso
.phdr
= laddr(&ldso
, ehdr
->e_phoff
);
1627 ldso
.phentsize
= ehdr
->e_phentsize
;
1628 kernel_mapped_dso(&ldso
);
1631 if (DL_FDPIC
) makefuncdescs(&ldso
);
1633 /* Prepare storage for to save clobbered REL addends so they
1634 * can be reused in stage 3. There should be very few. If
1635 * something goes wrong and there are a huge number, abort
1636 * instead of risking stack overflow. */
1637 size_t dyn
[DYN_CNT
];
1638 decode_vec(ldso
.dynv
, dyn
, DYN_CNT
);
1639 size_t *rel
= laddr(&ldso
, dyn
[DT_REL
]);
1640 size_t rel_size
= dyn
[DT_RELSZ
];
1641 size_t symbolic_rel_cnt
= 0;
1642 apply_addends_to
= rel
;
1643 for (; rel_size
; rel
+=2, rel_size
-=2*sizeof(size_t))
1644 if (!IS_RELATIVE(rel
[1], ldso
.syms
)) symbolic_rel_cnt
++;
1645 if (symbolic_rel_cnt
>= ADDEND_LIMIT
) a_crash();
1646 size_t addends
[symbolic_rel_cnt
+1];
1647 saved_addends
= addends
;
1654 /* Call dynamic linker stage-2b, __dls2b, looking it up
1655 * symbolically as a barrier against moving the address
1656 * load across the above relocation processing. */
1657 struct symdef dls2b_def
= find_sym(&ldso
, "__dls2b", 0);
1658 if (DL_FDPIC
) ((stage3_func
)&ldso
.funcdescs
[dls2b_def
.sym
-ldso
.syms
])(sp
, auxv
);
1659 else ((stage3_func
)laddr(&ldso
, dls2b_def
.sym
->st_value
))(sp
, auxv
);
1662 /* Stage 2b sets up a valid thread pointer, which requires relocations
1663 * completed in stage 2, and on which stage 3 is permitted to depend.
1664 * This is done as a separate stage, with symbolic lookup as a barrier,
1665 * so that loads of the thread pointer and &errno can be pure/const and
1666 * thereby hoistable. */
1668 void __dls2b(size_t *sp
, size_t *auxv
)
1670 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1671 * use during dynamic linking. If possible it will also serve as the
1672 * thread pointer at runtime. */
1673 search_vec(auxv
, &__hwcap
, AT_HWCAP
);
1675 libc
.tls_size
= sizeof builtin_tls
;
1676 libc
.tls_align
= tls_align
;
1677 if (__init_tp(__copy_tls((void *)builtin_tls
)) < 0) {
1681 struct symdef dls3_def
= find_sym(&ldso
, "__dls3", 0);
1682 if (DL_FDPIC
) ((stage3_func
)&ldso
.funcdescs
[dls3_def
.sym
-ldso
.syms
])(sp
, auxv
);
1683 else ((stage3_func
)laddr(&ldso
, dls3_def
.sym
->st_value
))(sp
, auxv
);
1686 /* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1687 * fully functional. Its job is to load (if not already loaded) and
1688 * process dependencies and relocations for the main application and
1689 * transfer control to its entry point. */
1691 void __dls3(size_t *sp
, size_t *auxv
)
1693 static struct dso app
, vdso
;
1694 size_t aux
[AUX_CNT
];
1696 char *env_preload
=0;
1697 char *replace_argv0
=0;
1700 char **argv
= (void *)(sp
+1);
1701 char **argv_orig
= argv
;
1702 char **envp
= argv
+argc
+1;
1704 /* Find aux vector just past environ[] and use it to initialize
1705 * global data that may be needed before we can make syscalls. */
1707 decode_vec(auxv
, aux
, AUX_CNT
);
1708 search_vec(auxv
, &__sysinfo
, AT_SYSINFO
);
1709 __pthread_self()->sysinfo
= __sysinfo
;
1710 libc
.page_size
= aux
[AT_PAGESZ
];
1711 libc
.secure
= ((aux
[0]&0x7800)!=0x7800 || aux
[AT_UID
]!=aux
[AT_EUID
]
1712 || aux
[AT_GID
]!=aux
[AT_EGID
] || aux
[AT_SECURE
]);
1714 /* Only trust user/env if kernel says we're not suid/sgid */
1716 env_path
= getenv("LD_LIBRARY_PATH");
1717 env_preload
= getenv("LD_PRELOAD");
1720 /* If the main program was already loaded by the kernel,
1721 * AT_PHDR will point to some location other than the dynamic
1722 * linker's program headers. */
1723 if (aux
[AT_PHDR
] != (size_t)ldso
.phdr
) {
1724 size_t interp_off
= 0;
1725 size_t tls_image
= 0;
1726 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
1727 Phdr
*phdr
= app
.phdr
= (void *)aux
[AT_PHDR
];
1728 app
.phnum
= aux
[AT_PHNUM
];
1729 app
.phentsize
= aux
[AT_PHENT
];
1730 for (i
=aux
[AT_PHNUM
]; i
; i
--, phdr
=(void *)((char *)phdr
+ aux
[AT_PHENT
])) {
1731 if (phdr
->p_type
== PT_PHDR
)
1732 app
.base
= (void *)(aux
[AT_PHDR
] - phdr
->p_vaddr
);
1733 else if (phdr
->p_type
== PT_INTERP
)
1734 interp_off
= (size_t)phdr
->p_vaddr
;
1735 else if (phdr
->p_type
== PT_TLS
) {
1736 tls_image
= phdr
->p_vaddr
;
1737 app
.tls
.len
= phdr
->p_filesz
;
1738 app
.tls
.size
= phdr
->p_memsz
;
1739 app
.tls
.align
= phdr
->p_align
;
1742 if (DL_FDPIC
) app
.loadmap
= app_loadmap
;
1743 if (app
.tls
.size
) app
.tls
.image
= laddr(&app
, tls_image
);
1744 if (interp_off
) ldso
.name
= laddr(&app
, interp_off
);
1745 if ((aux
[0] & (1UL<<AT_EXECFN
))
1746 && strncmp((char *)aux
[AT_EXECFN
], "/proc/", 6))
1747 app
.name
= (char *)aux
[AT_EXECFN
];
1750 kernel_mapped_dso(&app
);
1753 char *ldname
= argv
[0];
1754 size_t l
= strlen(ldname
);
1755 if (l
>= 3 && !strcmp(ldname
+l
-3, "ldd")) ldd_mode
= 1;
1757 while (argv
[0] && argv
[0][0]=='-' && argv
[0][1]=='-') {
1758 char *opt
= argv
[0]+2;
1759 *argv
++ = (void *)-1;
1762 } else if (!memcmp(opt
, "list", 5)) {
1764 } else if (!memcmp(opt
, "library-path", 12)) {
1765 if (opt
[12]=='=') env_path
= opt
+13;
1766 else if (opt
[12]) *argv
= 0;
1767 else if (*argv
) env_path
= *argv
++;
1768 } else if (!memcmp(opt
, "preload", 7)) {
1769 if (opt
[7]=='=') env_preload
= opt
+8;
1770 else if (opt
[7]) *argv
= 0;
1771 else if (*argv
) env_preload
= *argv
++;
1772 } else if (!memcmp(opt
, "argv0", 5)) {
1773 if (opt
[5]=='=') replace_argv0
= opt
+6;
1774 else if (opt
[5]) *argv
= 0;
1775 else if (*argv
) replace_argv0
= *argv
++;
1780 argv
[-1] = (void *)(argc
- (argv
-argv_orig
));
1782 dprintf(2, "musl libc (" LDSO_ARCH
")\n"
1784 "Dynamic Program Loader\n"
1785 "Usage: %s [options] [--] pathname%s\n",
1786 __libc_version
, ldname
,
1787 ldd_mode
? "" : " [args]");
1790 fd
= open(argv
[0], O_RDONLY
);
1792 dprintf(2, "%s: cannot load %s: %s\n", ldname
, argv
[0], strerror(errno
));
1795 Ehdr
*ehdr
= (void *)map_library(fd
, &app
);
1797 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname
, argv
[0]);
1803 aux
[AT_ENTRY
] = (size_t)laddr(&app
, ehdr
->e_entry
);
1804 /* Find the name that would have been used for the dynamic
1805 * linker had ldd not taken its place. */
1807 for (i
=0; i
<app
.phnum
; i
++) {
1808 if (app
.phdr
[i
].p_type
== PT_INTERP
)
1809 ldso
.name
= laddr(&app
, app
.phdr
[i
].p_vaddr
);
1811 dprintf(1, "\t%s (%p)\n", ldso
.name
, ldso
.base
);
1815 libc
.tls_head
= tls_tail
= &app
.tls
;
1816 app
.tls_id
= tls_cnt
= 1;
1818 app
.tls
.offset
= GAP_ABOVE_TP
;
1819 app
.tls
.offset
+= (-GAP_ABOVE_TP
+ (uintptr_t)app
.tls
.image
)
1820 & (app
.tls
.align
-1);
1821 tls_offset
= app
.tls
.offset
+ app
.tls
.size
;
1823 tls_offset
= app
.tls
.offset
= app
.tls
.size
1824 + ( -((uintptr_t)app
.tls
.image
+ app
.tls
.size
)
1825 & (app
.tls
.align
-1) );
1827 tls_align
= MAXP2(tls_align
, app
.tls
.align
);
1831 makefuncdescs(&app
);
1833 app
.loadmap
= (void *)&app_dummy_loadmap
;
1834 app
.loadmap
->nsegs
= 1;
1835 app
.loadmap
->segs
[0].addr
= (size_t)app
.map
;
1836 app
.loadmap
->segs
[0].p_vaddr
= (size_t)app
.map
1838 app
.loadmap
->segs
[0].p_memsz
= app
.map_len
;
1840 argv
[-3] = (void *)app
.loadmap
;
1843 /* Initial dso chain consists only of the app. */
1844 head
= tail
= syms_tail
= &app
;
1846 /* Donate unused parts of app and library mapping to malloc */
1848 reclaim_gaps(&ldso
);
1850 /* Load preload/needed libraries, add symbols to global namespace. */
1851 ldso
.deps
= (struct dso
**)no_deps
;
1852 if (env_preload
) load_preload(env_preload
);
1854 for (struct dso
*p
=head
; p
; p
=p
->next
)
1857 /* Attach to vdso, if provided by the kernel, last so that it does
1858 * not become part of the global namespace. */
1859 if (search_vec(auxv
, &vdso_base
, AT_SYSINFO_EHDR
) && vdso_base
) {
1860 Ehdr
*ehdr
= (void *)vdso_base
;
1861 Phdr
*phdr
= vdso
.phdr
= (void *)(vdso_base
+ ehdr
->e_phoff
);
1862 vdso
.phnum
= ehdr
->e_phnum
;
1863 vdso
.phentsize
= ehdr
->e_phentsize
;
1864 for (i
=ehdr
->e_phnum
; i
; i
--, phdr
=(void *)((char *)phdr
+ ehdr
->e_phentsize
)) {
1865 if (phdr
->p_type
== PT_DYNAMIC
)
1866 vdso
.dynv
= (void *)(vdso_base
+ phdr
->p_offset
);
1867 if (phdr
->p_type
== PT_LOAD
)
1868 vdso
.base
= (void *)(vdso_base
- phdr
->p_vaddr
+ phdr
->p_offset
);
1871 vdso
.shortname
= "linux-gate.so.1";
1873 vdso
.deps
= (struct dso
**)no_deps
;
1880 for (i
=0; app
.dynv
[i
]; i
+=2) {
1881 if (!DT_DEBUG_INDIRECT
&& app
.dynv
[i
]==DT_DEBUG
)
1882 app
.dynv
[i
+1] = (size_t)&debug
;
1883 if (DT_DEBUG_INDIRECT
&& app
.dynv
[i
]==DT_DEBUG_INDIRECT
) {
1884 size_t *ptr
= (size_t *) app
.dynv
[i
+1];
1885 *ptr
= (size_t)&debug
;
1889 /* This must be done before final relocations, since it calls
1890 * malloc, which may be provided by the application. Calling any
1891 * application code prior to the jump to its entry point is not
1892 * valid in our model and does not work with FDPIC, where there
1893 * are additional relocation-like fixups that only the entry point
1894 * code can see to perform. */
1895 main_ctor_queue
= queue_ctors(&app
);
1897 /* Initial TLS must also be allocated before final relocations
1898 * might result in calloc being a call to application code. */
1900 void *initial_tls
= builtin_tls
;
1901 if (libc
.tls_size
> sizeof builtin_tls
|| tls_align
> MIN_TLS_ALIGN
) {
1902 initial_tls
= calloc(libc
.tls_size
, 1);
1904 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
1905 argv
[0], libc
.tls_size
);
1909 static_tls_cnt
= tls_cnt
;
1911 /* The main program must be relocated LAST since it may contain
1912 * copy relocations which depend on libraries' relocations. */
1913 reloc_all(app
.next
);
1916 /* Actual copying to new TLS needs to happen after relocations,
1917 * since the TLS images might have contained relocated addresses. */
1918 if (initial_tls
!= builtin_tls
) {
1919 if (__init_tp(__copy_tls(initial_tls
)) < 0) {
1923 size_t tmp_tls_size
= libc
.tls_size
;
1924 pthread_t self
= __pthread_self();
1925 /* Temporarily set the tls size to the full size of
1926 * builtin_tls so that __copy_tls will use the same layout
1927 * as it did for before. Then check, just to be safe. */
1928 libc
.tls_size
= sizeof builtin_tls
;
1929 if (__copy_tls((void*)builtin_tls
) != self
) a_crash();
1930 libc
.tls_size
= tmp_tls_size
;
1933 if (ldso_fail
) _exit(127);
1934 if (ldd_mode
) _exit(0);
1936 /* Determine if malloc was interposed by a replacement implementation
1937 * so that calloc and the memalign family can harden against the
1938 * possibility of incomplete replacement. */
1939 if (find_sym(head
, "malloc", 1).dso
!= &ldso
)
1940 __malloc_replaced
= 1;
1942 /* Switch to runtime mode: any further failures in the dynamic
1943 * linker are a reportable failure rather than a fatal startup
1948 debug
.bp
= dl_debug_state
;
1950 debug
.base
= ldso
.base
;
1954 if (replace_argv0
) argv
[0] = replace_argv0
;
1958 CRTJMP((void *)aux
[AT_ENTRY
], argv
-1);
1962 static void prepare_lazy(struct dso
*p
)
1964 size_t dyn
[DYN_CNT
], n
, flags1
=0;
1965 decode_vec(p
->dynv
, dyn
, DYN_CNT
);
1966 search_vec(p
->dynv
, &flags1
, DT_FLAGS_1
);
1967 if (dyn
[DT_BIND_NOW
] || (dyn
[DT_FLAGS
] & DF_BIND_NOW
) || (flags1
& DF_1_NOW
))
1969 n
= dyn
[DT_RELSZ
]/2 + dyn
[DT_RELASZ
]/3 + dyn
[DT_PLTRELSZ
]/2 + 1;
1970 if (NEED_MIPS_GOT_RELOCS
) {
1971 size_t j
=0; search_vec(p
->dynv
, &j
, DT_MIPS_GOTSYM
);
1972 size_t i
=0; search_vec(p
->dynv
, &i
, DT_MIPS_SYMTABNO
);
1975 p
->lazy
= calloc(n
, 3*sizeof(size_t));
1977 error("Error preparing lazy relocation for %s: %m", p
->name
);
1978 longjmp(*rtld_fail
, 1);
1980 p
->lazy_next
= lazy_head
;
1984 void *dlopen(const char *file
, int mode
)
1986 struct dso
*volatile p
, *orig_tail
, *orig_syms_tail
, *orig_lazy_head
, *next
;
1987 struct tls_module
*orig_tls_tail
;
1988 size_t orig_tls_cnt
, orig_tls_offset
, orig_tls_align
;
1992 struct dso
**volatile ctor_queue
= 0;
1994 if (!file
) return head
;
1996 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE
, &cs
);
1997 pthread_rwlock_wrlock(&lock
);
2001 if (shutting_down
) {
2002 error("Cannot dlopen while program is exiting.");
2005 orig_tls_tail
= tls_tail
;
2006 orig_tls_cnt
= tls_cnt
;
2007 orig_tls_offset
= tls_offset
;
2008 orig_tls_align
= tls_align
;
2009 orig_lazy_head
= lazy_head
;
2010 orig_syms_tail
= syms_tail
;
2012 noload
= mode
& RTLD_NOLOAD
;
2015 if (setjmp(*rtld_fail
)) {
2016 /* Clean up anything new that was (partially) loaded */
2017 revert_syms(orig_syms_tail
);
2018 for (p
=orig_tail
->next
; p
; p
=next
) {
2020 while (p
->td_index
) {
2021 void *tmp
= p
->td_index
->next
;
2026 if (p
->rpath
!= p
->rpath_orig
)
2034 if (!orig_tls_tail
) libc
.tls_head
= 0;
2035 tls_tail
= orig_tls_tail
;
2036 if (tls_tail
) tls_tail
->next
= 0;
2037 tls_cnt
= orig_tls_cnt
;
2038 tls_offset
= orig_tls_offset
;
2039 tls_align
= orig_tls_align
;
2040 lazy_head
= orig_lazy_head
;
2045 } else p
= load_library(file
, head
);
2049 "Library %s is not already loaded" :
2050 "Error loading shared library %s: %m",
2055 /* First load handling */
2058 pthread_mutex_lock(&init_fini_lock
);
2059 if (!p
->constructed
) ctor_queue
= queue_ctors(p
);
2060 pthread_mutex_unlock(&init_fini_lock
);
2061 if (!p
->relocated
&& (mode
& RTLD_LAZY
)) {
2063 for (i
=0; p
->deps
[i
]; i
++)
2064 if (!p
->deps
[i
]->relocated
)
2065 prepare_lazy(p
->deps
[i
]);
2067 if (!p
->relocated
|| (mode
& RTLD_GLOBAL
)) {
2068 /* Make new symbols global, at least temporarily, so we can do
2069 * relocations. If not RTLD_GLOBAL, this is reverted below. */
2071 for (i
=0; p
->deps
[i
]; i
++)
2072 add_syms(p
->deps
[i
]);
2074 if (!p
->relocated
) {
2078 /* If RTLD_GLOBAL was not specified, undo any new additions
2079 * to the global symbol table. This is a nop if the library was
2080 * previously loaded and already global. */
2081 if (!(mode
& RTLD_GLOBAL
))
2082 revert_syms(orig_syms_tail
);
2084 /* Processing of deferred lazy relocations must not happen until
2085 * the new libraries are committed; otherwise we could end up with
2086 * relocations resolved to symbol definitions that get removed. */
2090 if (tls_cnt
!= orig_tls_cnt
)
2097 pthread_rwlock_unlock(&lock
);
2099 do_init_fini(ctor_queue
);
2102 pthread_setcancelstate(cs
, 0);
2106 hidden
int __dl_invalid_handle(void *h
)
2109 for (p
=head
; p
; p
=p
->next
) if (h
==p
) return 0;
2110 error("Invalid library handle %p", (void *)h
);
2114 static void *addr2dso(size_t a
)
2118 if (DL_FDPIC
) for (p
=head
; p
; p
=p
->next
) {
2120 if (a
-(size_t)p
->funcdescs
< i
*sizeof(*p
->funcdescs
))
2123 for (p
=head
; p
; p
=p
->next
) {
2124 if (DL_FDPIC
&& p
->loadmap
) {
2125 for (i
=0; i
<p
->loadmap
->nsegs
; i
++) {
2126 if (a
-p
->loadmap
->segs
[i
].p_vaddr
2127 < p
->loadmap
->segs
[i
].p_memsz
)
2132 size_t phcnt
= p
->phnum
;
2133 size_t entsz
= p
->phentsize
;
2134 size_t base
= (size_t)p
->base
;
2135 for (; phcnt
--; ph
=(void *)((char *)ph
+entsz
)) {
2136 if (ph
->p_type
!= PT_LOAD
) continue;
2137 if (a
-base
-ph
->p_vaddr
< ph
->p_memsz
)
2140 if (a
-(size_t)p
->map
< p
->map_len
)
2147 static void *do_dlsym(struct dso
*p
, const char *s
, void *ra
)
2150 if (p
== head
|| p
== RTLD_DEFAULT
) {
2152 } else if (p
== RTLD_NEXT
) {
2153 p
= addr2dso((size_t)ra
);
2156 } else if (__dl_invalid_handle(p
)) {
2160 struct symdef def
= find_sym2(p
, s
, 0, use_deps
);
2162 error("Symbol not found: %s", s
);
2165 if ((def
.sym
->st_info
&0xf) == STT_TLS
)
2166 return __tls_get_addr((tls_mod_off_t
[]){def
.dso
->tls_id
, def
.sym
->st_value
-DTP_OFFSET
});
2167 if (DL_FDPIC
&& (def
.sym
->st_info
&0xf) == STT_FUNC
)
2168 return def
.dso
->funcdescs
+ (def
.sym
- def
.dso
->syms
);
2169 return laddr(def
.dso
, def
.sym
->st_value
);
2172 int dladdr(const void *addr_arg
, Dl_info
*info
)
2174 size_t addr
= (size_t)addr_arg
;
2180 size_t besterr
= -1;
2182 pthread_rwlock_rdlock(&lock
);
2184 pthread_rwlock_unlock(&lock
);
2189 strings
= p
->strings
;
2190 nsym
= count_syms(p
);
2193 size_t idx
= (addr
-(size_t)p
->funcdescs
)
2194 / sizeof(*p
->funcdescs
);
2195 if (idx
< nsym
&& (sym
[idx
].st_info
&0xf) == STT_FUNC
) {
2196 best
= (size_t)(p
->funcdescs
+ idx
);
2197 bestsym
= sym
+ idx
;
2202 if (!best
) for (; nsym
; nsym
--, sym
++) {
2204 && (1<<(sym
->st_info
&0xf) & OK_TYPES
)
2205 && (1<<(sym
->st_info
>>4) & OK_BINDS
)) {
2206 size_t symaddr
= (size_t)laddr(p
, sym
->st_value
);
2207 if (symaddr
> addr
|| symaddr
<= best
)
2211 besterr
= addr
- symaddr
;
2212 if (addr
== symaddr
)
2217 if (best
&& besterr
> bestsym
->st_size
-1) {
2222 info
->dli_fname
= p
->name
;
2223 info
->dli_fbase
= p
->map
;
2226 info
->dli_sname
= 0;
2227 info
->dli_saddr
= 0;
2231 if (DL_FDPIC
&& (bestsym
->st_info
&0xf) == STT_FUNC
)
2232 best
= (size_t)(p
->funcdescs
+ (bestsym
- p
->syms
));
2233 info
->dli_sname
= strings
+ bestsym
->st_name
;
2234 info
->dli_saddr
= (void *)best
;
2239 hidden
void *__dlsym(void *restrict p
, const char *restrict s
, void *restrict ra
)
2242 pthread_rwlock_rdlock(&lock
);
2243 res
= do_dlsym(p
, s
, ra
);
2244 pthread_rwlock_unlock(&lock
);
2248 hidden
void *__dlsym_redir_time64(void *restrict p
, const char *restrict s
, void *restrict ra
)
2251 const char *suffix
, *suffix2
= "";
2254 /* Map the symbol name to a time64 version of itself according to the
2255 * pattern used for naming the redirected time64 symbols. */
2256 size_t l
= strnlen(s
, sizeof redir
);
2257 if (l
<4 || l
==sizeof redir
) goto no_redir
;
2258 if (s
[l
-2]=='_' && s
[l
-1]=='r') {
2262 if (l
<4) goto no_redir
;
2263 if (!strcmp(s
+l
-4, "time")) suffix
= "64";
2264 else suffix
= "_time64";
2266 /* Use the presence of the remapped symbol name in libc to determine
2267 * whether it's one that requires time64 redirection; replace if so. */
2268 snprintf(redir
, sizeof redir
, "__%.*s%s%s", (int)l
, s
, suffix
, suffix2
);
2269 if (find_sym(&ldso
, redir
, 1).sym
) s
= redir
;
2272 return __dlsym(p
, s
, ra
);
2275 int dl_iterate_phdr(int(*callback
)(struct dl_phdr_info
*info
, size_t size
, void *data
), void *data
)
2277 struct dso
*current
;
2278 struct dl_phdr_info info
;
2280 for(current
= head
; current
;) {
2281 info
.dlpi_addr
= (uintptr_t)current
->base
;
2282 info
.dlpi_name
= current
->name
;
2283 info
.dlpi_phdr
= current
->phdr
;
2284 info
.dlpi_phnum
= current
->phnum
;
2285 info
.dlpi_adds
= gencnt
;
2287 info
.dlpi_tls_modid
= current
->tls_id
;
2288 info
.dlpi_tls_data
= current
->tls
.image
;
2290 ret
= (callback
)(&info
, sizeof (info
), data
);
2292 if (ret
!= 0) break;
2294 pthread_rwlock_rdlock(&lock
);
2295 current
= current
->next
;
2296 pthread_rwlock_unlock(&lock
);
2301 static void error(const char *fmt
, ...)
2306 vdprintf(2, fmt
, ap
);
2312 __dl_vseterr(fmt
, ap
);