blob: 6e79a77e67b90dc2ac3ce4891d38ae4aa8c6d484 [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
Rich Felker301335a2015-09-17 17:18:09 +0000125/* Compute load address for a virtual address in a given dso. */
126#define laddr(p, v) (void *)((p)->base + (v))
127
Rich Felker51e2d832011-06-18 19:48:42 -0400128static void decode_vec(size_t *v, size_t *a, size_t cnt)
129{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400130 size_t i;
131 for (i=0; i<cnt; i++) a[i] = 0;
132 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
133 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400134 a[v[0]] = v[1];
135 }
136}
137
Rich Felker2bd05a42012-08-25 17:13:28 -0400138static int search_vec(size_t *v, size_t *r, size_t key)
139{
140 for (; v[0]!=key; v+=2)
141 if (!v[0]) return 0;
142 *r = v[1];
143 return 1;
144}
145
146static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400147{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500148 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400149 uint_fast32_t h = 0;
150 while (*s) {
151 h = 16*h + *s++;
152 h ^= h>>24 & 0xf0;
153 }
154 return h & 0xfffffff;
155}
156
Rich Felker2bd05a42012-08-25 17:13:28 -0400157static uint32_t gnu_hash(const char *s0)
158{
159 const unsigned char *s = (void *)s0;
160 uint_fast32_t h = 5381;
161 for (; *s; s++)
Alexander Monakov66d45782015-06-28 02:48:30 +0300162 h += h*32 + *s;
Rich Felker2bd05a42012-08-25 17:13:28 -0400163 return h;
164}
165
166static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400167{
168 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400169 Sym *syms = dso->syms;
170 uint32_t *hashtab = dso->hashtab;
171 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400172 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400173 if ((!dso->versym || dso->versym[i] >= 0)
174 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400175 return syms+i;
176 }
177 return 0;
178}
179
Alexander Monakov8f08a582015-06-28 02:48:33 +0300180static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
Rich Felker2bd05a42012-08-25 17:13:28 -0400181{
Rich Felker2bd05a42012-08-25 17:13:28 -0400182 uint32_t nbuckets = hashtab[0];
183 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
Rich Felker72482f92013-08-08 16:10:35 -0400184 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400185
Rich Felker72482f92013-08-08 16:10:35 -0400186 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400187
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300188 uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400189
Rich Felker72482f92013-08-08 16:10:35 -0400190 for (h1 |= 1; ; i++) {
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300191 uint32_t h2 = *hashval++;
192 if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
193 && !strcmp(s, dso->strings + dso->syms[i].st_name))
194 return dso->syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400195 if (h2 & 1) break;
196 }
197
198 return 0;
199}
200
Alexander Monakov8f08a582015-06-28 02:48:33 +0300201static 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 +0300202{
Alexander Monakov84389c62015-06-28 02:48:31 +0300203 const size_t *bloomwords = (const void *)(hashtab+4);
204 size_t f = bloomwords[fofs & (hashtab[2]-1)];
205 if (!(f & fmask)) return 0;
206
207 f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
208 if (!(f & 1)) return 0;
209
Alexander Monakov8f08a582015-06-28 02:48:33 +0300210 return gnu_lookup(h1, hashtab, dso, s);
Alexander Monakov84389c62015-06-28 02:48:31 +0300211}
212
Rich Felker9c748562012-10-04 22:48:33 -0400213#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 -0400214#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400215
Rich Felker2d8cc922014-06-30 01:18:14 -0400216#ifndef ARCH_SYM_REJECT_UND
217#define ARCH_SYM_REJECT_UND(s) 0
218#endif
219
Rich Felker9c748562012-10-04 22:48:33 -0400220static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400221{
Alexander Monakov8f08a582015-06-28 02:48:33 +0300222 uint32_t h = 0, gh, gho, *ght;
Alexander Monakov84389c62015-06-28 02:48:31 +0300223 size_t ghm = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400224 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400225 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400226 Sym *sym;
227 if (!dso->global) continue;
Alexander Monakov8f08a582015-06-28 02:48:33 +0300228 if ((ght = dso->ghashtab)) {
Alexander Monakov84389c62015-06-28 02:48:31 +0300229 if (!ghm) {
230 gh = gnu_hash(s);
231 int maskbits = 8 * sizeof ghm;
232 gho = gh / maskbits;
233 ghm = 1ul << gh % maskbits;
234 }
Alexander Monakov8f08a582015-06-28 02:48:33 +0300235 sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
Rich Felker2bd05a42012-08-25 17:13:28 -0400236 } else {
237 if (!h) h = sysv_hash(s);
238 sym = sysv_lookup(s, h, dso);
239 }
Rich Felkerbd174312012-10-06 01:36:11 -0400240 if (!sym) continue;
241 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400242 if (need_def || (sym->st_info&0xf) == STT_TLS
243 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400244 continue;
245 if (!sym->st_value)
246 if ((sym->st_info&0xf) != STT_TLS)
247 continue;
248 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
249 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
250
251 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
252 def.sym = sym;
253 def.dso = dso;
254 if (sym->st_info>>4 == STB_GLOBAL) break;
Rich Felker51e2d832011-06-18 19:48:42 -0400255 }
Rich Felker427173b2011-07-24 02:19:47 -0400256 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400257}
258
Rich Felker1b1cafa2015-04-17 23:29:45 -0400259__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400260ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
261
Rich Felker87d13a42012-08-05 02:49:02 -0400262static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400263{
Rich Felker87d13a42012-08-05 02:49:02 -0400264 unsigned char *base = dso->base;
265 Sym *syms = dso->syms;
266 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400267 Sym *sym;
268 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400269 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400270 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400271 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400272 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400273 size_t *reloc_addr;
274 size_t sym_val;
275 size_t tls_val;
276 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400277 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
278
279 if (dso == &ldso) {
280 /* Only ldso's REL table needs addend saving/reuse. */
281 if (rel == apply_addends_to)
282 reuse_addends = 1;
283 skip_relative = 1;
284 }
Rich Felker51e2d832011-06-18 19:48:42 -0400285
286 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker9bbddf72015-05-25 23:33:59 -0400287 if (skip_relative && IS_RELATIVE(rel[1])) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400288 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400289 if (type == REL_NONE) continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400290 sym_index = R_SYM(rel[1]);
Rich Felkera735f532015-09-17 17:50:43 +0000291 reloc_addr = laddr(dso, rel[0]);
Rich Felker51e2d832011-06-18 19:48:42 -0400292 if (sym_index) {
293 sym = syms + sym_index;
294 name = strings + sym->st_name;
Rich Felkeradf94c12014-06-18 02:44:02 -0400295 ctx = type==REL_COPY ? head->next : head;
296 def = find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500297 if (!def.sym && (sym->st_shndx != SHN_UNDEF
298 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400299 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400300 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400301 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400302 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400303 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400304 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400305 sym = 0;
306 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400307 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400308 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400309
Rich Felker9bbddf72015-05-25 23:33:59 -0400310 if (stride > 2) {
311 addend = rel[2];
312 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
313 addend = 0;
314 } else if (reuse_addends) {
315 /* Save original addend in stage 2 where the dso
316 * chain consists of just ldso; otherwise read back
317 * saved addend since the inline one was clobbered. */
318 if (head==&ldso)
319 saved_addends[save_slot] = *reloc_addr;
320 addend = saved_addends[save_slot++];
321 } else {
322 addend = *reloc_addr;
323 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400324
Rich Felkera735f532015-09-17 17:50:43 +0000325 sym_val = def.sym ? (size_t)laddr(def.dso, def.sym->st_value) : 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400326 tls_val = def.sym ? def.sym->st_value : 0;
327
328 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400329 case REL_NONE:
330 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400331 case REL_OFFSET:
332 addend -= (size_t)reloc_addr;
333 case REL_SYMBOLIC:
334 case REL_GOT:
335 case REL_PLT:
336 *reloc_addr = sym_val + addend;
337 break;
338 case REL_RELATIVE:
339 *reloc_addr = (size_t)base + addend;
340 break;
341 case REL_SYM_OR_REL:
342 if (sym) *reloc_addr = sym_val + addend;
343 else *reloc_addr = (size_t)base + addend;
344 break;
345 case REL_COPY:
346 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
347 break;
348 case REL_OFFSET32:
349 *(uint32_t *)reloc_addr = sym_val + addend
350 - (size_t)reloc_addr;
351 break;
352 case REL_DTPMOD:
353 *reloc_addr = def.dso->tls_id;
354 break;
355 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000356 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400357 break;
358#ifdef TLS_ABOVE_TP
359 case REL_TPOFF:
360 *reloc_addr = tls_val + def.dso->tls_offset + TPOFF_K + addend;
361 break;
362#else
363 case REL_TPOFF:
364 *reloc_addr = tls_val - def.dso->tls_offset + addend;
365 break;
366 case REL_TPOFF_NEG:
367 *reloc_addr = def.dso->tls_offset - tls_val + addend;
368 break;
369#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400370 case REL_TLSDESC:
371 if (stride<3) addend = reloc_addr[1];
372 if (runtime && def.dso->tls_id >= static_tls_cnt) {
373 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400374 if (!new) {
375 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400376 "Error relocating %s: cannot allocate TLSDESC for %s",
377 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400378 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400379 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400380 new->next = dso->td_index;
381 dso->td_index = new;
382 new->args[0] = def.dso->tls_id;
383 new->args[1] = tls_val + addend;
384 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
385 reloc_addr[1] = (size_t)new;
386 } else {
387 reloc_addr[0] = (size_t)__tlsdesc_static;
388#ifdef TLS_ABOVE_TP
389 reloc_addr[1] = tls_val + def.dso->tls_offset
390 + TPOFF_K + addend;
391#else
392 reloc_addr[1] = tls_val - def.dso->tls_offset
393 + addend;
394#endif
395 }
396 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400397 default:
398 error("Error relocating %s: unsupported relocation type %d",
399 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400400 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400401 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400402 }
Rich Felker51e2d832011-06-18 19:48:42 -0400403 }
404}
405
Rich Felker6717e622011-06-28 19:40:14 -0400406/* A huge hack: to make up for the wastefulness of shared libraries
407 * needing at least a page of dirty memory even if they have no global
408 * data, we reclaim the gaps at the beginning and end of writable maps
409 * and "donate" them to the heap by setting up minimal malloc
410 * structures and then freeing them. */
411
Timo Teräse13a2b82014-03-25 14:13:27 +0200412static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400413{
414 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200415 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
416 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400417 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
418 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
419 if (start>end || end-start < 4*sizeof(size_t)) return;
Rich Felker301335a2015-09-17 17:18:09 +0000420 a = laddr(dso, start);
421 z = laddr(dso, end);
Rich Felker6717e622011-06-28 19:40:14 -0400422 a[-2] = 1;
423 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
424 z[1] = 1;
425 free(a);
426}
427
Timo Teräs87691962014-03-25 20:59:50 +0200428static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400429{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400430 Phdr *ph = dso->phdr;
431 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200432
Rich Felkerfa7248c2014-03-25 16:21:50 -0400433 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400434 if (ph->p_type!=PT_LOAD) continue;
435 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200436 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
437 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400438 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
439 }
440}
441
Rich Felkerce337da2015-06-23 04:03:42 +0000442static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
443{
444 char *q = mmap(p, n, prot, flags, fd, off);
445 if (q != MAP_FAILED || errno != EINVAL) return q;
446 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
447 if (flags & MAP_ANONYMOUS) {
448 memset(p, 0, n);
449 return p;
450 }
451 ssize_t r;
452 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
453 for (q=p; n; q+=r, off+=r, n-=r) {
454 r = read(fd, q, n);
455 if (r < 0 && errno != EINTR) return MAP_FAILED;
456 if (!r) {
457 memset(q, 0, n);
458 break;
459 }
460 }
461 return p;
462}
463
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400464static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400465{
Rich Felker59633c72011-06-25 12:26:08 -0400466 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400467 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400468 size_t phsize;
469 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
470 size_t this_min, this_max;
471 off_t off_start;
472 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400473 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400474 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400475 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400476 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400477 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400478 size_t i;
479
480 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400481 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400482 if (l<0) return 0;
483 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
484 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400485 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400486 if (phsize > sizeof buf - sizeof *eh) {
487 allocated_buf = malloc(phsize);
488 if (!allocated_buf) return 0;
489 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
490 if (l < 0) goto error;
491 if (l != phsize) goto noexec;
492 ph = ph0 = allocated_buf;
493 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400494 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400495 if (l < 0) goto error;
496 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400497 ph = ph0 = (void *)(buf + 1);
498 } else {
499 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400500 }
Rich Felker51e2d832011-06-18 19:48:42 -0400501 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400502 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400503 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400504 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400505 tls_image = ph->p_vaddr;
506 dso->tls_align = ph->p_align;
507 dso->tls_len = ph->p_filesz;
508 dso->tls_size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200509 } else if (ph->p_type == PT_GNU_RELRO) {
510 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
511 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400512 }
Rich Felker51e2d832011-06-18 19:48:42 -0400513 if (ph->p_type != PT_LOAD) continue;
514 if (ph->p_vaddr < addr_min) {
515 addr_min = ph->p_vaddr;
516 off_start = ph->p_offset;
517 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
518 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
519 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
520 }
521 if (ph->p_vaddr+ph->p_memsz > addr_max) {
522 addr_max = ph->p_vaddr+ph->p_memsz;
523 }
524 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400525 if (!dyn) goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400526 addr_max += PAGE_SIZE-1;
527 addr_max &= -PAGE_SIZE;
528 addr_min &= -PAGE_SIZE;
529 off_start &= -PAGE_SIZE;
530 map_len = addr_max - addr_min + off_start;
531 /* The first time, we map too much, possibly even more than
532 * the length of the file. This is okay because we will not
533 * use the invalid part; we just need to reserve the right
534 * amount of virtual address space to map over later. */
Rich Felkerbf301002011-06-28 14:20:41 -0400535 map = mmap((void *)addr_min, map_len, prot, MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400536 if (map==MAP_FAILED) goto error;
Rich Felker339516a2013-07-31 14:42:08 -0400537 /* If the loaded file is not relocatable and the requested address is
538 * not available, then the load operation must fail. */
539 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
540 errno = EBUSY;
541 goto error;
542 }
Rich Felker51e2d832011-06-18 19:48:42 -0400543 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400544 dso->phdr = 0;
545 dso->phnum = 0;
546 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400547 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400548 /* Check if the programs headers are in this load segment, and
549 * if so, record the address for use by dl_iterate_phdr. */
550 if (!dso->phdr && eh->e_phoff >= ph->p_offset
551 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
552 dso->phdr = (void *)(base + ph->p_vaddr
553 + (eh->e_phoff-ph->p_offset));
554 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200555 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400556 }
Rich Felker51e2d832011-06-18 19:48:42 -0400557 /* Reuse the existing mapping for the lowest-address LOAD */
558 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min) continue;
559 this_min = ph->p_vaddr & -PAGE_SIZE;
560 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
561 off_start = ph->p_offset & -PAGE_SIZE;
562 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
563 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
564 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000565 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 -0400566 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400567 if (ph->p_memsz > ph->p_filesz) {
568 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
569 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
570 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000571 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 -0400572 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400573 }
574 }
Rich Felker9f174132011-06-29 00:29:08 -0400575 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
576 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000577 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
578 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400579 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400580 break;
581 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400582 dso->map = map;
583 dso->map_len = map_len;
584 dso->base = base;
585 dso->dynv = (void *)(base+dyn);
586 if (dso->tls_size) dso->tls_image = (void *)(base+tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200587 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400588 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400589 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400590noexec:
591 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400592error:
Rich Felkerd5884a52013-08-02 09:56:49 -0400593 if (map!=MAP_FAILED) munmap(map, map_len);
594 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400595 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400596}
597
Rich Felker8c203ea2013-04-20 11:51:58 -0400598static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400599{
Rich Felker8c203ea2013-04-20 11:51:58 -0400600 size_t l;
601 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400602 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400603 s += strspn(s, ":\n");
604 l = strcspn(s, ":\n");
605 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400606 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
607 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
608 switch (errno) {
609 case ENOENT:
610 case ENOTDIR:
611 case EACCES:
612 case ENAMETOOLONG:
613 break;
614 default:
615 /* Any negative value but -1 will inhibit
616 * futher path search. */
617 return -2;
618 }
619 }
Rich Felker49388f32011-06-25 17:49:16 -0400620 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400621 }
Rich Felker568b8072011-06-25 01:56:34 -0400622}
623
Rich Felkera897a202013-08-23 13:56:30 -0400624static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
625{
626 size_t n, l;
627 const char *s, *t, *origin;
628 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400629 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400630 if (!strchr(p->rpath_orig, '$')) {
631 p->rpath = p->rpath_orig;
632 return 0;
633 }
634 n = 0;
635 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400636 while ((t=strchr(s, '$'))) {
637 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400638 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400639 s = t+1;
640 n++;
641 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400642 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400643
644 if (p->kernel_mapped) {
645 /* $ORIGIN searches cannot be performed for the main program
646 * when it is suid/sgid/AT_SECURE. This is because the
647 * pathname is under the control of the caller of execve.
648 * For libraries, however, $ORIGIN can be processed safely
649 * since the library's pathname came from a trusted source
650 * (either system paths or a call to dlopen). */
651 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400652 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400653 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400654 if (l == -1) switch (errno) {
655 case ENOENT:
656 case ENOTDIR:
657 case EACCES:
658 break;
659 default:
Rich Felkera897a202013-08-23 13:56:30 -0400660 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400661 }
662 if (l >= buf_size)
663 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400664 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400665 origin = buf;
666 } else {
667 origin = p->name;
668 }
669 t = strrchr(origin, '/');
670 l = t ? t-origin : 0;
671 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
672 if (!p->rpath) return -1;
673
674 d = p->rpath;
675 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400676 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400677 memcpy(d, s, t-s);
678 d += t-s;
679 memcpy(d, origin, l);
680 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400681 /* It was determined previously that the '$' is followed
682 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400683 s = t + 7 + 2*(t[1]=='{');
684 }
685 strcpy(d, s);
686 return 0;
687}
688
Rich Felkerc82f4a32012-01-23 00:57:38 -0500689static void decode_dyn(struct dso *p)
690{
Rich Felkerf4f95622015-04-13 22:38:18 -0400691 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500692 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felker301335a2015-09-17 17:18:09 +0000693 p->syms = laddr(p, dyn[DT_SYMTAB]);
694 p->strings = laddr(p, dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400695 if (dyn[0]&(1<<DT_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000696 p->hashtab = laddr(p, dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400697 if (dyn[0]&(1<<DT_RPATH))
Rich Felkera897a202013-08-23 13:56:30 -0400698 p->rpath_orig = (void *)(p->strings + dyn[DT_RPATH]);
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500699 if (dyn[0]&(1<<DT_RUNPATH))
700 p->rpath_orig = (void *)(p->strings + dyn[DT_RUNPATH]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400701 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000702 p->ghashtab = laddr(p, *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400703 if (search_vec(p->dynv, dyn, DT_VERSYM))
Rich Felker301335a2015-09-17 17:18:09 +0000704 p->versym = laddr(p, *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500705}
706
Rich Felker709355e2013-08-23 11:15:40 -0400707static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400708{
Rich Felker5c1909a2012-05-27 16:01:44 -0400709 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400710 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500711 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400712 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400713 int fd;
714 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400715 size_t alloc_size;
716 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400717 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400718
Rich Felker59549312014-07-11 00:29:44 -0400719 if (!*name) {
720 errno = EINVAL;
721 return 0;
722 }
723
Rich Felker51e2d832011-06-18 19:48:42 -0400724 /* Catch and block attempts to reload the implementation itself */
725 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
726 static const char *rp, reserved[] =
727 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
728 char *z = strchr(name, '.');
729 if (z) {
730 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400731 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400732 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400733 if (ldd_mode) {
734 /* Track which names have been resolved
735 * and only report each one once. */
736 static unsigned reported;
737 unsigned mask = 1U<<(rp-reserved);
738 if (!(reported & mask)) {
739 reported |= mask;
740 dprintf(1, "\t%s => %s (%p)\n",
Rich Felkerf3ddd172015-04-13 02:56:26 -0400741 name, ldso.name,
742 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400743 }
744 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400745 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400746 }
747 }
748 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400749 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400750 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400751 if (!ldso.prev) {
752 tail->next = &ldso;
753 ldso.prev = tail;
754 tail = ldso.next ? ldso.next : &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400755 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400756 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400757 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400758 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400759 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400760 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400761 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400762 /* Search for the name to see if it's already loaded */
763 for (p=head->next; p; p=p->next) {
764 if (p->shortname && !strcmp(p->shortname, name)) {
765 p->refcnt++;
766 return p;
767 }
768 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400769 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400770 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400771 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400772 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
773 if (fixup_rpath(p, buf, sizeof buf) < 0)
774 fd = -2; /* Inhibit further search. */
775 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400776 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400777 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400778 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400779 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400780 char *prefix = 0;
781 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400782 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400783 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400784 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400785 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400786 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400787 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400788 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400789 }
790 if (!prefix) {
791 prefix = "";
792 prefix_len = 0;
793 }
794 char etc_ldso_path[prefix_len + 1
795 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
796 snprintf(etc_ldso_path, sizeof etc_ldso_path,
797 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
798 (int)prefix_len, prefix);
799 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400800 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400801 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400802 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400803 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500804 }
Rich Felker568b8072011-06-25 01:56:34 -0400805 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400806 } else if (errno != ENOENT) {
807 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400808 }
809 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500810 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
811 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400812 }
Rich Felker0420b872012-07-11 01:41:20 -0400813 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400814 }
815 if (fd < 0) return 0;
816 if (fstat(fd, &st) < 0) {
817 close(fd);
818 return 0;
819 }
820 for (p=head->next; p; p=p->next) {
821 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -0400822 /* If this library was previously loaded with a
823 * pathname but a search found the same inode,
824 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -0400825 if (!p->shortname && pathname != name)
826 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -0400827 close(fd);
828 p->refcnt++;
829 return p;
830 }
831 }
Rich Felker4d07e552013-01-23 22:07:45 -0500832 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -0400833 close(fd);
834 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -0400835
836 /* Allocate storage for the new DSO. When there is TLS, this
837 * storage must include a reservation for all pre-existing
838 * threads to obtain copies of both the new TLS, and an
839 * extended DTV capable of storing an additional slot for
840 * the newly-loaded DSO. */
841 alloc_size = sizeof *p + strlen(pathname) + 1;
842 if (runtime && temp_dso.tls_image) {
843 size_t per_th = temp_dso.tls_size + temp_dso.tls_align
844 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -0400845 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400846 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
847 else alloc_size += n_th * per_th;
848 }
849 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -0400850 if (!p) {
Rich Felker74025c82013-02-02 00:59:25 -0500851 munmap(map, temp_dso.map_len);
Rich Felker51e2d832011-06-18 19:48:42 -0400852 return 0;
853 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400854 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500855 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -0400856 p->dev = st.st_dev;
857 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -0400858 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -0400859 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400860 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -0400861 strcpy(p->name, pathname);
862 /* Add a shortname only if name arg was not an explicit pathname. */
863 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400864 if (p->tls_image) {
865 p->tls_id = ++tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400866 tls_align = MAXP2(tls_align, p->tls_align);
Rich Felker9ec42832012-10-15 18:51:53 -0400867#ifdef TLS_ABOVE_TP
868 p->tls_offset = tls_offset + ( (tls_align-1) &
869 -(tls_offset + (uintptr_t)p->tls_image) );
870 tls_offset += p->tls_size;
871#else
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400872 tls_offset += p->tls_size + p->tls_align - 1;
873 tls_offset -= (tls_offset + (uintptr_t)p->tls_image)
874 & (p->tls_align-1);
875 p->tls_offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -0400876#endif
Rich Felkerdcd60372012-10-05 11:51:50 -0400877 p->new_dtv = (void *)(-sizeof(size_t) &
878 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
879 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
880 }
Rich Felker51e2d832011-06-18 19:48:42 -0400881
882 tail->next = p;
883 p->prev = tail;
884 tail = p;
885
Rich Felker1d7c4f82012-12-15 23:34:08 -0500886 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -0400887
Rich Felker51e2d832011-06-18 19:48:42 -0400888 return p;
889}
890
891static void load_deps(struct dso *p)
892{
Rich Felker59ab43f2011-06-26 19:23:28 -0400893 size_t i, ndeps=0;
894 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -0400895 for (; p; p=p->next) {
896 for (i=0; p->dynv[i]; i+=2) {
897 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -0400898 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -0400899 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400900 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -0400901 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400902 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400903 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400904 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400905 if (runtime) {
906 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -0400907 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -0400908 tmp[ndeps++] = dep;
909 tmp[ndeps] = 0;
910 *deps = tmp;
911 }
Rich Felker51e2d832011-06-18 19:48:42 -0400912 }
913 }
914}
915
Rich Felker2719cc82011-08-16 00:24:36 -0400916static void load_preload(char *s)
917{
918 int tmp;
919 char *z;
920 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -0400921 for ( ; *s && (isspace(*s) || *s==':'); s++);
922 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -0400923 tmp = *z;
924 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -0400925 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -0400926 *z = tmp;
927 }
928}
929
Rich Felker59ab43f2011-06-26 19:23:28 -0400930static void make_global(struct dso *p)
931{
932 for (; p; p=p->next) p->global = 1;
933}
934
Rich Felkerf3ddd172015-04-13 02:56:26 -0400935static void do_mips_relocs(struct dso *p, size_t *got)
936{
937 size_t i, j, rel[2];
938 unsigned char *base = p->base;
939 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -0400940 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400941 got += i;
942 } else {
943 while (i--) *got++ += (size_t)base;
944 }
945 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
946 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
947 Sym *sym = p->syms + j;
948 rel[0] = (unsigned char *)got - base;
949 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
950 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
951 do_relocs(p, rel, sizeof rel, 2);
952 }
953}
954
Rich Felker51e2d832011-06-18 19:48:42 -0400955static void reloc_all(struct dso *p)
956{
Rich Felkerf4f95622015-04-13 22:38:18 -0400957 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -0400958 for (; p; p=p->next) {
959 if (p->relocated) continue;
960 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400961 if (NEED_MIPS_GOT_RELOCS)
962 do_mips_relocs(p, (void *)(p->base+dyn[DT_PLTGOT]));
Rich Felker87d13a42012-08-05 02:49:02 -0400963 do_relocs(p, (void *)(p->base+dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
964 2+(dyn[DT_PLTREL]==DT_RELA));
965 do_relocs(p, (void *)(p->base+dyn[DT_REL]), dyn[DT_RELSZ], 2);
966 do_relocs(p, (void *)(p->base+dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +0200967
Rich Felkerf3ddd172015-04-13 02:56:26 -0400968 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker75eceb32015-06-17 17:21:46 +0000969 mprotect(p->base+p->relro_start, p->relro_end-p->relro_start, PROT_READ)
970 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400971 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +0200972 p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400973 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +0200974 }
975
Rich Felker368ba4a2011-06-25 00:18:19 -0400976 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400977 }
978}
979
Timo Teräs87691962014-03-25 20:59:50 +0200980static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -0500981{
Timo Teräs87691962014-03-25 20:59:50 +0200982 size_t min_addr = -1, max_addr = 0, cnt;
983 Phdr *ph = p->phdr;
984 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
985 if (ph->p_type == PT_DYNAMIC) {
Rich Felker301335a2015-09-17 17:18:09 +0000986 p->dynv = laddr(p, ph->p_vaddr);
Timo Teräs87691962014-03-25 20:59:50 +0200987 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +0200988 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
989 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
990 }
Rich Felkerf419bcb2012-08-26 21:09:26 -0400991 if (ph->p_type != PT_LOAD) continue;
992 if (ph->p_vaddr < min_addr)
993 min_addr = ph->p_vaddr;
994 if (ph->p_vaddr+ph->p_memsz > max_addr)
995 max_addr = ph->p_vaddr+ph->p_memsz;
996 }
997 min_addr &= -PAGE_SIZE;
998 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
999 p->map = p->base + min_addr;
1000 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +02001001 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001002}
1003
Rich Felkerf4f77c02012-10-05 13:09:09 -04001004static void do_fini()
1005{
1006 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -04001007 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -04001008 for (p=fini_head; p; p=p->fini_next) {
1009 if (!p->constructed) continue;
1010 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001011 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
1012 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001013 size_t *fn = (size_t *)laddr(p, dyn[DT_FINI_ARRAY])+n;
Rich Felker1b413572013-07-21 02:35:46 -04001014 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -04001015 }
Rich Felker1da53da2013-07-22 14:08:33 -04001016#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001017 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felker301335a2015-09-17 17:18:09 +00001018 ((void (*)(void))laddr(p, dyn[DT_FINI]))();
Rich Felker1da53da2013-07-22 14:08:33 -04001019#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001020 }
1021}
1022
Rich Felker4ce3cb52012-02-06 14:39:09 -05001023static void do_init_fini(struct dso *p)
1024{
Rich Felkerf4f95622015-04-13 22:38:18 -04001025 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001026 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001027 /* Allow recursive calls that arise when a library calls
1028 * dlopen from one of its constructors, but block any
1029 * other threads until all ctors have finished. */
1030 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001031 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001032 if (p->constructed) continue;
1033 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001034 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001035 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001036 p->fini_next = fini_head;
1037 fini_head = p;
1038 }
Rich Felker1da53da2013-07-22 14:08:33 -04001039#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001040 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker301335a2015-09-17 17:18:09 +00001041 ((void (*)(void))laddr(p, dyn[DT_INIT]))();
Rich Felker1da53da2013-07-22 14:08:33 -04001042#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001043 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1044 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001045 size_t *fn = laddr(p, dyn[DT_INIT_ARRAY]);
Rich Felkere69ae842013-07-20 18:26:17 -04001046 while (n--) ((void (*)(void))*fn++)();
1047 }
Rich Felker509b50e2013-06-29 02:24:02 -04001048 if (!need_locking && libc.threads_minus_1) {
1049 need_locking = 1;
1050 pthread_mutex_lock(&init_fini_lock);
1051 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001052 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001053 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001054}
1055
Rich Felker326e1262015-04-17 23:23:05 -04001056static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001057{
1058}
1059
Rich Felker326e1262015-04-17 23:23:05 -04001060weak_alias(dl_debug_state, _dl_debug_state);
1061
Rich Felker7c6c2902013-08-03 16:27:30 -04001062void __reset_tls()
1063{
1064 pthread_t self = __pthread_self();
1065 struct dso *p;
1066 for (p=head; p; p=p->next) {
1067 if (!p->tls_id || !self->dtv[p->tls_id]) continue;
1068 memcpy(self->dtv[p->tls_id], p->tls_image, p->tls_len);
1069 memset((char *)self->dtv[p->tls_id]+p->tls_len, 0,
1070 p->tls_size - p->tls_len);
1071 if (p->tls_id == (size_t)self->dtv[0]) break;
1072 }
1073}
1074
Rich Felkerdcd60372012-10-05 11:51:50 -04001075void *__copy_tls(unsigned char *mem)
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001076{
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001077 pthread_t td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001078 struct dso *p;
Rich Felker0f66fce2015-04-13 18:07:10 -04001079 void **dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001080
Rich Felker9ec42832012-10-15 18:51:53 -04001081#ifdef TLS_ABOVE_TP
Rich Felker0f66fce2015-04-13 18:07:10 -04001082 dtv = (void **)(mem + libc.tls_size) - (tls_cnt + 1);
1083
Rich Felker9ec42832012-10-15 18:51:53 -04001084 mem += -((uintptr_t)mem + sizeof(struct pthread)) & (tls_align-1);
1085 td = (pthread_t)mem;
1086 mem += sizeof(struct pthread);
1087
1088 for (p=head; p; p=p->next) {
1089 if (!p->tls_id) continue;
1090 dtv[p->tls_id] = mem + p->tls_offset;
1091 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
1092 }
1093#else
Rich Felker0f66fce2015-04-13 18:07:10 -04001094 dtv = (void **)mem;
1095
Rich Felkere23d3582012-10-13 23:25:20 -04001096 mem += libc.tls_size - sizeof(struct pthread);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001097 mem -= (uintptr_t)mem & (tls_align-1);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001098 td = (pthread_t)mem;
1099
1100 for (p=head; p; p=p->next) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001101 if (!p->tls_id) continue;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001102 dtv[p->tls_id] = mem - p->tls_offset;
1103 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001104 }
Rich Felker9ec42832012-10-15 18:51:53 -04001105#endif
Rich Felker0f66fce2015-04-13 18:07:10 -04001106 dtv[0] = (void *)tls_cnt;
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001107 td->dtv = td->dtv_copy = dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001108 return td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001109}
1110
Rich Felkerbc081f62015-04-14 10:42:44 -04001111__attribute__((__visibility__("hidden")))
Rich Felker5ba238e2014-06-19 02:59:44 -04001112void *__tls_get_new(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001113{
1114 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001115
1116 /* Block signals to make accessing new TLS async-signal-safe */
1117 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001118 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001119 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001120 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001121 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001122 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001123
1124 /* This is safe without any locks held because, if the caller
1125 * is able to request the Nth entry of the DTV, the DSO list
1126 * must be valid at least that far out and it was synchronized
1127 * at program startup or by an already-completed call to dlopen. */
1128 struct dso *p;
1129 for (p=head; p->tls_id != v[0]; p=p->next);
1130
1131 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001132 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001133 void **newdtv = p->new_dtv +
1134 (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001135 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001136 ((size_t)self->dtv[0]+1) * sizeof(void *));
1137 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001138 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001139 }
1140
Rich Felkere75b16c2014-06-19 02:16:57 -04001141 /* Get new TLS memory from all new DSOs up to the requested one */
1142 unsigned char *mem;
1143 for (p=head; ; p=p->next) {
1144 if (!p->tls_id || self->dtv[p->tls_id]) continue;
1145 mem = p->new_tls + (p->tls_size + p->tls_align)
1146 * a_fetch_add(&p->new_tls_idx,1);
1147 mem += ((uintptr_t)p->tls_image - (uintptr_t)mem)
1148 & (p->tls_align-1);
1149 self->dtv[p->tls_id] = mem;
1150 memcpy(mem, p->tls_image, p->tls_len);
1151 if (p->tls_id == v[0]) break;
1152 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001153 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001154 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001155}
1156
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001157static void update_tls_size()
1158{
Rich Felker9ec42832012-10-15 18:51:53 -04001159 libc.tls_size = ALIGN(
1160 (1+tls_cnt) * sizeof(void *) +
1161 tls_offset +
1162 sizeof(struct pthread) +
1163 tls_align * 2,
1164 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001165}
1166
Rich Felkerf3ddd172015-04-13 02:56:26 -04001167/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1168 * following stage 2 and stage 3 functions via primitive symbolic lookup
1169 * since it does not have access to their addresses to begin with. */
1170
1171/* Stage 2 of the dynamic linker is called after relative relocations
1172 * have been processed. It can make function calls to static functions
1173 * and access string literals and static data, but cannot use extern
1174 * symbols. Its job is to perform symbolic relocations on the dynamic
1175 * linker itself, but some of the relocations performed may need to be
1176 * replaced later due to copy relocations in the main program. */
1177
Rich Felker768b82c2015-05-25 19:15:17 -04001178void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001179{
Rich Felkerf3ddd172015-04-13 02:56:26 -04001180 Ehdr *ehdr = (void *)base;
1181 ldso.base = base;
1182 ldso.name = ldso.shortname = "libc.so";
1183 ldso.global = 1;
1184 ldso.phnum = ehdr->e_phnum;
1185 ldso.phdr = (void *)(base + ehdr->e_phoff);
1186 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001187 kernel_mapped_dso(&ldso);
1188 decode_dyn(&ldso);
1189
Rich Felker9bbddf72015-05-25 23:33:59 -04001190 /* Prepare storage for to save clobbered REL addends so they
1191 * can be reused in stage 3. There should be very few. If
1192 * something goes wrong and there are a huge number, abort
1193 * instead of risking stack overflow. */
1194 size_t dyn[DYN_CNT];
1195 decode_vec(ldso.dynv, dyn, DYN_CNT);
1196 size_t *rel = (void *)(base+dyn[DT_REL]);
1197 size_t rel_size = dyn[DT_RELSZ];
1198 size_t symbolic_rel_cnt = 0;
1199 apply_addends_to = rel;
1200 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
1201 if (!IS_RELATIVE(rel[1])) symbolic_rel_cnt++;
1202 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1203 size_t addends[symbolic_rel_cnt+1];
1204 saved_addends = addends;
1205
Rich Felkerf3ddd172015-04-13 02:56:26 -04001206 head = &ldso;
1207 reloc_all(&ldso);
1208
1209 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001210
1211 /* Call dynamic linker stage-3, __dls3, looking it up
1212 * symbolically as a barrier against moving the address
1213 * load across the above relocation processing. */
1214 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
1215 ((stage3_func)(ldso.base+dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001216}
1217
1218/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1219 * fully functional. Its job is to load (if not already loaded) and
1220 * process dependencies and relocations for the main application and
1221 * transfer control to its entry point. */
1222
1223_Noreturn void __dls3(size_t *sp)
1224{
1225 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001226 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001227 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001228 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001229 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001230 int argc = *sp;
1231 char **argv = (void *)(sp+1);
1232 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001233 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001234
Rich Felker75ce4502015-06-07 20:55:23 +00001235 /* Find aux vector just past environ[] and use it to initialize
1236 * global data that may be needed before we can make syscalls. */
1237 __environ = envp;
1238 for (i=argc+1; argv[i]; i++);
1239 libc.auxv = auxv = (void *)(argv+i+1);
1240 decode_vec(auxv, aux, AUX_CNT);
1241 __hwcap = aux[AT_HWCAP];
1242 libc.page_size = aux[AT_PAGESZ];
1243 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1244 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1245
Rich Felker71f099c2015-04-13 18:40:52 -04001246 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1247 * use during dynamic linking. If possible it will also serve as the
1248 * thread pointer at runtime. */
1249 libc.tls_size = sizeof builtin_tls;
1250 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001251 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001252 }
Rich Felker51e2d832011-06-18 19:48:42 -04001253
Rich Felker568b8072011-06-25 01:56:34 -04001254 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001255 if (!libc.secure) {
1256 env_path = getenv("LD_LIBRARY_PATH");
1257 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001258 }
1259
Rich Felkerf3ddd172015-04-13 02:56:26 -04001260 /* If the main program was already loaded by the kernel,
1261 * AT_PHDR will point to some location other than the dynamic
1262 * linker's program headers. */
1263 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001264 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001265 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001266 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001267 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1268 app.phnum = aux[AT_PHNUM];
1269 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001270 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1271 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001272 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001273 else if (phdr->p_type == PT_INTERP)
1274 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001275 else if (phdr->p_type == PT_TLS) {
1276 tls_image = phdr->p_vaddr;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001277 app.tls_len = phdr->p_filesz;
1278 app.tls_size = phdr->p_memsz;
1279 app.tls_align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001280 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001281 }
Rich Felker301335a2015-09-17 17:18:09 +00001282 if (app.tls_size) app.tls_image = laddr(&app, tls_image);
1283 if (interp_off) ldso.name = laddr(&app, interp_off);
Rich Felkercc515052013-08-23 14:14:47 -04001284 if ((aux[0] & (1UL<<AT_EXECFN))
1285 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001286 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001287 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001288 app.name = argv[0];
1289 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001290 } else {
1291 int fd;
1292 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001293 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001294 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001295 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001296 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1297 char *opt = argv[0]+2;
1298 *argv++ = (void *)-1;
1299 if (!*opt) {
1300 break;
1301 } else if (!memcmp(opt, "list", 5)) {
1302 ldd_mode = 1;
1303 } else if (!memcmp(opt, "library-path", 12)) {
1304 if (opt[12]=='=') env_path = opt+13;
1305 else if (opt[12]) *argv = 0;
1306 else if (*argv) env_path = *argv++;
1307 } else if (!memcmp(opt, "preload", 7)) {
1308 if (opt[7]=='=') env_preload = opt+8;
1309 else if (opt[7]) *argv = 0;
1310 else if (*argv) env_preload = *argv++;
1311 } else {
1312 argv[0] = 0;
1313 }
Rich Felkerde451642014-04-16 12:45:36 -04001314 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001315 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001316 if (!argv[0]) {
Rich Felker179ab5a2013-12-01 17:27:25 -05001317 dprintf(2, "musl libc\n"
1318 "Version %s\n"
1319 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001320 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001321 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001322 ldd_mode ? "" : " [args]");
1323 _exit(1);
1324 }
1325 fd = open(argv[0], O_RDONLY);
1326 if (fd < 0) {
1327 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1328 _exit(1);
1329 }
1330 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001331 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001332 if (!ehdr) {
1333 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1334 _exit(1);
1335 }
1336 runtime = 0;
1337 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001338 ldso.name = ldname;
1339 app.name = argv[0];
Rich Felker301335a2015-09-17 17:18:09 +00001340 aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
Rich Felkera97a0502013-07-26 14:41:12 -04001341 /* Find the name that would have been used for the dynamic
1342 * linker had ldd not taken its place. */
1343 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001344 for (i=0; i<app.phnum; i++) {
1345 if (app.phdr[i].p_type == PT_INTERP)
1346 ldso.name = (void *)(app.base
1347 + app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001348 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001349 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001350 }
Rich Felkere12fe652012-01-23 02:02:59 -05001351 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001352 if (app.tls_size) {
1353 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001354#ifdef TLS_ABOVE_TP
Rich Felkerf3ddd172015-04-13 02:56:26 -04001355 app.tls_offset = 0;
1356 tls_offset = app.tls_size
1357 + ( -((uintptr_t)app.tls_image + app.tls_size)
1358 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001359#else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001360 tls_offset = app.tls_offset = app.tls_size
1361 + ( -((uintptr_t)app.tls_image + app.tls_size)
1362 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001363#endif
Rich Felkerf3ddd172015-04-13 02:56:26 -04001364 tls_align = MAXP2(tls_align, app.tls_align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001365 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001366 app.global = 1;
1367 decode_dyn(&app);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001368
1369 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001370 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001371 Ehdr *ehdr = (void *)vdso_base;
1372 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1373 vdso.phnum = ehdr->e_phnum;
1374 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001375 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1376 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001377 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001378 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001379 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001380 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001381 vdso.name = "";
1382 vdso.shortname = "linux-gate.so.1";
1383 vdso.global = 1;
1384 vdso.relocated = 1;
1385 decode_dyn(&vdso);
1386 vdso.prev = &ldso;
1387 ldso.next = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001388 }
1389
Rich Felkerf3ddd172015-04-13 02:56:26 -04001390 /* Initial dso chain consists only of the app. */
1391 head = tail = &app;
Rich Felker51e2d832011-06-18 19:48:42 -04001392
Rich Felkerc82f4a32012-01-23 00:57:38 -05001393 /* Donate unused parts of app and library mapping to malloc */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001394 reclaim_gaps(&app);
1395 reclaim_gaps(&ldso);
Rich Felker6717e622011-06-28 19:40:14 -04001396
Rich Felkerc82f4a32012-01-23 00:57:38 -05001397 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerf3ddd172015-04-13 02:56:26 -04001398 * namespace, and perform all remaining relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001399 if (env_preload) load_preload(env_preload);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001400 load_deps(&app);
1401 make_global(&app);
Rich Felker9c748562012-10-04 22:48:33 -04001402
Timo Teräse13a2b82014-03-25 14:13:27 +02001403#ifndef DYNAMIC_IS_RO
Rich Felkerf3ddd172015-04-13 02:56:26 -04001404 for (i=0; app.dynv[i]; i+=2)
1405 if (app.dynv[i]==DT_DEBUG)
1406 app.dynv[i+1] = (size_t)&debug;
Timo Teräse13a2b82014-03-25 14:13:27 +02001407#endif
1408
Rich Felkerf3ddd172015-04-13 02:56:26 -04001409 /* The main program must be relocated LAST since it may contin
1410 * copy relocations which depend on libraries' relocations. */
1411 reloc_all(app.next);
1412 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001413
1414 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001415 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1416 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001417 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001418 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001419 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001420 _exit(127);
1421 }
Rich Felker71f099c2015-04-13 18:40:52 -04001422 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001423 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001424 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001425 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001426 size_t tmp_tls_size = libc.tls_size;
1427 pthread_t self = __pthread_self();
1428 /* Temporarily set the tls size to the full size of
1429 * builtin_tls so that __copy_tls will use the same layout
1430 * as it did for before. Then check, just to be safe. */
1431 libc.tls_size = sizeof builtin_tls;
1432 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1433 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001434 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001435 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001436
Rich Felker04109502012-08-18 16:00:23 -04001437 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001438 if (ldd_mode) _exit(0);
1439
Rich Felkerc82f4a32012-01-23 00:57:38 -05001440 /* Switch to runtime mode: any further failures in the dynamic
1441 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001442 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001443 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001444
Rich Felker3ec8d292012-04-25 00:05:42 -04001445 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001446 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001447 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001448 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001449 debug.state = 0;
1450 _dl_debug_state();
1451
Rich Felker75863602013-07-21 03:00:54 -04001452 __init_libc(envp, argv[0]);
Rich Felkera7936f62012-11-30 17:56:23 -05001453 atexit(do_fini);
Rich Felker75863602013-07-21 03:00:54 -04001454 errno = 0;
Rich Felkera7936f62012-11-30 17:56:23 -05001455 do_init_fini(tail);
Rich Felker75863602013-07-21 03:00:54 -04001456
Rich Felkerf3ddd172015-04-13 02:56:26 -04001457 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1458 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001459}
1460
Rich Felker59ab43f2011-06-26 19:23:28 -04001461void *dlopen(const char *file, int mode)
1462{
Rich Felker642b7592012-10-05 01:15:25 -04001463 struct dso *volatile p, *orig_tail, *next;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001464 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001465 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001466 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001467 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001468
1469 if (!file) return head;
1470
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001471 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001472 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001473 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001474
Rich Felkerdcd60372012-10-05 11:51:50 -04001475 p = 0;
1476 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001477 orig_tls_offset = tls_offset;
1478 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001479 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001480 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001481
Rich Felker17276be2013-07-24 02:38:05 -04001482 rtld_fail = &jb;
1483 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001484 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001485 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001486 if (p->deps[i]->global < 0)
1487 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001488 for (p=orig_tail->next; p; p=next) {
1489 next = p->next;
1490 munmap(p->map, p->map_len);
Rich Felker9d15d5e2014-06-19 02:01:06 -04001491 while (p->td_index) {
1492 void *tmp = p->td_index->next;
1493 free(p->td_index);
1494 p->td_index = tmp;
1495 }
Rich Felker07709622015-04-04 00:15:19 -04001496 if (p->rpath != p->rpath_orig)
1497 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001498 free(p->deps);
1499 free(p);
1500 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001501 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001502 tls_offset = orig_tls_offset;
1503 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001504 tail = orig_tail;
1505 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001506 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001507 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001508 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001509
1510 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001511 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001512 "Library %s is not already loaded" :
1513 "Error loading shared library %s: %m",
1514 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001515 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001516 }
1517
Rich Felker59ab43f2011-06-26 19:23:28 -04001518 /* First load handling */
1519 if (!p->deps) {
1520 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001521 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001522 if (!p->deps[i]->global)
1523 p->deps[i]->global = -1;
1524 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001525 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001526 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001527 if (p->deps[i]->global < 0)
1528 p->deps[i]->global = 0;
1529 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001530 }
1531
1532 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001533 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001534 p->deps[i]->global = 1;
1535 p->global = 1;
1536 }
1537
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001538 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001539 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001540 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001541end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001542 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001543 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001544 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001545 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001546 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001547 return p;
1548}
1549
Rich Felker4d982802013-01-16 11:49:00 -05001550static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001551{
1552 struct dso *p;
1553 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001554 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001555 return 1;
1556}
1557
Rich Felker5ba238e2014-06-19 02:59:44 -04001558void *__tls_get_addr(size_t *);
1559
Rich Felker623753a2011-08-16 00:42:13 -04001560static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001561{
1562 size_t i;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001563 uint32_t h = 0, gh = 0, *ght;
Rich Felker59ab43f2011-06-26 19:23:28 -04001564 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001565 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001566 if (p == RTLD_DEFAULT) {
1567 p = head;
1568 } else if (p == RTLD_NEXT) {
Rich Felker9c748562012-10-04 22:48:33 -04001569 for (p=head; p && (unsigned char *)ra-p->map>p->map_len; p=p->next);
1570 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001571 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001572 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001573 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001574 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001575 if ((def.sym->st_info&0xf) == STT_TLS)
1576 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felker301335a2015-09-17 17:18:09 +00001577 return laddr(def.dso, def.sym->st_value);
Rich Felkera9e85c02012-03-23 00:28:20 -04001578 }
Rich Felker97b72d22015-04-21 13:07:06 -04001579 if (invalid_dso_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001580 return 0;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001581 if ((ght = p->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001582 gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001583 sym = gnu_lookup(gh, ght, p, s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001584 } else {
1585 h = sysv_hash(s);
1586 sym = sysv_lookup(s, h, p);
1587 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001588 if (sym && (sym->st_info&0xf) == STT_TLS)
1589 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001590 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001591 return laddr(p, sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001592 if (p->deps) for (i=0; p->deps[i]; i++) {
Alexander Monakov8f08a582015-06-28 02:48:33 +03001593 if ((ght = p->deps[i]->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001594 if (!gh) gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001595 sym = gnu_lookup(gh, ght, p->deps[i], s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001596 } else {
1597 if (!h) h = sysv_hash(s);
1598 sym = sysv_lookup(s, h, p->deps[i]);
1599 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001600 if (sym && (sym->st_info&0xf) == STT_TLS)
1601 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001602 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001603 return laddr(p->deps[i], sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001604 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001605failed:
Rich Felker01d42742015-04-18 18:00:22 -04001606 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001607 return 0;
1608}
1609
Rich Felker839cc4e2014-01-06 22:03:38 -05001610int __dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001611{
1612 struct dso *p;
1613 Sym *sym;
1614 uint32_t nsym;
1615 char *strings;
1616 size_t i;
1617 void *best = 0;
1618 char *bestname;
1619
1620 pthread_rwlock_rdlock(&lock);
1621 for (p=head; p && (unsigned char *)addr-p->map>p->map_len; p=p->next);
1622 pthread_rwlock_unlock(&lock);
1623
1624 if (!p) return 0;
1625
1626 sym = p->syms;
1627 strings = p->strings;
1628 if (p->hashtab) {
1629 nsym = p->hashtab[1];
1630 } else {
1631 uint32_t *buckets;
1632 uint32_t *hashval;
1633 buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
1634 sym += p->ghashtab[1];
Rich Felker78869852013-10-04 00:29:58 -04001635 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
Rich Felkerf419bcb2012-08-26 21:09:26 -04001636 if (buckets[i] > nsym)
1637 nsym = buckets[i];
1638 }
1639 if (nsym) {
1640 nsym -= p->ghashtab[1];
1641 hashval = buckets + p->ghashtab[0] + nsym;
1642 do nsym++;
1643 while (!(*hashval++ & 1));
1644 }
1645 }
1646
1647 for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001648 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001649 && (1<<(sym->st_info&0xf) & OK_TYPES)
1650 && (1<<(sym->st_info>>4) & OK_BINDS)) {
Rich Felker301335a2015-09-17 17:18:09 +00001651 void *symaddr = laddr(p, sym->st_value);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001652 if (symaddr > addr || symaddr < best)
1653 continue;
1654 best = symaddr;
1655 bestname = strings + sym->st_name;
1656 if (addr == symaddr)
1657 break;
1658 }
1659 }
1660
1661 if (!best) return 0;
1662
1663 info->dli_fname = p->name;
1664 info->dli_fbase = p->base;
1665 info->dli_sname = bestname;
1666 info->dli_saddr = best;
1667
1668 return 1;
1669}
1670
Rich Felker72b25dd2015-04-14 11:39:11 -04001671__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001672void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001673{
1674 void *res;
1675 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001676 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001677 pthread_rwlock_unlock(&lock);
1678 return res;
1679}
Rich Felker18c0e022012-10-31 21:27:48 -04001680
1681int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1682{
1683 struct dso *current;
1684 struct dl_phdr_info info;
1685 int ret = 0;
1686 for(current = head; current;) {
1687 info.dlpi_addr = (uintptr_t)current->base;
1688 info.dlpi_name = current->name;
1689 info.dlpi_phdr = current->phdr;
1690 info.dlpi_phnum = current->phnum;
1691 info.dlpi_adds = gencnt;
1692 info.dlpi_subs = 0;
1693 info.dlpi_tls_modid = current->tls_id;
1694 info.dlpi_tls_data = current->tls_image;
1695
1696 ret = (callback)(&info, sizeof (info), data);
1697
1698 if (ret != 0) break;
1699
1700 pthread_rwlock_rdlock(&lock);
1701 current = current->next;
1702 pthread_rwlock_unlock(&lock);
1703 }
1704 return ret;
1705}
Rich Felker5a09a532012-02-03 03:16:07 -05001706#else
Rich Felker4d982802013-01-16 11:49:00 -05001707static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001708{
Rich Felker01d42742015-04-18 18:00:22 -04001709 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001710 return 1;
1711}
Rich Felker5a09a532012-02-03 03:16:07 -05001712void *dlopen(const char *file, int mode)
1713{
Rich Felker01d42742015-04-18 18:00:22 -04001714 error("Dynamic loading not supported");
Rich Felker5a09a532012-02-03 03:16:07 -05001715 return 0;
1716}
Rich Felker400c5e52012-09-06 22:44:55 -04001717void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001718{
Rich Felker01d42742015-04-18 18:00:22 -04001719 error("Symbol not found: %s", s);
Rich Felker5a09a532012-02-03 03:16:07 -05001720 return 0;
1721}
Rich Felker839cc4e2014-01-06 22:03:38 -05001722int __dladdr (const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001723{
1724 return 0;
1725}
Rich Felker5a09a532012-02-03 03:16:07 -05001726#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001727
Rich Felker780cbbe2013-06-29 12:46:46 -04001728int __dlinfo(void *dso, int req, void *res)
1729{
1730 if (invalid_dso_handle(dso)) return -1;
1731 if (req != RTLD_DI_LINKMAP) {
Rich Felker01d42742015-04-18 18:00:22 -04001732 error("Unsupported request %d", req);
Rich Felker780cbbe2013-06-29 12:46:46 -04001733 return -1;
1734 }
1735 *(struct link_map **)res = dso;
1736 return 0;
1737}
1738
Rich Felker59ab43f2011-06-26 19:23:28 -04001739char *dlerror()
1740{
Rich Felker01d42742015-04-18 18:00:22 -04001741 pthread_t self = __pthread_self();
1742 if (!self->dlerror_flag) return 0;
1743 self->dlerror_flag = 0;
1744 char *s = self->dlerror_buf;
1745 if (s == (void *)-1)
1746 return "Dynamic linker failed to allocate memory for error message";
1747 else
1748 return s;
Rich Felker59ab43f2011-06-26 19:23:28 -04001749}
1750
1751int dlclose(void *p)
1752{
Rich Felker6468fc92013-01-10 14:05:40 -05001753 return invalid_dso_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001754}
Rich Felker01d42742015-04-18 18:00:22 -04001755
1756void __dl_thread_cleanup(void)
1757{
1758 pthread_t self = __pthread_self();
1759 if (self->dlerror_buf != (void *)-1)
1760 free(self->dlerror_buf);
1761}
1762
1763static void error(const char *fmt, ...)
1764{
1765 va_list ap;
1766 va_start(ap, fmt);
1767#ifdef SHARED
1768 if (!runtime) {
1769 vdprintf(2, fmt, ap);
1770 dprintf(2, "\n");
1771 ldso_fail = 1;
1772 va_end(ap);
1773 return;
1774 }
1775#endif
1776 pthread_t self = __pthread_self();
1777 if (self->dlerror_buf != (void *)-1)
1778 free(self->dlerror_buf);
1779 size_t len = vsnprintf(0, 0, fmt, ap);
1780 va_end(ap);
1781 char *buf = malloc(len+1);
1782 if (buf) {
1783 va_start(ap, fmt);
1784 vsnprintf(buf, len+1, fmt, ap);
1785 va_end(ap);
1786 } else {
1787 buf = (void *)-1;
1788 }
1789 self->dlerror_buf = buf;
1790 self->dlerror_flag = 1;
1791}