blob: 3842aeba1e7b494bed9c624fecad3c5bd74ed284 [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 Felkerf3ddd172015-04-13 02:56:26 -040077 int rel_early_relative, rel_update_got;
Rich Felker5c1909a2012-05-27 16:01:44 -040078 char *shortname;
Rich Felker6b3d5e52011-06-26 17:39:17 -040079 char buf[];
Rich Felker51e2d832011-06-18 19:48:42 -040080};
81
Rich Felker9c748562012-10-04 22:48:33 -040082struct symdef {
83 Sym *sym;
84 struct dso *dso;
85};
86
Rich Felkerdab441a2014-03-24 16:57:11 -040087int __init_tp(void *);
Rich Felker75863602013-07-21 03:00:54 -040088void __init_libc(char **, char *);
Rich Felker60872cf2012-04-24 18:07:59 -040089
Rich Felker179ab5a2013-12-01 17:27:25 -050090const char *__libc_get_version(void);
91
Rich Felkerbd679592015-03-06 13:27:08 -050092static struct builtin_tls {
93 char c;
94 struct pthread pt;
95 void *space[16];
96} builtin_tls[1];
97#define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
98
Rich Felkerf3ddd172015-04-13 02:56:26 -040099static struct dso ldso;
100static struct dso *head, *tail, *fini_head;
Rich Felker709355e2013-08-23 11:15:40 -0400101static char *env_path, *sys_path;
Rich Felker18c0e022012-10-31 21:27:48 -0400102static unsigned long long gencnt;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400103static int runtime;
Rich Felker5c1909a2012-05-27 16:01:44 -0400104static int ldd_mode;
Rich Felker04109502012-08-18 16:00:23 -0400105static int ldso_fail;
Rich Felker4d07e552013-01-23 22:07:45 -0500106static int noload;
Rich Felker17276be2013-07-24 02:38:05 -0400107static jmp_buf *rtld_fail;
Rich Felker59ab43f2011-06-26 19:23:28 -0400108static pthread_rwlock_t lock;
Rich Felker3ec8d292012-04-25 00:05:42 -0400109static struct debug debug;
Rich Felkerbd679592015-03-06 13:27:08 -0500110static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
Rich Felker9d15d5e2014-06-19 02:01:06 -0400111static size_t static_tls_cnt;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400112static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
Rich Felker3ec8d292012-04-25 00:05:42 -0400113
114struct debug *_dl_debug_addr = &debug;
Rich Felker51e2d832011-06-18 19:48:42 -0400115
Rich Felkerf3ddd172015-04-13 02:56:26 -0400116static int dl_strcmp(const char *l, const char *r)
117{
118 for (; *l==*r && *l; l++, r++);
119 return *(unsigned char *)l - *(unsigned char *)r;
120}
121#define strcmp(l,r) dl_strcmp(l,r)
Rich Felker51e2d832011-06-18 19:48:42 -0400122
123static void decode_vec(size_t *v, size_t *a, size_t cnt)
124{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400125 size_t i;
126 for (i=0; i<cnt; i++) a[i] = 0;
127 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
128 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400129 a[v[0]] = v[1];
130 }
131}
132
Rich Felker2bd05a42012-08-25 17:13:28 -0400133static int search_vec(size_t *v, size_t *r, size_t key)
134{
135 for (; v[0]!=key; v+=2)
136 if (!v[0]) return 0;
137 *r = v[1];
138 return 1;
139}
140
141static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400142{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500143 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400144 uint_fast32_t h = 0;
145 while (*s) {
146 h = 16*h + *s++;
147 h ^= h>>24 & 0xf0;
148 }
149 return h & 0xfffffff;
150}
151
Rich Felker2bd05a42012-08-25 17:13:28 -0400152static uint32_t gnu_hash(const char *s0)
153{
154 const unsigned char *s = (void *)s0;
155 uint_fast32_t h = 5381;
156 for (; *s; s++)
157 h = h*33 + *s;
158 return h;
159}
160
161static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400162{
163 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400164 Sym *syms = dso->syms;
165 uint32_t *hashtab = dso->hashtab;
166 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400167 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400168 if ((!dso->versym || dso->versym[i] >= 0)
169 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400170 return syms+i;
171 }
172 return 0;
173}
174
Rich Felker2bd05a42012-08-25 17:13:28 -0400175static Sym *gnu_lookup(const char *s, uint32_t h1, struct dso *dso)
176{
Rich Felker72482f92013-08-08 16:10:35 -0400177 Sym *syms = dso->syms;
178 char *strings = dso->strings;
Rich Felker2bd05a42012-08-25 17:13:28 -0400179 uint32_t *hashtab = dso->ghashtab;
180 uint32_t nbuckets = hashtab[0];
181 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
182 uint32_t h2;
183 uint32_t *hashval;
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
Rich Felker72482f92013-08-08 16:10:35 -0400188 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++) {
Rich Felker2bd05a42012-08-25 17:13:28 -0400191 h2 = *hashval++;
Rich Felker72482f92013-08-08 16:10:35 -0400192 if ((!dso->versym || dso->versym[i] >= 0)
193 && (h1 == (h2|1)) && !strcmp(s, strings + syms[i].st_name))
194 return syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400195 if (h2 & 1) break;
196 }
197
198 return 0;
199}
200
Rich Felker9c748562012-10-04 22:48:33 -0400201#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 -0400202#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400203
Rich Felker2d8cc922014-06-30 01:18:14 -0400204#ifndef ARCH_SYM_REJECT_UND
205#define ARCH_SYM_REJECT_UND(s) 0
206#endif
207
Rich Felker9c748562012-10-04 22:48:33 -0400208static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400209{
Rich Felker2bd05a42012-08-25 17:13:28 -0400210 uint32_t h = 0, gh = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400211 struct symdef def = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400212 for (; dso; dso=dso->next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400213 Sym *sym;
214 if (!dso->global) continue;
Rich Felker2bd05a42012-08-25 17:13:28 -0400215 if (dso->ghashtab) {
216 if (!gh) gh = gnu_hash(s);
217 sym = gnu_lookup(s, gh, dso);
218 } else {
219 if (!h) h = sysv_hash(s);
220 sym = sysv_lookup(s, h, dso);
221 }
Rich Felkerbd174312012-10-06 01:36:11 -0400222 if (!sym) continue;
223 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400224 if (need_def || (sym->st_info&0xf) == STT_TLS
225 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400226 continue;
227 if (!sym->st_value)
228 if ((sym->st_info&0xf) != STT_TLS)
229 continue;
230 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
231 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
232
233 if (def.sym && sym->st_info>>4 == STB_WEAK) continue;
234 def.sym = sym;
235 def.dso = dso;
236 if (sym->st_info>>4 == STB_GLOBAL) break;
Rich Felker51e2d832011-06-18 19:48:42 -0400237 }
Rich Felker427173b2011-07-24 02:19:47 -0400238 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400239}
240
Rich Felker1b1cafa2015-04-17 23:29:45 -0400241__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400242ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
243
Rich Felker87d13a42012-08-05 02:49:02 -0400244static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400245{
Rich Felker87d13a42012-08-05 02:49:02 -0400246 unsigned char *base = dso->base;
247 Sym *syms = dso->syms;
248 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400249 Sym *sym;
250 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400251 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400252 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400253 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400254 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400255 size_t *reloc_addr;
256 size_t sym_val;
257 size_t tls_val;
258 size_t addend;
Rich Felker51e2d832011-06-18 19:48:42 -0400259
260 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400261 if (dso->rel_early_relative && IS_RELATIVE(rel[1])) continue;
262 type = R_TYPE(rel[1]);
Rich Felker51e2d832011-06-18 19:48:42 -0400263 sym_index = R_SYM(rel[1]);
Rich Felkeradf94c12014-06-18 02:44:02 -0400264 reloc_addr = (void *)(base + rel[0]);
Rich Felker51e2d832011-06-18 19:48:42 -0400265 if (sym_index) {
266 sym = syms + sym_index;
267 name = strings + sym->st_name;
Rich Felkeradf94c12014-06-18 02:44:02 -0400268 ctx = type==REL_COPY ? head->next : head;
269 def = find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500270 if (!def.sym && (sym->st_shndx != SHN_UNDEF
271 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400272 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400273 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400274 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400275 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400276 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400277 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400278 sym = 0;
279 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400280 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400281 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400282
Rich Felkerf3ddd172015-04-13 02:56:26 -0400283 int gotplt = (type == REL_GOT || type == REL_PLT);
Rich Felkerc093e2e2015-05-18 16:51:54 -0400284 if (dso->rel_update_got && !gotplt && stride==2) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400285
Rich Felkeradf94c12014-06-18 02:44:02 -0400286 addend = stride>2 ? rel[2]
Rich Felkerf3ddd172015-04-13 02:56:26 -0400287 : gotplt || type==REL_COPY ? 0
Rich Felkeradf94c12014-06-18 02:44:02 -0400288 : *reloc_addr;
289
290 sym_val = def.sym ? (size_t)def.dso->base+def.sym->st_value : 0;
291 tls_val = def.sym ? def.sym->st_value : 0;
292
293 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400294 case REL_NONE:
295 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400296 case REL_OFFSET:
297 addend -= (size_t)reloc_addr;
298 case REL_SYMBOLIC:
299 case REL_GOT:
300 case REL_PLT:
301 *reloc_addr = sym_val + addend;
302 break;
303 case REL_RELATIVE:
304 *reloc_addr = (size_t)base + addend;
305 break;
306 case REL_SYM_OR_REL:
307 if (sym) *reloc_addr = sym_val + addend;
308 else *reloc_addr = (size_t)base + addend;
309 break;
310 case REL_COPY:
311 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
312 break;
313 case REL_OFFSET32:
314 *(uint32_t *)reloc_addr = sym_val + addend
315 - (size_t)reloc_addr;
316 break;
317 case REL_DTPMOD:
318 *reloc_addr = def.dso->tls_id;
319 break;
320 case REL_DTPOFF:
321 *reloc_addr = tls_val + addend;
322 break;
323#ifdef TLS_ABOVE_TP
324 case REL_TPOFF:
325 *reloc_addr = tls_val + def.dso->tls_offset + TPOFF_K + addend;
326 break;
327#else
328 case REL_TPOFF:
329 *reloc_addr = tls_val - def.dso->tls_offset + addend;
330 break;
331 case REL_TPOFF_NEG:
332 *reloc_addr = def.dso->tls_offset - tls_val + addend;
333 break;
334#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400335 case REL_TLSDESC:
336 if (stride<3) addend = reloc_addr[1];
337 if (runtime && def.dso->tls_id >= static_tls_cnt) {
338 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400339 if (!new) {
340 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400341 "Error relocating %s: cannot allocate TLSDESC for %s",
342 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400343 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400344 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400345 new->next = dso->td_index;
346 dso->td_index = new;
347 new->args[0] = def.dso->tls_id;
348 new->args[1] = tls_val + addend;
349 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
350 reloc_addr[1] = (size_t)new;
351 } else {
352 reloc_addr[0] = (size_t)__tlsdesc_static;
353#ifdef TLS_ABOVE_TP
354 reloc_addr[1] = tls_val + def.dso->tls_offset
355 + TPOFF_K + addend;
356#else
357 reloc_addr[1] = tls_val - def.dso->tls_offset
358 + addend;
359#endif
360 }
361 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400362 default:
363 error("Error relocating %s: unsupported relocation type %d",
364 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400365 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400366 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400367 }
Rich Felker51e2d832011-06-18 19:48:42 -0400368 }
369}
370
Rich Felker6717e622011-06-28 19:40:14 -0400371/* A huge hack: to make up for the wastefulness of shared libraries
372 * needing at least a page of dirty memory even if they have no global
373 * data, we reclaim the gaps at the beginning and end of writable maps
374 * and "donate" them to the heap by setting up minimal malloc
375 * structures and then freeing them. */
376
Timo Teräse13a2b82014-03-25 14:13:27 +0200377static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400378{
379 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200380 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
381 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400382 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
383 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
384 if (start>end || end-start < 4*sizeof(size_t)) return;
Timo Teräse13a2b82014-03-25 14:13:27 +0200385 a = (size_t *)(dso->base + start);
386 z = (size_t *)(dso->base + end);
Rich Felker6717e622011-06-28 19:40:14 -0400387 a[-2] = 1;
388 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
389 z[1] = 1;
390 free(a);
391}
392
Timo Teräs87691962014-03-25 20:59:50 +0200393static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400394{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400395 Phdr *ph = dso->phdr;
396 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200397
Rich Felkerfa7248c2014-03-25 16:21:50 -0400398 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400399 if (ph->p_type!=PT_LOAD) continue;
400 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200401 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
402 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400403 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
404 }
405}
406
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400407static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400408{
Rich Felker59633c72011-06-25 12:26:08 -0400409 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400410 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400411 size_t phsize;
412 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
413 size_t this_min, this_max;
414 off_t off_start;
415 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400416 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400417 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400418 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400419 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400420 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400421 size_t i;
422
423 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400424 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400425 if (l<0) return 0;
426 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
427 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400428 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400429 if (phsize > sizeof buf - sizeof *eh) {
430 allocated_buf = malloc(phsize);
431 if (!allocated_buf) return 0;
432 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
433 if (l < 0) goto error;
434 if (l != phsize) goto noexec;
435 ph = ph0 = allocated_buf;
436 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400437 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400438 if (l < 0) goto error;
439 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400440 ph = ph0 = (void *)(buf + 1);
441 } else {
442 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400443 }
Rich Felker51e2d832011-06-18 19:48:42 -0400444 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400445 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400446 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400447 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400448 tls_image = ph->p_vaddr;
449 dso->tls_align = ph->p_align;
450 dso->tls_len = ph->p_filesz;
451 dso->tls_size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200452 } else if (ph->p_type == PT_GNU_RELRO) {
453 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
454 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400455 }
Rich Felker51e2d832011-06-18 19:48:42 -0400456 if (ph->p_type != PT_LOAD) continue;
457 if (ph->p_vaddr < addr_min) {
458 addr_min = ph->p_vaddr;
459 off_start = ph->p_offset;
460 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
461 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
462 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
463 }
464 if (ph->p_vaddr+ph->p_memsz > addr_max) {
465 addr_max = ph->p_vaddr+ph->p_memsz;
466 }
467 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400468 if (!dyn) goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400469 addr_max += PAGE_SIZE-1;
470 addr_max &= -PAGE_SIZE;
471 addr_min &= -PAGE_SIZE;
472 off_start &= -PAGE_SIZE;
473 map_len = addr_max - addr_min + off_start;
474 /* The first time, we map too much, possibly even more than
475 * the length of the file. This is okay because we will not
476 * use the invalid part; we just need to reserve the right
477 * amount of virtual address space to map over later. */
Rich Felkerbf301002011-06-28 14:20:41 -0400478 map = mmap((void *)addr_min, map_len, prot, MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400479 if (map==MAP_FAILED) goto error;
Rich Felker339516a2013-07-31 14:42:08 -0400480 /* If the loaded file is not relocatable and the requested address is
481 * not available, then the load operation must fail. */
482 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
483 errno = EBUSY;
484 goto error;
485 }
Rich Felker51e2d832011-06-18 19:48:42 -0400486 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400487 dso->phdr = 0;
488 dso->phnum = 0;
489 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400490 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400491 /* Check if the programs headers are in this load segment, and
492 * if so, record the address for use by dl_iterate_phdr. */
493 if (!dso->phdr && eh->e_phoff >= ph->p_offset
494 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
495 dso->phdr = (void *)(base + ph->p_vaddr
496 + (eh->e_phoff-ph->p_offset));
497 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200498 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400499 }
Rich Felker51e2d832011-06-18 19:48:42 -0400500 /* Reuse the existing mapping for the lowest-address LOAD */
501 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min) continue;
502 this_min = ph->p_vaddr & -PAGE_SIZE;
503 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
504 off_start = ph->p_offset & -PAGE_SIZE;
505 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
506 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
507 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400508 if (mmap(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED)
509 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400510 if (ph->p_memsz > ph->p_filesz) {
511 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
512 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
513 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400514 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)
515 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400516 }
517 }
Rich Felker9f174132011-06-29 00:29:08 -0400518 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
519 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400520 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC) < 0)
521 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400522 break;
523 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400524 dso->map = map;
525 dso->map_len = map_len;
526 dso->base = base;
527 dso->dynv = (void *)(base+dyn);
528 if (dso->tls_size) dso->tls_image = (void *)(base+tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200529 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400530 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400531 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400532noexec:
533 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400534error:
Rich Felkerd5884a52013-08-02 09:56:49 -0400535 if (map!=MAP_FAILED) munmap(map, map_len);
536 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400537 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400538}
539
Rich Felker8c203ea2013-04-20 11:51:58 -0400540static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400541{
Rich Felker8c203ea2013-04-20 11:51:58 -0400542 size_t l;
543 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400544 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400545 s += strspn(s, ":\n");
546 l = strcspn(s, ":\n");
547 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400548 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
549 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
550 switch (errno) {
551 case ENOENT:
552 case ENOTDIR:
553 case EACCES:
554 case ENAMETOOLONG:
555 break;
556 default:
557 /* Any negative value but -1 will inhibit
558 * futher path search. */
559 return -2;
560 }
561 }
Rich Felker49388f32011-06-25 17:49:16 -0400562 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400563 }
Rich Felker568b8072011-06-25 01:56:34 -0400564}
565
Rich Felkera897a202013-08-23 13:56:30 -0400566static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
567{
568 size_t n, l;
569 const char *s, *t, *origin;
570 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400571 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400572 if (!strchr(p->rpath_orig, '$')) {
573 p->rpath = p->rpath_orig;
574 return 0;
575 }
576 n = 0;
577 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400578 while ((t=strchr(s, '$'))) {
579 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400580 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400581 s = t+1;
582 n++;
583 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400584 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400585
586 if (p->kernel_mapped) {
587 /* $ORIGIN searches cannot be performed for the main program
588 * when it is suid/sgid/AT_SECURE. This is because the
589 * pathname is under the control of the caller of execve.
590 * For libraries, however, $ORIGIN can be processed safely
591 * since the library's pathname came from a trusted source
592 * (either system paths or a call to dlopen). */
593 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400594 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400595 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400596 if (l == -1) switch (errno) {
597 case ENOENT:
598 case ENOTDIR:
599 case EACCES:
600 break;
601 default:
Rich Felkera897a202013-08-23 13:56:30 -0400602 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400603 }
604 if (l >= buf_size)
605 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400606 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400607 origin = buf;
608 } else {
609 origin = p->name;
610 }
611 t = strrchr(origin, '/');
612 l = t ? t-origin : 0;
613 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
614 if (!p->rpath) return -1;
615
616 d = p->rpath;
617 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400618 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400619 memcpy(d, s, t-s);
620 d += t-s;
621 memcpy(d, origin, l);
622 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400623 /* It was determined previously that the '$' is followed
624 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400625 s = t + 7 + 2*(t[1]=='{');
626 }
627 strcpy(d, s);
628 return 0;
629}
630
Rich Felkerc82f4a32012-01-23 00:57:38 -0500631static void decode_dyn(struct dso *p)
632{
Rich Felkerf4f95622015-04-13 22:38:18 -0400633 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500634 decode_vec(p->dynv, dyn, DYN_CNT);
635 p->syms = (void *)(p->base + dyn[DT_SYMTAB]);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500636 p->strings = (void *)(p->base + dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400637 if (dyn[0]&(1<<DT_HASH))
638 p->hashtab = (void *)(p->base + dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400639 if (dyn[0]&(1<<DT_RPATH))
Rich Felkera897a202013-08-23 13:56:30 -0400640 p->rpath_orig = (void *)(p->strings + dyn[DT_RPATH]);
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500641 if (dyn[0]&(1<<DT_RUNPATH))
642 p->rpath_orig = (void *)(p->strings + dyn[DT_RUNPATH]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400643 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
644 p->ghashtab = (void *)(p->base + *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400645 if (search_vec(p->dynv, dyn, DT_VERSYM))
646 p->versym = (void *)(p->base + *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500647}
648
Rich Felker709355e2013-08-23 11:15:40 -0400649static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400650{
Rich Felker5c1909a2012-05-27 16:01:44 -0400651 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400652 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500653 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400654 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400655 int fd;
656 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400657 size_t alloc_size;
658 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400659 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400660
Rich Felker59549312014-07-11 00:29:44 -0400661 if (!*name) {
662 errno = EINVAL;
663 return 0;
664 }
665
Rich Felker51e2d832011-06-18 19:48:42 -0400666 /* Catch and block attempts to reload the implementation itself */
667 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
668 static const char *rp, reserved[] =
669 "c\0pthread\0rt\0m\0dl\0util\0xnet\0";
670 char *z = strchr(name, '.');
671 if (z) {
672 size_t l = z-name;
Rich Felker27593d32013-07-31 15:14:06 -0400673 for (rp=reserved; *rp && strncmp(name+3, rp, l-3); rp+=strlen(rp)+1);
Rich Felker51e2d832011-06-18 19:48:42 -0400674 if (*rp) {
Rich Felkera97a0502013-07-26 14:41:12 -0400675 if (ldd_mode) {
676 /* Track which names have been resolved
677 * and only report each one once. */
678 static unsigned reported;
679 unsigned mask = 1U<<(rp-reserved);
680 if (!(reported & mask)) {
681 reported |= mask;
682 dprintf(1, "\t%s => %s (%p)\n",
Rich Felkerf3ddd172015-04-13 02:56:26 -0400683 name, ldso.name,
684 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400685 }
686 }
Rich Felkerf8c376d2013-07-31 14:59:36 -0400687 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400688 }
689 }
690 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400691 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400692 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400693 if (!ldso.prev) {
694 tail->next = &ldso;
695 ldso.prev = tail;
696 tail = ldso.next ? ldso.next : &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400697 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400698 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400699 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400700 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400701 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400702 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400703 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400704 /* Search for the name to see if it's already loaded */
705 for (p=head->next; p; p=p->next) {
706 if (p->shortname && !strcmp(p->shortname, name)) {
707 p->refcnt++;
708 return p;
709 }
710 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400711 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400712 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400713 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400714 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
715 if (fixup_rpath(p, buf, sizeof buf) < 0)
716 fd = -2; /* Inhibit further search. */
717 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400718 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400719 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400720 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400721 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400722 char *prefix = 0;
723 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400724 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400725 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400726 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400727 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400728 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400729 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400730 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400731 }
732 if (!prefix) {
733 prefix = "";
734 prefix_len = 0;
735 }
736 char etc_ldso_path[prefix_len + 1
737 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
738 snprintf(etc_ldso_path, sizeof etc_ldso_path,
739 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
740 (int)prefix_len, prefix);
741 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -0400742 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -0400743 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -0400744 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -0400745 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -0500746 }
Rich Felker568b8072011-06-25 01:56:34 -0400747 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -0400748 } else if (errno != ENOENT) {
749 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -0400750 }
751 }
Rich Felker40d5f7e2012-11-08 22:41:16 -0500752 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
753 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400754 }
Rich Felker0420b872012-07-11 01:41:20 -0400755 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -0400756 }
757 if (fd < 0) return 0;
758 if (fstat(fd, &st) < 0) {
759 close(fd);
760 return 0;
761 }
762 for (p=head->next; p; p=p->next) {
763 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -0400764 /* If this library was previously loaded with a
765 * pathname but a search found the same inode,
766 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -0400767 if (!p->shortname && pathname != name)
768 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -0400769 close(fd);
770 p->refcnt++;
771 return p;
772 }
773 }
Rich Felker4d07e552013-01-23 22:07:45 -0500774 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -0400775 close(fd);
776 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -0400777
778 /* Allocate storage for the new DSO. When there is TLS, this
779 * storage must include a reservation for all pre-existing
780 * threads to obtain copies of both the new TLS, and an
781 * extended DTV capable of storing an additional slot for
782 * the newly-loaded DSO. */
783 alloc_size = sizeof *p + strlen(pathname) + 1;
784 if (runtime && temp_dso.tls_image) {
785 size_t per_th = temp_dso.tls_size + temp_dso.tls_align
786 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -0400787 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400788 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
789 else alloc_size += n_th * per_th;
790 }
791 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -0400792 if (!p) {
Rich Felker74025c82013-02-02 00:59:25 -0500793 munmap(map, temp_dso.map_len);
Rich Felker51e2d832011-06-18 19:48:42 -0400794 return 0;
795 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400796 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500797 decode_dyn(p);
Rich Felker51e2d832011-06-18 19:48:42 -0400798 p->dev = st.st_dev;
799 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -0400800 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -0400801 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400802 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -0400803 strcpy(p->name, pathname);
804 /* Add a shortname only if name arg was not an explicit pathname. */
805 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerdcd60372012-10-05 11:51:50 -0400806 if (p->tls_image) {
807 p->tls_id = ++tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400808 tls_align = MAXP2(tls_align, p->tls_align);
Rich Felker9ec42832012-10-15 18:51:53 -0400809#ifdef TLS_ABOVE_TP
810 p->tls_offset = tls_offset + ( (tls_align-1) &
811 -(tls_offset + (uintptr_t)p->tls_image) );
812 tls_offset += p->tls_size;
813#else
Rich Felkercf3fd3d2012-10-06 01:22:51 -0400814 tls_offset += p->tls_size + p->tls_align - 1;
815 tls_offset -= (tls_offset + (uintptr_t)p->tls_image)
816 & (p->tls_align-1);
817 p->tls_offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -0400818#endif
Rich Felkerdcd60372012-10-05 11:51:50 -0400819 p->new_dtv = (void *)(-sizeof(size_t) &
820 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
821 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
822 }
Rich Felker51e2d832011-06-18 19:48:42 -0400823
824 tail->next = p;
825 p->prev = tail;
826 tail = p;
827
Rich Felker1d7c4f82012-12-15 23:34:08 -0500828 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -0400829
Rich Felker51e2d832011-06-18 19:48:42 -0400830 return p;
831}
832
833static void load_deps(struct dso *p)
834{
Rich Felker59ab43f2011-06-26 19:23:28 -0400835 size_t i, ndeps=0;
836 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -0400837 for (; p; p=p->next) {
838 for (i=0; p->dynv[i]; i+=2) {
839 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -0400840 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -0400841 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400842 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -0400843 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400844 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400845 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400846 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400847 if (runtime) {
848 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -0400849 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -0400850 tmp[ndeps++] = dep;
851 tmp[ndeps] = 0;
852 *deps = tmp;
853 }
Rich Felker51e2d832011-06-18 19:48:42 -0400854 }
855 }
856}
857
Rich Felker2719cc82011-08-16 00:24:36 -0400858static void load_preload(char *s)
859{
860 int tmp;
861 char *z;
862 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -0400863 for ( ; *s && (isspace(*s) || *s==':'); s++);
864 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -0400865 tmp = *z;
866 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -0400867 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -0400868 *z = tmp;
869 }
870}
871
Rich Felker59ab43f2011-06-26 19:23:28 -0400872static void make_global(struct dso *p)
873{
874 for (; p; p=p->next) p->global = 1;
875}
876
Rich Felkerf3ddd172015-04-13 02:56:26 -0400877static void do_mips_relocs(struct dso *p, size_t *got)
878{
879 size_t i, j, rel[2];
880 unsigned char *base = p->base;
881 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
882 if (p->rel_early_relative) {
883 got += i;
884 } else {
885 while (i--) *got++ += (size_t)base;
886 }
887 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
888 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
889 Sym *sym = p->syms + j;
890 rel[0] = (unsigned char *)got - base;
891 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
892 rel[1] = sym-p->syms << 8 | R_MIPS_JUMP_SLOT;
893 do_relocs(p, rel, sizeof rel, 2);
894 }
895}
896
Rich Felker51e2d832011-06-18 19:48:42 -0400897static void reloc_all(struct dso *p)
898{
Rich Felkerf4f95622015-04-13 22:38:18 -0400899 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -0400900 for (; p; p=p->next) {
901 if (p->relocated) continue;
902 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400903 if (NEED_MIPS_GOT_RELOCS)
904 do_mips_relocs(p, (void *)(p->base+dyn[DT_PLTGOT]));
Rich Felker87d13a42012-08-05 02:49:02 -0400905 do_relocs(p, (void *)(p->base+dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
906 2+(dyn[DT_PLTREL]==DT_RELA));
907 do_relocs(p, (void *)(p->base+dyn[DT_REL]), dyn[DT_RELSZ], 2);
908 do_relocs(p, (void *)(p->base+dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +0200909
Rich Felkerf3ddd172015-04-13 02:56:26 -0400910 if (head != &ldso && p->relro_start != p->relro_end &&
Timo Teräse13a2b82014-03-25 14:13:27 +0200911 mprotect(p->base+p->relro_start, p->relro_end-p->relro_start, PROT_READ) < 0) {
Rich Felker9a4ad022014-06-29 21:52:54 -0400912 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +0200913 p->name);
Rich Felker01d42742015-04-18 18:00:22 -0400914 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +0200915 }
916
Rich Felker368ba4a2011-06-25 00:18:19 -0400917 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400918 }
919}
920
Timo Teräs87691962014-03-25 20:59:50 +0200921static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -0500922{
Timo Teräs87691962014-03-25 20:59:50 +0200923 size_t min_addr = -1, max_addr = 0, cnt;
924 Phdr *ph = p->phdr;
925 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
926 if (ph->p_type == PT_DYNAMIC) {
927 p->dynv = (void *)(p->base + ph->p_vaddr);
928 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +0200929 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
930 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
931 }
Rich Felkerf419bcb2012-08-26 21:09:26 -0400932 if (ph->p_type != PT_LOAD) continue;
933 if (ph->p_vaddr < min_addr)
934 min_addr = ph->p_vaddr;
935 if (ph->p_vaddr+ph->p_memsz > max_addr)
936 max_addr = ph->p_vaddr+ph->p_memsz;
937 }
938 min_addr &= -PAGE_SIZE;
939 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
940 p->map = p->base + min_addr;
941 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +0200942 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -0400943}
944
Rich Felkerf4f77c02012-10-05 13:09:09 -0400945static void do_fini()
946{
947 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -0400948 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -0400949 for (p=fini_head; p; p=p->fini_next) {
950 if (!p->constructed) continue;
951 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -0400952 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
953 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker1b413572013-07-21 02:35:46 -0400954 size_t *fn = (size_t *)(p->base + dyn[DT_FINI_ARRAY])+n;
955 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -0400956 }
Rich Felker1da53da2013-07-22 14:08:33 -0400957#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -0400958 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felkere69ae842013-07-20 18:26:17 -0400959 ((void (*)(void))(p->base + dyn[DT_FINI]))();
Rich Felker1da53da2013-07-22 14:08:33 -0400960#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -0400961 }
962}
963
Rich Felker4ce3cb52012-02-06 14:39:09 -0500964static void do_init_fini(struct dso *p)
965{
Rich Felkerf4f95622015-04-13 22:38:18 -0400966 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -0400967 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400968 /* Allow recursive calls that arise when a library calls
969 * dlopen from one of its constructors, but block any
970 * other threads until all ctors have finished. */
971 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -0500972 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -0400973 if (p->constructed) continue;
974 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -0500975 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -0400976 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -0400977 p->fini_next = fini_head;
978 fini_head = p;
979 }
Rich Felker1da53da2013-07-22 14:08:33 -0400980#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -0400981 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker4ce3cb52012-02-06 14:39:09 -0500982 ((void (*)(void))(p->base + dyn[DT_INIT]))();
Rich Felker1da53da2013-07-22 14:08:33 -0400983#endif
Rich Felkere69ae842013-07-20 18:26:17 -0400984 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
985 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
986 size_t *fn = (void *)(p->base + dyn[DT_INIT_ARRAY]);
987 while (n--) ((void (*)(void))*fn++)();
988 }
Rich Felker509b50e2013-06-29 02:24:02 -0400989 if (!need_locking && libc.threads_minus_1) {
990 need_locking = 1;
991 pthread_mutex_lock(&init_fini_lock);
992 }
Rich Felker4ce3cb52012-02-06 14:39:09 -0500993 }
Rich Felkerf4f77c02012-10-05 13:09:09 -0400994 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -0500995}
996
Rich Felker326e1262015-04-17 23:23:05 -0400997static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -0400998{
999}
1000
Rich Felker326e1262015-04-17 23:23:05 -04001001weak_alias(dl_debug_state, _dl_debug_state);
1002
Rich Felker7c6c2902013-08-03 16:27:30 -04001003void __reset_tls()
1004{
1005 pthread_t self = __pthread_self();
1006 struct dso *p;
1007 for (p=head; p; p=p->next) {
1008 if (!p->tls_id || !self->dtv[p->tls_id]) continue;
1009 memcpy(self->dtv[p->tls_id], p->tls_image, p->tls_len);
1010 memset((char *)self->dtv[p->tls_id]+p->tls_len, 0,
1011 p->tls_size - p->tls_len);
1012 if (p->tls_id == (size_t)self->dtv[0]) break;
1013 }
1014}
1015
Rich Felkerdcd60372012-10-05 11:51:50 -04001016void *__copy_tls(unsigned char *mem)
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001017{
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001018 pthread_t td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001019 struct dso *p;
Rich Felker0f66fce2015-04-13 18:07:10 -04001020 void **dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001021
Rich Felker9ec42832012-10-15 18:51:53 -04001022#ifdef TLS_ABOVE_TP
Rich Felker0f66fce2015-04-13 18:07:10 -04001023 dtv = (void **)(mem + libc.tls_size) - (tls_cnt + 1);
1024
Rich Felker9ec42832012-10-15 18:51:53 -04001025 mem += -((uintptr_t)mem + sizeof(struct pthread)) & (tls_align-1);
1026 td = (pthread_t)mem;
1027 mem += sizeof(struct pthread);
1028
1029 for (p=head; p; p=p->next) {
1030 if (!p->tls_id) continue;
1031 dtv[p->tls_id] = mem + p->tls_offset;
1032 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
1033 }
1034#else
Rich Felker0f66fce2015-04-13 18:07:10 -04001035 dtv = (void **)mem;
1036
Rich Felkere23d3582012-10-13 23:25:20 -04001037 mem += libc.tls_size - sizeof(struct pthread);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001038 mem -= (uintptr_t)mem & (tls_align-1);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001039 td = (pthread_t)mem;
1040
1041 for (p=head; p; p=p->next) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001042 if (!p->tls_id) continue;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001043 dtv[p->tls_id] = mem - p->tls_offset;
1044 memcpy(dtv[p->tls_id], p->tls_image, p->tls_len);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001045 }
Rich Felker9ec42832012-10-15 18:51:53 -04001046#endif
Rich Felker0f66fce2015-04-13 18:07:10 -04001047 dtv[0] = (void *)tls_cnt;
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001048 td->dtv = td->dtv_copy = dtv;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001049 return td;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001050}
1051
Rich Felkerbc081f62015-04-14 10:42:44 -04001052__attribute__((__visibility__("hidden")))
Rich Felker5ba238e2014-06-19 02:59:44 -04001053void *__tls_get_new(size_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001054{
1055 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001056
1057 /* Block signals to make accessing new TLS async-signal-safe */
1058 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001059 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001060 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001061 __restore_sigs(&set);
Rich Felkerdcd60372012-10-05 11:51:50 -04001062 return (char *)self->dtv[v[0]]+v[1];
Rich Felker9b153c02012-10-04 21:01:56 -04001063 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001064
1065 /* This is safe without any locks held because, if the caller
1066 * is able to request the Nth entry of the DTV, the DSO list
1067 * must be valid at least that far out and it was synchronized
1068 * at program startup or by an already-completed call to dlopen. */
1069 struct dso *p;
1070 for (p=head; p->tls_id != v[0]; p=p->next);
1071
1072 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001073 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001074 void **newdtv = p->new_dtv +
1075 (v[0]+1)*sizeof(void *)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001076 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001077 ((size_t)self->dtv[0]+1) * sizeof(void *));
1078 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001079 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001080 }
1081
Rich Felkere75b16c2014-06-19 02:16:57 -04001082 /* Get new TLS memory from all new DSOs up to the requested one */
1083 unsigned char *mem;
1084 for (p=head; ; p=p->next) {
1085 if (!p->tls_id || self->dtv[p->tls_id]) continue;
1086 mem = p->new_tls + (p->tls_size + p->tls_align)
1087 * a_fetch_add(&p->new_tls_idx,1);
1088 mem += ((uintptr_t)p->tls_image - (uintptr_t)mem)
1089 & (p->tls_align-1);
1090 self->dtv[p->tls_id] = mem;
1091 memcpy(mem, p->tls_image, p->tls_len);
1092 if (p->tls_id == v[0]) break;
1093 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001094 __restore_sigs(&set);
Rich Felkerdcd60372012-10-05 11:51:50 -04001095 return mem + v[1];
Rich Felker9b153c02012-10-04 21:01:56 -04001096}
1097
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001098static void update_tls_size()
1099{
Rich Felker9ec42832012-10-15 18:51:53 -04001100 libc.tls_size = ALIGN(
1101 (1+tls_cnt) * sizeof(void *) +
1102 tls_offset +
1103 sizeof(struct pthread) +
1104 tls_align * 2,
1105 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001106}
1107
Rich Felkerf3ddd172015-04-13 02:56:26 -04001108/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1109 * following stage 2 and stage 3 functions via primitive symbolic lookup
1110 * since it does not have access to their addresses to begin with. */
1111
1112/* Stage 2 of the dynamic linker is called after relative relocations
1113 * have been processed. It can make function calls to static functions
1114 * and access string literals and static data, but cannot use extern
1115 * symbols. Its job is to perform symbolic relocations on the dynamic
1116 * linker itself, but some of the relocations performed may need to be
1117 * replaced later due to copy relocations in the main program. */
1118
Rich Felker768b82c2015-05-25 19:15:17 -04001119void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001120{
Rich Felkerf3ddd172015-04-13 02:56:26 -04001121 Ehdr *ehdr = (void *)base;
1122 ldso.base = base;
1123 ldso.name = ldso.shortname = "libc.so";
1124 ldso.global = 1;
1125 ldso.phnum = ehdr->e_phnum;
1126 ldso.phdr = (void *)(base + ehdr->e_phoff);
1127 ldso.phentsize = ehdr->e_phentsize;
1128 ldso.rel_early_relative = 1;
1129 kernel_mapped_dso(&ldso);
1130 decode_dyn(&ldso);
1131
1132 head = &ldso;
1133 reloc_all(&ldso);
1134
1135 ldso.relocated = 0;
1136 ldso.rel_update_got = 1;
Rich Felker768b82c2015-05-25 19:15:17 -04001137
1138 /* Call dynamic linker stage-3, __dls3, looking it up
1139 * symbolically as a barrier against moving the address
1140 * load across the above relocation processing. */
1141 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
1142 ((stage3_func)(ldso.base+dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001143}
1144
1145/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1146 * fully functional. Its job is to load (if not already loaded) and
1147 * process dependencies and relocations for the main application and
1148 * transfer control to its entry point. */
1149
1150_Noreturn void __dls3(size_t *sp)
1151{
1152 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001153 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001154 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001155 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001156 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001157 int argc = *sp;
1158 char **argv = (void *)(sp+1);
1159 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001160 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001161
1162 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1163 * use during dynamic linking. If possible it will also serve as the
1164 * thread pointer at runtime. */
1165 libc.tls_size = sizeof builtin_tls;
1166 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001167 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001168 }
Rich Felker51e2d832011-06-18 19:48:42 -04001169
1170 /* Find aux vector just past environ[] */
Rich Felker568b8072011-06-25 01:56:34 -04001171 for (i=argc+1; argv[i]; i++)
1172 if (!memcmp(argv[i], "LD_LIBRARY_PATH=", 16))
1173 env_path = argv[i]+16;
Rich Felker2719cc82011-08-16 00:24:36 -04001174 else if (!memcmp(argv[i], "LD_PRELOAD=", 11))
1175 env_preload = argv[i]+11;
Rich Felker51e2d832011-06-18 19:48:42 -04001176 auxv = (void *)(argv+i+1);
1177
1178 decode_vec(auxv, aux, AUX_CNT);
1179
Rich Felker568b8072011-06-25 01:56:34 -04001180 /* Only trust user/env if kernel says we're not suid/sgid */
1181 if ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
Rich Felkera0458832011-08-16 07:46:42 -04001182 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]) {
Rich Felker568b8072011-06-25 01:56:34 -04001183 env_path = 0;
Rich Felker2719cc82011-08-16 00:24:36 -04001184 env_preload = 0;
Rich Felkera897a202013-08-23 13:56:30 -04001185 libc.secure = 1;
Rich Felker568b8072011-06-25 01:56:34 -04001186 }
Szabolcs Nagyb20760c2013-09-15 02:00:32 +00001187 libc.page_size = aux[AT_PAGESZ];
Rich Felkerd8bdc972014-11-19 00:34:29 -05001188 libc.auxv = auxv;
Rich Felker568b8072011-06-25 01:56:34 -04001189
Rich Felkerf3ddd172015-04-13 02:56:26 -04001190 /* If the main program was already loaded by the kernel,
1191 * AT_PHDR will point to some location other than the dynamic
1192 * linker's program headers. */
1193 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001194 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001195 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001196 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001197 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1198 app.phnum = aux[AT_PHNUM];
1199 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001200 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1201 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001202 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001203 else if (phdr->p_type == PT_INTERP)
1204 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001205 else if (phdr->p_type == PT_TLS) {
1206 tls_image = phdr->p_vaddr;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001207 app.tls_len = phdr->p_filesz;
1208 app.tls_size = phdr->p_memsz;
1209 app.tls_align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001210 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001211 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001212 if (app.tls_size) app.tls_image = (char *)app.base + tls_image;
1213 if (interp_off) ldso.name = (char *)app.base + interp_off;
Rich Felkercc515052013-08-23 14:14:47 -04001214 if ((aux[0] & (1UL<<AT_EXECFN))
1215 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001216 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001217 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001218 app.name = argv[0];
1219 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001220 } else {
1221 int fd;
1222 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001223 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001224 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001225 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001226 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1227 char *opt = argv[0]+2;
1228 *argv++ = (void *)-1;
1229 if (!*opt) {
1230 break;
1231 } else if (!memcmp(opt, "list", 5)) {
1232 ldd_mode = 1;
1233 } else if (!memcmp(opt, "library-path", 12)) {
1234 if (opt[12]=='=') env_path = opt+13;
1235 else if (opt[12]) *argv = 0;
1236 else if (*argv) env_path = *argv++;
1237 } else if (!memcmp(opt, "preload", 7)) {
1238 if (opt[7]=='=') env_preload = opt+8;
1239 else if (opt[7]) *argv = 0;
1240 else if (*argv) env_preload = *argv++;
1241 } else {
1242 argv[0] = 0;
1243 }
Rich Felkerde451642014-04-16 12:45:36 -04001244 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001245 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001246 if (!argv[0]) {
Rich Felker179ab5a2013-12-01 17:27:25 -05001247 dprintf(2, "musl libc\n"
1248 "Version %s\n"
1249 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001250 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001251 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001252 ldd_mode ? "" : " [args]");
1253 _exit(1);
1254 }
1255 fd = open(argv[0], O_RDONLY);
1256 if (fd < 0) {
1257 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1258 _exit(1);
1259 }
1260 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001261 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001262 if (!ehdr) {
1263 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1264 _exit(1);
1265 }
1266 runtime = 0;
1267 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001268 ldso.name = ldname;
1269 app.name = argv[0];
1270 aux[AT_ENTRY] = (size_t)app.base + ehdr->e_entry;
Rich Felkera97a0502013-07-26 14:41:12 -04001271 /* Find the name that would have been used for the dynamic
1272 * linker had ldd not taken its place. */
1273 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001274 for (i=0; i<app.phnum; i++) {
1275 if (app.phdr[i].p_type == PT_INTERP)
1276 ldso.name = (void *)(app.base
1277 + app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001278 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001279 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001280 }
Rich Felkere12fe652012-01-23 02:02:59 -05001281 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001282 if (app.tls_size) {
1283 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001284#ifdef TLS_ABOVE_TP
Rich Felkerf3ddd172015-04-13 02:56:26 -04001285 app.tls_offset = 0;
1286 tls_offset = app.tls_size
1287 + ( -((uintptr_t)app.tls_image + app.tls_size)
1288 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001289#else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001290 tls_offset = app.tls_offset = app.tls_size
1291 + ( -((uintptr_t)app.tls_image + app.tls_size)
1292 & (app.tls_align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001293#endif
Rich Felkerf3ddd172015-04-13 02:56:26 -04001294 tls_align = MAXP2(tls_align, app.tls_align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001295 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001296 app.global = 1;
1297 decode_dyn(&app);
Rich Felkerc82f4a32012-01-23 00:57:38 -05001298
1299 /* Attach to vdso, if provided by the kernel */
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001300 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR)) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001301 Ehdr *ehdr = (void *)vdso_base;
1302 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1303 vdso.phnum = ehdr->e_phnum;
1304 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001305 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1306 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001307 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001308 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001309 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001310 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001311 vdso.name = "";
1312 vdso.shortname = "linux-gate.so.1";
1313 vdso.global = 1;
1314 vdso.relocated = 1;
1315 decode_dyn(&vdso);
1316 vdso.prev = &ldso;
1317 ldso.next = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001318 }
1319
Rich Felkerf3ddd172015-04-13 02:56:26 -04001320 /* Initial dso chain consists only of the app. */
1321 head = tail = &app;
Rich Felker51e2d832011-06-18 19:48:42 -04001322
Rich Felkerc82f4a32012-01-23 00:57:38 -05001323 /* Donate unused parts of app and library mapping to malloc */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001324 reclaim_gaps(&app);
1325 reclaim_gaps(&ldso);
Rich Felker6717e622011-06-28 19:40:14 -04001326
Rich Felkerc82f4a32012-01-23 00:57:38 -05001327 /* Load preload/needed libraries, add their symbols to the global
Rich Felkerf3ddd172015-04-13 02:56:26 -04001328 * namespace, and perform all remaining relocations. */
Rich Felker2719cc82011-08-16 00:24:36 -04001329 if (env_preload) load_preload(env_preload);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001330 load_deps(&app);
1331 make_global(&app);
Rich Felker9c748562012-10-04 22:48:33 -04001332
Timo Teräse13a2b82014-03-25 14:13:27 +02001333#ifndef DYNAMIC_IS_RO
Rich Felkerf3ddd172015-04-13 02:56:26 -04001334 for (i=0; app.dynv[i]; i+=2)
1335 if (app.dynv[i]==DT_DEBUG)
1336 app.dynv[i+1] = (size_t)&debug;
Timo Teräse13a2b82014-03-25 14:13:27 +02001337#endif
1338
Rich Felkerf3ddd172015-04-13 02:56:26 -04001339 /* The main program must be relocated LAST since it may contin
1340 * copy relocations which depend on libraries' relocations. */
1341 reloc_all(app.next);
1342 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001343
1344 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001345 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1346 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001347 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001348 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001349 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001350 _exit(127);
1351 }
Rich Felker71f099c2015-04-13 18:40:52 -04001352 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001353 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001354 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001355 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001356 size_t tmp_tls_size = libc.tls_size;
1357 pthread_t self = __pthread_self();
1358 /* Temporarily set the tls size to the full size of
1359 * builtin_tls so that __copy_tls will use the same layout
1360 * as it did for before. Then check, just to be safe. */
1361 libc.tls_size = sizeof builtin_tls;
1362 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1363 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001364 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001365 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001366
Rich Felker04109502012-08-18 16:00:23 -04001367 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001368 if (ldd_mode) _exit(0);
1369
Rich Felkerc82f4a32012-01-23 00:57:38 -05001370 /* Switch to runtime mode: any further failures in the dynamic
1371 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001372 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001373 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001374
Rich Felker3ec8d292012-04-25 00:05:42 -04001375 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001376 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001377 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001378 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001379 debug.state = 0;
1380 _dl_debug_state();
1381
Rich Felker75863602013-07-21 03:00:54 -04001382 __init_libc(envp, argv[0]);
Rich Felkera7936f62012-11-30 17:56:23 -05001383 atexit(do_fini);
Rich Felker75863602013-07-21 03:00:54 -04001384 errno = 0;
Rich Felkera7936f62012-11-30 17:56:23 -05001385 do_init_fini(tail);
Rich Felker75863602013-07-21 03:00:54 -04001386
Rich Felkerf3ddd172015-04-13 02:56:26 -04001387 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1388 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001389}
1390
Rich Felker59ab43f2011-06-26 19:23:28 -04001391void *dlopen(const char *file, int mode)
1392{
Rich Felker642b7592012-10-05 01:15:25 -04001393 struct dso *volatile p, *orig_tail, *next;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001394 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001395 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001396 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001397 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001398
1399 if (!file) return head;
1400
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001401 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001402 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001403 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001404
Rich Felkerdcd60372012-10-05 11:51:50 -04001405 p = 0;
1406 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001407 orig_tls_offset = tls_offset;
1408 orig_tls_align = tls_align;
Rich Felker642b7592012-10-05 01:15:25 -04001409 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001410 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001411
Rich Felker17276be2013-07-24 02:38:05 -04001412 rtld_fail = &jb;
1413 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001414 /* Clean up anything new that was (partially) loaded */
Rich Felkerdcd60372012-10-05 11:51:50 -04001415 if (p && p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001416 if (p->deps[i]->global < 0)
1417 p->deps[i]->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001418 for (p=orig_tail->next; p; p=next) {
1419 next = p->next;
1420 munmap(p->map, p->map_len);
Rich Felker9d15d5e2014-06-19 02:01:06 -04001421 while (p->td_index) {
1422 void *tmp = p->td_index->next;
1423 free(p->td_index);
1424 p->td_index = tmp;
1425 }
Rich Felker07709622015-04-04 00:15:19 -04001426 if (p->rpath != p->rpath_orig)
1427 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001428 free(p->deps);
1429 free(p);
1430 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001431 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001432 tls_offset = orig_tls_offset;
1433 tls_align = orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001434 tail = orig_tail;
1435 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001436 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001437 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001438 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001439
1440 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001441 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001442 "Library %s is not already loaded" :
1443 "Error loading shared library %s: %m",
1444 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001445 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001446 }
1447
Rich Felker59ab43f2011-06-26 19:23:28 -04001448 /* First load handling */
1449 if (!p->deps) {
1450 load_deps(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001451 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001452 if (!p->deps[i]->global)
1453 p->deps[i]->global = -1;
1454 if (!p->global) p->global = -1;
Rich Felker59ab43f2011-06-26 19:23:28 -04001455 reloc_all(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001456 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker92ab5d82011-06-26 21:21:04 -04001457 if (p->deps[i]->global < 0)
1458 p->deps[i]->global = 0;
1459 if (p->global < 0) p->global = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001460 }
1461
1462 if (mode & RTLD_GLOBAL) {
Rich Felker0e4dae32011-06-26 21:36:44 -04001463 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker59ab43f2011-06-26 19:23:28 -04001464 p->deps[i]->global = 1;
1465 p->global = 1;
1466 }
1467
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001468 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001469 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001470 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001471end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001472 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001473 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001474 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001475 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001476 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001477 return p;
1478}
1479
Rich Felker4d982802013-01-16 11:49:00 -05001480static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001481{
1482 struct dso *p;
1483 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001484 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001485 return 1;
1486}
1487
Rich Felker5ba238e2014-06-19 02:59:44 -04001488void *__tls_get_addr(size_t *);
1489
Rich Felker623753a2011-08-16 00:42:13 -04001490static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001491{
1492 size_t i;
Rich Felker2bd05a42012-08-25 17:13:28 -04001493 uint32_t h = 0, gh = 0;
Rich Felker59ab43f2011-06-26 19:23:28 -04001494 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001495 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001496 if (p == RTLD_DEFAULT) {
1497 p = head;
1498 } else if (p == RTLD_NEXT) {
Rich Felker9c748562012-10-04 22:48:33 -04001499 for (p=head; p && (unsigned char *)ra-p->map>p->map_len; p=p->next);
1500 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001501 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001502 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001503 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001504 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001505 if ((def.sym->st_info&0xf) == STT_TLS)
1506 return __tls_get_addr((size_t []){def.dso->tls_id, def.sym->st_value});
Rich Felker9c748562012-10-04 22:48:33 -04001507 return def.dso->base + def.sym->st_value;
Rich Felkera9e85c02012-03-23 00:28:20 -04001508 }
Rich Felker97b72d22015-04-21 13:07:06 -04001509 if (invalid_dso_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001510 return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -04001511 if (p->ghashtab) {
1512 gh = gnu_hash(s);
1513 sym = gnu_lookup(s, gh, p);
1514 } else {
1515 h = sysv_hash(s);
1516 sym = sysv_lookup(s, h, p);
1517 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001518 if (sym && (sym->st_info&0xf) == STT_TLS)
1519 return __tls_get_addr((size_t []){p->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001520 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1521 return p->base + sym->st_value;
1522 if (p->deps) for (i=0; p->deps[i]; i++) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001523 if (p->deps[i]->ghashtab) {
1524 if (!gh) gh = gnu_hash(s);
Rich Felkera5d61992012-08-25 17:40:27 -04001525 sym = gnu_lookup(s, gh, p->deps[i]);
Rich Felker2bd05a42012-08-25 17:13:28 -04001526 } else {
1527 if (!h) h = sysv_hash(s);
1528 sym = sysv_lookup(s, h, p->deps[i]);
1529 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001530 if (sym && (sym->st_info&0xf) == STT_TLS)
1531 return __tls_get_addr((size_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felker59ab43f2011-06-26 19:23:28 -04001532 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
1533 return p->deps[i]->base + sym->st_value;
1534 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001535failed:
Rich Felker01d42742015-04-18 18:00:22 -04001536 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001537 return 0;
1538}
1539
Rich Felker839cc4e2014-01-06 22:03:38 -05001540int __dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001541{
1542 struct dso *p;
1543 Sym *sym;
1544 uint32_t nsym;
1545 char *strings;
1546 size_t i;
1547 void *best = 0;
1548 char *bestname;
1549
1550 pthread_rwlock_rdlock(&lock);
1551 for (p=head; p && (unsigned char *)addr-p->map>p->map_len; p=p->next);
1552 pthread_rwlock_unlock(&lock);
1553
1554 if (!p) return 0;
1555
1556 sym = p->syms;
1557 strings = p->strings;
1558 if (p->hashtab) {
1559 nsym = p->hashtab[1];
1560 } else {
1561 uint32_t *buckets;
1562 uint32_t *hashval;
1563 buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
1564 sym += p->ghashtab[1];
Rich Felker78869852013-10-04 00:29:58 -04001565 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
Rich Felkerf419bcb2012-08-26 21:09:26 -04001566 if (buckets[i] > nsym)
1567 nsym = buckets[i];
1568 }
1569 if (nsym) {
1570 nsym -= p->ghashtab[1];
1571 hashval = buckets + p->ghashtab[0] + nsym;
1572 do nsym++;
1573 while (!(*hashval++ & 1));
1574 }
1575 }
1576
1577 for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001578 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001579 && (1<<(sym->st_info&0xf) & OK_TYPES)
1580 && (1<<(sym->st_info>>4) & OK_BINDS)) {
1581 void *symaddr = p->base + sym->st_value;
1582 if (symaddr > addr || symaddr < best)
1583 continue;
1584 best = symaddr;
1585 bestname = strings + sym->st_name;
1586 if (addr == symaddr)
1587 break;
1588 }
1589 }
1590
1591 if (!best) return 0;
1592
1593 info->dli_fname = p->name;
1594 info->dli_fbase = p->base;
1595 info->dli_sname = bestname;
1596 info->dli_saddr = best;
1597
1598 return 1;
1599}
1600
Rich Felker72b25dd2015-04-14 11:39:11 -04001601__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001602void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001603{
1604 void *res;
1605 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001606 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001607 pthread_rwlock_unlock(&lock);
1608 return res;
1609}
Rich Felker18c0e022012-10-31 21:27:48 -04001610
1611int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1612{
1613 struct dso *current;
1614 struct dl_phdr_info info;
1615 int ret = 0;
1616 for(current = head; current;) {
1617 info.dlpi_addr = (uintptr_t)current->base;
1618 info.dlpi_name = current->name;
1619 info.dlpi_phdr = current->phdr;
1620 info.dlpi_phnum = current->phnum;
1621 info.dlpi_adds = gencnt;
1622 info.dlpi_subs = 0;
1623 info.dlpi_tls_modid = current->tls_id;
1624 info.dlpi_tls_data = current->tls_image;
1625
1626 ret = (callback)(&info, sizeof (info), data);
1627
1628 if (ret != 0) break;
1629
1630 pthread_rwlock_rdlock(&lock);
1631 current = current->next;
1632 pthread_rwlock_unlock(&lock);
1633 }
1634 return ret;
1635}
Rich Felker5a09a532012-02-03 03:16:07 -05001636#else
Rich Felker4d982802013-01-16 11:49:00 -05001637static int invalid_dso_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001638{
Rich Felker01d42742015-04-18 18:00:22 -04001639 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001640 return 1;
1641}
Rich Felker5a09a532012-02-03 03:16:07 -05001642void *dlopen(const char *file, int mode)
1643{
Rich Felker01d42742015-04-18 18:00:22 -04001644 error("Dynamic loading not supported");
Rich Felker5a09a532012-02-03 03:16:07 -05001645 return 0;
1646}
Rich Felker400c5e52012-09-06 22:44:55 -04001647void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker5a09a532012-02-03 03:16:07 -05001648{
Rich Felker01d42742015-04-18 18:00:22 -04001649 error("Symbol not found: %s", s);
Rich Felker5a09a532012-02-03 03:16:07 -05001650 return 0;
1651}
Rich Felker839cc4e2014-01-06 22:03:38 -05001652int __dladdr (const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001653{
1654 return 0;
1655}
Rich Felker5a09a532012-02-03 03:16:07 -05001656#endif
Rich Felker59ab43f2011-06-26 19:23:28 -04001657
Rich Felker780cbbe2013-06-29 12:46:46 -04001658int __dlinfo(void *dso, int req, void *res)
1659{
1660 if (invalid_dso_handle(dso)) return -1;
1661 if (req != RTLD_DI_LINKMAP) {
Rich Felker01d42742015-04-18 18:00:22 -04001662 error("Unsupported request %d", req);
Rich Felker780cbbe2013-06-29 12:46:46 -04001663 return -1;
1664 }
1665 *(struct link_map **)res = dso;
1666 return 0;
1667}
1668
Rich Felker59ab43f2011-06-26 19:23:28 -04001669char *dlerror()
1670{
Rich Felker01d42742015-04-18 18:00:22 -04001671 pthread_t self = __pthread_self();
1672 if (!self->dlerror_flag) return 0;
1673 self->dlerror_flag = 0;
1674 char *s = self->dlerror_buf;
1675 if (s == (void *)-1)
1676 return "Dynamic linker failed to allocate memory for error message";
1677 else
1678 return s;
Rich Felker59ab43f2011-06-26 19:23:28 -04001679}
1680
1681int dlclose(void *p)
1682{
Rich Felker6468fc92013-01-10 14:05:40 -05001683 return invalid_dso_handle(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001684}
Rich Felker01d42742015-04-18 18:00:22 -04001685
1686void __dl_thread_cleanup(void)
1687{
1688 pthread_t self = __pthread_self();
1689 if (self->dlerror_buf != (void *)-1)
1690 free(self->dlerror_buf);
1691}
1692
1693static void error(const char *fmt, ...)
1694{
1695 va_list ap;
1696 va_start(ap, fmt);
1697#ifdef SHARED
1698 if (!runtime) {
1699 vdprintf(2, fmt, ap);
1700 dprintf(2, "\n");
1701 ldso_fail = 1;
1702 va_end(ap);
1703 return;
1704 }
1705#endif
1706 pthread_t self = __pthread_self();
1707 if (self->dlerror_buf != (void *)-1)
1708 free(self->dlerror_buf);
1709 size_t len = vsnprintf(0, 0, fmt, ap);
1710 va_end(ap);
1711 char *buf = malloc(len+1);
1712 if (buf) {
1713 va_start(ap, fmt);
1714 vsnprintf(buf, len+1, fmt, ap);
1715 va_end(ap);
1716 } else {
1717 buf = (void *)-1;
1718 }
1719 self->dlerror_buf = buf;
1720 self->dlerror_flag = 1;
1721}