blob: 4f857e5ac0144777d39021941bd6f1faaa4d0a17 [file] [log] [blame]
Rich Felkerf419bcb2012-08-26 21:09:26 -04001#define _GNU_SOURCE
Rich Felker51e2d832011-06-18 19:48:42 -04002#include <stdio.h>
3#include <stdlib.h>
Rich Felker7c73cac2014-06-18 03:05:42 -04004#include <stdarg.h>
Rich Felker9d15d5e2014-06-19 02:01:06 -04005#include <stddef.h>
Rich Felker51e2d832011-06-18 19:48:42 -04006#include <string.h>
7#include <unistd.h>
8#include <stdint.h>
9#include <elf.h>
10#include <sys/mman.h>
11#include <limits.h>
Rich Felker51e2d832011-06-18 19:48:42 -040012#include <fcntl.h>
13#include <sys/stat.h>
14#include <errno.h>
Rich Felker18c0e022012-10-31 21:27:48 -040015#include <link.h>
Rich Felker6b3d5e52011-06-26 17:39:17 -040016#include <setjmp.h>
Rich Felker59ab43f2011-06-26 19:23:28 -040017#include <pthread.h>
Rich Felker2719cc82011-08-16 00:24:36 -040018#include <ctype.h>
Rich Felker59ab43f2011-06-26 19:23:28 -040019#include <dlfcn.h>
Rich Felker8431d792012-10-04 16:35:46 -040020#include "pthread_impl.h"
21#include "libc.h"
Rich Felkerf3ddd172015-04-13 02:56:26 -040022#include "dynlink.h"
Rich Felker51e2d832011-06-18 19:48:42 -040023
Rich Felker01d42742015-04-18 18:00:22 -040024static void error(const char *, ...);
Rich Felkera9e85c02012-03-23 00:28:20 -040025
Rich Felkere864a292012-07-11 01:47:30 -040026#ifdef SHARED
Rich Felkera9e85c02012-03-23 00:28:20 -040027
Rich Felkercf3fd3d2012-10-06 01:22:51 -040028#define MAXP2(a,b) (-(-(a)&-(b)))
29#define ALIGN(x,y) ((x)+(y)-1 & -(y))
30
Rich Felker3ec8d292012-04-25 00:05:42 -040031struct debug {
32 int ver;
33 void *head;
34 void (*bp)(void);
35 int state;
36 void *base;
37};
38
Rich Felker9d15d5e2014-06-19 02:01:06 -040039struct td_index {
40 size_t args[2];
41 struct td_index *next;
42};
43
Rich Felker3ec8d292012-04-25 00:05:42 -040044struct dso {
Rich Felker7a9669e2015-09-22 03:54:42 +000045#if DL_FDPIC
46 struct fdpic_loadmap *loadmap;
47#else
Rich Felker3ec8d292012-04-25 00:05:42 -040048 unsigned char *base;
Rich Felker7a9669e2015-09-22 03:54:42 +000049#endif
Rich Felker3ec8d292012-04-25 00:05:42 -040050 char *name;
Rich Felker51e2d832011-06-18 19:48:42 -040051 size_t *dynv;
Rich Felker3ec8d292012-04-25 00:05:42 -040052 struct dso *next, *prev;
53
Rich Felker18c0e022012-10-31 21:27:48 -040054 Phdr *phdr;
55 int phnum;
Timo Teräs87691962014-03-25 20:59:50 +020056 size_t phentsize;
Rich Felker3ec8d292012-04-25 00:05:42 -040057 int refcnt;
Rich Felker51e2d832011-06-18 19:48:42 -040058 Sym *syms;
Rich Felker596d60c2011-06-18 22:52:01 -040059 uint32_t *hashtab;
Rich Felker2bd05a42012-08-25 17:13:28 -040060 uint32_t *ghashtab;
Rich Felker72482f92013-08-08 16:10:35 -040061 int16_t *versym;
Rich Felker51e2d832011-06-18 19:48:42 -040062 char *strings;
Rich Felker51e2d832011-06-18 19:48:42 -040063 unsigned char *map;
64 size_t map_len;
65 dev_t dev;
66 ino_t ino;
Rich Felker6343ac82012-06-09 21:20:44 -040067 signed char global;
Rich Felker700a8152012-02-07 20:29:29 -050068 char relocated;
69 char constructed;
Rich Felkera897a202013-08-23 13:56:30 -040070 char kernel_mapped;
Rich Felker709355e2013-08-23 11:15:40 -040071 struct dso **deps, *needed_by;
Rich Felkera897a202013-08-23 13:56:30 -040072 char *rpath_orig, *rpath;
Rich Felkerd56460c2015-11-12 15:50:26 -050073 struct tls_module tls;
74 size_t tls_id;
Timo Teräse13a2b82014-03-25 14:13:27 +020075 size_t relro_start, relro_end;
Rich Felkerdcd60372012-10-05 11:51:50 -040076 void **new_dtv;
77 unsigned char *new_tls;
Rich Felker56fbaa32015-03-03 22:50:02 -050078 volatile int new_dtv_idx, new_tls_idx;
Rich Felker9d15d5e2014-06-19 02:01:06 -040079 struct td_index *td_index;
Rich Felkerf4f77c02012-10-05 13:09:09 -040080 struct dso *fini_next;
Rich Felker5c1909a2012-05-27 16:01:44 -040081 char *shortname;
Rich Felker7a9669e2015-09-22 03:54:42 +000082#if DL_FDPIC
83 unsigned char *base;
84#else
85 struct fdpic_loadmap *loadmap;
86#endif
87 struct funcdesc {
88 void *addr;
89 size_t *got;
90 } *funcdescs;
91 size_t *got;
Rich Felker6b3d5e52011-06-26 17:39:17 -040092 char buf[];
Rich Felker51e2d832011-06-18 19:48:42 -040093};
94
Rich Felker9c748562012-10-04 22:48:33 -040095struct symdef {
96 Sym *sym;
97 struct dso *dso;
98};
99
Rich Felkerdab441a2014-03-24 16:57:11 -0400100int __init_tp(void *);
Rich Felker75863602013-07-21 03:00:54 -0400101void __init_libc(char **, char *);
Rich Felkerd56460c2015-11-12 15:50:26 -0500102void *__copy_tls(unsigned char *);
Rich Felker60872cf2012-04-24 18:07:59 -0400103
Rich Felker9e0a3172015-11-12 16:13:52 -0500104__attribute__((__visibility__("hidden")))
Rich Felker179ab5a2013-12-01 17:27:25 -0500105const char *__libc_get_version(void);
106
Rich Felkerbd679592015-03-06 13:27:08 -0500107static struct builtin_tls {
108 char c;
109 struct pthread pt;
110 void *space[16];
111} builtin_tls[1];
112#define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
113
Rich Felker9bbddf72015-05-25 23:33:59 -0400114#define ADDEND_LIMIT 4096
115static size_t *saved_addends, *apply_addends_to;
116
Rich Felkerf3ddd172015-04-13 02:56:26 -0400117static struct dso ldso;
118static struct dso *head, *tail, *fini_head;
Rich Felker709355e2013-08-23 11:15:40 -0400119static char *env_path, *sys_path;
Rich Felker18c0e022012-10-31 21:27:48 -0400120static unsigned long long gencnt;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400121static int runtime;
Rich Felker5c1909a2012-05-27 16:01:44 -0400122static int ldd_mode;
Rich Felker04109502012-08-18 16:00:23 -0400123static int ldso_fail;
Rich Felker4d07e552013-01-23 22:07:45 -0500124static int noload;
Rich Felker17276be2013-07-24 02:38:05 -0400125static jmp_buf *rtld_fail;
Rich Felker59ab43f2011-06-26 19:23:28 -0400126static pthread_rwlock_t lock;
Rich Felker3ec8d292012-04-25 00:05:42 -0400127static struct debug debug;
Rich Felkerd56460c2015-11-12 15:50:26 -0500128static struct tls_module *tls_tail;
Rich Felkerbd679592015-03-06 13:27:08 -0500129static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
Rich Felker9d15d5e2014-06-19 02:01:06 -0400130static size_t static_tls_cnt;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400131static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
Rich Felker7a9669e2015-09-22 03:54:42 +0000132static struct fdpic_loadmap *app_loadmap;
133static struct fdpic_dummy_loadmap app_dummy_loadmap;
Rich Felker3ec8d292012-04-25 00:05:42 -0400134
135struct debug *_dl_debug_addr = &debug;
Rich Felker51e2d832011-06-18 19:48:42 -0400136
Rich Felker19caa252015-11-19 20:28:08 -0500137__attribute__((__visibility__("hidden")))
138void (*const __init_array_start)(void)=0, (*const __fini_array_start)(void)=0;
139
140__attribute__((__visibility__("hidden")))
141extern void (*const __init_array_end)(void), (*const __fini_array_end)(void);
142
143weak_alias(__init_array_start, __init_array_end);
144weak_alias(__fini_array_start, __fini_array_end);
145
Rich Felkerf3ddd172015-04-13 02:56:26 -0400146static int dl_strcmp(const char *l, const char *r)
147{
148 for (; *l==*r && *l; l++, r++);
149 return *(unsigned char *)l - *(unsigned char *)r;
150}
151#define strcmp(l,r) dl_strcmp(l,r)
Rich Felker51e2d832011-06-18 19:48:42 -0400152
Rich Felker301335a2015-09-17 17:18:09 +0000153/* Compute load address for a virtual address in a given dso. */
Rich Felker78f43022015-09-22 20:20:39 +0000154#if DL_FDPIC
Rich Felker7a9669e2015-09-22 03:54:42 +0000155static void *laddr(const struct dso *p, size_t v)
156{
157 size_t j=0;
158 if (!p->loadmap) return p->base + v;
159 for (j=0; v-p->loadmap->segs[j].p_vaddr >= p->loadmap->segs[j].p_memsz; j++);
160 return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
161}
162#define fpaddr(p, v) ((void (*)())&(struct funcdesc){ \
163 laddr(p, v), (p)->got })
164#else
Rich Felker301335a2015-09-17 17:18:09 +0000165#define laddr(p, v) (void *)((p)->base + (v))
Rich Felker7a9669e2015-09-22 03:54:42 +0000166#define fpaddr(p, v) ((void (*)())laddr(p, v))
167#endif
Rich Felker301335a2015-09-17 17:18:09 +0000168
Rich Felker51e2d832011-06-18 19:48:42 -0400169static void decode_vec(size_t *v, size_t *a, size_t cnt)
170{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400171 size_t i;
172 for (i=0; i<cnt; i++) a[i] = 0;
173 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
174 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400175 a[v[0]] = v[1];
176 }
177}
178
Rich Felker2bd05a42012-08-25 17:13:28 -0400179static int search_vec(size_t *v, size_t *r, size_t key)
180{
181 for (; v[0]!=key; v+=2)
182 if (!v[0]) return 0;
183 *r = v[1];
184 return 1;
185}
186
187static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400188{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500189 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400190 uint_fast32_t h = 0;
191 while (*s) {
192 h = 16*h + *s++;
193 h ^= h>>24 & 0xf0;
194 }
195 return h & 0xfffffff;
196}
197
Rich Felker2bd05a42012-08-25 17:13:28 -0400198static uint32_t gnu_hash(const char *s0)
199{
200 const unsigned char *s = (void *)s0;
201 uint_fast32_t h = 5381;
202 for (; *s; s++)
Alexander Monakov66d45782015-06-28 02:48:30 +0300203 h += h*32 + *s;
Rich Felker2bd05a42012-08-25 17:13:28 -0400204 return h;
205}
206
207static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400208{
209 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400210 Sym *syms = dso->syms;
211 uint32_t *hashtab = dso->hashtab;
212 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400213 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400214 if ((!dso->versym || dso->versym[i] >= 0)
215 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400216 return syms+i;
217 }
218 return 0;
219}
220
Alexander Monakov8f08a582015-06-28 02:48:33 +0300221static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
Rich Felker2bd05a42012-08-25 17:13:28 -0400222{
Rich Felker2bd05a42012-08-25 17:13:28 -0400223 uint32_t nbuckets = hashtab[0];
224 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
Rich Felker72482f92013-08-08 16:10:35 -0400225 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400226
Rich Felker72482f92013-08-08 16:10:35 -0400227 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400228
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300229 uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400230
Rich Felker72482f92013-08-08 16:10:35 -0400231 for (h1 |= 1; ; i++) {
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300232 uint32_t h2 = *hashval++;
233 if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
234 && !strcmp(s, dso->strings + dso->syms[i].st_name))
235 return dso->syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400236 if (h2 & 1) break;
237 }
238
239 return 0;
240}
241
Alexander Monakov8f08a582015-06-28 02:48:33 +0300242static Sym *gnu_lookup_filtered(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s, uint32_t fofs, size_t fmask)
Alexander Monakov84389c62015-06-28 02:48:31 +0300243{
Alexander Monakov84389c62015-06-28 02:48:31 +0300244 const size_t *bloomwords = (const void *)(hashtab+4);
245 size_t f = bloomwords[fofs & (hashtab[2]-1)];
246 if (!(f & fmask)) return 0;
247
248 f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
249 if (!(f & 1)) return 0;
250
Alexander Monakov8f08a582015-06-28 02:48:33 +0300251 return gnu_lookup(h1, hashtab, dso, s);
Alexander Monakov84389c62015-06-28 02:48:31 +0300252}
253
Rich Felker9c748562012-10-04 22:48:33 -0400254#define OK_TYPES (1<<STT_NOTYPE | 1<<STT_OBJECT | 1<<STT_FUNC | 1<<STT_COMMON | 1<<STT_TLS)
Rich Felkere152ee92013-07-24 11:53:23 -0400255#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400256
Rich Felker2d8cc922014-06-30 01:18:14 -0400257#ifndef ARCH_SYM_REJECT_UND
258#define ARCH_SYM_REJECT_UND(s) 0
259#endif
260
Rich Felker9c748562012-10-04 22:48:33 -0400261static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400262{
Alexander Monakov8f08a582015-06-28 02:48:33 +0300263 uint32_t h = 0, gh, gho, *ght;
Alexander Monakov84389c62015-06-28 02:48:31 +0300264 size_t ghm = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400265 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400266 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400267 Sym *sym;
268 if (!dso->global) continue;
Alexander Monakov8f08a582015-06-28 02:48:33 +0300269 if ((ght = dso->ghashtab)) {
Alexander Monakov84389c62015-06-28 02:48:31 +0300270 if (!ghm) {
271 gh = gnu_hash(s);
272 int maskbits = 8 * sizeof ghm;
273 gho = gh / maskbits;
274 ghm = 1ul << gh % maskbits;
275 }
Alexander Monakov8f08a582015-06-28 02:48:33 +0300276 sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
Rich Felker2bd05a42012-08-25 17:13:28 -0400277 } else {
278 if (!h) h = sysv_hash(s);
279 sym = sysv_lookup(s, h, dso);
280 }
Rich Felkerbd174312012-10-06 01:36:11 -0400281 if (!sym) continue;
282 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400283 if (need_def || (sym->st_info&0xf) == STT_TLS
284 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400285 continue;
286 if (!sym->st_value)
287 if ((sym->st_info&0xf) != STT_TLS)
288 continue;
289 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
290 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
291
292 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
293 def.sym = sym;
294 def.dso = dso;
295 if (sym->st_info>>4 == STB_GLOBAL) break;
Rich Felker51e2d832011-06-18 19:48:42 -0400296 }
Rich Felker427173b2011-07-24 02:19:47 -0400297 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400298}
299
Rich Felker1b1cafa2015-04-17 23:29:45 -0400300__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400301ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
302
Rich Felker87d13a42012-08-05 02:49:02 -0400303static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400304{
Rich Felker87d13a42012-08-05 02:49:02 -0400305 unsigned char *base = dso->base;
306 Sym *syms = dso->syms;
307 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400308 Sym *sym;
309 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400310 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400311 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400312 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400313 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400314 size_t *reloc_addr;
315 size_t sym_val;
316 size_t tls_val;
317 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400318 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
319
320 if (dso == &ldso) {
321 /* Only ldso's REL table needs addend saving/reuse. */
322 if (rel == apply_addends_to)
323 reuse_addends = 1;
324 skip_relative = 1;
325 }
Rich Felker51e2d832011-06-18 19:48:42 -0400326
327 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker7a9669e2015-09-22 03:54:42 +0000328 if (skip_relative && IS_RELATIVE(rel[1], dso->syms)) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400329 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400330 if (type == REL_NONE) continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400331 sym_index = R_SYM(rel[1]);
Rich Felkera735f532015-09-17 17:50:43 +0000332 reloc_addr = laddr(dso, rel[0]);
Rich Felker51e2d832011-06-18 19:48:42 -0400333 if (sym_index) {
334 sym = syms + sym_index;
335 name = strings + sym->st_name;
Rich Felkeradf94c12014-06-18 02:44:02 -0400336 ctx = type==REL_COPY ? head->next : head;
Rich Felker7a9669e2015-09-22 03:54:42 +0000337 def = (sym->st_info&0xf) == STT_SECTION
338 ? (struct symdef){ .dso = dso, .sym = sym }
339 : find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500340 if (!def.sym && (sym->st_shndx != SHN_UNDEF
341 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400342 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400343 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400344 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400345 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400346 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400347 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400348 sym = 0;
349 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400350 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400351 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400352
Rich Felker9bbddf72015-05-25 23:33:59 -0400353 if (stride > 2) {
354 addend = rel[2];
355 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
356 addend = 0;
357 } else if (reuse_addends) {
358 /* Save original addend in stage 2 where the dso
359 * chain consists of just ldso; otherwise read back
360 * saved addend since the inline one was clobbered. */
361 if (head==&ldso)
362 saved_addends[save_slot] = *reloc_addr;
363 addend = saved_addends[save_slot++];
364 } else {
365 addend = *reloc_addr;
366 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400367
Rich Felkera735f532015-09-17 17:50:43 +0000368 sym_val = def.sym ? (size_t)laddr(def.dso, def.sym->st_value) : 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400369 tls_val = def.sym ? def.sym->st_value : 0;
370
371 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400372 case REL_NONE:
373 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400374 case REL_OFFSET:
375 addend -= (size_t)reloc_addr;
376 case REL_SYMBOLIC:
377 case REL_GOT:
378 case REL_PLT:
379 *reloc_addr = sym_val + addend;
380 break;
381 case REL_RELATIVE:
382 *reloc_addr = (size_t)base + addend;
383 break;
384 case REL_SYM_OR_REL:
385 if (sym) *reloc_addr = sym_val + addend;
386 else *reloc_addr = (size_t)base + addend;
387 break;
388 case REL_COPY:
389 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
390 break;
391 case REL_OFFSET32:
392 *(uint32_t *)reloc_addr = sym_val + addend
393 - (size_t)reloc_addr;
394 break;
Rich Felker7a9669e2015-09-22 03:54:42 +0000395 case REL_FUNCDESC:
396 *reloc_addr = def.sym ? (size_t)(def.dso->funcdescs
397 + (def.sym - def.dso->syms)) : 0;
398 break;
399 case REL_FUNCDESC_VAL:
400 if ((sym->st_info&0xf) == STT_SECTION) *reloc_addr += sym_val;
401 else *reloc_addr = sym_val;
402 reloc_addr[1] = def.sym ? (size_t)def.dso->got : 0;
403 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400404 case REL_DTPMOD:
405 *reloc_addr = def.dso->tls_id;
406 break;
407 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000408 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400409 break;
410#ifdef TLS_ABOVE_TP
411 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500412 *reloc_addr = tls_val + def.dso->tls.offset + TPOFF_K + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400413 break;
414#else
415 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500416 *reloc_addr = tls_val - def.dso->tls.offset + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400417 break;
418 case REL_TPOFF_NEG:
Rich Felkerd56460c2015-11-12 15:50:26 -0500419 *reloc_addr = def.dso->tls.offset - tls_val + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400420 break;
421#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400422 case REL_TLSDESC:
423 if (stride<3) addend = reloc_addr[1];
424 if (runtime && def.dso->tls_id >= static_tls_cnt) {
425 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400426 if (!new) {
427 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400428 "Error relocating %s: cannot allocate TLSDESC for %s",
429 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400430 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400431 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400432 new->next = dso->td_index;
433 dso->td_index = new;
434 new->args[0] = def.dso->tls_id;
435 new->args[1] = tls_val + addend;
436 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
437 reloc_addr[1] = (size_t)new;
438 } else {
439 reloc_addr[0] = (size_t)__tlsdesc_static;
440#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -0500441 reloc_addr[1] = tls_val + def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400442 + TPOFF_K + addend;
443#else
Rich Felkerd56460c2015-11-12 15:50:26 -0500444 reloc_addr[1] = tls_val - def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400445 + addend;
446#endif
447 }
448 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400449 default:
450 error("Error relocating %s: unsupported relocation type %d",
451 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400452 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400453 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400454 }
Rich Felker51e2d832011-06-18 19:48:42 -0400455 }
456}
457
Rich Felker6717e622011-06-28 19:40:14 -0400458/* A huge hack: to make up for the wastefulness of shared libraries
459 * needing at least a page of dirty memory even if they have no global
460 * data, we reclaim the gaps at the beginning and end of writable maps
461 * and "donate" them to the heap by setting up minimal malloc
462 * structures and then freeing them. */
463
Timo Teräse13a2b82014-03-25 14:13:27 +0200464static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400465{
466 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200467 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
468 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400469 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
470 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
471 if (start>end || end-start < 4*sizeof(size_t)) return;
Rich Felker301335a2015-09-17 17:18:09 +0000472 a = laddr(dso, start);
473 z = laddr(dso, end);
Rich Felker6717e622011-06-28 19:40:14 -0400474 a[-2] = 1;
475 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
476 z[1] = 1;
477 free(a);
478}
479
Timo Teräs87691962014-03-25 20:59:50 +0200480static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400481{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400482 Phdr *ph = dso->phdr;
483 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200484
Rich Felker7a9669e2015-09-22 03:54:42 +0000485 if (DL_FDPIC) return; // FIXME
Rich Felkerfa7248c2014-03-25 16:21:50 -0400486 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400487 if (ph->p_type!=PT_LOAD) continue;
488 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200489 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
490 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400491 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
492 }
493}
494
Rich Felkerce337da2015-06-23 04:03:42 +0000495static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
496{
Rich Felker9439ebd2015-11-11 17:34:17 -0500497 static int no_map_fixed;
498 char *q;
499 if (!no_map_fixed) {
500 q = mmap(p, n, prot, flags|MAP_FIXED, fd, off);
501 if (!DL_NOMMU_SUPPORT || q != MAP_FAILED || errno != EINVAL)
502 return q;
503 no_map_fixed = 1;
504 }
Rich Felkerce337da2015-06-23 04:03:42 +0000505 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
506 if (flags & MAP_ANONYMOUS) {
507 memset(p, 0, n);
508 return p;
509 }
510 ssize_t r;
511 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
512 for (q=p; n; q+=r, off+=r, n-=r) {
513 r = read(fd, q, n);
514 if (r < 0 && errno != EINTR) return MAP_FAILED;
515 if (!r) {
516 memset(q, 0, n);
517 break;
518 }
519 }
520 return p;
521}
522
Rich Felkereaf7ab62015-09-22 19:12:48 +0000523static void unmap_library(struct dso *dso)
524{
525 if (dso->loadmap) {
526 size_t i;
527 for (i=0; i<dso->loadmap->nsegs; i++) {
528 if (!dso->loadmap->segs[i].p_memsz)
529 continue;
530 munmap((void *)dso->loadmap->segs[i].addr,
531 dso->loadmap->segs[i].p_memsz);
532 }
533 free(dso->loadmap);
534 } else if (dso->map && dso->map_len) {
535 munmap(dso->map, dso->map_len);
536 }
537}
538
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400539static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400540{
Rich Felker59633c72011-06-25 12:26:08 -0400541 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400542 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400543 size_t phsize;
544 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
545 size_t this_min, this_max;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000546 size_t nsegs = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400547 off_t off_start;
548 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400549 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400550 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400551 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400552 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400553 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400554 size_t i;
555
556 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400557 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400558 if (l<0) return 0;
559 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
560 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400561 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400562 if (phsize > sizeof buf - sizeof *eh) {
563 allocated_buf = malloc(phsize);
564 if (!allocated_buf) return 0;
565 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
566 if (l < 0) goto error;
567 if (l != phsize) goto noexec;
568 ph = ph0 = allocated_buf;
569 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400570 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400571 if (l < 0) goto error;
572 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400573 ph = ph0 = (void *)(buf + 1);
574 } else {
575 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400576 }
Rich Felker51e2d832011-06-18 19:48:42 -0400577 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400578 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400579 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400580 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400581 tls_image = ph->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -0500582 dso->tls.align = ph->p_align;
583 dso->tls.len = ph->p_filesz;
584 dso->tls.size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200585 } else if (ph->p_type == PT_GNU_RELRO) {
586 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
587 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400588 }
Rich Felker51e2d832011-06-18 19:48:42 -0400589 if (ph->p_type != PT_LOAD) continue;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000590 nsegs++;
Rich Felker51e2d832011-06-18 19:48:42 -0400591 if (ph->p_vaddr < addr_min) {
592 addr_min = ph->p_vaddr;
593 off_start = ph->p_offset;
594 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
595 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
596 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
597 }
598 if (ph->p_vaddr+ph->p_memsz > addr_max) {
599 addr_max = ph->p_vaddr+ph->p_memsz;
600 }
601 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400602 if (!dyn) goto noexec;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000603 if (DL_FDPIC && !(eh->e_flags & FDPIC_CONSTDISP_FLAG)) {
604 dso->loadmap = calloc(1, sizeof *dso->loadmap
605 + nsegs * sizeof *dso->loadmap->segs);
606 if (!dso->loadmap) goto error;
607 dso->loadmap->nsegs = nsegs;
608 for (ph=ph0, i=0; i<nsegs; ph=(void *)((char *)ph+eh->e_phentsize)) {
609 if (ph->p_type != PT_LOAD) continue;
610 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
611 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
612 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
613 map = mmap(0, ph->p_memsz + (ph->p_vaddr & PAGE_SIZE-1),
Rich Felker5fe38512015-11-15 21:28:41 -0500614 prot, MAP_PRIVATE,
Rich Felkereaf7ab62015-09-22 19:12:48 +0000615 fd, ph->p_offset & -PAGE_SIZE);
616 if (map == MAP_FAILED) {
617 unmap_library(dso);
618 goto error;
619 }
620 dso->loadmap->segs[i].addr = (size_t)map +
621 (ph->p_vaddr & PAGE_SIZE-1);
622 dso->loadmap->segs[i].p_vaddr = ph->p_vaddr;
623 dso->loadmap->segs[i].p_memsz = ph->p_memsz;
624 i++;
Rich Felkerfead7e32015-10-28 21:45:31 -0400625 if (prot & PROT_WRITE) {
626 size_t brk = (ph->p_vaddr & PAGE_SIZE-1)
627 + ph->p_filesz;
628 size_t pgbrk = brk + PAGE_SIZE-1 & -PAGE_SIZE;
629 size_t pgend = brk + ph->p_memsz - ph->p_filesz
630 + PAGE_SIZE-1 & -PAGE_SIZE;
631 if (pgend > pgbrk && mmap_fixed(map+pgbrk,
632 pgend-pgbrk, prot,
633 MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS,
634 -1, off_start) == MAP_FAILED)
635 goto error;
636 memset(map + brk, 0, pgbrk-brk);
637 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000638 }
639 map = (void *)dso->loadmap->segs[0].addr;
640 map_len = 0;
641 goto done_mapping;
642 }
Rich Felker51e2d832011-06-18 19:48:42 -0400643 addr_max += PAGE_SIZE-1;
644 addr_max &= -PAGE_SIZE;
645 addr_min &= -PAGE_SIZE;
646 off_start &= -PAGE_SIZE;
647 map_len = addr_max - addr_min + off_start;
648 /* The first time, we map too much, possibly even more than
649 * the length of the file. This is okay because we will not
650 * use the invalid part; we just need to reserve the right
651 * amount of virtual address space to map over later. */
Rich Felker9439ebd2015-11-11 17:34:17 -0500652 map = DL_NOMMU_SUPPORT
653 ? mmap((void *)addr_min, map_len, PROT_READ|PROT_WRITE|PROT_EXEC,
654 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
655 : mmap((void *)addr_min, map_len, prot,
656 MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400657 if (map==MAP_FAILED) goto error;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000658 dso->map = map;
659 dso->map_len = map_len;
Rich Felker339516a2013-07-31 14:42:08 -0400660 /* If the loaded file is not relocatable and the requested address is
661 * not available, then the load operation must fail. */
662 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
663 errno = EBUSY;
664 goto error;
665 }
Rich Felker51e2d832011-06-18 19:48:42 -0400666 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400667 dso->phdr = 0;
668 dso->phnum = 0;
669 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400670 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400671 /* Check if the programs headers are in this load segment, and
672 * if so, record the address for use by dl_iterate_phdr. */
673 if (!dso->phdr && eh->e_phoff >= ph->p_offset
674 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
675 dso->phdr = (void *)(base + ph->p_vaddr
676 + (eh->e_phoff-ph->p_offset));
677 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200678 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400679 }
Rich Felker51e2d832011-06-18 19:48:42 -0400680 /* Reuse the existing mapping for the lowest-address LOAD */
Rich Felker9439ebd2015-11-11 17:34:17 -0500681 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min && !DL_NOMMU_SUPPORT)
682 continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400683 this_min = ph->p_vaddr & -PAGE_SIZE;
684 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
685 off_start = ph->p_offset & -PAGE_SIZE;
686 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
687 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
688 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000689 if (mmap_fixed(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400690 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400691 if (ph->p_memsz > ph->p_filesz) {
692 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
693 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
694 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000695 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)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400696 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400697 }
698 }
Rich Felker9f174132011-06-29 00:29:08 -0400699 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
700 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000701 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
702 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400703 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400704 break;
705 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000706done_mapping:
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400707 dso->base = base;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000708 dso->dynv = laddr(dso, dyn);
Rich Felkerd56460c2015-11-12 15:50:26 -0500709 if (dso->tls.size) dso->tls.image = laddr(dso, tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200710 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400711 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400712 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400713noexec:
714 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400715error:
Rich Felkereaf7ab62015-09-22 19:12:48 +0000716 if (map!=MAP_FAILED) unmap_library(dso);
Rich Felkerd5884a52013-08-02 09:56:49 -0400717 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400718 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400719}
720
Rich Felker8c203ea2013-04-20 11:51:58 -0400721static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400722{
Rich Felker8c203ea2013-04-20 11:51:58 -0400723 size_t l;
724 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400725 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400726 s += strspn(s, ":\n");
727 l = strcspn(s, ":\n");
728 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400729 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
730 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
731 switch (errno) {
732 case ENOENT:
733 case ENOTDIR:
734 case EACCES:
735 case ENAMETOOLONG:
736 break;
737 default:
738 /* Any negative value but -1 will inhibit
739 * futher path search. */
740 return -2;
741 }
742 }
Rich Felker49388f32011-06-25 17:49:16 -0400743 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400744 }
Rich Felker568b8072011-06-25 01:56:34 -0400745}
746
Rich Felkera897a202013-08-23 13:56:30 -0400747static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
748{
749 size_t n, l;
750 const char *s, *t, *origin;
751 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400752 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400753 if (!strchr(p->rpath_orig, '$')) {
754 p->rpath = p->rpath_orig;
755 return 0;
756 }
757 n = 0;
758 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400759 while ((t=strchr(s, '$'))) {
760 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400761 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400762 s = t+1;
763 n++;
764 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400765 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400766
767 if (p->kernel_mapped) {
768 /* $ORIGIN searches cannot be performed for the main program
769 * when it is suid/sgid/AT_SECURE. This is because the
770 * pathname is under the control of the caller of execve.
771 * For libraries, however, $ORIGIN can be processed safely
772 * since the library's pathname came from a trusted source
773 * (either system paths or a call to dlopen). */
774 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400775 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400776 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400777 if (l == -1) switch (errno) {
778 case ENOENT:
779 case ENOTDIR:
780 case EACCES:
781 break;
782 default:
Rich Felkera897a202013-08-23 13:56:30 -0400783 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400784 }
785 if (l >= buf_size)
786 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400787 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400788 origin = buf;
789 } else {
790 origin = p->name;
791 }
792 t = strrchr(origin, '/');
793 l = t ? t-origin : 0;
794 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
795 if (!p->rpath) return -1;
796
797 d = p->rpath;
798 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400799 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400800 memcpy(d, s, t-s);
801 d += t-s;
802 memcpy(d, origin, l);
803 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400804 /* It was determined previously that the '$' is followed
805 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400806 s = t + 7 + 2*(t[1]=='{');
807 }
808 strcpy(d, s);
809 return 0;
810}
811
Rich Felkerc82f4a32012-01-23 00:57:38 -0500812static void decode_dyn(struct dso *p)
813{
Rich Felkerf4f95622015-04-13 22:38:18 -0400814 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500815 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felker301335a2015-09-17 17:18:09 +0000816 p->syms = laddr(p, dyn[DT_SYMTAB]);
817 p->strings = laddr(p, dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400818 if (dyn[0]&(1<<DT_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000819 p->hashtab = laddr(p, dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400820 if (dyn[0]&(1<<DT_RPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000821 p->rpath_orig = p->strings + dyn[DT_RPATH];
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500822 if (dyn[0]&(1<<DT_RUNPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000823 p->rpath_orig = p->strings + dyn[DT_RUNPATH];
Rich Felker7a9669e2015-09-22 03:54:42 +0000824 if (dyn[0]&(1<<DT_PLTGOT))
825 p->got = laddr(p, dyn[DT_PLTGOT]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400826 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000827 p->ghashtab = laddr(p, *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400828 if (search_vec(p->dynv, dyn, DT_VERSYM))
Rich Felker301335a2015-09-17 17:18:09 +0000829 p->versym = laddr(p, *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500830}
831
Rich Felker39581442015-09-21 21:47:50 +0000832static size_t count_syms(struct dso *p)
833{
834 if (p->hashtab) return p->hashtab[1];
835
836 size_t nsym, i;
837 uint32_t *buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
838 uint32_t *hashval;
839 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
840 if (buckets[i] > nsym)
841 nsym = buckets[i];
842 }
843 if (nsym) {
844 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]);
845 do nsym++;
846 while (!(*hashval++ & 1));
847 }
848 return nsym;
849}
850
Rich Felker7a9669e2015-09-22 03:54:42 +0000851static void *dl_mmap(size_t n)
852{
853 void *p;
854 int prot = PROT_READ|PROT_WRITE, flags = MAP_ANONYMOUS|MAP_PRIVATE;
855#ifdef SYS_mmap2
856 p = (void *)__syscall(SYS_mmap2, 0, n, prot, flags, -1, 0);
857#else
858 p = (void *)__syscall(SYS_mmap, 0, n, prot, flags, -1, 0);
859#endif
860 return p == MAP_FAILED ? 0 : p;
861}
862
863static void makefuncdescs(struct dso *p)
864{
865 static int self_done;
866 size_t nsym = count_syms(p);
867 size_t i, size = nsym * sizeof(*p->funcdescs);
868
869 if (!self_done) {
870 p->funcdescs = dl_mmap(size);
871 self_done = 1;
872 } else {
873 p->funcdescs = malloc(size);
874 }
875 if (!p->funcdescs) {
876 if (!runtime) a_crash();
877 error("Error allocating function descriptors for %s", p->name);
878 longjmp(*rtld_fail, 1);
879 }
880 for (i=0; i<nsym; i++) {
881 if ((p->syms[i].st_info&0xf)==STT_FUNC && p->syms[i].st_shndx) {
882 p->funcdescs[i].addr = laddr(p, p->syms[i].st_value);
883 p->funcdescs[i].got = p->got;
884 } else {
885 p->funcdescs[i].addr = 0;
886 p->funcdescs[i].got = 0;
887 }
888 }
889}
890
Rich Felker709355e2013-08-23 11:15:40 -0400891static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400892{
Rich Felker5c1909a2012-05-27 16:01:44 -0400893 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400894 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500895 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400896 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400897 int fd;
898 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400899 size_t alloc_size;
900 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400901 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400902
Rich Felker59549312014-07-11 00:29:44 -0400903 if (!*name) {
904 errno = EINVAL;
905 return 0;
906 }
907
Rich Felker51e2d832011-06-18 19:48:42 -0400908 /* Catch and block attempts to reload the implementation itself */
909 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
910 static const char *rp, reserved[] =
911 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
912 char *z = strchr(name, '.');
913 if (z) {
914 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400915 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400916 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400917 if (ldd_mode) {
918 /* Track which names have been resolved
919 * and only report each one once. */
920 static unsigned reported;
921 unsigned mask = 1U<<(rp-reserved);
922 if (!(reported & mask)) {
923 reported |= mask;
924 dprintf(1, "\t%s => %s (%p)\n",
Rich Felkerf3ddd172015-04-13 02:56:26 -0400925 name, ldso.name,
926 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400927 }
928 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400929 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400930 }
931 }
932 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400933 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400934 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400935 if (!ldso.prev) {
936 tail->next = &ldso;
937 ldso.prev = tail;
938 tail = ldso.next ? ldso.next : &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400939 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400940 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400941 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400942 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400943 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400944 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400945 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400946 /* Search for the name to see if it's already loaded */
947 for (p=head->next; p; p=p->next) {
948 if (p->shortname && !strcmp(p->shortname, name)) {
949 p->refcnt++;
950 return p;
951 }
952 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400953 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400954 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400955 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400956 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
957 if (fixup_rpath(p, buf, sizeof buf) < 0)
958 fd = -2; /* Inhibit further search. */
959 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400960 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400961 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400962 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400963 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400964 char *prefix = 0;
965 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400966 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400967 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400968 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400969 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400970 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400971 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400972 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400973 }
974 if (!prefix) {
975 prefix = "";
976 prefix_len = 0;
977 }
978 char etc_ldso_path[prefix_len + 1
979 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
980 snprintf(etc_ldso_path, sizeof etc_ldso_path,
981 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
982 (int)prefix_len, prefix);
983 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400984 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400985 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400986 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400987 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500988 }
Rich Felker568b8072011-06-25 01:56:34 -0400989 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400990 } else if (errno != ENOENT) {
991 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400992 }
993 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500994 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
995 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400996 }
Rich Felker0420b872012-07-11 01:41:20 -0400997 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400998 }
999 if (fd < 0) return 0;
1000 if (fstat(fd, &st) < 0) {
1001 close(fd);
1002 return 0;
1003 }
1004 for (p=head->next; p; p=p->next) {
1005 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -04001006 /* If this library was previously loaded with a
1007 * pathname but a search found the same inode,
1008 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -04001009 if (!p->shortname && pathname != name)
1010 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -04001011 close(fd);
1012 p->refcnt++;
1013 return p;
1014 }
1015 }
Rich Felker4d07e552013-01-23 22:07:45 -05001016 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001017 close(fd);
1018 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -04001019
1020 /* Allocate storage for the new DSO. When there is TLS, this
1021 * storage must include a reservation for all pre-existing
1022 * threads to obtain copies of both the new TLS, and an
1023 * extended DTV capable of storing an additional slot for
1024 * the newly-loaded DSO. */
1025 alloc_size = sizeof *p + strlen(pathname) + 1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001026 if (runtime && temp_dso.tls.image) {
1027 size_t per_th = temp_dso.tls.size + temp_dso.tls.align
Rich Felkerdcd60372012-10-05 11:51:50 -04001028 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -04001029 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -04001030 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
1031 else alloc_size += n_th * per_th;
1032 }
1033 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -04001034 if (!p) {
Rich Felkereaf7ab62015-09-22 19:12:48 +00001035 unmap_library(&temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001036 return 0;
1037 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001038 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001039 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -04001040 p->dev = st.st_dev;
1041 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -04001042 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -04001043 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001044 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -04001045 strcpy(p->name, pathname);
1046 /* Add a shortname only if name arg was not an explicit pathname. */
1047 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001048 if (p->tls.image) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001049 p->tls_id = ++tls_cnt;
Rich Felkerd56460c2015-11-12 15:50:26 -05001050 tls_align = MAXP2(tls_align, p->tls.align);
Rich Felker9ec42832012-10-15 18:51:53 -04001051#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -05001052 p->tls.offset = tls_offset + ( (tls_align-1) &
1053 -(tls_offset + (uintptr_t)p->tls.image) );
1054 tls_offset += p->tls.size;
Rich Felker9ec42832012-10-15 18:51:53 -04001055#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001056 tls_offset += p->tls.size + p->tls.align - 1;
1057 tls_offset -= (tls_offset + (uintptr_t)p->tls.image)
1058 & (p->tls.align-1);
1059 p->tls.offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -04001060#endif
Rich Felkerdcd60372012-10-05 11:51:50 -04001061 p->new_dtv = (void *)(-sizeof(size_t) &
1062 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
1063 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
Rich Felkerd56460c2015-11-12 15:50:26 -05001064 if (tls_tail) tls_tail->next = &p->tls;
1065 else libc.tls_head = &p->tls;
1066 tls_tail = &p->tls;
Rich Felkerdcd60372012-10-05 11:51:50 -04001067 }
Rich Felker51e2d832011-06-18 19:48:42 -04001068
1069 tail->next = p;
1070 p->prev = tail;
1071 tail = p;
1072
Rich Felker7a9669e2015-09-22 03:54:42 +00001073 if (DL_FDPIC) makefuncdescs(p);
1074
Rich Felker1d7c4f82012-12-15 23:34:08 -05001075 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -04001076
Rich Felker51e2d832011-06-18 19:48:42 -04001077 return p;
1078}
1079
1080static void load_deps(struct dso *p)
1081{
Rich Felker59ab43f2011-06-26 19:23:28 -04001082 size_t i, ndeps=0;
1083 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -04001084 for (; p; p=p->next) {
1085 for (i=0; p->dynv[i]; i+=2) {
1086 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -04001087 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001088 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001089 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -04001090 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001091 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -04001092 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001093 }
Rich Felker59ab43f2011-06-26 19:23:28 -04001094 if (runtime) {
1095 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -04001096 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -04001097 tmp[ndeps++] = dep;
1098 tmp[ndeps] = 0;
1099 *deps = tmp;
1100 }
Rich Felker51e2d832011-06-18 19:48:42 -04001101 }
1102 }
1103}
1104
Rich Felker2719cc82011-08-16 00:24:36 -04001105static void load_preload(char *s)
1106{
1107 int tmp;
1108 char *z;
1109 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -04001110 for ( ; *s && (isspace(*s) || *s==':'); s++);
1111 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -04001112 tmp = *z;
1113 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -04001114 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -04001115 *z = tmp;
1116 }
1117}
1118
Rich Felker59ab43f2011-06-26 19:23:28 -04001119static void make_global(struct dso *p)
1120{
1121 for (; p; p=p->next) p->global = 1;
1122}
1123
Rich Felkerf3ddd172015-04-13 02:56:26 -04001124static void do_mips_relocs(struct dso *p, size_t *got)
1125{
1126 size_t i, j, rel[2];
1127 unsigned char *base = p->base;
1128 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -04001129 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001130 got += i;
1131 } else {
1132 while (i--) *got++ += (size_t)base;
1133 }
1134 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
1135 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
1136 Sym *sym = p->syms + j;
1137 rel[0] = (unsigned char *)got - base;
1138 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
1139 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
1140 do_relocs(p, rel, sizeof rel, 2);
1141 }
1142}
1143
Rich Felker51e2d832011-06-18 19:48:42 -04001144static void reloc_all(struct dso *p)
1145{
Rich Felkerf4f95622015-04-13 22:38:18 -04001146 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -04001147 for (; p; p=p->next) {
1148 if (p->relocated) continue;
1149 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001150 if (NEED_MIPS_GOT_RELOCS)
Rich Felker2a547332015-09-17 19:45:45 +00001151 do_mips_relocs(p, laddr(p, dyn[DT_PLTGOT]));
1152 do_relocs(p, laddr(p, dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
Rich Felker87d13a42012-08-05 02:49:02 -04001153 2+(dyn[DT_PLTREL]==DT_RELA));
Rich Felker2a547332015-09-17 19:45:45 +00001154 do_relocs(p, laddr(p, dyn[DT_REL]), dyn[DT_RELSZ], 2);
1155 do_relocs(p, laddr(p, dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +02001156
Rich Felkerf3ddd172015-04-13 02:56:26 -04001157 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker2a547332015-09-17 19:45:45 +00001158 mprotect(laddr(p, p->relro_start), p->relro_end-p->relro_start, PROT_READ)
Rich Felker75eceb32015-06-17 17:21:46 +00001159 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001160 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +02001161 p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001162 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +02001163 }
1164
Rich Felker368ba4a2011-06-25 00:18:19 -04001165 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -04001166 }
1167}
1168
Timo Teräs87691962014-03-25 20:59:50 +02001169static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -05001170{
Timo Teräs87691962014-03-25 20:59:50 +02001171 size_t min_addr = -1, max_addr = 0, cnt;
1172 Phdr *ph = p->phdr;
1173 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
1174 if (ph->p_type == PT_DYNAMIC) {
Rich Felker301335a2015-09-17 17:18:09 +00001175 p->dynv = laddr(p, ph->p_vaddr);
Timo Teräs87691962014-03-25 20:59:50 +02001176 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +02001177 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
1178 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
1179 }
Rich Felkerf419bcb2012-08-26 21:09:26 -04001180 if (ph->p_type != PT_LOAD) continue;
1181 if (ph->p_vaddr < min_addr)
1182 min_addr = ph->p_vaddr;
1183 if (ph->p_vaddr+ph->p_memsz > max_addr)
1184 max_addr = ph->p_vaddr+ph->p_memsz;
1185 }
1186 min_addr &= -PAGE_SIZE;
1187 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
1188 p->map = p->base + min_addr;
1189 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +02001190 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001191}
1192
Rich Felkerad1cd432015-11-11 22:08:23 -05001193void __libc_exit_fini()
Rich Felkerf4f77c02012-10-05 13:09:09 -04001194{
1195 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -04001196 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -04001197 for (p=fini_head; p; p=p->fini_next) {
1198 if (!p->constructed) continue;
1199 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001200 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
1201 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001202 size_t *fn = (size_t *)laddr(p, dyn[DT_FINI_ARRAY])+n;
Rich Felker1b413572013-07-21 02:35:46 -04001203 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -04001204 }
Rich Felker1da53da2013-07-22 14:08:33 -04001205#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001206 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felker7a9669e2015-09-22 03:54:42 +00001207 fpaddr(p, dyn[DT_FINI])();
Rich Felker1da53da2013-07-22 14:08:33 -04001208#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001209 }
1210}
1211
Rich Felker4ce3cb52012-02-06 14:39:09 -05001212static void do_init_fini(struct dso *p)
1213{
Rich Felkerf4f95622015-04-13 22:38:18 -04001214 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001215 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001216 /* Allow recursive calls that arise when a library calls
1217 * dlopen from one of its constructors, but block any
1218 * other threads until all ctors have finished. */
1219 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001220 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001221 if (p->constructed) continue;
1222 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001223 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001224 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001225 p->fini_next = fini_head;
1226 fini_head = p;
1227 }
Rich Felker1da53da2013-07-22 14:08:33 -04001228#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001229 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker7a9669e2015-09-22 03:54:42 +00001230 fpaddr(p, dyn[DT_INIT])();
Rich Felker1da53da2013-07-22 14:08:33 -04001231#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001232 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1233 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001234 size_t *fn = laddr(p, dyn[DT_INIT_ARRAY]);
Rich Felkere69ae842013-07-20 18:26:17 -04001235 while (n--) ((void (*)(void))*fn++)();
1236 }
Rich Felker509b50e2013-06-29 02:24:02 -04001237 if (!need_locking && libc.threads_minus_1) {
1238 need_locking = 1;
1239 pthread_mutex_lock(&init_fini_lock);
1240 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001241 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001242 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001243}
1244
Rich Felkerc87a5212015-09-22 20:24:28 +00001245void __libc_start_init(void)
1246{
1247 do_init_fini(tail);
1248}
1249
Rich Felker326e1262015-04-17 23:23:05 -04001250static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001251{
1252}
1253
Rich Felker326e1262015-04-17 23:23:05 -04001254weak_alias(dl_debug_state, _dl_debug_state);
1255
Rich Felkerd56460c2015-11-12 15:50:26 -05001256void __init_tls(size_t *auxv)
Rich Felker7c6c2902013-08-03 16:27:30 -04001257{
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001258}
1259
Rich Felkerbc081f62015-04-14 10:42:44 -04001260__attribute__((__visibility__("hidden")))
Rich Felker5ba238e2014-06-19 02:59:44 -04001261void *__tls_get_new(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001262{
1263 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001264
1265 /* Block signals to make accessing new TLS async-signal-safe */
1266 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001267 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001268 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001269 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001270 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001271 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001272
1273 /* This is safe without any locks held because, if the caller
1274 * is able to request the Nth entry of the DTV, the DSO list
1275 * must be valid at least that far out and it was synchronized
1276 * at program startup or by an already-completed call to dlopen. */
1277 struct dso *p;
1278 for (p=head; p->tls_id != v[0]; p=p->next);
1279
1280 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001281 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001282 void **newdtv = p->new_dtv +
Szabolcs Nagy12978ac2015-11-26 19:59:46 +01001283 (v[0]+1)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001284 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001285 ((size_t)self->dtv[0]+1) * sizeof(void *));
1286 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001287 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001288 }
1289
Rich Felkere75b16c2014-06-19 02:16:57 -04001290 /* Get new TLS memory from all new DSOs up to the requested one */
1291 unsigned char *mem;
1292 for (p=head; ; p=p->next) {
1293 if (!p->tls_id || self->dtv[p->tls_id]) continue;
Rich Felkerd56460c2015-11-12 15:50:26 -05001294 mem = p->new_tls + (p->tls.size + p->tls.align)
Rich Felkere75b16c2014-06-19 02:16:57 -04001295 * a_fetch_add(&p->new_tls_idx,1);
Rich Felkerd56460c2015-11-12 15:50:26 -05001296 mem += ((uintptr_t)p->tls.image - (uintptr_t)mem)
1297 & (p->tls.align-1);
Rich Felkere75b16c2014-06-19 02:16:57 -04001298 self->dtv[p->tls_id] = mem;
Rich Felkerd56460c2015-11-12 15:50:26 -05001299 memcpy(mem, p->tls.image, p->tls.len);
Rich Felkere75b16c2014-06-19 02:16:57 -04001300 if (p->tls_id == v[0]) break;
1301 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001302 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001303 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001304}
1305
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001306static void update_tls_size()
1307{
Rich Felkerd56460c2015-11-12 15:50:26 -05001308 libc.tls_cnt = tls_cnt;
1309 libc.tls_align = tls_align;
Rich Felker9ec42832012-10-15 18:51:53 -04001310 libc.tls_size = ALIGN(
1311 (1+tls_cnt) * sizeof(void *) +
1312 tls_offset +
1313 sizeof(struct pthread) +
1314 tls_align * 2,
1315 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001316}
1317
Rich Felkerf3ddd172015-04-13 02:56:26 -04001318/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1319 * following stage 2 and stage 3 functions via primitive symbolic lookup
1320 * since it does not have access to their addresses to begin with. */
1321
1322/* Stage 2 of the dynamic linker is called after relative relocations
1323 * have been processed. It can make function calls to static functions
1324 * and access string literals and static data, but cannot use extern
1325 * symbols. Its job is to perform symbolic relocations on the dynamic
1326 * linker itself, but some of the relocations performed may need to be
1327 * replaced later due to copy relocations in the main program. */
1328
Rich Felkerbc9b6ea2015-10-15 17:38:54 -04001329__attribute__((__visibility__("hidden")))
Rich Felker768b82c2015-05-25 19:15:17 -04001330void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001331{
Rich Felker7a9669e2015-09-22 03:54:42 +00001332 if (DL_FDPIC) {
1333 void *p1 = (void *)sp[-2];
1334 void *p2 = (void *)sp[-1];
1335 if (!p1) {
1336 size_t *auxv, aux[AUX_CNT];
1337 for (auxv=sp+1+*sp+1; *auxv; auxv++); auxv++;
1338 decode_vec(auxv, aux, AUX_CNT);
1339 if (aux[AT_BASE]) ldso.base = (void *)aux[AT_BASE];
1340 else ldso.base = (void *)(aux[AT_PHDR] & -4096);
1341 }
1342 app_loadmap = p2 ? p1 : 0;
1343 ldso.loadmap = p2 ? p2 : p1;
1344 ldso.base = laddr(&ldso, 0);
1345 } else {
1346 ldso.base = base;
1347 }
1348 Ehdr *ehdr = (void *)ldso.base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001349 ldso.name = ldso.shortname = "libc.so";
1350 ldso.global = 1;
1351 ldso.phnum = ehdr->e_phnum;
Rich Felker7a9669e2015-09-22 03:54:42 +00001352 ldso.phdr = laddr(&ldso, ehdr->e_phoff);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001353 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001354 kernel_mapped_dso(&ldso);
1355 decode_dyn(&ldso);
1356
Rich Felker7a9669e2015-09-22 03:54:42 +00001357 if (DL_FDPIC) makefuncdescs(&ldso);
1358
Rich Felker9bbddf72015-05-25 23:33:59 -04001359 /* Prepare storage for to save clobbered REL addends so they
1360 * can be reused in stage 3. There should be very few. If
1361 * something goes wrong and there are a huge number, abort
1362 * instead of risking stack overflow. */
1363 size_t dyn[DYN_CNT];
1364 decode_vec(ldso.dynv, dyn, DYN_CNT);
Rich Felker2a547332015-09-17 19:45:45 +00001365 size_t *rel = laddr(&ldso, dyn[DT_REL]);
Rich Felker9bbddf72015-05-25 23:33:59 -04001366 size_t rel_size = dyn[DT_RELSZ];
1367 size_t symbolic_rel_cnt = 0;
1368 apply_addends_to = rel;
1369 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
Rich Felker7a9669e2015-09-22 03:54:42 +00001370 if (!IS_RELATIVE(rel[1], ldso.syms)) symbolic_rel_cnt++;
Rich Felker9bbddf72015-05-25 23:33:59 -04001371 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1372 size_t addends[symbolic_rel_cnt+1];
1373 saved_addends = addends;
1374
Rich Felkerf3ddd172015-04-13 02:56:26 -04001375 head = &ldso;
1376 reloc_all(&ldso);
1377
1378 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001379
1380 /* Call dynamic linker stage-3, __dls3, looking it up
1381 * symbolically as a barrier against moving the address
1382 * load across the above relocation processing. */
1383 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
Rich Felker7a9669e2015-09-22 03:54:42 +00001384 if (DL_FDPIC) ((stage3_func)&ldso.funcdescs[dls3_def.sym-ldso.syms])(sp);
1385 else ((stage3_func)laddr(&ldso, dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001386}
1387
1388/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1389 * fully functional. Its job is to load (if not already loaded) and
1390 * process dependencies and relocations for the main application and
1391 * transfer control to its entry point. */
1392
1393_Noreturn void __dls3(size_t *sp)
1394{
1395 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001396 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001397 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001398 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001399 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001400 int argc = *sp;
1401 char **argv = (void *)(sp+1);
1402 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001403 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001404
Rich Felker75ce4502015-06-07 20:55:23 +00001405 /* Find aux vector just past environ[] and use it to initialize
1406 * global data that may be needed before we can make syscalls. */
1407 __environ = envp;
1408 for (i=argc+1; argv[i]; i++);
1409 libc.auxv = auxv = (void *)(argv+i+1);
1410 decode_vec(auxv, aux, AUX_CNT);
1411 __hwcap = aux[AT_HWCAP];
1412 libc.page_size = aux[AT_PAGESZ];
1413 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1414 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1415
Rich Felker71f099c2015-04-13 18:40:52 -04001416 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1417 * use during dynamic linking. If possible it will also serve as the
1418 * thread pointer at runtime. */
1419 libc.tls_size = sizeof builtin_tls;
Rich Felkerd56460c2015-11-12 15:50:26 -05001420 libc.tls_align = tls_align;
Rich Felker71f099c2015-04-13 18:40:52 -04001421 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001422 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001423 }
Rich Felker51e2d832011-06-18 19:48:42 -04001424
Rich Felker568b8072011-06-25 01:56:34 -04001425 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001426 if (!libc.secure) {
1427 env_path = getenv("LD_LIBRARY_PATH");
1428 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001429 }
1430
Rich Felkerf3ddd172015-04-13 02:56:26 -04001431 /* If the main program was already loaded by the kernel,
1432 * AT_PHDR will point to some location other than the dynamic
1433 * linker's program headers. */
1434 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001435 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001436 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001437 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001438 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1439 app.phnum = aux[AT_PHNUM];
1440 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001441 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1442 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001443 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001444 else if (phdr->p_type == PT_INTERP)
1445 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001446 else if (phdr->p_type == PT_TLS) {
1447 tls_image = phdr->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -05001448 app.tls.len = phdr->p_filesz;
1449 app.tls.size = phdr->p_memsz;
1450 app.tls.align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001451 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001452 }
Rich Felker7a9669e2015-09-22 03:54:42 +00001453 if (DL_FDPIC) app.loadmap = app_loadmap;
Rich Felkerd56460c2015-11-12 15:50:26 -05001454 if (app.tls.size) app.tls.image = laddr(&app, tls_image);
Rich Felker301335a2015-09-17 17:18:09 +00001455 if (interp_off) ldso.name = laddr(&app, interp_off);
Rich Felkercc515052013-08-23 14:14:47 -04001456 if ((aux[0] & (1UL<<AT_EXECFN))
1457 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001458 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001459 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001460 app.name = argv[0];
1461 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001462 } else {
1463 int fd;
1464 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001465 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001466 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001467 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001468 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1469 char *opt = argv[0]+2;
1470 *argv++ = (void *)-1;
1471 if (!*opt) {
1472 break;
1473 } else if (!memcmp(opt, "list", 5)) {
1474 ldd_mode = 1;
1475 } else if (!memcmp(opt, "library-path", 12)) {
1476 if (opt[12]=='=') env_path = opt+13;
1477 else if (opt[12]) *argv = 0;
1478 else if (*argv) env_path = *argv++;
1479 } else if (!memcmp(opt, "preload", 7)) {
1480 if (opt[7]=='=') env_preload = opt+8;
1481 else if (opt[7]) *argv = 0;
1482 else if (*argv) env_preload = *argv++;
1483 } else {
1484 argv[0] = 0;
1485 }
Rich Felkerde451642014-04-16 12:45:36 -04001486 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001487 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001488 if (!argv[0]) {
Rich Felker0f5eb3d2016-01-22 04:04:16 +00001489 dprintf(2, "musl libc (" LDSO_ARCH ")\n"
Rich Felker179ab5a2013-12-01 17:27:25 -05001490 "Version %s\n"
1491 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001492 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001493 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001494 ldd_mode ? "" : " [args]");
1495 _exit(1);
1496 }
1497 fd = open(argv[0], O_RDONLY);
1498 if (fd < 0) {
1499 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1500 _exit(1);
1501 }
1502 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001503 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001504 if (!ehdr) {
1505 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1506 _exit(1);
1507 }
1508 runtime = 0;
1509 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001510 ldso.name = ldname;
1511 app.name = argv[0];
Rich Felker301335a2015-09-17 17:18:09 +00001512 aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
Rich Felkera97a0502013-07-26 14:41:12 -04001513 /* Find the name that would have been used for the dynamic
1514 * linker had ldd not taken its place. */
1515 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001516 for (i=0; i<app.phnum; i++) {
1517 if (app.phdr[i].p_type == PT_INTERP)
Rich Felker30fdc062015-09-22 19:21:57 +00001518 ldso.name = laddr(&app, app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001519 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001520 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001521 }
Rich Felkere12fe652012-01-23 02:02:59 -05001522 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001523 if (app.tls.size) {
1524 libc.tls_head = &app.tls;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001525 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001526#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -05001527 app.tls.offset = 0;
1528 tls_offset = app.tls.size
1529 + ( -((uintptr_t)app.tls.image + app.tls.size)
1530 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001531#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001532 tls_offset = app.tls.offset = app.tls.size
1533 + ( -((uintptr_t)app.tls.image + app.tls.size)
1534 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001535#endif
Rich Felkerd56460c2015-11-12 15:50:26 -05001536 tls_align = MAXP2(tls_align, app.tls.align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001537 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001538 app.global = 1;
1539 decode_dyn(&app);
Rich Felker7a9669e2015-09-22 03:54:42 +00001540 if (DL_FDPIC) {
1541 makefuncdescs(&app);
1542 if (!app.loadmap) {
1543 app.loadmap = (void *)&app_dummy_loadmap;
1544 app.loadmap->nsegs = 1;
Rich Felker6c5cad22015-09-22 23:41:41 +00001545 app.loadmap->segs[0].addr = (size_t)app.map;
1546 app.loadmap->segs[0].p_vaddr = (size_t)app.map
1547 - (size_t)app.base;
1548 app.loadmap->segs[0].p_memsz = app.map_len;
Rich Felker7a9669e2015-09-22 03:54:42 +00001549 }
1550 argv[-3] = (void *)app.loadmap;
1551 }
Rich Felkerc82f4a32012-01-23 00:57:38 -05001552
1553 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001554 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001555 Ehdr *ehdr = (void *)vdso_base;
1556 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1557 vdso.phnum = ehdr->e_phnum;
1558 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001559 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1560 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001561 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001562 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001563 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001564 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001565 vdso.name = "";
1566 vdso.shortname = "linux-gate.so.1";
1567 vdso.global = 1;
1568 vdso.relocated = 1;
1569 decode_dyn(&vdso);
1570 vdso.prev = &ldso;
1571 ldso.next = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001572 }
1573
Rich Felkerf3ddd172015-04-13 02:56:26 -04001574 /* Initial dso chain consists only of the app. */
1575 head = tail = &app;
Rich Felker51e2d832011-06-18 19:48:42 -04001576
Rich Felkerc82f4a32012-01-23 00:57:38 -05001577 /* Donate unused parts of app and library mapping to malloc */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001578 reclaim_gaps(&app);
1579 reclaim_gaps(&ldso);
Rich Felker6717e622011-06-28 19:40:14 -04001580
Rich Felkerc82f4a32012-01-23 00:57:38 -05001581 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerf3ddd172015-04-13 02:56:26 -04001582 * namespace, and perform all remaining relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001583 if (env_preload) load_preload(env_preload);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001584 load_deps(&app);
1585 make_global(&app);
Rich Felker9c748562012-10-04 22:48:33 -04001586
Timo Teräse13a2b82014-03-25 14:13:27 +02001587#ifndef DYNAMIC_IS_RO
Rich Felkerf3ddd172015-04-13 02:56:26 -04001588 for (i=0; app.dynv[i]; i+=2)
1589 if (app.dynv[i]==DT_DEBUG)
1590 app.dynv[i+1] = (size_t)&debug;
Timo Teräse13a2b82014-03-25 14:13:27 +02001591#endif
1592
Rich Felkerf3ddd172015-04-13 02:56:26 -04001593 /* The main program must be relocated LAST since it may contin
1594 * copy relocations which depend on libraries' relocations. */
1595 reloc_all(app.next);
1596 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001597
1598 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001599 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1600 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001601 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001602 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001603 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001604 _exit(127);
1605 }
Rich Felker71f099c2015-04-13 18:40:52 -04001606 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001607 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001608 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001609 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001610 size_t tmp_tls_size = libc.tls_size;
1611 pthread_t self = __pthread_self();
1612 /* Temporarily set the tls size to the full size of
1613 * builtin_tls so that __copy_tls will use the same layout
1614 * as it did for before. Then check, just to be safe. */
1615 libc.tls_size = sizeof builtin_tls;
1616 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1617 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001618 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001619 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001620
Rich Felker04109502012-08-18 16:00:23 -04001621 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001622 if (ldd_mode) _exit(0);
1623
Rich Felkerc82f4a32012-01-23 00:57:38 -05001624 /* Switch to runtime mode: any further failures in the dynamic
1625 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001626 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001627 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001628
Rich Felker3ec8d292012-04-25 00:05:42 -04001629 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001630 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001631 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001632 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001633 debug.state = 0;
1634 _dl_debug_state();
1635
Rich Felker75863602013-07-21 03:00:54 -04001636 errno = 0;
Rich Felker75863602013-07-21 03:00:54 -04001637
Rich Felkerf3ddd172015-04-13 02:56:26 -04001638 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1639 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001640}
1641
Rich Felker59ab43f2011-06-26 19:23:28 -04001642void *dlopen(const char *file, int mode)
1643{
Rich Felker642b7592012-10-05 01:15:25 -04001644 struct dso *volatile p, *orig_tail, *next;
Rich Felkerd56460c2015-11-12 15:50:26 -05001645 struct tls_module *orig_tls_tail;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001646 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001647 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001648 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001649 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001650
1651 if (!file) return head;
1652
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001653 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001654 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001655 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001656
Rich Felkerdcd60372012-10-05 11:51:50 -04001657 p = 0;
Rich Felkerd56460c2015-11-12 15:50:26 -05001658 orig_tls_tail = tls_tail;
Rich Felkerdcd60372012-10-05 11:51:50 -04001659 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001660 orig_tls_offset = tls_offset;
1661 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001662 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001663 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001664
Rich Felker17276be2013-07-24 02:38:05 -04001665 rtld_fail = &jb;
1666 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001667 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001668 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001669 if (p->deps[i]->global < 0)
1670 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001671 for (p=orig_tail->next; p; p=next) {
1672 next = p->next;
Rich Felker9d15d5e2014-06-19 02:01:06 -04001673 while (p->td_index) {
1674 void *tmp = p->td_index->next;
1675 free(p->td_index);
1676 p->td_index = tmp;
1677 }
Rich Felkereaf7ab62015-09-22 19:12:48 +00001678 free(p->funcdescs);
Rich Felker07709622015-04-04 00:15:19 -04001679 if (p->rpath != p->rpath_orig)
1680 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001681 free(p->deps);
Rich Felkereaf7ab62015-09-22 19:12:48 +00001682 unmap_library(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001683 free(p);
1684 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001685 if (!orig_tls_tail) libc.tls_head = 0;
1686 tls_tail = orig_tls_tail;
Rich Felkerdcd60372012-10-05 11:51:50 -04001687 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001688 tls_offset = orig_tls_offset;
1689 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001690 tail = orig_tail;
1691 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001692 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001693 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001694 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001695
1696 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001697 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001698 "Library %s is not already loaded" :
1699 "Error loading shared library %s: %m",
1700 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001701 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001702 }
1703
Rich Felker59ab43f2011-06-26 19:23:28 -04001704 /* First load handling */
1705 if (!p->deps) {
1706 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001707 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001708 if (!p->deps[i]->global)
1709 p->deps[i]->global = -1;
1710 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001711 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001712 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001713 if (p->deps[i]->global < 0)
1714 p->deps[i]->global = 0;
1715 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001716 }
1717
1718 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001719 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001720 p->deps[i]->global = 1;
1721 p->global = 1;
1722 }
1723
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001724 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001725 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001726 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001727end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001728 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001729 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001730 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001731 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001732 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001733 return p;
1734}
1735
Rich Felker891e6542016-01-25 18:51:33 -05001736__attribute__((__visibility__("hidden")))
1737int __dl_invalid_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001738{
1739 struct dso *p;
1740 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001741 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001742 return 1;
1743}
1744
Rich Felker6c5cad22015-09-22 23:41:41 +00001745static void *addr2dso(size_t a)
1746{
1747 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001748 size_t i;
1749 if (DL_FDPIC) for (p=head; p; p=p->next) {
1750 i = count_syms(p);
1751 if (a-(size_t)p->funcdescs < i*sizeof(*p->funcdescs))
1752 return p;
1753 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001754 for (p=head; p; p=p->next) {
1755 if (DL_FDPIC && p->loadmap) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001756 for (i=0; i<p->loadmap->nsegs; i++) {
1757 if (a-p->loadmap->segs[i].p_vaddr
1758 < p->loadmap->segs[i].p_memsz)
1759 return p;
1760 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001761 } else {
1762 if (a-(size_t)p->map < p->map_len)
1763 return p;
1764 }
1765 }
1766 return 0;
1767}
1768
Rich Felker5ba238e2014-06-19 02:59:44 -04001769void *__tls_get_addr(size_t *);
1770
Rich Felker623753a2011-08-16 00:42:13 -04001771static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001772{
1773 size_t i;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001774 uint32_t h = 0, gh = 0, *ght;
Rich Felker59ab43f2011-06-26 19:23:28 -04001775 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001776 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001777 if (p == RTLD_DEFAULT) {
1778 p = head;
1779 } else if (p == RTLD_NEXT) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001780 p = addr2dso((size_t)ra);
Rich Felker9c748562012-10-04 22:48:33 -04001781 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001782 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001783 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001784 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001785 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001786 if ((def.sym->st_info&0xf) == STT_TLS)
1787 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001788 if (DL_FDPIC && (def.sym->st_info&0xf) == STT_FUNC)
1789 return def.dso->funcdescs + (def.sym - def.dso->syms);
Rich Felker301335a2015-09-17 17:18:09 +00001790 return laddr(def.dso, def.sym->st_value);
Rich Felkera9e85c02012-03-23 00:28:20 -04001791 }
Rich Felker891e6542016-01-25 18:51:33 -05001792 if (__dl_invalid_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001793 return 0;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001794 if ((ght = p->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001795 gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001796 sym = gnu_lookup(gh, ght, p, s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001797 } else {
1798 h = sysv_hash(s);
1799 sym = sysv_lookup(s, h, p);
1800 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001801 if (sym && (sym->st_info&0xf) == STT_TLS)
1802 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001803 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1804 return p->funcdescs + (sym - p->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001805 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001806 return laddr(p, sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001807 if (p->deps) for (i=0; p->deps[i]; i++) {
Alexander Monakov8f08a582015-06-28 02:48:33 +03001808 if ((ght = p->deps[i]->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001809 if (!gh) gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001810 sym = gnu_lookup(gh, ght, p->deps[i], s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001811 } else {
1812 if (!h) h = sysv_hash(s);
1813 sym = sysv_lookup(s, h, p->deps[i]);
1814 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001815 if (sym && (sym->st_info&0xf) == STT_TLS)
1816 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001817 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1818 return p->deps[i]->funcdescs + (sym - p->deps[i]->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001819 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001820 return laddr(p->deps[i], sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001821 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001822failed:
Rich Felker01d42742015-04-18 18:00:22 -04001823 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001824 return 0;
1825}
1826
Rich Felker4f8f0382016-01-25 18:37:05 -05001827int dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001828{
1829 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001830 Sym *sym, *bestsym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001831 uint32_t nsym;
1832 char *strings;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001833 void *best = 0;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001834
1835 pthread_rwlock_rdlock(&lock);
Rich Felker6c5cad22015-09-22 23:41:41 +00001836 p = addr2dso((size_t)addr);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001837 pthread_rwlock_unlock(&lock);
1838
1839 if (!p) return 0;
1840
1841 sym = p->syms;
1842 strings = p->strings;
Rich Felker39581442015-09-21 21:47:50 +00001843 nsym = count_syms(p);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001844
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001845 if (DL_FDPIC) {
1846 size_t idx = ((size_t)addr-(size_t)p->funcdescs)
1847 / sizeof(*p->funcdescs);
1848 if (idx < nsym && (sym[idx].st_info&0xf) == STT_FUNC) {
1849 best = p->funcdescs + idx;
1850 bestsym = sym + idx;
1851 }
1852 }
1853
1854 if (!best) for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001855 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001856 && (1<<(sym->st_info&0xf) & OK_TYPES)
1857 && (1<<(sym->st_info>>4) & OK_BINDS)) {
Rich Felker301335a2015-09-17 17:18:09 +00001858 void *symaddr = laddr(p, sym->st_value);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001859 if (symaddr > addr || symaddr < best)
1860 continue;
1861 best = symaddr;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001862 bestsym = sym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001863 if (addr == symaddr)
1864 break;
1865 }
1866 }
1867
1868 if (!best) return 0;
1869
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001870 if (DL_FDPIC && (bestsym->st_info&0xf) == STT_FUNC)
1871 best = p->funcdescs + (bestsym - p->syms);
1872
Rich Felkerf419bcb2012-08-26 21:09:26 -04001873 info->dli_fname = p->name;
1874 info->dli_fbase = p->base;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001875 info->dli_sname = strings + bestsym->st_name;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001876 info->dli_saddr = best;
1877
1878 return 1;
1879}
1880
Rich Felker72b25dd2015-04-14 11:39:11 -04001881__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001882void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001883{
1884 void *res;
1885 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001886 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001887 pthread_rwlock_unlock(&lock);
1888 return res;
1889}
Rich Felker18c0e022012-10-31 21:27:48 -04001890
1891int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1892{
1893 struct dso *current;
1894 struct dl_phdr_info info;
1895 int ret = 0;
1896 for(current = head; current;) {
1897 info.dlpi_addr = (uintptr_t)current->base;
1898 info.dlpi_name = current->name;
1899 info.dlpi_phdr = current->phdr;
1900 info.dlpi_phnum = current->phnum;
1901 info.dlpi_adds = gencnt;
1902 info.dlpi_subs = 0;
1903 info.dlpi_tls_modid = current->tls_id;
Rich Felkerd56460c2015-11-12 15:50:26 -05001904 info.dlpi_tls_data = current->tls.image;
Rich Felker18c0e022012-10-31 21:27:48 -04001905
1906 ret = (callback)(&info, sizeof (info), data);
1907
1908 if (ret != 0) break;
1909
1910 pthread_rwlock_rdlock(&lock);
1911 current = current->next;
1912 pthread_rwlock_unlock(&lock);
1913 }
1914 return ret;
1915}
Rich Felker5a09a532012-02-03 03:16:07 -05001916#else
1917void *dlopen(const char *file, int mode)
1918{
Rich Felker01d42742015-04-18 18:00:22 -04001919 error("Dynamic loading not supported");
Rich Felker5a09a532012-02-03 03:16:07 -05001920 return 0;
1921}
Rich Felker400c5e52012-09-06 22:44:55 -04001922void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001923{
Rich Felker01d42742015-04-18 18:00:22 -04001924 error("Symbol not found: %s", s);
Rich Felker5a09a532012-02-03 03:16:07 -05001925 return 0;
1926}
1927#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001928
Rich Felker891e6542016-01-25 18:51:33 -05001929__attribute__((__visibility__("hidden")))
1930int __dl_invalid_handle(void *);
1931
Rich Felker780cbbe2013-06-29 12:46:46 -04001932int __dlinfo(void *dso, int req, void *res)
1933{
Rich Felker891e6542016-01-25 18:51:33 -05001934 if (__dl_invalid_handle(dso)) return -1;
Rich Felker780cbbe2013-06-29 12:46:46 -04001935 if (req != RTLD_DI_LINKMAP) {
Rich Felker01d42742015-04-18 18:00:22 -04001936 error("Unsupported request %d", req);
Rich Felker780cbbe2013-06-29 12:46:46 -04001937 return -1;
1938 }
1939 *(struct link_map **)res = dso;
1940 return 0;
1941}
1942
Rich Felker59ab43f2011-06-26 19:23:28 -04001943int dlclose(void *p)
1944{
Rich Felker891e6542016-01-25 18:51:33 -05001945 return __dl_invalid_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001946}
Rich Felker01d42742015-04-18 18:00:22 -04001947
Rich Felkera4fbc822016-01-25 17:56:00 -05001948__attribute__((__visibility__("hidden")))
1949void __dl_vseterr(const char *, va_list);
Rich Felker01d42742015-04-18 18:00:22 -04001950
1951static void error(const char *fmt, ...)
1952{
1953 va_list ap;
1954 va_start(ap, fmt);
1955#ifdef SHARED
1956 if (!runtime) {
1957 vdprintf(2, fmt, ap);
1958 dprintf(2, "\n");
1959 ldso_fail = 1;
1960 va_end(ap);
1961 return;
1962 }
1963#endif
Rich Felkera4fbc822016-01-25 17:56:00 -05001964 __dl_vseterr(fmt, ap);
Rich Felker01d42742015-04-18 18:00:22 -04001965 va_end(ap);
Rich Felker01d42742015-04-18 18:00:22 -04001966}