blob: cab30089e5d1cc0ceeb58f50d1f81805f1ad11b7 [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 Felkerbc6a35f2012-10-04 20:04:13 -040073 void *tls_image;
Rich Felker9c748562012-10-04 22:48:33 -040074 size_t tls_len, tls_size, tls_align, tls_id, tls_offset;
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 Felker60872cf2012-04-24 18:07:59 -0400102
Rich Felker179ab5a2013-12-01 17:27:25 -0500103const char *__libc_get_version(void);
104
Rich Felkerbd679592015-03-06 13:27:08 -0500105static struct builtin_tls {
106 char c;
107 struct pthread pt;
108 void *space[16];
109} builtin_tls[1];
110#define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
111
Rich Felker9bbddf72015-05-25 23:33:59 -0400112#define ADDEND_LIMIT 4096
113static size_t *saved_addends, *apply_addends_to;
114
Rich Felkerf3ddd172015-04-13 02:56:26 -0400115static struct dso ldso;
116static struct dso *head, *tail, *fini_head;
Rich Felker709355e2013-08-23 11:15:40 -0400117static char *env_path, *sys_path;
Rich Felker18c0e022012-10-31 21:27:48 -0400118static unsigned long long gencnt;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400119static int runtime;
Rich Felker5c1909a2012-05-27 16:01:44 -0400120static int ldd_mode;
Rich Felker04109502012-08-18 16:00:23 -0400121static int ldso_fail;
Rich Felker4d07e552013-01-23 22:07:45 -0500122static int noload;
Rich Felker17276be2013-07-24 02:38:05 -0400123static jmp_buf *rtld_fail;
Rich Felker59ab43f2011-06-26 19:23:28 -0400124static pthread_rwlock_t lock;
Rich Felker3ec8d292012-04-25 00:05:42 -0400125static struct debug debug;
Rich Felkerbd679592015-03-06 13:27:08 -0500126static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
Rich Felker9d15d5e2014-06-19 02:01:06 -0400127static size_t static_tls_cnt;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400128static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
Rich Felker7a9669e2015-09-22 03:54:42 +0000129static struct fdpic_loadmap *app_loadmap;
130static struct fdpic_dummy_loadmap app_dummy_loadmap;
Rich Felker3ec8d292012-04-25 00:05:42 -0400131
132struct debug *_dl_debug_addr = &debug;
Rich Felker51e2d832011-06-18 19:48:42 -0400133
Rich Felkerf3ddd172015-04-13 02:56:26 -0400134static int dl_strcmp(const char *l, const char *r)
135{
136 for (; *l==*r && *l; l++, r++);
137 return *(unsigned char *)l - *(unsigned char *)r;
138}
139#define strcmp(l,r) dl_strcmp(l,r)
Rich Felker51e2d832011-06-18 19:48:42 -0400140
Rich Felker301335a2015-09-17 17:18:09 +0000141/* Compute load address for a virtual address in a given dso. */
Rich Felker78f43022015-09-22 20:20:39 +0000142#if DL_FDPIC
Rich Felker7a9669e2015-09-22 03:54:42 +0000143static void *laddr(const struct dso *p, size_t v)
144{
145 size_t j=0;
146 if (!p->loadmap) return p->base + v;
147 for (j=0; v-p->loadmap->segs[j].p_vaddr >= p->loadmap->segs[j].p_memsz; j++);
148 return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
149}
150#define fpaddr(p, v) ((void (*)())&(struct funcdesc){ \
151 laddr(p, v), (p)->got })
152#else
Rich Felker301335a2015-09-17 17:18:09 +0000153#define laddr(p, v) (void *)((p)->base + (v))
Rich Felker7a9669e2015-09-22 03:54:42 +0000154#define fpaddr(p, v) ((void (*)())laddr(p, v))
155#endif
Rich Felker301335a2015-09-17 17:18:09 +0000156
Rich Felker51e2d832011-06-18 19:48:42 -0400157static void decode_vec(size_t *v, size_t *a, size_t cnt)
158{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400159 size_t i;
160 for (i=0; i<cnt; i++) a[i] = 0;
161 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
162 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400163 a[v[0]] = v[1];
164 }
165}
166
Rich Felker2bd05a42012-08-25 17:13:28 -0400167static int search_vec(size_t *v, size_t *r, size_t key)
168{
169 for (; v[0]!=key; v+=2)
170 if (!v[0]) return 0;
171 *r = v[1];
172 return 1;
173}
174
175static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400176{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500177 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400178 uint_fast32_t h = 0;
179 while (*s) {
180 h = 16*h + *s++;
181 h ^= h>>24 & 0xf0;
182 }
183 return h & 0xfffffff;
184}
185
Rich Felker2bd05a42012-08-25 17:13:28 -0400186static uint32_t gnu_hash(const char *s0)
187{
188 const unsigned char *s = (void *)s0;
189 uint_fast32_t h = 5381;
190 for (; *s; s++)
Alexander Monakov66d45782015-06-28 02:48:30 +0300191 h += h*32 + *s;
Rich Felker2bd05a42012-08-25 17:13:28 -0400192 return h;
193}
194
195static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400196{
197 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400198 Sym *syms = dso->syms;
199 uint32_t *hashtab = dso->hashtab;
200 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400201 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400202 if ((!dso->versym || dso->versym[i] >= 0)
203 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400204 return syms+i;
205 }
206 return 0;
207}
208
Alexander Monakov8f08a582015-06-28 02:48:33 +0300209static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
Rich Felker2bd05a42012-08-25 17:13:28 -0400210{
Rich Felker2bd05a42012-08-25 17:13:28 -0400211 uint32_t nbuckets = hashtab[0];
212 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
Rich Felker72482f92013-08-08 16:10:35 -0400213 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400214
Rich Felker72482f92013-08-08 16:10:35 -0400215 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400216
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300217 uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400218
Rich Felker72482f92013-08-08 16:10:35 -0400219 for (h1 |= 1; ; i++) {
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300220 uint32_t h2 = *hashval++;
221 if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
222 && !strcmp(s, dso->strings + dso->syms[i].st_name))
223 return dso->syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400224 if (h2 & 1) break;
225 }
226
227 return 0;
228}
229
Alexander Monakov8f08a582015-06-28 02:48:33 +0300230static 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 +0300231{
Alexander Monakov84389c62015-06-28 02:48:31 +0300232 const size_t *bloomwords = (const void *)(hashtab+4);
233 size_t f = bloomwords[fofs & (hashtab[2]-1)];
234 if (!(f & fmask)) return 0;
235
236 f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
237 if (!(f & 1)) return 0;
238
Alexander Monakov8f08a582015-06-28 02:48:33 +0300239 return gnu_lookup(h1, hashtab, dso, s);
Alexander Monakov84389c62015-06-28 02:48:31 +0300240}
241
Rich Felker9c748562012-10-04 22:48:33 -0400242#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 -0400243#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400244
Rich Felker2d8cc922014-06-30 01:18:14 -0400245#ifndef ARCH_SYM_REJECT_UND
246#define ARCH_SYM_REJECT_UND(s) 0
247#endif
248
Rich Felker9c748562012-10-04 22:48:33 -0400249static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400250{
Alexander Monakov8f08a582015-06-28 02:48:33 +0300251 uint32_t h = 0, gh, gho, *ght;
Alexander Monakov84389c62015-06-28 02:48:31 +0300252 size_t ghm = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400253 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400254 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400255 Sym *sym;
256 if (!dso->global) continue;
Alexander Monakov8f08a582015-06-28 02:48:33 +0300257 if ((ght = dso->ghashtab)) {
Alexander Monakov84389c62015-06-28 02:48:31 +0300258 if (!ghm) {
259 gh = gnu_hash(s);
260 int maskbits = 8 * sizeof ghm;
261 gho = gh / maskbits;
262 ghm = 1ul << gh % maskbits;
263 }
Alexander Monakov8f08a582015-06-28 02:48:33 +0300264 sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
Rich Felker2bd05a42012-08-25 17:13:28 -0400265 } else {
266 if (!h) h = sysv_hash(s);
267 sym = sysv_lookup(s, h, dso);
268 }
Rich Felkerbd174312012-10-06 01:36:11 -0400269 if (!sym) continue;
270 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400271 if (need_def || (sym->st_info&0xf) == STT_TLS
272 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400273 continue;
274 if (!sym->st_value)
275 if ((sym->st_info&0xf) != STT_TLS)
276 continue;
277 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
278 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
279
280 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
281 def.sym = sym;
282 def.dso = dso;
283 if (sym->st_info>>4 == STB_GLOBAL) break;
Rich Felker51e2d832011-06-18 19:48:42 -0400284 }
Rich Felker427173b2011-07-24 02:19:47 -0400285 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400286}
287
Rich Felker1b1cafa2015-04-17 23:29:45 -0400288__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400289ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
290
Rich Felker87d13a42012-08-05 02:49:02 -0400291static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400292{
Rich Felker87d13a42012-08-05 02:49:02 -0400293 unsigned char *base = dso->base;
294 Sym *syms = dso->syms;
295 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400296 Sym *sym;
297 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400298 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400299 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400300 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400301 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400302 size_t *reloc_addr;
303 size_t sym_val;
304 size_t tls_val;
305 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400306 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
307
308 if (dso == &ldso) {
309 /* Only ldso's REL table needs addend saving/reuse. */
310 if (rel == apply_addends_to)
311 reuse_addends = 1;
312 skip_relative = 1;
313 }
Rich Felker51e2d832011-06-18 19:48:42 -0400314
315 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker7a9669e2015-09-22 03:54:42 +0000316 if (skip_relative && IS_RELATIVE(rel[1], dso->syms)) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400317 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400318 if (type == REL_NONE) continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400319 sym_index = R_SYM(rel[1]);
Rich Felkera735f532015-09-17 17:50:43 +0000320 reloc_addr = laddr(dso, rel[0]);
Rich Felker51e2d832011-06-18 19:48:42 -0400321 if (sym_index) {
322 sym = syms + sym_index;
323 name = strings + sym->st_name;
Rich Felkeradf94c12014-06-18 02:44:02 -0400324 ctx = type==REL_COPY ? head->next : head;
Rich Felker7a9669e2015-09-22 03:54:42 +0000325 def = (sym->st_info&0xf) == STT_SECTION
326 ? (struct symdef){ .dso = dso, .sym = sym }
327 : find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500328 if (!def.sym && (sym->st_shndx != SHN_UNDEF
329 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400330 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400331 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400332 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400333 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400334 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400335 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400336 sym = 0;
337 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400338 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400339 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400340
Rich Felker9bbddf72015-05-25 23:33:59 -0400341 if (stride > 2) {
342 addend = rel[2];
343 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
344 addend = 0;
345 } else if (reuse_addends) {
346 /* Save original addend in stage 2 where the dso
347 * chain consists of just ldso; otherwise read back
348 * saved addend since the inline one was clobbered. */
349 if (head==&ldso)
350 saved_addends[save_slot] = *reloc_addr;
351 addend = saved_addends[save_slot++];
352 } else {
353 addend = *reloc_addr;
354 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400355
Rich Felkera735f532015-09-17 17:50:43 +0000356 sym_val = def.sym ? (size_t)laddr(def.dso, def.sym->st_value) : 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400357 tls_val = def.sym ? def.sym->st_value : 0;
358
359 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400360 case REL_NONE:
361 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400362 case REL_OFFSET:
363 addend -= (size_t)reloc_addr;
364 case REL_SYMBOLIC:
365 case REL_GOT:
366 case REL_PLT:
367 *reloc_addr = sym_val + addend;
368 break;
369 case REL_RELATIVE:
370 *reloc_addr = (size_t)base + addend;
371 break;
372 case REL_SYM_OR_REL:
373 if (sym) *reloc_addr = sym_val + addend;
374 else *reloc_addr = (size_t)base + addend;
375 break;
376 case REL_COPY:
377 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
378 break;
379 case REL_OFFSET32:
380 *(uint32_t *)reloc_addr = sym_val + addend
381 - (size_t)reloc_addr;
382 break;
Rich Felker7a9669e2015-09-22 03:54:42 +0000383 case REL_FUNCDESC:
384 *reloc_addr = def.sym ? (size_t)(def.dso->funcdescs
385 + (def.sym - def.dso->syms)) : 0;
386 break;
387 case REL_FUNCDESC_VAL:
388 if ((sym->st_info&0xf) == STT_SECTION) *reloc_addr += sym_val;
389 else *reloc_addr = sym_val;
390 reloc_addr[1] = def.sym ? (size_t)def.dso->got : 0;
391 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400392 case REL_DTPMOD:
393 *reloc_addr = def.dso->tls_id;
394 break;
395 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000396 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400397 break;
398#ifdef TLS_ABOVE_TP
399 case REL_TPOFF:
400 *reloc_addr = tls_val + def.dso->tls_offset + TPOFF_K + addend;
401 break;
402#else
403 case REL_TPOFF:
404 *reloc_addr = tls_val - def.dso->tls_offset + addend;
405 break;
406 case REL_TPOFF_NEG:
407 *reloc_addr = def.dso->tls_offset - tls_val + addend;
408 break;
409#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400410 case REL_TLSDESC:
411 if (stride<3) addend = reloc_addr[1];
412 if (runtime && def.dso->tls_id >= static_tls_cnt) {
413 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400414 if (!new) {
415 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400416 "Error relocating %s: cannot allocate TLSDESC for %s",
417 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400418 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400419 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400420 new->next = dso->td_index;
421 dso->td_index = new;
422 new->args[0] = def.dso->tls_id;
423 new->args[1] = tls_val + addend;
424 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
425 reloc_addr[1] = (size_t)new;
426 } else {
427 reloc_addr[0] = (size_t)__tlsdesc_static;
428#ifdef TLS_ABOVE_TP
429 reloc_addr[1] = tls_val + def.dso->tls_offset
430 + TPOFF_K + addend;
431#else
432 reloc_addr[1] = tls_val - def.dso->tls_offset
433 + addend;
434#endif
435 }
436 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400437 default:
438 error("Error relocating %s: unsupported relocation type %d",
439 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400440 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400441 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400442 }
Rich Felker51e2d832011-06-18 19:48:42 -0400443 }
444}
445
Rich Felker6717e622011-06-28 19:40:14 -0400446/* A huge hack: to make up for the wastefulness of shared libraries
447 * needing at least a page of dirty memory even if they have no global
448 * data, we reclaim the gaps at the beginning and end of writable maps
449 * and "donate" them to the heap by setting up minimal malloc
450 * structures and then freeing them. */
451
Timo Teräse13a2b82014-03-25 14:13:27 +0200452static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400453{
454 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200455 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
456 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400457 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
458 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
459 if (start>end || end-start < 4*sizeof(size_t)) return;
Rich Felker301335a2015-09-17 17:18:09 +0000460 a = laddr(dso, start);
461 z = laddr(dso, end);
Rich Felker6717e622011-06-28 19:40:14 -0400462 a[-2] = 1;
463 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
464 z[1] = 1;
465 free(a);
466}
467
Timo Teräs87691962014-03-25 20:59:50 +0200468static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400469{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400470 Phdr *ph = dso->phdr;
471 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200472
Rich Felker7a9669e2015-09-22 03:54:42 +0000473 if (DL_FDPIC) return; // FIXME
Rich Felkerfa7248c2014-03-25 16:21:50 -0400474 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400475 if (ph->p_type!=PT_LOAD) continue;
476 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200477 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
478 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400479 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
480 }
481}
482
Rich Felkerce337da2015-06-23 04:03:42 +0000483static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
484{
485 char *q = mmap(p, n, prot, flags, fd, off);
486 if (q != MAP_FAILED || errno != EINVAL) return q;
487 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
488 if (flags & MAP_ANONYMOUS) {
489 memset(p, 0, n);
490 return p;
491 }
492 ssize_t r;
493 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
494 for (q=p; n; q+=r, off+=r, n-=r) {
495 r = read(fd, q, n);
496 if (r < 0 && errno != EINTR) return MAP_FAILED;
497 if (!r) {
498 memset(q, 0, n);
499 break;
500 }
501 }
502 return p;
503}
504
Rich Felkereaf7ab62015-09-22 19:12:48 +0000505static void unmap_library(struct dso *dso)
506{
507 if (dso->loadmap) {
508 size_t i;
509 for (i=0; i<dso->loadmap->nsegs; i++) {
510 if (!dso->loadmap->segs[i].p_memsz)
511 continue;
512 munmap((void *)dso->loadmap->segs[i].addr,
513 dso->loadmap->segs[i].p_memsz);
514 }
515 free(dso->loadmap);
516 } else if (dso->map && dso->map_len) {
517 munmap(dso->map, dso->map_len);
518 }
519}
520
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400521static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400522{
Rich Felker59633c72011-06-25 12:26:08 -0400523 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400524 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400525 size_t phsize;
526 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
527 size_t this_min, this_max;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000528 size_t nsegs = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400529 off_t off_start;
530 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400531 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400532 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400533 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400534 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400535 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400536 size_t i;
537
538 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400539 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400540 if (l<0) return 0;
541 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
542 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400543 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400544 if (phsize > sizeof buf - sizeof *eh) {
545 allocated_buf = malloc(phsize);
546 if (!allocated_buf) return 0;
547 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
548 if (l < 0) goto error;
549 if (l != phsize) goto noexec;
550 ph = ph0 = allocated_buf;
551 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400552 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400553 if (l < 0) goto error;
554 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400555 ph = ph0 = (void *)(buf + 1);
556 } else {
557 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400558 }
Rich Felker51e2d832011-06-18 19:48:42 -0400559 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400560 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400561 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400562 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400563 tls_image = ph->p_vaddr;
564 dso->tls_align = ph->p_align;
565 dso->tls_len = ph->p_filesz;
566 dso->tls_size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200567 } else if (ph->p_type == PT_GNU_RELRO) {
568 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
569 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400570 }
Rich Felker51e2d832011-06-18 19:48:42 -0400571 if (ph->p_type != PT_LOAD) continue;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000572 nsegs++;
Rich Felker51e2d832011-06-18 19:48:42 -0400573 if (ph->p_vaddr < addr_min) {
574 addr_min = ph->p_vaddr;
575 off_start = ph->p_offset;
576 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
577 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
578 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
579 }
580 if (ph->p_vaddr+ph->p_memsz > addr_max) {
581 addr_max = ph->p_vaddr+ph->p_memsz;
582 }
583 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400584 if (!dyn) goto noexec;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000585 if (DL_FDPIC && !(eh->e_flags & FDPIC_CONSTDISP_FLAG)) {
586 dso->loadmap = calloc(1, sizeof *dso->loadmap
587 + nsegs * sizeof *dso->loadmap->segs);
588 if (!dso->loadmap) goto error;
589 dso->loadmap->nsegs = nsegs;
590 for (ph=ph0, i=0; i<nsegs; ph=(void *)((char *)ph+eh->e_phentsize)) {
591 if (ph->p_type != PT_LOAD) continue;
592 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
593 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
594 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
595 map = mmap(0, ph->p_memsz + (ph->p_vaddr & PAGE_SIZE-1),
596 prot, (prot&PROT_WRITE) ? MAP_PRIVATE : MAP_SHARED,
597 fd, ph->p_offset & -PAGE_SIZE);
598 if (map == MAP_FAILED) {
599 unmap_library(dso);
600 goto error;
601 }
602 dso->loadmap->segs[i].addr = (size_t)map +
603 (ph->p_vaddr & PAGE_SIZE-1);
604 dso->loadmap->segs[i].p_vaddr = ph->p_vaddr;
605 dso->loadmap->segs[i].p_memsz = ph->p_memsz;
606 i++;
607 }
608 map = (void *)dso->loadmap->segs[0].addr;
609 map_len = 0;
610 goto done_mapping;
611 }
Rich Felker51e2d832011-06-18 19:48:42 -0400612 addr_max += PAGE_SIZE-1;
613 addr_max &= -PAGE_SIZE;
614 addr_min &= -PAGE_SIZE;
615 off_start &= -PAGE_SIZE;
616 map_len = addr_max - addr_min + off_start;
617 /* The first time, we map too much, possibly even more than
618 * the length of the file. This is okay because we will not
619 * use the invalid part; we just need to reserve the right
620 * amount of virtual address space to map over later. */
Rich Felkerbf301002011-06-28 14:20:41 -0400621 map = mmap((void *)addr_min, map_len, prot, MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400622 if (map==MAP_FAILED) goto error;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000623 dso->map = map;
624 dso->map_len = map_len;
Rich Felker339516a2013-07-31 14:42:08 -0400625 /* If the loaded file is not relocatable and the requested address is
626 * not available, then the load operation must fail. */
627 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
628 errno = EBUSY;
629 goto error;
630 }
Rich Felker51e2d832011-06-18 19:48:42 -0400631 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400632 dso->phdr = 0;
633 dso->phnum = 0;
634 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400635 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400636 /* Check if the programs headers are in this load segment, and
637 * if so, record the address for use by dl_iterate_phdr. */
638 if (!dso->phdr && eh->e_phoff >= ph->p_offset
639 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
640 dso->phdr = (void *)(base + ph->p_vaddr
641 + (eh->e_phoff-ph->p_offset));
642 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200643 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400644 }
Rich Felker51e2d832011-06-18 19:48:42 -0400645 /* Reuse the existing mapping for the lowest-address LOAD */
646 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min) continue;
647 this_min = ph->p_vaddr & -PAGE_SIZE;
648 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
649 off_start = ph->p_offset & -PAGE_SIZE;
650 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
651 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
652 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000653 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 -0400654 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400655 if (ph->p_memsz > ph->p_filesz) {
656 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
657 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
658 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000659 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 -0400660 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400661 }
662 }
Rich Felker9f174132011-06-29 00:29:08 -0400663 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
664 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000665 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
666 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400667 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400668 break;
669 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000670done_mapping:
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400671 dso->base = base;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000672 dso->dynv = laddr(dso, dyn);
673 if (dso->tls_size) dso->tls_image = laddr(dso, tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200674 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400675 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400676 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400677noexec:
678 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400679error:
Rich Felkereaf7ab62015-09-22 19:12:48 +0000680 if (map!=MAP_FAILED) unmap_library(dso);
Rich Felkerd5884a52013-08-02 09:56:49 -0400681 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400682 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400683}
684
Rich Felker8c203ea2013-04-20 11:51:58 -0400685static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400686{
Rich Felker8c203ea2013-04-20 11:51:58 -0400687 size_t l;
688 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400689 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400690 s += strspn(s, ":\n");
691 l = strcspn(s, ":\n");
692 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400693 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
694 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
695 switch (errno) {
696 case ENOENT:
697 case ENOTDIR:
698 case EACCES:
699 case ENAMETOOLONG:
700 break;
701 default:
702 /* Any negative value but -1 will inhibit
703 * futher path search. */
704 return -2;
705 }
706 }
Rich Felker49388f32011-06-25 17:49:16 -0400707 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400708 }
Rich Felker568b8072011-06-25 01:56:34 -0400709}
710
Rich Felkera897a202013-08-23 13:56:30 -0400711static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
712{
713 size_t n, l;
714 const char *s, *t, *origin;
715 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400716 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400717 if (!strchr(p->rpath_orig, '$')) {
718 p->rpath = p->rpath_orig;
719 return 0;
720 }
721 n = 0;
722 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400723 while ((t=strchr(s, '$'))) {
724 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400725 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400726 s = t+1;
727 n++;
728 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400729 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400730
731 if (p->kernel_mapped) {
732 /* $ORIGIN searches cannot be performed for the main program
733 * when it is suid/sgid/AT_SECURE. This is because the
734 * pathname is under the control of the caller of execve.
735 * For libraries, however, $ORIGIN can be processed safely
736 * since the library's pathname came from a trusted source
737 * (either system paths or a call to dlopen). */
738 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400739 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400740 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400741 if (l == -1) switch (errno) {
742 case ENOENT:
743 case ENOTDIR:
744 case EACCES:
745 break;
746 default:
Rich Felkera897a202013-08-23 13:56:30 -0400747 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400748 }
749 if (l >= buf_size)
750 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400751 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400752 origin = buf;
753 } else {
754 origin = p->name;
755 }
756 t = strrchr(origin, '/');
757 l = t ? t-origin : 0;
758 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
759 if (!p->rpath) return -1;
760
761 d = p->rpath;
762 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400763 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400764 memcpy(d, s, t-s);
765 d += t-s;
766 memcpy(d, origin, l);
767 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400768 /* It was determined previously that the '$' is followed
769 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400770 s = t + 7 + 2*(t[1]=='{');
771 }
772 strcpy(d, s);
773 return 0;
774}
775
Rich Felkerc82f4a32012-01-23 00:57:38 -0500776static void decode_dyn(struct dso *p)
777{
Rich Felkerf4f95622015-04-13 22:38:18 -0400778 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500779 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felker301335a2015-09-17 17:18:09 +0000780 p->syms = laddr(p, dyn[DT_SYMTAB]);
781 p->strings = laddr(p, dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400782 if (dyn[0]&(1<<DT_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000783 p->hashtab = laddr(p, dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400784 if (dyn[0]&(1<<DT_RPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000785 p->rpath_orig = p->strings + dyn[DT_RPATH];
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500786 if (dyn[0]&(1<<DT_RUNPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000787 p->rpath_orig = p->strings + dyn[DT_RUNPATH];
Rich Felker7a9669e2015-09-22 03:54:42 +0000788 if (dyn[0]&(1<<DT_PLTGOT))
789 p->got = laddr(p, dyn[DT_PLTGOT]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400790 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000791 p->ghashtab = laddr(p, *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400792 if (search_vec(p->dynv, dyn, DT_VERSYM))
Rich Felker301335a2015-09-17 17:18:09 +0000793 p->versym = laddr(p, *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500794}
795
Rich Felker39581442015-09-21 21:47:50 +0000796static size_t count_syms(struct dso *p)
797{
798 if (p->hashtab) return p->hashtab[1];
799
800 size_t nsym, i;
801 uint32_t *buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
802 uint32_t *hashval;
803 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
804 if (buckets[i] > nsym)
805 nsym = buckets[i];
806 }
807 if (nsym) {
808 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]);
809 do nsym++;
810 while (!(*hashval++ & 1));
811 }
812 return nsym;
813}
814
Rich Felker7a9669e2015-09-22 03:54:42 +0000815static void *dl_mmap(size_t n)
816{
817 void *p;
818 int prot = PROT_READ|PROT_WRITE, flags = MAP_ANONYMOUS|MAP_PRIVATE;
819#ifdef SYS_mmap2
820 p = (void *)__syscall(SYS_mmap2, 0, n, prot, flags, -1, 0);
821#else
822 p = (void *)__syscall(SYS_mmap, 0, n, prot, flags, -1, 0);
823#endif
824 return p == MAP_FAILED ? 0 : p;
825}
826
827static void makefuncdescs(struct dso *p)
828{
829 static int self_done;
830 size_t nsym = count_syms(p);
831 size_t i, size = nsym * sizeof(*p->funcdescs);
832
833 if (!self_done) {
834 p->funcdescs = dl_mmap(size);
835 self_done = 1;
836 } else {
837 p->funcdescs = malloc(size);
838 }
839 if (!p->funcdescs) {
840 if (!runtime) a_crash();
841 error("Error allocating function descriptors for %s", p->name);
842 longjmp(*rtld_fail, 1);
843 }
844 for (i=0; i<nsym; i++) {
845 if ((p->syms[i].st_info&0xf)==STT_FUNC && p->syms[i].st_shndx) {
846 p->funcdescs[i].addr = laddr(p, p->syms[i].st_value);
847 p->funcdescs[i].got = p->got;
848 } else {
849 p->funcdescs[i].addr = 0;
850 p->funcdescs[i].got = 0;
851 }
852 }
853}
854
Rich Felker709355e2013-08-23 11:15:40 -0400855static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400856{
Rich Felker5c1909a2012-05-27 16:01:44 -0400857 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400858 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500859 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400860 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400861 int fd;
862 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400863 size_t alloc_size;
864 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400865 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400866
Rich Felker59549312014-07-11 00:29:44 -0400867 if (!*name) {
868 errno = EINVAL;
869 return 0;
870 }
871
Rich Felker51e2d832011-06-18 19:48:42 -0400872 /* Catch and block attempts to reload the implementation itself */
873 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
874 static const char *rp, reserved[] =
875 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
876 char *z = strchr(name, '.');
877 if (z) {
878 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400879 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400880 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400881 if (ldd_mode) {
882 /* Track which names have been resolved
883 * and only report each one once. */
884 static unsigned reported;
885 unsigned mask = 1U<<(rp-reserved);
886 if (!(reported & mask)) {
887 reported |= mask;
888 dprintf(1, "\t%s => %s (%p)\n",
Rich Felkerf3ddd172015-04-13 02:56:26 -0400889 name, ldso.name,
890 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400891 }
892 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400893 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400894 }
895 }
896 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400897 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400898 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400899 if (!ldso.prev) {
900 tail->next = &ldso;
901 ldso.prev = tail;
902 tail = ldso.next ? ldso.next : &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400903 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400904 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400905 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400906 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400907 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400908 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400909 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400910 /* Search for the name to see if it's already loaded */
911 for (p=head->next; p; p=p->next) {
912 if (p->shortname && !strcmp(p->shortname, name)) {
913 p->refcnt++;
914 return p;
915 }
916 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400917 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400918 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400919 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400920 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
921 if (fixup_rpath(p, buf, sizeof buf) < 0)
922 fd = -2; /* Inhibit further search. */
923 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400924 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400925 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400926 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400927 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400928 char *prefix = 0;
929 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400930 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400931 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400932 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400933 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400934 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400935 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400936 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400937 }
938 if (!prefix) {
939 prefix = "";
940 prefix_len = 0;
941 }
942 char etc_ldso_path[prefix_len + 1
943 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
944 snprintf(etc_ldso_path, sizeof etc_ldso_path,
945 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
946 (int)prefix_len, prefix);
947 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400948 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400949 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400950 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400951 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500952 }
Rich Felker568b8072011-06-25 01:56:34 -0400953 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400954 } else if (errno != ENOENT) {
955 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400956 }
957 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500958 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
959 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400960 }
Rich Felker0420b872012-07-11 01:41:20 -0400961 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400962 }
963 if (fd < 0) return 0;
964 if (fstat(fd, &st) < 0) {
965 close(fd);
966 return 0;
967 }
968 for (p=head->next; p; p=p->next) {
969 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -0400970 /* If this library was previously loaded with a
971 * pathname but a search found the same inode,
972 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -0400973 if (!p->shortname && pathname != name)
974 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -0400975 close(fd);
976 p->refcnt++;
977 return p;
978 }
979 }
Rich Felker4d07e552013-01-23 22:07:45 -0500980 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -0400981 close(fd);
982 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -0400983
984 /* Allocate storage for the new DSO. When there is TLS, this
985 * storage must include a reservation for all pre-existing
986 * threads to obtain copies of both the new TLS, and an
987 * extended DTV capable of storing an additional slot for
988 * the newly-loaded DSO. */
989 alloc_size = sizeof *p + strlen(pathname) + 1;
990 if (runtime && temp_dso.tls_image) {
991 size_t per_th = temp_dso.tls_size + temp_dso.tls_align
992 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -0400993 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400994 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
995 else alloc_size += n_th * per_th;
996 }
997 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -0400998 if (!p) {
Rich Felkereaf7ab62015-09-22 19:12:48 +0000999 unmap_library(&temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001000 return 0;
1001 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001002 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001003 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -04001004 p->dev = st.st_dev;
1005 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -04001006 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -04001007 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001008 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -04001009 strcpy(p->name, pathname);
1010 /* Add a shortname only if name arg was not an explicit pathname. */
1011 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerdcd60372012-10-05 11:51:50 -04001012 if (p->tls_image) {
1013 p->tls_id = ++tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001014 tls_align = MAXP2(tls_align, p->tls_align);
Rich Felker9ec42832012-10-15 18:51:53 -04001015#ifdef TLS_ABOVE_TP
1016 p->tls_offset = tls_offset + ( (tls_align-1) &
1017 -(tls_offset + (uintptr_t)p->tls_image) );
1018 tls_offset += p->tls_size;
1019#else
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001020 tls_offset += p->tls_size + p->tls_align - 1;
1021 tls_offset -= (tls_offset + (uintptr_t)p->tls_image)
1022 & (p->tls_align-1);
1023 p->tls_offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -04001024#endif
Rich Felkerdcd60372012-10-05 11:51:50 -04001025 p->new_dtv = (void *)(-sizeof(size_t) &
1026 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
1027 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
1028 }
Rich Felker51e2d832011-06-18 19:48:42 -04001029
1030 tail->next = p;
1031 p->prev = tail;
1032 tail = p;
1033
Rich Felker7a9669e2015-09-22 03:54:42 +00001034 if (DL_FDPIC) makefuncdescs(p);
1035
Rich Felker1d7c4f82012-12-15 23:34:08 -05001036 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -04001037
Rich Felker51e2d832011-06-18 19:48:42 -04001038 return p;
1039}
1040
1041static void load_deps(struct dso *p)
1042{
Rich Felker59ab43f2011-06-26 19:23:28 -04001043 size_t i, ndeps=0;
1044 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -04001045 for (; p; p=p->next) {
1046 for (i=0; p->dynv[i]; i+=2) {
1047 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -04001048 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001049 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001050 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -04001051 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001052 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -04001053 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001054 }
Rich Felker59ab43f2011-06-26 19:23:28 -04001055 if (runtime) {
1056 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -04001057 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -04001058 tmp[ndeps++] = dep;
1059 tmp[ndeps] = 0;
1060 *deps = tmp;
1061 }
Rich Felker51e2d832011-06-18 19:48:42 -04001062 }
1063 }
1064}
1065
Rich Felker2719cc82011-08-16 00:24:36 -04001066static void load_preload(char *s)
1067{
1068 int tmp;
1069 char *z;
1070 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -04001071 for ( ; *s && (isspace(*s) || *s==':'); s++);
1072 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -04001073 tmp = *z;
1074 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -04001075 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -04001076 *z = tmp;
1077 }
1078}
1079
Rich Felker59ab43f2011-06-26 19:23:28 -04001080static void make_global(struct dso *p)
1081{
1082 for (; p; p=p->next) p->global = 1;
1083}
1084
Rich Felkerf3ddd172015-04-13 02:56:26 -04001085static void do_mips_relocs(struct dso *p, size_t *got)
1086{
1087 size_t i, j, rel[2];
1088 unsigned char *base = p->base;
1089 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -04001090 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001091 got += i;
1092 } else {
1093 while (i--) *got++ += (size_t)base;
1094 }
1095 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
1096 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
1097 Sym *sym = p->syms + j;
1098 rel[0] = (unsigned char *)got - base;
1099 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
1100 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
1101 do_relocs(p, rel, sizeof rel, 2);
1102 }
1103}
1104
Rich Felker51e2d832011-06-18 19:48:42 -04001105static void reloc_all(struct dso *p)
1106{
Rich Felkerf4f95622015-04-13 22:38:18 -04001107 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -04001108 for (; p; p=p->next) {
1109 if (p->relocated) continue;
1110 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001111 if (NEED_MIPS_GOT_RELOCS)
Rich Felker2a547332015-09-17 19:45:45 +00001112 do_mips_relocs(p, laddr(p, dyn[DT_PLTGOT]));
1113 do_relocs(p, laddr(p, dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
Rich Felker87d13a42012-08-05 02:49:02 -04001114 2+(dyn[DT_PLTREL]==DT_RELA));
Rich Felker2a547332015-09-17 19:45:45 +00001115 do_relocs(p, laddr(p, dyn[DT_REL]), dyn[DT_RELSZ], 2);
1116 do_relocs(p, laddr(p, dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +02001117
Rich Felkerf3ddd172015-04-13 02:56:26 -04001118 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker2a547332015-09-17 19:45:45 +00001119 mprotect(laddr(p, p->relro_start), p->relro_end-p->relro_start, PROT_READ)
Rich Felker75eceb32015-06-17 17:21:46 +00001120 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001121 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +02001122 p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001123 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +02001124 }
1125
Rich Felker368ba4a2011-06-25 00:18:19 -04001126 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -04001127 }
1128}
1129
Timo Teräs87691962014-03-25 20:59:50 +02001130static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -05001131{
Timo Teräs87691962014-03-25 20:59:50 +02001132 size_t min_addr = -1, max_addr = 0, cnt;
1133 Phdr *ph = p->phdr;
1134 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
1135 if (ph->p_type == PT_DYNAMIC) {
Rich Felker301335a2015-09-17 17:18:09 +00001136 p->dynv = laddr(p, ph->p_vaddr);
Timo Teräs87691962014-03-25 20:59:50 +02001137 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +02001138 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
1139 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
1140 }
Rich Felkerf419bcb2012-08-26 21:09:26 -04001141 if (ph->p_type != PT_LOAD) continue;
1142 if (ph->p_vaddr < min_addr)
1143 min_addr = ph->p_vaddr;
1144 if (ph->p_vaddr+ph->p_memsz > max_addr)
1145 max_addr = ph->p_vaddr+ph->p_memsz;
1146 }
1147 min_addr &= -PAGE_SIZE;
1148 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
1149 p->map = p->base + min_addr;
1150 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +02001151 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001152}
1153
Rich Felkerf4f77c02012-10-05 13:09:09 -04001154static void do_fini()
1155{
1156 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -04001157 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -04001158 for (p=fini_head; p; p=p->fini_next) {
1159 if (!p->constructed) continue;
1160 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001161 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
1162 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001163 size_t *fn = (size_t *)laddr(p, dyn[DT_FINI_ARRAY])+n;
Rich Felker1b413572013-07-21 02:35:46 -04001164 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -04001165 }
Rich Felker1da53da2013-07-22 14:08:33 -04001166#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001167 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felker7a9669e2015-09-22 03:54:42 +00001168 fpaddr(p, dyn[DT_FINI])();
Rich Felker1da53da2013-07-22 14:08:33 -04001169#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001170 }
1171}
1172
Rich Felker4ce3cb52012-02-06 14:39:09 -05001173static void do_init_fini(struct dso *p)
1174{
Rich Felkerf4f95622015-04-13 22:38:18 -04001175 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001176 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001177 /* Allow recursive calls that arise when a library calls
1178 * dlopen from one of its constructors, but block any
1179 * other threads until all ctors have finished. */
1180 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001181 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001182 if (p->constructed) continue;
1183 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001184 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001185 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001186 p->fini_next = fini_head;
1187 fini_head = p;
1188 }
Rich Felker1da53da2013-07-22 14:08:33 -04001189#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001190 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker7a9669e2015-09-22 03:54:42 +00001191 fpaddr(p, dyn[DT_INIT])();
Rich Felker1da53da2013-07-22 14:08:33 -04001192#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001193 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1194 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001195 size_t *fn = laddr(p, dyn[DT_INIT_ARRAY]);
Rich Felkere69ae842013-07-20 18:26:17 -04001196 while (n--) ((void (*)(void))*fn++)();
1197 }
Rich Felker509b50e2013-06-29 02:24:02 -04001198 if (!need_locking && libc.threads_minus_1) {
1199 need_locking = 1;
1200 pthread_mutex_lock(&init_fini_lock);
1201 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001202 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001203 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001204}
1205
Rich Felkerc87a5212015-09-22 20:24:28 +00001206void __libc_start_init(void)
1207{
1208 do_init_fini(tail);
1209}
1210
Rich Felker326e1262015-04-17 23:23:05 -04001211static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001212{
1213}
1214
Rich Felker326e1262015-04-17 23:23:05 -04001215weak_alias(dl_debug_state, _dl_debug_state);
1216
Rich Felker7c6c2902013-08-03 16:27:30 -04001217void __reset_tls()
1218{
1219 pthread_t self = __pthread_self();
1220 struct dso *p;
1221 for (p=head; p; p=p->next) {
1222 if (!p->tls_id || !self->dtv[p->tls_id]) continue;
1223 memcpy(self->dtv[p->tls_id], p->tls_image, p->tls_len);
1224 memset((char *)self->dtv[p->tls_id]+p->tls_len, 0,
1225 p->tls_size - p->tls_len);
1226 if (p->tls_id == (size_t)self->dtv[0]) break;
1227 }
1228}
1229
Rich Felkerdcd60372012-10-05 11:51:50 -04001230void *__copy_tls(unsigned char *mem)
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001231{
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001232 pthread_t td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001233 struct dso *p;
Rich Felker0f66fce2015-04-13 18:07:10 -04001234 void **dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001235
Rich Felker9ec42832012-10-15 18:51:53 -04001236#ifdef TLS_ABOVE_TP
Rich Felker0f66fce2015-04-13 18:07:10 -04001237 dtv = (void **)(mem + libc.tls_size) - (tls_cnt + 1);
1238
Rich Felker9ec42832012-10-15 18:51:53 -04001239 mem += -((uintptr_t)mem + sizeof(struct pthread)) & (tls_align-1);
1240 td = (pthread_t)mem;
1241 mem += sizeof(struct pthread);
1242
1243 for (p=head; p; p=p->next) {
1244 if (!p->tls_id) continue;
1245 dtv[p->tls_id] = mem + p->tls_offset;
1246 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
1247 }
1248#else
Rich Felker0f66fce2015-04-13 18:07:10 -04001249 dtv = (void **)mem;
1250
Rich Felkere23d3582012-10-13 23:25:20 -04001251 mem += libc.tls_size - sizeof(struct pthread);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001252 mem -= (uintptr_t)mem & (tls_align-1);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001253 td = (pthread_t)mem;
1254
1255 for (p=head; p; p=p->next) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001256 if (!p->tls_id) continue;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001257 dtv[p->tls_id] = mem - p->tls_offset;
1258 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001259 }
Rich Felker9ec42832012-10-15 18:51:53 -04001260#endif
Rich Felker0f66fce2015-04-13 18:07:10 -04001261 dtv[0] = (void *)tls_cnt;
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001262 td->dtv = td->dtv_copy = dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001263 return td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001264}
1265
Rich Felkerbc081f62015-04-14 10:42:44 -04001266__attribute__((__visibility__("hidden")))
Rich Felker5ba238e2014-06-19 02:59:44 -04001267void *__tls_get_new(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001268{
1269 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001270
1271 /* Block signals to make accessing new TLS async-signal-safe */
1272 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001273 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001274 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001275 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001276 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001277 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001278
1279 /* This is safe without any locks held because, if the caller
1280 * is able to request the Nth entry of the DTV, the DSO list
1281 * must be valid at least that far out and it was synchronized
1282 * at program startup or by an already-completed call to dlopen. */
1283 struct dso *p;
1284 for (p=head; p->tls_id != v[0]; p=p->next);
1285
1286 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001287 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001288 void **newdtv = p->new_dtv +
1289 (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001290 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001291 ((size_t)self->dtv[0]+1) * sizeof(void *));
1292 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001293 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001294 }
1295
Rich Felkere75b16c2014-06-19 02:16:57 -04001296 /* Get new TLS memory from all new DSOs up to the requested one */
1297 unsigned char *mem;
1298 for (p=head; ; p=p->next) {
1299 if (!p->tls_id || self->dtv[p->tls_id]) continue;
1300 mem = p->new_tls + (p->tls_size + p->tls_align)
1301 * a_fetch_add(&p->new_tls_idx,1);
1302 mem += ((uintptr_t)p->tls_image - (uintptr_t)mem)
1303 & (p->tls_align-1);
1304 self->dtv[p->tls_id] = mem;
1305 memcpy(mem, p->tls_image, p->tls_len);
1306 if (p->tls_id == v[0]) break;
1307 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001308 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001309 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001310}
1311
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001312static void update_tls_size()
1313{
Rich Felker9ec42832012-10-15 18:51:53 -04001314 libc.tls_size = ALIGN(
1315 (1+tls_cnt) * sizeof(void *) +
1316 tls_offset +
1317 sizeof(struct pthread) +
1318 tls_align * 2,
1319 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001320}
1321
Rich Felkerf3ddd172015-04-13 02:56:26 -04001322/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1323 * following stage 2 and stage 3 functions via primitive symbolic lookup
1324 * since it does not have access to their addresses to begin with. */
1325
1326/* Stage 2 of the dynamic linker is called after relative relocations
1327 * have been processed. It can make function calls to static functions
1328 * and access string literals and static data, but cannot use extern
1329 * symbols. Its job is to perform symbolic relocations on the dynamic
1330 * linker itself, but some of the relocations performed may need to be
1331 * replaced later due to copy relocations in the main program. */
1332
Rich Felker768b82c2015-05-25 19:15:17 -04001333void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001334{
Rich Felker7a9669e2015-09-22 03:54:42 +00001335 if (DL_FDPIC) {
1336 void *p1 = (void *)sp[-2];
1337 void *p2 = (void *)sp[-1];
1338 if (!p1) {
1339 size_t *auxv, aux[AUX_CNT];
1340 for (auxv=sp+1+*sp+1; *auxv; auxv++); auxv++;
1341 decode_vec(auxv, aux, AUX_CNT);
1342 if (aux[AT_BASE]) ldso.base = (void *)aux[AT_BASE];
1343 else ldso.base = (void *)(aux[AT_PHDR] & -4096);
1344 }
1345 app_loadmap = p2 ? p1 : 0;
1346 ldso.loadmap = p2 ? p2 : p1;
1347 ldso.base = laddr(&ldso, 0);
1348 } else {
1349 ldso.base = base;
1350 }
1351 Ehdr *ehdr = (void *)ldso.base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001352 ldso.name = ldso.shortname = "libc.so";
1353 ldso.global = 1;
1354 ldso.phnum = ehdr->e_phnum;
Rich Felker7a9669e2015-09-22 03:54:42 +00001355 ldso.phdr = laddr(&ldso, ehdr->e_phoff);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001356 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001357 kernel_mapped_dso(&ldso);
1358 decode_dyn(&ldso);
1359
Rich Felker7a9669e2015-09-22 03:54:42 +00001360 if (DL_FDPIC) makefuncdescs(&ldso);
1361
Rich Felker9bbddf72015-05-25 23:33:59 -04001362 /* Prepare storage for to save clobbered REL addends so they
1363 * can be reused in stage 3. There should be very few. If
1364 * something goes wrong and there are a huge number, abort
1365 * instead of risking stack overflow. */
1366 size_t dyn[DYN_CNT];
1367 decode_vec(ldso.dynv, dyn, DYN_CNT);
Rich Felker2a547332015-09-17 19:45:45 +00001368 size_t *rel = laddr(&ldso, dyn[DT_REL]);
Rich Felker9bbddf72015-05-25 23:33:59 -04001369 size_t rel_size = dyn[DT_RELSZ];
1370 size_t symbolic_rel_cnt = 0;
1371 apply_addends_to = rel;
1372 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
Rich Felker7a9669e2015-09-22 03:54:42 +00001373 if (!IS_RELATIVE(rel[1], ldso.syms)) symbolic_rel_cnt++;
Rich Felker9bbddf72015-05-25 23:33:59 -04001374 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1375 size_t addends[symbolic_rel_cnt+1];
1376 saved_addends = addends;
1377
Rich Felkerf3ddd172015-04-13 02:56:26 -04001378 head = &ldso;
1379 reloc_all(&ldso);
1380
1381 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001382
1383 /* Call dynamic linker stage-3, __dls3, looking it up
1384 * symbolically as a barrier against moving the address
1385 * load across the above relocation processing. */
1386 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
Rich Felker7a9669e2015-09-22 03:54:42 +00001387 if (DL_FDPIC) ((stage3_func)&ldso.funcdescs[dls3_def.sym-ldso.syms])(sp);
1388 else ((stage3_func)laddr(&ldso, dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001389}
1390
1391/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1392 * fully functional. Its job is to load (if not already loaded) and
1393 * process dependencies and relocations for the main application and
1394 * transfer control to its entry point. */
1395
1396_Noreturn void __dls3(size_t *sp)
1397{
1398 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001399 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001400 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001401 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001402 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001403 int argc = *sp;
1404 char **argv = (void *)(sp+1);
1405 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001406 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001407
Rich Felker75ce4502015-06-07 20:55:23 +00001408 /* Find aux vector just past environ[] and use it to initialize
1409 * global data that may be needed before we can make syscalls. */
1410 __environ = envp;
1411 for (i=argc+1; argv[i]; i++);
1412 libc.auxv = auxv = (void *)(argv+i+1);
1413 decode_vec(auxv, aux, AUX_CNT);
1414 __hwcap = aux[AT_HWCAP];
1415 libc.page_size = aux[AT_PAGESZ];
1416 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1417 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1418
Rich Felker71f099c2015-04-13 18:40:52 -04001419 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1420 * use during dynamic linking. If possible it will also serve as the
1421 * thread pointer at runtime. */
1422 libc.tls_size = sizeof builtin_tls;
1423 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001424 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001425 }
Rich Felker51e2d832011-06-18 19:48:42 -04001426
Rich Felker568b8072011-06-25 01:56:34 -04001427 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001428 if (!libc.secure) {
1429 env_path = getenv("LD_LIBRARY_PATH");
1430 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001431 }
1432
Rich Felkerf3ddd172015-04-13 02:56:26 -04001433 /* If the main program was already loaded by the kernel,
1434 * AT_PHDR will point to some location other than the dynamic
1435 * linker's program headers. */
1436 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001437 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001438 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001439 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001440 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1441 app.phnum = aux[AT_PHNUM];
1442 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001443 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1444 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001445 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001446 else if (phdr->p_type == PT_INTERP)
1447 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001448 else if (phdr->p_type == PT_TLS) {
1449 tls_image = phdr->p_vaddr;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001450 app.tls_len = phdr->p_filesz;
1451 app.tls_size = phdr->p_memsz;
1452 app.tls_align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001453 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001454 }
Rich Felker7a9669e2015-09-22 03:54:42 +00001455 if (DL_FDPIC) app.loadmap = app_loadmap;
Rich Felker301335a2015-09-17 17:18:09 +00001456 if (app.tls_size) app.tls_image = laddr(&app, tls_image);
1457 if (interp_off) ldso.name = laddr(&app, interp_off);
Rich Felkercc515052013-08-23 14:14:47 -04001458 if ((aux[0] & (1UL<<AT_EXECFN))
1459 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001460 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001461 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001462 app.name = argv[0];
1463 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001464 } else {
1465 int fd;
1466 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001467 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001468 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001469 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001470 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1471 char *opt = argv[0]+2;
1472 *argv++ = (void *)-1;
1473 if (!*opt) {
1474 break;
1475 } else if (!memcmp(opt, "list", 5)) {
1476 ldd_mode = 1;
1477 } else if (!memcmp(opt, "library-path", 12)) {
1478 if (opt[12]=='=') env_path = opt+13;
1479 else if (opt[12]) *argv = 0;
1480 else if (*argv) env_path = *argv++;
1481 } else if (!memcmp(opt, "preload", 7)) {
1482 if (opt[7]=='=') env_preload = opt+8;
1483 else if (opt[7]) *argv = 0;
1484 else if (*argv) env_preload = *argv++;
1485 } else {
1486 argv[0] = 0;
1487 }
Rich Felkerde451642014-04-16 12:45:36 -04001488 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001489 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001490 if (!argv[0]) {
Rich Felker179ab5a2013-12-01 17:27:25 -05001491 dprintf(2, "musl libc\n"
1492 "Version %s\n"
1493 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001494 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001495 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001496 ldd_mode ? "" : " [args]");
1497 _exit(1);
1498 }
1499 fd = open(argv[0], O_RDONLY);
1500 if (fd < 0) {
1501 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1502 _exit(1);
1503 }
1504 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001505 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001506 if (!ehdr) {
1507 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1508 _exit(1);
1509 }
1510 runtime = 0;
1511 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001512 ldso.name = ldname;
1513 app.name = argv[0];
Rich Felker301335a2015-09-17 17:18:09 +00001514 aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
Rich Felkera97a0502013-07-26 14:41:12 -04001515 /* Find the name that would have been used for the dynamic
1516 * linker had ldd not taken its place. */
1517 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001518 for (i=0; i<app.phnum; i++) {
1519 if (app.phdr[i].p_type == PT_INTERP)
Rich Felker30fdc062015-09-22 19:21:57 +00001520 ldso.name = laddr(&app, app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001521 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001522 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001523 }
Rich Felkere12fe652012-01-23 02:02:59 -05001524 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001525 if (app.tls_size) {
1526 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001527#ifdef TLS_ABOVE_TP
Rich Felkerf3ddd172015-04-13 02:56:26 -04001528 app.tls_offset = 0;
1529 tls_offset = app.tls_size
1530 + ( -((uintptr_t)app.tls_image + app.tls_size)
1531 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001532#else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001533 tls_offset = app.tls_offset = app.tls_size
1534 + ( -((uintptr_t)app.tls_image + app.tls_size)
1535 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001536#endif
Rich Felkerf3ddd172015-04-13 02:56:26 -04001537 tls_align = MAXP2(tls_align, app.tls_align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001538 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001539 app.global = 1;
1540 decode_dyn(&app);
Rich Felker7a9669e2015-09-22 03:54:42 +00001541 if (DL_FDPIC) {
1542 makefuncdescs(&app);
1543 if (!app.loadmap) {
1544 app.loadmap = (void *)&app_dummy_loadmap;
1545 app.loadmap->nsegs = 1;
Rich Felker6c5cad22015-09-22 23:41:41 +00001546 app.loadmap->segs[0].addr = (size_t)app.map;
1547 app.loadmap->segs[0].p_vaddr = (size_t)app.map
1548 - (size_t)app.base;
1549 app.loadmap->segs[0].p_memsz = app.map_len;
Rich Felker7a9669e2015-09-22 03:54:42 +00001550 }
1551 argv[-3] = (void *)app.loadmap;
1552 }
Rich Felkerc82f4a32012-01-23 00:57:38 -05001553
1554 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001555 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001556 Ehdr *ehdr = (void *)vdso_base;
1557 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1558 vdso.phnum = ehdr->e_phnum;
1559 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001560 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1561 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001562 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001563 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001564 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001565 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001566 vdso.name = "";
1567 vdso.shortname = "linux-gate.so.1";
1568 vdso.global = 1;
1569 vdso.relocated = 1;
1570 decode_dyn(&vdso);
1571 vdso.prev = &ldso;
1572 ldso.next = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001573 }
1574
Rich Felkerf3ddd172015-04-13 02:56:26 -04001575 /* Initial dso chain consists only of the app. */
1576 head = tail = &app;
Rich Felker51e2d832011-06-18 19:48:42 -04001577
Rich Felkerc82f4a32012-01-23 00:57:38 -05001578 /* Donate unused parts of app and library mapping to malloc */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001579 reclaim_gaps(&app);
1580 reclaim_gaps(&ldso);
Rich Felker6717e622011-06-28 19:40:14 -04001581
Rich Felkerc82f4a32012-01-23 00:57:38 -05001582 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerf3ddd172015-04-13 02:56:26 -04001583 * namespace, and perform all remaining relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001584 if (env_preload) load_preload(env_preload);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001585 load_deps(&app);
1586 make_global(&app);
Rich Felker9c748562012-10-04 22:48:33 -04001587
Timo Teräse13a2b82014-03-25 14:13:27 +02001588#ifndef DYNAMIC_IS_RO
Rich Felkerf3ddd172015-04-13 02:56:26 -04001589 for (i=0; app.dynv[i]; i+=2)
1590 if (app.dynv[i]==DT_DEBUG)
1591 app.dynv[i+1] = (size_t)&debug;
Timo Teräse13a2b82014-03-25 14:13:27 +02001592#endif
1593
Rich Felkerf3ddd172015-04-13 02:56:26 -04001594 /* The main program must be relocated LAST since it may contin
1595 * copy relocations which depend on libraries' relocations. */
1596 reloc_all(app.next);
1597 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001598
1599 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001600 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1601 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001602 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001603 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001604 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001605 _exit(127);
1606 }
Rich Felker71f099c2015-04-13 18:40:52 -04001607 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001608 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001609 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001610 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001611 size_t tmp_tls_size = libc.tls_size;
1612 pthread_t self = __pthread_self();
1613 /* Temporarily set the tls size to the full size of
1614 * builtin_tls so that __copy_tls will use the same layout
1615 * as it did for before. Then check, just to be safe. */
1616 libc.tls_size = sizeof builtin_tls;
1617 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1618 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001619 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001620 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001621
Rich Felker04109502012-08-18 16:00:23 -04001622 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001623 if (ldd_mode) _exit(0);
1624
Rich Felkerc82f4a32012-01-23 00:57:38 -05001625 /* Switch to runtime mode: any further failures in the dynamic
1626 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001627 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001628 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001629
Rich Felker3ec8d292012-04-25 00:05:42 -04001630 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001631 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001632 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001633 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001634 debug.state = 0;
1635 _dl_debug_state();
1636
Rich Felker75863602013-07-21 03:00:54 -04001637 __init_libc(envp, argv[0]);
Rich Felkera7936f62012-11-30 17:56:23 -05001638 atexit(do_fini);
Rich Felker75863602013-07-21 03:00:54 -04001639 errno = 0;
Rich Felker75863602013-07-21 03:00:54 -04001640
Rich Felkerf3ddd172015-04-13 02:56:26 -04001641 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1642 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001643}
1644
Rich Felker59ab43f2011-06-26 19:23:28 -04001645void *dlopen(const char *file, int mode)
1646{
Rich Felker642b7592012-10-05 01:15:25 -04001647 struct dso *volatile p, *orig_tail, *next;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001648 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001649 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001650 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001651 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001652
1653 if (!file) return head;
1654
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001655 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001656 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001657 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001658
Rich Felkerdcd60372012-10-05 11:51:50 -04001659 p = 0;
1660 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001661 orig_tls_offset = tls_offset;
1662 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001663 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001664 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001665
Rich Felker17276be2013-07-24 02:38:05 -04001666 rtld_fail = &jb;
1667 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001668 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001669 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001670 if (p->deps[i]->global < 0)
1671 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001672 for (p=orig_tail->next; p; p=next) {
1673 next = p->next;
Rich Felker9d15d5e2014-06-19 02:01:06 -04001674 while (p->td_index) {
1675 void *tmp = p->td_index->next;
1676 free(p->td_index);
1677 p->td_index = tmp;
1678 }
Rich Felkereaf7ab62015-09-22 19:12:48 +00001679 free(p->funcdescs);
Rich Felker07709622015-04-04 00:15:19 -04001680 if (p->rpath != p->rpath_orig)
1681 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001682 free(p->deps);
Rich Felkereaf7ab62015-09-22 19:12:48 +00001683 unmap_library(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001684 free(p);
1685 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001686 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001687 tls_offset = orig_tls_offset;
1688 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001689 tail = orig_tail;
1690 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001691 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001692 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001693 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001694
1695 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001696 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001697 "Library %s is not already loaded" :
1698 "Error loading shared library %s: %m",
1699 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001700 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001701 }
1702
Rich Felker59ab43f2011-06-26 19:23:28 -04001703 /* First load handling */
1704 if (!p->deps) {
1705 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001706 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001707 if (!p->deps[i]->global)
1708 p->deps[i]->global = -1;
1709 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001710 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001711 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001712 if (p->deps[i]->global < 0)
1713 p->deps[i]->global = 0;
1714 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001715 }
1716
1717 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001718 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001719 p->deps[i]->global = 1;
1720 p->global = 1;
1721 }
1722
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001723 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001724 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001725 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001726end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001727 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001728 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001729 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001730 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001731 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001732 return p;
1733}
1734
Rich Felker4d982802013-01-16 11:49:00 -05001735static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001736{
1737 struct dso *p;
1738 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001739 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001740 return 1;
1741}
1742
Rich Felker6c5cad22015-09-22 23:41:41 +00001743static void *addr2dso(size_t a)
1744{
1745 struct dso *p;
1746 for (p=head; p; p=p->next) {
1747 if (DL_FDPIC && p->loadmap) {
1748 size_t i;
1749 for (i=0; i<p->loadmap->nsegs; i++) {
1750 if (a-p->loadmap->segs[i].p_vaddr
1751 < p->loadmap->segs[i].p_memsz)
1752 return p;
1753 }
1754 i = count_syms(p);
1755 if (a-(size_t)p->funcdescs < i*sizeof(*p->funcdescs))
1756 return p;
1757 } else {
1758 if (a-(size_t)p->map < p->map_len)
1759 return p;
1760 }
1761 }
1762 return 0;
1763}
1764
Rich Felker5ba238e2014-06-19 02:59:44 -04001765void *__tls_get_addr(size_t *);
1766
Rich Felker623753a2011-08-16 00:42:13 -04001767static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001768{
1769 size_t i;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001770 uint32_t h = 0, gh = 0, *ght;
Rich Felker59ab43f2011-06-26 19:23:28 -04001771 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001772 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001773 if (p == RTLD_DEFAULT) {
1774 p = head;
1775 } else if (p == RTLD_NEXT) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001776 p = addr2dso((size_t)ra);
Rich Felker9c748562012-10-04 22:48:33 -04001777 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001778 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001779 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001780 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001781 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001782 if ((def.sym->st_info&0xf) == STT_TLS)
1783 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001784 if (DL_FDPIC && (def.sym->st_info&0xf) == STT_FUNC)
1785 return def.dso->funcdescs + (def.sym - def.dso->syms);
Rich Felker301335a2015-09-17 17:18:09 +00001786 return laddr(def.dso, def.sym->st_value);
Rich Felkera9e85c02012-03-23 00:28:20 -04001787 }
Rich Felker97b72d22015-04-21 13:07:06 -04001788 if (invalid_dso_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001789 return 0;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001790 if ((ght = p->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001791 gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001792 sym = gnu_lookup(gh, ght, p, s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001793 } else {
1794 h = sysv_hash(s);
1795 sym = sysv_lookup(s, h, p);
1796 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001797 if (sym && (sym->st_info&0xf) == STT_TLS)
1798 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001799 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1800 return p->funcdescs + (sym - p->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001801 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001802 return laddr(p, sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001803 if (p->deps) for (i=0; p->deps[i]; i++) {
Alexander Monakov8f08a582015-06-28 02:48:33 +03001804 if ((ght = p->deps[i]->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001805 if (!gh) gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001806 sym = gnu_lookup(gh, ght, p->deps[i], s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001807 } else {
1808 if (!h) h = sysv_hash(s);
1809 sym = sysv_lookup(s, h, p->deps[i]);
1810 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001811 if (sym && (sym->st_info&0xf) == STT_TLS)
1812 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001813 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1814 return p->deps[i]->funcdescs + (sym - p->deps[i]->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001815 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001816 return laddr(p->deps[i], sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001817 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001818failed:
Rich Felker01d42742015-04-18 18:00:22 -04001819 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001820 return 0;
1821}
1822
Rich Felker839cc4e2014-01-06 22:03:38 -05001823int __dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001824{
1825 struct dso *p;
1826 Sym *sym;
1827 uint32_t nsym;
1828 char *strings;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001829 void *best = 0;
1830 char *bestname;
1831
1832 pthread_rwlock_rdlock(&lock);
Rich Felker6c5cad22015-09-22 23:41:41 +00001833 p = addr2dso((size_t)addr);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001834 pthread_rwlock_unlock(&lock);
1835
1836 if (!p) return 0;
1837
1838 sym = p->syms;
1839 strings = p->strings;
Rich Felker39581442015-09-21 21:47:50 +00001840 nsym = count_syms(p);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001841
1842 for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001843 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001844 && (1<<(sym->st_info&0xf) & OK_TYPES)
1845 && (1<<(sym->st_info>>4) & OK_BINDS)) {
Rich Felker301335a2015-09-17 17:18:09 +00001846 void *symaddr = laddr(p, sym->st_value);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001847 if (symaddr > addr || symaddr < best)
1848 continue;
1849 best = symaddr;
1850 bestname = strings + sym->st_name;
1851 if (addr == symaddr)
1852 break;
1853 }
1854 }
1855
1856 if (!best) return 0;
1857
1858 info->dli_fname = p->name;
1859 info->dli_fbase = p->base;
1860 info->dli_sname = bestname;
1861 info->dli_saddr = best;
1862
1863 return 1;
1864}
1865
Rich Felker72b25dd2015-04-14 11:39:11 -04001866__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001867void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001868{
1869 void *res;
1870 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001871 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001872 pthread_rwlock_unlock(&lock);
1873 return res;
1874}
Rich Felker18c0e022012-10-31 21:27:48 -04001875
1876int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1877{
1878 struct dso *current;
1879 struct dl_phdr_info info;
1880 int ret = 0;
1881 for(current = head; current;) {
1882 info.dlpi_addr = (uintptr_t)current->base;
1883 info.dlpi_name = current->name;
1884 info.dlpi_phdr = current->phdr;
1885 info.dlpi_phnum = current->phnum;
1886 info.dlpi_adds = gencnt;
1887 info.dlpi_subs = 0;
1888 info.dlpi_tls_modid = current->tls_id;
1889 info.dlpi_tls_data = current->tls_image;
1890
1891 ret = (callback)(&info, sizeof (info), data);
1892
1893 if (ret != 0) break;
1894
1895 pthread_rwlock_rdlock(&lock);
1896 current = current->next;
1897 pthread_rwlock_unlock(&lock);
1898 }
1899 return ret;
1900}
Rich Felker5a09a532012-02-03 03:16:07 -05001901#else
Rich Felker4d982802013-01-16 11:49:00 -05001902static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001903{
Rich Felker01d42742015-04-18 18:00:22 -04001904 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001905 return 1;
1906}
Rich Felker5a09a532012-02-03 03:16:07 -05001907void *dlopen(const char *file, int mode)
1908{
Rich Felker01d42742015-04-18 18:00:22 -04001909 error("Dynamic loading not supported");
Rich Felker5a09a532012-02-03 03:16:07 -05001910 return 0;
1911}
Rich Felker400c5e52012-09-06 22:44:55 -04001912void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001913{
Rich Felker01d42742015-04-18 18:00:22 -04001914 error("Symbol not found: %s", s);
Rich Felker5a09a532012-02-03 03:16:07 -05001915 return 0;
1916}
Rich Felker839cc4e2014-01-06 22:03:38 -05001917int __dladdr (const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001918{
1919 return 0;
1920}
Rich Felker5a09a532012-02-03 03:16:07 -05001921#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001922
Rich Felker780cbbe2013-06-29 12:46:46 -04001923int __dlinfo(void *dso, int req, void *res)
1924{
1925 if (invalid_dso_handle(dso)) return -1;
1926 if (req != RTLD_DI_LINKMAP) {
Rich Felker01d42742015-04-18 18:00:22 -04001927 error("Unsupported request %d", req);
Rich Felker780cbbe2013-06-29 12:46:46 -04001928 return -1;
1929 }
1930 *(struct link_map **)res = dso;
1931 return 0;
1932}
1933
Rich Felker59ab43f2011-06-26 19:23:28 -04001934char *dlerror()
1935{
Rich Felker01d42742015-04-18 18:00:22 -04001936 pthread_t self = __pthread_self();
1937 if (!self->dlerror_flag) return 0;
1938 self->dlerror_flag = 0;
1939 char *s = self->dlerror_buf;
1940 if (s == (void *)-1)
1941 return "Dynamic linker failed to allocate memory for error message";
1942 else
1943 return s;
Rich Felker59ab43f2011-06-26 19:23:28 -04001944}
1945
1946int dlclose(void *p)
1947{
Rich Felker6468fc92013-01-10 14:05:40 -05001948 return invalid_dso_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001949}
Rich Felker01d42742015-04-18 18:00:22 -04001950
1951void __dl_thread_cleanup(void)
1952{
1953 pthread_t self = __pthread_self();
1954 if (self->dlerror_buf != (void *)-1)
1955 free(self->dlerror_buf);
1956}
1957
1958static void error(const char *fmt, ...)
1959{
1960 va_list ap;
1961 va_start(ap, fmt);
1962#ifdef SHARED
1963 if (!runtime) {
1964 vdprintf(2, fmt, ap);
1965 dprintf(2, "\n");
1966 ldso_fail = 1;
1967 va_end(ap);
1968 return;
1969 }
1970#endif
1971 pthread_t self = __pthread_self();
1972 if (self->dlerror_buf != (void *)-1)
1973 free(self->dlerror_buf);
1974 size_t len = vsnprintf(0, 0, fmt, ap);
1975 va_end(ap);
1976 char *buf = malloc(len+1);
1977 if (buf) {
1978 va_start(ap, fmt);
1979 vsnprintf(buf, len+1, fmt, ap);
1980 va_end(ap);
1981 } else {
1982 buf = (void *)-1;
1983 }
1984 self->dlerror_buf = buf;
1985 self->dlerror_flag = 1;
1986}