blob: 80d85e949dcb6981817a6aa75f3716f8001536bf [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 Felkercf3fd3d2012-10-06 01:22:51 -040026#define MAXP2(a,b) (-(-(a)&-(b)))
27#define ALIGN(x,y) ((x)+(y)-1 & -(y))
28
Rich Felker3ec8d292012-04-25 00:05:42 -040029struct debug {
30 int ver;
31 void *head;
32 void (*bp)(void);
33 int state;
34 void *base;
35};
36
Rich Felker9d15d5e2014-06-19 02:01:06 -040037struct td_index {
38 size_t args[2];
39 struct td_index *next;
40};
41
Rich Felker3ec8d292012-04-25 00:05:42 -040042struct dso {
Rich Felker7a9669e2015-09-22 03:54:42 +000043#if DL_FDPIC
44 struct fdpic_loadmap *loadmap;
45#else
Rich Felker3ec8d292012-04-25 00:05:42 -040046 unsigned char *base;
Rich Felker7a9669e2015-09-22 03:54:42 +000047#endif
Rich Felker3ec8d292012-04-25 00:05:42 -040048 char *name;
Rich Felker51e2d832011-06-18 19:48:42 -040049 size_t *dynv;
Rich Felker3ec8d292012-04-25 00:05:42 -040050 struct dso *next, *prev;
51
Rich Felker18c0e022012-10-31 21:27:48 -040052 Phdr *phdr;
53 int phnum;
Timo Teräs87691962014-03-25 20:59:50 +020054 size_t phentsize;
Rich Felker3ec8d292012-04-25 00:05:42 -040055 int refcnt;
Rich Felker51e2d832011-06-18 19:48:42 -040056 Sym *syms;
Rich Felkerb418ea12016-11-11 12:30:24 -050057 Elf_Symndx *hashtab;
Rich Felker2bd05a42012-08-25 17:13:28 -040058 uint32_t *ghashtab;
Rich Felker72482f92013-08-08 16:10:35 -040059 int16_t *versym;
Rich Felker51e2d832011-06-18 19:48:42 -040060 char *strings;
Rich Felker6476b812017-03-13 08:52:41 -040061 struct dso *syms_next, *lazy_next;
62 size_t *lazy, lazy_cnt;
Rich Felker51e2d832011-06-18 19:48:42 -040063 unsigned char *map;
64 size_t map_len;
65 dev_t dev;
66 ino_t ino;
Rich Felker700a8152012-02-07 20:29:29 -050067 char relocated;
68 char constructed;
Rich Felkera897a202013-08-23 13:56:30 -040069 char kernel_mapped;
Rich Felker709355e2013-08-23 11:15:40 -040070 struct dso **deps, *needed_by;
Rich Felkera897a202013-08-23 13:56:30 -040071 char *rpath_orig, *rpath;
Rich Felkerd56460c2015-11-12 15:50:26 -050072 struct tls_module tls;
73 size_t tls_id;
Timo Teräse13a2b82014-03-25 14:13:27 +020074 size_t relro_start, relro_end;
Rich Felkerdcd60372012-10-05 11:51:50 -040075 void **new_dtv;
76 unsigned char *new_tls;
Rich Felker56fbaa32015-03-03 22:50:02 -050077 volatile int new_dtv_idx, new_tls_idx;
Rich Felker9d15d5e2014-06-19 02:01:06 -040078 struct td_index *td_index;
Rich Felkerf4f77c02012-10-05 13:09:09 -040079 struct dso *fini_next;
Rich Felker5c1909a2012-05-27 16:01:44 -040080 char *shortname;
Rich Felker7a9669e2015-09-22 03:54:42 +000081#if DL_FDPIC
82 unsigned char *base;
83#else
84 struct fdpic_loadmap *loadmap;
85#endif
86 struct funcdesc {
87 void *addr;
88 size_t *got;
89 } *funcdescs;
90 size_t *got;
Rich Felker6b3d5e52011-06-26 17:39:17 -040091 char buf[];
Rich Felker51e2d832011-06-18 19:48:42 -040092};
93
Rich Felker9c748562012-10-04 22:48:33 -040094struct symdef {
95 Sym *sym;
96 struct dso *dso;
97};
98
Rich Felkerdab441a2014-03-24 16:57:11 -040099int __init_tp(void *);
Rich Felker75863602013-07-21 03:00:54 -0400100void __init_libc(char **, char *);
Rich Felkerd56460c2015-11-12 15:50:26 -0500101void *__copy_tls(unsigned char *);
Rich Felker60872cf2012-04-24 18:07:59 -0400102
Rich Felker9e0a3172015-11-12 16:13:52 -0500103__attribute__((__visibility__("hidden")))
Rich Felker179ab5a2013-12-01 17:27:25 -0500104const char *__libc_get_version(void);
105
Rich Felkerbd679592015-03-06 13:27:08 -0500106static struct builtin_tls {
107 char c;
108 struct pthread pt;
109 void *space[16];
110} builtin_tls[1];
111#define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
112
Rich Felker9bbddf72015-05-25 23:33:59 -0400113#define ADDEND_LIMIT 4096
114static size_t *saved_addends, *apply_addends_to;
115
Rich Felkerf3ddd172015-04-13 02:56:26 -0400116static struct dso ldso;
Rich Felker6476b812017-03-13 08:52:41 -0400117static struct dso *head, *tail, *fini_head, *syms_tail, *lazy_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 Felkerd56460c2015-11-12 15:50:26 -0500127static struct tls_module *tls_tail;
Rich Felkerbd679592015-03-06 13:27:08 -0500128static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
Rich Felker9d15d5e2014-06-19 02:01:06 -0400129static size_t static_tls_cnt;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400130static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
Rich Felker7a9669e2015-09-22 03:54:42 +0000131static struct fdpic_loadmap *app_loadmap;
132static struct fdpic_dummy_loadmap app_dummy_loadmap;
Rich Felker3ec8d292012-04-25 00:05:42 -0400133
134struct debug *_dl_debug_addr = &debug;
Rich Felker51e2d832011-06-18 19:48:42 -0400135
Rich Felker19caa252015-11-19 20:28:08 -0500136__attribute__((__visibility__("hidden")))
137void (*const __init_array_start)(void)=0, (*const __fini_array_start)(void)=0;
138
139__attribute__((__visibility__("hidden")))
140extern void (*const __init_array_end)(void), (*const __fini_array_end)(void);
141
142weak_alias(__init_array_start, __init_array_end);
143weak_alias(__fini_array_start, __fini_array_end);
144
Rich Felkerf3ddd172015-04-13 02:56:26 -0400145static int dl_strcmp(const char *l, const char *r)
146{
147 for (; *l==*r && *l; l++, r++);
148 return *(unsigned char *)l - *(unsigned char *)r;
149}
150#define strcmp(l,r) dl_strcmp(l,r)
Rich Felker51e2d832011-06-18 19:48:42 -0400151
Rich Felker301335a2015-09-17 17:18:09 +0000152/* Compute load address for a virtual address in a given dso. */
Rich Felker78f43022015-09-22 20:20:39 +0000153#if DL_FDPIC
Rich Felker7a9669e2015-09-22 03:54:42 +0000154static void *laddr(const struct dso *p, size_t v)
155{
156 size_t j=0;
157 if (!p->loadmap) return p->base + v;
158 for (j=0; v-p->loadmap->segs[j].p_vaddr >= p->loadmap->segs[j].p_memsz; j++);
159 return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
160}
161#define fpaddr(p, v) ((void (*)())&(struct funcdesc){ \
162 laddr(p, v), (p)->got })
163#else
Rich Felker301335a2015-09-17 17:18:09 +0000164#define laddr(p, v) (void *)((p)->base + (v))
Rich Felker7a9669e2015-09-22 03:54:42 +0000165#define fpaddr(p, v) ((void (*)())laddr(p, v))
166#endif
Rich Felker301335a2015-09-17 17:18:09 +0000167
Rich Felker51e2d832011-06-18 19:48:42 -0400168static void decode_vec(size_t *v, size_t *a, size_t cnt)
169{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400170 size_t i;
171 for (i=0; i<cnt; i++) a[i] = 0;
172 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
173 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400174 a[v[0]] = v[1];
175 }
176}
177
Rich Felker2bd05a42012-08-25 17:13:28 -0400178static int search_vec(size_t *v, size_t *r, size_t key)
179{
180 for (; v[0]!=key; v+=2)
181 if (!v[0]) return 0;
182 *r = v[1];
183 return 1;
184}
185
186static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400187{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500188 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400189 uint_fast32_t h = 0;
190 while (*s) {
191 h = 16*h + *s++;
192 h ^= h>>24 & 0xf0;
193 }
194 return h & 0xfffffff;
195}
196
Rich Felker2bd05a42012-08-25 17:13:28 -0400197static uint32_t gnu_hash(const char *s0)
198{
199 const unsigned char *s = (void *)s0;
200 uint_fast32_t h = 5381;
201 for (; *s; s++)
Alexander Monakov66d45782015-06-28 02:48:30 +0300202 h += h*32 + *s;
Rich Felker2bd05a42012-08-25 17:13:28 -0400203 return h;
204}
205
206static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400207{
208 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400209 Sym *syms = dso->syms;
Rich Felkerb418ea12016-11-11 12:30:24 -0500210 Elf_Symndx *hashtab = dso->hashtab;
Rich Felker05eff012012-08-05 02:38:35 -0400211 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400212 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400213 if ((!dso->versym || dso->versym[i] >= 0)
214 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400215 return syms+i;
216 }
217 return 0;
218}
219
Alexander Monakov8f08a582015-06-28 02:48:33 +0300220static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
Rich Felker2bd05a42012-08-25 17:13:28 -0400221{
Rich Felker2bd05a42012-08-25 17:13:28 -0400222 uint32_t nbuckets = hashtab[0];
223 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
Rich Felker72482f92013-08-08 16:10:35 -0400224 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400225
Rich Felker72482f92013-08-08 16:10:35 -0400226 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400227
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300228 uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400229
Rich Felker72482f92013-08-08 16:10:35 -0400230 for (h1 |= 1; ; i++) {
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300231 uint32_t h2 = *hashval++;
232 if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
233 && !strcmp(s, dso->strings + dso->syms[i].st_name))
234 return dso->syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400235 if (h2 & 1) break;
236 }
237
238 return 0;
239}
240
Alexander Monakov8f08a582015-06-28 02:48:33 +0300241static Sym *gnu_lookup_filtered(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s, uint32_t fofs, size_t fmask)
Alexander Monakov84389c62015-06-28 02:48:31 +0300242{
Alexander Monakov84389c62015-06-28 02:48:31 +0300243 const size_t *bloomwords = (const void *)(hashtab+4);
244 size_t f = bloomwords[fofs & (hashtab[2]-1)];
245 if (!(f & fmask)) return 0;
246
247 f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
248 if (!(f & 1)) return 0;
249
Alexander Monakov8f08a582015-06-28 02:48:33 +0300250 return gnu_lookup(h1, hashtab, dso, s);
Alexander Monakov84389c62015-06-28 02:48:31 +0300251}
252
Rich Felker9c748562012-10-04 22:48:33 -0400253#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 -0400254#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400255
Rich Felker2d8cc922014-06-30 01:18:14 -0400256#ifndef ARCH_SYM_REJECT_UND
257#define ARCH_SYM_REJECT_UND(s) 0
258#endif
259
Rich Felker9c748562012-10-04 22:48:33 -0400260static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400261{
Alexander Monakov8f08a582015-06-28 02:48:33 +0300262 uint32_t h = 0, gh, gho, *ght;
Alexander Monakov84389c62015-06-28 02:48:31 +0300263 size_t ghm = 0;
Rich Felker9c748562012-10-04 22:48:33 -0400264 struct symdef def = {0};
Rich Felker4ff234f2017-03-12 21:03:05 -0400265 for (; dso; dso=dso->syms_next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400266 Sym *sym;
Alexander Monakov8f08a582015-06-28 02:48:33 +0300267 if ((ght = dso->ghashtab)) {
Alexander Monakov84389c62015-06-28 02:48:31 +0300268 if (!ghm) {
269 gh = gnu_hash(s);
270 int maskbits = 8 * sizeof ghm;
271 gho = gh / maskbits;
272 ghm = 1ul << gh % maskbits;
273 }
Alexander Monakov8f08a582015-06-28 02:48:33 +0300274 sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
Rich Felker2bd05a42012-08-25 17:13:28 -0400275 } else {
276 if (!h) h = sysv_hash(s);
277 sym = sysv_lookup(s, h, dso);
278 }
Rich Felkerbd174312012-10-06 01:36:11 -0400279 if (!sym) continue;
280 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400281 if (need_def || (sym->st_info&0xf) == STT_TLS
282 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400283 continue;
284 if (!sym->st_value)
285 if ((sym->st_info&0xf) != STT_TLS)
286 continue;
287 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
288 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
Rich Felkerbd174312012-10-06 01:36:11 -0400289 def.sym = sym;
290 def.dso = dso;
Szabolcs Nagyc9783e42016-12-03 20:52:43 +0000291 break;
Rich Felker51e2d832011-06-18 19:48:42 -0400292 }
Rich Felker427173b2011-07-24 02:19:47 -0400293 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400294}
295
Rich Felker1b1cafa2015-04-17 23:29:45 -0400296__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400297ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
298
Rich Felker87d13a42012-08-05 02:49:02 -0400299static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400300{
Rich Felker87d13a42012-08-05 02:49:02 -0400301 unsigned char *base = dso->base;
302 Sym *syms = dso->syms;
303 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400304 Sym *sym;
305 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400306 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400307 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400308 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400309 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400310 size_t *reloc_addr;
311 size_t sym_val;
312 size_t tls_val;
313 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400314 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
315
316 if (dso == &ldso) {
317 /* Only ldso's REL table needs addend saving/reuse. */
318 if (rel == apply_addends_to)
319 reuse_addends = 1;
320 skip_relative = 1;
321 }
Rich Felker51e2d832011-06-18 19:48:42 -0400322
323 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker7a9669e2015-09-22 03:54:42 +0000324 if (skip_relative && IS_RELATIVE(rel[1], dso->syms)) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400325 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400326 if (type == REL_NONE) continue;
Rich Felkera735f532015-09-17 17:50:43 +0000327 reloc_addr = laddr(dso, rel[0]);
Rich Felker4823b132017-03-13 00:30:26 -0400328
329 if (stride > 2) {
330 addend = rel[2];
331 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
332 addend = 0;
333 } else if (reuse_addends) {
334 /* Save original addend in stage 2 where the dso
335 * chain consists of just ldso; otherwise read back
336 * saved addend since the inline one was clobbered. */
337 if (head==&ldso)
338 saved_addends[save_slot] = *reloc_addr;
339 addend = saved_addends[save_slot++];
340 } else {
341 addend = *reloc_addr;
342 }
343
344 sym_index = R_SYM(rel[1]);
Rich Felker51e2d832011-06-18 19:48:42 -0400345 if (sym_index) {
346 sym = syms + sym_index;
347 name = strings + sym->st_name;
Rich Felker4ff234f2017-03-12 21:03:05 -0400348 ctx = type==REL_COPY ? head->syms_next : head;
Rich Felker7a9669e2015-09-22 03:54:42 +0000349 def = (sym->st_info&0xf) == STT_SECTION
350 ? (struct symdef){ .dso = dso, .sym = sym }
351 : find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500352 if (!def.sym && (sym->st_shndx != SHN_UNDEF
353 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker6476b812017-03-13 08:52:41 -0400354 if (dso->lazy && (type==REL_PLT || type==REL_GOT)) {
355 dso->lazy[3*dso->lazy_cnt+0] = rel[0];
356 dso->lazy[3*dso->lazy_cnt+1] = rel[1];
357 dso->lazy[3*dso->lazy_cnt+2] = addend;
358 dso->lazy_cnt++;
359 continue;
360 }
Rich Felker9a4ad022014-06-29 21:52:54 -0400361 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400362 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400363 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400364 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400365 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400366 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400367 sym = 0;
368 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400369 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400370 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400371
Rich Felkera735f532015-09-17 17:50:43 +0000372 sym_val = def.sym ? (size_t)laddr(def.dso, def.sym->st_value) : 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400373 tls_val = def.sym ? def.sym->st_value : 0;
374
375 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400376 case REL_NONE:
377 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400378 case REL_OFFSET:
379 addend -= (size_t)reloc_addr;
380 case REL_SYMBOLIC:
381 case REL_GOT:
382 case REL_PLT:
383 *reloc_addr = sym_val + addend;
384 break;
385 case REL_RELATIVE:
386 *reloc_addr = (size_t)base + addend;
387 break;
388 case REL_SYM_OR_REL:
389 if (sym) *reloc_addr = sym_val + addend;
390 else *reloc_addr = (size_t)base + addend;
391 break;
392 case REL_COPY:
393 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
394 break;
395 case REL_OFFSET32:
396 *(uint32_t *)reloc_addr = sym_val + addend
397 - (size_t)reloc_addr;
398 break;
Rich Felker7a9669e2015-09-22 03:54:42 +0000399 case REL_FUNCDESC:
400 *reloc_addr = def.sym ? (size_t)(def.dso->funcdescs
401 + (def.sym - def.dso->syms)) : 0;
402 break;
403 case REL_FUNCDESC_VAL:
404 if ((sym->st_info&0xf) == STT_SECTION) *reloc_addr += sym_val;
405 else *reloc_addr = sym_val;
406 reloc_addr[1] = def.sym ? (size_t)def.dso->got : 0;
407 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400408 case REL_DTPMOD:
409 *reloc_addr = def.dso->tls_id;
410 break;
411 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000412 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400413 break;
414#ifdef TLS_ABOVE_TP
415 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500416 *reloc_addr = tls_val + def.dso->tls.offset + TPOFF_K + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400417 break;
418#else
419 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500420 *reloc_addr = tls_val - def.dso->tls.offset + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400421 break;
422 case REL_TPOFF_NEG:
Rich Felkerd56460c2015-11-12 15:50:26 -0500423 *reloc_addr = def.dso->tls.offset - tls_val + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400424 break;
425#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400426 case REL_TLSDESC:
427 if (stride<3) addend = reloc_addr[1];
428 if (runtime && def.dso->tls_id >= static_tls_cnt) {
429 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400430 if (!new) {
431 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400432 "Error relocating %s: cannot allocate TLSDESC for %s",
433 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400434 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400435 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400436 new->next = dso->td_index;
437 dso->td_index = new;
438 new->args[0] = def.dso->tls_id;
439 new->args[1] = tls_val + addend;
440 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
441 reloc_addr[1] = (size_t)new;
442 } else {
443 reloc_addr[0] = (size_t)__tlsdesc_static;
444#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -0500445 reloc_addr[1] = tls_val + def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400446 + TPOFF_K + addend;
447#else
Rich Felkerd56460c2015-11-12 15:50:26 -0500448 reloc_addr[1] = tls_val - def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400449 + addend;
450#endif
451 }
452 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400453 default:
454 error("Error relocating %s: unsupported relocation type %d",
455 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400456 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400457 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400458 }
Rich Felker51e2d832011-06-18 19:48:42 -0400459 }
460}
461
Rich Felker6476b812017-03-13 08:52:41 -0400462static void redo_lazy_relocs()
463{
464 struct dso *p = lazy_head, *next;
465 lazy_head = 0;
466 for (; p; p=next) {
467 next = p->lazy_next;
468 size_t size = p->lazy_cnt*3*sizeof(size_t);
469 p->lazy_cnt = 0;
470 do_relocs(p, p->lazy, size, 3);
471 if (p->lazy_cnt) {
472 p->lazy_next = lazy_head;
473 lazy_head = p;
474 } else {
475 free(p->lazy);
476 p->lazy = 0;
477 p->lazy_next = 0;
478 }
479 }
480}
481
Rich Felker6717e622011-06-28 19:40:14 -0400482/* A huge hack: to make up for the wastefulness of shared libraries
483 * needing at least a page of dirty memory even if they have no global
484 * data, we reclaim the gaps at the beginning and end of writable maps
485 * and "donate" them to the heap by setting up minimal malloc
486 * structures and then freeing them. */
487
Timo Teräse13a2b82014-03-25 14:13:27 +0200488static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400489{
490 size_t *a, *z;
Timo Teräse13a2b82014-03-25 14:13:27 +0200491 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
492 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Rich Felker6717e622011-06-28 19:40:14 -0400493 start = start + 6*sizeof(size_t)-1 & -4*sizeof(size_t);
494 end = (end & -4*sizeof(size_t)) - 2*sizeof(size_t);
495 if (start>end || end-start < 4*sizeof(size_t)) return;
Rich Felker301335a2015-09-17 17:18:09 +0000496 a = laddr(dso, start);
497 z = laddr(dso, end);
Rich Felker6717e622011-06-28 19:40:14 -0400498 a[-2] = 1;
499 a[-1] = z[0] = end-start + 2*sizeof(size_t) | 1;
500 z[1] = 1;
501 free(a);
502}
503
Timo Teräs87691962014-03-25 20:59:50 +0200504static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400505{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400506 Phdr *ph = dso->phdr;
507 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200508
Rich Felker7a9669e2015-09-22 03:54:42 +0000509 if (DL_FDPIC) return; // FIXME
Rich Felkerfa7248c2014-03-25 16:21:50 -0400510 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400511 if (ph->p_type!=PT_LOAD) continue;
512 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200513 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
514 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400515 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
516 }
517}
518
Rich Felkerce337da2015-06-23 04:03:42 +0000519static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
520{
Rich Felker9439ebd2015-11-11 17:34:17 -0500521 static int no_map_fixed;
522 char *q;
523 if (!no_map_fixed) {
524 q = mmap(p, n, prot, flags|MAP_FIXED, fd, off);
525 if (!DL_NOMMU_SUPPORT || q != MAP_FAILED || errno != EINVAL)
526 return q;
527 no_map_fixed = 1;
528 }
Rich Felkerce337da2015-06-23 04:03:42 +0000529 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
530 if (flags & MAP_ANONYMOUS) {
531 memset(p, 0, n);
532 return p;
533 }
534 ssize_t r;
535 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
536 for (q=p; n; q+=r, off+=r, n-=r) {
537 r = read(fd, q, n);
538 if (r < 0 && errno != EINTR) return MAP_FAILED;
539 if (!r) {
540 memset(q, 0, n);
541 break;
542 }
543 }
544 return p;
545}
546
Rich Felkereaf7ab62015-09-22 19:12:48 +0000547static void unmap_library(struct dso *dso)
548{
549 if (dso->loadmap) {
550 size_t i;
551 for (i=0; i<dso->loadmap->nsegs; i++) {
552 if (!dso->loadmap->segs[i].p_memsz)
553 continue;
554 munmap((void *)dso->loadmap->segs[i].addr,
555 dso->loadmap->segs[i].p_memsz);
556 }
557 free(dso->loadmap);
558 } else if (dso->map && dso->map_len) {
559 munmap(dso->map, dso->map_len);
560 }
561}
562
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400563static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400564{
Rich Felker59633c72011-06-25 12:26:08 -0400565 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400566 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400567 size_t phsize;
568 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
569 size_t this_min, this_max;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000570 size_t nsegs = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400571 off_t off_start;
572 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400573 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400574 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400575 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400576 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400577 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400578 size_t i;
579
580 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400581 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400582 if (l<0) return 0;
583 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
584 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400585 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400586 if (phsize > sizeof buf - sizeof *eh) {
587 allocated_buf = malloc(phsize);
588 if (!allocated_buf) return 0;
589 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
590 if (l < 0) goto error;
591 if (l != phsize) goto noexec;
592 ph = ph0 = allocated_buf;
593 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400594 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400595 if (l < 0) goto error;
596 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400597 ph = ph0 = (void *)(buf + 1);
598 } else {
599 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400600 }
Rich Felker51e2d832011-06-18 19:48:42 -0400601 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400602 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400603 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400604 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400605 tls_image = ph->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -0500606 dso->tls.align = ph->p_align;
607 dso->tls.len = ph->p_filesz;
608 dso->tls.size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200609 } else if (ph->p_type == PT_GNU_RELRO) {
610 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
611 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400612 }
Rich Felker51e2d832011-06-18 19:48:42 -0400613 if (ph->p_type != PT_LOAD) continue;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000614 nsegs++;
Rich Felker51e2d832011-06-18 19:48:42 -0400615 if (ph->p_vaddr < addr_min) {
616 addr_min = ph->p_vaddr;
617 off_start = ph->p_offset;
618 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
619 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
620 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
621 }
622 if (ph->p_vaddr+ph->p_memsz > addr_max) {
623 addr_max = ph->p_vaddr+ph->p_memsz;
624 }
625 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400626 if (!dyn) goto noexec;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000627 if (DL_FDPIC && !(eh->e_flags & FDPIC_CONSTDISP_FLAG)) {
628 dso->loadmap = calloc(1, sizeof *dso->loadmap
629 + nsegs * sizeof *dso->loadmap->segs);
630 if (!dso->loadmap) goto error;
631 dso->loadmap->nsegs = nsegs;
632 for (ph=ph0, i=0; i<nsegs; ph=(void *)((char *)ph+eh->e_phentsize)) {
633 if (ph->p_type != PT_LOAD) continue;
634 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
635 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
636 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
637 map = mmap(0, ph->p_memsz + (ph->p_vaddr & PAGE_SIZE-1),
Rich Felker5fe38512015-11-15 21:28:41 -0500638 prot, MAP_PRIVATE,
Rich Felkereaf7ab62015-09-22 19:12:48 +0000639 fd, ph->p_offset & -PAGE_SIZE);
640 if (map == MAP_FAILED) {
641 unmap_library(dso);
642 goto error;
643 }
644 dso->loadmap->segs[i].addr = (size_t)map +
645 (ph->p_vaddr & PAGE_SIZE-1);
646 dso->loadmap->segs[i].p_vaddr = ph->p_vaddr;
647 dso->loadmap->segs[i].p_memsz = ph->p_memsz;
648 i++;
Rich Felkerfead7e32015-10-28 21:45:31 -0400649 if (prot & PROT_WRITE) {
650 size_t brk = (ph->p_vaddr & PAGE_SIZE-1)
651 + ph->p_filesz;
652 size_t pgbrk = brk + PAGE_SIZE-1 & -PAGE_SIZE;
653 size_t pgend = brk + ph->p_memsz - ph->p_filesz
654 + PAGE_SIZE-1 & -PAGE_SIZE;
655 if (pgend > pgbrk && mmap_fixed(map+pgbrk,
656 pgend-pgbrk, prot,
657 MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS,
658 -1, off_start) == MAP_FAILED)
659 goto error;
660 memset(map + brk, 0, pgbrk-brk);
661 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000662 }
663 map = (void *)dso->loadmap->segs[0].addr;
664 map_len = 0;
665 goto done_mapping;
666 }
Rich Felker51e2d832011-06-18 19:48:42 -0400667 addr_max += PAGE_SIZE-1;
668 addr_max &= -PAGE_SIZE;
669 addr_min &= -PAGE_SIZE;
670 off_start &= -PAGE_SIZE;
671 map_len = addr_max - addr_min + off_start;
672 /* The first time, we map too much, possibly even more than
673 * the length of the file. This is okay because we will not
674 * use the invalid part; we just need to reserve the right
675 * amount of virtual address space to map over later. */
Rich Felker9439ebd2015-11-11 17:34:17 -0500676 map = DL_NOMMU_SUPPORT
677 ? mmap((void *)addr_min, map_len, PROT_READ|PROT_WRITE|PROT_EXEC,
678 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
679 : mmap((void *)addr_min, map_len, prot,
680 MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400681 if (map==MAP_FAILED) goto error;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000682 dso->map = map;
683 dso->map_len = map_len;
Rich Felker339516a2013-07-31 14:42:08 -0400684 /* If the loaded file is not relocatable and the requested address is
685 * not available, then the load operation must fail. */
686 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
687 errno = EBUSY;
688 goto error;
689 }
Rich Felker51e2d832011-06-18 19:48:42 -0400690 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400691 dso->phdr = 0;
692 dso->phnum = 0;
693 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400694 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400695 /* Check if the programs headers are in this load segment, and
696 * if so, record the address for use by dl_iterate_phdr. */
697 if (!dso->phdr && eh->e_phoff >= ph->p_offset
698 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
699 dso->phdr = (void *)(base + ph->p_vaddr
700 + (eh->e_phoff-ph->p_offset));
701 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200702 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400703 }
Rich Felker51e2d832011-06-18 19:48:42 -0400704 /* Reuse the existing mapping for the lowest-address LOAD */
Rich Felker9439ebd2015-11-11 17:34:17 -0500705 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min && !DL_NOMMU_SUPPORT)
706 continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400707 this_min = ph->p_vaddr & -PAGE_SIZE;
708 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
709 off_start = ph->p_offset & -PAGE_SIZE;
710 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
711 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
712 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000713 if (mmap_fixed(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400714 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400715 if (ph->p_memsz > ph->p_filesz) {
716 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
717 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
718 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000719 if (pgbrk-(size_t)base < this_max && mmap_fixed((void *)pgbrk, (size_t)base+this_max-pgbrk, prot, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) == MAP_FAILED)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400720 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400721 }
722 }
Rich Felker9f174132011-06-29 00:29:08 -0400723 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
724 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000725 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
726 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400727 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400728 break;
729 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000730done_mapping:
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400731 dso->base = base;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000732 dso->dynv = laddr(dso, dyn);
Rich Felkerd56460c2015-11-12 15:50:26 -0500733 if (dso->tls.size) dso->tls.image = laddr(dso, tls_image);
Timo Teräs87691962014-03-25 20:59:50 +0200734 if (!runtime) reclaim_gaps(dso);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400735 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400736 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400737noexec:
738 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400739error:
Rich Felkereaf7ab62015-09-22 19:12:48 +0000740 if (map!=MAP_FAILED) unmap_library(dso);
Rich Felkerd5884a52013-08-02 09:56:49 -0400741 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400742 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400743}
744
Rich Felker8c203ea2013-04-20 11:51:58 -0400745static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400746{
Rich Felker8c203ea2013-04-20 11:51:58 -0400747 size_t l;
748 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400749 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400750 s += strspn(s, ":\n");
751 l = strcspn(s, ":\n");
752 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400753 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
754 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
755 switch (errno) {
756 case ENOENT:
757 case ENOTDIR:
758 case EACCES:
759 case ENAMETOOLONG:
760 break;
761 default:
762 /* Any negative value but -1 will inhibit
763 * futher path search. */
764 return -2;
765 }
766 }
Rich Felker49388f32011-06-25 17:49:16 -0400767 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400768 }
Rich Felker568b8072011-06-25 01:56:34 -0400769}
770
Rich Felkera897a202013-08-23 13:56:30 -0400771static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
772{
773 size_t n, l;
774 const char *s, *t, *origin;
775 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400776 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400777 if (!strchr(p->rpath_orig, '$')) {
778 p->rpath = p->rpath_orig;
779 return 0;
780 }
781 n = 0;
782 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400783 while ((t=strchr(s, '$'))) {
784 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400785 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400786 s = t+1;
787 n++;
788 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400789 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400790
791 if (p->kernel_mapped) {
792 /* $ORIGIN searches cannot be performed for the main program
793 * when it is suid/sgid/AT_SECURE. This is because the
794 * pathname is under the control of the caller of execve.
795 * For libraries, however, $ORIGIN can be processed safely
796 * since the library's pathname came from a trusted source
797 * (either system paths or a call to dlopen). */
798 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400799 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400800 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400801 if (l == -1) switch (errno) {
802 case ENOENT:
803 case ENOTDIR:
804 case EACCES:
805 break;
806 default:
Rich Felkera897a202013-08-23 13:56:30 -0400807 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400808 }
809 if (l >= buf_size)
810 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400811 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400812 origin = buf;
813 } else {
814 origin = p->name;
815 }
816 t = strrchr(origin, '/');
817 l = t ? t-origin : 0;
818 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
819 if (!p->rpath) return -1;
820
821 d = p->rpath;
822 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400823 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400824 memcpy(d, s, t-s);
825 d += t-s;
826 memcpy(d, origin, l);
827 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400828 /* It was determined previously that the '$' is followed
829 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400830 s = t + 7 + 2*(t[1]=='{');
831 }
832 strcpy(d, s);
833 return 0;
834}
835
Rich Felkerc82f4a32012-01-23 00:57:38 -0500836static void decode_dyn(struct dso *p)
837{
Rich Felkerf4f95622015-04-13 22:38:18 -0400838 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500839 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felker301335a2015-09-17 17:18:09 +0000840 p->syms = laddr(p, dyn[DT_SYMTAB]);
841 p->strings = laddr(p, dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400842 if (dyn[0]&(1<<DT_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000843 p->hashtab = laddr(p, dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400844 if (dyn[0]&(1<<DT_RPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000845 p->rpath_orig = p->strings + dyn[DT_RPATH];
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500846 if (dyn[0]&(1<<DT_RUNPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000847 p->rpath_orig = p->strings + dyn[DT_RUNPATH];
Rich Felker7a9669e2015-09-22 03:54:42 +0000848 if (dyn[0]&(1<<DT_PLTGOT))
849 p->got = laddr(p, dyn[DT_PLTGOT]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400850 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000851 p->ghashtab = laddr(p, *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400852 if (search_vec(p->dynv, dyn, DT_VERSYM))
Rich Felker301335a2015-09-17 17:18:09 +0000853 p->versym = laddr(p, *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500854}
855
Rich Felker39581442015-09-21 21:47:50 +0000856static size_t count_syms(struct dso *p)
857{
858 if (p->hashtab) return p->hashtab[1];
859
860 size_t nsym, i;
861 uint32_t *buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
862 uint32_t *hashval;
863 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
864 if (buckets[i] > nsym)
865 nsym = buckets[i];
866 }
867 if (nsym) {
868 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]);
869 do nsym++;
870 while (!(*hashval++ & 1));
871 }
872 return nsym;
873}
874
Rich Felker7a9669e2015-09-22 03:54:42 +0000875static void *dl_mmap(size_t n)
876{
877 void *p;
878 int prot = PROT_READ|PROT_WRITE, flags = MAP_ANONYMOUS|MAP_PRIVATE;
879#ifdef SYS_mmap2
880 p = (void *)__syscall(SYS_mmap2, 0, n, prot, flags, -1, 0);
881#else
882 p = (void *)__syscall(SYS_mmap, 0, n, prot, flags, -1, 0);
883#endif
884 return p == MAP_FAILED ? 0 : p;
885}
886
887static void makefuncdescs(struct dso *p)
888{
889 static int self_done;
890 size_t nsym = count_syms(p);
891 size_t i, size = nsym * sizeof(*p->funcdescs);
892
893 if (!self_done) {
894 p->funcdescs = dl_mmap(size);
895 self_done = 1;
896 } else {
897 p->funcdescs = malloc(size);
898 }
899 if (!p->funcdescs) {
900 if (!runtime) a_crash();
901 error("Error allocating function descriptors for %s", p->name);
902 longjmp(*rtld_fail, 1);
903 }
904 for (i=0; i<nsym; i++) {
905 if ((p->syms[i].st_info&0xf)==STT_FUNC && p->syms[i].st_shndx) {
906 p->funcdescs[i].addr = laddr(p, p->syms[i].st_value);
907 p->funcdescs[i].got = p->got;
908 } else {
909 p->funcdescs[i].addr = 0;
910 p->funcdescs[i].got = 0;
911 }
912 }
913}
914
Rich Felker709355e2013-08-23 11:15:40 -0400915static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400916{
Rich Felker5c1909a2012-05-27 16:01:44 -0400917 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400918 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500919 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400920 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400921 int fd;
922 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400923 size_t alloc_size;
924 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400925 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400926
Rich Felker59549312014-07-11 00:29:44 -0400927 if (!*name) {
928 errno = EINVAL;
929 return 0;
930 }
931
Rich Felker51e2d832011-06-18 19:48:42 -0400932 /* Catch and block attempts to reload the implementation itself */
933 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
Szabolcs Nagy86e8cc02016-11-01 02:44:56 +0100934 static const char reserved[] =
Szabolcs Nagy5ffe5152016-11-01 02:49:09 +0100935 "c.pthread.rt.m.dl.util.xnet.";
936 const char *rp, *next;
937 for (rp=reserved; *rp; rp=next) {
938 next = strchr(rp, '.') + 1;
939 if (strncmp(name+3, rp, next-rp) == 0)
940 break;
941 }
942 if (*rp) {
943 if (ldd_mode) {
944 /* Track which names have been resolved
945 * and only report each one once. */
946 static unsigned reported;
947 unsigned mask = 1U<<(rp-reserved);
948 if (!(reported & mask)) {
949 reported |= mask;
950 dprintf(1, "\t%s => %s (%p)\n",
951 name, ldso.name,
952 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400953 }
Rich Felker51e2d832011-06-18 19:48:42 -0400954 }
Szabolcs Nagy5ffe5152016-11-01 02:49:09 +0100955 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400956 }
957 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400958 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400959 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400960 if (!ldso.prev) {
961 tail->next = &ldso;
962 ldso.prev = tail;
Rich Felker4ff234f2017-03-12 21:03:05 -0400963 tail = &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400964 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400965 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400966 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400967 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400968 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400969 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400970 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400971 /* Search for the name to see if it's already loaded */
972 for (p=head->next; p; p=p->next) {
973 if (p->shortname && !strcmp(p->shortname, name)) {
974 p->refcnt++;
975 return p;
976 }
977 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400978 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400979 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400980 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400981 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
982 if (fixup_rpath(p, buf, sizeof buf) < 0)
983 fd = -2; /* Inhibit further search. */
984 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -0400985 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400986 }
Rich Felker5d1c8c92015-04-01 20:27:29 -0400987 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -0400988 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -0400989 char *prefix = 0;
990 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400991 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -0400992 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400993 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -0400994 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400995 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400996 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -0400997 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -0400998 }
999 if (!prefix) {
1000 prefix = "";
1001 prefix_len = 0;
1002 }
1003 char etc_ldso_path[prefix_len + 1
1004 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
1005 snprintf(etc_ldso_path, sizeof etc_ldso_path,
1006 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
1007 (int)prefix_len, prefix);
1008 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -04001009 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -04001010 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -04001011 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -04001012 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -05001013 }
Rich Felker568b8072011-06-25 01:56:34 -04001014 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -04001015 } else if (errno != ENOENT) {
1016 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -04001017 }
1018 }
Rich Felker40d5f7e2012-11-08 22:41:16 -05001019 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
1020 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -04001021 }
Rich Felker0420b872012-07-11 01:41:20 -04001022 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -04001023 }
1024 if (fd < 0) return 0;
1025 if (fstat(fd, &st) < 0) {
1026 close(fd);
1027 return 0;
1028 }
1029 for (p=head->next; p; p=p->next) {
1030 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -04001031 /* If this library was previously loaded with a
1032 * pathname but a search found the same inode,
1033 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -04001034 if (!p->shortname && pathname != name)
1035 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -04001036 close(fd);
1037 p->refcnt++;
1038 return p;
1039 }
1040 }
Rich Felker4d07e552013-01-23 22:07:45 -05001041 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001042 close(fd);
1043 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -04001044
Rich Felkerc49d3c82017-03-14 18:51:27 -04001045 /* Avoid the danger of getting two versions of libc mapped into the
1046 * same process when an absolute pathname was used. The symbols
1047 * checked are chosen to catch both musl and glibc, and to avoid
1048 * false positives from interposition-hack libraries. */
1049 decode_dyn(&temp_dso);
1050 if (find_sym(&temp_dso, "__libc_start_main", 1).sym &&
1051 find_sym(&temp_dso, "stdin", 1).sym) {
1052 unmap_library(&temp_dso);
1053 return load_library("libc.so", needed_by);
1054 }
1055
Rich Felkerdcd60372012-10-05 11:51:50 -04001056 /* Allocate storage for the new DSO. When there is TLS, this
1057 * storage must include a reservation for all pre-existing
1058 * threads to obtain copies of both the new TLS, and an
1059 * extended DTV capable of storing an additional slot for
1060 * the newly-loaded DSO. */
1061 alloc_size = sizeof *p + strlen(pathname) + 1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001062 if (runtime && temp_dso.tls.image) {
1063 size_t per_th = temp_dso.tls.size + temp_dso.tls.align
Rich Felkerdcd60372012-10-05 11:51:50 -04001064 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -04001065 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -04001066 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
1067 else alloc_size += n_th * per_th;
1068 }
1069 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -04001070 if (!p) {
Rich Felkereaf7ab62015-09-22 19:12:48 +00001071 unmap_library(&temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001072 return 0;
1073 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001074 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001075 p->dev = st.st_dev;
1076 p->ino = st.st_ino;
Rich Felker51e2d832011-06-18 19:48:42 -04001077 p->refcnt = 1;
Rich Felker709355e2013-08-23 11:15:40 -04001078 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001079 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -04001080 strcpy(p->name, pathname);
1081 /* Add a shortname only if name arg was not an explicit pathname. */
1082 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001083 if (p->tls.image) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001084 p->tls_id = ++tls_cnt;
Rich Felkerd56460c2015-11-12 15:50:26 -05001085 tls_align = MAXP2(tls_align, p->tls.align);
Rich Felker9ec42832012-10-15 18:51:53 -04001086#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -05001087 p->tls.offset = tls_offset + ( (tls_align-1) &
1088 -(tls_offset + (uintptr_t)p->tls.image) );
1089 tls_offset += p->tls.size;
Rich Felker9ec42832012-10-15 18:51:53 -04001090#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001091 tls_offset += p->tls.size + p->tls.align - 1;
1092 tls_offset -= (tls_offset + (uintptr_t)p->tls.image)
1093 & (p->tls.align-1);
1094 p->tls.offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -04001095#endif
Rich Felkerdcd60372012-10-05 11:51:50 -04001096 p->new_dtv = (void *)(-sizeof(size_t) &
1097 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
1098 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
Rich Felkerd56460c2015-11-12 15:50:26 -05001099 if (tls_tail) tls_tail->next = &p->tls;
1100 else libc.tls_head = &p->tls;
1101 tls_tail = &p->tls;
Rich Felkerdcd60372012-10-05 11:51:50 -04001102 }
Rich Felker51e2d832011-06-18 19:48:42 -04001103
1104 tail->next = p;
1105 p->prev = tail;
1106 tail = p;
1107
Rich Felker7a9669e2015-09-22 03:54:42 +00001108 if (DL_FDPIC) makefuncdescs(p);
1109
Rich Felker1d7c4f82012-12-15 23:34:08 -05001110 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -04001111
Rich Felker51e2d832011-06-18 19:48:42 -04001112 return p;
1113}
1114
1115static void load_deps(struct dso *p)
1116{
Rich Felker59ab43f2011-06-26 19:23:28 -04001117 size_t i, ndeps=0;
1118 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -04001119 for (; p; p=p->next) {
1120 for (i=0; p->dynv[i]; i+=2) {
1121 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -04001122 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001123 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001124 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -04001125 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001126 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -04001127 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001128 }
Rich Felker59ab43f2011-06-26 19:23:28 -04001129 if (runtime) {
1130 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -04001131 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -04001132 tmp[ndeps++] = dep;
1133 tmp[ndeps] = 0;
1134 *deps = tmp;
1135 }
Rich Felker51e2d832011-06-18 19:48:42 -04001136 }
1137 }
1138}
1139
Rich Felker2719cc82011-08-16 00:24:36 -04001140static void load_preload(char *s)
1141{
1142 int tmp;
1143 char *z;
1144 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -04001145 for ( ; *s && (isspace(*s) || *s==':'); s++);
1146 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -04001147 tmp = *z;
1148 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -04001149 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -04001150 *z = tmp;
1151 }
1152}
1153
Rich Felker4ff234f2017-03-12 21:03:05 -04001154static void add_syms(struct dso *p)
Rich Felker59ab43f2011-06-26 19:23:28 -04001155{
Rich Felker4ff234f2017-03-12 21:03:05 -04001156 if (!p->syms_next && syms_tail != p) {
1157 syms_tail->syms_next = p;
1158 syms_tail = p;
1159 }
1160}
1161
1162static void revert_syms(struct dso *old_tail)
1163{
1164 struct dso *p, *next;
1165 /* Chop off the tail of the list of dsos that participate in
1166 * the global symbol table, reverting them to RTLD_LOCAL. */
1167 for (p=old_tail; p; p=next) {
1168 next = p->syms_next;
1169 p->syms_next = 0;
1170 }
1171 syms_tail = old_tail;
Rich Felker59ab43f2011-06-26 19:23:28 -04001172}
1173
Rich Felkerf3ddd172015-04-13 02:56:26 -04001174static void do_mips_relocs(struct dso *p, size_t *got)
1175{
1176 size_t i, j, rel[2];
1177 unsigned char *base = p->base;
1178 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -04001179 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001180 got += i;
1181 } else {
1182 while (i--) *got++ += (size_t)base;
1183 }
1184 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
1185 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
1186 Sym *sym = p->syms + j;
1187 rel[0] = (unsigned char *)got - base;
1188 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
Rich Felker71392a92016-03-06 17:25:52 +00001189 rel[1] = R_INFO(sym-p->syms, R_MIPS_JUMP_SLOT);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001190 do_relocs(p, rel, sizeof rel, 2);
1191 }
1192}
1193
Rich Felker51e2d832011-06-18 19:48:42 -04001194static void reloc_all(struct dso *p)
1195{
Rich Felkerf4f95622015-04-13 22:38:18 -04001196 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -04001197 for (; p; p=p->next) {
1198 if (p->relocated) continue;
1199 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001200 if (NEED_MIPS_GOT_RELOCS)
Rich Felker2a547332015-09-17 19:45:45 +00001201 do_mips_relocs(p, laddr(p, dyn[DT_PLTGOT]));
1202 do_relocs(p, laddr(p, dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
Rich Felker87d13a42012-08-05 02:49:02 -04001203 2+(dyn[DT_PLTREL]==DT_RELA));
Rich Felker2a547332015-09-17 19:45:45 +00001204 do_relocs(p, laddr(p, dyn[DT_REL]), dyn[DT_RELSZ], 2);
1205 do_relocs(p, laddr(p, dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +02001206
Rich Felkerf3ddd172015-04-13 02:56:26 -04001207 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker2a547332015-09-17 19:45:45 +00001208 mprotect(laddr(p, p->relro_start), p->relro_end-p->relro_start, PROT_READ)
Rich Felker75eceb32015-06-17 17:21:46 +00001209 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001210 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +02001211 p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001212 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +02001213 }
1214
Rich Felker368ba4a2011-06-25 00:18:19 -04001215 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -04001216 }
1217}
1218
Timo Teräs87691962014-03-25 20:59:50 +02001219static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -05001220{
Timo Teräs87691962014-03-25 20:59:50 +02001221 size_t min_addr = -1, max_addr = 0, cnt;
1222 Phdr *ph = p->phdr;
1223 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
1224 if (ph->p_type == PT_DYNAMIC) {
Rich Felker301335a2015-09-17 17:18:09 +00001225 p->dynv = laddr(p, ph->p_vaddr);
Timo Teräs87691962014-03-25 20:59:50 +02001226 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +02001227 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
1228 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
1229 }
Rich Felkerf419bcb2012-08-26 21:09:26 -04001230 if (ph->p_type != PT_LOAD) continue;
1231 if (ph->p_vaddr < min_addr)
1232 min_addr = ph->p_vaddr;
1233 if (ph->p_vaddr+ph->p_memsz > max_addr)
1234 max_addr = ph->p_vaddr+ph->p_memsz;
1235 }
1236 min_addr &= -PAGE_SIZE;
1237 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
1238 p->map = p->base + min_addr;
1239 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +02001240 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001241}
1242
Rich Felkerad1cd432015-11-11 22:08:23 -05001243void __libc_exit_fini()
Rich Felkerf4f77c02012-10-05 13:09:09 -04001244{
1245 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -04001246 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -04001247 for (p=fini_head; p; p=p->fini_next) {
1248 if (!p->constructed) continue;
1249 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001250 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
1251 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001252 size_t *fn = (size_t *)laddr(p, dyn[DT_FINI_ARRAY])+n;
Rich Felker1b413572013-07-21 02:35:46 -04001253 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -04001254 }
Rich Felker1da53da2013-07-22 14:08:33 -04001255#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001256 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felker7a9669e2015-09-22 03:54:42 +00001257 fpaddr(p, dyn[DT_FINI])();
Rich Felker1da53da2013-07-22 14:08:33 -04001258#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001259 }
1260}
1261
Rich Felker4ce3cb52012-02-06 14:39:09 -05001262static void do_init_fini(struct dso *p)
1263{
Rich Felkerf4f95622015-04-13 22:38:18 -04001264 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001265 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001266 /* Allow recursive calls that arise when a library calls
1267 * dlopen from one of its constructors, but block any
1268 * other threads until all ctors have finished. */
1269 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001270 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001271 if (p->constructed) continue;
1272 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001273 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001274 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001275 p->fini_next = fini_head;
1276 fini_head = p;
1277 }
Rich Felker1da53da2013-07-22 14:08:33 -04001278#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001279 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker7a9669e2015-09-22 03:54:42 +00001280 fpaddr(p, dyn[DT_INIT])();
Rich Felker1da53da2013-07-22 14:08:33 -04001281#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001282 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1283 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001284 size_t *fn = laddr(p, dyn[DT_INIT_ARRAY]);
Rich Felkere69ae842013-07-20 18:26:17 -04001285 while (n--) ((void (*)(void))*fn++)();
1286 }
Rich Felker509b50e2013-06-29 02:24:02 -04001287 if (!need_locking && libc.threads_minus_1) {
1288 need_locking = 1;
1289 pthread_mutex_lock(&init_fini_lock);
1290 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001291 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001292 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001293}
1294
Rich Felkerc87a5212015-09-22 20:24:28 +00001295void __libc_start_init(void)
1296{
1297 do_init_fini(tail);
1298}
1299
Rich Felker326e1262015-04-17 23:23:05 -04001300static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001301{
1302}
1303
Rich Felker326e1262015-04-17 23:23:05 -04001304weak_alias(dl_debug_state, _dl_debug_state);
1305
Rich Felkerd56460c2015-11-12 15:50:26 -05001306void __init_tls(size_t *auxv)
Rich Felker7c6c2902013-08-03 16:27:30 -04001307{
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001308}
1309
Rich Felkerbc081f62015-04-14 10:42:44 -04001310__attribute__((__visibility__("hidden")))
rofl0r1f53e7d2017-01-13 10:28:46 +00001311void *__tls_get_new(tls_mod_off_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001312{
1313 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001314
1315 /* Block signals to make accessing new TLS async-signal-safe */
1316 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001317 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001318 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001319 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001320 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001321 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001322
1323 /* This is safe without any locks held because, if the caller
1324 * is able to request the Nth entry of the DTV, the DSO list
1325 * must be valid at least that far out and it was synchronized
1326 * at program startup or by an already-completed call to dlopen. */
1327 struct dso *p;
1328 for (p=head; p->tls_id != v[0]; p=p->next);
1329
1330 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001331 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001332 void **newdtv = p->new_dtv +
Szabolcs Nagy12978ac2015-11-26 19:59:46 +01001333 (v[0]+1)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001334 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001335 ((size_t)self->dtv[0]+1) * sizeof(void *));
1336 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001337 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001338 }
1339
Rich Felkere75b16c2014-06-19 02:16:57 -04001340 /* Get new TLS memory from all new DSOs up to the requested one */
1341 unsigned char *mem;
1342 for (p=head; ; p=p->next) {
1343 if (!p->tls_id || self->dtv[p->tls_id]) continue;
Rich Felkerd56460c2015-11-12 15:50:26 -05001344 mem = p->new_tls + (p->tls.size + p->tls.align)
Rich Felkere75b16c2014-06-19 02:16:57 -04001345 * a_fetch_add(&p->new_tls_idx,1);
Rich Felkerd56460c2015-11-12 15:50:26 -05001346 mem += ((uintptr_t)p->tls.image - (uintptr_t)mem)
1347 & (p->tls.align-1);
Rich Felkere75b16c2014-06-19 02:16:57 -04001348 self->dtv[p->tls_id] = mem;
Rich Felkerd56460c2015-11-12 15:50:26 -05001349 memcpy(mem, p->tls.image, p->tls.len);
Rich Felkere75b16c2014-06-19 02:16:57 -04001350 if (p->tls_id == v[0]) break;
1351 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001352 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001353 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001354}
1355
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001356static void update_tls_size()
1357{
Rich Felkerd56460c2015-11-12 15:50:26 -05001358 libc.tls_cnt = tls_cnt;
1359 libc.tls_align = tls_align;
Rich Felker9ec42832012-10-15 18:51:53 -04001360 libc.tls_size = ALIGN(
1361 (1+tls_cnt) * sizeof(void *) +
1362 tls_offset +
1363 sizeof(struct pthread) +
1364 tls_align * 2,
1365 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001366}
1367
Rich Felkerf3ddd172015-04-13 02:56:26 -04001368/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1369 * following stage 2 and stage 3 functions via primitive symbolic lookup
1370 * since it does not have access to their addresses to begin with. */
1371
1372/* Stage 2 of the dynamic linker is called after relative relocations
1373 * have been processed. It can make function calls to static functions
1374 * and access string literals and static data, but cannot use extern
1375 * symbols. Its job is to perform symbolic relocations on the dynamic
1376 * linker itself, but some of the relocations performed may need to be
1377 * replaced later due to copy relocations in the main program. */
1378
Rich Felkerbc9b6ea2015-10-15 17:38:54 -04001379__attribute__((__visibility__("hidden")))
Rich Felker768b82c2015-05-25 19:15:17 -04001380void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001381{
Rich Felker7a9669e2015-09-22 03:54:42 +00001382 if (DL_FDPIC) {
1383 void *p1 = (void *)sp[-2];
1384 void *p2 = (void *)sp[-1];
1385 if (!p1) {
1386 size_t *auxv, aux[AUX_CNT];
1387 for (auxv=sp+1+*sp+1; *auxv; auxv++); auxv++;
1388 decode_vec(auxv, aux, AUX_CNT);
1389 if (aux[AT_BASE]) ldso.base = (void *)aux[AT_BASE];
1390 else ldso.base = (void *)(aux[AT_PHDR] & -4096);
1391 }
1392 app_loadmap = p2 ? p1 : 0;
1393 ldso.loadmap = p2 ? p2 : p1;
1394 ldso.base = laddr(&ldso, 0);
1395 } else {
1396 ldso.base = base;
1397 }
1398 Ehdr *ehdr = (void *)ldso.base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001399 ldso.name = ldso.shortname = "libc.so";
Rich Felkerf3ddd172015-04-13 02:56:26 -04001400 ldso.phnum = ehdr->e_phnum;
Rich Felker7a9669e2015-09-22 03:54:42 +00001401 ldso.phdr = laddr(&ldso, ehdr->e_phoff);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001402 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001403 kernel_mapped_dso(&ldso);
1404 decode_dyn(&ldso);
1405
Rich Felker7a9669e2015-09-22 03:54:42 +00001406 if (DL_FDPIC) makefuncdescs(&ldso);
1407
Rich Felker9bbddf72015-05-25 23:33:59 -04001408 /* Prepare storage for to save clobbered REL addends so they
1409 * can be reused in stage 3. There should be very few. If
1410 * something goes wrong and there are a huge number, abort
1411 * instead of risking stack overflow. */
1412 size_t dyn[DYN_CNT];
1413 decode_vec(ldso.dynv, dyn, DYN_CNT);
Rich Felker2a547332015-09-17 19:45:45 +00001414 size_t *rel = laddr(&ldso, dyn[DT_REL]);
Rich Felker9bbddf72015-05-25 23:33:59 -04001415 size_t rel_size = dyn[DT_RELSZ];
1416 size_t symbolic_rel_cnt = 0;
1417 apply_addends_to = rel;
1418 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
Rich Felker7a9669e2015-09-22 03:54:42 +00001419 if (!IS_RELATIVE(rel[1], ldso.syms)) symbolic_rel_cnt++;
Rich Felker9bbddf72015-05-25 23:33:59 -04001420 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1421 size_t addends[symbolic_rel_cnt+1];
1422 saved_addends = addends;
1423
Rich Felkerf3ddd172015-04-13 02:56:26 -04001424 head = &ldso;
1425 reloc_all(&ldso);
1426
1427 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001428
1429 /* Call dynamic linker stage-3, __dls3, looking it up
1430 * symbolically as a barrier against moving the address
1431 * load across the above relocation processing. */
1432 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
Rich Felker7a9669e2015-09-22 03:54:42 +00001433 if (DL_FDPIC) ((stage3_func)&ldso.funcdescs[dls3_def.sym-ldso.syms])(sp);
1434 else ((stage3_func)laddr(&ldso, dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001435}
1436
1437/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1438 * fully functional. Its job is to load (if not already loaded) and
1439 * process dependencies and relocations for the main application and
1440 * transfer control to its entry point. */
1441
1442_Noreturn void __dls3(size_t *sp)
1443{
1444 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001445 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001446 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001447 char *env_preload=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001448 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001449 int argc = *sp;
1450 char **argv = (void *)(sp+1);
1451 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001452 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001453
Rich Felker75ce4502015-06-07 20:55:23 +00001454 /* Find aux vector just past environ[] and use it to initialize
1455 * global data that may be needed before we can make syscalls. */
1456 __environ = envp;
1457 for (i=argc+1; argv[i]; i++);
1458 libc.auxv = auxv = (void *)(argv+i+1);
1459 decode_vec(auxv, aux, AUX_CNT);
1460 __hwcap = aux[AT_HWCAP];
1461 libc.page_size = aux[AT_PAGESZ];
1462 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1463 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1464
Rich Felker71f099c2015-04-13 18:40:52 -04001465 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1466 * use during dynamic linking. If possible it will also serve as the
1467 * thread pointer at runtime. */
1468 libc.tls_size = sizeof builtin_tls;
Rich Felkerd56460c2015-11-12 15:50:26 -05001469 libc.tls_align = tls_align;
Rich Felker71f099c2015-04-13 18:40:52 -04001470 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001471 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001472 }
Rich Felker51e2d832011-06-18 19:48:42 -04001473
Rich Felker568b8072011-06-25 01:56:34 -04001474 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001475 if (!libc.secure) {
1476 env_path = getenv("LD_LIBRARY_PATH");
1477 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001478 }
1479
Rich Felkerf3ddd172015-04-13 02:56:26 -04001480 /* If the main program was already loaded by the kernel,
1481 * AT_PHDR will point to some location other than the dynamic
1482 * linker's program headers. */
1483 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001484 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001485 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001486 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001487 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1488 app.phnum = aux[AT_PHNUM];
1489 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001490 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1491 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001492 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001493 else if (phdr->p_type == PT_INTERP)
1494 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001495 else if (phdr->p_type == PT_TLS) {
1496 tls_image = phdr->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -05001497 app.tls.len = phdr->p_filesz;
1498 app.tls.size = phdr->p_memsz;
1499 app.tls.align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001500 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001501 }
Rich Felker7a9669e2015-09-22 03:54:42 +00001502 if (DL_FDPIC) app.loadmap = app_loadmap;
Rich Felkerd56460c2015-11-12 15:50:26 -05001503 if (app.tls.size) app.tls.image = laddr(&app, tls_image);
Rich Felker301335a2015-09-17 17:18:09 +00001504 if (interp_off) ldso.name = laddr(&app, interp_off);
Rich Felkercc515052013-08-23 14:14:47 -04001505 if ((aux[0] & (1UL<<AT_EXECFN))
1506 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001507 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001508 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001509 app.name = argv[0];
1510 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001511 } else {
1512 int fd;
1513 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001514 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001515 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001516 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001517 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1518 char *opt = argv[0]+2;
1519 *argv++ = (void *)-1;
1520 if (!*opt) {
1521 break;
1522 } else if (!memcmp(opt, "list", 5)) {
1523 ldd_mode = 1;
1524 } else if (!memcmp(opt, "library-path", 12)) {
1525 if (opt[12]=='=') env_path = opt+13;
1526 else if (opt[12]) *argv = 0;
1527 else if (*argv) env_path = *argv++;
1528 } else if (!memcmp(opt, "preload", 7)) {
1529 if (opt[7]=='=') env_preload = opt+8;
1530 else if (opt[7]) *argv = 0;
1531 else if (*argv) env_preload = *argv++;
1532 } else {
1533 argv[0] = 0;
1534 }
Rich Felkerde451642014-04-16 12:45:36 -04001535 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001536 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001537 if (!argv[0]) {
Rich Felker0f5eb3d2016-01-22 04:04:16 +00001538 dprintf(2, "musl libc (" LDSO_ARCH ")\n"
Rich Felker179ab5a2013-12-01 17:27:25 -05001539 "Version %s\n"
1540 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001541 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001542 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001543 ldd_mode ? "" : " [args]");
1544 _exit(1);
1545 }
1546 fd = open(argv[0], O_RDONLY);
1547 if (fd < 0) {
1548 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1549 _exit(1);
1550 }
1551 runtime = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001552 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001553 if (!ehdr) {
1554 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1555 _exit(1);
1556 }
1557 runtime = 0;
1558 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001559 ldso.name = ldname;
1560 app.name = argv[0];
Rich Felker301335a2015-09-17 17:18:09 +00001561 aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
Rich Felkera97a0502013-07-26 14:41:12 -04001562 /* Find the name that would have been used for the dynamic
1563 * linker had ldd not taken its place. */
1564 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001565 for (i=0; i<app.phnum; i++) {
1566 if (app.phdr[i].p_type == PT_INTERP)
Rich Felker30fdc062015-09-22 19:21:57 +00001567 ldso.name = laddr(&app, app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001568 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001569 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001570 }
Rich Felkere12fe652012-01-23 02:02:59 -05001571 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001572 if (app.tls.size) {
Rich Felker140ad502016-01-30 14:34:45 -05001573 libc.tls_head = tls_tail = &app.tls;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001574 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001575#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -05001576 app.tls.offset = 0;
1577 tls_offset = app.tls.size
1578 + ( -((uintptr_t)app.tls.image + app.tls.size)
1579 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001580#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001581 tls_offset = app.tls.offset = app.tls.size
1582 + ( -((uintptr_t)app.tls.image + app.tls.size)
1583 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001584#endif
Rich Felkerd56460c2015-11-12 15:50:26 -05001585 tls_align = MAXP2(tls_align, app.tls.align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001586 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001587 decode_dyn(&app);
Rich Felker7a9669e2015-09-22 03:54:42 +00001588 if (DL_FDPIC) {
1589 makefuncdescs(&app);
1590 if (!app.loadmap) {
1591 app.loadmap = (void *)&app_dummy_loadmap;
1592 app.loadmap->nsegs = 1;
Rich Felker6c5cad22015-09-22 23:41:41 +00001593 app.loadmap->segs[0].addr = (size_t)app.map;
1594 app.loadmap->segs[0].p_vaddr = (size_t)app.map
1595 - (size_t)app.base;
1596 app.loadmap->segs[0].p_memsz = app.map_len;
Rich Felker7a9669e2015-09-22 03:54:42 +00001597 }
1598 argv[-3] = (void *)app.loadmap;
1599 }
Rich Felkerc82f4a32012-01-23 00:57:38 -05001600
Rich Felker4ff234f2017-03-12 21:03:05 -04001601 /* Initial dso chain consists only of the app. */
1602 head = tail = syms_tail = &app;
1603
1604 /* Donate unused parts of app and library mapping to malloc */
1605 reclaim_gaps(&app);
1606 reclaim_gaps(&ldso);
1607
1608 /* Load preload/needed libraries, add symbols to global namespace. */
1609 if (env_preload) load_preload(env_preload);
1610 load_deps(&app);
1611 for (struct dso *p=head; p; p=p->next)
1612 add_syms(p);
1613
1614 /* Attach to vdso, if provided by the kernel, last so that it does
1615 * not become part of the global namespace. */
Bobby Bingham54482892016-07-25 22:52:58 -05001616 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR) && vdso_base) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001617 Ehdr *ehdr = (void *)vdso_base;
1618 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1619 vdso.phnum = ehdr->e_phnum;
1620 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001621 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1622 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001623 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001624 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001625 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001626 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001627 vdso.name = "";
1628 vdso.shortname = "linux-gate.so.1";
Rich Felkerf3ddd172015-04-13 02:56:26 -04001629 vdso.relocated = 1;
1630 decode_dyn(&vdso);
Rich Felker4ff234f2017-03-12 21:03:05 -04001631 vdso.prev = tail;
1632 tail->next = &vdso;
1633 tail = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001634 }
1635
Felix Fietkauc18d05f2016-01-30 21:14:05 +01001636 for (i=0; app.dynv[i]; i+=2) {
1637 if (!DT_DEBUG_INDIRECT && app.dynv[i]==DT_DEBUG)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001638 app.dynv[i+1] = (size_t)&debug;
Felix Fietkauc18d05f2016-01-30 21:14:05 +01001639 if (DT_DEBUG_INDIRECT && app.dynv[i]==DT_DEBUG_INDIRECT) {
1640 size_t *ptr = (size_t *) app.dynv[i+1];
1641 *ptr = (size_t)&debug;
1642 }
1643 }
Timo Teräse13a2b82014-03-25 14:13:27 +02001644
Rich Felkerf3ddd172015-04-13 02:56:26 -04001645 /* The main program must be relocated LAST since it may contin
1646 * copy relocations which depend on libraries' relocations. */
1647 reloc_all(app.next);
1648 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001649
1650 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001651 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1652 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001653 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001654 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001655 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001656 _exit(127);
1657 }
Rich Felker71f099c2015-04-13 18:40:52 -04001658 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001659 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001660 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001661 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001662 size_t tmp_tls_size = libc.tls_size;
1663 pthread_t self = __pthread_self();
1664 /* Temporarily set the tls size to the full size of
1665 * builtin_tls so that __copy_tls will use the same layout
1666 * as it did for before. Then check, just to be safe. */
1667 libc.tls_size = sizeof builtin_tls;
1668 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1669 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001670 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001671 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001672
Rich Felker04109502012-08-18 16:00:23 -04001673 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001674 if (ldd_mode) _exit(0);
1675
Rich Felkerc82f4a32012-01-23 00:57:38 -05001676 /* Switch to runtime mode: any further failures in the dynamic
1677 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001678 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001679 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001680
Rich Felker3ec8d292012-04-25 00:05:42 -04001681 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001682 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001683 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001684 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001685 debug.state = 0;
1686 _dl_debug_state();
1687
Rich Felker75863602013-07-21 03:00:54 -04001688 errno = 0;
Rich Felker75863602013-07-21 03:00:54 -04001689
Rich Felkerf3ddd172015-04-13 02:56:26 -04001690 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1691 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001692}
1693
Rich Felker6476b812017-03-13 08:52:41 -04001694static void prepare_lazy(struct dso *p)
1695{
1696 size_t dyn[DYN_CNT], n, flags1=0;
1697 decode_vec(p->dynv, dyn, DYN_CNT);
1698 search_vec(p->dynv, &flags1, DT_FLAGS_1);
1699 if (dyn[DT_BIND_NOW] || (dyn[DT_FLAGS] & DF_BIND_NOW) || (flags1 & DF_1_NOW))
1700 return;
1701 n = dyn[DT_RELSZ]/2 + dyn[DT_RELASZ]/3 + dyn[DT_PLTRELSZ]/2 + 1;
1702 if (NEED_MIPS_GOT_RELOCS) {
1703 size_t j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
1704 size_t i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
1705 n += i-j;
1706 }
1707 p->lazy = calloc(n, 3*sizeof(size_t));
1708 if (!p->lazy) {
1709 error("Error preparing lazy relocation for %s: %m", p->name);
1710 longjmp(*rtld_fail, 1);
1711 }
1712 p->lazy_next = lazy_head;
1713 lazy_head = p;
1714}
1715
Rich Felker59ab43f2011-06-26 19:23:28 -04001716void *dlopen(const char *file, int mode)
1717{
Rich Felker6476b812017-03-13 08:52:41 -04001718 struct dso *volatile p, *orig_tail, *orig_syms_tail, *orig_lazy_head, *next;
Rich Felkerd56460c2015-11-12 15:50:26 -05001719 struct tls_module *orig_tls_tail;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001720 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001721 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001722 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001723 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001724
1725 if (!file) return head;
1726
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001727 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001728 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001729 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001730
Rich Felkerdcd60372012-10-05 11:51:50 -04001731 p = 0;
Rich Felkerd56460c2015-11-12 15:50:26 -05001732 orig_tls_tail = tls_tail;
Rich Felkerdcd60372012-10-05 11:51:50 -04001733 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001734 orig_tls_offset = tls_offset;
1735 orig_tls_align = tls_align;
Rich Felker6476b812017-03-13 08:52:41 -04001736 orig_lazy_head = lazy_head;
Rich Felker4ff234f2017-03-12 21:03:05 -04001737 orig_syms_tail = syms_tail;
Rich Felker642b7592012-10-05 01:15:25 -04001738 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001739 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001740
Rich Felker17276be2013-07-24 02:38:05 -04001741 rtld_fail = &jb;
1742 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001743 /* Clean up anything new that was (partially) loaded */
Rich Felker4ff234f2017-03-12 21:03:05 -04001744 revert_syms(orig_syms_tail);
Rich Felker59ab43f2011-06-26 19:23:28 -04001745 for (p=orig_tail->next; p; p=next) {
1746 next = p->next;
Rich Felker9d15d5e2014-06-19 02:01:06 -04001747 while (p->td_index) {
1748 void *tmp = p->td_index->next;
1749 free(p->td_index);
1750 p->td_index = tmp;
1751 }
Rich Felkereaf7ab62015-09-22 19:12:48 +00001752 free(p->funcdescs);
Rich Felker07709622015-04-04 00:15:19 -04001753 if (p->rpath != p->rpath_orig)
1754 free(p->rpath);
Rich Felker59ab43f2011-06-26 19:23:28 -04001755 free(p->deps);
Rich Felkereaf7ab62015-09-22 19:12:48 +00001756 unmap_library(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001757 free(p);
1758 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001759 if (!orig_tls_tail) libc.tls_head = 0;
1760 tls_tail = orig_tls_tail;
Rich Felker27b3fd62017-01-04 22:54:06 -05001761 if (tls_tail) tls_tail->next = 0;
Rich Felkerdcd60372012-10-05 11:51:50 -04001762 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001763 tls_offset = orig_tls_offset;
1764 tls_align = orig_tls_align;
Rich Felker6476b812017-03-13 08:52:41 -04001765 lazy_head = orig_lazy_head;
Rich Felker59ab43f2011-06-26 19:23:28 -04001766 tail = orig_tail;
1767 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001768 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001769 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001770 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001771
1772 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001773 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001774 "Library %s is not already loaded" :
1775 "Error loading shared library %s: %m",
1776 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001777 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001778 }
1779
Rich Felker59ab43f2011-06-26 19:23:28 -04001780 /* First load handling */
Rich Felker4ff234f2017-03-12 21:03:05 -04001781 if (!p->relocated) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001782 load_deps(p);
Rich Felker6476b812017-03-13 08:52:41 -04001783 if ((mode & RTLD_LAZY)) {
1784 prepare_lazy(p);
1785 if (p->deps) for (i=0; p->deps[i]; i++)
1786 if (!p->deps[i]->relocated)
1787 prepare_lazy(p->deps[i]);
1788 }
Rich Felker4ff234f2017-03-12 21:03:05 -04001789 /* Make new symbols global, at least temporarily, so we can do
1790 * relocations. If not RTLD_GLOBAL, this is reverted below. */
1791 add_syms(p);
Rich Felker0e4dae32011-06-26 21:36:44 -04001792 if (p->deps) for (i=0; p->deps[i]; i++)
Rich Felker4ff234f2017-03-12 21:03:05 -04001793 add_syms(p->deps[i]);
Rich Felker59ab43f2011-06-26 19:23:28 -04001794 reloc_all(p);
1795 }
1796
Rich Felker4ff234f2017-03-12 21:03:05 -04001797 /* If RTLD_GLOBAL was not specified, undo any new additions
1798 * to the global symbol table. This is a nop if the library was
1799 * previously loaded and already global. */
1800 if (!(mode & RTLD_GLOBAL))
1801 revert_syms(orig_syms_tail);
Rich Felker59ab43f2011-06-26 19:23:28 -04001802
Rich Felker6476b812017-03-13 08:52:41 -04001803 /* Processing of deferred lazy relocations must not happen until
1804 * the new libraries are committed; otherwise we could end up with
1805 * relocations resolved to symbol definitions that get removed. */
1806 redo_lazy_relocs();
1807
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001808 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001809 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001810 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001811end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001812 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001813 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001814 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001815 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001816 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001817 return p;
1818}
1819
Rich Felker891e6542016-01-25 18:51:33 -05001820__attribute__((__visibility__("hidden")))
1821int __dl_invalid_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001822{
1823 struct dso *p;
1824 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001825 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001826 return 1;
1827}
1828
Rich Felker6c5cad22015-09-22 23:41:41 +00001829static void *addr2dso(size_t a)
1830{
1831 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001832 size_t i;
1833 if (DL_FDPIC) for (p=head; p; p=p->next) {
1834 i = count_syms(p);
1835 if (a-(size_t)p->funcdescs < i*sizeof(*p->funcdescs))
1836 return p;
1837 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001838 for (p=head; p; p=p->next) {
1839 if (DL_FDPIC && p->loadmap) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001840 for (i=0; i<p->loadmap->nsegs; i++) {
1841 if (a-p->loadmap->segs[i].p_vaddr
1842 < p->loadmap->segs[i].p_memsz)
1843 return p;
1844 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001845 } else {
1846 if (a-(size_t)p->map < p->map_len)
1847 return p;
1848 }
1849 }
1850 return 0;
1851}
1852
rofl0r1f53e7d2017-01-13 10:28:46 +00001853void *__tls_get_addr(tls_mod_off_t *);
Rich Felker5ba238e2014-06-19 02:59:44 -04001854
Rich Felker623753a2011-08-16 00:42:13 -04001855static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001856{
1857 size_t i;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001858 uint32_t h = 0, gh = 0, *ght;
Rich Felker59ab43f2011-06-26 19:23:28 -04001859 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001860 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001861 if (p == RTLD_DEFAULT) {
1862 p = head;
1863 } else if (p == RTLD_NEXT) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001864 p = addr2dso((size_t)ra);
Rich Felker9c748562012-10-04 22:48:33 -04001865 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001866 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001867 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001868 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001869 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001870 if ((def.sym->st_info&0xf) == STT_TLS)
rofl0r1f53e7d2017-01-13 10:28:46 +00001871 return __tls_get_addr((tls_mod_off_t []){def.dso->tls_id, def.sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001872 if (DL_FDPIC && (def.sym->st_info&0xf) == STT_FUNC)
1873 return def.dso->funcdescs + (def.sym - def.dso->syms);
Rich Felker301335a2015-09-17 17:18:09 +00001874 return laddr(def.dso, def.sym->st_value);
Rich Felkera9e85c02012-03-23 00:28:20 -04001875 }
Rich Felker891e6542016-01-25 18:51:33 -05001876 if (__dl_invalid_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001877 return 0;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001878 if ((ght = p->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001879 gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001880 sym = gnu_lookup(gh, ght, p, s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001881 } else {
1882 h = sysv_hash(s);
1883 sym = sysv_lookup(s, h, p);
1884 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001885 if (sym && (sym->st_info&0xf) == STT_TLS)
rofl0r1f53e7d2017-01-13 10:28:46 +00001886 return __tls_get_addr((tls_mod_off_t []){p->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001887 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1888 return p->funcdescs + (sym - p->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001889 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001890 return laddr(p, sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001891 if (p->deps) for (i=0; p->deps[i]; i++) {
Alexander Monakov8f08a582015-06-28 02:48:33 +03001892 if ((ght = p->deps[i]->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001893 if (!gh) gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001894 sym = gnu_lookup(gh, ght, p->deps[i], s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001895 } else {
1896 if (!h) h = sysv_hash(s);
1897 sym = sysv_lookup(s, h, p->deps[i]);
1898 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001899 if (sym && (sym->st_info&0xf) == STT_TLS)
rofl0r1f53e7d2017-01-13 10:28:46 +00001900 return __tls_get_addr((tls_mod_off_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001901 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1902 return p->deps[i]->funcdescs + (sym - p->deps[i]->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001903 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001904 return laddr(p->deps[i], sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001905 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001906failed:
Rich Felker01d42742015-04-18 18:00:22 -04001907 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001908 return 0;
1909}
1910
Rich Felker4f8f0382016-01-25 18:37:05 -05001911int dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001912{
1913 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001914 Sym *sym, *bestsym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001915 uint32_t nsym;
1916 char *strings;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001917 void *best = 0;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001918
1919 pthread_rwlock_rdlock(&lock);
Rich Felker6c5cad22015-09-22 23:41:41 +00001920 p = addr2dso((size_t)addr);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001921 pthread_rwlock_unlock(&lock);
1922
1923 if (!p) return 0;
1924
1925 sym = p->syms;
1926 strings = p->strings;
Rich Felker39581442015-09-21 21:47:50 +00001927 nsym = count_syms(p);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001928
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001929 if (DL_FDPIC) {
1930 size_t idx = ((size_t)addr-(size_t)p->funcdescs)
1931 / sizeof(*p->funcdescs);
1932 if (idx < nsym && (sym[idx].st_info&0xf) == STT_FUNC) {
1933 best = p->funcdescs + idx;
1934 bestsym = sym + idx;
1935 }
1936 }
1937
1938 if (!best) for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001939 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001940 && (1<<(sym->st_info&0xf) & OK_TYPES)
1941 && (1<<(sym->st_info>>4) & OK_BINDS)) {
Rich Felker301335a2015-09-17 17:18:09 +00001942 void *symaddr = laddr(p, sym->st_value);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001943 if (symaddr > addr || symaddr < best)
1944 continue;
1945 best = symaddr;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001946 bestsym = sym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001947 if (addr == symaddr)
1948 break;
1949 }
1950 }
1951
1952 if (!best) return 0;
1953
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001954 if (DL_FDPIC && (bestsym->st_info&0xf) == STT_FUNC)
1955 best = p->funcdescs + (bestsym - p->syms);
1956
Rich Felkerf419bcb2012-08-26 21:09:26 -04001957 info->dli_fname = p->name;
1958 info->dli_fbase = p->base;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001959 info->dli_sname = strings + bestsym->st_name;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001960 info->dli_saddr = best;
1961
1962 return 1;
1963}
1964
Rich Felker72b25dd2015-04-14 11:39:11 -04001965__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04001966void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001967{
1968 void *res;
1969 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04001970 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04001971 pthread_rwlock_unlock(&lock);
1972 return res;
1973}
Rich Felker18c0e022012-10-31 21:27:48 -04001974
1975int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
1976{
1977 struct dso *current;
1978 struct dl_phdr_info info;
1979 int ret = 0;
1980 for(current = head; current;) {
1981 info.dlpi_addr = (uintptr_t)current->base;
1982 info.dlpi_name = current->name;
1983 info.dlpi_phdr = current->phdr;
1984 info.dlpi_phnum = current->phnum;
1985 info.dlpi_adds = gencnt;
1986 info.dlpi_subs = 0;
1987 info.dlpi_tls_modid = current->tls_id;
Rich Felkerd56460c2015-11-12 15:50:26 -05001988 info.dlpi_tls_data = current->tls.image;
Rich Felker18c0e022012-10-31 21:27:48 -04001989
1990 ret = (callback)(&info, sizeof (info), data);
1991
1992 if (ret != 0) break;
1993
1994 pthread_rwlock_rdlock(&lock);
1995 current = current->next;
1996 pthread_rwlock_unlock(&lock);
1997 }
1998 return ret;
1999}
Rich Felker59ab43f2011-06-26 19:23:28 -04002000
Rich Felker891e6542016-01-25 18:51:33 -05002001__attribute__((__visibility__("hidden")))
Rich Felkera4fbc822016-01-25 17:56:00 -05002002void __dl_vseterr(const char *, va_list);
Rich Felker01d42742015-04-18 18:00:22 -04002003
2004static void error(const char *fmt, ...)
2005{
2006 va_list ap;
2007 va_start(ap, fmt);
Rich Felker01d42742015-04-18 18:00:22 -04002008 if (!runtime) {
2009 vdprintf(2, fmt, ap);
2010 dprintf(2, "\n");
2011 ldso_fail = 1;
2012 va_end(ap);
2013 return;
2014 }
Rich Felkera4fbc822016-01-25 17:56:00 -05002015 __dl_vseterr(fmt, ap);
Rich Felker01d42742015-04-18 18:00:22 -04002016 va_end(ap);
Rich Felker01d42742015-04-18 18:00:22 -04002017}