blob: 70b2ae13636aed58f1a8bb67222edd38cb692f2f [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
Alexander Monakov8f08a582015-06-28 02:48:33 +0300177static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
Rich Felker2bd05a42012-08-25 17:13:28 -0400178{
Rich Felker2bd05a42012-08-25 17:13:28 -0400179 uint32_t nbuckets = hashtab[0];
180 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
Rich Felker72482f92013-08-08 16:10:35 -0400181 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400182
Rich Felker72482f92013-08-08 16:10:35 -0400183 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400184
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300185 uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400186
Rich Felker72482f92013-08-08 16:10:35 -0400187 for (h1 |= 1; ; i++) {
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300188 uint32_t h2 = *hashval++;
189 if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
190 && !strcmp(s, dso->strings + dso->syms[i].st_name))
191 return dso->syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400192 if (h2 & 1) break;
193 }
194
195 return 0;
196}
197
Alexander Monakov8f08a582015-06-28 02:48:33 +0300198static 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 +0300199{
Alexander Monakov84389c62015-06-28 02:48:31 +0300200 const size_t *bloomwords = (const void *)(hashtab+4);
201 size_t f = bloomwords[fofs & (hashtab[2]-1)];
202 if (!(f & fmask)) return 0;
203
204 f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
205 if (!(f & 1)) return 0;
206
Alexander Monakov8f08a582015-06-28 02:48:33 +0300207 return gnu_lookup(h1, hashtab, dso, s);
Alexander Monakov84389c62015-06-28 02:48:31 +0300208}
209
Rich Felker9c748562012-10-04 22:48:33 -0400210#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 -0400211#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400212
Rich Felker2d8cc922014-06-30 01:18:14 -0400213#ifndef ARCH_SYM_REJECT_UND
214#define ARCH_SYM_REJECT_UND(s) 0
215#endif
216
Rich Felker9c748562012-10-04 22:48:33 -0400217static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400218{
Alexander Monakov8f08a582015-06-28 02:48:33 +0300219 uint32_t h = 0, gh, gho, *ght;
Alexander Monakov84389c62015-06-28 02:48:31 +0300220 size_t ghm = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400221 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400222 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400223 Sym *sym;
224 if (!dso->global) continue;
Alexander Monakov8f08a582015-06-28 02:48:33 +0300225 if ((ght = dso->ghashtab)) {
Alexander Monakov84389c62015-06-28 02:48:31 +0300226 if (!ghm) {
227 gh = gnu_hash(s);
228 int maskbits = 8 * sizeof ghm;
229 gho = gh / maskbits;
230 ghm = 1ul << gh % maskbits;
231 }
Alexander Monakov8f08a582015-06-28 02:48:33 +0300232 sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
Rich Felker2bd05a42012-08-25 17:13:28 -0400233 } else {
234 if (!h) h = sysv_hash(s);
235 sym = sysv_lookup(s, h, dso);
236 }
Rich Felkerbd174312012-10-06 01:36:11 -0400237 if (!sym) continue;
238 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400239 if (need_def || (sym->st_info&0xf) == STT_TLS
240 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400241 continue;
242 if (!sym->st_value)
243 if ((sym->st_info&0xf) != STT_TLS)
244 continue;
245 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
246 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
247
248 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
249 def.sym = sym;
250 def.dso = dso;
251 if (sym->st_info>>4 == STB_GLOBAL) break;
Rich Felker51e2d832011-06-18 19:48:42 -0400252 }
Rich Felker427173b2011-07-24 02:19:47 -0400253 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400254}
255
Rich Felker1b1cafa2015-04-17 23:29:45 -0400256__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400257ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
258
Rich Felker87d13a42012-08-05 02:49:02 -0400259static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400260{
Rich Felker87d13a42012-08-05 02:49:02 -0400261 unsigned char *base = dso->base;
262 Sym *syms = dso->syms;
263 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400264 Sym *sym;
265 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400266 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400267 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400268 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400269 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400270 size_t *reloc_addr;
271 size_t sym_val;
272 size_t tls_val;
273 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400274 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
275
276 if (dso == &ldso) {
277 /* Only ldso's REL table needs addend saving/reuse. */
278 if (rel == apply_addends_to)
279 reuse_addends = 1;
280 skip_relative = 1;
281 }
Rich Felker51e2d832011-06-18 19:48:42 -0400282
283 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker9bbddf72015-05-25 23:33:59 -0400284 if (skip_relative && IS_RELATIVE(rel[1])) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400285 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400286 if (type == REL_NONE) continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400287 sym_index = R_SYM(rel[1]);
Rich Felkeradf94c12014-06-18 02:44:02 -0400288 reloc_addr = (void *)(base + rel[0]);
Rich Felker51e2d832011-06-18 19:48:42 -0400289 if (sym_index) {
290 sym = syms + sym_index;
291 name = strings + sym->st_name;
Rich Felkeradf94c12014-06-18 02:44:02 -0400292 ctx = type==REL_COPY ? head->next : head;
293 def = find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500294 if (!def.sym && (sym->st_shndx != SHN_UNDEF
295 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400296 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400297 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400298 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400299 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400300 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400301 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400302 sym = 0;
303 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400304 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400305 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400306
Rich Felker9bbddf72015-05-25 23:33:59 -0400307 if (stride > 2) {
308 addend = rel[2];
309 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
310 addend = 0;
311 } else if (reuse_addends) {
312 /* Save original addend in stage 2 where the dso
313 * chain consists of just ldso; otherwise read back
314 * saved addend since the inline one was clobbered. */
315 if (head==&ldso)
316 saved_addends[save_slot] = *reloc_addr;
317 addend = saved_addends[save_slot++];
318 } else {
319 addend = *reloc_addr;
320 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400321
322 sym_val = def.sym ? (size_t)def.dso->base+def.sym->st_value : 0;
323 tls_val = def.sym ? def.sym->st_value : 0;
324
325 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400326 case REL_NONE:
327 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400328 case REL_OFFSET:
329 addend -= (size_t)reloc_addr;
330 case REL_SYMBOLIC:
331 case REL_GOT:
332 case REL_PLT:
333 *reloc_addr = sym_val + addend;
334 break;
335 case REL_RELATIVE:
336 *reloc_addr = (size_t)base + addend;
337 break;
338 case REL_SYM_OR_REL:
339 if (sym) *reloc_addr = sym_val + addend;
340 else *reloc_addr = (size_t)base + addend;
341 break;
342 case REL_COPY:
343 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
344 break;
345 case REL_OFFSET32:
346 *(uint32_t *)reloc_addr = sym_val + addend
347 - (size_t)reloc_addr;
348 break;
349 case REL_DTPMOD:
350 *reloc_addr = def.dso->tls_id;
351 break;
352 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000353 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400354 break;
355#ifdef TLS_ABOVE_TP
356 case REL_TPOFF:
357 *reloc_addr = tls_val + def.dso->tls_offset + TPOFF_K + addend;
358 break;
359#else
360 case REL_TPOFF:
361 *reloc_addr = tls_val - def.dso->tls_offset + addend;
362 break;
363 case REL_TPOFF_NEG:
364 *reloc_addr = def.dso->tls_offset - tls_val + addend;
365 break;
366#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400367 case REL_TLSDESC:
368 if (stride<3) addend = reloc_addr[1];
369 if (runtime && def.dso->tls_id >= static_tls_cnt) {
370 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400371 if (!new) {
372 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400373 "Error relocating %s: cannot allocate TLSDESC for %s",
374 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400375 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400376 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400377 new->next = dso->td_index;
378 dso->td_index = new;
379 new->args[0] = def.dso->tls_id;
380 new->args[1] = tls_val + addend;
381 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
382 reloc_addr[1] = (size_t)new;
383 } else {
384 reloc_addr[0] = (size_t)__tlsdesc_static;
385#ifdef TLS_ABOVE_TP
386 reloc_addr[1] = tls_val + def.dso->tls_offset
387 + TPOFF_K + addend;
388#else
389 reloc_addr[1] = tls_val - def.dso->tls_offset
390 + addend;
391#endif
392 }
393 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400394 default:
395 error("Error relocating %s: unsupported relocation type %d",
396 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400397 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400398 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400399 }
Rich Felker51e2d832011-06-18 19:48:42 -0400400 }
401}
402
Rich Felker6717e622011-06-28 19:40:14 -0400403/* A huge hack: to make up for the wastefulness of shared libraries
404 * needing at least a page of dirty memory even if they have no global
405 * data, we reclaim the gaps at the beginning and end of writable maps
406 * and "donate" them to the heap by setting up minimal malloc
407 * structures and then freeing them. */
408
Timo Teräse13a2b82014-03-25 14:13:27 +0200409static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400410{
411 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200412 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
413 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400414 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
415 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
416 if (start>end || end-start < 4*sizeof(size_t)) return;
Timo Teräse13a2b82014-03-25 14:13:27 +0200417 a = (size_t *)(dso->base + start);
418 z = (size_t *)(dso->base + end);
Rich Felker6717e622011-06-28 19:40:14 -0400419 a[-2] = 1;
420 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
421 z[1] = 1;
422 free(a);
423}
424
Timo Teräs87691962014-03-25 20:59:50 +0200425static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400426{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400427 Phdr *ph = dso->phdr;
428 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200429
Rich Felkerfa7248c2014-03-25 16:21:50 -0400430 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400431 if (ph->p_type!=PT_LOAD) continue;
432 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200433 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
434 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400435 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
436 }
437}
438
Rich Felkerce337da2015-06-23 04:03:42 +0000439static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
440{
441 char *q = mmap(p, n, prot, flags, fd, off);
442 if (q != MAP_FAILED || errno != EINVAL) return q;
443 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
444 if (flags & MAP_ANONYMOUS) {
445 memset(p, 0, n);
446 return p;
447 }
448 ssize_t r;
449 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
450 for (q=p; n; q+=r, off+=r, n-=r) {
451 r = read(fd, q, n);
452 if (r < 0 && errno != EINTR) return MAP_FAILED;
453 if (!r) {
454 memset(q, 0, n);
455 break;
456 }
457 }
458 return p;
459}
460
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400461static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400462{
Rich Felker59633c72011-06-25 12:26:08 -0400463 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400464 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400465 size_t phsize;
466 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
467 size_t this_min, this_max;
468 off_t off_start;
469 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400470 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400471 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400472 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400473 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400474 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400475 size_t i;
476
477 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400478 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400479 if (l<0) return 0;
480 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
481 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400482 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400483 if (phsize > sizeof buf - sizeof *eh) {
484 allocated_buf = malloc(phsize);
485 if (!allocated_buf) return 0;
486 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
487 if (l < 0) goto error;
488 if (l != phsize) goto noexec;
489 ph = ph0 = allocated_buf;
490 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400491 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400492 if (l < 0) goto error;
493 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400494 ph = ph0 = (void *)(buf + 1);
495 } else {
496 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400497 }
Rich Felker51e2d832011-06-18 19:48:42 -0400498 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400499 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400500 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400501 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400502 tls_image = ph->p_vaddr;
503 dso->tls_align = ph->p_align;
504 dso->tls_len = ph->p_filesz;
505 dso->tls_size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200506 } else if (ph->p_type == PT_GNU_RELRO) {
507 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
508 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400509 }
Rich Felker51e2d832011-06-18 19:48:42 -0400510 if (ph->p_type != PT_LOAD) continue;
511 if (ph->p_vaddr < addr_min) {
512 addr_min = ph->p_vaddr;
513 off_start = ph->p_offset;
514 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
515 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
516 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
517 }
518 if (ph->p_vaddr+ph->p_memsz > addr_max) {
519 addr_max = ph->p_vaddr+ph->p_memsz;
520 }
521 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400522 if (!dyn) goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400523 addr_max += PAGE_SIZE-1;
524 addr_max &= -PAGE_SIZE;
525 addr_min &= -PAGE_SIZE;
526 off_start &= -PAGE_SIZE;
527 map_len = addr_max - addr_min + off_start;
528 /* The first time, we map too much, possibly even more than
529 * the length of the file. This is okay because we will not
530 * use the invalid part; we just need to reserve the right
531 * amount of virtual address space to map over later. */
Rich Felkerbf301002011-06-28 14:20:41 -0400532 map = mmap((void *)addr_min, map_len, prot, MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400533 if (map==MAP_FAILED) goto error;
Rich Felker339516a2013-07-31 14:42:08 -0400534 /* If the loaded file is not relocatable and the requested address is
535 * not available, then the load operation must fail. */
536 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
537 errno = EBUSY;
538 goto error;
539 }
Rich Felker51e2d832011-06-18 19:48:42 -0400540 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400541 dso->phdr = 0;
542 dso->phnum = 0;
543 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400544 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400545 /* Check if the programs headers are in this load segment, and
546 * if so, record the address for use by dl_iterate_phdr. */
547 if (!dso->phdr && eh->e_phoff >= ph->p_offset
548 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
549 dso->phdr = (void *)(base + ph->p_vaddr
550 + (eh->e_phoff-ph->p_offset));
551 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200552 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400553 }
Rich Felker51e2d832011-06-18 19:48:42 -0400554 /* Reuse the existing mapping for the lowest-address LOAD */
555 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min) continue;
556 this_min = ph->p_vaddr & -PAGE_SIZE;
557 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
558 off_start = ph->p_offset & -PAGE_SIZE;
559 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
560 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
561 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000562 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 -0400563 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400564 if (ph->p_memsz > ph->p_filesz) {
565 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
566 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
567 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000568 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 -0400569 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400570 }
571 }
Rich Felker9f174132011-06-29 00:29:08 -0400572 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
573 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000574 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
575 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400576 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400577 break;
578 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400579 dso->map = map;
580 dso->map_len = map_len;
581 dso->base = base;
582 dso->dynv = (void *)(base+dyn);
583 if (dso->tls_size) dso->tls_image = (void *)(base+tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200584 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400585 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400586 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400587noexec:
588 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400589error:
Rich Felkerd5884a52013-08-02 09:56:49 -0400590 if (map!=MAP_FAILED) munmap(map, map_len);
591 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400592 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400593}
594
Rich Felker8c203ea2013-04-20 11:51:58 -0400595static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400596{
Rich Felker8c203ea2013-04-20 11:51:58 -0400597 size_t l;
598 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400599 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400600 s += strspn(s, ":\n");
601 l = strcspn(s, ":\n");
602 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400603 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
604 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
605 switch (errno) {
606 case ENOENT:
607 case ENOTDIR:
608 case EACCES:
609 case ENAMETOOLONG:
610 break;
611 default:
612 /* Any negative value but -1 will inhibit
613 * futher path search. */
614 return -2;
615 }
616 }
Rich Felker49388f32011-06-25 17:49:16 -0400617 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400618 }
Rich Felker568b8072011-06-25 01:56:34 -0400619}
620
Rich Felkera897a202013-08-23 13:56:30 -0400621static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
622{
623 size_t n, l;
624 const char *s, *t, *origin;
625 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400626 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400627 if (!strchr(p->rpath_orig, '$')) {
628 p->rpath = p->rpath_orig;
629 return 0;
630 }
631 n = 0;
632 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400633 while ((t=strchr(s, '$'))) {
634 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400635 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400636 s = t+1;
637 n++;
638 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400639 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400640
641 if (p->kernel_mapped) {
642 /* $ORIGIN searches cannot be performed for the main program
643 * when it is suid/sgid/AT_SECURE. This is because the
644 * pathname is under the control of the caller of execve.
645 * For libraries, however, $ORIGIN can be processed safely
646 * since the library's pathname came from a trusted source
647 * (either system paths or a call to dlopen). */
648 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400649 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400650 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400651 if (l == -1) switch (errno) {
652 case ENOENT:
653 case ENOTDIR:
654 case EACCES:
655 break;
656 default:
Rich Felkera897a202013-08-23 13:56:30 -0400657 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400658 }
659 if (l >= buf_size)
660 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400661 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400662 origin = buf;
663 } else {
664 origin = p->name;
665 }
666 t = strrchr(origin, '/');
667 l = t ? t-origin : 0;
668 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
669 if (!p->rpath) return -1;
670
671 d = p->rpath;
672 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400673 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400674 memcpy(d, s, t-s);
675 d += t-s;
676 memcpy(d, origin, l);
677 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400678 /* It was determined previously that the '$' is followed
679 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400680 s = t + 7 + 2*(t[1]=='{');
681 }
682 strcpy(d, s);
683 return 0;
684}
685
Rich Felkerc82f4a32012-01-23 00:57:38 -0500686static void decode_dyn(struct dso *p)
687{
Rich Felkerf4f95622015-04-13 22:38:18 -0400688 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500689 decode_vec(p->dynv, dyn, DYN_CNT);
690 p->syms = (void *)(p->base + dyn[DT_SYMTAB]);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500691 p->strings = (void *)(p->base + dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400692 if (dyn[0]&(1<<DT_HASH))
693 p->hashtab = (void *)(p->base + dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400694 if (dyn[0]&(1<<DT_RPATH))
Rich Felkera897a202013-08-23 13:56:30 -0400695 p->rpath_orig = (void *)(p->strings + dyn[DT_RPATH]);
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500696 if (dyn[0]&(1<<DT_RUNPATH))
697 p->rpath_orig = (void *)(p->strings + dyn[DT_RUNPATH]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400698 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
699 p->ghashtab = (void *)(p->base + *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400700 if (search_vec(p->dynv, dyn, DT_VERSYM))
701 p->versym = (void *)(p->base + *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500702}
703
Rich Felker709355e2013-08-23 11:15:40 -0400704static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400705{
Rich Felker5c1909a2012-05-27 16:01:44 -0400706 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400707 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500708 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400709 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400710 int fd;
711 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400712 size_t alloc_size;
713 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400714 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400715
Rich Felker59549312014-07-11 00:29:44 -0400716 if (!*name) {
717 errno = EINVAL;
718 return 0;
719 }
720
Rich Felker51e2d832011-06-18 19:48:42 -0400721 /* Catch and block attempts to reload the implementation itself */
722 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
723 static const char *rp, reserved[] =
724 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
725 char *z = strchr(name, '.');
726 if (z) {
727 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400728 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400729 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400730 if (ldd_mode) {
731 /* Track which names have been resolved
732 * and only report each one once. */
733 static unsigned reported;
734 unsigned mask = 1U<<(rp-reserved);
735 if (!(reported & mask)) {
736 reported |= mask;
737 dprintf(1, "\t%s => %s (%p)\n",
Rich Felkerf3ddd172015-04-13 02:56:26 -0400738 name, ldso.name,
739 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400740 }
741 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400742 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400743 }
744 }
745 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400746 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400747 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400748 if (!ldso.prev) {
749 tail->next = &ldso;
750 ldso.prev = tail;
751 tail = ldso.next ? ldso.next : &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400752 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400753 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400754 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400755 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400756 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400757 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400758 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400759 /* Search for the name to see if it's already loaded */
760 for (p=head->next; p; p=p->next) {
761 if (p->shortname && !strcmp(p->shortname, name)) {
762 p->refcnt++;
763 return p;
764 }
765 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400766 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400767 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400768 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400769 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
770 if (fixup_rpath(p, buf, sizeof buf) < 0)
771 fd = -2; /* Inhibit further search. */
772 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400773 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400774 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400775 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400776 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400777 char *prefix = 0;
778 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400779 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400780 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400781 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400782 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400783 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400784 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400785 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400786 }
787 if (!prefix) {
788 prefix = "";
789 prefix_len = 0;
790 }
791 char etc_ldso_path[prefix_len + 1
792 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
793 snprintf(etc_ldso_path, sizeof etc_ldso_path,
794 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
795 (int)prefix_len, prefix);
796 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400797 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400798 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400799 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400800 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500801 }
Rich Felker568b8072011-06-25 01:56:34 -0400802 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400803 } else if (errno != ENOENT) {
804 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400805 }
806 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500807 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
808 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400809 }
Rich Felker0420b872012-07-11 01:41:20 -0400810 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400811 }
812 if (fd < 0) return 0;
813 if (fstat(fd, &st) < 0) {
814 close(fd);
815 return 0;
816 }
817 for (p=head->next; p; p=p->next) {
818 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -0400819 /* If this library was previously loaded with a
820 * pathname but a search found the same inode,
821 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -0400822 if (!p->shortname && pathname != name)
823 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -0400824 close(fd);
825 p->refcnt++;
826 return p;
827 }
828 }
Rich Felker4d07e552013-01-23 22:07:45 -0500829 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -0400830 close(fd);
831 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -0400832
833 /* Allocate storage for the new DSO. When there is TLS, this
834 * storage must include a reservation for all pre-existing
835 * threads to obtain copies of both the new TLS, and an
836 * extended DTV capable of storing an additional slot for
837 * the newly-loaded DSO. */
838 alloc_size = sizeof *p + strlen(pathname) + 1;
839 if (runtime && temp_dso.tls_image) {
840 size_t per_th = temp_dso.tls_size + temp_dso.tls_align
841 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -0400842 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400843 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
844 else alloc_size += n_th * per_th;
845 }
846 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -0400847 if (!p) {
Rich Felker74025c82013-02-02 00:59:25 -0500848 munmap(map, temp_dso.map_len);
Rich Felker51e2d832011-06-18 19:48:42 -0400849 return 0;
850 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400851 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500852 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -0400853 p->dev = st.st_dev;
854 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -0400855 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -0400856 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400857 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -0400858 strcpy(p->name, pathname);
859 /* Add a shortname only if name arg was not an explicit pathname. */
860 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400861 if (p->tls_image) {
862 p->tls_id = ++tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400863 tls_align = MAXP2(tls_align, p->tls_align);
Rich Felker9ec42832012-10-15 18:51:53 -0400864#ifdef TLS_ABOVE_TP
865 p->tls_offset = tls_offset + ( (tls_align-1) &
866 -(tls_offset + (uintptr_t)p->tls_image) );
867 tls_offset += p->tls_size;
868#else
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400869 tls_offset += p->tls_size + p->tls_align - 1;
870 tls_offset -= (tls_offset + (uintptr_t)p->tls_image)
871 & (p->tls_align-1);
872 p->tls_offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -0400873#endif
Rich Felkerdcd60372012-10-05 11:51:50 -0400874 p->new_dtv = (void *)(-sizeof(size_t) &
875 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
876 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
877 }
Rich Felker51e2d832011-06-18 19:48:42 -0400878
879 tail->next = p;
880 p->prev = tail;
881 tail = p;
882
Rich Felker1d7c4f82012-12-15 23:34:08 -0500883 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -0400884
Rich Felker51e2d832011-06-18 19:48:42 -0400885 return p;
886}
887
888static void load_deps(struct dso *p)
889{
Rich Felker59ab43f2011-06-26 19:23:28 -0400890 size_t i, ndeps=0;
891 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -0400892 for (; p; p=p->next) {
893 for (i=0; p->dynv[i]; i+=2) {
894 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -0400895 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -0400896 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400897 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -0400898 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400899 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400900 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400901 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400902 if (runtime) {
903 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -0400904 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -0400905 tmp[ndeps++] = dep;
906 tmp[ndeps] = 0;
907 *deps = tmp;
908 }
Rich Felker51e2d832011-06-18 19:48:42 -0400909 }
910 }
911}
912
Rich Felker2719cc82011-08-16 00:24:36 -0400913static void load_preload(char *s)
914{
915 int tmp;
916 char *z;
917 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -0400918 for ( ; *s && (isspace(*s) || *s==':'); s++);
919 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -0400920 tmp = *z;
921 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -0400922 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -0400923 *z = tmp;
924 }
925}
926
Rich Felker59ab43f2011-06-26 19:23:28 -0400927static void make_global(struct dso *p)
928{
929 for (; p; p=p->next) p->global = 1;
930}
931
Rich Felkerf3ddd172015-04-13 02:56:26 -0400932static void do_mips_relocs(struct dso *p, size_t *got)
933{
934 size_t i, j, rel[2];
935 unsigned char *base = p->base;
936 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -0400937 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400938 got += i;
939 } else {
940 while (i--) *got++ += (size_t)base;
941 }
942 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
943 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
944 Sym *sym = p->syms + j;
945 rel[0] = (unsigned char *)got - base;
946 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
947 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
948 do_relocs(p, rel, sizeof rel, 2);
949 }
950}
951
Rich Felker51e2d832011-06-18 19:48:42 -0400952static void reloc_all(struct dso *p)
953{
Rich Felkerf4f95622015-04-13 22:38:18 -0400954 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -0400955 for (; p; p=p->next) {
956 if (p->relocated) continue;
957 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400958 if (NEED_MIPS_GOT_RELOCS)
959 do_mips_relocs(p, (void *)(p->base+dyn[DT_PLTGOT]));
Rich Felker87d13a42012-08-05 02:49:02 -0400960 do_relocs(p, (void *)(p->base+dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
961 2+(dyn[DT_PLTREL]==DT_RELA));
962 do_relocs(p, (void *)(p->base+dyn[DT_REL]), dyn[DT_RELSZ], 2);
963 do_relocs(p, (void *)(p->base+dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +0200964
Rich Felkerf3ddd172015-04-13 02:56:26 -0400965 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker75eceb32015-06-17 17:21:46 +0000966 mprotect(p->base+p->relro_start, p->relro_end-p->relro_start, PROT_READ)
967 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400968 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +0200969 p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400970 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +0200971 }
972
Rich Felker368ba4a2011-06-25 00:18:19 -0400973 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400974 }
975}
976
Timo Teräs87691962014-03-25 20:59:50 +0200977static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -0500978{
Timo Teräs87691962014-03-25 20:59:50 +0200979 size_t min_addr = -1, max_addr = 0, cnt;
980 Phdr *ph = p->phdr;
981 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
982 if (ph->p_type == PT_DYNAMIC) {
983 p->dynv = (void *)(p->base + ph->p_vaddr);
984 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +0200985 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
986 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
987 }
Rich Felkerf419bcb2012-08-26 21:09:26 -0400988 if (ph->p_type != PT_LOAD) continue;
989 if (ph->p_vaddr < min_addr)
990 min_addr = ph->p_vaddr;
991 if (ph->p_vaddr+ph->p_memsz > max_addr)
992 max_addr = ph->p_vaddr+ph->p_memsz;
993 }
994 min_addr &= -PAGE_SIZE;
995 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
996 p->map = p->base + min_addr;
997 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +0200998 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -0400999}
1000
Rich Felkerf4f77c02012-10-05 13:09:09 -04001001static void do_fini()
1002{
1003 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -04001004 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -04001005 for (p=fini_head; p; p=p->fini_next) {
1006 if (!p->constructed) continue;
1007 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001008 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
1009 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker1b413572013-07-21 02:35:46 -04001010 size_t *fn = (size_t *)(p->base + dyn[DT_FINI_ARRAY])+n;
1011 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -04001012 }
Rich Felker1da53da2013-07-22 14:08:33 -04001013#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001014 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felkere69ae842013-07-20 18:26:17 -04001015 ((void (*)(void))(p->base + dyn[DT_FINI]))();
Rich Felker1da53da2013-07-22 14:08:33 -04001016#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001017 }
1018}
1019
Rich Felker4ce3cb52012-02-06 14:39:09 -05001020static void do_init_fini(struct dso *p)
1021{
Rich Felkerf4f95622015-04-13 22:38:18 -04001022 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001023 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001024 /* Allow recursive calls that arise when a library calls
1025 * dlopen from one of its constructors, but block any
1026 * other threads until all ctors have finished. */
1027 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001028 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001029 if (p->constructed) continue;
1030 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001031 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001032 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001033 p->fini_next = fini_head;
1034 fini_head = p;
1035 }
Rich Felker1da53da2013-07-22 14:08:33 -04001036#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001037 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker4ce3cb52012-02-06 14:39:09 -05001038 ((void (*)(void))(p->base + dyn[DT_INIT]))();
Rich Felker1da53da2013-07-22 14:08:33 -04001039#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001040 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1041 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
1042 size_t *fn = (void *)(p->base + dyn[DT_INIT_ARRAY]);
1043 while (n--) ((void (*)(void))*fn++)();
1044 }
Rich Felker509b50e2013-06-29 02:24:02 -04001045 if (!need_locking && libc.threads_minus_1) {
1046 need_locking = 1;
1047 pthread_mutex_lock(&init_fini_lock);
1048 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001049 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001050 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001051}
1052
Rich Felker326e1262015-04-17 23:23:05 -04001053static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001054{
1055}
1056
Rich Felker326e1262015-04-17 23:23:05 -04001057weak_alias(dl_debug_state, _dl_debug_state);
1058
Rich Felker7c6c2902013-08-03 16:27:30 -04001059void __reset_tls()
1060{
1061 pthread_t self = __pthread_self();
1062 struct dso *p;
1063 for (p=head; p; p=p->next) {
1064 if (!p->tls_id || !self->dtv[p->tls_id]) continue;
1065 memcpy(self->dtv[p->tls_id], p->tls_image, p->tls_len);
1066 memset((char *)self->dtv[p->tls_id]+p->tls_len, 0,
1067 p->tls_size - p->tls_len);
1068 if (p->tls_id == (size_t)self->dtv[0]) break;
1069 }
1070}
1071
Rich Felkerdcd60372012-10-05 11:51:50 -04001072void *__copy_tls(unsigned char *mem)
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001073{
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001074 pthread_t td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001075 struct dso *p;
Rich Felker0f66fce2015-04-13 18:07:10 -04001076 void **dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001077
Rich Felker9ec42832012-10-15 18:51:53 -04001078#ifdef TLS_ABOVE_TP
Rich Felker0f66fce2015-04-13 18:07:10 -04001079 dtv = (void **)(mem + libc.tls_size) - (tls_cnt + 1);
1080
Rich Felker9ec42832012-10-15 18:51:53 -04001081 mem += -((uintptr_t)mem + sizeof(struct pthread)) & (tls_align-1);
1082 td = (pthread_t)mem;
1083 mem += sizeof(struct pthread);
1084
1085 for (p=head; p; p=p->next) {
1086 if (!p->tls_id) continue;
1087 dtv[p->tls_id] = mem + p->tls_offset;
1088 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
1089 }
1090#else
Rich Felker0f66fce2015-04-13 18:07:10 -04001091 dtv = (void **)mem;
1092
Rich Felkere23d3582012-10-13 23:25:20 -04001093 mem += libc.tls_size - sizeof(struct pthread);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001094 mem -= (uintptr_t)mem & (tls_align-1);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001095 td = (pthread_t)mem;
1096
1097 for (p=head; p; p=p->next) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001098 if (!p->tls_id) continue;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001099 dtv[p->tls_id] = mem - p->tls_offset;
1100 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001101 }
Rich Felker9ec42832012-10-15 18:51:53 -04001102#endif
Rich Felker0f66fce2015-04-13 18:07:10 -04001103 dtv[0] = (void *)tls_cnt;
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001104 td->dtv = td->dtv_copy = dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001105 return td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001106}
1107
Rich Felkerbc081f62015-04-14 10:42:44 -04001108__attribute__((__visibility__("hidden")))
Rich Felker5ba238e2014-06-19 02:59:44 -04001109void *__tls_get_new(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001110{
1111 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001112
1113 /* Block signals to make accessing new TLS async-signal-safe */
1114 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001115 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001116 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001117 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001118 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001119 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001120
1121 /* This is safe without any locks held because, if the caller
1122 * is able to request the Nth entry of the DTV, the DSO list
1123 * must be valid at least that far out and it was synchronized
1124 * at program startup or by an already-completed call to dlopen. */
1125 struct dso *p;
1126 for (p=head; p->tls_id != v[0]; p=p->next);
1127
1128 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001129 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001130 void **newdtv = p->new_dtv +
1131 (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001132 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001133 ((size_t)self->dtv[0]+1) * sizeof(void *));
1134 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001135 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001136 }
1137
Rich Felkere75b16c2014-06-19 02:16:57 -04001138 /* Get new TLS memory from all new DSOs up to the requested one */
1139 unsigned char *mem;
1140 for (p=head; ; p=p->next) {
1141 if (!p->tls_id || self->dtv[p->tls_id]) continue;
1142 mem = p->new_tls + (p->tls_size + p->tls_align)
1143 * a_fetch_add(&p->new_tls_idx,1);
1144 mem += ((uintptr_t)p->tls_image - (uintptr_t)mem)
1145 & (p->tls_align-1);
1146 self->dtv[p->tls_id] = mem;
1147 memcpy(mem, p->tls_image, p->tls_len);
1148 if (p->tls_id == v[0]) break;
1149 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001150 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001151 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001152}
1153
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001154static void update_tls_size()
1155{
Rich Felker9ec42832012-10-15 18:51:53 -04001156 libc.tls_size = ALIGN(
1157 (1+tls_cnt) * sizeof(void *) +
1158 tls_offset +
1159 sizeof(struct pthread) +
1160 tls_align * 2,
1161 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001162}
1163
Rich Felkerf3ddd172015-04-13 02:56:26 -04001164/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1165 * following stage 2 and stage 3 functions via primitive symbolic lookup
1166 * since it does not have access to their addresses to begin with. */
1167
1168/* Stage 2 of the dynamic linker is called after relative relocations
1169 * have been processed. It can make function calls to static functions
1170 * and access string literals and static data, but cannot use extern
1171 * symbols. Its job is to perform symbolic relocations on the dynamic
1172 * linker itself, but some of the relocations performed may need to be
1173 * replaced later due to copy relocations in the main program. */
1174
Rich Felker768b82c2015-05-25 19:15:17 -04001175void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001176{
Rich Felkerf3ddd172015-04-13 02:56:26 -04001177 Ehdr *ehdr = (void *)base;
1178 ldso.base = base;
1179 ldso.name = ldso.shortname = "libc.so";
1180 ldso.global = 1;
1181 ldso.phnum = ehdr->e_phnum;
1182 ldso.phdr = (void *)(base + ehdr->e_phoff);
1183 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001184 kernel_mapped_dso(&ldso);
1185 decode_dyn(&ldso);
1186
Rich Felker9bbddf72015-05-25 23:33:59 -04001187 /* Prepare storage for to save clobbered REL addends so they
1188 * can be reused in stage 3. There should be very few. If
1189 * something goes wrong and there are a huge number, abort
1190 * instead of risking stack overflow. */
1191 size_t dyn[DYN_CNT];
1192 decode_vec(ldso.dynv, dyn, DYN_CNT);
1193 size_t *rel = (void *)(base+dyn[DT_REL]);
1194 size_t rel_size = dyn[DT_RELSZ];
1195 size_t symbolic_rel_cnt = 0;
1196 apply_addends_to = rel;
1197 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
1198 if (!IS_RELATIVE(rel[1])) symbolic_rel_cnt++;
1199 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1200 size_t addends[symbolic_rel_cnt+1];
1201 saved_addends = addends;
1202
Rich Felkerf3ddd172015-04-13 02:56:26 -04001203 head = &ldso;
1204 reloc_all(&ldso);
1205
1206 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001207
1208 /* Call dynamic linker stage-3, __dls3, looking it up
1209 * symbolically as a barrier against moving the address
1210 * load across the above relocation processing. */
1211 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
1212 ((stage3_func)(ldso.base+dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001213}
1214
1215/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1216 * fully functional. Its job is to load (if not already loaded) and
1217 * process dependencies and relocations for the main application and
1218 * transfer control to its entry point. */
1219
1220_Noreturn void __dls3(size_t *sp)
1221{
1222 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001223 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001224 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001225 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001226 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001227 int argc = *sp;
1228 char **argv = (void *)(sp+1);
1229 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001230 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001231
Rich Felker75ce4502015-06-07 20:55:23 +00001232 /* Find aux vector just past environ[] and use it to initialize
1233 * global data that may be needed before we can make syscalls. */
1234 __environ = envp;
1235 for (i=argc+1; argv[i]; i++);
1236 libc.auxv = auxv = (void *)(argv+i+1);
1237 decode_vec(auxv, aux, AUX_CNT);
1238 __hwcap = aux[AT_HWCAP];
1239 libc.page_size = aux[AT_PAGESZ];
1240 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1241 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1242
Rich Felker71f099c2015-04-13 18:40:52 -04001243 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1244 * use during dynamic linking. If possible it will also serve as the
1245 * thread pointer at runtime. */
1246 libc.tls_size = sizeof builtin_tls;
1247 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001248 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001249 }
Rich Felker51e2d832011-06-18 19:48:42 -04001250
Rich Felker568b8072011-06-25 01:56:34 -04001251 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001252 if (!libc.secure) {
1253 env_path = getenv("LD_LIBRARY_PATH");
1254 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001255 }
1256
Rich Felkerf3ddd172015-04-13 02:56:26 -04001257 /* If the main program was already loaded by the kernel,
1258 * AT_PHDR will point to some location other than the dynamic
1259 * linker's program headers. */
1260 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001261 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001262 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001263 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001264 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1265 app.phnum = aux[AT_PHNUM];
1266 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001267 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1268 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001269 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001270 else if (phdr->p_type == PT_INTERP)
1271 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001272 else if (phdr->p_type == PT_TLS) {
1273 tls_image = phdr->p_vaddr;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001274 app.tls_len = phdr->p_filesz;
1275 app.tls_size = phdr->p_memsz;
1276 app.tls_align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001277 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001278 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001279 if (app.tls_size) app.tls_image = (char *)app.base + tls_image;
1280 if (interp_off) ldso.name = (char *)app.base + interp_off;
Rich Felkercc515052013-08-23 14:14:47 -04001281 if ((aux[0] & (1UL<<AT_EXECFN))
1282 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001283 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001284 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001285 app.name = argv[0];
1286 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001287 } else {
1288 int fd;
1289 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001290 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001291 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001292 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001293 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1294 char *opt = argv[0]+2;
1295 *argv++ = (void *)-1;
1296 if (!*opt) {
1297 break;
1298 } else if (!memcmp(opt, "list", 5)) {
1299 ldd_mode = 1;
1300 } else if (!memcmp(opt, "library-path", 12)) {
1301 if (opt[12]=='=') env_path = opt+13;
1302 else if (opt[12]) *argv = 0;
1303 else if (*argv) env_path = *argv++;
1304 } else if (!memcmp(opt, "preload", 7)) {
1305 if (opt[7]=='=') env_preload = opt+8;
1306 else if (opt[7]) *argv = 0;
1307 else if (*argv) env_preload = *argv++;
1308 } else {
1309 argv[0] = 0;
1310 }
Rich Felkerde451642014-04-16 12:45:36 -04001311 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001312 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001313 if (!argv[0]) {
Rich Felker179ab5a2013-12-01 17:27:25 -05001314 dprintf(2, "musl libc\n"
1315 "Version %s\n"
1316 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001317 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001318 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001319 ldd_mode ? "" : " [args]");
1320 _exit(1);
1321 }
1322 fd = open(argv[0], O_RDONLY);
1323 if (fd < 0) {
1324 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1325 _exit(1);
1326 }
1327 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001328 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001329 if (!ehdr) {
1330 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1331 _exit(1);
1332 }
1333 runtime = 0;
1334 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001335 ldso.name = ldname;
1336 app.name = argv[0];
1337 aux[AT_ENTRY] = (size_t)app.base + ehdr->e_entry;
Rich Felkera97a0502013-07-26 14:41:12 -04001338 /* Find the name that would have been used for the dynamic
1339 * linker had ldd not taken its place. */
1340 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001341 for (i=0; i<app.phnum; i++) {
1342 if (app.phdr[i].p_type == PT_INTERP)
1343 ldso.name = (void *)(app.base
1344 + app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001345 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001346 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001347 }
Rich Felkere12fe652012-01-23 02:02:59 -05001348 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001349 if (app.tls_size) {
1350 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001351#ifdef TLS_ABOVE_TP
Rich Felkerf3ddd172015-04-13 02:56:26 -04001352 app.tls_offset = 0;
1353 tls_offset = app.tls_size
1354 + ( -((uintptr_t)app.tls_image + app.tls_size)
1355 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001356#else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001357 tls_offset = app.tls_offset = app.tls_size
1358 + ( -((uintptr_t)app.tls_image + app.tls_size)
1359 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001360#endif
Rich Felkerf3ddd172015-04-13 02:56:26 -04001361 tls_align = MAXP2(tls_align, app.tls_align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001362 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001363 app.global = 1;
1364 decode_dyn(&app);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001365
1366 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001367 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001368 Ehdr *ehdr = (void *)vdso_base;
1369 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1370 vdso.phnum = ehdr->e_phnum;
1371 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001372 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1373 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001374 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001375 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001376 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001377 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001378 vdso.name = "";
1379 vdso.shortname = "linux-gate.so.1";
1380 vdso.global = 1;
1381 vdso.relocated = 1;
1382 decode_dyn(&vdso);
1383 vdso.prev = &ldso;
1384 ldso.next = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001385 }
1386
Rich Felkerf3ddd172015-04-13 02:56:26 -04001387 /* Initial dso chain consists only of the app. */
1388 head = tail = &app;
Rich Felker51e2d832011-06-18 19:48:42 -04001389
Rich Felkerc82f4a32012-01-23 00:57:38 -05001390 /* Donate unused parts of app and library mapping to malloc */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001391 reclaim_gaps(&app);
1392 reclaim_gaps(&ldso);
Rich Felker6717e622011-06-28 19:40:14 -04001393
Rich Felkerc82f4a32012-01-23 00:57:38 -05001394 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerf3ddd172015-04-13 02:56:26 -04001395 * namespace, and perform all remaining relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001396 if (env_preload) load_preload(env_preload);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001397 load_deps(&app);
1398 make_global(&app);
Rich Felker9c748562012-10-04 22:48:33 -04001399
Timo Teräse13a2b82014-03-25 14:13:27 +02001400#ifndef DYNAMIC_IS_RO
Rich Felkerf3ddd172015-04-13 02:56:26 -04001401 for (i=0; app.dynv[i]; i+=2)
1402 if (app.dynv[i]==DT_DEBUG)
1403 app.dynv[i+1] = (size_t)&debug;
Timo Teräse13a2b82014-03-25 14:13:27 +02001404#endif
1405
Rich Felkerf3ddd172015-04-13 02:56:26 -04001406 /* The main program must be relocated LAST since it may contin
1407 * copy relocations which depend on libraries' relocations. */
1408 reloc_all(app.next);
1409 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001410
1411 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001412 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1413 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001414 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001415 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001416 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001417 _exit(127);
1418 }
Rich Felker71f099c2015-04-13 18:40:52 -04001419 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001420 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001421 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001422 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001423 size_t tmp_tls_size = libc.tls_size;
1424 pthread_t self = __pthread_self();
1425 /* Temporarily set the tls size to the full size of
1426 * builtin_tls so that __copy_tls will use the same layout
1427 * as it did for before. Then check, just to be safe. */
1428 libc.tls_size = sizeof builtin_tls;
1429 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1430 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001431 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001432 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001433
Rich Felker04109502012-08-18 16:00:23 -04001434 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001435 if (ldd_mode) _exit(0);
1436
Rich Felkerc82f4a32012-01-23 00:57:38 -05001437 /* Switch to runtime mode: any further failures in the dynamic
1438 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001439 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001440 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001441
Rich Felker3ec8d292012-04-25 00:05:42 -04001442 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001443 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001444 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001445 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001446 debug.state = 0;
1447 _dl_debug_state();
1448
Rich Felker75863602013-07-21 03:00:54 -04001449 __init_libc(envp, argv[0]);
Rich Felkera7936f62012-11-30 17:56:23 -05001450 atexit(do_fini);
Rich Felker75863602013-07-21 03:00:54 -04001451 errno = 0;
Rich Felkera7936f62012-11-30 17:56:23 -05001452 do_init_fini(tail);
Rich Felker75863602013-07-21 03:00:54 -04001453
Rich Felkerf3ddd172015-04-13 02:56:26 -04001454 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1455 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001456}
1457
Rich Felker59ab43f2011-06-26 19:23:28 -04001458void *dlopen(const char *file, int mode)
1459{
Rich Felker642b7592012-10-05 01:15:25 -04001460 struct dso *volatile p, *orig_tail, *next;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001461 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001462 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001463 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001464 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001465
1466 if (!file) return head;
1467
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001468 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001469 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001470 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001471
Rich Felkerdcd60372012-10-05 11:51:50 -04001472 p = 0;
1473 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001474 orig_tls_offset = tls_offset;
1475 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001476 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001477 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001478
Rich Felker17276be2013-07-24 02:38:05 -04001479 rtld_fail = &jb;
1480 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001481 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001482 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001483 if (p->deps[i]->global < 0)
1484 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001485 for (p=orig_tail->next; p; p=next) {
1486 next = p->next;
1487 munmap(p->map, p->map_len);
Rich Felker9d15d5e2014-06-19 02:01:06 -04001488 while (p->td_index) {
1489 void *tmp = p->td_index->next;
1490 free(p->td_index);
1491 p->td_index = tmp;
1492 }
Rich Felker07709622015-04-04 00:15:19 -04001493 if (p->rpath != p->rpath_orig)
1494 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001495 free(p->deps);
1496 free(p);
1497 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001498 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001499 tls_offset = orig_tls_offset;
1500 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001501 tail = orig_tail;
1502 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001503 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001504 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001505 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001506
1507 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001508 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001509 "Library %s is not already loaded" :
1510 "Error loading shared library %s: %m",
1511 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001512 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001513 }
1514
Rich Felker59ab43f2011-06-26 19:23:28 -04001515 /* First load handling */
1516 if (!p->deps) {
1517 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001518 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001519 if (!p->deps[i]->global)
1520 p->deps[i]->global = -1;
1521 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001522 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001523 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001524 if (p->deps[i]->global < 0)
1525 p->deps[i]->global = 0;
1526 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001527 }
1528
1529 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001530 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001531 p->deps[i]->global = 1;
1532 p->global = 1;
1533 }
1534
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001535 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001536 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001537 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001538end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001539 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001540 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001541 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001542 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001543 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001544 return p;
1545}
1546
Rich Felker4d982802013-01-16 11:49:00 -05001547static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001548{
1549 struct dso *p;
1550 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001551 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001552 return 1;
1553}
1554
Rich Felker5ba238e2014-06-19 02:59:44 -04001555void *__tls_get_addr(size_t *);
1556
Rich Felker623753a2011-08-16 00:42:13 -04001557static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001558{
1559 size_t i;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001560 uint32_t h = 0, gh = 0, *ght;
Rich Felker59ab43f2011-06-26 19:23:28 -04001561 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001562 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001563 if (p == RTLD_DEFAULT) {
1564 p = head;
1565 } else if (p == RTLD_NEXT) {
Rich Felker9c748562012-10-04 22:48:33 -04001566 for (p=head; p && (unsigned char *)ra-p->map>p->map_len; p=p->next);
1567 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001568 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001569 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001570 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001571 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001572 if ((def.sym->st_info&0xf) == STT_TLS)
1573 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felker9c748562012-10-04 22:48:33 -04001574 return def.dso->base + def.sym->st_value;
Rich Felkera9e85c02012-03-23 00:28:20 -04001575 }
Rich Felker97b72d22015-04-21 13:07:06 -04001576 if (invalid_dso_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001577 return 0;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001578 if ((ght = p->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001579 gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001580 sym = gnu_lookup(gh, ght, p, s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001581 } else {
1582 h = sysv_hash(s);
1583 sym = sysv_lookup(s, h, p);
1584 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001585 if (sym && (sym->st_info&0xf) == STT_TLS)
1586 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001587 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1588 return p->base + sym->st_value;
1589 if (p->deps) for (i=0; p->deps[i]; i++) {
Alexander Monakov8f08a582015-06-28 02:48:33 +03001590 if ((ght = p->deps[i]->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001591 if (!gh) gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001592 sym = gnu_lookup(gh, ght, p->deps[i], s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001593 } else {
1594 if (!h) h = sysv_hash(s);
1595 sym = sysv_lookup(s, h, p->deps[i]);
1596 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001597 if (sym && (sym->st_info&0xf) == STT_TLS)
1598 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001599 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1600 return p->deps[i]->base + sym->st_value;
1601 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001602failed:
Rich Felker01d42742015-04-18 18:00:22 -04001603 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001604 return 0;
1605}
1606
Rich Felker839cc4e2014-01-06 22:03:38 -05001607int __dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001608{
1609 struct dso *p;
1610 Sym *sym;
1611 uint32_t nsym;
1612 char *strings;
1613 size_t i;
1614 void *best = 0;
1615 char *bestname;
1616
1617 pthread_rwlock_rdlock(&lock);
1618 for (p=head; p && (unsigned char *)addr-p->map>p->map_len; p=p->next);
1619 pthread_rwlock_unlock(&lock);
1620
1621 if (!p) return 0;
1622
1623 sym = p->syms;
1624 strings = p->strings;
1625 if (p->hashtab) {
1626 nsym = p->hashtab[1];
1627 } else {
1628 uint32_t *buckets;
1629 uint32_t *hashval;
1630 buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
1631 sym += p->ghashtab[1];
Rich Felker78869852013-10-04 00:29:58 -04001632 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
Rich Felkerf419bcb2012-08-26 21:09:26 -04001633 if (buckets[i] > nsym)
1634 nsym = buckets[i];
1635 }
1636 if (nsym) {
1637 nsym -= p->ghashtab[1];
1638 hashval = buckets + p->ghashtab[0] + nsym;
1639 do nsym++;
1640 while (!(*hashval++ & 1));
1641 }
1642 }
1643
1644 for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001645 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001646 && (1<<(sym->st_info&0xf) & OK_TYPES)
1647 && (1<<(sym->st_info>>4) & OK_BINDS)) {
1648 void *symaddr = p->base + sym->st_value;
1649 if (symaddr > addr || symaddr < best)
1650 continue;
1651 best = symaddr;
1652 bestname = strings + sym->st_name;
1653 if (addr == symaddr)
1654 break;
1655 }
1656 }
1657
1658 if (!best) return 0;
1659
1660 info->dli_fname = p->name;
1661 info->dli_fbase = p->base;
1662 info->dli_sname = bestname;
1663 info->dli_saddr = best;
1664
1665 return 1;
1666}
1667
Rich Felker72b25dd2015-04-14 11:39:11 -04001668__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001669void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001670{
1671 void *res;
1672 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001673 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001674 pthread_rwlock_unlock(&lock);
1675 return res;
1676}
Rich Felker18c0e022012-10-31 21:27:48 -04001677
1678int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1679{
1680 struct dso *current;
1681 struct dl_phdr_info info;
1682 int ret = 0;
1683 for(current = head; current;) {
1684 info.dlpi_addr = (uintptr_t)current->base;
1685 info.dlpi_name = current->name;
1686 info.dlpi_phdr = current->phdr;
1687 info.dlpi_phnum = current->phnum;
1688 info.dlpi_adds = gencnt;
1689 info.dlpi_subs = 0;
1690 info.dlpi_tls_modid = current->tls_id;
1691 info.dlpi_tls_data = current->tls_image;
1692
1693 ret = (callback)(&info, sizeof (info), data);
1694
1695 if (ret != 0) break;
1696
1697 pthread_rwlock_rdlock(&lock);
1698 current = current->next;
1699 pthread_rwlock_unlock(&lock);
1700 }
1701 return ret;
1702}
Rich Felker5a09a532012-02-03 03:16:07 -05001703#else
Rich Felker4d982802013-01-16 11:49:00 -05001704static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001705{
Rich Felker01d42742015-04-18 18:00:22 -04001706 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001707 return 1;
1708}
Rich Felker5a09a532012-02-03 03:16:07 -05001709void *dlopen(const char *file, int mode)
1710{
Rich Felker01d42742015-04-18 18:00:22 -04001711 error("Dynamic loading not supported");
Rich Felker5a09a532012-02-03 03:16:07 -05001712 return 0;
1713}
Rich Felker400c5e52012-09-06 22:44:55 -04001714void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001715{
Rich Felker01d42742015-04-18 18:00:22 -04001716 error("Symbol not found: %s", s);
Rich Felker5a09a532012-02-03 03:16:07 -05001717 return 0;
1718}
Rich Felker839cc4e2014-01-06 22:03:38 -05001719int __dladdr (const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001720{
1721 return 0;
1722}
Rich Felker5a09a532012-02-03 03:16:07 -05001723#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001724
Rich Felker780cbbe2013-06-29 12:46:46 -04001725int __dlinfo(void *dso, int req, void *res)
1726{
1727 if (invalid_dso_handle(dso)) return -1;
1728 if (req != RTLD_DI_LINKMAP) {
Rich Felker01d42742015-04-18 18:00:22 -04001729 error("Unsupported request %d", req);
Rich Felker780cbbe2013-06-29 12:46:46 -04001730 return -1;
1731 }
1732 *(struct link_map **)res = dso;
1733 return 0;
1734}
1735
Rich Felker59ab43f2011-06-26 19:23:28 -04001736char *dlerror()
1737{
Rich Felker01d42742015-04-18 18:00:22 -04001738 pthread_t self = __pthread_self();
1739 if (!self->dlerror_flag) return 0;
1740 self->dlerror_flag = 0;
1741 char *s = self->dlerror_buf;
1742 if (s == (void *)-1)
1743 return "Dynamic linker failed to allocate memory for error message";
1744 else
1745 return s;
Rich Felker59ab43f2011-06-26 19:23:28 -04001746}
1747
1748int dlclose(void *p)
1749{
Rich Felker6468fc92013-01-10 14:05:40 -05001750 return invalid_dso_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001751}
Rich Felker01d42742015-04-18 18:00:22 -04001752
1753void __dl_thread_cleanup(void)
1754{
1755 pthread_t self = __pthread_self();
1756 if (self->dlerror_buf != (void *)-1)
1757 free(self->dlerror_buf);
1758}
1759
1760static void error(const char *fmt, ...)
1761{
1762 va_list ap;
1763 va_start(ap, fmt);
1764#ifdef SHARED
1765 if (!runtime) {
1766 vdprintf(2, fmt, ap);
1767 dprintf(2, "\n");
1768 ldso_fail = 1;
1769 va_end(ap);
1770 return;
1771 }
1772#endif
1773 pthread_t self = __pthread_self();
1774 if (self->dlerror_buf != (void *)-1)
1775 free(self->dlerror_buf);
1776 size_t len = vsnprintf(0, 0, fmt, ap);
1777 va_end(ap);
1778 char *buf = malloc(len+1);
1779 if (buf) {
1780 va_start(ap, fmt);
1781 vsnprintf(buf, len+1, fmt, ap);
1782 va_end(ap);
1783 } else {
1784 buf = (void *)-1;
1785 }
1786 self->dlerror_buf = buf;
1787 self->dlerror_flag = 1;
1788}