blob: ec96be16dde2a5c69599012ec4ed140f2a8a9ed4 [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 {
45 unsigned char *base;
46 char *name;
Rich Felker51e2d832011-06-18 19:48:42 -040047 size_t *dynv;
Rich Felker3ec8d292012-04-25 00:05:42 -040048 struct dso *next, *prev;
49
Rich Felker18c0e022012-10-31 21:27:48 -040050 Phdr *phdr;
51 int phnum;
Timo Teräs87691962014-03-25 20:59:50 +020052 size_t phentsize;
Rich Felker3ec8d292012-04-25 00:05:42 -040053 int refcnt;
Rich Felker51e2d832011-06-18 19:48:42 -040054 Sym *syms;
Rich Felker596d60c2011-06-18 22:52:01 -040055 uint32_t *hashtab;
Rich Felker2bd05a42012-08-25 17:13:28 -040056 uint32_t *ghashtab;
Rich Felker72482f92013-08-08 16:10:35 -040057 int16_t *versym;
Rich Felker51e2d832011-06-18 19:48:42 -040058 char *strings;
Rich Felker51e2d832011-06-18 19:48:42 -040059 unsigned char *map;
60 size_t map_len;
61 dev_t dev;
62 ino_t ino;
Rich Felker6343ac82012-06-09 21:20:44 -040063 signed char global;
Rich Felker700a8152012-02-07 20:29:29 -050064 char relocated;
65 char constructed;
Rich Felkera897a202013-08-23 13:56:30 -040066 char kernel_mapped;
Rich Felker709355e2013-08-23 11:15:40 -040067 struct dso **deps, *needed_by;
Rich Felkera897a202013-08-23 13:56:30 -040068 char *rpath_orig, *rpath;
Rich Felkerbc6a35f2012-10-04 20:04:13 -040069 void *tls_image;
Rich Felker9c748562012-10-04 22:48:33 -040070 size_t tls_len, tls_size, tls_align, tls_id, tls_offset;
Timo Teräse13a2b82014-03-25 14:13:27 +020071 size_t relro_start, relro_end;
Rich Felkerdcd60372012-10-05 11:51:50 -040072 void **new_dtv;
73 unsigned char *new_tls;
Rich Felker56fbaa32015-03-03 22:50:02 -050074 volatile int new_dtv_idx, new_tls_idx;
Rich Felker9d15d5e2014-06-19 02:01:06 -040075 struct td_index *td_index;
Rich Felkerf4f77c02012-10-05 13:09:09 -040076 struct dso *fini_next;
Rich Felker5c1909a2012-05-27 16:01:44 -040077 char *shortname;
Rich Felker6b3d5e52011-06-26 17:39:17 -040078 char buf[];
Rich Felker51e2d832011-06-18 19:48:42 -040079};
80
Rich Felker9c748562012-10-04 22:48:33 -040081struct symdef {
82 Sym *sym;
83 struct dso *dso;
84};
85
Rich Felkerdab441a2014-03-24 16:57:11 -040086int __init_tp(void *);
Rich Felker75863602013-07-21 03:00:54 -040087void __init_libc(char **, char *);
Rich Felker60872cf2012-04-24 18:07:59 -040088
Rich Felker179ab5a2013-12-01 17:27:25 -050089const char *__libc_get_version(void);
90
Rich Felkerbd679592015-03-06 13:27:08 -050091static struct builtin_tls {
92 char c;
93 struct pthread pt;
94 void *space[16];
95} builtin_tls[1];
96#define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
97
Rich Felker9bbddf72015-05-25 23:33:59 -040098#define ADDEND_LIMIT 4096
99static size_t *saved_addends, *apply_addends_to;
100
Rich Felkerf3ddd172015-04-13 02:56:26 -0400101static struct dso ldso;
102static struct dso *head, *tail, *fini_head;
Rich Felker709355e2013-08-23 11:15:40 -0400103static char *env_path, *sys_path;
Rich Felker18c0e022012-10-31 21:27:48 -0400104static unsigned long long gencnt;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400105static int runtime;
Rich Felker5c1909a2012-05-27 16:01:44 -0400106static int ldd_mode;
Rich Felker04109502012-08-18 16:00:23 -0400107static int ldso_fail;
Rich Felker4d07e552013-01-23 22:07:45 -0500108static int noload;
Rich Felker17276be2013-07-24 02:38:05 -0400109static jmp_buf *rtld_fail;
Rich Felker59ab43f2011-06-26 19:23:28 -0400110static pthread_rwlock_t lock;
Rich Felker3ec8d292012-04-25 00:05:42 -0400111static struct debug debug;
Rich Felkerbd679592015-03-06 13:27:08 -0500112static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
Rich Felker9d15d5e2014-06-19 02:01:06 -0400113static size_t static_tls_cnt;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400114static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
Rich Felker3ec8d292012-04-25 00:05:42 -0400115
116struct debug *_dl_debug_addr = &debug;
Rich Felker51e2d832011-06-18 19:48:42 -0400117
Rich Felkerf3ddd172015-04-13 02:56:26 -0400118static int dl_strcmp(const char *l, const char *r)
119{
120 for (; *l==*r && *l; l++, r++);
121 return *(unsigned char *)l - *(unsigned char *)r;
122}
123#define strcmp(l,r) dl_strcmp(l,r)
Rich Felker51e2d832011-06-18 19:48:42 -0400124
125static void decode_vec(size_t *v, size_t *a, size_t cnt)
126{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400127 size_t i;
128 for (i=0; i<cnt; i++) a[i] = 0;
129 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
130 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400131 a[v[0]] = v[1];
132 }
133}
134
Rich Felker2bd05a42012-08-25 17:13:28 -0400135static int search_vec(size_t *v, size_t *r, size_t key)
136{
137 for (; v[0]!=key; v+=2)
138 if (!v[0]) return 0;
139 *r = v[1];
140 return 1;
141}
142
143static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400144{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500145 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400146 uint_fast32_t h = 0;
147 while (*s) {
148 h = 16*h + *s++;
149 h ^= h>>24 & 0xf0;
150 }
151 return h & 0xfffffff;
152}
153
Rich Felker2bd05a42012-08-25 17:13:28 -0400154static uint32_t gnu_hash(const char *s0)
155{
156 const unsigned char *s = (void *)s0;
157 uint_fast32_t h = 5381;
158 for (; *s; s++)
Alexander Monakov66d45782015-06-28 02:48:30 +0300159 h += h*32 + *s;
Rich Felker2bd05a42012-08-25 17:13:28 -0400160 return h;
161}
162
163static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400164{
165 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400166 Sym *syms = dso->syms;
167 uint32_t *hashtab = dso->hashtab;
168 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400169 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400170 if ((!dso->versym || dso->versym[i] >= 0)
171 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400172 return syms+i;
173 }
174 return 0;
175}
176
Rich Felker2bd05a42012-08-25 17:13:28 -0400177static Sym *gnu_lookup(const char *s, uint32_t h1, struct dso *dso)
178{
Rich Felker72482f92013-08-08 16:10:35 -0400179 Sym *syms = dso->syms;
180 char *strings = dso->strings;
Rich Felker2bd05a42012-08-25 17:13:28 -0400181 uint32_t *hashtab = dso->ghashtab;
182 uint32_t nbuckets = hashtab[0];
183 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
184 uint32_t h2;
185 uint32_t *hashval;
Rich Felker72482f92013-08-08 16:10:35 -0400186 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400187
Rich Felker72482f92013-08-08 16:10:35 -0400188 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400189
Rich Felker72482f92013-08-08 16:10:35 -0400190 hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400191
Rich Felker72482f92013-08-08 16:10:35 -0400192 for (h1 |= 1; ; i++) {
Rich Felker2bd05a42012-08-25 17:13:28 -0400193 h2 = *hashval++;
Rich Felker72482f92013-08-08 16:10:35 -0400194 if ((!dso->versym || dso->versym[i] >= 0)
195 && (h1 == (h2|1)) && !strcmp(s, strings + syms[i].st_name))
196 return syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400197 if (h2 & 1) break;
198 }
199
200 return 0;
201}
202
Rich Felker9c748562012-10-04 22:48:33 -0400203#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 -0400204#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400205
Rich Felker2d8cc922014-06-30 01:18:14 -0400206#ifndef ARCH_SYM_REJECT_UND
207#define ARCH_SYM_REJECT_UND(s) 0
208#endif
209
Rich Felker9c748562012-10-04 22:48:33 -0400210static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400211{
Rich Felker2bd05a42012-08-25 17:13:28 -0400212 uint32_t h = 0, gh = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400213 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400214 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400215 Sym *sym;
216 if (!dso->global) continue;
Rich Felker2bd05a42012-08-25 17:13:28 -0400217 if (dso->ghashtab) {
218 if (!gh) gh = gnu_hash(s);
219 sym = gnu_lookup(s, gh, dso);
220 } else {
221 if (!h) h = sysv_hash(s);
222 sym = sysv_lookup(s, h, dso);
223 }
Rich Felkerbd174312012-10-06 01:36:11 -0400224 if (!sym) continue;
225 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400226 if (need_def || (sym->st_info&0xf) == STT_TLS
227 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400228 continue;
229 if (!sym->st_value)
230 if ((sym->st_info&0xf) != STT_TLS)
231 continue;
232 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
233 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
234
235 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
236 def.sym = sym;
237 def.dso = dso;
238 if (sym->st_info>>4 == STB_GLOBAL) break;
Rich Felker51e2d832011-06-18 19:48:42 -0400239 }
Rich Felker427173b2011-07-24 02:19:47 -0400240 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400241}
242
Rich Felker1b1cafa2015-04-17 23:29:45 -0400243__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400244ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
245
Rich Felker87d13a42012-08-05 02:49:02 -0400246static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400247{
Rich Felker87d13a42012-08-05 02:49:02 -0400248 unsigned char *base = dso->base;
249 Sym *syms = dso->syms;
250 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400251 Sym *sym;
252 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400253 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400254 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400255 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400256 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400257 size_t *reloc_addr;
258 size_t sym_val;
259 size_t tls_val;
260 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400261 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
262
263 if (dso == &ldso) {
264 /* Only ldso's REL table needs addend saving/reuse. */
265 if (rel == apply_addends_to)
266 reuse_addends = 1;
267 skip_relative = 1;
268 }
Rich Felker51e2d832011-06-18 19:48:42 -0400269
270 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker9bbddf72015-05-25 23:33:59 -0400271 if (skip_relative && IS_RELATIVE(rel[1])) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400272 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400273 if (type == REL_NONE) continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400274 sym_index = R_SYM(rel[1]);
Rich Felkeradf94c12014-06-18 02:44:02 -0400275 reloc_addr = (void *)(base + rel[0]);
Rich Felker51e2d832011-06-18 19:48:42 -0400276 if (sym_index) {
277 sym = syms + sym_index;
278 name = strings + sym->st_name;
Rich Felkeradf94c12014-06-18 02:44:02 -0400279 ctx = type==REL_COPY ? head->next : head;
280 def = find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500281 if (!def.sym && (sym->st_shndx != SHN_UNDEF
282 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400283 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400284 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400285 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400286 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400287 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400288 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400289 sym = 0;
290 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400291 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400292 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400293
Rich Felker9bbddf72015-05-25 23:33:59 -0400294 if (stride > 2) {
295 addend = rel[2];
296 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
297 addend = 0;
298 } else if (reuse_addends) {
299 /* Save original addend in stage 2 where the dso
300 * chain consists of just ldso; otherwise read back
301 * saved addend since the inline one was clobbered. */
302 if (head==&ldso)
303 saved_addends[save_slot] = *reloc_addr;
304 addend = saved_addends[save_slot++];
305 } else {
306 addend = *reloc_addr;
307 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400308
309 sym_val = def.sym ? (size_t)def.dso->base+def.sym->st_value : 0;
310 tls_val = def.sym ? def.sym->st_value : 0;
311
312 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400313 case REL_NONE:
314 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400315 case REL_OFFSET:
316 addend -= (size_t)reloc_addr;
317 case REL_SYMBOLIC:
318 case REL_GOT:
319 case REL_PLT:
320 *reloc_addr = sym_val + addend;
321 break;
322 case REL_RELATIVE:
323 *reloc_addr = (size_t)base + addend;
324 break;
325 case REL_SYM_OR_REL:
326 if (sym) *reloc_addr = sym_val + addend;
327 else *reloc_addr = (size_t)base + addend;
328 break;
329 case REL_COPY:
330 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
331 break;
332 case REL_OFFSET32:
333 *(uint32_t *)reloc_addr = sym_val + addend
334 - (size_t)reloc_addr;
335 break;
336 case REL_DTPMOD:
337 *reloc_addr = def.dso->tls_id;
338 break;
339 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000340 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400341 break;
342#ifdef TLS_ABOVE_TP
343 case REL_TPOFF:
344 *reloc_addr = tls_val + def.dso->tls_offset + TPOFF_K + addend;
345 break;
346#else
347 case REL_TPOFF:
348 *reloc_addr = tls_val - def.dso->tls_offset + addend;
349 break;
350 case REL_TPOFF_NEG:
351 *reloc_addr = def.dso->tls_offset - tls_val + addend;
352 break;
353#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400354 case REL_TLSDESC:
355 if (stride<3) addend = reloc_addr[1];
356 if (runtime && def.dso->tls_id >= static_tls_cnt) {
357 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400358 if (!new) {
359 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400360 "Error relocating %s: cannot allocate TLSDESC for %s",
361 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400362 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400363 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400364 new->next = dso->td_index;
365 dso->td_index = new;
366 new->args[0] = def.dso->tls_id;
367 new->args[1] = tls_val + addend;
368 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
369 reloc_addr[1] = (size_t)new;
370 } else {
371 reloc_addr[0] = (size_t)__tlsdesc_static;
372#ifdef TLS_ABOVE_TP
373 reloc_addr[1] = tls_val + def.dso->tls_offset
374 + TPOFF_K + addend;
375#else
376 reloc_addr[1] = tls_val - def.dso->tls_offset
377 + addend;
378#endif
379 }
380 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400381 default:
382 error("Error relocating %s: unsupported relocation type %d",
383 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400384 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400385 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400386 }
Rich Felker51e2d832011-06-18 19:48:42 -0400387 }
388}
389
Rich Felker6717e622011-06-28 19:40:14 -0400390/* A huge hack: to make up for the wastefulness of shared libraries
391 * needing at least a page of dirty memory even if they have no global
392 * data, we reclaim the gaps at the beginning and end of writable maps
393 * and "donate" them to the heap by setting up minimal malloc
394 * structures and then freeing them. */
395
Timo Teräse13a2b82014-03-25 14:13:27 +0200396static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400397{
398 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200399 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
400 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400401 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
402 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
403 if (start>end || end-start < 4*sizeof(size_t)) return;
Timo Teräse13a2b82014-03-25 14:13:27 +0200404 a = (size_t *)(dso->base + start);
405 z = (size_t *)(dso->base + end);
Rich Felker6717e622011-06-28 19:40:14 -0400406 a[-2] = 1;
407 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
408 z[1] = 1;
409 free(a);
410}
411
Timo Teräs87691962014-03-25 20:59:50 +0200412static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400413{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400414 Phdr *ph = dso->phdr;
415 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200416
Rich Felkerfa7248c2014-03-25 16:21:50 -0400417 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400418 if (ph->p_type!=PT_LOAD) continue;
419 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200420 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
421 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400422 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
423 }
424}
425
Rich Felkerce337da2015-06-23 04:03:42 +0000426static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
427{
428 char *q = mmap(p, n, prot, flags, fd, off);
429 if (q != MAP_FAILED || errno != EINVAL) return q;
430 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
431 if (flags & MAP_ANONYMOUS) {
432 memset(p, 0, n);
433 return p;
434 }
435 ssize_t r;
436 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
437 for (q=p; n; q+=r, off+=r, n-=r) {
438 r = read(fd, q, n);
439 if (r < 0 && errno != EINTR) return MAP_FAILED;
440 if (!r) {
441 memset(q, 0, n);
442 break;
443 }
444 }
445 return p;
446}
447
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400448static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400449{
Rich Felker59633c72011-06-25 12:26:08 -0400450 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400451 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400452 size_t phsize;
453 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
454 size_t this_min, this_max;
455 off_t off_start;
456 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400457 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400458 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400459 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400460 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400461 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400462 size_t i;
463
464 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400465 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400466 if (l<0) return 0;
467 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
468 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400469 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400470 if (phsize > sizeof buf - sizeof *eh) {
471 allocated_buf = malloc(phsize);
472 if (!allocated_buf) return 0;
473 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
474 if (l < 0) goto error;
475 if (l != phsize) goto noexec;
476 ph = ph0 = allocated_buf;
477 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400478 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400479 if (l < 0) goto error;
480 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400481 ph = ph0 = (void *)(buf + 1);
482 } else {
483 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400484 }
Rich Felker51e2d832011-06-18 19:48:42 -0400485 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400486 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400487 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400488 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400489 tls_image = ph->p_vaddr;
490 dso->tls_align = ph->p_align;
491 dso->tls_len = ph->p_filesz;
492 dso->tls_size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200493 } else if (ph->p_type == PT_GNU_RELRO) {
494 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
495 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400496 }
Rich Felker51e2d832011-06-18 19:48:42 -0400497 if (ph->p_type != PT_LOAD) continue;
498 if (ph->p_vaddr < addr_min) {
499 addr_min = ph->p_vaddr;
500 off_start = ph->p_offset;
501 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
502 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
503 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
504 }
505 if (ph->p_vaddr+ph->p_memsz > addr_max) {
506 addr_max = ph->p_vaddr+ph->p_memsz;
507 }
508 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400509 if (!dyn) goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400510 addr_max += PAGE_SIZE-1;
511 addr_max &= -PAGE_SIZE;
512 addr_min &= -PAGE_SIZE;
513 off_start &= -PAGE_SIZE;
514 map_len = addr_max - addr_min + off_start;
515 /* The first time, we map too much, possibly even more than
516 * the length of the file. This is okay because we will not
517 * use the invalid part; we just need to reserve the right
518 * amount of virtual address space to map over later. */
Rich Felkerbf301002011-06-28 14:20:41 -0400519 map = mmap((void *)addr_min, map_len, prot, MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400520 if (map==MAP_FAILED) goto error;
Rich Felker339516a2013-07-31 14:42:08 -0400521 /* If the loaded file is not relocatable and the requested address is
522 * not available, then the load operation must fail. */
523 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
524 errno = EBUSY;
525 goto error;
526 }
Rich Felker51e2d832011-06-18 19:48:42 -0400527 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400528 dso->phdr = 0;
529 dso->phnum = 0;
530 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400531 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400532 /* Check if the programs headers are in this load segment, and
533 * if so, record the address for use by dl_iterate_phdr. */
534 if (!dso->phdr && eh->e_phoff >= ph->p_offset
535 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
536 dso->phdr = (void *)(base + ph->p_vaddr
537 + (eh->e_phoff-ph->p_offset));
538 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200539 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400540 }
Rich Felker51e2d832011-06-18 19:48:42 -0400541 /* Reuse the existing mapping for the lowest-address LOAD */
542 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min) continue;
543 this_min = ph->p_vaddr & -PAGE_SIZE;
544 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
545 off_start = ph->p_offset & -PAGE_SIZE;
546 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
547 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
548 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000549 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 -0400550 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400551 if (ph->p_memsz > ph->p_filesz) {
552 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
553 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
554 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000555 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 -0400556 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400557 }
558 }
Rich Felker9f174132011-06-29 00:29:08 -0400559 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
560 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000561 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
562 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400563 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400564 break;
565 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400566 dso->map = map;
567 dso->map_len = map_len;
568 dso->base = base;
569 dso->dynv = (void *)(base+dyn);
570 if (dso->tls_size) dso->tls_image = (void *)(base+tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200571 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400572 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400573 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400574noexec:
575 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400576error:
Rich Felkerd5884a52013-08-02 09:56:49 -0400577 if (map!=MAP_FAILED) munmap(map, map_len);
578 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400579 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400580}
581
Rich Felker8c203ea2013-04-20 11:51:58 -0400582static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400583{
Rich Felker8c203ea2013-04-20 11:51:58 -0400584 size_t l;
585 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400586 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400587 s += strspn(s, ":\n");
588 l = strcspn(s, ":\n");
589 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400590 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
591 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
592 switch (errno) {
593 case ENOENT:
594 case ENOTDIR:
595 case EACCES:
596 case ENAMETOOLONG:
597 break;
598 default:
599 /* Any negative value but -1 will inhibit
600 * futher path search. */
601 return -2;
602 }
603 }
Rich Felker49388f32011-06-25 17:49:16 -0400604 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400605 }
Rich Felker568b8072011-06-25 01:56:34 -0400606}
607
Rich Felkera897a202013-08-23 13:56:30 -0400608static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
609{
610 size_t n, l;
611 const char *s, *t, *origin;
612 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400613 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400614 if (!strchr(p->rpath_orig, '$')) {
615 p->rpath = p->rpath_orig;
616 return 0;
617 }
618 n = 0;
619 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400620 while ((t=strchr(s, '$'))) {
621 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400622 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400623 s = t+1;
624 n++;
625 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400626 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400627
628 if (p->kernel_mapped) {
629 /* $ORIGIN searches cannot be performed for the main program
630 * when it is suid/sgid/AT_SECURE. This is because the
631 * pathname is under the control of the caller of execve.
632 * For libraries, however, $ORIGIN can be processed safely
633 * since the library's pathname came from a trusted source
634 * (either system paths or a call to dlopen). */
635 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400636 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400637 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400638 if (l == -1) switch (errno) {
639 case ENOENT:
640 case ENOTDIR:
641 case EACCES:
642 break;
643 default:
Rich Felkera897a202013-08-23 13:56:30 -0400644 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400645 }
646 if (l >= buf_size)
647 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400648 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400649 origin = buf;
650 } else {
651 origin = p->name;
652 }
653 t = strrchr(origin, '/');
654 l = t ? t-origin : 0;
655 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
656 if (!p->rpath) return -1;
657
658 d = p->rpath;
659 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400660 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400661 memcpy(d, s, t-s);
662 d += t-s;
663 memcpy(d, origin, l);
664 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400665 /* It was determined previously that the '$' is followed
666 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400667 s = t + 7 + 2*(t[1]=='{');
668 }
669 strcpy(d, s);
670 return 0;
671}
672
Rich Felkerc82f4a32012-01-23 00:57:38 -0500673static void decode_dyn(struct dso *p)
674{
Rich Felkerf4f95622015-04-13 22:38:18 -0400675 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500676 decode_vec(p->dynv, dyn, DYN_CNT);
677 p->syms = (void *)(p->base + dyn[DT_SYMTAB]);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500678 p->strings = (void *)(p->base + dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400679 if (dyn[0]&(1<<DT_HASH))
680 p->hashtab = (void *)(p->base + dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400681 if (dyn[0]&(1<<DT_RPATH))
Rich Felkera897a202013-08-23 13:56:30 -0400682 p->rpath_orig = (void *)(p->strings + dyn[DT_RPATH]);
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500683 if (dyn[0]&(1<<DT_RUNPATH))
684 p->rpath_orig = (void *)(p->strings + dyn[DT_RUNPATH]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400685 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
686 p->ghashtab = (void *)(p->base + *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400687 if (search_vec(p->dynv, dyn, DT_VERSYM))
688 p->versym = (void *)(p->base + *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500689}
690
Rich Felker709355e2013-08-23 11:15:40 -0400691static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400692{
Rich Felker5c1909a2012-05-27 16:01:44 -0400693 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400694 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500695 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400696 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400697 int fd;
698 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400699 size_t alloc_size;
700 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400701 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400702
Rich Felker59549312014-07-11 00:29:44 -0400703 if (!*name) {
704 errno = EINVAL;
705 return 0;
706 }
707
Rich Felker51e2d832011-06-18 19:48:42 -0400708 /* Catch and block attempts to reload the implementation itself */
709 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
710 static const char *rp, reserved[] =
711 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
712 char *z = strchr(name, '.');
713 if (z) {
714 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400715 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400716 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400717 if (ldd_mode) {
718 /* Track which names have been resolved
719 * and only report each one once. */
720 static unsigned reported;
721 unsigned mask = 1U<<(rp-reserved);
722 if (!(reported & mask)) {
723 reported |= mask;
724 dprintf(1, "\t%s => %s (%p)\n",
Rich Felkerf3ddd172015-04-13 02:56:26 -0400725 name, ldso.name,
726 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400727 }
728 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400729 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400730 }
731 }
732 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400733 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400734 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400735 if (!ldso.prev) {
736 tail->next = &ldso;
737 ldso.prev = tail;
738 tail = ldso.next ? ldso.next : &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400739 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400740 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400741 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400742 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400743 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400744 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400745 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400746 /* Search for the name to see if it's already loaded */
747 for (p=head->next; p; p=p->next) {
748 if (p->shortname && !strcmp(p->shortname, name)) {
749 p->refcnt++;
750 return p;
751 }
752 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400753 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400754 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400755 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400756 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
757 if (fixup_rpath(p, buf, sizeof buf) < 0)
758 fd = -2; /* Inhibit further search. */
759 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400760 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400761 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400762 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400763 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400764 char *prefix = 0;
765 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400766 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400767 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400768 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400769 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400770 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400771 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400772 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400773 }
774 if (!prefix) {
775 prefix = "";
776 prefix_len = 0;
777 }
778 char etc_ldso_path[prefix_len + 1
779 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
780 snprintf(etc_ldso_path, sizeof etc_ldso_path,
781 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
782 (int)prefix_len, prefix);
783 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400784 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400785 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400786 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400787 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500788 }
Rich Felker568b8072011-06-25 01:56:34 -0400789 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400790 } else if (errno != ENOENT) {
791 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400792 }
793 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500794 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
795 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400796 }
Rich Felker0420b872012-07-11 01:41:20 -0400797 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400798 }
799 if (fd < 0) return 0;
800 if (fstat(fd, &st) < 0) {
801 close(fd);
802 return 0;
803 }
804 for (p=head->next; p; p=p->next) {
805 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -0400806 /* If this library was previously loaded with a
807 * pathname but a search found the same inode,
808 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -0400809 if (!p->shortname && pathname != name)
810 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -0400811 close(fd);
812 p->refcnt++;
813 return p;
814 }
815 }
Rich Felker4d07e552013-01-23 22:07:45 -0500816 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -0400817 close(fd);
818 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -0400819
820 /* Allocate storage for the new DSO. When there is TLS, this
821 * storage must include a reservation for all pre-existing
822 * threads to obtain copies of both the new TLS, and an
823 * extended DTV capable of storing an additional slot for
824 * the newly-loaded DSO. */
825 alloc_size = sizeof *p + strlen(pathname) + 1;
826 if (runtime && temp_dso.tls_image) {
827 size_t per_th = temp_dso.tls_size + temp_dso.tls_align
828 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -0400829 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400830 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
831 else alloc_size += n_th * per_th;
832 }
833 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -0400834 if (!p) {
Rich Felker74025c82013-02-02 00:59:25 -0500835 munmap(map, temp_dso.map_len);
Rich Felker51e2d832011-06-18 19:48:42 -0400836 return 0;
837 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400838 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500839 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -0400840 p->dev = st.st_dev;
841 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -0400842 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -0400843 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400844 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -0400845 strcpy(p->name, pathname);
846 /* Add a shortname only if name arg was not an explicit pathname. */
847 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400848 if (p->tls_image) {
849 p->tls_id = ++tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400850 tls_align = MAXP2(tls_align, p->tls_align);
Rich Felker9ec42832012-10-15 18:51:53 -0400851#ifdef TLS_ABOVE_TP
852 p->tls_offset = tls_offset + ( (tls_align-1) &
853 -(tls_offset + (uintptr_t)p->tls_image) );
854 tls_offset += p->tls_size;
855#else
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400856 tls_offset += p->tls_size + p->tls_align - 1;
857 tls_offset -= (tls_offset + (uintptr_t)p->tls_image)
858 & (p->tls_align-1);
859 p->tls_offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -0400860#endif
Rich Felkerdcd60372012-10-05 11:51:50 -0400861 p->new_dtv = (void *)(-sizeof(size_t) &
862 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
863 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
864 }
Rich Felker51e2d832011-06-18 19:48:42 -0400865
866 tail->next = p;
867 p->prev = tail;
868 tail = p;
869
Rich Felker1d7c4f82012-12-15 23:34:08 -0500870 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -0400871
Rich Felker51e2d832011-06-18 19:48:42 -0400872 return p;
873}
874
875static void load_deps(struct dso *p)
876{
Rich Felker59ab43f2011-06-26 19:23:28 -0400877 size_t i, ndeps=0;
878 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -0400879 for (; p; p=p->next) {
880 for (i=0; p->dynv[i]; i+=2) {
881 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -0400882 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -0400883 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400884 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -0400885 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400886 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400887 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400888 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400889 if (runtime) {
890 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -0400891 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -0400892 tmp[ndeps++] = dep;
893 tmp[ndeps] = 0;
894 *deps = tmp;
895 }
Rich Felker51e2d832011-06-18 19:48:42 -0400896 }
897 }
898}
899
Rich Felker2719cc82011-08-16 00:24:36 -0400900static void load_preload(char *s)
901{
902 int tmp;
903 char *z;
904 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -0400905 for ( ; *s && (isspace(*s) || *s==':'); s++);
906 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -0400907 tmp = *z;
908 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -0400909 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -0400910 *z = tmp;
911 }
912}
913
Rich Felker59ab43f2011-06-26 19:23:28 -0400914static void make_global(struct dso *p)
915{
916 for (; p; p=p->next) p->global = 1;
917}
918
Rich Felkerf3ddd172015-04-13 02:56:26 -0400919static void do_mips_relocs(struct dso *p, size_t *got)
920{
921 size_t i, j, rel[2];
922 unsigned char *base = p->base;
923 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -0400924 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400925 got += i;
926 } else {
927 while (i--) *got++ += (size_t)base;
928 }
929 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
930 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
931 Sym *sym = p->syms + j;
932 rel[0] = (unsigned char *)got - base;
933 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
934 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
935 do_relocs(p, rel, sizeof rel, 2);
936 }
937}
938
Rich Felker51e2d832011-06-18 19:48:42 -0400939static void reloc_all(struct dso *p)
940{
Rich Felkerf4f95622015-04-13 22:38:18 -0400941 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -0400942 for (; p; p=p->next) {
943 if (p->relocated) continue;
944 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400945 if (NEED_MIPS_GOT_RELOCS)
946 do_mips_relocs(p, (void *)(p->base+dyn[DT_PLTGOT]));
Rich Felker87d13a42012-08-05 02:49:02 -0400947 do_relocs(p, (void *)(p->base+dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
948 2+(dyn[DT_PLTREL]==DT_RELA));
949 do_relocs(p, (void *)(p->base+dyn[DT_REL]), dyn[DT_RELSZ], 2);
950 do_relocs(p, (void *)(p->base+dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +0200951
Rich Felkerf3ddd172015-04-13 02:56:26 -0400952 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker75eceb32015-06-17 17:21:46 +0000953 mprotect(p->base+p->relro_start, p->relro_end-p->relro_start, PROT_READ)
954 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400955 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +0200956 p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400957 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +0200958 }
959
Rich Felker368ba4a2011-06-25 00:18:19 -0400960 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400961 }
962}
963
Timo Teräs87691962014-03-25 20:59:50 +0200964static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -0500965{
Timo Teräs87691962014-03-25 20:59:50 +0200966 size_t min_addr = -1, max_addr = 0, cnt;
967 Phdr *ph = p->phdr;
968 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
969 if (ph->p_type == PT_DYNAMIC) {
970 p->dynv = (void *)(p->base + ph->p_vaddr);
971 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +0200972 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
973 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
974 }
Rich Felkerf419bcb2012-08-26 21:09:26 -0400975 if (ph->p_type != PT_LOAD) continue;
976 if (ph->p_vaddr < min_addr)
977 min_addr = ph->p_vaddr;
978 if (ph->p_vaddr+ph->p_memsz > max_addr)
979 max_addr = ph->p_vaddr+ph->p_memsz;
980 }
981 min_addr &= -PAGE_SIZE;
982 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
983 p->map = p->base + min_addr;
984 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +0200985 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -0400986}
987
Rich Felkerf4f77c02012-10-05 13:09:09 -0400988static void do_fini()
989{
990 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -0400991 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -0400992 for (p=fini_head; p; p=p->fini_next) {
993 if (!p->constructed) continue;
994 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -0400995 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
996 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker1b413572013-07-21 02:35:46 -0400997 size_t *fn = (size_t *)(p->base + dyn[DT_FINI_ARRAY])+n;
998 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -0400999 }
Rich Felker1da53da2013-07-22 14:08:33 -04001000#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001001 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felkere69ae842013-07-20 18:26:17 -04001002 ((void (*)(void))(p->base + dyn[DT_FINI]))();
Rich Felker1da53da2013-07-22 14:08:33 -04001003#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001004 }
1005}
1006
Rich Felker4ce3cb52012-02-06 14:39:09 -05001007static void do_init_fini(struct dso *p)
1008{
Rich Felkerf4f95622015-04-13 22:38:18 -04001009 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001010 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001011 /* Allow recursive calls that arise when a library calls
1012 * dlopen from one of its constructors, but block any
1013 * other threads until all ctors have finished. */
1014 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001015 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001016 if (p->constructed) continue;
1017 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001018 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001019 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001020 p->fini_next = fini_head;
1021 fini_head = p;
1022 }
Rich Felker1da53da2013-07-22 14:08:33 -04001023#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001024 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker4ce3cb52012-02-06 14:39:09 -05001025 ((void (*)(void))(p->base + dyn[DT_INIT]))();
Rich Felker1da53da2013-07-22 14:08:33 -04001026#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001027 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1028 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
1029 size_t *fn = (void *)(p->base + dyn[DT_INIT_ARRAY]);
1030 while (n--) ((void (*)(void))*fn++)();
1031 }
Rich Felker509b50e2013-06-29 02:24:02 -04001032 if (!need_locking && libc.threads_minus_1) {
1033 need_locking = 1;
1034 pthread_mutex_lock(&init_fini_lock);
1035 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001036 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001037 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001038}
1039
Rich Felker326e1262015-04-17 23:23:05 -04001040static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001041{
1042}
1043
Rich Felker326e1262015-04-17 23:23:05 -04001044weak_alias(dl_debug_state, _dl_debug_state);
1045
Rich Felker7c6c2902013-08-03 16:27:30 -04001046void __reset_tls()
1047{
1048 pthread_t self = __pthread_self();
1049 struct dso *p;
1050 for (p=head; p; p=p->next) {
1051 if (!p->tls_id || !self->dtv[p->tls_id]) continue;
1052 memcpy(self->dtv[p->tls_id], p->tls_image, p->tls_len);
1053 memset((char *)self->dtv[p->tls_id]+p->tls_len, 0,
1054 p->tls_size - p->tls_len);
1055 if (p->tls_id == (size_t)self->dtv[0]) break;
1056 }
1057}
1058
Rich Felkerdcd60372012-10-05 11:51:50 -04001059void *__copy_tls(unsigned char *mem)
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001060{
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001061 pthread_t td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001062 struct dso *p;
Rich Felker0f66fce2015-04-13 18:07:10 -04001063 void **dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001064
Rich Felker9ec42832012-10-15 18:51:53 -04001065#ifdef TLS_ABOVE_TP
Rich Felker0f66fce2015-04-13 18:07:10 -04001066 dtv = (void **)(mem + libc.tls_size) - (tls_cnt + 1);
1067
Rich Felker9ec42832012-10-15 18:51:53 -04001068 mem += -((uintptr_t)mem + sizeof(struct pthread)) & (tls_align-1);
1069 td = (pthread_t)mem;
1070 mem += sizeof(struct pthread);
1071
1072 for (p=head; p; p=p->next) {
1073 if (!p->tls_id) continue;
1074 dtv[p->tls_id] = mem + p->tls_offset;
1075 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
1076 }
1077#else
Rich Felker0f66fce2015-04-13 18:07:10 -04001078 dtv = (void **)mem;
1079
Rich Felkere23d3582012-10-13 23:25:20 -04001080 mem += libc.tls_size - sizeof(struct pthread);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001081 mem -= (uintptr_t)mem & (tls_align-1);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001082 td = (pthread_t)mem;
1083
1084 for (p=head; p; p=p->next) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001085 if (!p->tls_id) continue;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001086 dtv[p->tls_id] = mem - p->tls_offset;
1087 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001088 }
Rich Felker9ec42832012-10-15 18:51:53 -04001089#endif
Rich Felker0f66fce2015-04-13 18:07:10 -04001090 dtv[0] = (void *)tls_cnt;
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001091 td->dtv = td->dtv_copy = dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001092 return td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001093}
1094
Rich Felkerbc081f62015-04-14 10:42:44 -04001095__attribute__((__visibility__("hidden")))
Rich Felker5ba238e2014-06-19 02:59:44 -04001096void *__tls_get_new(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001097{
1098 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001099
1100 /* Block signals to make accessing new TLS async-signal-safe */
1101 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001102 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001103 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001104 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001105 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001106 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001107
1108 /* This is safe without any locks held because, if the caller
1109 * is able to request the Nth entry of the DTV, the DSO list
1110 * must be valid at least that far out and it was synchronized
1111 * at program startup or by an already-completed call to dlopen. */
1112 struct dso *p;
1113 for (p=head; p->tls_id != v[0]; p=p->next);
1114
1115 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001116 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001117 void **newdtv = p->new_dtv +
1118 (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001119 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001120 ((size_t)self->dtv[0]+1) * sizeof(void *));
1121 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001122 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001123 }
1124
Rich Felkere75b16c2014-06-19 02:16:57 -04001125 /* Get new TLS memory from all new DSOs up to the requested one */
1126 unsigned char *mem;
1127 for (p=head; ; p=p->next) {
1128 if (!p->tls_id || self->dtv[p->tls_id]) continue;
1129 mem = p->new_tls + (p->tls_size + p->tls_align)
1130 * a_fetch_add(&p->new_tls_idx,1);
1131 mem += ((uintptr_t)p->tls_image - (uintptr_t)mem)
1132 & (p->tls_align-1);
1133 self->dtv[p->tls_id] = mem;
1134 memcpy(mem, p->tls_image, p->tls_len);
1135 if (p->tls_id == v[0]) break;
1136 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001137 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001138 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001139}
1140
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001141static void update_tls_size()
1142{
Rich Felker9ec42832012-10-15 18:51:53 -04001143 libc.tls_size = ALIGN(
1144 (1+tls_cnt) * sizeof(void *) +
1145 tls_offset +
1146 sizeof(struct pthread) +
1147 tls_align * 2,
1148 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001149}
1150
Rich Felkerf3ddd172015-04-13 02:56:26 -04001151/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1152 * following stage 2 and stage 3 functions via primitive symbolic lookup
1153 * since it does not have access to their addresses to begin with. */
1154
1155/* Stage 2 of the dynamic linker is called after relative relocations
1156 * have been processed. It can make function calls to static functions
1157 * and access string literals and static data, but cannot use extern
1158 * symbols. Its job is to perform symbolic relocations on the dynamic
1159 * linker itself, but some of the relocations performed may need to be
1160 * replaced later due to copy relocations in the main program. */
1161
Rich Felker768b82c2015-05-25 19:15:17 -04001162void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001163{
Rich Felkerf3ddd172015-04-13 02:56:26 -04001164 Ehdr *ehdr = (void *)base;
1165 ldso.base = base;
1166 ldso.name = ldso.shortname = "libc.so";
1167 ldso.global = 1;
1168 ldso.phnum = ehdr->e_phnum;
1169 ldso.phdr = (void *)(base + ehdr->e_phoff);
1170 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001171 kernel_mapped_dso(&ldso);
1172 decode_dyn(&ldso);
1173
Rich Felker9bbddf72015-05-25 23:33:59 -04001174 /* Prepare storage for to save clobbered REL addends so they
1175 * can be reused in stage 3. There should be very few. If
1176 * something goes wrong and there are a huge number, abort
1177 * instead of risking stack overflow. */
1178 size_t dyn[DYN_CNT];
1179 decode_vec(ldso.dynv, dyn, DYN_CNT);
1180 size_t *rel = (void *)(base+dyn[DT_REL]);
1181 size_t rel_size = dyn[DT_RELSZ];
1182 size_t symbolic_rel_cnt = 0;
1183 apply_addends_to = rel;
1184 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
1185 if (!IS_RELATIVE(rel[1])) symbolic_rel_cnt++;
1186 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1187 size_t addends[symbolic_rel_cnt+1];
1188 saved_addends = addends;
1189
Rich Felkerf3ddd172015-04-13 02:56:26 -04001190 head = &ldso;
1191 reloc_all(&ldso);
1192
1193 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001194
1195 /* Call dynamic linker stage-3, __dls3, looking it up
1196 * symbolically as a barrier against moving the address
1197 * load across the above relocation processing. */
1198 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
1199 ((stage3_func)(ldso.base+dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001200}
1201
1202/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1203 * fully functional. Its job is to load (if not already loaded) and
1204 * process dependencies and relocations for the main application and
1205 * transfer control to its entry point. */
1206
1207_Noreturn void __dls3(size_t *sp)
1208{
1209 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001210 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001211 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001212 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001213 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001214 int argc = *sp;
1215 char **argv = (void *)(sp+1);
1216 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001217 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001218
Rich Felker75ce4502015-06-07 20:55:23 +00001219 /* Find aux vector just past environ[] and use it to initialize
1220 * global data that may be needed before we can make syscalls. */
1221 __environ = envp;
1222 for (i=argc+1; argv[i]; i++);
1223 libc.auxv = auxv = (void *)(argv+i+1);
1224 decode_vec(auxv, aux, AUX_CNT);
1225 __hwcap = aux[AT_HWCAP];
1226 libc.page_size = aux[AT_PAGESZ];
1227 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1228 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1229
Rich Felker71f099c2015-04-13 18:40:52 -04001230 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1231 * use during dynamic linking. If possible it will also serve as the
1232 * thread pointer at runtime. */
1233 libc.tls_size = sizeof builtin_tls;
1234 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001235 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001236 }
Rich Felker51e2d832011-06-18 19:48:42 -04001237
Rich Felker568b8072011-06-25 01:56:34 -04001238 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001239 if (!libc.secure) {
1240 env_path = getenv("LD_LIBRARY_PATH");
1241 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001242 }
1243
Rich Felkerf3ddd172015-04-13 02:56:26 -04001244 /* If the main program was already loaded by the kernel,
1245 * AT_PHDR will point to some location other than the dynamic
1246 * linker's program headers. */
1247 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001248 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001249 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001250 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001251 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1252 app.phnum = aux[AT_PHNUM];
1253 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001254 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1255 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001256 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001257 else if (phdr->p_type == PT_INTERP)
1258 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001259 else if (phdr->p_type == PT_TLS) {
1260 tls_image = phdr->p_vaddr;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001261 app.tls_len = phdr->p_filesz;
1262 app.tls_size = phdr->p_memsz;
1263 app.tls_align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001264 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001265 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001266 if (app.tls_size) app.tls_image = (char *)app.base + tls_image;
1267 if (interp_off) ldso.name = (char *)app.base + interp_off;
Rich Felkercc515052013-08-23 14:14:47 -04001268 if ((aux[0] & (1UL<<AT_EXECFN))
1269 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001270 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001271 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001272 app.name = argv[0];
1273 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001274 } else {
1275 int fd;
1276 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001277 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001278 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001279 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001280 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1281 char *opt = argv[0]+2;
1282 *argv++ = (void *)-1;
1283 if (!*opt) {
1284 break;
1285 } else if (!memcmp(opt, "list", 5)) {
1286 ldd_mode = 1;
1287 } else if (!memcmp(opt, "library-path", 12)) {
1288 if (opt[12]=='=') env_path = opt+13;
1289 else if (opt[12]) *argv = 0;
1290 else if (*argv) env_path = *argv++;
1291 } else if (!memcmp(opt, "preload", 7)) {
1292 if (opt[7]=='=') env_preload = opt+8;
1293 else if (opt[7]) *argv = 0;
1294 else if (*argv) env_preload = *argv++;
1295 } else {
1296 argv[0] = 0;
1297 }
Rich Felkerde451642014-04-16 12:45:36 -04001298 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001299 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001300 if (!argv[0]) {
Rich Felker179ab5a2013-12-01 17:27:25 -05001301 dprintf(2, "musl libc\n"
1302 "Version %s\n"
1303 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001304 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001305 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001306 ldd_mode ? "" : " [args]");
1307 _exit(1);
1308 }
1309 fd = open(argv[0], O_RDONLY);
1310 if (fd < 0) {
1311 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1312 _exit(1);
1313 }
1314 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001315 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001316 if (!ehdr) {
1317 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1318 _exit(1);
1319 }
1320 runtime = 0;
1321 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001322 ldso.name = ldname;
1323 app.name = argv[0];
1324 aux[AT_ENTRY] = (size_t)app.base + ehdr->e_entry;
Rich Felkera97a0502013-07-26 14:41:12 -04001325 /* Find the name that would have been used for the dynamic
1326 * linker had ldd not taken its place. */
1327 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001328 for (i=0; i<app.phnum; i++) {
1329 if (app.phdr[i].p_type == PT_INTERP)
1330 ldso.name = (void *)(app.base
1331 + app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001332 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001333 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001334 }
Rich Felkere12fe652012-01-23 02:02:59 -05001335 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001336 if (app.tls_size) {
1337 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001338#ifdef TLS_ABOVE_TP
Rich Felkerf3ddd172015-04-13 02:56:26 -04001339 app.tls_offset = 0;
1340 tls_offset = app.tls_size
1341 + ( -((uintptr_t)app.tls_image + app.tls_size)
1342 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001343#else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001344 tls_offset = app.tls_offset = app.tls_size
1345 + ( -((uintptr_t)app.tls_image + app.tls_size)
1346 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001347#endif
Rich Felkerf3ddd172015-04-13 02:56:26 -04001348 tls_align = MAXP2(tls_align, app.tls_align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001349 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001350 app.global = 1;
1351 decode_dyn(&app);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001352
1353 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001354 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001355 Ehdr *ehdr = (void *)vdso_base;
1356 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1357 vdso.phnum = ehdr->e_phnum;
1358 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001359 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1360 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001361 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001362 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001363 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001364 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001365 vdso.name = "";
1366 vdso.shortname = "linux-gate.so.1";
1367 vdso.global = 1;
1368 vdso.relocated = 1;
1369 decode_dyn(&vdso);
1370 vdso.prev = &ldso;
1371 ldso.next = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001372 }
1373
Rich Felkerf3ddd172015-04-13 02:56:26 -04001374 /* Initial dso chain consists only of the app. */
1375 head = tail = &app;
Rich Felker51e2d832011-06-18 19:48:42 -04001376
Rich Felkerc82f4a32012-01-23 00:57:38 -05001377 /* Donate unused parts of app and library mapping to malloc */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001378 reclaim_gaps(&app);
1379 reclaim_gaps(&ldso);
Rich Felker6717e622011-06-28 19:40:14 -04001380
Rich Felkerc82f4a32012-01-23 00:57:38 -05001381 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerf3ddd172015-04-13 02:56:26 -04001382 * namespace, and perform all remaining relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001383 if (env_preload) load_preload(env_preload);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001384 load_deps(&app);
1385 make_global(&app);
Rich Felker9c748562012-10-04 22:48:33 -04001386
Timo Teräse13a2b82014-03-25 14:13:27 +02001387#ifndef DYNAMIC_IS_RO
Rich Felkerf3ddd172015-04-13 02:56:26 -04001388 for (i=0; app.dynv[i]; i+=2)
1389 if (app.dynv[i]==DT_DEBUG)
1390 app.dynv[i+1] = (size_t)&debug;
Timo Teräse13a2b82014-03-25 14:13:27 +02001391#endif
1392
Rich Felkerf3ddd172015-04-13 02:56:26 -04001393 /* The main program must be relocated LAST since it may contin
1394 * copy relocations which depend on libraries' relocations. */
1395 reloc_all(app.next);
1396 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001397
1398 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001399 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1400 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001401 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001402 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001403 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001404 _exit(127);
1405 }
Rich Felker71f099c2015-04-13 18:40:52 -04001406 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001407 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001408 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001409 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001410 size_t tmp_tls_size = libc.tls_size;
1411 pthread_t self = __pthread_self();
1412 /* Temporarily set the tls size to the full size of
1413 * builtin_tls so that __copy_tls will use the same layout
1414 * as it did for before. Then check, just to be safe. */
1415 libc.tls_size = sizeof builtin_tls;
1416 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1417 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001418 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001419 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001420
Rich Felker04109502012-08-18 16:00:23 -04001421 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001422 if (ldd_mode) _exit(0);
1423
Rich Felkerc82f4a32012-01-23 00:57:38 -05001424 /* Switch to runtime mode: any further failures in the dynamic
1425 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001426 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001427 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001428
Rich Felker3ec8d292012-04-25 00:05:42 -04001429 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001430 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001431 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001432 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001433 debug.state = 0;
1434 _dl_debug_state();
1435
Rich Felker75863602013-07-21 03:00:54 -04001436 __init_libc(envp, argv[0]);
Rich Felkera7936f62012-11-30 17:56:23 -05001437 atexit(do_fini);
Rich Felker75863602013-07-21 03:00:54 -04001438 errno = 0;
Rich Felkera7936f62012-11-30 17:56:23 -05001439 do_init_fini(tail);
Rich Felker75863602013-07-21 03:00:54 -04001440
Rich Felkerf3ddd172015-04-13 02:56:26 -04001441 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1442 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001443}
1444
Rich Felker59ab43f2011-06-26 19:23:28 -04001445void *dlopen(const char *file, int mode)
1446{
Rich Felker642b7592012-10-05 01:15:25 -04001447 struct dso *volatile p, *orig_tail, *next;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001448 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001449 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001450 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001451 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001452
1453 if (!file) return head;
1454
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001455 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001456 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001457 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001458
Rich Felkerdcd60372012-10-05 11:51:50 -04001459 p = 0;
1460 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001461 orig_tls_offset = tls_offset;
1462 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001463 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001464 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001465
Rich Felker17276be2013-07-24 02:38:05 -04001466 rtld_fail = &jb;
1467 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001468 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001469 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001470 if (p->deps[i]->global < 0)
1471 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001472 for (p=orig_tail->next; p; p=next) {
1473 next = p->next;
1474 munmap(p->map, p->map_len);
Rich Felker9d15d5e2014-06-19 02:01:06 -04001475 while (p->td_index) {
1476 void *tmp = p->td_index->next;
1477 free(p->td_index);
1478 p->td_index = tmp;
1479 }
Rich Felker07709622015-04-04 00:15:19 -04001480 if (p->rpath != p->rpath_orig)
1481 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001482 free(p->deps);
1483 free(p);
1484 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001485 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001486 tls_offset = orig_tls_offset;
1487 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001488 tail = orig_tail;
1489 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001490 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001491 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001492 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001493
1494 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001495 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001496 "Library %s is not already loaded" :
1497 "Error loading shared library %s: %m",
1498 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001499 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001500 }
1501
Rich Felker59ab43f2011-06-26 19:23:28 -04001502 /* First load handling */
1503 if (!p->deps) {
1504 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001505 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001506 if (!p->deps[i]->global)
1507 p->deps[i]->global = -1;
1508 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001509 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001510 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001511 if (p->deps[i]->global < 0)
1512 p->deps[i]->global = 0;
1513 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001514 }
1515
1516 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001517 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001518 p->deps[i]->global = 1;
1519 p->global = 1;
1520 }
1521
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001522 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001523 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001524 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001525end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001526 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001527 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001528 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001529 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001530 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001531 return p;
1532}
1533
Rich Felker4d982802013-01-16 11:49:00 -05001534static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001535{
1536 struct dso *p;
1537 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001538 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001539 return 1;
1540}
1541
Rich Felker5ba238e2014-06-19 02:59:44 -04001542void *__tls_get_addr(size_t *);
1543
Rich Felker623753a2011-08-16 00:42:13 -04001544static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001545{
1546 size_t i;
Rich Felker2bd05a42012-08-25 17:13:28 -04001547 uint32_t h = 0, gh = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001548 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001549 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001550 if (p == RTLD_DEFAULT) {
1551 p = head;
1552 } else if (p == RTLD_NEXT) {
Rich Felker9c748562012-10-04 22:48:33 -04001553 for (p=head; p && (unsigned char *)ra-p->map>p->map_len; p=p->next);
1554 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001555 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001556 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001557 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001558 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001559 if ((def.sym->st_info&0xf) == STT_TLS)
1560 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felker9c748562012-10-04 22:48:33 -04001561 return def.dso->base + def.sym->st_value;
Rich Felkera9e85c02012-03-23 00:28:20 -04001562 }
Rich Felker97b72d22015-04-21 13:07:06 -04001563 if (invalid_dso_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001564 return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -04001565 if (p->ghashtab) {
1566 gh = gnu_hash(s);
1567 sym = gnu_lookup(s, gh, p);
1568 } else {
1569 h = sysv_hash(s);
1570 sym = sysv_lookup(s, h, p);
1571 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001572 if (sym && (sym->st_info&0xf) == STT_TLS)
1573 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001574 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1575 return p->base + sym->st_value;
1576 if (p->deps) for (i=0; p->deps[i]; i++) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001577 if (p->deps[i]->ghashtab) {
1578 if (!gh) gh = gnu_hash(s);
Rich Felkera5d61992012-08-25 17:40:27 -04001579 sym = gnu_lookup(s, gh, p->deps[i]);
Rich Felker2bd05a42012-08-25 17:13:28 -04001580 } else {
1581 if (!h) h = sysv_hash(s);
1582 sym = sysv_lookup(s, h, p->deps[i]);
1583 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001584 if (sym && (sym->st_info&0xf) == STT_TLS)
1585 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001586 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1587 return p->deps[i]->base + sym->st_value;
1588 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001589failed:
Rich Felker01d42742015-04-18 18:00:22 -04001590 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001591 return 0;
1592}
1593
Rich Felker839cc4e2014-01-06 22:03:38 -05001594int __dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001595{
1596 struct dso *p;
1597 Sym *sym;
1598 uint32_t nsym;
1599 char *strings;
1600 size_t i;
1601 void *best = 0;
1602 char *bestname;
1603
1604 pthread_rwlock_rdlock(&lock);
1605 for (p=head; p && (unsigned char *)addr-p->map>p->map_len; p=p->next);
1606 pthread_rwlock_unlock(&lock);
1607
1608 if (!p) return 0;
1609
1610 sym = p->syms;
1611 strings = p->strings;
1612 if (p->hashtab) {
1613 nsym = p->hashtab[1];
1614 } else {
1615 uint32_t *buckets;
1616 uint32_t *hashval;
1617 buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
1618 sym += p->ghashtab[1];
Rich Felker78869852013-10-04 00:29:58 -04001619 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
Rich Felkerf419bcb2012-08-26 21:09:26 -04001620 if (buckets[i] > nsym)
1621 nsym = buckets[i];
1622 }
1623 if (nsym) {
1624 nsym -= p->ghashtab[1];
1625 hashval = buckets + p->ghashtab[0] + nsym;
1626 do nsym++;
1627 while (!(*hashval++ & 1));
1628 }
1629 }
1630
1631 for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001632 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001633 && (1<<(sym->st_info&0xf) & OK_TYPES)
1634 && (1<<(sym->st_info>>4) & OK_BINDS)) {
1635 void *symaddr = p->base + sym->st_value;
1636 if (symaddr > addr || symaddr < best)
1637 continue;
1638 best = symaddr;
1639 bestname = strings + sym->st_name;
1640 if (addr == symaddr)
1641 break;
1642 }
1643 }
1644
1645 if (!best) return 0;
1646
1647 info->dli_fname = p->name;
1648 info->dli_fbase = p->base;
1649 info->dli_sname = bestname;
1650 info->dli_saddr = best;
1651
1652 return 1;
1653}
1654
Rich Felker72b25dd2015-04-14 11:39:11 -04001655__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001656void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001657{
1658 void *res;
1659 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001660 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001661 pthread_rwlock_unlock(&lock);
1662 return res;
1663}
Rich Felker18c0e022012-10-31 21:27:48 -04001664
1665int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1666{
1667 struct dso *current;
1668 struct dl_phdr_info info;
1669 int ret = 0;
1670 for(current = head; current;) {
1671 info.dlpi_addr = (uintptr_t)current->base;
1672 info.dlpi_name = current->name;
1673 info.dlpi_phdr = current->phdr;
1674 info.dlpi_phnum = current->phnum;
1675 info.dlpi_adds = gencnt;
1676 info.dlpi_subs = 0;
1677 info.dlpi_tls_modid = current->tls_id;
1678 info.dlpi_tls_data = current->tls_image;
1679
1680 ret = (callback)(&info, sizeof (info), data);
1681
1682 if (ret != 0) break;
1683
1684 pthread_rwlock_rdlock(&lock);
1685 current = current->next;
1686 pthread_rwlock_unlock(&lock);
1687 }
1688 return ret;
1689}
Rich Felker5a09a532012-02-03 03:16:07 -05001690#else
Rich Felker4d982802013-01-16 11:49:00 -05001691static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001692{
Rich Felker01d42742015-04-18 18:00:22 -04001693 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001694 return 1;
1695}
Rich Felker5a09a532012-02-03 03:16:07 -05001696void *dlopen(const char *file, int mode)
1697{
Rich Felker01d42742015-04-18 18:00:22 -04001698 error("Dynamic loading not supported");
Rich Felker5a09a532012-02-03 03:16:07 -05001699 return 0;
1700}
Rich Felker400c5e52012-09-06 22:44:55 -04001701void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001702{
Rich Felker01d42742015-04-18 18:00:22 -04001703 error("Symbol not found: %s", s);
Rich Felker5a09a532012-02-03 03:16:07 -05001704 return 0;
1705}
Rich Felker839cc4e2014-01-06 22:03:38 -05001706int __dladdr (const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001707{
1708 return 0;
1709}
Rich Felker5a09a532012-02-03 03:16:07 -05001710#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001711
Rich Felker780cbbe2013-06-29 12:46:46 -04001712int __dlinfo(void *dso, int req, void *res)
1713{
1714 if (invalid_dso_handle(dso)) return -1;
1715 if (req != RTLD_DI_LINKMAP) {
Rich Felker01d42742015-04-18 18:00:22 -04001716 error("Unsupported request %d", req);
Rich Felker780cbbe2013-06-29 12:46:46 -04001717 return -1;
1718 }
1719 *(struct link_map **)res = dso;
1720 return 0;
1721}
1722
Rich Felker59ab43f2011-06-26 19:23:28 -04001723char *dlerror()
1724{
Rich Felker01d42742015-04-18 18:00:22 -04001725 pthread_t self = __pthread_self();
1726 if (!self->dlerror_flag) return 0;
1727 self->dlerror_flag = 0;
1728 char *s = self->dlerror_buf;
1729 if (s == (void *)-1)
1730 return "Dynamic linker failed to allocate memory for error message";
1731 else
1732 return s;
Rich Felker59ab43f2011-06-26 19:23:28 -04001733}
1734
1735int dlclose(void *p)
1736{
Rich Felker6468fc92013-01-10 14:05:40 -05001737 return invalid_dso_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001738}
Rich Felker01d42742015-04-18 18:00:22 -04001739
1740void __dl_thread_cleanup(void)
1741{
1742 pthread_t self = __pthread_self();
1743 if (self->dlerror_buf != (void *)-1)
1744 free(self->dlerror_buf);
1745}
1746
1747static void error(const char *fmt, ...)
1748{
1749 va_list ap;
1750 va_start(ap, fmt);
1751#ifdef SHARED
1752 if (!runtime) {
1753 vdprintf(2, fmt, ap);
1754 dprintf(2, "\n");
1755 ldso_fail = 1;
1756 va_end(ap);
1757 return;
1758 }
1759#endif
1760 pthread_t self = __pthread_self();
1761 if (self->dlerror_buf != (void *)-1)
1762 free(self->dlerror_buf);
1763 size_t len = vsnprintf(0, 0, fmt, ap);
1764 va_end(ap);
1765 char *buf = malloc(len+1);
1766 if (buf) {
1767 va_start(ap, fmt);
1768 vsnprintf(buf, len+1, fmt, ap);
1769 va_end(ap);
1770 } else {
1771 buf = (void *)-1;
1772 }
1773 self->dlerror_buf = buf;
1774 self->dlerror_flag = 1;
1775}