blob: 1e78a27531e06d7ca9bdc00d4645a53ac6639168 [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 Felker51e2d832011-06-18 19:48:42 -04005#include <string.h>
6#include <unistd.h>
7#include <stdint.h>
8#include <elf.h>
9#include <sys/mman.h>
10#include <limits.h>
Rich Felker51e2d832011-06-18 19:48:42 -040011#include <fcntl.h>
12#include <sys/stat.h>
13#include <errno.h>
Rich Felker18c0e022012-10-31 21:27:48 -040014#include <link.h>
Rich Felker6b3d5e52011-06-26 17:39:17 -040015#include <setjmp.h>
Rich Felker59ab43f2011-06-26 19:23:28 -040016#include <pthread.h>
Rich Felker2719cc82011-08-16 00:24:36 -040017#include <ctype.h>
Rich Felker59ab43f2011-06-26 19:23:28 -040018#include <dlfcn.h>
Rich Felker8431d792012-10-04 16:35:46 -040019#include "pthread_impl.h"
20#include "libc.h"
Rich Felker51e2d832011-06-18 19:48:42 -040021
Rich Felkera9e85c02012-03-23 00:28:20 -040022static int errflag;
Rich Felkera5d10eb2012-04-23 12:03:31 -040023static char errbuf[128];
Rich Felkera9e85c02012-03-23 00:28:20 -040024
Rich Felkere864a292012-07-11 01:47:30 -040025#ifdef SHARED
Rich Felkera9e85c02012-03-23 00:28:20 -040026
Rich Felker51e2d832011-06-18 19:48:42 -040027#if ULONG_MAX == 0xffffffff
28typedef Elf32_Ehdr Ehdr;
29typedef Elf32_Phdr Phdr;
30typedef Elf32_Sym Sym;
31#define R_TYPE(x) ((x)&255)
32#define R_SYM(x) ((x)>>8)
33#else
34typedef Elf64_Ehdr Ehdr;
35typedef Elf64_Phdr Phdr;
36typedef Elf64_Sym Sym;
37#define R_TYPE(x) ((x)&0xffffffff)
38#define R_SYM(x) ((x)>>32)
39#endif
40
Rich Felkercf3fd3d2012-10-06 01:22:51 -040041#define MAXP2(a,b) (-(-(a)&-(b)))
42#define ALIGN(x,y) ((x)+(y)-1 & -(y))
43
Rich Felker3ec8d292012-04-25 00:05:42 -040044struct debug {
45 int ver;
46 void *head;
47 void (*bp)(void);
48 int state;
49 void *base;
50};
51
52struct dso {
53 unsigned char *base;
54 char *name;
Rich Felker51e2d832011-06-18 19:48:42 -040055 size_t *dynv;
Rich Felker3ec8d292012-04-25 00:05:42 -040056 struct dso *next, *prev;
57
Rich Felker18c0e022012-10-31 21:27:48 -040058 Phdr *phdr;
59 int phnum;
Timo Teräs87691962014-03-25 20:59:50 +020060 size_t phentsize;
Rich Felker3ec8d292012-04-25 00:05:42 -040061 int refcnt;
Rich Felker51e2d832011-06-18 19:48:42 -040062 Sym *syms;
Rich Felker596d60c2011-06-18 22:52:01 -040063 uint32_t *hashtab;
Rich Felker2bd05a42012-08-25 17:13:28 -040064 uint32_t *ghashtab;
Rich Felker72482f92013-08-08 16:10:35 -040065 int16_t *versym;
Rich Felker51e2d832011-06-18 19:48:42 -040066 char *strings;
Rich Felker51e2d832011-06-18 19:48:42 -040067 unsigned char *map;
68 size_t map_len;
69 dev_t dev;
70 ino_t ino;
Rich Felker6343ac82012-06-09 21:20:44 -040071 signed char global;
Rich Felker700a8152012-02-07 20:29:29 -050072 char relocated;
73 char constructed;
Rich Felkera897a202013-08-23 13:56:30 -040074 char kernel_mapped;
Rich Felker709355e2013-08-23 11:15:40 -040075 struct dso **deps, *needed_by;
Rich Felkera897a202013-08-23 13:56:30 -040076 char *rpath_orig, *rpath;
Rich Felkerbc6a35f2012-10-04 20:04:13 -040077 void *tls_image;
Rich Felker9c748562012-10-04 22:48:33 -040078 size_t tls_len, tls_size, tls_align, tls_id, tls_offset;
Timo Teräse13a2b82014-03-25 14:13:27 +020079 size_t relro_start, relro_end;
Rich Felkerdcd60372012-10-05 11:51:50 -040080 void **new_dtv;
81 unsigned char *new_tls;
82 int new_dtv_idx, new_tls_idx;
Rich Felkerf4f77c02012-10-05 13:09:09 -040083 struct dso *fini_next;
Rich Felker5c1909a2012-05-27 16:01:44 -040084 char *shortname;
Rich Felker6b3d5e52011-06-26 17:39:17 -040085 char buf[];
Rich Felker51e2d832011-06-18 19:48:42 -040086};
87
Rich Felker9c748562012-10-04 22:48:33 -040088struct symdef {
89 Sym *sym;
90 struct dso *dso;
91};
92
Rich Felkeradf94c12014-06-18 02:44:02 -040093enum {
94 REL_ERR,
95 REL_SYMBOLIC,
96 REL_GOT,
97 REL_PLT,
98 REL_RELATIVE,
99 REL_OFFSET,
100 REL_OFFSET32,
101 REL_COPY,
102 REL_SYM_OR_REL,
103 REL_TLS, /* everything past here is TLS */
104 REL_DTPMOD,
105 REL_DTPOFF,
106 REL_TPOFF,
107 REL_TPOFF_NEG,
108};
109
Rich Felker59f40862012-08-05 13:46:39 -0400110#include "reloc.h"
111
Rich Felkerdab441a2014-03-24 16:57:11 -0400112int __init_tp(void *);
Rich Felker75863602013-07-21 03:00:54 -0400113void __init_libc(char **, char *);
Rich Felker60872cf2012-04-24 18:07:59 -0400114
Rich Felker179ab5a2013-12-01 17:27:25 -0500115const char *__libc_get_version(void);
116
Rich Felkere23d3582012-10-13 23:25:20 -0400117static struct dso *head, *tail, *ldso, *fini_head;
Rich Felker709355e2013-08-23 11:15:40 -0400118static char *env_path, *sys_path;
Rich Felker18c0e022012-10-31 21:27:48 -0400119static unsigned long long gencnt;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400120static int runtime;
Rich Felker5c1909a2012-05-27 16:01:44 -0400121static int ldd_mode;
Rich Felker04109502012-08-18 16:00:23 -0400122static int ldso_fail;
Rich Felker4d07e552013-01-23 22:07:45 -0500123static int noload;
Rich Felker17276be2013-07-24 02:38:05 -0400124static jmp_buf *rtld_fail;
Rich Felker59ab43f2011-06-26 19:23:28 -0400125static pthread_rwlock_t lock;
Rich Felker3ec8d292012-04-25 00:05:42 -0400126static struct debug debug;
Rich Felkerc62b9f32012-10-14 19:56:50 -0400127static size_t tls_cnt, tls_offset, tls_align = 4*sizeof(size_t);
Rich Felkerf4f77c02012-10-05 13:09:09 -0400128static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
Rich Felkerdab441a2014-03-24 16:57:11 -0400129static long long builtin_tls[(sizeof(struct pthread) + 64)/sizeof(long long)];
Rich Felker3ec8d292012-04-25 00:05:42 -0400130
131struct debug *_dl_debug_addr = &debug;
Rich Felker51e2d832011-06-18 19:48:42 -0400132
Rich Felker0a96a372012-10-07 21:43:46 -0400133#define AUX_CNT 38
Rich Felker51e2d832011-06-18 19:48:42 -0400134#define DYN_CNT 34
135
136static void decode_vec(size_t *v, size_t *a, size_t cnt)
137{
138 memset(a, 0, cnt*sizeof(size_t));
139 for (; v[0]; v+=2) if (v[0]<cnt) {
140 a[0] |= 1ULL<<v[0];
141 a[v[0]] = v[1];
142 }
143}
144
Rich Felker2bd05a42012-08-25 17:13:28 -0400145static int search_vec(size_t *v, size_t *r, size_t key)
146{
147 for (; v[0]!=key; v+=2)
148 if (!v[0]) return 0;
149 *r = v[1];
150 return 1;
151}
152
Rich Felker7c73cac2014-06-18 03:05:42 -0400153static void error(const char *fmt, ...)
154{
155 va_list ap;
156 va_start(ap, fmt);
157 vsnprintf(errbuf, sizeof errbuf, fmt, ap);
158 va_end(ap);
159 if (runtime) longjmp(*rtld_fail, 1);
160 dprintf(2, "%s\n", errbuf);
161 ldso_fail = 1;
162}
163
Rich Felker2bd05a42012-08-25 17:13:28 -0400164static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400165{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500166 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400167 uint_fast32_t h = 0;
168 while (*s) {
169 h = 16*h + *s++;
170 h ^= h>>24 & 0xf0;
171 }
172 return h & 0xfffffff;
173}
174
Rich Felker2bd05a42012-08-25 17:13:28 -0400175static uint32_t gnu_hash(const char *s0)
176{
177 const unsigned char *s = (void *)s0;
178 uint_fast32_t h = 5381;
179 for (; *s; s++)
180 h = h*33 + *s;
181 return h;
182}
183
184static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400185{
186 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400187 Sym *syms = dso->syms;
188 uint32_t *hashtab = dso->hashtab;
189 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400190 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400191 if ((!dso->versym || dso->versym[i] >= 0)
192 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400193 return syms+i;
194 }
195 return 0;
196}
197
Rich Felker2bd05a42012-08-25 17:13:28 -0400198static Sym *gnu_lookup(const char *s, uint32_t h1, struct dso *dso)
199{
Rich Felker72482f92013-08-08 16:10:35 -0400200 Sym *syms = dso->syms;
201 char *strings = dso->strings;
Rich Felker2bd05a42012-08-25 17:13:28 -0400202 uint32_t *hashtab = dso->ghashtab;
203 uint32_t nbuckets = hashtab[0];
204 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
205 uint32_t h2;
206 uint32_t *hashval;
Rich Felker72482f92013-08-08 16:10:35 -0400207 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400208
Rich Felker72482f92013-08-08 16:10:35 -0400209 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400210
Rich Felker72482f92013-08-08 16:10:35 -0400211 hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400212
Rich Felker72482f92013-08-08 16:10:35 -0400213 for (h1 |= 1; ; i++) {
Rich Felker2bd05a42012-08-25 17:13:28 -0400214 h2 = *hashval++;
Rich Felker72482f92013-08-08 16:10:35 -0400215 if ((!dso->versym || dso->versym[i] >= 0)
216 && (h1 == (h2|1)) && !strcmp(s, strings + syms[i].st_name))
217 return syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400218 if (h2 & 1) break;
219 }
220
221 return 0;
222}
223
Rich Felker9c748562012-10-04 22:48:33 -0400224#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 -0400225#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400226
Rich Felker9c748562012-10-04 22:48:33 -0400227static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400228{
Rich Felker2bd05a42012-08-25 17:13:28 -0400229 uint32_t h = 0, gh = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400230 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400231 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400232 Sym *sym;
233 if (!dso->global) continue;
Rich Felker2bd05a42012-08-25 17:13:28 -0400234 if (dso->ghashtab) {
235 if (!gh) gh = gnu_hash(s);
236 sym = gnu_lookup(s, gh, dso);
237 } else {
238 if (!h) h = sysv_hash(s);
239 sym = sysv_lookup(s, h, dso);
240 }
Rich Felkerbd174312012-10-06 01:36:11 -0400241 if (!sym) continue;
242 if (!sym->st_shndx)
243 if (need_def || (sym->st_info&0xf) == STT_TLS)
244 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 Felkeradf94c12014-06-18 02:44:02 -0400259#define NO_INLINE_ADDEND (1<<REL_COPY | 1<<REL_GOT | 1<<REL_PLT)
260
Rich Felker87d13a42012-08-05 02:49:02 -0400261static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400262{
Rich Felker87d13a42012-08-05 02:49:02 -0400263 unsigned char *base = dso->base;
264 Sym *syms = dso->syms;
265 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400266 Sym *sym;
267 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400268 void *ctx;
Rich Felkeradf94c12014-06-18 02:44:02 -0400269 int astype, type;
Rich Felker51e2d832011-06-18 19:48:42 -0400270 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400271 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400272 size_t *reloc_addr;
273 size_t sym_val;
274 size_t tls_val;
275 size_t addend;
Rich Felker51e2d832011-06-18 19:48:42 -0400276
277 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felkeradf94c12014-06-18 02:44:02 -0400278 astype = R_TYPE(rel[1]);
279 if (!astype) continue;
280 type = remap_rel(astype);
281 if (!type) {
Rich Felker7c73cac2014-06-18 03:05:42 -0400282 error(errbuf, sizeof errbuf,
Rich Felkeradf94c12014-06-18 02:44:02 -0400283 "Error relocating %s: unsupported relocation type %d",
284 dso->name, astype);
Rich Felkeradf94c12014-06-18 02:44:02 -0400285 continue;
286 }
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 Felker7c73cac2014-06-18 03:05:42 -0400296 error(errbuf, sizeof errbuf,
Rich Felkera5d10eb2012-04-23 12:03:31 -0400297 "Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400298 dso->name, name);
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
307 addend = stride>2 ? rel[2]
308 : (1<<type & NO_INLINE_ADDEND) ? 0
309 : *reloc_addr;
310
311 sym_val = def.sym ? (size_t)def.dso->base+def.sym->st_value : 0;
312 tls_val = def.sym ? def.sym->st_value : 0;
313
314 switch(type) {
315 case REL_OFFSET:
316 addend -= (size_t)reloc_addr;
317 case REL_SYMBOLIC:
318 case REL_GOT:
319 case REL_PLT:
320 *reloc_addr = sym_val + addend;
321 break;
322 case REL_RELATIVE:
323 *reloc_addr = (size_t)base + addend;
324 break;
325 case REL_SYM_OR_REL:
326 if (sym) *reloc_addr = sym_val + addend;
327 else *reloc_addr = (size_t)base + addend;
328 break;
329 case REL_COPY:
330 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
331 break;
332 case REL_OFFSET32:
333 *(uint32_t *)reloc_addr = sym_val + addend
334 - (size_t)reloc_addr;
335 break;
336 case REL_DTPMOD:
337 *reloc_addr = def.dso->tls_id;
338 break;
339 case REL_DTPOFF:
340 *reloc_addr = tls_val + addend;
341 break;
342#ifdef TLS_ABOVE_TP
343 case REL_TPOFF:
344 *reloc_addr = tls_val + def.dso->tls_offset + TPOFF_K + addend;
345 break;
346#else
347 case REL_TPOFF:
348 *reloc_addr = tls_val - def.dso->tls_offset + addend;
349 break;
350 case REL_TPOFF_NEG:
351 *reloc_addr = def.dso->tls_offset - tls_val + addend;
352 break;
353#endif
354 }
Rich Felker51e2d832011-06-18 19:48:42 -0400355 }
356}
357
Rich Felker6717e622011-06-28 19:40:14 -0400358/* A huge hack: to make up for the wastefulness of shared libraries
359 * needing at least a page of dirty memory even if they have no global
360 * data, we reclaim the gaps at the beginning and end of writable maps
361 * and "donate" them to the heap by setting up minimal malloc
362 * structures and then freeing them. */
363
Timo Teräse13a2b82014-03-25 14:13:27 +0200364static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400365{
366 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200367 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
368 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400369 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
370 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
371 if (start>end || end-start < 4*sizeof(size_t)) return;
Timo Teräse13a2b82014-03-25 14:13:27 +0200372 a = (size_t *)(dso->base + start);
373 z = (size_t *)(dso->base + end);
Rich Felker6717e622011-06-28 19:40:14 -0400374 a[-2] = 1;
375 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
376 z[1] = 1;
377 free(a);
378}
379
Timo Teräs87691962014-03-25 20:59:50 +0200380static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400381{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400382 Phdr *ph = dso->phdr;
383 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200384
Rich Felkerfa7248c2014-03-25 16:21:50 -0400385 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400386 if (ph->p_type!=PT_LOAD) continue;
387 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200388 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
389 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400390 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
391 }
392}
393
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400394static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400395{
Rich Felker59633c72011-06-25 12:26:08 -0400396 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400397 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400398 size_t phsize;
399 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
400 size_t this_min, this_max;
401 off_t off_start;
402 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400403 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400404 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400405 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400406 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400407 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400408 size_t i;
409
410 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400411 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400412 if (l<0) return 0;
413 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
414 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400415 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400416 if (phsize > sizeof buf - sizeof *eh) {
417 allocated_buf = malloc(phsize);
418 if (!allocated_buf) return 0;
419 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
420 if (l < 0) goto error;
421 if (l != phsize) goto noexec;
422 ph = ph0 = allocated_buf;
423 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400424 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400425 if (l < 0) goto error;
426 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400427 ph = ph0 = (void *)(buf + 1);
428 } else {
429 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400430 }
Rich Felker51e2d832011-06-18 19:48:42 -0400431 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400432 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400433 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400434 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400435 tls_image = ph->p_vaddr;
436 dso->tls_align = ph->p_align;
437 dso->tls_len = ph->p_filesz;
438 dso->tls_size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200439 } else if (ph->p_type == PT_GNU_RELRO) {
440 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
441 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400442 }
Rich Felker51e2d832011-06-18 19:48:42 -0400443 if (ph->p_type != PT_LOAD) continue;
444 if (ph->p_vaddr < addr_min) {
445 addr_min = ph->p_vaddr;
446 off_start = ph->p_offset;
447 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
448 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
449 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
450 }
451 if (ph->p_vaddr+ph->p_memsz > addr_max) {
452 addr_max = ph->p_vaddr+ph->p_memsz;
453 }
454 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400455 if (!dyn) goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400456 addr_max += PAGE_SIZE-1;
457 addr_max &= -PAGE_SIZE;
458 addr_min &= -PAGE_SIZE;
459 off_start &= -PAGE_SIZE;
460 map_len = addr_max - addr_min + off_start;
461 /* The first time, we map too much, possibly even more than
462 * the length of the file. This is okay because we will not
463 * use the invalid part; we just need to reserve the right
464 * amount of virtual address space to map over later. */
Rich Felkerbf301002011-06-28 14:20:41 -0400465 map = mmap((void *)addr_min, map_len, prot, MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400466 if (map==MAP_FAILED) goto error;
Rich Felker339516a2013-07-31 14:42:08 -0400467 /* If the loaded file is not relocatable and the requested address is
468 * not available, then the load operation must fail. */
469 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
470 errno = EBUSY;
471 goto error;
472 }
Rich Felker51e2d832011-06-18 19:48:42 -0400473 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400474 dso->phdr = 0;
475 dso->phnum = 0;
476 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400477 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400478 /* Check if the programs headers are in this load segment, and
479 * if so, record the address for use by dl_iterate_phdr. */
480 if (!dso->phdr && eh->e_phoff >= ph->p_offset
481 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
482 dso->phdr = (void *)(base + ph->p_vaddr
483 + (eh->e_phoff-ph->p_offset));
484 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200485 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400486 }
Rich Felker51e2d832011-06-18 19:48:42 -0400487 /* Reuse the existing mapping for the lowest-address LOAD */
488 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min) continue;
489 this_min = ph->p_vaddr & -PAGE_SIZE;
490 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
491 off_start = ph->p_offset & -PAGE_SIZE;
492 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
493 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
494 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400495 if (mmap(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED)
496 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400497 if (ph->p_memsz > ph->p_filesz) {
498 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
499 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
500 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400501 if (pgbrk-(size_t)base < this_max && mmap((void *)pgbrk, (size_t)base+this_max-pgbrk, prot, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) == MAP_FAILED)
502 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400503 }
504 }
Rich Felker9f174132011-06-29 00:29:08 -0400505 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
506 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400507 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC) < 0)
508 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400509 break;
510 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400511 dso->map = map;
512 dso->map_len = map_len;
513 dso->base = base;
514 dso->dynv = (void *)(base+dyn);
515 if (dso->tls_size) dso->tls_image = (void *)(base+tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200516 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400517 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400518 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400519noexec:
520 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400521error:
Rich Felkerd5884a52013-08-02 09:56:49 -0400522 if (map!=MAP_FAILED) munmap(map, map_len);
523 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400524 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400525}
526
Rich Felker8c203ea2013-04-20 11:51:58 -0400527static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400528{
Rich Felker8c203ea2013-04-20 11:51:58 -0400529 size_t l;
530 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400531 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400532 s += strspn(s, ":\n");
533 l = strcspn(s, ":\n");
534 if (l-1 >= INT_MAX) return -1;
535 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) >= buf_size)
536 continue;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400537 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
Rich Felker49388f32011-06-25 17:49:16 -0400538 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400539 }
Rich Felker568b8072011-06-25 01:56:34 -0400540}
541
Rich Felkera897a202013-08-23 13:56:30 -0400542static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
543{
544 size_t n, l;
545 const char *s, *t, *origin;
546 char *d;
547 if (p->rpath) return 0;
548 if (!p->rpath_orig) return -1;
549 if (!strchr(p->rpath_orig, '$')) {
550 p->rpath = p->rpath_orig;
551 return 0;
552 }
553 n = 0;
554 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400555 while ((t=strchr(s, '$'))) {
556 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
557 return -1;
Rich Felkera897a202013-08-23 13:56:30 -0400558 s = t+1;
559 n++;
560 }
561 if (n > SSIZE_MAX/PATH_MAX) return -1;
562
563 if (p->kernel_mapped) {
564 /* $ORIGIN searches cannot be performed for the main program
565 * when it is suid/sgid/AT_SECURE. This is because the
566 * pathname is under the control of the caller of execve.
567 * For libraries, however, $ORIGIN can be processed safely
568 * since the library's pathname came from a trusted source
569 * (either system paths or a call to dlopen). */
570 if (libc.secure)
571 return -1;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400572 l = readlink("/proc/self/exe", buf, buf_size);
573 if (l >= buf_size)
Rich Felkera897a202013-08-23 13:56:30 -0400574 return -1;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400575 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400576 origin = buf;
577 } else {
578 origin = p->name;
579 }
580 t = strrchr(origin, '/');
581 l = t ? t-origin : 0;
582 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
583 if (!p->rpath) return -1;
584
585 d = p->rpath;
586 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400587 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400588 memcpy(d, s, t-s);
589 d += t-s;
590 memcpy(d, origin, l);
591 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400592 /* It was determined previously that the '$' is followed
593 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400594 s = t + 7 + 2*(t[1]=='{');
595 }
596 strcpy(d, s);
597 return 0;
598}
599
Rich Felkerc82f4a32012-01-23 00:57:38 -0500600static void decode_dyn(struct dso *p)
601{
602 size_t dyn[DYN_CNT] = {0};
603 decode_vec(p->dynv, dyn, DYN_CNT);
604 p->syms = (void *)(p->base + dyn[DT_SYMTAB]);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500605 p->strings = (void *)(p->base + dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400606 if (dyn[0]&(1<<DT_HASH))
607 p->hashtab = (void *)(p->base + dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400608 if (dyn[0]&(1<<DT_RPATH))
Rich Felkera897a202013-08-23 13:56:30 -0400609 p->rpath_orig = (void *)(p->strings + dyn[DT_RPATH]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400610 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
611 p->ghashtab = (void *)(p->base + *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400612 if (search_vec(p->dynv, dyn, DT_VERSYM))
613 p->versym = (void *)(p->base + *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500614}
615
Rich Felker709355e2013-08-23 11:15:40 -0400616static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400617{
Rich Felker5c1909a2012-05-27 16:01:44 -0400618 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400619 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500620 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400621 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400622 int fd;
623 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400624 size_t alloc_size;
625 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400626 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400627
628 /* Catch and block attempts to reload the implementation itself */
629 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
630 static const char *rp, reserved[] =
631 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
632 char *z = strchr(name, '.');
633 if (z) {
634 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400635 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400636 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400637 if (ldd_mode) {
638 /* Track which names have been resolved
639 * and only report each one once. */
640 static unsigned reported;
641 unsigned mask = 1U<<(rp-reserved);
642 if (!(reported & mask)) {
643 reported |= mask;
644 dprintf(1, "\t%s => %s (%p)\n",
645 name, ldso->name,
646 ldso->base);
647 }
648 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400649 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400650 }
651 }
652 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400653 if (!strcmp(name, ldso->name)) is_self = 1;
654 if (is_self) {
655 if (!ldso->prev) {
656 tail->next = ldso;
657 ldso->prev = tail;
658 tail = ldso->next ? ldso->next : ldso;
659 }
660 return ldso;
661 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400662 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400663 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400664 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400665 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400666 /* Search for the name to see if it's already loaded */
667 for (p=head->next; p; p=p->next) {
668 if (p->shortname && !strcmp(p->shortname, name)) {
669 p->refcnt++;
670 return p;
671 }
672 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400673 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400674 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400675 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker709355e2013-08-23 11:15:40 -0400676 for (p=needed_by; fd < 0 && p; p=p->needed_by)
Rich Felkera897a202013-08-23 13:56:30 -0400677 if (!fixup_rpath(p, buf, sizeof buf))
Rich Felker709355e2013-08-23 11:15:40 -0400678 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker568b8072011-06-25 01:56:34 -0400679 if (fd < 0) {
680 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400681 char *prefix = 0;
682 size_t prefix_len;
683 if (ldso->name[0]=='/') {
684 char *s, *t, *z;
685 for (s=t=z=ldso->name; *s; s++)
686 if (*s=='/') z=t, t=s;
687 prefix_len = z-ldso->name;
688 if (prefix_len < PATH_MAX)
689 prefix = ldso->name;
690 }
691 if (!prefix) {
692 prefix = "";
693 prefix_len = 0;
694 }
695 char etc_ldso_path[prefix_len + 1
696 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
697 snprintf(etc_ldso_path, sizeof etc_ldso_path,
698 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
699 (int)prefix_len, prefix);
700 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400701 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400702 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400703 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400704 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500705 }
Rich Felker568b8072011-06-25 01:56:34 -0400706 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400707 } else if (errno != ENOENT) {
708 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400709 }
710 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500711 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
712 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400713 }
Rich Felker0420b872012-07-11 01:41:20 -0400714 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400715 }
716 if (fd < 0) return 0;
717 if (fstat(fd, &st) < 0) {
718 close(fd);
719 return 0;
720 }
721 for (p=head->next; p; p=p->next) {
722 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -0400723 /* If this library was previously loaded with a
724 * pathname but a search found the same inode,
725 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -0400726 if (!p->shortname && pathname != name)
727 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -0400728 close(fd);
729 p->refcnt++;
730 return p;
731 }
732 }
Rich Felker4d07e552013-01-23 22:07:45 -0500733 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -0400734 close(fd);
735 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -0400736
737 /* Allocate storage for the new DSO. When there is TLS, this
738 * storage must include a reservation for all pre-existing
739 * threads to obtain copies of both the new TLS, and an
740 * extended DTV capable of storing an additional slot for
741 * the newly-loaded DSO. */
742 alloc_size = sizeof *p + strlen(pathname) + 1;
743 if (runtime && temp_dso.tls_image) {
744 size_t per_th = temp_dso.tls_size + temp_dso.tls_align
745 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -0400746 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400747 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
748 else alloc_size += n_th * per_th;
749 }
750 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -0400751 if (!p) {
Rich Felker74025c82013-02-02 00:59:25 -0500752 munmap(map, temp_dso.map_len);
Rich Felker51e2d832011-06-18 19:48:42 -0400753 return 0;
754 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400755 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500756 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -0400757 p->dev = st.st_dev;
758 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -0400759 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -0400760 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400761 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -0400762 strcpy(p->name, pathname);
763 /* Add a shortname only if name arg was not an explicit pathname. */
764 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400765 if (p->tls_image) {
Rich Felkerdab441a2014-03-24 16:57:11 -0400766 if (runtime && !libc.has_thread_pointer) {
Rich Felker74025c82013-02-02 00:59:25 -0500767 munmap(map, p->map_len);
Rich Felker92e1cd92012-10-06 16:56:35 -0400768 free(p);
Rich Felkerdab441a2014-03-24 16:57:11 -0400769 errno = ENOSYS;
Rich Felker92e1cd92012-10-06 16:56:35 -0400770 return 0;
771 }
Rich Felkerdcd60372012-10-05 11:51:50 -0400772 p->tls_id = ++tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400773 tls_align = MAXP2(tls_align, p->tls_align);
Rich Felker9ec42832012-10-15 18:51:53 -0400774#ifdef TLS_ABOVE_TP
775 p->tls_offset = tls_offset + ( (tls_align-1) &
776 -(tls_offset + (uintptr_t)p->tls_image) );
777 tls_offset += p->tls_size;
778#else
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400779 tls_offset += p->tls_size + p->tls_align - 1;
780 tls_offset -= (tls_offset + (uintptr_t)p->tls_image)
781 & (p->tls_align-1);
782 p->tls_offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -0400783#endif
Rich Felkerdcd60372012-10-05 11:51:50 -0400784 p->new_dtv = (void *)(-sizeof(size_t) &
785 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
786 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
787 }
Rich Felker51e2d832011-06-18 19:48:42 -0400788
789 tail->next = p;
790 p->prev = tail;
791 tail = p;
792
Rich Felker1d7c4f82012-12-15 23:34:08 -0500793 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -0400794
Rich Felker51e2d832011-06-18 19:48:42 -0400795 return p;
796}
797
798static void load_deps(struct dso *p)
799{
Rich Felker59ab43f2011-06-26 19:23:28 -0400800 size_t i, ndeps=0;
801 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -0400802 for (; p; p=p->next) {
803 for (i=0; p->dynv[i]; i+=2) {
804 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -0400805 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -0400806 if (!dep) {
Rich Felker7c73cac2014-06-18 03:05:42 -0400807 error(errbuf, sizeof errbuf,
Rich Felkera5d10eb2012-04-23 12:03:31 -0400808 "Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -0400809 p->strings + p->dynv[i+1], p->name);
Rich Felker04109502012-08-18 16:00:23 -0400810 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400811 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400812 if (runtime) {
813 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -0400814 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -0400815 tmp[ndeps++] = dep;
816 tmp[ndeps] = 0;
817 *deps = tmp;
818 }
Rich Felker51e2d832011-06-18 19:48:42 -0400819 }
820 }
821}
822
Rich Felker2719cc82011-08-16 00:24:36 -0400823static void load_preload(char *s)
824{
825 int tmp;
826 char *z;
827 for (z=s; *z; s=z) {
828 for ( ; *s && isspace(*s); s++);
829 for (z=s; *z && !isspace(*z); z++);
830 tmp = *z;
831 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -0400832 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -0400833 *z = tmp;
834 }
835}
836
Rich Felker59ab43f2011-06-26 19:23:28 -0400837static void make_global(struct dso *p)
838{
839 for (; p; p=p->next) p->global = 1;
840}
841
Rich Felker51e2d832011-06-18 19:48:42 -0400842static void reloc_all(struct dso *p)
843{
844 size_t dyn[DYN_CNT] = {0};
845 for (; p; p=p->next) {
846 if (p->relocated) continue;
847 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerbabf8202012-08-05 12:50:26 -0400848#ifdef NEED_ARCH_RELOCS
849 do_arch_relocs(p, head);
850#endif
Rich Felker87d13a42012-08-05 02:49:02 -0400851 do_relocs(p, (void *)(p->base+dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
852 2+(dyn[DT_PLTREL]==DT_RELA));
853 do_relocs(p, (void *)(p->base+dyn[DT_REL]), dyn[DT_RELSZ], 2);
854 do_relocs(p, (void *)(p->base+dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +0200855
856 if (p->relro_start != p->relro_end &&
857 mprotect(p->base+p->relro_start, p->relro_end-p->relro_start, PROT_READ) < 0) {
Rich Felker7c73cac2014-06-18 03:05:42 -0400858 error(errbuf, sizeof errbuf,
Rich Felker436d3722014-03-25 16:23:27 -0400859 "Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +0200860 p->name);
Timo Teräse13a2b82014-03-25 14:13:27 +0200861 }
862
Rich Felker368ba4a2011-06-25 00:18:19 -0400863 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400864 }
865}
866
Timo Teräs87691962014-03-25 20:59:50 +0200867static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -0500868{
Timo Teräs87691962014-03-25 20:59:50 +0200869 size_t min_addr = -1, max_addr = 0, cnt;
870 Phdr *ph = p->phdr;
871 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
872 if (ph->p_type == PT_DYNAMIC) {
873 p->dynv = (void *)(p->base + ph->p_vaddr);
874 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +0200875 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
876 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
877 }
Rich Felkerf419bcb2012-08-26 21:09:26 -0400878 if (ph->p_type != PT_LOAD) continue;
879 if (ph->p_vaddr < min_addr)
880 min_addr = ph->p_vaddr;
881 if (ph->p_vaddr+ph->p_memsz > max_addr)
882 max_addr = ph->p_vaddr+ph->p_memsz;
883 }
884 min_addr &= -PAGE_SIZE;
885 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
886 p->map = p->base + min_addr;
887 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +0200888 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -0400889}
890
Rich Felkerf4f77c02012-10-05 13:09:09 -0400891static void do_fini()
892{
893 struct dso *p;
894 size_t dyn[DYN_CNT] = {0};
895 for (p=fini_head; p; p=p->fini_next) {
896 if (!p->constructed) continue;
897 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -0400898 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
899 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker1b413572013-07-21 02:35:46 -0400900 size_t *fn = (size_t *)(p->base + dyn[DT_FINI_ARRAY])+n;
901 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -0400902 }
Rich Felker1da53da2013-07-22 14:08:33 -0400903#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -0400904 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felkere69ae842013-07-20 18:26:17 -0400905 ((void (*)(void))(p->base + dyn[DT_FINI]))();
Rich Felker1da53da2013-07-22 14:08:33 -0400906#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -0400907 }
908}
909
Rich Felker4ce3cb52012-02-06 14:39:09 -0500910static void do_init_fini(struct dso *p)
911{
912 size_t dyn[DYN_CNT] = {0};
Rich Felkere23d3582012-10-13 23:25:20 -0400913 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400914 /* Allow recursive calls that arise when a library calls
915 * dlopen from one of its constructors, but block any
916 * other threads until all ctors have finished. */
917 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -0500918 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -0400919 if (p->constructed) continue;
920 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -0500921 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -0400922 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -0400923 p->fini_next = fini_head;
924 fini_head = p;
925 }
Rich Felker1da53da2013-07-22 14:08:33 -0400926#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -0400927 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker4ce3cb52012-02-06 14:39:09 -0500928 ((void (*)(void))(p->base + dyn[DT_INIT]))();
Rich Felker1da53da2013-07-22 14:08:33 -0400929#endif
Rich Felkere69ae842013-07-20 18:26:17 -0400930 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
931 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
932 size_t *fn = (void *)(p->base + dyn[DT_INIT_ARRAY]);
933 while (n--) ((void (*)(void))*fn++)();
934 }
Rich Felker509b50e2013-06-29 02:24:02 -0400935 if (!need_locking && libc.threads_minus_1) {
936 need_locking = 1;
937 pthread_mutex_lock(&init_fini_lock);
938 }
Rich Felker4ce3cb52012-02-06 14:39:09 -0500939 }
Rich Felkerf4f77c02012-10-05 13:09:09 -0400940 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -0500941}
942
Rich Felker3ec8d292012-04-25 00:05:42 -0400943void _dl_debug_state(void)
944{
945}
946
Rich Felker7c6c2902013-08-03 16:27:30 -0400947void __reset_tls()
948{
949 pthread_t self = __pthread_self();
950 struct dso *p;
951 for (p=head; p; p=p->next) {
952 if (!p->tls_id || !self->dtv[p->tls_id]) continue;
953 memcpy(self->dtv[p->tls_id], p->tls_image, p->tls_len);
954 memset((char *)self->dtv[p->tls_id]+p->tls_len, 0,
955 p->tls_size - p->tls_len);
956 if (p->tls_id == (size_t)self->dtv[0]) break;
957 }
958}
959
Rich Felkerdcd60372012-10-05 11:51:50 -0400960void *__copy_tls(unsigned char *mem)
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400961{
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400962 pthread_t td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400963 struct dso *p;
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400964
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400965 void **dtv = (void *)mem;
Rich Felkerdcd60372012-10-05 11:51:50 -0400966 dtv[0] = (void *)tls_cnt;
Rich Felkerdab441a2014-03-24 16:57:11 -0400967 if (!tls_cnt) {
968 td = (void *)(dtv+1);
969 td->dtv = dtv;
970 return td;
971 }
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400972
Rich Felker9ec42832012-10-15 18:51:53 -0400973#ifdef TLS_ABOVE_TP
974 mem += sizeof(void *) * (tls_cnt+1);
975 mem += -((uintptr_t)mem + sizeof(struct pthread)) & (tls_align-1);
976 td = (pthread_t)mem;
977 mem += sizeof(struct pthread);
978
979 for (p=head; p; p=p->next) {
980 if (!p->tls_id) continue;
981 dtv[p->tls_id] = mem + p->tls_offset;
982 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
983 }
984#else
Rich Felkere23d3582012-10-13 23:25:20 -0400985 mem += libc.tls_size - sizeof(struct pthread);
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400986 mem -= (uintptr_t)mem & (tls_align-1);
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400987 td = (pthread_t)mem;
988
989 for (p=head; p; p=p->next) {
Rich Felkerdcd60372012-10-05 11:51:50 -0400990 if (!p->tls_id) continue;
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400991 dtv[p->tls_id] = mem - p->tls_offset;
992 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400993 }
Rich Felker9ec42832012-10-15 18:51:53 -0400994#endif
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400995 td->dtv = dtv;
996 return td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400997}
998
Rich Felkerdcd60372012-10-05 11:51:50 -0400999void *__tls_get_addr(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001000{
1001 pthread_t self = __pthread_self();
Rich Felker44b4d092013-06-03 16:35:59 -04001002 if (v[0]<=(size_t)self->dtv[0] && self->dtv[v[0]])
Rich Felkerdcd60372012-10-05 11:51:50 -04001003 return (char *)self->dtv[v[0]]+v[1];
1004
1005 /* Block signals to make accessing new TLS async-signal-safe */
1006 sigset_t set;
Rich Felker00902c72012-10-06 23:57:51 -04001007 pthread_sigmask(SIG_BLOCK, SIGALL_SET, &set);
Rich Felker44b4d092013-06-03 16:35:59 -04001008 if (v[0]<=(size_t)self->dtv[0] && self->dtv[v[0]]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001009 pthread_sigmask(SIG_SETMASK, &set, 0);
1010 return (char *)self->dtv[v[0]]+v[1];
Rich Felker9b153c02012-10-04 21:01:56 -04001011 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001012
1013 /* This is safe without any locks held because, if the caller
1014 * is able to request the Nth entry of the DTV, the DSO list
1015 * must be valid at least that far out and it was synchronized
1016 * at program startup or by an already-completed call to dlopen. */
1017 struct dso *p;
1018 for (p=head; p->tls_id != v[0]; p=p->next);
1019
1020 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001021 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001022 void **newdtv = p->new_dtv +
1023 (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001024 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001025 ((size_t)self->dtv[0]+1) * sizeof(void *));
1026 newdtv[0] = (void *)v[0];
1027 self->dtv = newdtv;
1028 }
1029
1030 /* Get new TLS memory from new DSO */
1031 unsigned char *mem = p->new_tls +
1032 (p->tls_size + p->tls_align) * a_fetch_add(&p->new_tls_idx,1);
1033 mem += ((uintptr_t)p->tls_image - (uintptr_t)mem) & (p->tls_align-1);
1034 self->dtv[v[0]] = mem;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001035 memcpy(mem, p->tls_image, p->tls_len);
Rich Felkerdcd60372012-10-05 11:51:50 -04001036 pthread_sigmask(SIG_SETMASK, &set, 0);
1037 return mem + v[1];
Rich Felker9b153c02012-10-04 21:01:56 -04001038}
1039
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001040static void update_tls_size()
1041{
Rich Felker9ec42832012-10-15 18:51:53 -04001042 libc.tls_size = ALIGN(
1043 (1+tls_cnt) * sizeof(void *) +
1044 tls_offset +
1045 sizeof(struct pthread) +
1046 tls_align * 2,
1047 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001048}
1049
Rich Felkerc82f4a32012-01-23 00:57:38 -05001050void *__dynlink(int argc, char **argv)
Rich Felker51e2d832011-06-18 19:48:42 -04001051{
Rich Felker731e8ff2012-08-25 17:24:46 -04001052 size_t aux[AUX_CNT] = {0};
Rich Felker51e2d832011-06-18 19:48:42 -04001053 size_t i;
1054 Phdr *phdr;
Rich Felker6717e622011-06-28 19:40:14 -04001055 Ehdr *ehdr;
Rich Felker6ab444d2011-07-24 00:54:55 -04001056 static struct dso builtin_dsos[3];
Rich Felkera53de812011-07-24 00:26:12 -04001057 struct dso *const app = builtin_dsos+0;
1058 struct dso *const lib = builtin_dsos+1;
Rich Felker6ab444d2011-07-24 00:54:55 -04001059 struct dso *const vdso = builtin_dsos+2;
Rich Felker2719cc82011-08-16 00:24:36 -04001060 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001061 size_t vdso_base;
Rich Felker2f2f1152012-11-01 23:49:57 -04001062 size_t *auxv;
Rich Felker75863602013-07-21 03:00:54 -04001063 char **envp = argv+argc+1;
Rich Felkerdab441a2014-03-24 16:57:11 -04001064 void *initial_tls;
Rich Felker51e2d832011-06-18 19:48:42 -04001065
1066 /* Find aux vector just past environ[] */
Rich Felker568b8072011-06-25 01:56:34 -04001067 for (i=argc+1; argv[i]; i++)
1068 if (!memcmp(argv[i], "LD_LIBRARY_PATH=", 16))
1069 env_path = argv[i]+16;
Rich Felker2719cc82011-08-16 00:24:36 -04001070 else if (!memcmp(argv[i], "LD_PRELOAD=", 11))
1071 env_preload = argv[i]+11;
Rich Felker51e2d832011-06-18 19:48:42 -04001072 auxv = (void *)(argv+i+1);
1073
1074 decode_vec(auxv, aux, AUX_CNT);
1075
Rich Felker568b8072011-06-25 01:56:34 -04001076 /* Only trust user/env if kernel says we're not suid/sgid */
1077 if ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
Rich Felkera0458832011-08-16 07:46:42 -04001078 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]) {
Rich Felker568b8072011-06-25 01:56:34 -04001079 env_path = 0;
Rich Felker2719cc82011-08-16 00:24:36 -04001080 env_preload = 0;
Rich Felkera897a202013-08-23 13:56:30 -04001081 libc.secure = 1;
Rich Felker568b8072011-06-25 01:56:34 -04001082 }
Szabolcs Nagyb20760c2013-09-15 02:00:32 +00001083 libc.page_size = aux[AT_PAGESZ];
Rich Felker568b8072011-06-25 01:56:34 -04001084
Rich Felker5c1909a2012-05-27 16:01:44 -04001085 /* If the dynamic linker was invoked as a program itself, AT_BASE
1086 * will not be set. In that case, we assume the base address is
1087 * the start of the page containing the PHDRs; I don't know any
1088 * better approach... */
1089 if (!aux[AT_BASE]) {
1090 aux[AT_BASE] = aux[AT_PHDR] & -PAGE_SIZE;
1091 aux[AT_PHDR] = aux[AT_PHENT] = aux[AT_PHNUM] = 0;
1092 }
1093
Rich Felkerc82f4a32012-01-23 00:57:38 -05001094 /* The dynamic linker load address is passed by the kernel
1095 * in the AUX vector, so this is easy. */
1096 lib->base = (void *)aux[AT_BASE];
Rich Felker5c1909a2012-05-27 16:01:44 -04001097 lib->name = lib->shortname = "libc.so";
Rich Felkerc82f4a32012-01-23 00:57:38 -05001098 lib->global = 1;
1099 ehdr = (void *)lib->base;
Rich Felker18c0e022012-10-31 21:27:48 -04001100 lib->phnum = ehdr->e_phnum;
1101 lib->phdr = (void *)(aux[AT_BASE]+ehdr->e_phoff);
Timo Teräs87691962014-03-25 20:59:50 +02001102 lib->phentsize = ehdr->e_phentsize;
1103 kernel_mapped_dso(lib);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001104 decode_dyn(lib);
1105
Rich Felker5c1909a2012-05-27 16:01:44 -04001106 if (aux[AT_PHDR]) {
Rich Felker649cec52012-07-13 01:31:02 -04001107 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001108 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001109 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felker18c0e022012-10-31 21:27:48 -04001110 app->phdr = phdr = (void *)aux[AT_PHDR];
1111 app->phnum = aux[AT_PHNUM];
Timo Teräs87691962014-03-25 20:59:50 +02001112 app->phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001113 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1114 if (phdr->p_type == PT_PHDR)
1115 app->base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001116 else if (phdr->p_type == PT_INTERP)
1117 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001118 else if (phdr->p_type == PT_TLS) {
1119 tls_image = phdr->p_vaddr;
1120 app->tls_len = phdr->p_filesz;
1121 app->tls_size = phdr->p_memsz;
1122 app->tls_align = phdr->p_align;
1123 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001124 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001125 if (app->tls_size) app->tls_image = (char *)app->base + tls_image;
Rich Felker649cec52012-07-13 01:31:02 -04001126 if (interp_off) lib->name = (char *)app->base + interp_off;
Rich Felkercc515052013-08-23 14:14:47 -04001127 if ((aux[0] & (1UL<<AT_EXECFN))
1128 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
1129 app->name = (char *)aux[AT_EXECFN];
1130 else
1131 app->name = argv[0];
Timo Teräs87691962014-03-25 20:59:50 +02001132 kernel_mapped_dso(app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001133 } else {
1134 int fd;
1135 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001136 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001137 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
1138 *argv++ = (void *)-1;
Rich Felkerde451642014-04-16 12:45:36 -04001139 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1140 char *opt = argv[0]+2;
1141 *argv++ = (void *)-1;
1142 if (!*opt) {
1143 break;
1144 } else if (!memcmp(opt, "list", 5)) {
1145 ldd_mode = 1;
1146 } else if (!memcmp(opt, "library-path", 12)) {
1147 if (opt[12]=='=') env_path = opt+13;
1148 else if (opt[12]) *argv = 0;
1149 else if (*argv) env_path = *argv++;
1150 } else if (!memcmp(opt, "preload", 7)) {
1151 if (opt[7]=='=') env_preload = opt+8;
1152 else if (opt[7]) *argv = 0;
1153 else if (*argv) env_preload = *argv++;
1154 } else {
1155 argv[0] = 0;
1156 }
1157 argv[-1] = (void *)-1;
1158 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001159 if (!argv[0]) {
Rich Felker179ab5a2013-12-01 17:27:25 -05001160 dprintf(2, "musl libc\n"
1161 "Version %s\n"
1162 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001163 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001164 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001165 ldd_mode ? "" : " [args]");
1166 _exit(1);
1167 }
1168 fd = open(argv[0], O_RDONLY);
1169 if (fd < 0) {
1170 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1171 _exit(1);
1172 }
1173 runtime = 1;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001174 ehdr = (void *)map_library(fd, app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001175 if (!ehdr) {
1176 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1177 _exit(1);
1178 }
1179 runtime = 0;
1180 close(fd);
Rich Felker649cec52012-07-13 01:31:02 -04001181 lib->name = ldname;
Rich Felker0420b872012-07-11 01:41:20 -04001182 app->name = argv[0];
Rich Felker876748e2013-07-26 14:25:51 -04001183 aux[AT_ENTRY] = (size_t)app->base + ehdr->e_entry;
Rich Felkera97a0502013-07-26 14:41:12 -04001184 /* Find the name that would have been used for the dynamic
1185 * linker had ldd not taken its place. */
1186 if (ldd_mode) {
1187 for (i=0; i<app->phnum; i++) {
1188 if (app->phdr[i].p_type == PT_INTERP)
1189 lib->name = (void *)(app->base
1190 + app->phdr[i].p_vaddr);
1191 }
1192 dprintf(1, "\t%s (%p)\n", lib->name, lib->base);
1193 }
Rich Felkere12fe652012-01-23 02:02:59 -05001194 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001195 if (app->tls_size) {
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001196 app->tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001197#ifdef TLS_ABOVE_TP
1198 app->tls_offset = 0;
1199 tls_offset = app->tls_size
1200 + ( -((uintptr_t)app->tls_image + app->tls_size)
1201 & (app->tls_align-1) );
1202#else
Rich Felkerc62b9f32012-10-14 19:56:50 -04001203 tls_offset = app->tls_offset = app->tls_size
1204 + ( -((uintptr_t)app->tls_image + app->tls_size)
1205 & (app->tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001206#endif
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001207 tls_align = MAXP2(tls_align, app->tls_align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001208 }
Rich Felkerc82f4a32012-01-23 00:57:38 -05001209 app->global = 1;
Rich Felkerc82f4a32012-01-23 00:57:38 -05001210 decode_dyn(app);
1211
1212 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001213 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felker6ab444d2011-07-24 00:54:55 -04001214 ehdr = (void *)vdso_base;
Rich Felker18c0e022012-10-31 21:27:48 -04001215 vdso->phdr = phdr = (void *)(vdso_base + ehdr->e_phoff);
1216 vdso->phnum = ehdr->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +02001217 vdso->phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001218 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1219 if (phdr->p_type == PT_DYNAMIC)
1220 vdso->dynv = (void *)(vdso_base + phdr->p_offset);
1221 if (phdr->p_type == PT_LOAD)
1222 vdso->base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
1223 }
Rich Felker75a31fa2012-11-25 20:56:31 -05001224 vdso->name = "";
1225 vdso->shortname = "linux-gate.so.1";
Rich Felker427173b2011-07-24 02:19:47 -04001226 vdso->global = 1;
Rich Felkerc82f4a32012-01-23 00:57:38 -05001227 decode_dyn(vdso);
Rich Felker6ab444d2011-07-24 00:54:55 -04001228 vdso->prev = lib;
1229 lib->next = vdso;
1230 }
1231
Rich Felkerc82f4a32012-01-23 00:57:38 -05001232 /* Initial dso chain consists only of the app. We temporarily
1233 * append the dynamic linker/libc so we can relocate it, then
1234 * restore the initial chain in preparation for loading third
1235 * party libraries (preload/needed). */
1236 head = tail = app;
Rich Felkere23d3582012-10-13 23:25:20 -04001237 ldso = lib;
Rich Felkerc82f4a32012-01-23 00:57:38 -05001238 app->next = lib;
1239 reloc_all(lib);
1240 app->next = 0;
Rich Felker51e2d832011-06-18 19:48:42 -04001241
Rich Felkerc82f4a32012-01-23 00:57:38 -05001242 /* PAST THIS POINT, ALL LIBC INTERFACES ARE FULLY USABLE. */
Rich Felker51e2d832011-06-18 19:48:42 -04001243
Rich Felkerc82f4a32012-01-23 00:57:38 -05001244 /* Donate unused parts of app and library mapping to malloc */
Timo Teräs87691962014-03-25 20:59:50 +02001245 reclaim_gaps(app);
1246 reclaim_gaps(lib);
Rich Felker6717e622011-06-28 19:40:14 -04001247
Rich Felkerc82f4a32012-01-23 00:57:38 -05001248 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerfd7015d2012-01-23 18:32:40 -05001249 * namespace, and perform all remaining relocations. The main
1250 * program must be relocated LAST since it may contain copy
1251 * relocations which depend on libraries' relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001252 if (env_preload) load_preload(env_preload);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001253 load_deps(app);
1254 make_global(app);
Rich Felker9c748562012-10-04 22:48:33 -04001255
Timo Teräse13a2b82014-03-25 14:13:27 +02001256#ifndef DYNAMIC_IS_RO
1257 for (i=0; app->dynv[i]; i+=2)
1258 if (app->dynv[i]==DT_DEBUG)
1259 app->dynv[i+1] = (size_t)&debug;
1260#endif
1261
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001262 reloc_all(app->next);
1263 reloc_all(app);
1264
1265 update_tls_size();
Rich Felkerdab441a2014-03-24 16:57:11 -04001266 if (libc.tls_size > sizeof builtin_tls) {
1267 initial_tls = calloc(libc.tls_size, 1);
1268 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001269 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001270 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001271 _exit(127);
1272 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001273 } else {
1274 initial_tls = builtin_tls;
1275 }
1276 if (__init_tp(__copy_tls(initial_tls)) < 0 && tls_cnt) {
1277 dprintf(2, "%s: Thread-local storage not supported by kernel.\n", argv[0]);
1278 _exit(127);
Rich Felker9c748562012-10-04 22:48:33 -04001279 }
1280
Rich Felker04109502012-08-18 16:00:23 -04001281 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001282 if (ldd_mode) _exit(0);
1283
Rich Felkerc82f4a32012-01-23 00:57:38 -05001284 /* Switch to runtime mode: any further failures in the dynamic
1285 * linker are a reportable failure rather than a fatal startup
1286 * error. If the dynamic loader (dlopen) will not be used, free
1287 * all memory used by the dynamic linker. */
Rich Felkera53de812011-07-24 00:26:12 -04001288 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001289
Rich Felker3ec8d292012-04-25 00:05:42 -04001290 debug.ver = 1;
1291 debug.bp = _dl_debug_state;
1292 debug.head = head;
1293 debug.base = lib->base;
1294 debug.state = 0;
1295 _dl_debug_state();
1296
Rich Felker75863602013-07-21 03:00:54 -04001297 __init_libc(envp, argv[0]);
Rich Felkera7936f62012-11-30 17:56:23 -05001298 atexit(do_fini);
Rich Felker75863602013-07-21 03:00:54 -04001299 errno = 0;
Rich Felkera7936f62012-11-30 17:56:23 -05001300 do_init_fini(tail);
Rich Felker75863602013-07-21 03:00:54 -04001301
1302 return (void *)aux[AT_ENTRY];
Rich Felkera7936f62012-11-30 17:56:23 -05001303}
1304
Rich Felker59ab43f2011-06-26 19:23:28 -04001305void *dlopen(const char *file, int mode)
1306{
Rich Felker642b7592012-10-05 01:15:25 -04001307 struct dso *volatile p, *orig_tail, *next;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001308 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001309 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001310 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001311 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001312
1313 if (!file) return head;
1314
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001315 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001316 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001317 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001318
Rich Felkerdcd60372012-10-05 11:51:50 -04001319 p = 0;
1320 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001321 orig_tls_offset = tls_offset;
1322 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001323 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001324 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001325
Rich Felker17276be2013-07-24 02:38:05 -04001326 rtld_fail = &jb;
1327 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001328 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001329 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001330 if (p->deps[i]->global < 0)
1331 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001332 for (p=orig_tail->next; p; p=next) {
1333 next = p->next;
1334 munmap(p->map, p->map_len);
1335 free(p->deps);
1336 free(p);
1337 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001338 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001339 tls_offset = orig_tls_offset;
1340 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001341 tail = orig_tail;
1342 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001343 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001344 errflag = 1;
1345 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001346 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001347
1348 if (!p) {
Rich Felker4d07e552013-01-23 22:07:45 -05001349 snprintf(errbuf, sizeof errbuf, noload ?
1350 "Library %s is not already loaded" :
1351 "Error loading shared library %s: %m",
1352 file);
Rich Felkera9e85c02012-03-23 00:28:20 -04001353 errflag = 1;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001354 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001355 }
1356
Rich Felker59ab43f2011-06-26 19:23:28 -04001357 /* First load handling */
1358 if (!p->deps) {
1359 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001360 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001361 if (!p->deps[i]->global)
1362 p->deps[i]->global = -1;
1363 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001364 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001365 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001366 if (p->deps[i]->global < 0)
1367 p->deps[i]->global = 0;
1368 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001369 }
1370
1371 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001372 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001373 p->deps[i]->global = 1;
1374 p->global = 1;
1375 }
1376
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001377 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001378 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001379 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001380end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001381 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001382 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001383 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001384 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001385 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001386 return p;
1387}
1388
Rich Felker4d982802013-01-16 11:49:00 -05001389static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001390{
1391 struct dso *p;
1392 for (p=head; p; p=p->next) if (h==p) return 0;
1393 snprintf(errbuf, sizeof errbuf, "Invalid library handle %p", (void *)h);
1394 errflag = 1;
1395 return 1;
1396}
1397
Rich Felker623753a2011-08-16 00:42:13 -04001398static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001399{
1400 size_t i;
Rich Felker2bd05a42012-08-25 17:13:28 -04001401 uint32_t h = 0, gh = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001402 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001403 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001404 if (p == RTLD_DEFAULT) {
1405 p = head;
1406 } else if (p == RTLD_NEXT) {
Rich Felker9c748562012-10-04 22:48:33 -04001407 for (p=head; p && (unsigned char *)ra-p->map>p->map_len; p=p->next);
1408 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001409 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001410 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001411 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001412 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001413 if ((def.sym->st_info&0xf) == STT_TLS)
1414 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felker9c748562012-10-04 22:48:33 -04001415 return def.dso->base + def.sym->st_value;
Rich Felkera9e85c02012-03-23 00:28:20 -04001416 }
Rich Felker637dd2d2013-01-23 20:21:36 -05001417 if (p != RTLD_DEFAULT && p != RTLD_NEXT && invalid_dso_handle(p))
1418 return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -04001419 if (p->ghashtab) {
1420 gh = gnu_hash(s);
1421 sym = gnu_lookup(s, gh, p);
1422 } else {
1423 h = sysv_hash(s);
1424 sym = sysv_lookup(s, h, p);
1425 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001426 if (sym && (sym->st_info&0xf) == STT_TLS)
1427 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001428 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1429 return p->base + sym->st_value;
1430 if (p->deps) for (i=0; p->deps[i]; i++) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001431 if (p->deps[i]->ghashtab) {
1432 if (!gh) gh = gnu_hash(s);
Rich Felkera5d61992012-08-25 17:40:27 -04001433 sym = gnu_lookup(s, gh, p->deps[i]);
Rich Felker2bd05a42012-08-25 17:13:28 -04001434 } else {
1435 if (!h) h = sysv_hash(s);
1436 sym = sysv_lookup(s, h, p->deps[i]);
1437 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001438 if (sym && (sym->st_info&0xf) == STT_TLS)
1439 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001440 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1441 return p->deps[i]->base + sym->st_value;
1442 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001443failed:
Rich Felkera9e85c02012-03-23 00:28:20 -04001444 errflag = 1;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001445 snprintf(errbuf, sizeof errbuf, "Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001446 return 0;
1447}
1448
Rich Felker839cc4e2014-01-06 22:03:38 -05001449int __dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001450{
1451 struct dso *p;
1452 Sym *sym;
1453 uint32_t nsym;
1454 char *strings;
1455 size_t i;
1456 void *best = 0;
1457 char *bestname;
1458
1459 pthread_rwlock_rdlock(&lock);
1460 for (p=head; p && (unsigned char *)addr-p->map>p->map_len; p=p->next);
1461 pthread_rwlock_unlock(&lock);
1462
1463 if (!p) return 0;
1464
1465 sym = p->syms;
1466 strings = p->strings;
1467 if (p->hashtab) {
1468 nsym = p->hashtab[1];
1469 } else {
1470 uint32_t *buckets;
1471 uint32_t *hashval;
1472 buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
1473 sym += p->ghashtab[1];
Rich Felker78869852013-10-04 00:29:58 -04001474 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
Rich Felkerf419bcb2012-08-26 21:09:26 -04001475 if (buckets[i] > nsym)
1476 nsym = buckets[i];
1477 }
1478 if (nsym) {
1479 nsym -= p->ghashtab[1];
1480 hashval = buckets + p->ghashtab[0] + nsym;
1481 do nsym++;
1482 while (!(*hashval++ & 1));
1483 }
1484 }
1485
1486 for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001487 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001488 && (1<<(sym->st_info&0xf) & OK_TYPES)
1489 && (1<<(sym->st_info>>4) & OK_BINDS)) {
1490 void *symaddr = p->base + sym->st_value;
1491 if (symaddr > addr || symaddr < best)
1492 continue;
1493 best = symaddr;
1494 bestname = strings + sym->st_name;
1495 if (addr == symaddr)
1496 break;
1497 }
1498 }
1499
1500 if (!best) return 0;
1501
1502 info->dli_fname = p->name;
1503 info->dli_fbase = p->base;
1504 info->dli_sname = bestname;
1505 info->dli_saddr = best;
1506
1507 return 1;
1508}
1509
Rich Felker400c5e52012-09-06 22:44:55 -04001510void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001511{
1512 void *res;
1513 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001514 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001515 pthread_rwlock_unlock(&lock);
1516 return res;
1517}
Rich Felker18c0e022012-10-31 21:27:48 -04001518
1519int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1520{
1521 struct dso *current;
1522 struct dl_phdr_info info;
1523 int ret = 0;
1524 for(current = head; current;) {
1525 info.dlpi_addr = (uintptr_t)current->base;
1526 info.dlpi_name = current->name;
1527 info.dlpi_phdr = current->phdr;
1528 info.dlpi_phnum = current->phnum;
1529 info.dlpi_adds = gencnt;
1530 info.dlpi_subs = 0;
1531 info.dlpi_tls_modid = current->tls_id;
1532 info.dlpi_tls_data = current->tls_image;
1533
1534 ret = (callback)(&info, sizeof (info), data);
1535
1536 if (ret != 0) break;
1537
1538 pthread_rwlock_rdlock(&lock);
1539 current = current->next;
1540 pthread_rwlock_unlock(&lock);
1541 }
1542 return ret;
1543}
Rich Felker5a09a532012-02-03 03:16:07 -05001544#else
Rich Felker4d982802013-01-16 11:49:00 -05001545static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001546{
1547 snprintf(errbuf, sizeof errbuf, "Invalid library handle %p", (void *)h);
1548 errflag = 1;
1549 return 1;
1550}
Rich Felker5a09a532012-02-03 03:16:07 -05001551void *dlopen(const char *file, int mode)
1552{
1553 return 0;
1554}
Rich Felker400c5e52012-09-06 22:44:55 -04001555void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001556{
1557 return 0;
1558}
Rich Felker839cc4e2014-01-06 22:03:38 -05001559int __dladdr (const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001560{
1561 return 0;
1562}
Rich Felker5a09a532012-02-03 03:16:07 -05001563#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001564
Rich Felker780cbbe2013-06-29 12:46:46 -04001565int __dlinfo(void *dso, int req, void *res)
1566{
1567 if (invalid_dso_handle(dso)) return -1;
1568 if (req != RTLD_DI_LINKMAP) {
1569 snprintf(errbuf, sizeof errbuf, "Unsupported request %d", req);
1570 errflag = 1;
1571 return -1;
1572 }
1573 *(struct link_map **)res = dso;
1574 return 0;
1575}
1576
Rich Felker59ab43f2011-06-26 19:23:28 -04001577char *dlerror()
1578{
Rich Felkera9e85c02012-03-23 00:28:20 -04001579 if (!errflag) return 0;
1580 errflag = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001581 return errbuf;
Rich Felker59ab43f2011-06-26 19:23:28 -04001582}
1583
1584int dlclose(void *p)
1585{
Rich Felker6468fc92013-01-10 14:05:40 -05001586 return invalid_dso_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001587}