blob: 6495aeeac061bc68449ec07fd9edca2b92c66ab5 [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 Felkerf3ddd172015-04-13 02:56:26 -0400137static int dl_strcmp(const char *l, const char *r)
138{
139 for (; *l==*r && *l; l++, r++);
140 return *(unsigned char *)l - *(unsigned char *)r;
141}
142#define strcmp(l,r) dl_strcmp(l,r)
Rich Felker51e2d832011-06-18 19:48:42 -0400143
Rich Felker301335a2015-09-17 17:18:09 +0000144/* Compute load address for a virtual address in a given dso. */
Rich Felker78f43022015-09-22 20:20:39 +0000145#if DL_FDPIC
Rich Felker7a9669e2015-09-22 03:54:42 +0000146static void *laddr(const struct dso *p, size_t v)
147{
148 size_t j=0;
149 if (!p->loadmap) return p->base + v;
150 for (j=0; v-p->loadmap->segs[j].p_vaddr >= p->loadmap->segs[j].p_memsz; j++);
151 return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
152}
153#define fpaddr(p, v) ((void (*)())&(struct funcdesc){ \
154 laddr(p, v), (p)->got })
155#else
Rich Felker301335a2015-09-17 17:18:09 +0000156#define laddr(p, v) (void *)((p)->base + (v))
Rich Felker7a9669e2015-09-22 03:54:42 +0000157#define fpaddr(p, v) ((void (*)())laddr(p, v))
158#endif
Rich Felker301335a2015-09-17 17:18:09 +0000159
Rich Felker51e2d832011-06-18 19:48:42 -0400160static void decode_vec(size_t *v, size_t *a, size_t cnt)
161{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400162 size_t i;
163 for (i=0; i<cnt; i++) a[i] = 0;
164 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
165 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400166 a[v[0]] = v[1];
167 }
168}
169
Rich Felker2bd05a42012-08-25 17:13:28 -0400170static int search_vec(size_t *v, size_t *r, size_t key)
171{
172 for (; v[0]!=key; v+=2)
173 if (!v[0]) return 0;
174 *r = v[1];
175 return 1;
176}
177
178static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400179{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500180 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400181 uint_fast32_t h = 0;
182 while (*s) {
183 h = 16*h + *s++;
184 h ^= h>>24 & 0xf0;
185 }
186 return h & 0xfffffff;
187}
188
Rich Felker2bd05a42012-08-25 17:13:28 -0400189static uint32_t gnu_hash(const char *s0)
190{
191 const unsigned char *s = (void *)s0;
192 uint_fast32_t h = 5381;
193 for (; *s; s++)
Alexander Monakov66d45782015-06-28 02:48:30 +0300194 h += h*32 + *s;
Rich Felker2bd05a42012-08-25 17:13:28 -0400195 return h;
196}
197
198static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400199{
200 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400201 Sym *syms = dso->syms;
202 uint32_t *hashtab = dso->hashtab;
203 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400204 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400205 if ((!dso->versym || dso->versym[i] >= 0)
206 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400207 return syms+i;
208 }
209 return 0;
210}
211
Alexander Monakov8f08a582015-06-28 02:48:33 +0300212static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
Rich Felker2bd05a42012-08-25 17:13:28 -0400213{
Rich Felker2bd05a42012-08-25 17:13:28 -0400214 uint32_t nbuckets = hashtab[0];
215 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
Rich Felker72482f92013-08-08 16:10:35 -0400216 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400217
Rich Felker72482f92013-08-08 16:10:35 -0400218 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400219
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300220 uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400221
Rich Felker72482f92013-08-08 16:10:35 -0400222 for (h1 |= 1; ; i++) {
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300223 uint32_t h2 = *hashval++;
224 if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
225 && !strcmp(s, dso->strings + dso->syms[i].st_name))
226 return dso->syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400227 if (h2 & 1) break;
228 }
229
230 return 0;
231}
232
Alexander Monakov8f08a582015-06-28 02:48:33 +0300233static 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 +0300234{
Alexander Monakov84389c62015-06-28 02:48:31 +0300235 const size_t *bloomwords = (const void *)(hashtab+4);
236 size_t f = bloomwords[fofs & (hashtab[2]-1)];
237 if (!(f & fmask)) return 0;
238
239 f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
240 if (!(f & 1)) return 0;
241
Alexander Monakov8f08a582015-06-28 02:48:33 +0300242 return gnu_lookup(h1, hashtab, dso, s);
Alexander Monakov84389c62015-06-28 02:48:31 +0300243}
244
Rich Felker9c748562012-10-04 22:48:33 -0400245#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 -0400246#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400247
Rich Felker2d8cc922014-06-30 01:18:14 -0400248#ifndef ARCH_SYM_REJECT_UND
249#define ARCH_SYM_REJECT_UND(s) 0
250#endif
251
Rich Felker9c748562012-10-04 22:48:33 -0400252static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400253{
Alexander Monakov8f08a582015-06-28 02:48:33 +0300254 uint32_t h = 0, gh, gho, *ght;
Alexander Monakov84389c62015-06-28 02:48:31 +0300255 size_t ghm = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400256 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400257 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400258 Sym *sym;
259 if (!dso->global) continue;
Alexander Monakov8f08a582015-06-28 02:48:33 +0300260 if ((ght = dso->ghashtab)) {
Alexander Monakov84389c62015-06-28 02:48:31 +0300261 if (!ghm) {
262 gh = gnu_hash(s);
263 int maskbits = 8 * sizeof ghm;
264 gho = gh / maskbits;
265 ghm = 1ul << gh % maskbits;
266 }
Alexander Monakov8f08a582015-06-28 02:48:33 +0300267 sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
Rich Felker2bd05a42012-08-25 17:13:28 -0400268 } else {
269 if (!h) h = sysv_hash(s);
270 sym = sysv_lookup(s, h, dso);
271 }
Rich Felkerbd174312012-10-06 01:36:11 -0400272 if (!sym) continue;
273 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400274 if (need_def || (sym->st_info&0xf) == STT_TLS
275 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400276 continue;
277 if (!sym->st_value)
278 if ((sym->st_info&0xf) != STT_TLS)
279 continue;
280 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
281 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
282
283 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
284 def.sym = sym;
285 def.dso = dso;
286 if (sym->st_info>>4 == STB_GLOBAL) break;
Rich Felker51e2d832011-06-18 19:48:42 -0400287 }
Rich Felker427173b2011-07-24 02:19:47 -0400288 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400289}
290
Rich Felker1b1cafa2015-04-17 23:29:45 -0400291__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400292ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
293
Rich Felker87d13a42012-08-05 02:49:02 -0400294static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400295{
Rich Felker87d13a42012-08-05 02:49:02 -0400296 unsigned char *base = dso->base;
297 Sym *syms = dso->syms;
298 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400299 Sym *sym;
300 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400301 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400302 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400303 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400304 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400305 size_t *reloc_addr;
306 size_t sym_val;
307 size_t tls_val;
308 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400309 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
310
311 if (dso == &ldso) {
312 /* Only ldso's REL table needs addend saving/reuse. */
313 if (rel == apply_addends_to)
314 reuse_addends = 1;
315 skip_relative = 1;
316 }
Rich Felker51e2d832011-06-18 19:48:42 -0400317
318 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker7a9669e2015-09-22 03:54:42 +0000319 if (skip_relative && IS_RELATIVE(rel[1], dso->syms)) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400320 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400321 if (type == REL_NONE) continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400322 sym_index = R_SYM(rel[1]);
Rich Felkera735f532015-09-17 17:50:43 +0000323 reloc_addr = laddr(dso, rel[0]);
Rich Felker51e2d832011-06-18 19:48:42 -0400324 if (sym_index) {
325 sym = syms + sym_index;
326 name = strings + sym->st_name;
Rich Felkeradf94c12014-06-18 02:44:02 -0400327 ctx = type==REL_COPY ? head->next : head;
Rich Felker7a9669e2015-09-22 03:54:42 +0000328 def = (sym->st_info&0xf) == STT_SECTION
329 ? (struct symdef){ .dso = dso, .sym = sym }
330 : find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500331 if (!def.sym && (sym->st_shndx != SHN_UNDEF
332 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400333 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400334 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400335 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400336 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400337 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400338 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400339 sym = 0;
340 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400341 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400342 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400343
Rich Felker9bbddf72015-05-25 23:33:59 -0400344 if (stride > 2) {
345 addend = rel[2];
346 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
347 addend = 0;
348 } else if (reuse_addends) {
349 /* Save original addend in stage 2 where the dso
350 * chain consists of just ldso; otherwise read back
351 * saved addend since the inline one was clobbered. */
352 if (head==&ldso)
353 saved_addends[save_slot] = *reloc_addr;
354 addend = saved_addends[save_slot++];
355 } else {
356 addend = *reloc_addr;
357 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400358
Rich Felkera735f532015-09-17 17:50:43 +0000359 sym_val = def.sym ? (size_t)laddr(def.dso, def.sym->st_value) : 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400360 tls_val = def.sym ? def.sym->st_value : 0;
361
362 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400363 case REL_NONE:
364 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400365 case REL_OFFSET:
366 addend -= (size_t)reloc_addr;
367 case REL_SYMBOLIC:
368 case REL_GOT:
369 case REL_PLT:
370 *reloc_addr = sym_val + addend;
371 break;
372 case REL_RELATIVE:
373 *reloc_addr = (size_t)base + addend;
374 break;
375 case REL_SYM_OR_REL:
376 if (sym) *reloc_addr = sym_val + addend;
377 else *reloc_addr = (size_t)base + addend;
378 break;
379 case REL_COPY:
380 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
381 break;
382 case REL_OFFSET32:
383 *(uint32_t *)reloc_addr = sym_val + addend
384 - (size_t)reloc_addr;
385 break;
Rich Felker7a9669e2015-09-22 03:54:42 +0000386 case REL_FUNCDESC:
387 *reloc_addr = def.sym ? (size_t)(def.dso->funcdescs
388 + (def.sym - def.dso->syms)) : 0;
389 break;
390 case REL_FUNCDESC_VAL:
391 if ((sym->st_info&0xf) == STT_SECTION) *reloc_addr += sym_val;
392 else *reloc_addr = sym_val;
393 reloc_addr[1] = def.sym ? (size_t)def.dso->got : 0;
394 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400395 case REL_DTPMOD:
396 *reloc_addr = def.dso->tls_id;
397 break;
398 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000399 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400400 break;
401#ifdef TLS_ABOVE_TP
402 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500403 *reloc_addr = tls_val + def.dso->tls.offset + TPOFF_K + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400404 break;
405#else
406 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500407 *reloc_addr = tls_val - def.dso->tls.offset + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400408 break;
409 case REL_TPOFF_NEG:
Rich Felkerd56460c2015-11-12 15:50:26 -0500410 *reloc_addr = def.dso->tls.offset - tls_val + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400411 break;
412#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400413 case REL_TLSDESC:
414 if (stride<3) addend = reloc_addr[1];
415 if (runtime && def.dso->tls_id >= static_tls_cnt) {
416 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400417 if (!new) {
418 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400419 "Error relocating %s: cannot allocate TLSDESC for %s",
420 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400421 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400422 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400423 new->next = dso->td_index;
424 dso->td_index = new;
425 new->args[0] = def.dso->tls_id;
426 new->args[1] = tls_val + addend;
427 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
428 reloc_addr[1] = (size_t)new;
429 } else {
430 reloc_addr[0] = (size_t)__tlsdesc_static;
431#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -0500432 reloc_addr[1] = tls_val + def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400433 + TPOFF_K + addend;
434#else
Rich Felkerd56460c2015-11-12 15:50:26 -0500435 reloc_addr[1] = tls_val - def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400436 + addend;
437#endif
438 }
439 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400440 default:
441 error("Error relocating %s: unsupported relocation type %d",
442 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400443 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400444 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400445 }
Rich Felker51e2d832011-06-18 19:48:42 -0400446 }
447}
448
Rich Felker6717e622011-06-28 19:40:14 -0400449/* A huge hack: to make up for the wastefulness of shared libraries
450 * needing at least a page of dirty memory even if they have no global
451 * data, we reclaim the gaps at the beginning and end of writable maps
452 * and "donate" them to the heap by setting up minimal malloc
453 * structures and then freeing them. */
454
Timo Teräse13a2b82014-03-25 14:13:27 +0200455static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400456{
457 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200458 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
459 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400460 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
461 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
462 if (start>end || end-start < 4*sizeof(size_t)) return;
Rich Felker301335a2015-09-17 17:18:09 +0000463 a = laddr(dso, start);
464 z = laddr(dso, end);
Rich Felker6717e622011-06-28 19:40:14 -0400465 a[-2] = 1;
466 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
467 z[1] = 1;
468 free(a);
469}
470
Timo Teräs87691962014-03-25 20:59:50 +0200471static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400472{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400473 Phdr *ph = dso->phdr;
474 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200475
Rich Felker7a9669e2015-09-22 03:54:42 +0000476 if (DL_FDPIC) return; // FIXME
Rich Felkerfa7248c2014-03-25 16:21:50 -0400477 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400478 if (ph->p_type!=PT_LOAD) continue;
479 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200480 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
481 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400482 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
483 }
484}
485
Rich Felkerce337da2015-06-23 04:03:42 +0000486static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
487{
Rich Felker9439ebd2015-11-11 17:34:17 -0500488 static int no_map_fixed;
489 char *q;
490 if (!no_map_fixed) {
491 q = mmap(p, n, prot, flags|MAP_FIXED, fd, off);
492 if (!DL_NOMMU_SUPPORT || q != MAP_FAILED || errno != EINVAL)
493 return q;
494 no_map_fixed = 1;
495 }
Rich Felkerce337da2015-06-23 04:03:42 +0000496 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
497 if (flags & MAP_ANONYMOUS) {
498 memset(p, 0, n);
499 return p;
500 }
501 ssize_t r;
502 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
503 for (q=p; n; q+=r, off+=r, n-=r) {
504 r = read(fd, q, n);
505 if (r < 0 && errno != EINTR) return MAP_FAILED;
506 if (!r) {
507 memset(q, 0, n);
508 break;
509 }
510 }
511 return p;
512}
513
Rich Felkereaf7ab62015-09-22 19:12:48 +0000514static void unmap_library(struct dso *dso)
515{
516 if (dso->loadmap) {
517 size_t i;
518 for (i=0; i<dso->loadmap->nsegs; i++) {
519 if (!dso->loadmap->segs[i].p_memsz)
520 continue;
521 munmap((void *)dso->loadmap->segs[i].addr,
522 dso->loadmap->segs[i].p_memsz);
523 }
524 free(dso->loadmap);
525 } else if (dso->map && dso->map_len) {
526 munmap(dso->map, dso->map_len);
527 }
528}
529
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400530static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400531{
Rich Felker59633c72011-06-25 12:26:08 -0400532 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400533 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400534 size_t phsize;
535 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
536 size_t this_min, this_max;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000537 size_t nsegs = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400538 off_t off_start;
539 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400540 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400541 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400542 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400543 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400544 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400545 size_t i;
546
547 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400548 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400549 if (l<0) return 0;
550 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
551 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400552 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400553 if (phsize > sizeof buf - sizeof *eh) {
554 allocated_buf = malloc(phsize);
555 if (!allocated_buf) return 0;
556 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
557 if (l < 0) goto error;
558 if (l != phsize) goto noexec;
559 ph = ph0 = allocated_buf;
560 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400561 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400562 if (l < 0) goto error;
563 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400564 ph = ph0 = (void *)(buf + 1);
565 } else {
566 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400567 }
Rich Felker51e2d832011-06-18 19:48:42 -0400568 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400569 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400570 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400571 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400572 tls_image = ph->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -0500573 dso->tls.align = ph->p_align;
574 dso->tls.len = ph->p_filesz;
575 dso->tls.size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200576 } else if (ph->p_type == PT_GNU_RELRO) {
577 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
578 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400579 }
Rich Felker51e2d832011-06-18 19:48:42 -0400580 if (ph->p_type != PT_LOAD) continue;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000581 nsegs++;
Rich Felker51e2d832011-06-18 19:48:42 -0400582 if (ph->p_vaddr < addr_min) {
583 addr_min = ph->p_vaddr;
584 off_start = ph->p_offset;
585 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
586 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
587 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
588 }
589 if (ph->p_vaddr+ph->p_memsz > addr_max) {
590 addr_max = ph->p_vaddr+ph->p_memsz;
591 }
592 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400593 if (!dyn) goto noexec;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000594 if (DL_FDPIC && !(eh->e_flags & FDPIC_CONSTDISP_FLAG)) {
595 dso->loadmap = calloc(1, sizeof *dso->loadmap
596 + nsegs * sizeof *dso->loadmap->segs);
597 if (!dso->loadmap) goto error;
598 dso->loadmap->nsegs = nsegs;
599 for (ph=ph0, i=0; i<nsegs; ph=(void *)((char *)ph+eh->e_phentsize)) {
600 if (ph->p_type != PT_LOAD) continue;
601 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
602 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
603 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
604 map = mmap(0, ph->p_memsz + (ph->p_vaddr & PAGE_SIZE-1),
Rich Felker5fe38512015-11-15 21:28:41 -0500605 prot, MAP_PRIVATE,
Rich Felkereaf7ab62015-09-22 19:12:48 +0000606 fd, ph->p_offset & -PAGE_SIZE);
607 if (map == MAP_FAILED) {
608 unmap_library(dso);
609 goto error;
610 }
611 dso->loadmap->segs[i].addr = (size_t)map +
612 (ph->p_vaddr & PAGE_SIZE-1);
613 dso->loadmap->segs[i].p_vaddr = ph->p_vaddr;
614 dso->loadmap->segs[i].p_memsz = ph->p_memsz;
615 i++;
Rich Felkerfead7e32015-10-28 21:45:31 -0400616 if (prot & PROT_WRITE) {
617 size_t brk = (ph->p_vaddr & PAGE_SIZE-1)
618 + ph->p_filesz;
619 size_t pgbrk = brk + PAGE_SIZE-1 & -PAGE_SIZE;
620 size_t pgend = brk + ph->p_memsz - ph->p_filesz
621 + PAGE_SIZE-1 & -PAGE_SIZE;
622 if (pgend > pgbrk && mmap_fixed(map+pgbrk,
623 pgend-pgbrk, prot,
624 MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS,
625 -1, off_start) == MAP_FAILED)
626 goto error;
627 memset(map + brk, 0, pgbrk-brk);
628 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000629 }
630 map = (void *)dso->loadmap->segs[0].addr;
631 map_len = 0;
632 goto done_mapping;
633 }
Rich Felker51e2d832011-06-18 19:48:42 -0400634 addr_max += PAGE_SIZE-1;
635 addr_max &= -PAGE_SIZE;
636 addr_min &= -PAGE_SIZE;
637 off_start &= -PAGE_SIZE;
638 map_len = addr_max - addr_min + off_start;
639 /* The first time, we map too much, possibly even more than
640 * the length of the file. This is okay because we will not
641 * use the invalid part; we just need to reserve the right
642 * amount of virtual address space to map over later. */
Rich Felker9439ebd2015-11-11 17:34:17 -0500643 map = DL_NOMMU_SUPPORT
644 ? mmap((void *)addr_min, map_len, PROT_READ|PROT_WRITE|PROT_EXEC,
645 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
646 : mmap((void *)addr_min, map_len, prot,
647 MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400648 if (map==MAP_FAILED) goto error;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000649 dso->map = map;
650 dso->map_len = map_len;
Rich Felker339516a2013-07-31 14:42:08 -0400651 /* If the loaded file is not relocatable and the requested address is
652 * not available, then the load operation must fail. */
653 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
654 errno = EBUSY;
655 goto error;
656 }
Rich Felker51e2d832011-06-18 19:48:42 -0400657 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400658 dso->phdr = 0;
659 dso->phnum = 0;
660 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400661 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400662 /* Check if the programs headers are in this load segment, and
663 * if so, record the address for use by dl_iterate_phdr. */
664 if (!dso->phdr && eh->e_phoff >= ph->p_offset
665 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
666 dso->phdr = (void *)(base + ph->p_vaddr
667 + (eh->e_phoff-ph->p_offset));
668 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200669 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400670 }
Rich Felker51e2d832011-06-18 19:48:42 -0400671 /* Reuse the existing mapping for the lowest-address LOAD */
Rich Felker9439ebd2015-11-11 17:34:17 -0500672 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min && !DL_NOMMU_SUPPORT)
673 continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400674 this_min = ph->p_vaddr & -PAGE_SIZE;
675 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
676 off_start = ph->p_offset & -PAGE_SIZE;
677 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
678 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
679 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000680 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 -0400681 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400682 if (ph->p_memsz > ph->p_filesz) {
683 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
684 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
685 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000686 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 -0400687 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400688 }
689 }
Rich Felker9f174132011-06-29 00:29:08 -0400690 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
691 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000692 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
693 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400694 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400695 break;
696 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000697done_mapping:
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400698 dso->base = base;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000699 dso->dynv = laddr(dso, dyn);
Rich Felkerd56460c2015-11-12 15:50:26 -0500700 if (dso->tls.size) dso->tls.image = laddr(dso, tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200701 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400702 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400703 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400704noexec:
705 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400706error:
Rich Felkereaf7ab62015-09-22 19:12:48 +0000707 if (map!=MAP_FAILED) unmap_library(dso);
Rich Felkerd5884a52013-08-02 09:56:49 -0400708 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400709 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400710}
711
Rich Felker8c203ea2013-04-20 11:51:58 -0400712static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400713{
Rich Felker8c203ea2013-04-20 11:51:58 -0400714 size_t l;
715 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400716 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400717 s += strspn(s, ":\n");
718 l = strcspn(s, ":\n");
719 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400720 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
721 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
722 switch (errno) {
723 case ENOENT:
724 case ENOTDIR:
725 case EACCES:
726 case ENAMETOOLONG:
727 break;
728 default:
729 /* Any negative value but -1 will inhibit
730 * futher path search. */
731 return -2;
732 }
733 }
Rich Felker49388f32011-06-25 17:49:16 -0400734 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400735 }
Rich Felker568b8072011-06-25 01:56:34 -0400736}
737
Rich Felkera897a202013-08-23 13:56:30 -0400738static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
739{
740 size_t n, l;
741 const char *s, *t, *origin;
742 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400743 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400744 if (!strchr(p->rpath_orig, '$')) {
745 p->rpath = p->rpath_orig;
746 return 0;
747 }
748 n = 0;
749 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400750 while ((t=strchr(s, '$'))) {
751 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400752 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400753 s = t+1;
754 n++;
755 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400756 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400757
758 if (p->kernel_mapped) {
759 /* $ORIGIN searches cannot be performed for the main program
760 * when it is suid/sgid/AT_SECURE. This is because the
761 * pathname is under the control of the caller of execve.
762 * For libraries, however, $ORIGIN can be processed safely
763 * since the library's pathname came from a trusted source
764 * (either system paths or a call to dlopen). */
765 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400766 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400767 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400768 if (l == -1) switch (errno) {
769 case ENOENT:
770 case ENOTDIR:
771 case EACCES:
772 break;
773 default:
Rich Felkera897a202013-08-23 13:56:30 -0400774 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400775 }
776 if (l >= buf_size)
777 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400778 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400779 origin = buf;
780 } else {
781 origin = p->name;
782 }
783 t = strrchr(origin, '/');
784 l = t ? t-origin : 0;
785 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
786 if (!p->rpath) return -1;
787
788 d = p->rpath;
789 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400790 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400791 memcpy(d, s, t-s);
792 d += t-s;
793 memcpy(d, origin, l);
794 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400795 /* It was determined previously that the '$' is followed
796 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400797 s = t + 7 + 2*(t[1]=='{');
798 }
799 strcpy(d, s);
800 return 0;
801}
802
Rich Felkerc82f4a32012-01-23 00:57:38 -0500803static void decode_dyn(struct dso *p)
804{
Rich Felkerf4f95622015-04-13 22:38:18 -0400805 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500806 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felker301335a2015-09-17 17:18:09 +0000807 p->syms = laddr(p, dyn[DT_SYMTAB]);
808 p->strings = laddr(p, dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400809 if (dyn[0]&(1<<DT_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000810 p->hashtab = laddr(p, dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400811 if (dyn[0]&(1<<DT_RPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000812 p->rpath_orig = p->strings + dyn[DT_RPATH];
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500813 if (dyn[0]&(1<<DT_RUNPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000814 p->rpath_orig = p->strings + dyn[DT_RUNPATH];
Rich Felker7a9669e2015-09-22 03:54:42 +0000815 if (dyn[0]&(1<<DT_PLTGOT))
816 p->got = laddr(p, dyn[DT_PLTGOT]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400817 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000818 p->ghashtab = laddr(p, *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400819 if (search_vec(p->dynv, dyn, DT_VERSYM))
Rich Felker301335a2015-09-17 17:18:09 +0000820 p->versym = laddr(p, *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500821}
822
Rich Felker39581442015-09-21 21:47:50 +0000823static size_t count_syms(struct dso *p)
824{
825 if (p->hashtab) return p->hashtab[1];
826
827 size_t nsym, i;
828 uint32_t *buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
829 uint32_t *hashval;
830 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
831 if (buckets[i] > nsym)
832 nsym = buckets[i];
833 }
834 if (nsym) {
835 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]);
836 do nsym++;
837 while (!(*hashval++ & 1));
838 }
839 return nsym;
840}
841
Rich Felker7a9669e2015-09-22 03:54:42 +0000842static void *dl_mmap(size_t n)
843{
844 void *p;
845 int prot = PROT_READ|PROT_WRITE, flags = MAP_ANONYMOUS|MAP_PRIVATE;
846#ifdef SYS_mmap2
847 p = (void *)__syscall(SYS_mmap2, 0, n, prot, flags, -1, 0);
848#else
849 p = (void *)__syscall(SYS_mmap, 0, n, prot, flags, -1, 0);
850#endif
851 return p == MAP_FAILED ? 0 : p;
852}
853
854static void makefuncdescs(struct dso *p)
855{
856 static int self_done;
857 size_t nsym = count_syms(p);
858 size_t i, size = nsym * sizeof(*p->funcdescs);
859
860 if (!self_done) {
861 p->funcdescs = dl_mmap(size);
862 self_done = 1;
863 } else {
864 p->funcdescs = malloc(size);
865 }
866 if (!p->funcdescs) {
867 if (!runtime) a_crash();
868 error("Error allocating function descriptors for %s", p->name);
869 longjmp(*rtld_fail, 1);
870 }
871 for (i=0; i<nsym; i++) {
872 if ((p->syms[i].st_info&0xf)==STT_FUNC && p->syms[i].st_shndx) {
873 p->funcdescs[i].addr = laddr(p, p->syms[i].st_value);
874 p->funcdescs[i].got = p->got;
875 } else {
876 p->funcdescs[i].addr = 0;
877 p->funcdescs[i].got = 0;
878 }
879 }
880}
881
Rich Felker709355e2013-08-23 11:15:40 -0400882static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400883{
Rich Felker5c1909a2012-05-27 16:01:44 -0400884 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400885 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500886 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400887 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400888 int fd;
889 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400890 size_t alloc_size;
891 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400892 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400893
Rich Felker59549312014-07-11 00:29:44 -0400894 if (!*name) {
895 errno = EINVAL;
896 return 0;
897 }
898
Rich Felker51e2d832011-06-18 19:48:42 -0400899 /* Catch and block attempts to reload the implementation itself */
900 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
901 static const char *rp, reserved[] =
902 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
903 char *z = strchr(name, '.');
904 if (z) {
905 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400906 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400907 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400908 if (ldd_mode) {
909 /* Track which names have been resolved
910 * and only report each one once. */
911 static unsigned reported;
912 unsigned mask = 1U<<(rp-reserved);
913 if (!(reported & mask)) {
914 reported |= mask;
915 dprintf(1, "\t%s => %s (%p)\n",
Rich Felkerf3ddd172015-04-13 02:56:26 -0400916 name, ldso.name,
917 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400918 }
919 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400920 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400921 }
922 }
923 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400924 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400925 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400926 if (!ldso.prev) {
927 tail->next = &ldso;
928 ldso.prev = tail;
929 tail = ldso.next ? ldso.next : &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400930 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400931 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400932 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400933 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400934 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400935 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400936 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400937 /* Search for the name to see if it's already loaded */
938 for (p=head->next; p; p=p->next) {
939 if (p->shortname && !strcmp(p->shortname, name)) {
940 p->refcnt++;
941 return p;
942 }
943 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400944 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400945 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400946 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400947 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
948 if (fixup_rpath(p, buf, sizeof buf) < 0)
949 fd = -2; /* Inhibit further search. */
950 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400951 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400952 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400953 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400954 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400955 char *prefix = 0;
956 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400957 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400958 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400959 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400960 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400961 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400962 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400963 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400964 }
965 if (!prefix) {
966 prefix = "";
967 prefix_len = 0;
968 }
969 char etc_ldso_path[prefix_len + 1
970 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
971 snprintf(etc_ldso_path, sizeof etc_ldso_path,
972 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
973 (int)prefix_len, prefix);
974 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400975 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400976 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400977 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400978 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500979 }
Rich Felker568b8072011-06-25 01:56:34 -0400980 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400981 } else if (errno != ENOENT) {
982 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400983 }
984 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500985 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
986 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400987 }
Rich Felker0420b872012-07-11 01:41:20 -0400988 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400989 }
990 if (fd < 0) return 0;
991 if (fstat(fd, &st) < 0) {
992 close(fd);
993 return 0;
994 }
995 for (p=head->next; p; p=p->next) {
996 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -0400997 /* If this library was previously loaded with a
998 * pathname but a search found the same inode,
999 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -04001000 if (!p->shortname && pathname != name)
1001 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -04001002 close(fd);
1003 p->refcnt++;
1004 return p;
1005 }
1006 }
Rich Felker4d07e552013-01-23 22:07:45 -05001007 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001008 close(fd);
1009 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -04001010
1011 /* Allocate storage for the new DSO. When there is TLS, this
1012 * storage must include a reservation for all pre-existing
1013 * threads to obtain copies of both the new TLS, and an
1014 * extended DTV capable of storing an additional slot for
1015 * the newly-loaded DSO. */
1016 alloc_size = sizeof *p + strlen(pathname) + 1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001017 if (runtime && temp_dso.tls.image) {
1018 size_t per_th = temp_dso.tls.size + temp_dso.tls.align
Rich Felkerdcd60372012-10-05 11:51:50 -04001019 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -04001020 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -04001021 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
1022 else alloc_size += n_th * per_th;
1023 }
1024 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -04001025 if (!p) {
Rich Felkereaf7ab62015-09-22 19:12:48 +00001026 unmap_library(&temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001027 return 0;
1028 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001029 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001030 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -04001031 p->dev = st.st_dev;
1032 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -04001033 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -04001034 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001035 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -04001036 strcpy(p->name, pathname);
1037 /* Add a shortname only if name arg was not an explicit pathname. */
1038 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001039 if (p->tls.image) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001040 p->tls_id = ++tls_cnt;
Rich Felkerd56460c2015-11-12 15:50:26 -05001041 tls_align = MAXP2(tls_align, p->tls.align);
Rich Felker9ec42832012-10-15 18:51:53 -04001042#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -05001043 p->tls.offset = tls_offset + ( (tls_align-1) &
1044 -(tls_offset + (uintptr_t)p->tls.image) );
1045 tls_offset += p->tls.size;
Rich Felker9ec42832012-10-15 18:51:53 -04001046#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001047 tls_offset += p->tls.size + p->tls.align - 1;
1048 tls_offset -= (tls_offset + (uintptr_t)p->tls.image)
1049 & (p->tls.align-1);
1050 p->tls.offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -04001051#endif
Rich Felkerdcd60372012-10-05 11:51:50 -04001052 p->new_dtv = (void *)(-sizeof(size_t) &
1053 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
1054 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
Rich Felkerd56460c2015-11-12 15:50:26 -05001055 if (tls_tail) tls_tail->next = &p->tls;
1056 else libc.tls_head = &p->tls;
1057 tls_tail = &p->tls;
Rich Felkerdcd60372012-10-05 11:51:50 -04001058 }
Rich Felker51e2d832011-06-18 19:48:42 -04001059
1060 tail->next = p;
1061 p->prev = tail;
1062 tail = p;
1063
Rich Felker7a9669e2015-09-22 03:54:42 +00001064 if (DL_FDPIC) makefuncdescs(p);
1065
Rich Felker1d7c4f82012-12-15 23:34:08 -05001066 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -04001067
Rich Felker51e2d832011-06-18 19:48:42 -04001068 return p;
1069}
1070
1071static void load_deps(struct dso *p)
1072{
Rich Felker59ab43f2011-06-26 19:23:28 -04001073 size_t i, ndeps=0;
1074 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -04001075 for (; p; p=p->next) {
1076 for (i=0; p->dynv[i]; i+=2) {
1077 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -04001078 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001079 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001080 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -04001081 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001082 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -04001083 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001084 }
Rich Felker59ab43f2011-06-26 19:23:28 -04001085 if (runtime) {
1086 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -04001087 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -04001088 tmp[ndeps++] = dep;
1089 tmp[ndeps] = 0;
1090 *deps = tmp;
1091 }
Rich Felker51e2d832011-06-18 19:48:42 -04001092 }
1093 }
1094}
1095
Rich Felker2719cc82011-08-16 00:24:36 -04001096static void load_preload(char *s)
1097{
1098 int tmp;
1099 char *z;
1100 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -04001101 for ( ; *s && (isspace(*s) || *s==':'); s++);
1102 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -04001103 tmp = *z;
1104 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -04001105 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -04001106 *z = tmp;
1107 }
1108}
1109
Rich Felker59ab43f2011-06-26 19:23:28 -04001110static void make_global(struct dso *p)
1111{
1112 for (; p; p=p->next) p->global = 1;
1113}
1114
Rich Felkerf3ddd172015-04-13 02:56:26 -04001115static void do_mips_relocs(struct dso *p, size_t *got)
1116{
1117 size_t i, j, rel[2];
1118 unsigned char *base = p->base;
1119 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -04001120 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001121 got += i;
1122 } else {
1123 while (i--) *got++ += (size_t)base;
1124 }
1125 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
1126 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
1127 Sym *sym = p->syms + j;
1128 rel[0] = (unsigned char *)got - base;
1129 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
1130 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
1131 do_relocs(p, rel, sizeof rel, 2);
1132 }
1133}
1134
Rich Felker51e2d832011-06-18 19:48:42 -04001135static void reloc_all(struct dso *p)
1136{
Rich Felkerf4f95622015-04-13 22:38:18 -04001137 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -04001138 for (; p; p=p->next) {
1139 if (p->relocated) continue;
1140 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001141 if (NEED_MIPS_GOT_RELOCS)
Rich Felker2a547332015-09-17 19:45:45 +00001142 do_mips_relocs(p, laddr(p, dyn[DT_PLTGOT]));
1143 do_relocs(p, laddr(p, dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
Rich Felker87d13a42012-08-05 02:49:02 -04001144 2+(dyn[DT_PLTREL]==DT_RELA));
Rich Felker2a547332015-09-17 19:45:45 +00001145 do_relocs(p, laddr(p, dyn[DT_REL]), dyn[DT_RELSZ], 2);
1146 do_relocs(p, laddr(p, dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +02001147
Rich Felkerf3ddd172015-04-13 02:56:26 -04001148 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker2a547332015-09-17 19:45:45 +00001149 mprotect(laddr(p, p->relro_start), p->relro_end-p->relro_start, PROT_READ)
Rich Felker75eceb32015-06-17 17:21:46 +00001150 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001151 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +02001152 p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001153 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +02001154 }
1155
Rich Felker368ba4a2011-06-25 00:18:19 -04001156 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -04001157 }
1158}
1159
Timo Teräs87691962014-03-25 20:59:50 +02001160static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -05001161{
Timo Teräs87691962014-03-25 20:59:50 +02001162 size_t min_addr = -1, max_addr = 0, cnt;
1163 Phdr *ph = p->phdr;
1164 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
1165 if (ph->p_type == PT_DYNAMIC) {
Rich Felker301335a2015-09-17 17:18:09 +00001166 p->dynv = laddr(p, ph->p_vaddr);
Timo Teräs87691962014-03-25 20:59:50 +02001167 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +02001168 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
1169 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
1170 }
Rich Felkerf419bcb2012-08-26 21:09:26 -04001171 if (ph->p_type != PT_LOAD) continue;
1172 if (ph->p_vaddr < min_addr)
1173 min_addr = ph->p_vaddr;
1174 if (ph->p_vaddr+ph->p_memsz > max_addr)
1175 max_addr = ph->p_vaddr+ph->p_memsz;
1176 }
1177 min_addr &= -PAGE_SIZE;
1178 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
1179 p->map = p->base + min_addr;
1180 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +02001181 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001182}
1183
Rich Felkerad1cd432015-11-11 22:08:23 -05001184void __libc_exit_fini()
Rich Felkerf4f77c02012-10-05 13:09:09 -04001185{
1186 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -04001187 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -04001188 for (p=fini_head; p; p=p->fini_next) {
1189 if (!p->constructed) continue;
1190 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001191 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
1192 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001193 size_t *fn = (size_t *)laddr(p, dyn[DT_FINI_ARRAY])+n;
Rich Felker1b413572013-07-21 02:35:46 -04001194 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -04001195 }
Rich Felker1da53da2013-07-22 14:08:33 -04001196#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001197 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felker7a9669e2015-09-22 03:54:42 +00001198 fpaddr(p, dyn[DT_FINI])();
Rich Felker1da53da2013-07-22 14:08:33 -04001199#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001200 }
1201}
1202
Rich Felker4ce3cb52012-02-06 14:39:09 -05001203static void do_init_fini(struct dso *p)
1204{
Rich Felkerf4f95622015-04-13 22:38:18 -04001205 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001206 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001207 /* Allow recursive calls that arise when a library calls
1208 * dlopen from one of its constructors, but block any
1209 * other threads until all ctors have finished. */
1210 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001211 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001212 if (p->constructed) continue;
1213 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001214 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001215 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001216 p->fini_next = fini_head;
1217 fini_head = p;
1218 }
Rich Felker1da53da2013-07-22 14:08:33 -04001219#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001220 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker7a9669e2015-09-22 03:54:42 +00001221 fpaddr(p, dyn[DT_INIT])();
Rich Felker1da53da2013-07-22 14:08:33 -04001222#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001223 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1224 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001225 size_t *fn = laddr(p, dyn[DT_INIT_ARRAY]);
Rich Felkere69ae842013-07-20 18:26:17 -04001226 while (n--) ((void (*)(void))*fn++)();
1227 }
Rich Felker509b50e2013-06-29 02:24:02 -04001228 if (!need_locking && libc.threads_minus_1) {
1229 need_locking = 1;
1230 pthread_mutex_lock(&init_fini_lock);
1231 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001232 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001233 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001234}
1235
Rich Felkerc87a5212015-09-22 20:24:28 +00001236void __libc_start_init(void)
1237{
1238 do_init_fini(tail);
1239}
1240
Rich Felker326e1262015-04-17 23:23:05 -04001241static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001242{
1243}
1244
Rich Felker326e1262015-04-17 23:23:05 -04001245weak_alias(dl_debug_state, _dl_debug_state);
1246
Rich Felkerd56460c2015-11-12 15:50:26 -05001247void __init_tls(size_t *auxv)
Rich Felker7c6c2902013-08-03 16:27:30 -04001248{
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001249}
1250
Rich Felkerbc081f62015-04-14 10:42:44 -04001251__attribute__((__visibility__("hidden")))
Rich Felker5ba238e2014-06-19 02:59:44 -04001252void *__tls_get_new(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001253{
1254 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001255
1256 /* Block signals to make accessing new TLS async-signal-safe */
1257 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001258 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001259 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001260 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001261 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001262 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001263
1264 /* This is safe without any locks held because, if the caller
1265 * is able to request the Nth entry of the DTV, the DSO list
1266 * must be valid at least that far out and it was synchronized
1267 * at program startup or by an already-completed call to dlopen. */
1268 struct dso *p;
1269 for (p=head; p->tls_id != v[0]; p=p->next);
1270
1271 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001272 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001273 void **newdtv = p->new_dtv +
1274 (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001275 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001276 ((size_t)self->dtv[0]+1) * sizeof(void *));
1277 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001278 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001279 }
1280
Rich Felkere75b16c2014-06-19 02:16:57 -04001281 /* Get new TLS memory from all new DSOs up to the requested one */
1282 unsigned char *mem;
1283 for (p=head; ; p=p->next) {
1284 if (!p->tls_id || self->dtv[p->tls_id]) continue;
Rich Felkerd56460c2015-11-12 15:50:26 -05001285 mem = p->new_tls + (p->tls.size + p->tls.align)
Rich Felkere75b16c2014-06-19 02:16:57 -04001286 * a_fetch_add(&p->new_tls_idx,1);
Rich Felkerd56460c2015-11-12 15:50:26 -05001287 mem += ((uintptr_t)p->tls.image - (uintptr_t)mem)
1288 & (p->tls.align-1);
Rich Felkere75b16c2014-06-19 02:16:57 -04001289 self->dtv[p->tls_id] = mem;
Rich Felkerd56460c2015-11-12 15:50:26 -05001290 memcpy(mem, p->tls.image, p->tls.len);
Rich Felkere75b16c2014-06-19 02:16:57 -04001291 if (p->tls_id == v[0]) break;
1292 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001293 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001294 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001295}
1296
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001297static void update_tls_size()
1298{
Rich Felkerd56460c2015-11-12 15:50:26 -05001299 libc.tls_cnt = tls_cnt;
1300 libc.tls_align = tls_align;
Rich Felker9ec42832012-10-15 18:51:53 -04001301 libc.tls_size = ALIGN(
1302 (1+tls_cnt) * sizeof(void *) +
1303 tls_offset +
1304 sizeof(struct pthread) +
1305 tls_align * 2,
1306 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001307}
1308
Rich Felkerf3ddd172015-04-13 02:56:26 -04001309/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1310 * following stage 2 and stage 3 functions via primitive symbolic lookup
1311 * since it does not have access to their addresses to begin with. */
1312
1313/* Stage 2 of the dynamic linker is called after relative relocations
1314 * have been processed. It can make function calls to static functions
1315 * and access string literals and static data, but cannot use extern
1316 * symbols. Its job is to perform symbolic relocations on the dynamic
1317 * linker itself, but some of the relocations performed may need to be
1318 * replaced later due to copy relocations in the main program. */
1319
Rich Felkerbc9b6ea2015-10-15 17:38:54 -04001320__attribute__((__visibility__("hidden")))
Rich Felker768b82c2015-05-25 19:15:17 -04001321void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001322{
Rich Felker7a9669e2015-09-22 03:54:42 +00001323 if (DL_FDPIC) {
1324 void *p1 = (void *)sp[-2];
1325 void *p2 = (void *)sp[-1];
1326 if (!p1) {
1327 size_t *auxv, aux[AUX_CNT];
1328 for (auxv=sp+1+*sp+1; *auxv; auxv++); auxv++;
1329 decode_vec(auxv, aux, AUX_CNT);
1330 if (aux[AT_BASE]) ldso.base = (void *)aux[AT_BASE];
1331 else ldso.base = (void *)(aux[AT_PHDR] & -4096);
1332 }
1333 app_loadmap = p2 ? p1 : 0;
1334 ldso.loadmap = p2 ? p2 : p1;
1335 ldso.base = laddr(&ldso, 0);
1336 } else {
1337 ldso.base = base;
1338 }
1339 Ehdr *ehdr = (void *)ldso.base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001340 ldso.name = ldso.shortname = "libc.so";
1341 ldso.global = 1;
1342 ldso.phnum = ehdr->e_phnum;
Rich Felker7a9669e2015-09-22 03:54:42 +00001343 ldso.phdr = laddr(&ldso, ehdr->e_phoff);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001344 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001345 kernel_mapped_dso(&ldso);
1346 decode_dyn(&ldso);
1347
Rich Felker7a9669e2015-09-22 03:54:42 +00001348 if (DL_FDPIC) makefuncdescs(&ldso);
1349
Rich Felker9bbddf72015-05-25 23:33:59 -04001350 /* Prepare storage for to save clobbered REL addends so they
1351 * can be reused in stage 3. There should be very few. If
1352 * something goes wrong and there are a huge number, abort
1353 * instead of risking stack overflow. */
1354 size_t dyn[DYN_CNT];
1355 decode_vec(ldso.dynv, dyn, DYN_CNT);
Rich Felker2a547332015-09-17 19:45:45 +00001356 size_t *rel = laddr(&ldso, dyn[DT_REL]);
Rich Felker9bbddf72015-05-25 23:33:59 -04001357 size_t rel_size = dyn[DT_RELSZ];
1358 size_t symbolic_rel_cnt = 0;
1359 apply_addends_to = rel;
1360 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
Rich Felker7a9669e2015-09-22 03:54:42 +00001361 if (!IS_RELATIVE(rel[1], ldso.syms)) symbolic_rel_cnt++;
Rich Felker9bbddf72015-05-25 23:33:59 -04001362 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1363 size_t addends[symbolic_rel_cnt+1];
1364 saved_addends = addends;
1365
Rich Felkerf3ddd172015-04-13 02:56:26 -04001366 head = &ldso;
1367 reloc_all(&ldso);
1368
1369 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001370
1371 /* Call dynamic linker stage-3, __dls3, looking it up
1372 * symbolically as a barrier against moving the address
1373 * load across the above relocation processing. */
1374 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
Rich Felker7a9669e2015-09-22 03:54:42 +00001375 if (DL_FDPIC) ((stage3_func)&ldso.funcdescs[dls3_def.sym-ldso.syms])(sp);
1376 else ((stage3_func)laddr(&ldso, dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001377}
1378
1379/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1380 * fully functional. Its job is to load (if not already loaded) and
1381 * process dependencies and relocations for the main application and
1382 * transfer control to its entry point. */
1383
1384_Noreturn void __dls3(size_t *sp)
1385{
1386 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001387 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001388 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001389 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001390 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001391 int argc = *sp;
1392 char **argv = (void *)(sp+1);
1393 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001394 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001395
Rich Felker75ce4502015-06-07 20:55:23 +00001396 /* Find aux vector just past environ[] and use it to initialize
1397 * global data that may be needed before we can make syscalls. */
1398 __environ = envp;
1399 for (i=argc+1; argv[i]; i++);
1400 libc.auxv = auxv = (void *)(argv+i+1);
1401 decode_vec(auxv, aux, AUX_CNT);
1402 __hwcap = aux[AT_HWCAP];
1403 libc.page_size = aux[AT_PAGESZ];
1404 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1405 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1406
Rich Felker71f099c2015-04-13 18:40:52 -04001407 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1408 * use during dynamic linking. If possible it will also serve as the
1409 * thread pointer at runtime. */
1410 libc.tls_size = sizeof builtin_tls;
Rich Felkerd56460c2015-11-12 15:50:26 -05001411 libc.tls_align = tls_align;
Rich Felker71f099c2015-04-13 18:40:52 -04001412 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001413 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001414 }
Rich Felker51e2d832011-06-18 19:48:42 -04001415
Rich Felker568b8072011-06-25 01:56:34 -04001416 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001417 if (!libc.secure) {
1418 env_path = getenv("LD_LIBRARY_PATH");
1419 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001420 }
1421
Rich Felkerf3ddd172015-04-13 02:56:26 -04001422 /* If the main program was already loaded by the kernel,
1423 * AT_PHDR will point to some location other than the dynamic
1424 * linker's program headers. */
1425 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001426 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001427 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001428 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001429 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1430 app.phnum = aux[AT_PHNUM];
1431 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001432 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1433 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001434 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001435 else if (phdr->p_type == PT_INTERP)
1436 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001437 else if (phdr->p_type == PT_TLS) {
1438 tls_image = phdr->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -05001439 app.tls.len = phdr->p_filesz;
1440 app.tls.size = phdr->p_memsz;
1441 app.tls.align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001442 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001443 }
Rich Felker7a9669e2015-09-22 03:54:42 +00001444 if (DL_FDPIC) app.loadmap = app_loadmap;
Rich Felkerd56460c2015-11-12 15:50:26 -05001445 if (app.tls.size) app.tls.image = laddr(&app, tls_image);
Rich Felker301335a2015-09-17 17:18:09 +00001446 if (interp_off) ldso.name = laddr(&app, interp_off);
Rich Felkercc515052013-08-23 14:14:47 -04001447 if ((aux[0] & (1UL<<AT_EXECFN))
1448 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001449 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001450 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001451 app.name = argv[0];
1452 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001453 } else {
1454 int fd;
1455 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001456 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001457 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001458 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001459 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1460 char *opt = argv[0]+2;
1461 *argv++ = (void *)-1;
1462 if (!*opt) {
1463 break;
1464 } else if (!memcmp(opt, "list", 5)) {
1465 ldd_mode = 1;
1466 } else if (!memcmp(opt, "library-path", 12)) {
1467 if (opt[12]=='=') env_path = opt+13;
1468 else if (opt[12]) *argv = 0;
1469 else if (*argv) env_path = *argv++;
1470 } else if (!memcmp(opt, "preload", 7)) {
1471 if (opt[7]=='=') env_preload = opt+8;
1472 else if (opt[7]) *argv = 0;
1473 else if (*argv) env_preload = *argv++;
1474 } else {
1475 argv[0] = 0;
1476 }
Rich Felkerde451642014-04-16 12:45:36 -04001477 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001478 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001479 if (!argv[0]) {
Rich Felker179ab5a2013-12-01 17:27:25 -05001480 dprintf(2, "musl libc\n"
1481 "Version %s\n"
1482 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001483 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001484 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001485 ldd_mode ? "" : " [args]");
1486 _exit(1);
1487 }
1488 fd = open(argv[0], O_RDONLY);
1489 if (fd < 0) {
1490 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1491 _exit(1);
1492 }
1493 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001494 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001495 if (!ehdr) {
1496 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1497 _exit(1);
1498 }
1499 runtime = 0;
1500 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001501 ldso.name = ldname;
1502 app.name = argv[0];
Rich Felker301335a2015-09-17 17:18:09 +00001503 aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
Rich Felkera97a0502013-07-26 14:41:12 -04001504 /* Find the name that would have been used for the dynamic
1505 * linker had ldd not taken its place. */
1506 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001507 for (i=0; i<app.phnum; i++) {
1508 if (app.phdr[i].p_type == PT_INTERP)
Rich Felker30fdc062015-09-22 19:21:57 +00001509 ldso.name = laddr(&app, app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001510 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001511 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001512 }
Rich Felkere12fe652012-01-23 02:02:59 -05001513 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001514 if (app.tls.size) {
1515 libc.tls_head = &app.tls;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001516 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001517#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -05001518 app.tls.offset = 0;
1519 tls_offset = app.tls.size
1520 + ( -((uintptr_t)app.tls.image + app.tls.size)
1521 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001522#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001523 tls_offset = app.tls.offset = app.tls.size
1524 + ( -((uintptr_t)app.tls.image + app.tls.size)
1525 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001526#endif
Rich Felkerd56460c2015-11-12 15:50:26 -05001527 tls_align = MAXP2(tls_align, app.tls.align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001528 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001529 app.global = 1;
1530 decode_dyn(&app);
Rich Felker7a9669e2015-09-22 03:54:42 +00001531 if (DL_FDPIC) {
1532 makefuncdescs(&app);
1533 if (!app.loadmap) {
1534 app.loadmap = (void *)&app_dummy_loadmap;
1535 app.loadmap->nsegs = 1;
Rich Felker6c5cad22015-09-22 23:41:41 +00001536 app.loadmap->segs[0].addr = (size_t)app.map;
1537 app.loadmap->segs[0].p_vaddr = (size_t)app.map
1538 - (size_t)app.base;
1539 app.loadmap->segs[0].p_memsz = app.map_len;
Rich Felker7a9669e2015-09-22 03:54:42 +00001540 }
1541 argv[-3] = (void *)app.loadmap;
1542 }
Rich Felkerc82f4a32012-01-23 00:57:38 -05001543
1544 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001545 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001546 Ehdr *ehdr = (void *)vdso_base;
1547 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1548 vdso.phnum = ehdr->e_phnum;
1549 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001550 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1551 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001552 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001553 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001554 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001555 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001556 vdso.name = "";
1557 vdso.shortname = "linux-gate.so.1";
1558 vdso.global = 1;
1559 vdso.relocated = 1;
1560 decode_dyn(&vdso);
1561 vdso.prev = &ldso;
1562 ldso.next = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001563 }
1564
Rich Felkerf3ddd172015-04-13 02:56:26 -04001565 /* Initial dso chain consists only of the app. */
1566 head = tail = &app;
Rich Felker51e2d832011-06-18 19:48:42 -04001567
Rich Felkerc82f4a32012-01-23 00:57:38 -05001568 /* Donate unused parts of app and library mapping to malloc */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001569 reclaim_gaps(&app);
1570 reclaim_gaps(&ldso);
Rich Felker6717e622011-06-28 19:40:14 -04001571
Rich Felkerc82f4a32012-01-23 00:57:38 -05001572 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerf3ddd172015-04-13 02:56:26 -04001573 * namespace, and perform all remaining relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001574 if (env_preload) load_preload(env_preload);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001575 load_deps(&app);
1576 make_global(&app);
Rich Felker9c748562012-10-04 22:48:33 -04001577
Timo Teräse13a2b82014-03-25 14:13:27 +02001578#ifndef DYNAMIC_IS_RO
Rich Felkerf3ddd172015-04-13 02:56:26 -04001579 for (i=0; app.dynv[i]; i+=2)
1580 if (app.dynv[i]==DT_DEBUG)
1581 app.dynv[i+1] = (size_t)&debug;
Timo Teräse13a2b82014-03-25 14:13:27 +02001582#endif
1583
Rich Felkerf3ddd172015-04-13 02:56:26 -04001584 /* The main program must be relocated LAST since it may contin
1585 * copy relocations which depend on libraries' relocations. */
1586 reloc_all(app.next);
1587 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001588
1589 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001590 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1591 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001592 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001593 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001594 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001595 _exit(127);
1596 }
Rich Felker71f099c2015-04-13 18:40:52 -04001597 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001598 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001599 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001600 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001601 size_t tmp_tls_size = libc.tls_size;
1602 pthread_t self = __pthread_self();
1603 /* Temporarily set the tls size to the full size of
1604 * builtin_tls so that __copy_tls will use the same layout
1605 * as it did for before. Then check, just to be safe. */
1606 libc.tls_size = sizeof builtin_tls;
1607 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1608 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001609 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001610 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001611
Rich Felker04109502012-08-18 16:00:23 -04001612 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001613 if (ldd_mode) _exit(0);
1614
Rich Felkerc82f4a32012-01-23 00:57:38 -05001615 /* Switch to runtime mode: any further failures in the dynamic
1616 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001617 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001618 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001619
Rich Felker3ec8d292012-04-25 00:05:42 -04001620 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001621 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001622 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001623 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001624 debug.state = 0;
1625 _dl_debug_state();
1626
Rich Felker75863602013-07-21 03:00:54 -04001627 errno = 0;
Rich Felker75863602013-07-21 03:00:54 -04001628
Rich Felkerf3ddd172015-04-13 02:56:26 -04001629 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1630 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001631}
1632
Rich Felker59ab43f2011-06-26 19:23:28 -04001633void *dlopen(const char *file, int mode)
1634{
Rich Felker642b7592012-10-05 01:15:25 -04001635 struct dso *volatile p, *orig_tail, *next;
Rich Felkerd56460c2015-11-12 15:50:26 -05001636 struct tls_module *orig_tls_tail;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001637 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001638 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001639 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001640 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001641
1642 if (!file) return head;
1643
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001644 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001645 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001646 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001647
Rich Felkerdcd60372012-10-05 11:51:50 -04001648 p = 0;
Rich Felkerd56460c2015-11-12 15:50:26 -05001649 orig_tls_tail = tls_tail;
Rich Felkerdcd60372012-10-05 11:51:50 -04001650 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001651 orig_tls_offset = tls_offset;
1652 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001653 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001654 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001655
Rich Felker17276be2013-07-24 02:38:05 -04001656 rtld_fail = &jb;
1657 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001658 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001659 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001660 if (p->deps[i]->global < 0)
1661 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001662 for (p=orig_tail->next; p; p=next) {
1663 next = p->next;
Rich Felker9d15d5e2014-06-19 02:01:06 -04001664 while (p->td_index) {
1665 void *tmp = p->td_index->next;
1666 free(p->td_index);
1667 p->td_index = tmp;
1668 }
Rich Felkereaf7ab62015-09-22 19:12:48 +00001669 free(p->funcdescs);
Rich Felker07709622015-04-04 00:15:19 -04001670 if (p->rpath != p->rpath_orig)
1671 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001672 free(p->deps);
Rich Felkereaf7ab62015-09-22 19:12:48 +00001673 unmap_library(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001674 free(p);
1675 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001676 if (!orig_tls_tail) libc.tls_head = 0;
1677 tls_tail = orig_tls_tail;
Rich Felkerdcd60372012-10-05 11:51:50 -04001678 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001679 tls_offset = orig_tls_offset;
1680 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001681 tail = orig_tail;
1682 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001683 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001684 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001685 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001686
1687 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001688 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001689 "Library %s is not already loaded" :
1690 "Error loading shared library %s: %m",
1691 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001692 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001693 }
1694
Rich Felker59ab43f2011-06-26 19:23:28 -04001695 /* First load handling */
1696 if (!p->deps) {
1697 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001698 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001699 if (!p->deps[i]->global)
1700 p->deps[i]->global = -1;
1701 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001702 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001703 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001704 if (p->deps[i]->global < 0)
1705 p->deps[i]->global = 0;
1706 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001707 }
1708
1709 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001710 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001711 p->deps[i]->global = 1;
1712 p->global = 1;
1713 }
1714
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001715 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001716 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001717 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001718end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001719 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001720 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001721 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001722 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001723 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001724 return p;
1725}
1726
Rich Felker4d982802013-01-16 11:49:00 -05001727static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001728{
1729 struct dso *p;
1730 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001731 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001732 return 1;
1733}
1734
Rich Felker6c5cad22015-09-22 23:41:41 +00001735static void *addr2dso(size_t a)
1736{
1737 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001738 size_t i;
1739 if (DL_FDPIC) for (p=head; p; p=p->next) {
1740 i = count_syms(p);
1741 if (a-(size_t)p->funcdescs < i*sizeof(*p->funcdescs))
1742 return p;
1743 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001744 for (p=head; p; p=p->next) {
1745 if (DL_FDPIC && p->loadmap) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001746 for (i=0; i<p->loadmap->nsegs; i++) {
1747 if (a-p->loadmap->segs[i].p_vaddr
1748 < p->loadmap->segs[i].p_memsz)
1749 return p;
1750 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001751 } else {
1752 if (a-(size_t)p->map < p->map_len)
1753 return p;
1754 }
1755 }
1756 return 0;
1757}
1758
Rich Felker5ba238e2014-06-19 02:59:44 -04001759void *__tls_get_addr(size_t *);
1760
Rich Felker623753a2011-08-16 00:42:13 -04001761static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001762{
1763 size_t i;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001764 uint32_t h = 0, gh = 0, *ght;
Rich Felker59ab43f2011-06-26 19:23:28 -04001765 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001766 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001767 if (p == RTLD_DEFAULT) {
1768 p = head;
1769 } else if (p == RTLD_NEXT) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001770 p = addr2dso((size_t)ra);
Rich Felker9c748562012-10-04 22:48:33 -04001771 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001772 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001773 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001774 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001775 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001776 if ((def.sym->st_info&0xf) == STT_TLS)
1777 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001778 if (DL_FDPIC && (def.sym->st_info&0xf) == STT_FUNC)
1779 return def.dso->funcdescs + (def.sym - def.dso->syms);
Rich Felker301335a2015-09-17 17:18:09 +00001780 return laddr(def.dso, def.sym->st_value);
Rich Felkera9e85c02012-03-23 00:28:20 -04001781 }
Rich Felker97b72d22015-04-21 13:07:06 -04001782 if (invalid_dso_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001783 return 0;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001784 if ((ght = p->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001785 gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001786 sym = gnu_lookup(gh, ght, p, s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001787 } else {
1788 h = sysv_hash(s);
1789 sym = sysv_lookup(s, h, p);
1790 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001791 if (sym && (sym->st_info&0xf) == STT_TLS)
1792 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001793 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1794 return p->funcdescs + (sym - p->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001795 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001796 return laddr(p, sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001797 if (p->deps) for (i=0; p->deps[i]; i++) {
Alexander Monakov8f08a582015-06-28 02:48:33 +03001798 if ((ght = p->deps[i]->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001799 if (!gh) gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001800 sym = gnu_lookup(gh, ght, p->deps[i], s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001801 } else {
1802 if (!h) h = sysv_hash(s);
1803 sym = sysv_lookup(s, h, p->deps[i]);
1804 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001805 if (sym && (sym->st_info&0xf) == STT_TLS)
1806 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001807 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1808 return p->deps[i]->funcdescs + (sym - p->deps[i]->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001809 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001810 return laddr(p->deps[i], sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001811 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001812failed:
Rich Felker01d42742015-04-18 18:00:22 -04001813 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001814 return 0;
1815}
1816
Rich Felker839cc4e2014-01-06 22:03:38 -05001817int __dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001818{
1819 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001820 Sym *sym, *bestsym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001821 uint32_t nsym;
1822 char *strings;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001823 void *best = 0;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001824
1825 pthread_rwlock_rdlock(&lock);
Rich Felker6c5cad22015-09-22 23:41:41 +00001826 p = addr2dso((size_t)addr);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001827 pthread_rwlock_unlock(&lock);
1828
1829 if (!p) return 0;
1830
1831 sym = p->syms;
1832 strings = p->strings;
Rich Felker39581442015-09-21 21:47:50 +00001833 nsym = count_syms(p);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001834
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001835 if (DL_FDPIC) {
1836 size_t idx = ((size_t)addr-(size_t)p->funcdescs)
1837 / sizeof(*p->funcdescs);
1838 if (idx < nsym && (sym[idx].st_info&0xf) == STT_FUNC) {
1839 best = p->funcdescs + idx;
1840 bestsym = sym + idx;
1841 }
1842 }
1843
1844 if (!best) for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001845 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001846 && (1<<(sym->st_info&0xf) & OK_TYPES)
1847 && (1<<(sym->st_info>>4) & OK_BINDS)) {
Rich Felker301335a2015-09-17 17:18:09 +00001848 void *symaddr = laddr(p, sym->st_value);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001849 if (symaddr > addr || symaddr < best)
1850 continue;
1851 best = symaddr;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001852 bestsym = sym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001853 if (addr == symaddr)
1854 break;
1855 }
1856 }
1857
1858 if (!best) return 0;
1859
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001860 if (DL_FDPIC && (bestsym->st_info&0xf) == STT_FUNC)
1861 best = p->funcdescs + (bestsym - p->syms);
1862
Rich Felkerf419bcb2012-08-26 21:09:26 -04001863 info->dli_fname = p->name;
1864 info->dli_fbase = p->base;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001865 info->dli_sname = strings + bestsym->st_name;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001866 info->dli_saddr = best;
1867
1868 return 1;
1869}
1870
Rich Felker72b25dd2015-04-14 11:39:11 -04001871__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001872void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001873{
1874 void *res;
1875 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001876 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001877 pthread_rwlock_unlock(&lock);
1878 return res;
1879}
Rich Felker18c0e022012-10-31 21:27:48 -04001880
1881int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1882{
1883 struct dso *current;
1884 struct dl_phdr_info info;
1885 int ret = 0;
1886 for(current = head; current;) {
1887 info.dlpi_addr = (uintptr_t)current->base;
1888 info.dlpi_name = current->name;
1889 info.dlpi_phdr = current->phdr;
1890 info.dlpi_phnum = current->phnum;
1891 info.dlpi_adds = gencnt;
1892 info.dlpi_subs = 0;
1893 info.dlpi_tls_modid = current->tls_id;
Rich Felkerd56460c2015-11-12 15:50:26 -05001894 info.dlpi_tls_data = current->tls.image;
Rich Felker18c0e022012-10-31 21:27:48 -04001895
1896 ret = (callback)(&info, sizeof (info), data);
1897
1898 if (ret != 0) break;
1899
1900 pthread_rwlock_rdlock(&lock);
1901 current = current->next;
1902 pthread_rwlock_unlock(&lock);
1903 }
1904 return ret;
1905}
Rich Felker5a09a532012-02-03 03:16:07 -05001906#else
Rich Felker4d982802013-01-16 11:49:00 -05001907static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001908{
Rich Felker01d42742015-04-18 18:00:22 -04001909 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001910 return 1;
1911}
Rich Felker5a09a532012-02-03 03:16:07 -05001912void *dlopen(const char *file, int mode)
1913{
Rich Felker01d42742015-04-18 18:00:22 -04001914 error("Dynamic loading not supported");
Rich Felker5a09a532012-02-03 03:16:07 -05001915 return 0;
1916}
Rich Felker400c5e52012-09-06 22:44:55 -04001917void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001918{
Rich Felker01d42742015-04-18 18:00:22 -04001919 error("Symbol not found: %s", s);
Rich Felker5a09a532012-02-03 03:16:07 -05001920 return 0;
1921}
Rich Felker839cc4e2014-01-06 22:03:38 -05001922int __dladdr (const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001923{
1924 return 0;
1925}
Rich Felker5a09a532012-02-03 03:16:07 -05001926#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001927
Rich Felker780cbbe2013-06-29 12:46:46 -04001928int __dlinfo(void *dso, int req, void *res)
1929{
1930 if (invalid_dso_handle(dso)) return -1;
1931 if (req != RTLD_DI_LINKMAP) {
Rich Felker01d42742015-04-18 18:00:22 -04001932 error("Unsupported request %d", req);
Rich Felker780cbbe2013-06-29 12:46:46 -04001933 return -1;
1934 }
1935 *(struct link_map **)res = dso;
1936 return 0;
1937}
1938
Rich Felker59ab43f2011-06-26 19:23:28 -04001939char *dlerror()
1940{
Rich Felker01d42742015-04-18 18:00:22 -04001941 pthread_t self = __pthread_self();
1942 if (!self->dlerror_flag) return 0;
1943 self->dlerror_flag = 0;
1944 char *s = self->dlerror_buf;
1945 if (s == (void *)-1)
1946 return "Dynamic linker failed to allocate memory for error message";
1947 else
1948 return s;
Rich Felker59ab43f2011-06-26 19:23:28 -04001949}
1950
1951int dlclose(void *p)
1952{
Rich Felker6468fc92013-01-10 14:05:40 -05001953 return invalid_dso_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001954}
Rich Felker01d42742015-04-18 18:00:22 -04001955
1956void __dl_thread_cleanup(void)
1957{
1958 pthread_t self = __pthread_self();
1959 if (self->dlerror_buf != (void *)-1)
1960 free(self->dlerror_buf);
1961}
1962
1963static void error(const char *fmt, ...)
1964{
1965 va_list ap;
1966 va_start(ap, fmt);
1967#ifdef SHARED
1968 if (!runtime) {
1969 vdprintf(2, fmt, ap);
1970 dprintf(2, "\n");
1971 ldso_fail = 1;
1972 va_end(ap);
1973 return;
1974 }
1975#endif
1976 pthread_t self = __pthread_self();
1977 if (self->dlerror_buf != (void *)-1)
1978 free(self->dlerror_buf);
1979 size_t len = vsnprintf(0, 0, fmt, ap);
1980 va_end(ap);
1981 char *buf = malloc(len+1);
1982 if (buf) {
1983 va_start(ap, fmt);
1984 vsnprintf(buf, len+1, fmt, ap);
1985 va_end(ap);
1986 } else {
1987 buf = (void *)-1;
1988 }
1989 self->dlerror_buf = buf;
1990 self->dlerror_flag = 1;
1991}