blob: c6216b7c703f1b61b436d90ac77b5ae5f3c457e8 [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 Felker51e2d832011-06-18 19:48:42 -040055 Sym *syms;
Rich Felkerb418ea12016-11-11 12:30:24 -050056 Elf_Symndx *hashtab;
Rich Felker2bd05a42012-08-25 17:13:28 -040057 uint32_t *ghashtab;
Rich Felker72482f92013-08-08 16:10:35 -040058 int16_t *versym;
Rich Felker51e2d832011-06-18 19:48:42 -040059 char *strings;
Rich Felker6476b812017-03-13 08:52:41 -040060 struct dso *syms_next, *lazy_next;
61 size_t *lazy, lazy_cnt;
Rich Felker51e2d832011-06-18 19:48:42 -040062 unsigned char *map;
63 size_t map_len;
64 dev_t dev;
65 ino_t ino;
Rich Felker700a8152012-02-07 20:29:29 -050066 char relocated;
67 char constructed;
Rich Felkera897a202013-08-23 13:56:30 -040068 char kernel_mapped;
Rich Felker709355e2013-08-23 11:15:40 -040069 struct dso **deps, *needed_by;
Rich Felkera897a202013-08-23 13:56:30 -040070 char *rpath_orig, *rpath;
Rich Felkerd56460c2015-11-12 15:50:26 -050071 struct tls_module tls;
72 size_t tls_id;
Timo Teräse13a2b82014-03-25 14:13:27 +020073 size_t relro_start, relro_end;
Rich Felkerdcd60372012-10-05 11:51:50 -040074 void **new_dtv;
75 unsigned char *new_tls;
Rich Felker56fbaa32015-03-03 22:50:02 -050076 volatile int new_dtv_idx, new_tls_idx;
Rich Felker9d15d5e2014-06-19 02:01:06 -040077 struct td_index *td_index;
Rich Felkerf4f77c02012-10-05 13:09:09 -040078 struct dso *fini_next;
Rich Felker5c1909a2012-05-27 16:01:44 -040079 char *shortname;
Rich Felker7a9669e2015-09-22 03:54:42 +000080#if DL_FDPIC
81 unsigned char *base;
82#else
83 struct fdpic_loadmap *loadmap;
84#endif
85 struct funcdesc {
86 void *addr;
87 size_t *got;
88 } *funcdescs;
89 size_t *got;
Rich Felker6b3d5e52011-06-26 17:39:17 -040090 char buf[];
Rich Felker51e2d832011-06-18 19:48:42 -040091};
92
Rich Felker9c748562012-10-04 22:48:33 -040093struct symdef {
94 Sym *sym;
95 struct dso *dso;
96};
97
Rich Felkerdab441a2014-03-24 16:57:11 -040098int __init_tp(void *);
Rich Felker75863602013-07-21 03:00:54 -040099void __init_libc(char **, char *);
Rich Felkerd56460c2015-11-12 15:50:26 -0500100void *__copy_tls(unsigned char *);
Rich Felker60872cf2012-04-24 18:07:59 -0400101
Rich Felker9e0a3172015-11-12 16:13:52 -0500102__attribute__((__visibility__("hidden")))
Rich Felker179ab5a2013-12-01 17:27:25 -0500103const char *__libc_get_version(void);
104
Rich Felkerbd679592015-03-06 13:27:08 -0500105static struct builtin_tls {
106 char c;
107 struct pthread pt;
108 void *space[16];
109} builtin_tls[1];
110#define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
111
Rich Felker9bbddf72015-05-25 23:33:59 -0400112#define ADDEND_LIMIT 4096
113static size_t *saved_addends, *apply_addends_to;
114
Rich Felkerf3ddd172015-04-13 02:56:26 -0400115static struct dso ldso;
Rich Felker6476b812017-03-13 08:52:41 -0400116static struct dso *head, *tail, *fini_head, *syms_tail, *lazy_head;
Rich Felker709355e2013-08-23 11:15:40 -0400117static char *env_path, *sys_path;
Rich Felker18c0e022012-10-31 21:27:48 -0400118static unsigned long long gencnt;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400119static int runtime;
Rich Felker5c1909a2012-05-27 16:01:44 -0400120static int ldd_mode;
Rich Felker04109502012-08-18 16:00:23 -0400121static int ldso_fail;
Rich Felker4d07e552013-01-23 22:07:45 -0500122static int noload;
Rich Felker17276be2013-07-24 02:38:05 -0400123static jmp_buf *rtld_fail;
Rich Felker59ab43f2011-06-26 19:23:28 -0400124static pthread_rwlock_t lock;
Rich Felker3ec8d292012-04-25 00:05:42 -0400125static struct debug debug;
Rich Felkerd56460c2015-11-12 15:50:26 -0500126static struct tls_module *tls_tail;
Rich Felkerbd679592015-03-06 13:27:08 -0500127static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
Rich Felker9d15d5e2014-06-19 02:01:06 -0400128static size_t static_tls_cnt;
Rich Felkerf4f77c02012-10-05 13:09:09 -0400129static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
Rich Felker7a9669e2015-09-22 03:54:42 +0000130static struct fdpic_loadmap *app_loadmap;
131static struct fdpic_dummy_loadmap app_dummy_loadmap;
Rich Felker66b53cf2017-07-04 10:58:13 -0400132static struct dso *const nodeps_dummy;
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")))
Rich Felkerb4b1e102018-04-19 22:19:29 -0400137extern int __malloc_replaced;
138
139__attribute__((__visibility__("hidden")))
Rich Felker19caa252015-11-19 20:28:08 -0500140void (*const __init_array_start)(void)=0, (*const __fini_array_start)(void)=0;
141
142__attribute__((__visibility__("hidden")))
143extern void (*const __init_array_end)(void), (*const __fini_array_end)(void);
144
145weak_alias(__init_array_start, __init_array_end);
146weak_alias(__fini_array_start, __fini_array_end);
147
Rich Felkerf3ddd172015-04-13 02:56:26 -0400148static int dl_strcmp(const char *l, const char *r)
149{
150 for (; *l==*r && *l; l++, r++);
151 return *(unsigned char *)l - *(unsigned char *)r;
152}
153#define strcmp(l,r) dl_strcmp(l,r)
Rich Felker51e2d832011-06-18 19:48:42 -0400154
Rich Felker301335a2015-09-17 17:18:09 +0000155/* Compute load address for a virtual address in a given dso. */
Rich Felker78f43022015-09-22 20:20:39 +0000156#if DL_FDPIC
Rich Felker7a9669e2015-09-22 03:54:42 +0000157static void *laddr(const struct dso *p, size_t v)
158{
159 size_t j=0;
160 if (!p->loadmap) return p->base + v;
161 for (j=0; v-p->loadmap->segs[j].p_vaddr >= p->loadmap->segs[j].p_memsz; j++);
162 return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
163}
Rich Felkerd610c142018-04-17 15:55:18 -0400164static void *laddr_pg(const struct dso *p, size_t v)
165{
166 size_t j=0;
167 size_t pgsz = PAGE_SIZE;
168 if (!p->loadmap) return p->base + v;
169 for (j=0; ; j++) {
170 size_t a = p->loadmap->segs[j].p_vaddr;
171 size_t b = a + p->loadmap->segs[j].p_memsz;
172 a &= -pgsz;
173 b += pgsz-1;
174 b &= -pgsz;
175 if (v-a<b-a) break;
176 }
177 return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
178}
Rich Felker7a9669e2015-09-22 03:54:42 +0000179#define fpaddr(p, v) ((void (*)())&(struct funcdesc){ \
180 laddr(p, v), (p)->got })
181#else
Rich Felker301335a2015-09-17 17:18:09 +0000182#define laddr(p, v) (void *)((p)->base + (v))
Rich Felkerd610c142018-04-17 15:55:18 -0400183#define laddr_pg(p, v) laddr(p, v)
Rich Felker7a9669e2015-09-22 03:54:42 +0000184#define fpaddr(p, v) ((void (*)())laddr(p, v))
185#endif
Rich Felker301335a2015-09-17 17:18:09 +0000186
Rich Felker51e2d832011-06-18 19:48:42 -0400187static void decode_vec(size_t *v, size_t *a, size_t cnt)
188{
Rich Felkerf3ddd172015-04-13 02:56:26 -0400189 size_t i;
190 for (i=0; i<cnt; i++) a[i] = 0;
191 for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
192 a[0] |= 1UL<<v[0];
Rich Felker51e2d832011-06-18 19:48:42 -0400193 a[v[0]] = v[1];
194 }
195}
196
Rich Felker2bd05a42012-08-25 17:13:28 -0400197static int search_vec(size_t *v, size_t *r, size_t key)
198{
199 for (; v[0]!=key; v+=2)
200 if (!v[0]) return 0;
201 *r = v[1];
202 return 1;
203}
204
205static uint32_t sysv_hash(const char *s0)
Rich Felker51e2d832011-06-18 19:48:42 -0400206{
Rich Felker2adf2fb2012-01-17 00:34:58 -0500207 const unsigned char *s = (void *)s0;
Rich Felker51e2d832011-06-18 19:48:42 -0400208 uint_fast32_t h = 0;
209 while (*s) {
210 h = 16*h + *s++;
211 h ^= h>>24 & 0xf0;
212 }
213 return h & 0xfffffff;
214}
215
Rich Felker2bd05a42012-08-25 17:13:28 -0400216static uint32_t gnu_hash(const char *s0)
217{
218 const unsigned char *s = (void *)s0;
219 uint_fast32_t h = 5381;
220 for (; *s; s++)
Alexander Monakov66d45782015-06-28 02:48:30 +0300221 h += h*32 + *s;
Rich Felker2bd05a42012-08-25 17:13:28 -0400222 return h;
223}
224
225static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400226{
227 size_t i;
Rich Felker05eff012012-08-05 02:38:35 -0400228 Sym *syms = dso->syms;
Rich Felkerb418ea12016-11-11 12:30:24 -0500229 Elf_Symndx *hashtab = dso->hashtab;
Rich Felker05eff012012-08-05 02:38:35 -0400230 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400231 for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
Rich Felker72482f92013-08-08 16:10:35 -0400232 if ((!dso->versym || dso->versym[i] >= 0)
233 && (!strcmp(s, strings+syms[i].st_name)))
Rich Felker51e2d832011-06-18 19:48:42 -0400234 return syms+i;
235 }
236 return 0;
237}
238
Alexander Monakov8f08a582015-06-28 02:48:33 +0300239static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
Rich Felker2bd05a42012-08-25 17:13:28 -0400240{
Rich Felker2bd05a42012-08-25 17:13:28 -0400241 uint32_t nbuckets = hashtab[0];
242 uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
Rich Felker72482f92013-08-08 16:10:35 -0400243 uint32_t i = buckets[h1 % nbuckets];
Rich Felker2bd05a42012-08-25 17:13:28 -0400244
Rich Felker72482f92013-08-08 16:10:35 -0400245 if (!i) return 0;
Rich Felker2bd05a42012-08-25 17:13:28 -0400246
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300247 uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400248
Rich Felker72482f92013-08-08 16:10:35 -0400249 for (h1 |= 1; ; i++) {
Alexander Monakov5b4286e2015-06-28 02:48:32 +0300250 uint32_t h2 = *hashval++;
251 if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
252 && !strcmp(s, dso->strings + dso->syms[i].st_name))
253 return dso->syms+i;
Rich Felker2bd05a42012-08-25 17:13:28 -0400254 if (h2 & 1) break;
255 }
256
257 return 0;
258}
259
Alexander Monakov8f08a582015-06-28 02:48:33 +0300260static 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 +0300261{
Alexander Monakov84389c62015-06-28 02:48:31 +0300262 const size_t *bloomwords = (const void *)(hashtab+4);
263 size_t f = bloomwords[fofs & (hashtab[2]-1)];
264 if (!(f & fmask)) return 0;
265
266 f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
267 if (!(f & 1)) return 0;
268
Alexander Monakov8f08a582015-06-28 02:48:33 +0300269 return gnu_lookup(h1, hashtab, dso, s);
Alexander Monakov84389c62015-06-28 02:48:31 +0300270}
271
Rich Felker9c748562012-10-04 22:48:33 -0400272#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 -0400273#define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
Rich Felker51e2d832011-06-18 19:48:42 -0400274
Rich Felker2d8cc922014-06-30 01:18:14 -0400275#ifndef ARCH_SYM_REJECT_UND
276#define ARCH_SYM_REJECT_UND(s) 0
277#endif
278
Rich Felker9c748562012-10-04 22:48:33 -0400279static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
Rich Felker51e2d832011-06-18 19:48:42 -0400280{
Rich Felkera393d5c2017-03-15 16:50:19 -0400281 uint32_t h = 0, gh = gnu_hash(s), gho = gh / (8*sizeof(size_t)), *ght;
282 size_t ghm = 1ul << gh % (8*sizeof(size_t));
Rich Felker9c748562012-10-04 22:48:33 -0400283 struct symdef def = {0};
Rich Felker4ff234f2017-03-12 21:03:05 -0400284 for (; dso; dso=dso->syms_next) {
Rich Felker59ab43f2011-06-26 19:23:28 -0400285 Sym *sym;
Alexander Monakov8f08a582015-06-28 02:48:33 +0300286 if ((ght = dso->ghashtab)) {
Alexander Monakov8f08a582015-06-28 02:48:33 +0300287 sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
Rich Felker2bd05a42012-08-25 17:13:28 -0400288 } else {
289 if (!h) h = sysv_hash(s);
290 sym = sysv_lookup(s, h, dso);
291 }
Rich Felkerbd174312012-10-06 01:36:11 -0400292 if (!sym) continue;
293 if (!sym->st_shndx)
Rich Felker2d8cc922014-06-30 01:18:14 -0400294 if (need_def || (sym->st_info&0xf) == STT_TLS
295 || ARCH_SYM_REJECT_UND(sym))
Rich Felkerbd174312012-10-06 01:36:11 -0400296 continue;
297 if (!sym->st_value)
298 if ((sym->st_info&0xf) != STT_TLS)
299 continue;
300 if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
301 if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
Rich Felkerbd174312012-10-06 01:36:11 -0400302 def.sym = sym;
303 def.dso = dso;
Szabolcs Nagyc9783e42016-12-03 20:52:43 +0000304 break;
Rich Felker51e2d832011-06-18 19:48:42 -0400305 }
Rich Felker427173b2011-07-24 02:19:47 -0400306 return def;
Rich Felker51e2d832011-06-18 19:48:42 -0400307}
308
Rich Felker1b1cafa2015-04-17 23:29:45 -0400309__attribute__((__visibility__("hidden")))
Rich Felker9d15d5e2014-06-19 02:01:06 -0400310ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
311
Rich Felker87d13a42012-08-05 02:49:02 -0400312static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
Rich Felker51e2d832011-06-18 19:48:42 -0400313{
Rich Felker87d13a42012-08-05 02:49:02 -0400314 unsigned char *base = dso->base;
315 Sym *syms = dso->syms;
316 char *strings = dso->strings;
Rich Felker51e2d832011-06-18 19:48:42 -0400317 Sym *sym;
318 const char *name;
Rich Felker51e2d832011-06-18 19:48:42 -0400319 void *ctx;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400320 int type;
Rich Felker51e2d832011-06-18 19:48:42 -0400321 int sym_index;
Rich Felker9c748562012-10-04 22:48:33 -0400322 struct symdef def;
Rich Felkeradf94c12014-06-18 02:44:02 -0400323 size_t *reloc_addr;
324 size_t sym_val;
325 size_t tls_val;
326 size_t addend;
Rich Felker9bbddf72015-05-25 23:33:59 -0400327 int skip_relative = 0, reuse_addends = 0, save_slot = 0;
328
329 if (dso == &ldso) {
330 /* Only ldso's REL table needs addend saving/reuse. */
331 if (rel == apply_addends_to)
332 reuse_addends = 1;
333 skip_relative = 1;
334 }
Rich Felker51e2d832011-06-18 19:48:42 -0400335
336 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
Rich Felker7a9669e2015-09-22 03:54:42 +0000337 if (skip_relative && IS_RELATIVE(rel[1], dso->syms)) continue;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400338 type = R_TYPE(rel[1]);
Rich Felkerb6a6cd72015-06-04 11:45:17 -0400339 if (type == REL_NONE) continue;
Rich Felkera735f532015-09-17 17:50:43 +0000340 reloc_addr = laddr(dso, rel[0]);
Rich Felker4823b132017-03-13 00:30:26 -0400341
342 if (stride > 2) {
343 addend = rel[2];
344 } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
345 addend = 0;
346 } else if (reuse_addends) {
347 /* Save original addend in stage 2 where the dso
348 * chain consists of just ldso; otherwise read back
349 * saved addend since the inline one was clobbered. */
350 if (head==&ldso)
351 saved_addends[save_slot] = *reloc_addr;
352 addend = saved_addends[save_slot++];
353 } else {
354 addend = *reloc_addr;
355 }
356
357 sym_index = R_SYM(rel[1]);
Rich Felker51e2d832011-06-18 19:48:42 -0400358 if (sym_index) {
359 sym = syms + sym_index;
360 name = strings + sym->st_name;
Rich Felker4ff234f2017-03-12 21:03:05 -0400361 ctx = type==REL_COPY ? head->syms_next : head;
Rich Felker7a9669e2015-09-22 03:54:42 +0000362 def = (sym->st_info&0xf) == STT_SECTION
363 ? (struct symdef){ .dso = dso, .sym = sym }
364 : find_sym(ctx, name, type==REL_PLT);
Rich Felker69003e02014-01-21 00:36:35 -0500365 if (!def.sym && (sym->st_shndx != SHN_UNDEF
366 || sym->st_info>>4 != STB_WEAK)) {
Rich Felker6476b812017-03-13 08:52:41 -0400367 if (dso->lazy && (type==REL_PLT || type==REL_GOT)) {
368 dso->lazy[3*dso->lazy_cnt+0] = rel[0];
369 dso->lazy[3*dso->lazy_cnt+1] = rel[1];
370 dso->lazy[3*dso->lazy_cnt+2] = addend;
371 dso->lazy_cnt++;
372 continue;
373 }
Rich Felker9a4ad022014-06-29 21:52:54 -0400374 error("Error relocating %s: %s: symbol not found",
Rich Felker87d13a42012-08-05 02:49:02 -0400375 dso->name, name);
Rich Felker01d42742015-04-18 18:00:22 -0400376 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -0400377 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -0400378 }
Rich Felker7d9a5c62012-08-05 14:03:17 -0400379 } else {
Rich Felker9c748562012-10-04 22:48:33 -0400380 sym = 0;
381 def.sym = 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400382 def.dso = dso;
Rich Felker51e2d832011-06-18 19:48:42 -0400383 }
Rich Felkeradf94c12014-06-18 02:44:02 -0400384
Rich Felkera735f532015-09-17 17:50:43 +0000385 sym_val = def.sym ? (size_t)laddr(def.dso, def.sym->st_value) : 0;
Rich Felkeradf94c12014-06-18 02:44:02 -0400386 tls_val = def.sym ? def.sym->st_value : 0;
387
388 switch(type) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400389 case REL_NONE:
390 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400391 case REL_OFFSET:
392 addend -= (size_t)reloc_addr;
393 case REL_SYMBOLIC:
394 case REL_GOT:
395 case REL_PLT:
396 *reloc_addr = sym_val + addend;
397 break;
398 case REL_RELATIVE:
399 *reloc_addr = (size_t)base + addend;
400 break;
401 case REL_SYM_OR_REL:
402 if (sym) *reloc_addr = sym_val + addend;
403 else *reloc_addr = (size_t)base + addend;
404 break;
405 case REL_COPY:
406 memcpy(reloc_addr, (void *)sym_val, sym->st_size);
407 break;
408 case REL_OFFSET32:
409 *(uint32_t *)reloc_addr = sym_val + addend
410 - (size_t)reloc_addr;
411 break;
Rich Felker7a9669e2015-09-22 03:54:42 +0000412 case REL_FUNCDESC:
413 *reloc_addr = def.sym ? (size_t)(def.dso->funcdescs
414 + (def.sym - def.dso->syms)) : 0;
415 break;
416 case REL_FUNCDESC_VAL:
417 if ((sym->st_info&0xf) == STT_SECTION) *reloc_addr += sym_val;
418 else *reloc_addr = sym_val;
419 reloc_addr[1] = def.sym ? (size_t)def.dso->got : 0;
420 break;
Rich Felkeradf94c12014-06-18 02:44:02 -0400421 case REL_DTPMOD:
422 *reloc_addr = def.dso->tls_id;
423 break;
424 case REL_DTPOFF:
Rich Felker6ba55172015-06-25 22:22:00 +0000425 *reloc_addr = tls_val + addend - DTP_OFFSET;
Rich Felkeradf94c12014-06-18 02:44:02 -0400426 break;
427#ifdef TLS_ABOVE_TP
428 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500429 *reloc_addr = tls_val + def.dso->tls.offset + TPOFF_K + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400430 break;
431#else
432 case REL_TPOFF:
Rich Felkerd56460c2015-11-12 15:50:26 -0500433 *reloc_addr = tls_val - def.dso->tls.offset + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400434 break;
435 case REL_TPOFF_NEG:
Rich Felkerd56460c2015-11-12 15:50:26 -0500436 *reloc_addr = def.dso->tls.offset - tls_val + addend;
Rich Felkeradf94c12014-06-18 02:44:02 -0400437 break;
438#endif
Rich Felker9d15d5e2014-06-19 02:01:06 -0400439 case REL_TLSDESC:
440 if (stride<3) addend = reloc_addr[1];
441 if (runtime && def.dso->tls_id >= static_tls_cnt) {
442 struct td_index *new = malloc(sizeof *new);
Rich Felker01d42742015-04-18 18:00:22 -0400443 if (!new) {
444 error(
Rich Felker9d15d5e2014-06-19 02:01:06 -0400445 "Error relocating %s: cannot allocate TLSDESC for %s",
446 dso->name, sym ? name : "(local)" );
Rich Felkerc5ab5bd2015-04-21 13:22:48 -0400447 longjmp(*rtld_fail, 1);
Rich Felker01d42742015-04-18 18:00:22 -0400448 }
Rich Felker9d15d5e2014-06-19 02:01:06 -0400449 new->next = dso->td_index;
450 dso->td_index = new;
451 new->args[0] = def.dso->tls_id;
452 new->args[1] = tls_val + addend;
453 reloc_addr[0] = (size_t)__tlsdesc_dynamic;
454 reloc_addr[1] = (size_t)new;
455 } else {
456 reloc_addr[0] = (size_t)__tlsdesc_static;
457#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -0500458 reloc_addr[1] = tls_val + def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400459 + TPOFF_K + addend;
460#else
Rich Felkerd56460c2015-11-12 15:50:26 -0500461 reloc_addr[1] = tls_val - def.dso->tls.offset
Rich Felker9d15d5e2014-06-19 02:01:06 -0400462 + addend;
463#endif
464 }
465 break;
Rich Felkerf3ddd172015-04-13 02:56:26 -0400466 default:
467 error("Error relocating %s: unsupported relocation type %d",
468 dso->name, type);
Rich Felker01d42742015-04-18 18:00:22 -0400469 if (runtime) longjmp(*rtld_fail, 1);
Rich Felkerf3ddd172015-04-13 02:56:26 -0400470 continue;
Rich Felkeradf94c12014-06-18 02:44:02 -0400471 }
Rich Felker51e2d832011-06-18 19:48:42 -0400472 }
473}
474
Rich Felker6476b812017-03-13 08:52:41 -0400475static void redo_lazy_relocs()
476{
477 struct dso *p = lazy_head, *next;
478 lazy_head = 0;
479 for (; p; p=next) {
480 next = p->lazy_next;
481 size_t size = p->lazy_cnt*3*sizeof(size_t);
482 p->lazy_cnt = 0;
483 do_relocs(p, p->lazy, size, 3);
484 if (p->lazy_cnt) {
485 p->lazy_next = lazy_head;
486 lazy_head = p;
487 } else {
488 free(p->lazy);
489 p->lazy = 0;
490 p->lazy_next = 0;
491 }
492 }
493}
494
Rich Felker6717e622011-06-28 19:40:14 -0400495/* A huge hack: to make up for the wastefulness of shared libraries
496 * needing at least a page of dirty memory even if they have no global
497 * data, we reclaim the gaps at the beginning and end of writable maps
Alexander Monakovce7ae112018-04-16 20:54:36 +0300498 * and "donate" them to the heap. */
Rich Felker6717e622011-06-28 19:40:14 -0400499
Timo Teräse13a2b82014-03-25 14:13:27 +0200500static void reclaim(struct dso *dso, size_t start, size_t end)
Rich Felker6717e622011-06-28 19:40:14 -0400501{
Alexander Monakovce7ae112018-04-16 20:54:36 +0300502 void __malloc_donate(char *, char *);
Timo Teräse13a2b82014-03-25 14:13:27 +0200503 if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
504 if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
Alexander Monakovce7ae112018-04-16 20:54:36 +0300505 if (start >= end) return;
Rich Felkerd610c142018-04-17 15:55:18 -0400506 char *base = laddr_pg(dso, start);
507 __malloc_donate(base, base+(end-start));
Rich Felker6717e622011-06-28 19:40:14 -0400508}
509
Timo Teräs87691962014-03-25 20:59:50 +0200510static void reclaim_gaps(struct dso *dso)
Rich Felker6717e622011-06-28 19:40:14 -0400511{
Rich Felkerfa7248c2014-03-25 16:21:50 -0400512 Phdr *ph = dso->phdr;
513 size_t phcnt = dso->phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200514
Rich Felkerfa7248c2014-03-25 16:21:50 -0400515 for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
Rich Felker6717e622011-06-28 19:40:14 -0400516 if (ph->p_type!=PT_LOAD) continue;
517 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
Timo Teräse13a2b82014-03-25 14:13:27 +0200518 reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
519 reclaim(dso, ph->p_vaddr+ph->p_memsz,
Rich Felker6717e622011-06-28 19:40:14 -0400520 ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
521 }
522}
523
Rich Felkerce337da2015-06-23 04:03:42 +0000524static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
525{
Rich Felker9439ebd2015-11-11 17:34:17 -0500526 static int no_map_fixed;
527 char *q;
528 if (!no_map_fixed) {
529 q = mmap(p, n, prot, flags|MAP_FIXED, fd, off);
530 if (!DL_NOMMU_SUPPORT || q != MAP_FAILED || errno != EINVAL)
531 return q;
532 no_map_fixed = 1;
533 }
Rich Felkerce337da2015-06-23 04:03:42 +0000534 /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
535 if (flags & MAP_ANONYMOUS) {
536 memset(p, 0, n);
537 return p;
538 }
539 ssize_t r;
540 if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
541 for (q=p; n; q+=r, off+=r, n-=r) {
542 r = read(fd, q, n);
543 if (r < 0 && errno != EINTR) return MAP_FAILED;
544 if (!r) {
545 memset(q, 0, n);
546 break;
547 }
548 }
549 return p;
550}
551
Rich Felkereaf7ab62015-09-22 19:12:48 +0000552static void unmap_library(struct dso *dso)
553{
554 if (dso->loadmap) {
555 size_t i;
556 for (i=0; i<dso->loadmap->nsegs; i++) {
557 if (!dso->loadmap->segs[i].p_memsz)
558 continue;
559 munmap((void *)dso->loadmap->segs[i].addr,
560 dso->loadmap->segs[i].p_memsz);
561 }
562 free(dso->loadmap);
563 } else if (dso->map && dso->map_len) {
564 munmap(dso->map, dso->map_len);
565 }
566}
567
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400568static void *map_library(int fd, struct dso *dso)
Rich Felker51e2d832011-06-18 19:48:42 -0400569{
Rich Felker59633c72011-06-25 12:26:08 -0400570 Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
Rich Felkerd5884a52013-08-02 09:56:49 -0400571 void *allocated_buf=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400572 size_t phsize;
573 size_t addr_min=SIZE_MAX, addr_max=0, map_len;
574 size_t this_min, this_max;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000575 size_t nsegs = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400576 off_t off_start;
577 Ehdr *eh;
Rich Felker30763fd2013-07-10 14:38:20 -0400578 Phdr *ph, *ph0;
Rich Felker51e2d832011-06-18 19:48:42 -0400579 unsigned prot;
Rich Felkerd5884a52013-08-02 09:56:49 -0400580 unsigned char *map=MAP_FAILED, *base;
Rich Felker7443dd22013-08-02 09:25:12 -0400581 size_t dyn=0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400582 size_t tls_image=0;
Rich Felker51e2d832011-06-18 19:48:42 -0400583 size_t i;
584
585 ssize_t l = read(fd, buf, sizeof buf);
Rich Felker59633c72011-06-25 12:26:08 -0400586 eh = buf;
Rich Felkerd5884a52013-08-02 09:56:49 -0400587 if (l<0) return 0;
588 if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
589 goto noexec;
Rich Felker51e2d832011-06-18 19:48:42 -0400590 phsize = eh->e_phentsize * eh->e_phnum;
Rich Felkerd5884a52013-08-02 09:56:49 -0400591 if (phsize > sizeof buf - sizeof *eh) {
592 allocated_buf = malloc(phsize);
593 if (!allocated_buf) return 0;
594 l = pread(fd, allocated_buf, phsize, eh->e_phoff);
595 if (l < 0) goto error;
596 if (l != phsize) goto noexec;
597 ph = ph0 = allocated_buf;
598 } else if (eh->e_phoff + phsize > l) {
Rich Felker59633c72011-06-25 12:26:08 -0400599 l = pread(fd, buf+1, phsize, eh->e_phoff);
Rich Felkerd5884a52013-08-02 09:56:49 -0400600 if (l < 0) goto error;
601 if (l != phsize) goto noexec;
Rich Felker30763fd2013-07-10 14:38:20 -0400602 ph = ph0 = (void *)(buf + 1);
603 } else {
604 ph = ph0 = (void *)((char *)buf + eh->e_phoff);
Rich Felker51e2d832011-06-18 19:48:42 -0400605 }
Rich Felker51e2d832011-06-18 19:48:42 -0400606 for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felkerfa7248c2014-03-25 16:21:50 -0400607 if (ph->p_type == PT_DYNAMIC) {
Rich Felker51e2d832011-06-18 19:48:42 -0400608 dyn = ph->p_vaddr;
Rich Felkerfa7248c2014-03-25 16:21:50 -0400609 } else if (ph->p_type == PT_TLS) {
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400610 tls_image = ph->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -0500611 dso->tls.align = ph->p_align;
612 dso->tls.len = ph->p_filesz;
613 dso->tls.size = ph->p_memsz;
Timo Teräse13a2b82014-03-25 14:13:27 +0200614 } else if (ph->p_type == PT_GNU_RELRO) {
615 dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
616 dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400617 }
Rich Felker51e2d832011-06-18 19:48:42 -0400618 if (ph->p_type != PT_LOAD) continue;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000619 nsegs++;
Rich Felker51e2d832011-06-18 19:48:42 -0400620 if (ph->p_vaddr < addr_min) {
621 addr_min = ph->p_vaddr;
622 off_start = ph->p_offset;
623 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
624 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
625 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
626 }
627 if (ph->p_vaddr+ph->p_memsz > addr_max) {
628 addr_max = ph->p_vaddr+ph->p_memsz;
629 }
630 }
Rich Felkerd5884a52013-08-02 09:56:49 -0400631 if (!dyn) goto noexec;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000632 if (DL_FDPIC && !(eh->e_flags & FDPIC_CONSTDISP_FLAG)) {
633 dso->loadmap = calloc(1, sizeof *dso->loadmap
634 + nsegs * sizeof *dso->loadmap->segs);
635 if (!dso->loadmap) goto error;
636 dso->loadmap->nsegs = nsegs;
637 for (ph=ph0, i=0; i<nsegs; ph=(void *)((char *)ph+eh->e_phentsize)) {
638 if (ph->p_type != PT_LOAD) continue;
639 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
640 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
641 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
642 map = mmap(0, ph->p_memsz + (ph->p_vaddr & PAGE_SIZE-1),
Rich Felker5fe38512015-11-15 21:28:41 -0500643 prot, MAP_PRIVATE,
Rich Felkereaf7ab62015-09-22 19:12:48 +0000644 fd, ph->p_offset & -PAGE_SIZE);
645 if (map == MAP_FAILED) {
646 unmap_library(dso);
647 goto error;
648 }
649 dso->loadmap->segs[i].addr = (size_t)map +
650 (ph->p_vaddr & PAGE_SIZE-1);
651 dso->loadmap->segs[i].p_vaddr = ph->p_vaddr;
652 dso->loadmap->segs[i].p_memsz = ph->p_memsz;
653 i++;
Rich Felkerfead7e32015-10-28 21:45:31 -0400654 if (prot & PROT_WRITE) {
655 size_t brk = (ph->p_vaddr & PAGE_SIZE-1)
656 + ph->p_filesz;
657 size_t pgbrk = brk + PAGE_SIZE-1 & -PAGE_SIZE;
658 size_t pgend = brk + ph->p_memsz - ph->p_filesz
659 + PAGE_SIZE-1 & -PAGE_SIZE;
660 if (pgend > pgbrk && mmap_fixed(map+pgbrk,
661 pgend-pgbrk, prot,
662 MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS,
663 -1, off_start) == MAP_FAILED)
664 goto error;
665 memset(map + brk, 0, pgbrk-brk);
666 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000667 }
668 map = (void *)dso->loadmap->segs[0].addr;
669 map_len = 0;
670 goto done_mapping;
671 }
Rich Felker51e2d832011-06-18 19:48:42 -0400672 addr_max += PAGE_SIZE-1;
673 addr_max &= -PAGE_SIZE;
674 addr_min &= -PAGE_SIZE;
675 off_start &= -PAGE_SIZE;
676 map_len = addr_max - addr_min + off_start;
677 /* The first time, we map too much, possibly even more than
678 * the length of the file. This is okay because we will not
679 * use the invalid part; we just need to reserve the right
680 * amount of virtual address space to map over later. */
Rich Felker9439ebd2015-11-11 17:34:17 -0500681 map = DL_NOMMU_SUPPORT
682 ? mmap((void *)addr_min, map_len, PROT_READ|PROT_WRITE|PROT_EXEC,
683 MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
684 : mmap((void *)addr_min, map_len, prot,
685 MAP_PRIVATE, fd, off_start);
Rich Felkerd5884a52013-08-02 09:56:49 -0400686 if (map==MAP_FAILED) goto error;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000687 dso->map = map;
688 dso->map_len = map_len;
Rich Felker339516a2013-07-31 14:42:08 -0400689 /* If the loaded file is not relocatable and the requested address is
690 * not available, then the load operation must fail. */
691 if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
692 errno = EBUSY;
693 goto error;
694 }
Rich Felker51e2d832011-06-18 19:48:42 -0400695 base = map - addr_min;
Rich Felker30763fd2013-07-10 14:38:20 -0400696 dso->phdr = 0;
697 dso->phnum = 0;
698 for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
Rich Felker51e2d832011-06-18 19:48:42 -0400699 if (ph->p_type != PT_LOAD) continue;
Rich Felker30763fd2013-07-10 14:38:20 -0400700 /* Check if the programs headers are in this load segment, and
701 * if so, record the address for use by dl_iterate_phdr. */
702 if (!dso->phdr && eh->e_phoff >= ph->p_offset
703 && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
704 dso->phdr = (void *)(base + ph->p_vaddr
705 + (eh->e_phoff-ph->p_offset));
706 dso->phnum = eh->e_phnum;
Timo Teräs87691962014-03-25 20:59:50 +0200707 dso->phentsize = eh->e_phentsize;
Rich Felker30763fd2013-07-10 14:38:20 -0400708 }
Rich Felker51e2d832011-06-18 19:48:42 -0400709 /* Reuse the existing mapping for the lowest-address LOAD */
Rich Felker9439ebd2015-11-11 17:34:17 -0500710 if ((ph->p_vaddr & -PAGE_SIZE) == addr_min && !DL_NOMMU_SUPPORT)
711 continue;
Rich Felker51e2d832011-06-18 19:48:42 -0400712 this_min = ph->p_vaddr & -PAGE_SIZE;
713 this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
714 off_start = ph->p_offset & -PAGE_SIZE;
715 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
716 ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
717 ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
Rich Felkerce337da2015-06-23 04:03:42 +0000718 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 -0400719 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400720 if (ph->p_memsz > ph->p_filesz) {
721 size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
722 size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
723 memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
Rich Felkerce337da2015-06-23 04:03:42 +0000724 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 -0400725 goto error;
Rich Felker51e2d832011-06-18 19:48:42 -0400726 }
727 }
Rich Felker9f174132011-06-29 00:29:08 -0400728 for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
729 if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
Rich Felker75eceb32015-06-17 17:21:46 +0000730 if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
731 && errno != ENOSYS)
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400732 goto error;
Rich Felker9f174132011-06-29 00:29:08 -0400733 break;
734 }
Rich Felkereaf7ab62015-09-22 19:12:48 +0000735done_mapping:
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400736 dso->base = base;
Rich Felkereaf7ab62015-09-22 19:12:48 +0000737 dso->dynv = laddr(dso, dyn);
Rich Felkerd56460c2015-11-12 15:50:26 -0500738 if (dso->tls.size) dso->tls.image = laddr(dso, tls_image);
Rich Felker8d01dfc2013-08-02 09:59:02 -0400739 free(allocated_buf);
Rich Felker51e2d832011-06-18 19:48:42 -0400740 return map;
Rich Felkerd5884a52013-08-02 09:56:49 -0400741noexec:
742 errno = ENOEXEC;
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400743error:
Rich Felkereaf7ab62015-09-22 19:12:48 +0000744 if (map!=MAP_FAILED) unmap_library(dso);
Rich Felkerd5884a52013-08-02 09:56:49 -0400745 free(allocated_buf);
Rich Felkerf7d15dc2012-06-06 11:21:28 -0400746 return 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400747}
748
Rich Felker8c203ea2013-04-20 11:51:58 -0400749static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
Rich Felker568b8072011-06-25 01:56:34 -0400750{
Rich Felker8c203ea2013-04-20 11:51:58 -0400751 size_t l;
752 int fd;
Rich Felker49388f32011-06-25 17:49:16 -0400753 for (;;) {
Rich Felker8c203ea2013-04-20 11:51:58 -0400754 s += strspn(s, ":\n");
755 l = strcspn(s, ":\n");
756 if (l-1 >= INT_MAX) return -1;
Rich Felker5d1c8c92015-04-01 20:27:29 -0400757 if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
758 if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
759 switch (errno) {
760 case ENOENT:
761 case ENOTDIR:
762 case EACCES:
763 case ENAMETOOLONG:
764 break;
765 default:
766 /* Any negative value but -1 will inhibit
767 * futher path search. */
768 return -2;
769 }
770 }
Rich Felker49388f32011-06-25 17:49:16 -0400771 s += l;
Rich Felker568b8072011-06-25 01:56:34 -0400772 }
Rich Felker568b8072011-06-25 01:56:34 -0400773}
774
Rich Felkera897a202013-08-23 13:56:30 -0400775static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
776{
777 size_t n, l;
778 const char *s, *t, *origin;
779 char *d;
Rich Felker2963a9f2015-04-03 16:35:43 -0400780 if (p->rpath || !p->rpath_orig) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400781 if (!strchr(p->rpath_orig, '$')) {
782 p->rpath = p->rpath_orig;
783 return 0;
784 }
785 n = 0;
786 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400787 while ((t=strchr(s, '$'))) {
788 if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
Rich Felker2963a9f2015-04-03 16:35:43 -0400789 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400790 s = t+1;
791 n++;
792 }
Rich Felker2963a9f2015-04-03 16:35:43 -0400793 if (n > SSIZE_MAX/PATH_MAX) return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400794
795 if (p->kernel_mapped) {
796 /* $ORIGIN searches cannot be performed for the main program
797 * when it is suid/sgid/AT_SECURE. This is because the
798 * pathname is under the control of the caller of execve.
799 * For libraries, however, $ORIGIN can be processed safely
800 * since the library's pathname came from a trusted source
801 * (either system paths or a call to dlopen). */
802 if (libc.secure)
Rich Felker2963a9f2015-04-03 16:35:43 -0400803 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400804 l = readlink("/proc/self/exe", buf, buf_size);
Rich Felker2963a9f2015-04-03 16:35:43 -0400805 if (l == -1) switch (errno) {
806 case ENOENT:
807 case ENOTDIR:
808 case EACCES:
809 break;
810 default:
Rich Felkera897a202013-08-23 13:56:30 -0400811 return -1;
Rich Felker2963a9f2015-04-03 16:35:43 -0400812 }
813 if (l >= buf_size)
814 return 0;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400815 buf[l] = 0;
Rich Felkera897a202013-08-23 13:56:30 -0400816 origin = buf;
817 } else {
818 origin = p->name;
819 }
820 t = strrchr(origin, '/');
Rich Felkerf0b235c2018-02-07 14:27:08 -0500821 if (t) {
822 l = t-origin;
823 } else {
824 /* Normally p->name will always be an absolute or relative
825 * pathname containing at least one '/' character, but in the
826 * case where ldso was invoked as a command to execute a
827 * program in the working directory, app.name may not. Fix. */
828 origin = ".";
829 l = 1;
830 }
Rich Felker376b3c52018-02-07 14:31:42 -0500831 /* Disallow non-absolute origins for suid/sgid/AT_SECURE. */
832 if (libc.secure && *origin != '/')
833 return 0;
Rich Felkera897a202013-08-23 13:56:30 -0400834 p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
835 if (!p->rpath) return -1;
836
837 d = p->rpath;
838 s = p->rpath_orig;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400839 while ((t=strchr(s, '$'))) {
Rich Felkera897a202013-08-23 13:56:30 -0400840 memcpy(d, s, t-s);
841 d += t-s;
842 memcpy(d, origin, l);
843 d += l;
Rich Felkerd2c42ed2013-08-23 15:51:59 -0400844 /* It was determined previously that the '$' is followed
845 * either by "ORIGIN" or "{ORIGIN}". */
Rich Felkera897a202013-08-23 13:56:30 -0400846 s = t + 7 + 2*(t[1]=='{');
847 }
848 strcpy(d, s);
849 return 0;
850}
851
Rich Felkerc82f4a32012-01-23 00:57:38 -0500852static void decode_dyn(struct dso *p)
853{
Rich Felkerf4f95622015-04-13 22:38:18 -0400854 size_t dyn[DYN_CNT];
Rich Felkerc82f4a32012-01-23 00:57:38 -0500855 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felker301335a2015-09-17 17:18:09 +0000856 p->syms = laddr(p, dyn[DT_SYMTAB]);
857 p->strings = laddr(p, dyn[DT_STRTAB]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400858 if (dyn[0]&(1<<DT_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000859 p->hashtab = laddr(p, dyn[DT_HASH]);
Rich Felker709355e2013-08-23 11:15:40 -0400860 if (dyn[0]&(1<<DT_RPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000861 p->rpath_orig = p->strings + dyn[DT_RPATH];
Rich Felkerd8dc2b72014-11-23 16:17:57 -0500862 if (dyn[0]&(1<<DT_RUNPATH))
Rich Felkere6076c92015-09-17 19:21:55 +0000863 p->rpath_orig = p->strings + dyn[DT_RUNPATH];
Rich Felker7a9669e2015-09-22 03:54:42 +0000864 if (dyn[0]&(1<<DT_PLTGOT))
865 p->got = laddr(p, dyn[DT_PLTGOT]);
Rich Felker2bd05a42012-08-25 17:13:28 -0400866 if (search_vec(p->dynv, dyn, DT_GNU_HASH))
Rich Felker301335a2015-09-17 17:18:09 +0000867 p->ghashtab = laddr(p, *dyn);
Rich Felker72482f92013-08-08 16:10:35 -0400868 if (search_vec(p->dynv, dyn, DT_VERSYM))
Rich Felker301335a2015-09-17 17:18:09 +0000869 p->versym = laddr(p, *dyn);
Rich Felkerc82f4a32012-01-23 00:57:38 -0500870}
871
Rich Felker39581442015-09-21 21:47:50 +0000872static size_t count_syms(struct dso *p)
873{
874 if (p->hashtab) return p->hashtab[1];
875
876 size_t nsym, i;
877 uint32_t *buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
878 uint32_t *hashval;
879 for (i = nsym = 0; i < p->ghashtab[0]; i++) {
880 if (buckets[i] > nsym)
881 nsym = buckets[i];
882 }
883 if (nsym) {
884 hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]);
885 do nsym++;
886 while (!(*hashval++ & 1));
887 }
888 return nsym;
889}
890
Rich Felker7a9669e2015-09-22 03:54:42 +0000891static void *dl_mmap(size_t n)
892{
893 void *p;
894 int prot = PROT_READ|PROT_WRITE, flags = MAP_ANONYMOUS|MAP_PRIVATE;
895#ifdef SYS_mmap2
896 p = (void *)__syscall(SYS_mmap2, 0, n, prot, flags, -1, 0);
897#else
898 p = (void *)__syscall(SYS_mmap, 0, n, prot, flags, -1, 0);
899#endif
900 return p == MAP_FAILED ? 0 : p;
901}
902
903static void makefuncdescs(struct dso *p)
904{
905 static int self_done;
906 size_t nsym = count_syms(p);
907 size_t i, size = nsym * sizeof(*p->funcdescs);
908
909 if (!self_done) {
910 p->funcdescs = dl_mmap(size);
911 self_done = 1;
912 } else {
913 p->funcdescs = malloc(size);
914 }
915 if (!p->funcdescs) {
916 if (!runtime) a_crash();
917 error("Error allocating function descriptors for %s", p->name);
918 longjmp(*rtld_fail, 1);
919 }
920 for (i=0; i<nsym; i++) {
921 if ((p->syms[i].st_info&0xf)==STT_FUNC && p->syms[i].st_shndx) {
922 p->funcdescs[i].addr = laddr(p, p->syms[i].st_value);
923 p->funcdescs[i].got = p->got;
924 } else {
925 p->funcdescs[i].addr = 0;
926 p->funcdescs[i].got = 0;
927 }
928 }
929}
930
Rich Felker709355e2013-08-23 11:15:40 -0400931static struct dso *load_library(const char *name, struct dso *needed_by)
Rich Felker51e2d832011-06-18 19:48:42 -0400932{
Rich Felker5c1909a2012-05-27 16:01:44 -0400933 char buf[2*NAME_MAX+2];
Rich Felker0420b872012-07-11 01:41:20 -0400934 const char *pathname;
Rich Felker1d7c4f82012-12-15 23:34:08 -0500935 unsigned char *map;
Rich Felkerbc6a35f2012-10-04 20:04:13 -0400936 struct dso *p, temp_dso = {0};
Rich Felker51e2d832011-06-18 19:48:42 -0400937 int fd;
938 struct stat st;
Rich Felkerdcd60372012-10-05 11:51:50 -0400939 size_t alloc_size;
940 int n_th = 0;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400941 int is_self = 0;
Rich Felker51e2d832011-06-18 19:48:42 -0400942
Rich Felker59549312014-07-11 00:29:44 -0400943 if (!*name) {
944 errno = EINVAL;
945 return 0;
946 }
947
Rich Felker51e2d832011-06-18 19:48:42 -0400948 /* Catch and block attempts to reload the implementation itself */
949 if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
Szabolcs Nagy86e8cc02016-11-01 02:44:56 +0100950 static const char reserved[] =
Szabolcs Nagy5ffe5152016-11-01 02:49:09 +0100951 "c.pthread.rt.m.dl.util.xnet.";
952 const char *rp, *next;
953 for (rp=reserved; *rp; rp=next) {
954 next = strchr(rp, '.') + 1;
955 if (strncmp(name+3, rp, next-rp) == 0)
956 break;
957 }
958 if (*rp) {
959 if (ldd_mode) {
960 /* Track which names have been resolved
961 * and only report each one once. */
962 static unsigned reported;
963 unsigned mask = 1U<<(rp-reserved);
964 if (!(reported & mask)) {
965 reported |= mask;
966 dprintf(1, "\t%s => %s (%p)\n",
967 name, ldso.name,
968 ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -0400969 }
Rich Felker51e2d832011-06-18 19:48:42 -0400970 }
Szabolcs Nagy5ffe5152016-11-01 02:49:09 +0100971 is_self = 1;
Rich Felker51e2d832011-06-18 19:48:42 -0400972 }
973 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400974 if (!strcmp(name, ldso.name)) is_self = 1;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400975 if (is_self) {
Rich Felkerf3ddd172015-04-13 02:56:26 -0400976 if (!ldso.prev) {
977 tail->next = &ldso;
978 ldso.prev = tail;
Rich Felker4ff234f2017-03-12 21:03:05 -0400979 tail = &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400980 }
Rich Felkerf3ddd172015-04-13 02:56:26 -0400981 return &ldso;
Rich Felkerf8c376d2013-07-31 14:59:36 -0400982 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400983 if (strchr(name, '/')) {
Rich Felker0420b872012-07-11 01:41:20 -0400984 pathname = name;
Rich Felkerf2d08cf2012-09-29 17:59:50 -0400985 fd = open(name, O_RDONLY|O_CLOEXEC);
Rich Felker51e2d832011-06-18 19:48:42 -0400986 } else {
Rich Felker0420b872012-07-11 01:41:20 -0400987 /* Search for the name to see if it's already loaded */
988 for (p=head->next; p; p=p->next) {
989 if (p->shortname && !strcmp(p->shortname, name)) {
Rich Felker0420b872012-07-11 01:41:20 -0400990 return p;
991 }
992 }
Rich Felker59ab43f2011-06-26 19:23:28 -0400993 if (strlen(name) > NAME_MAX) return 0;
Rich Felker568b8072011-06-25 01:56:34 -0400994 fd = -1;
Rich Felker3e3753c2013-08-02 10:02:29 -0400995 if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -0400996 for (p=needed_by; fd == -1 && p; p=p->needed_by) {
997 if (fixup_rpath(p, buf, sizeof buf) < 0)
998 fd = -2; /* Inhibit further search. */
999 if (p->rpath)
Rich Felker709355e2013-08-23 11:15:40 -04001000 fd = path_open(name, p->rpath, buf, sizeof buf);
Rich Felker2963a9f2015-04-03 16:35:43 -04001001 }
Rich Felker5d1c8c92015-04-01 20:27:29 -04001002 if (fd == -1) {
Rich Felker568b8072011-06-25 01:56:34 -04001003 if (!sys_path) {
Rich Felkerf389c492013-07-18 19:29:44 -04001004 char *prefix = 0;
1005 size_t prefix_len;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001006 if (ldso.name[0]=='/') {
Rich Felkerf389c492013-07-18 19:29:44 -04001007 char *s, *t, *z;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001008 for (s=t=z=ldso.name; *s; s++)
Rich Felkerf389c492013-07-18 19:29:44 -04001009 if (*s=='/') z=t, t=s;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001010 prefix_len = z-ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -04001011 if (prefix_len < PATH_MAX)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001012 prefix = ldso.name;
Rich Felkerf389c492013-07-18 19:29:44 -04001013 }
1014 if (!prefix) {
1015 prefix = "";
1016 prefix_len = 0;
1017 }
1018 char etc_ldso_path[prefix_len + 1
1019 + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
1020 snprintf(etc_ldso_path, sizeof etc_ldso_path,
1021 "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
1022 (int)prefix_len, prefix);
1023 FILE *f = fopen(etc_ldso_path, "rbe");
Rich Felker568b8072011-06-25 01:56:34 -04001024 if (f) {
Rich Felker11bc1732013-06-26 10:17:29 -04001025 if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
Rich Felker59b481d2013-06-26 10:51:36 -04001026 free(sys_path);
Rich Felker11bc1732013-06-26 10:17:29 -04001027 sys_path = "";
Rich Felker65465102012-11-09 13:49:40 -05001028 }
Rich Felker568b8072011-06-25 01:56:34 -04001029 fclose(f);
Rich Felkerff4be702013-09-09 13:39:08 -04001030 } else if (errno != ENOENT) {
1031 sys_path = "";
Rich Felker568b8072011-06-25 01:56:34 -04001032 }
1033 }
Rich Felker40d5f7e2012-11-08 22:41:16 -05001034 if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
1035 fd = path_open(name, sys_path, buf, sizeof buf);
Rich Felker51e2d832011-06-18 19:48:42 -04001036 }
Rich Felker0420b872012-07-11 01:41:20 -04001037 pathname = buf;
Rich Felker51e2d832011-06-18 19:48:42 -04001038 }
1039 if (fd < 0) return 0;
1040 if (fstat(fd, &st) < 0) {
1041 close(fd);
1042 return 0;
1043 }
1044 for (p=head->next; p; p=p->next) {
1045 if (p->dev == st.st_dev && p->ino == st.st_ino) {
Rich Felker0420b872012-07-11 01:41:20 -04001046 /* If this library was previously loaded with a
1047 * pathname but a search found the same inode,
1048 * setup its shortname so it can be found by name. */
Rich Felker5f88c0e2012-10-05 12:09:54 -04001049 if (!p->shortname && pathname != name)
1050 p->shortname = strrchr(p->name, '/')+1;
Rich Felker51e2d832011-06-18 19:48:42 -04001051 close(fd);
Rich Felker51e2d832011-06-18 19:48:42 -04001052 return p;
1053 }
1054 }
Rich Felker4d07e552013-01-23 22:07:45 -05001055 map = noload ? 0 : map_library(fd, &temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001056 close(fd);
1057 if (!map) return 0;
Rich Felkerdcd60372012-10-05 11:51:50 -04001058
Rich Felkerc49d3c82017-03-14 18:51:27 -04001059 /* Avoid the danger of getting two versions of libc mapped into the
1060 * same process when an absolute pathname was used. The symbols
1061 * checked are chosen to catch both musl and glibc, and to avoid
1062 * false positives from interposition-hack libraries. */
1063 decode_dyn(&temp_dso);
1064 if (find_sym(&temp_dso, "__libc_start_main", 1).sym &&
1065 find_sym(&temp_dso, "stdin", 1).sym) {
1066 unmap_library(&temp_dso);
1067 return load_library("libc.so", needed_by);
1068 }
Rich Felkera71b46c2017-11-13 15:27:10 -05001069 /* Past this point, if we haven't reached runtime yet, ldso has
1070 * committed either to use the mapped library or to abort execution.
1071 * Unmapping is not possible, so we can safely reclaim gaps. */
1072 if (!runtime) reclaim_gaps(&temp_dso);
Rich Felkerc49d3c82017-03-14 18:51:27 -04001073
Rich Felkerdcd60372012-10-05 11:51:50 -04001074 /* Allocate storage for the new DSO. When there is TLS, this
1075 * storage must include a reservation for all pre-existing
1076 * threads to obtain copies of both the new TLS, and an
1077 * extended DTV capable of storing an additional slot for
1078 * the newly-loaded DSO. */
1079 alloc_size = sizeof *p + strlen(pathname) + 1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001080 if (runtime && temp_dso.tls.image) {
1081 size_t per_th = temp_dso.tls.size + temp_dso.tls.align
Rich Felkerdcd60372012-10-05 11:51:50 -04001082 + sizeof(void *) * (tls_cnt+3);
Rich Felkere23d3582012-10-13 23:25:20 -04001083 n_th = libc.threads_minus_1 + 1;
Rich Felkerdcd60372012-10-05 11:51:50 -04001084 if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
1085 else alloc_size += n_th * per_th;
1086 }
1087 p = calloc(1, alloc_size);
Rich Felker51e2d832011-06-18 19:48:42 -04001088 if (!p) {
Rich Felkereaf7ab62015-09-22 19:12:48 +00001089 unmap_library(&temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001090 return 0;
1091 }
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001092 memcpy(p, &temp_dso, sizeof temp_dso);
Rich Felker51e2d832011-06-18 19:48:42 -04001093 p->dev = st.st_dev;
1094 p->ino = st.st_ino;
Rich Felker709355e2013-08-23 11:15:40 -04001095 p->needed_by = needed_by;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001096 p->name = p->buf;
Rich Felker0420b872012-07-11 01:41:20 -04001097 strcpy(p->name, pathname);
1098 /* Add a shortname only if name arg was not an explicit pathname. */
1099 if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
Rich Felkerd56460c2015-11-12 15:50:26 -05001100 if (p->tls.image) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001101 p->tls_id = ++tls_cnt;
Rich Felkerd56460c2015-11-12 15:50:26 -05001102 tls_align = MAXP2(tls_align, p->tls.align);
Rich Felker9ec42832012-10-15 18:51:53 -04001103#ifdef TLS_ABOVE_TP
Rich Felkerd56460c2015-11-12 15:50:26 -05001104 p->tls.offset = tls_offset + ( (tls_align-1) &
1105 -(tls_offset + (uintptr_t)p->tls.image) );
1106 tls_offset += p->tls.size;
Rich Felker9ec42832012-10-15 18:51:53 -04001107#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001108 tls_offset += p->tls.size + p->tls.align - 1;
1109 tls_offset -= (tls_offset + (uintptr_t)p->tls.image)
1110 & (p->tls.align-1);
1111 p->tls.offset = tls_offset;
Rich Felker9ec42832012-10-15 18:51:53 -04001112#endif
Rich Felkerdcd60372012-10-05 11:51:50 -04001113 p->new_dtv = (void *)(-sizeof(size_t) &
1114 (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
1115 p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
Rich Felkerd56460c2015-11-12 15:50:26 -05001116 if (tls_tail) tls_tail->next = &p->tls;
1117 else libc.tls_head = &p->tls;
1118 tls_tail = &p->tls;
Rich Felkerdcd60372012-10-05 11:51:50 -04001119 }
Rich Felker51e2d832011-06-18 19:48:42 -04001120
1121 tail->next = p;
1122 p->prev = tail;
1123 tail = p;
1124
Rich Felker7a9669e2015-09-22 03:54:42 +00001125 if (DL_FDPIC) makefuncdescs(p);
1126
Rich Felker1d7c4f82012-12-15 23:34:08 -05001127 if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
Rich Felker5c1909a2012-05-27 16:01:44 -04001128
Rich Felker51e2d832011-06-18 19:48:42 -04001129 return p;
1130}
1131
1132static void load_deps(struct dso *p)
1133{
Rich Felker59ab43f2011-06-26 19:23:28 -04001134 size_t i, ndeps=0;
1135 struct dso ***deps = &p->deps, **tmp, *dep;
Rich Felker51e2d832011-06-18 19:48:42 -04001136 for (; p; p=p->next) {
1137 for (i=0; p->dynv[i]; i+=2) {
1138 if (p->dynv[i] != DT_NEEDED) continue;
Rich Felker709355e2013-08-23 11:15:40 -04001139 dep = load_library(p->strings + p->dynv[i+1], p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001140 if (!dep) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001141 error("Error loading shared library %s: %m (needed by %s)",
Rich Felker6b3d5e52011-06-26 17:39:17 -04001142 p->strings + p->dynv[i+1], p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001143 if (runtime) longjmp(*rtld_fail, 1);
Rich Felker04109502012-08-18 16:00:23 -04001144 continue;
Rich Felker6b3d5e52011-06-26 17:39:17 -04001145 }
Rich Felker59ab43f2011-06-26 19:23:28 -04001146 if (runtime) {
1147 tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
Rich Felker17276be2013-07-24 02:38:05 -04001148 if (!tmp) longjmp(*rtld_fail, 1);
Rich Felker59ab43f2011-06-26 19:23:28 -04001149 tmp[ndeps++] = dep;
1150 tmp[ndeps] = 0;
1151 *deps = tmp;
1152 }
Rich Felker51e2d832011-06-18 19:48:42 -04001153 }
1154 }
Rich Felker66b53cf2017-07-04 10:58:13 -04001155 if (!*deps) *deps = (struct dso **)&nodeps_dummy;
Rich Felker51e2d832011-06-18 19:48:42 -04001156}
1157
Rich Felker2719cc82011-08-16 00:24:36 -04001158static void load_preload(char *s)
1159{
1160 int tmp;
1161 char *z;
1162 for (z=s; *z; s=z) {
Rich Felker349381a2014-07-11 00:26:12 -04001163 for ( ; *s && (isspace(*s) || *s==':'); s++);
1164 for (z=s; *z && !isspace(*z) && *z!=':'; z++);
Rich Felker2719cc82011-08-16 00:24:36 -04001165 tmp = *z;
1166 *z = 0;
Rich Felker709355e2013-08-23 11:15:40 -04001167 load_library(s, 0);
Rich Felker2719cc82011-08-16 00:24:36 -04001168 *z = tmp;
1169 }
1170}
1171
Rich Felker4ff234f2017-03-12 21:03:05 -04001172static void add_syms(struct dso *p)
Rich Felker59ab43f2011-06-26 19:23:28 -04001173{
Rich Felker4ff234f2017-03-12 21:03:05 -04001174 if (!p->syms_next && syms_tail != p) {
1175 syms_tail->syms_next = p;
1176 syms_tail = p;
1177 }
1178}
1179
1180static void revert_syms(struct dso *old_tail)
1181{
1182 struct dso *p, *next;
1183 /* Chop off the tail of the list of dsos that participate in
1184 * the global symbol table, reverting them to RTLD_LOCAL. */
1185 for (p=old_tail; p; p=next) {
1186 next = p->syms_next;
1187 p->syms_next = 0;
1188 }
1189 syms_tail = old_tail;
Rich Felker59ab43f2011-06-26 19:23:28 -04001190}
1191
Rich Felkerf3ddd172015-04-13 02:56:26 -04001192static void do_mips_relocs(struct dso *p, size_t *got)
1193{
1194 size_t i, j, rel[2];
1195 unsigned char *base = p->base;
1196 i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
Rich Felker9bbddf72015-05-25 23:33:59 -04001197 if (p==&ldso) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001198 got += i;
1199 } else {
1200 while (i--) *got++ += (size_t)base;
1201 }
1202 j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
1203 i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
1204 Sym *sym = p->syms + j;
1205 rel[0] = (unsigned char *)got - base;
1206 for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
Rich Felker71392a92016-03-06 17:25:52 +00001207 rel[1] = R_INFO(sym-p->syms, R_MIPS_JUMP_SLOT);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001208 do_relocs(p, rel, sizeof rel, 2);
1209 }
1210}
1211
Rich Felker51e2d832011-06-18 19:48:42 -04001212static void reloc_all(struct dso *p)
1213{
Rich Felkerf4f95622015-04-13 22:38:18 -04001214 size_t dyn[DYN_CNT];
Rich Felker51e2d832011-06-18 19:48:42 -04001215 for (; p; p=p->next) {
1216 if (p->relocated) continue;
1217 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001218 if (NEED_MIPS_GOT_RELOCS)
Rich Felker2a547332015-09-17 19:45:45 +00001219 do_mips_relocs(p, laddr(p, dyn[DT_PLTGOT]));
1220 do_relocs(p, laddr(p, dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
Rich Felker87d13a42012-08-05 02:49:02 -04001221 2+(dyn[DT_PLTREL]==DT_RELA));
Rich Felker2a547332015-09-17 19:45:45 +00001222 do_relocs(p, laddr(p, dyn[DT_REL]), dyn[DT_RELSZ], 2);
1223 do_relocs(p, laddr(p, dyn[DT_RELA]), dyn[DT_RELASZ], 3);
Timo Teräse13a2b82014-03-25 14:13:27 +02001224
Rich Felkerf3ddd172015-04-13 02:56:26 -04001225 if (head != &ldso && p->relro_start != p->relro_end &&
Rich Felker2a547332015-09-17 19:45:45 +00001226 mprotect(laddr(p, p->relro_start), p->relro_end-p->relro_start, PROT_READ)
Rich Felker75eceb32015-06-17 17:21:46 +00001227 && errno != ENOSYS) {
Rich Felker9a4ad022014-06-29 21:52:54 -04001228 error("Error relocating %s: RELRO protection failed: %m",
Timo Teräse13a2b82014-03-25 14:13:27 +02001229 p->name);
Rich Felker01d42742015-04-18 18:00:22 -04001230 if (runtime) longjmp(*rtld_fail, 1);
Timo Teräse13a2b82014-03-25 14:13:27 +02001231 }
1232
Rich Felker368ba4a2011-06-25 00:18:19 -04001233 p->relocated = 1;
Rich Felker51e2d832011-06-18 19:48:42 -04001234 }
1235}
1236
Timo Teräs87691962014-03-25 20:59:50 +02001237static void kernel_mapped_dso(struct dso *p)
Rich Felkerc82f4a32012-01-23 00:57:38 -05001238{
Timo Teräs87691962014-03-25 20:59:50 +02001239 size_t min_addr = -1, max_addr = 0, cnt;
1240 Phdr *ph = p->phdr;
1241 for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
1242 if (ph->p_type == PT_DYNAMIC) {
Rich Felker301335a2015-09-17 17:18:09 +00001243 p->dynv = laddr(p, ph->p_vaddr);
Timo Teräs87691962014-03-25 20:59:50 +02001244 } else if (ph->p_type == PT_GNU_RELRO) {
Timo Teräse13a2b82014-03-25 14:13:27 +02001245 p->relro_start = ph->p_vaddr & -PAGE_SIZE;
1246 p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
1247 }
Rich Felkerf419bcb2012-08-26 21:09:26 -04001248 if (ph->p_type != PT_LOAD) continue;
1249 if (ph->p_vaddr < min_addr)
1250 min_addr = ph->p_vaddr;
1251 if (ph->p_vaddr+ph->p_memsz > max_addr)
1252 max_addr = ph->p_vaddr+ph->p_memsz;
1253 }
1254 min_addr &= -PAGE_SIZE;
1255 max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
1256 p->map = p->base + min_addr;
1257 p->map_len = max_addr - min_addr;
Timo Teräs87691962014-03-25 20:59:50 +02001258 p->kernel_mapped = 1;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001259}
1260
Rich Felkerad1cd432015-11-11 22:08:23 -05001261void __libc_exit_fini()
Rich Felkerf4f77c02012-10-05 13:09:09 -04001262{
1263 struct dso *p;
Rich Felkerf4f95622015-04-13 22:38:18 -04001264 size_t dyn[DYN_CNT];
Rich Felkerf4f77c02012-10-05 13:09:09 -04001265 for (p=fini_head; p; p=p->fini_next) {
1266 if (!p->constructed) continue;
1267 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001268 if (dyn[0] & (1<<DT_FINI_ARRAY)) {
1269 size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001270 size_t *fn = (size_t *)laddr(p, dyn[DT_FINI_ARRAY])+n;
Rich Felker1b413572013-07-21 02:35:46 -04001271 while (n--) ((void (*)(void))*--fn)();
Rich Felkere69ae842013-07-20 18:26:17 -04001272 }
Rich Felker1da53da2013-07-22 14:08:33 -04001273#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001274 if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
Rich Felker7a9669e2015-09-22 03:54:42 +00001275 fpaddr(p, dyn[DT_FINI])();
Rich Felker1da53da2013-07-22 14:08:33 -04001276#endif
Rich Felkerf4f77c02012-10-05 13:09:09 -04001277 }
1278}
1279
Rich Felker4ce3cb52012-02-06 14:39:09 -05001280static void do_init_fini(struct dso *p)
1281{
Rich Felkerf4f95622015-04-13 22:38:18 -04001282 size_t dyn[DYN_CNT];
Rich Felkere23d3582012-10-13 23:25:20 -04001283 int need_locking = libc.threads_minus_1;
Rich Felkerf4f77c02012-10-05 13:09:09 -04001284 /* Allow recursive calls that arise when a library calls
1285 * dlopen from one of its constructors, but block any
1286 * other threads until all ctors have finished. */
1287 if (need_locking) pthread_mutex_lock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001288 for (; p; p=p->prev) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001289 if (p->constructed) continue;
1290 p->constructed = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001291 decode_vec(p->dynv, dyn, DYN_CNT);
Rich Felkere69ae842013-07-20 18:26:17 -04001292 if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
Rich Felkerf4f77c02012-10-05 13:09:09 -04001293 p->fini_next = fini_head;
1294 fini_head = p;
1295 }
Rich Felker1da53da2013-07-22 14:08:33 -04001296#ifndef NO_LEGACY_INITFINI
Rich Felkerd0c6cb02013-07-31 00:04:10 -04001297 if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
Rich Felker7a9669e2015-09-22 03:54:42 +00001298 fpaddr(p, dyn[DT_INIT])();
Rich Felker1da53da2013-07-22 14:08:33 -04001299#endif
Rich Felkere69ae842013-07-20 18:26:17 -04001300 if (dyn[0] & (1<<DT_INIT_ARRAY)) {
1301 size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
Rich Felker301335a2015-09-17 17:18:09 +00001302 size_t *fn = laddr(p, dyn[DT_INIT_ARRAY]);
Rich Felkere69ae842013-07-20 18:26:17 -04001303 while (n--) ((void (*)(void))*fn++)();
1304 }
Rich Felker509b50e2013-06-29 02:24:02 -04001305 if (!need_locking && libc.threads_minus_1) {
1306 need_locking = 1;
1307 pthread_mutex_lock(&init_fini_lock);
1308 }
Rich Felker4ce3cb52012-02-06 14:39:09 -05001309 }
Rich Felkerf4f77c02012-10-05 13:09:09 -04001310 if (need_locking) pthread_mutex_unlock(&init_fini_lock);
Rich Felker4ce3cb52012-02-06 14:39:09 -05001311}
1312
Rich Felkerc87a5212015-09-22 20:24:28 +00001313void __libc_start_init(void)
1314{
1315 do_init_fini(tail);
1316}
1317
Rich Felker326e1262015-04-17 23:23:05 -04001318static void dl_debug_state(void)
Rich Felker3ec8d292012-04-25 00:05:42 -04001319{
1320}
1321
Rich Felker326e1262015-04-17 23:23:05 -04001322weak_alias(dl_debug_state, _dl_debug_state);
1323
Rich Felkerd56460c2015-11-12 15:50:26 -05001324void __init_tls(size_t *auxv)
Rich Felker7c6c2902013-08-03 16:27:30 -04001325{
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001326}
1327
Rich Felkerbc081f62015-04-14 10:42:44 -04001328__attribute__((__visibility__("hidden")))
rofl0r1f53e7d2017-01-13 10:28:46 +00001329void *__tls_get_new(tls_mod_off_t *v)
Rich Felker9b153c02012-10-04 21:01:56 -04001330{
1331 pthread_t self = __pthread_self();
Rich Felkerdcd60372012-10-05 11:51:50 -04001332
1333 /* Block signals to make accessing new TLS async-signal-safe */
1334 sigset_t set;
Rich Felker5ba238e2014-06-19 02:59:44 -04001335 __block_all_sigs(&set);
Rich Felkere75b16c2014-06-19 02:16:57 -04001336 if (v[0]<=(size_t)self->dtv[0]) {
Rich Felker5ba238e2014-06-19 02:59:44 -04001337 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001338 return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001339 }
Rich Felkerdcd60372012-10-05 11:51:50 -04001340
1341 /* This is safe without any locks held because, if the caller
1342 * is able to request the Nth entry of the DTV, the DSO list
1343 * must be valid at least that far out and it was synchronized
1344 * at program startup or by an already-completed call to dlopen. */
1345 struct dso *p;
1346 for (p=head; p->tls_id != v[0]; p=p->next);
1347
1348 /* Get new DTV space from new DSO if needed */
Rich Felker44b4d092013-06-03 16:35:59 -04001349 if (v[0] > (size_t)self->dtv[0]) {
Rich Felkerdcd60372012-10-05 11:51:50 -04001350 void **newdtv = p->new_dtv +
Szabolcs Nagy12978ac2015-11-26 19:59:46 +01001351 (v[0]+1)*a_fetch_add(&p->new_dtv_idx,1);
Rich Felker44b4d092013-06-03 16:35:59 -04001352 memcpy(newdtv, self->dtv,
Rich Felkerdcd60372012-10-05 11:51:50 -04001353 ((size_t)self->dtv[0]+1) * sizeof(void *));
1354 newdtv[0] = (void *)v[0];
Szabolcs Nagy204a69d2015-03-11 12:48:12 +00001355 self->dtv = self->dtv_copy = newdtv;
Rich Felkerdcd60372012-10-05 11:51:50 -04001356 }
1357
Rich Felkere75b16c2014-06-19 02:16:57 -04001358 /* Get new TLS memory from all new DSOs up to the requested one */
1359 unsigned char *mem;
1360 for (p=head; ; p=p->next) {
1361 if (!p->tls_id || self->dtv[p->tls_id]) continue;
Rich Felkerd56460c2015-11-12 15:50:26 -05001362 mem = p->new_tls + (p->tls.size + p->tls.align)
Rich Felkere75b16c2014-06-19 02:16:57 -04001363 * a_fetch_add(&p->new_tls_idx,1);
Rich Felkerd56460c2015-11-12 15:50:26 -05001364 mem += ((uintptr_t)p->tls.image - (uintptr_t)mem)
1365 & (p->tls.align-1);
Rich Felkere75b16c2014-06-19 02:16:57 -04001366 self->dtv[p->tls_id] = mem;
Rich Felkerd56460c2015-11-12 15:50:26 -05001367 memcpy(mem, p->tls.image, p->tls.len);
Rich Felkere75b16c2014-06-19 02:16:57 -04001368 if (p->tls_id == v[0]) break;
1369 }
Rich Felker5ba238e2014-06-19 02:59:44 -04001370 __restore_sigs(&set);
Rich Felker6ba55172015-06-25 22:22:00 +00001371 return mem + v[1] + DTP_OFFSET;
Rich Felker9b153c02012-10-04 21:01:56 -04001372}
1373
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001374static void update_tls_size()
1375{
Rich Felkerd56460c2015-11-12 15:50:26 -05001376 libc.tls_cnt = tls_cnt;
1377 libc.tls_align = tls_align;
Rich Felker9ec42832012-10-15 18:51:53 -04001378 libc.tls_size = ALIGN(
1379 (1+tls_cnt) * sizeof(void *) +
1380 tls_offset +
1381 sizeof(struct pthread) +
1382 tls_align * 2,
1383 tls_align);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001384}
1385
Rich Felkerf3ddd172015-04-13 02:56:26 -04001386/* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
1387 * following stage 2 and stage 3 functions via primitive symbolic lookup
1388 * since it does not have access to their addresses to begin with. */
1389
1390/* Stage 2 of the dynamic linker is called after relative relocations
1391 * have been processed. It can make function calls to static functions
1392 * and access string literals and static data, but cannot use extern
1393 * symbols. Its job is to perform symbolic relocations on the dynamic
1394 * linker itself, but some of the relocations performed may need to be
1395 * replaced later due to copy relocations in the main program. */
1396
Rich Felkerbc9b6ea2015-10-15 17:38:54 -04001397__attribute__((__visibility__("hidden")))
Rich Felker768b82c2015-05-25 19:15:17 -04001398void __dls2(unsigned char *base, size_t *sp)
Rich Felker51e2d832011-06-18 19:48:42 -04001399{
Rich Felker7a9669e2015-09-22 03:54:42 +00001400 if (DL_FDPIC) {
1401 void *p1 = (void *)sp[-2];
1402 void *p2 = (void *)sp[-1];
1403 if (!p1) {
1404 size_t *auxv, aux[AUX_CNT];
1405 for (auxv=sp+1+*sp+1; *auxv; auxv++); auxv++;
1406 decode_vec(auxv, aux, AUX_CNT);
1407 if (aux[AT_BASE]) ldso.base = (void *)aux[AT_BASE];
1408 else ldso.base = (void *)(aux[AT_PHDR] & -4096);
1409 }
1410 app_loadmap = p2 ? p1 : 0;
1411 ldso.loadmap = p2 ? p2 : p1;
1412 ldso.base = laddr(&ldso, 0);
1413 } else {
1414 ldso.base = base;
1415 }
1416 Ehdr *ehdr = (void *)ldso.base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001417 ldso.name = ldso.shortname = "libc.so";
Rich Felkerf3ddd172015-04-13 02:56:26 -04001418 ldso.phnum = ehdr->e_phnum;
Rich Felker7a9669e2015-09-22 03:54:42 +00001419 ldso.phdr = laddr(&ldso, ehdr->e_phoff);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001420 ldso.phentsize = ehdr->e_phentsize;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001421 kernel_mapped_dso(&ldso);
1422 decode_dyn(&ldso);
1423
Rich Felker7a9669e2015-09-22 03:54:42 +00001424 if (DL_FDPIC) makefuncdescs(&ldso);
1425
Rich Felker9bbddf72015-05-25 23:33:59 -04001426 /* Prepare storage for to save clobbered REL addends so they
1427 * can be reused in stage 3. There should be very few. If
1428 * something goes wrong and there are a huge number, abort
1429 * instead of risking stack overflow. */
1430 size_t dyn[DYN_CNT];
1431 decode_vec(ldso.dynv, dyn, DYN_CNT);
Rich Felker2a547332015-09-17 19:45:45 +00001432 size_t *rel = laddr(&ldso, dyn[DT_REL]);
Rich Felker9bbddf72015-05-25 23:33:59 -04001433 size_t rel_size = dyn[DT_RELSZ];
1434 size_t symbolic_rel_cnt = 0;
1435 apply_addends_to = rel;
1436 for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
Rich Felker7a9669e2015-09-22 03:54:42 +00001437 if (!IS_RELATIVE(rel[1], ldso.syms)) symbolic_rel_cnt++;
Rich Felker9bbddf72015-05-25 23:33:59 -04001438 if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
1439 size_t addends[symbolic_rel_cnt+1];
1440 saved_addends = addends;
1441
Rich Felkerf3ddd172015-04-13 02:56:26 -04001442 head = &ldso;
1443 reloc_all(&ldso);
1444
1445 ldso.relocated = 0;
Rich Felker768b82c2015-05-25 19:15:17 -04001446
1447 /* Call dynamic linker stage-3, __dls3, looking it up
1448 * symbolically as a barrier against moving the address
1449 * load across the above relocation processing. */
1450 struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
Rich Felker7a9669e2015-09-22 03:54:42 +00001451 if (DL_FDPIC) ((stage3_func)&ldso.funcdescs[dls3_def.sym-ldso.syms])(sp);
1452 else ((stage3_func)laddr(&ldso, dls3_def.sym->st_value))(sp);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001453}
1454
1455/* Stage 3 of the dynamic linker is called with the dynamic linker/libc
1456 * fully functional. Its job is to load (if not already loaded) and
1457 * process dependencies and relocations for the main application and
1458 * transfer control to its entry point. */
1459
1460_Noreturn void __dls3(size_t *sp)
1461{
1462 static struct dso app, vdso;
Rich Felkerf4f95622015-04-13 22:38:18 -04001463 size_t aux[AUX_CNT], *auxv;
Rich Felker51e2d832011-06-18 19:48:42 -04001464 size_t i;
Rich Felker2719cc82011-08-16 00:24:36 -04001465 char *env_preload=0;
Rich Felkerf3055e02017-07-04 16:58:28 -04001466 char *replace_argv0=0;
Rich Felkerdbcb3ad2012-08-25 17:31:59 -04001467 size_t vdso_base;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001468 int argc = *sp;
1469 char **argv = (void *)(sp+1);
1470 char **argv_orig = argv;
Rich Felker75863602013-07-21 03:00:54 -04001471 char **envp = argv+argc+1;
Rich Felker71f099c2015-04-13 18:40:52 -04001472
Rich Felker75ce4502015-06-07 20:55:23 +00001473 /* Find aux vector just past environ[] and use it to initialize
1474 * global data that may be needed before we can make syscalls. */
1475 __environ = envp;
1476 for (i=argc+1; argv[i]; i++);
1477 libc.auxv = auxv = (void *)(argv+i+1);
1478 decode_vec(auxv, aux, AUX_CNT);
1479 __hwcap = aux[AT_HWCAP];
1480 libc.page_size = aux[AT_PAGESZ];
1481 libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
1482 || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
1483
Rich Felker71f099c2015-04-13 18:40:52 -04001484 /* Setup early thread pointer in builtin_tls for ldso/libc itself to
1485 * use during dynamic linking. If possible it will also serve as the
1486 * thread pointer at runtime. */
1487 libc.tls_size = sizeof builtin_tls;
Rich Felkerd56460c2015-11-12 15:50:26 -05001488 libc.tls_align = tls_align;
Rich Felker71f099c2015-04-13 18:40:52 -04001489 if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001490 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001491 }
Rich Felker51e2d832011-06-18 19:48:42 -04001492
Rich Felker568b8072011-06-25 01:56:34 -04001493 /* Only trust user/env if kernel says we're not suid/sgid */
Rich Felker75ce4502015-06-07 20:55:23 +00001494 if (!libc.secure) {
1495 env_path = getenv("LD_LIBRARY_PATH");
1496 env_preload = getenv("LD_PRELOAD");
Rich Felker568b8072011-06-25 01:56:34 -04001497 }
1498
Rich Felkerf3ddd172015-04-13 02:56:26 -04001499 /* If the main program was already loaded by the kernel,
1500 * AT_PHDR will point to some location other than the dynamic
1501 * linker's program headers. */
1502 if (aux[AT_PHDR] != (size_t)ldso.phdr) {
Rich Felker649cec52012-07-13 01:31:02 -04001503 size_t interp_off = 0;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001504 size_t tls_image = 0;
Rich Felker5c1909a2012-05-27 16:01:44 -04001505 /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
Rich Felkerf3ddd172015-04-13 02:56:26 -04001506 Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
1507 app.phnum = aux[AT_PHNUM];
1508 app.phentsize = aux[AT_PHENT];
Rich Felker5c1909a2012-05-27 16:01:44 -04001509 for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
1510 if (phdr->p_type == PT_PHDR)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001511 app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
Rich Felker649cec52012-07-13 01:31:02 -04001512 else if (phdr->p_type == PT_INTERP)
1513 interp_off = (size_t)phdr->p_vaddr;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001514 else if (phdr->p_type == PT_TLS) {
1515 tls_image = phdr->p_vaddr;
Rich Felkerd56460c2015-11-12 15:50:26 -05001516 app.tls.len = phdr->p_filesz;
1517 app.tls.size = phdr->p_memsz;
1518 app.tls.align = phdr->p_align;
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001519 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001520 }
Rich Felker7a9669e2015-09-22 03:54:42 +00001521 if (DL_FDPIC) app.loadmap = app_loadmap;
Rich Felkerd56460c2015-11-12 15:50:26 -05001522 if (app.tls.size) app.tls.image = laddr(&app, tls_image);
Rich Felker301335a2015-09-17 17:18:09 +00001523 if (interp_off) ldso.name = laddr(&app, interp_off);
Rich Felkercc515052013-08-23 14:14:47 -04001524 if ((aux[0] & (1UL<<AT_EXECFN))
1525 && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
Rich Felkerf3ddd172015-04-13 02:56:26 -04001526 app.name = (char *)aux[AT_EXECFN];
Rich Felkercc515052013-08-23 14:14:47 -04001527 else
Rich Felkerf3ddd172015-04-13 02:56:26 -04001528 app.name = argv[0];
1529 kernel_mapped_dso(&app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001530 } else {
1531 int fd;
1532 char *ldname = argv[0];
Rich Felkera617a8e2012-11-01 23:46:39 -04001533 size_t l = strlen(ldname);
Rich Felker5c1909a2012-05-27 16:01:44 -04001534 if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001535 argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001536 while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
1537 char *opt = argv[0]+2;
1538 *argv++ = (void *)-1;
1539 if (!*opt) {
1540 break;
1541 } else if (!memcmp(opt, "list", 5)) {
1542 ldd_mode = 1;
1543 } else if (!memcmp(opt, "library-path", 12)) {
1544 if (opt[12]=='=') env_path = opt+13;
1545 else if (opt[12]) *argv = 0;
1546 else if (*argv) env_path = *argv++;
1547 } else if (!memcmp(opt, "preload", 7)) {
1548 if (opt[7]=='=') env_preload = opt+8;
1549 else if (opt[7]) *argv = 0;
1550 else if (*argv) env_preload = *argv++;
Rich Felkerf3055e02017-07-04 16:58:28 -04001551 } else if (!memcmp(opt, "argv0", 5)) {
1552 if (opt[5]=='=') replace_argv0 = opt+6;
1553 else if (opt[5]) *argv = 0;
1554 else if (*argv) replace_argv0 = *argv++;
Rich Felkerde451642014-04-16 12:45:36 -04001555 } else {
1556 argv[0] = 0;
1557 }
Rich Felkerde451642014-04-16 12:45:36 -04001558 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001559 argv[-1] = (void *)(argc - (argv-argv_orig));
Rich Felker5c1909a2012-05-27 16:01:44 -04001560 if (!argv[0]) {
Rich Felker0f5eb3d2016-01-22 04:04:16 +00001561 dprintf(2, "musl libc (" LDSO_ARCH ")\n"
Rich Felker179ab5a2013-12-01 17:27:25 -05001562 "Version %s\n"
1563 "Dynamic Program Loader\n"
Rich Felkerde451642014-04-16 12:45:36 -04001564 "Usage: %s [options] [--] pathname%s\n",
Rich Felker179ab5a2013-12-01 17:27:25 -05001565 __libc_get_version(), ldname,
Rich Felker5c1909a2012-05-27 16:01:44 -04001566 ldd_mode ? "" : " [args]");
1567 _exit(1);
1568 }
1569 fd = open(argv[0], O_RDONLY);
1570 if (fd < 0) {
1571 dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
1572 _exit(1);
1573 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001574 Ehdr *ehdr = (void *)map_library(fd, &app);
Rich Felker5c1909a2012-05-27 16:01:44 -04001575 if (!ehdr) {
1576 dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
1577 _exit(1);
1578 }
Rich Felker5c1909a2012-05-27 16:01:44 -04001579 close(fd);
Rich Felkerf3ddd172015-04-13 02:56:26 -04001580 ldso.name = ldname;
1581 app.name = argv[0];
Rich Felker301335a2015-09-17 17:18:09 +00001582 aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
Rich Felkera97a0502013-07-26 14:41:12 -04001583 /* Find the name that would have been used for the dynamic
1584 * linker had ldd not taken its place. */
1585 if (ldd_mode) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001586 for (i=0; i<app.phnum; i++) {
1587 if (app.phdr[i].p_type == PT_INTERP)
Rich Felker30fdc062015-09-22 19:21:57 +00001588 ldso.name = laddr(&app, app.phdr[i].p_vaddr);
Rich Felkera97a0502013-07-26 14:41:12 -04001589 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001590 dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
Rich Felkera97a0502013-07-26 14:41:12 -04001591 }
Rich Felkere12fe652012-01-23 02:02:59 -05001592 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001593 if (app.tls.size) {
Rich Felker140ad502016-01-30 14:34:45 -05001594 libc.tls_head = tls_tail = &app.tls;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001595 app.tls_id = tls_cnt = 1;
Rich Felker9ec42832012-10-15 18:51:53 -04001596#ifdef TLS_ABOVE_TP
Szabolcs Nagy610c5a82018-06-02 01:52:01 +02001597 app.tls.offset = GAP_ABOVE_TP;
1598 app.tls.offset += -GAP_ABOVE_TP & (app.tls.align-1);
1599 tls_offset = app.tls.offset + app.tls.size
Rich Felkerd56460c2015-11-12 15:50:26 -05001600 + ( -((uintptr_t)app.tls.image + app.tls.size)
1601 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001602#else
Rich Felkerd56460c2015-11-12 15:50:26 -05001603 tls_offset = app.tls.offset = app.tls.size
1604 + ( -((uintptr_t)app.tls.image + app.tls.size)
1605 & (app.tls.align-1) );
Rich Felker9ec42832012-10-15 18:51:53 -04001606#endif
Rich Felkerd56460c2015-11-12 15:50:26 -05001607 tls_align = MAXP2(tls_align, app.tls.align);
Rich Felkerbc6a35f2012-10-04 20:04:13 -04001608 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001609 decode_dyn(&app);
Rich Felker7a9669e2015-09-22 03:54:42 +00001610 if (DL_FDPIC) {
1611 makefuncdescs(&app);
1612 if (!app.loadmap) {
1613 app.loadmap = (void *)&app_dummy_loadmap;
1614 app.loadmap->nsegs = 1;
Rich Felker6c5cad22015-09-22 23:41:41 +00001615 app.loadmap->segs[0].addr = (size_t)app.map;
1616 app.loadmap->segs[0].p_vaddr = (size_t)app.map
1617 - (size_t)app.base;
1618 app.loadmap->segs[0].p_memsz = app.map_len;
Rich Felker7a9669e2015-09-22 03:54:42 +00001619 }
1620 argv[-3] = (void *)app.loadmap;
1621 }
Rich Felkerc82f4a32012-01-23 00:57:38 -05001622
Rich Felker4ff234f2017-03-12 21:03:05 -04001623 /* Initial dso chain consists only of the app. */
1624 head = tail = syms_tail = &app;
1625
1626 /* Donate unused parts of app and library mapping to malloc */
1627 reclaim_gaps(&app);
1628 reclaim_gaps(&ldso);
1629
1630 /* Load preload/needed libraries, add symbols to global namespace. */
1631 if (env_preload) load_preload(env_preload);
1632 load_deps(&app);
1633 for (struct dso *p=head; p; p=p->next)
1634 add_syms(p);
1635
1636 /* Attach to vdso, if provided by the kernel, last so that it does
1637 * not become part of the global namespace. */
Bobby Bingham54482892016-07-25 22:52:58 -05001638 if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR) && vdso_base) {
Rich Felkerf3ddd172015-04-13 02:56:26 -04001639 Ehdr *ehdr = (void *)vdso_base;
1640 Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
1641 vdso.phnum = ehdr->e_phnum;
1642 vdso.phentsize = ehdr->e_phentsize;
Rich Felker6ab444d2011-07-24 00:54:55 -04001643 for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
1644 if (phdr->p_type == PT_DYNAMIC)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001645 vdso.dynv = (void *)(vdso_base + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001646 if (phdr->p_type == PT_LOAD)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001647 vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
Rich Felker6ab444d2011-07-24 00:54:55 -04001648 }
Rich Felkerf3ddd172015-04-13 02:56:26 -04001649 vdso.name = "";
1650 vdso.shortname = "linux-gate.so.1";
Rich Felkerf3ddd172015-04-13 02:56:26 -04001651 vdso.relocated = 1;
1652 decode_dyn(&vdso);
Rich Felker4ff234f2017-03-12 21:03:05 -04001653 vdso.prev = tail;
1654 tail->next = &vdso;
1655 tail = &vdso;
Rich Felker6ab444d2011-07-24 00:54:55 -04001656 }
1657
Felix Fietkauc18d05f2016-01-30 21:14:05 +01001658 for (i=0; app.dynv[i]; i+=2) {
1659 if (!DT_DEBUG_INDIRECT && app.dynv[i]==DT_DEBUG)
Rich Felkerf3ddd172015-04-13 02:56:26 -04001660 app.dynv[i+1] = (size_t)&debug;
Felix Fietkauc18d05f2016-01-30 21:14:05 +01001661 if (DT_DEBUG_INDIRECT && app.dynv[i]==DT_DEBUG_INDIRECT) {
1662 size_t *ptr = (size_t *) app.dynv[i+1];
1663 *ptr = (size_t)&debug;
1664 }
1665 }
Timo Teräse13a2b82014-03-25 14:13:27 +02001666
Rich Felkerf3ddd172015-04-13 02:56:26 -04001667 /* The main program must be relocated LAST since it may contin
1668 * copy relocations which depend on libraries' relocations. */
1669 reloc_all(app.next);
1670 reloc_all(&app);
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001671
1672 update_tls_size();
Rich Felker71f099c2015-04-13 18:40:52 -04001673 if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
1674 void *initial_tls = calloc(libc.tls_size, 1);
Rich Felkerdab441a2014-03-24 16:57:11 -04001675 if (!initial_tls) {
Rich Felker9c748562012-10-04 22:48:33 -04001676 dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
Rich Felkere23d3582012-10-13 23:25:20 -04001677 argv[0], libc.tls_size);
Rich Felker9c748562012-10-04 22:48:33 -04001678 _exit(127);
1679 }
Rich Felker71f099c2015-04-13 18:40:52 -04001680 if (__init_tp(__copy_tls(initial_tls)) < 0) {
Rich Felker19a1fe62015-04-13 19:24:51 -04001681 a_crash();
Rich Felker71f099c2015-04-13 18:40:52 -04001682 }
Rich Felkerdab441a2014-03-24 16:57:11 -04001683 } else {
Rich Felker71f099c2015-04-13 18:40:52 -04001684 size_t tmp_tls_size = libc.tls_size;
1685 pthread_t self = __pthread_self();
1686 /* Temporarily set the tls size to the full size of
1687 * builtin_tls so that __copy_tls will use the same layout
1688 * as it did for before. Then check, just to be safe. */
1689 libc.tls_size = sizeof builtin_tls;
1690 if (__copy_tls((void*)builtin_tls) != self) a_crash();
1691 libc.tls_size = tmp_tls_size;
Rich Felker9c748562012-10-04 22:48:33 -04001692 }
Rich Felker9d15d5e2014-06-19 02:01:06 -04001693 static_tls_cnt = tls_cnt;
Rich Felker9c748562012-10-04 22:48:33 -04001694
Rich Felker04109502012-08-18 16:00:23 -04001695 if (ldso_fail) _exit(127);
Rich Felker5c1909a2012-05-27 16:01:44 -04001696 if (ldd_mode) _exit(0);
1697
Rich Felkerb4b1e102018-04-19 22:19:29 -04001698 /* Determine if malloc was interposed by a replacement implementation
1699 * so that calloc and the memalign family can harden against the
1700 * possibility of incomplete replacement. */
1701 if (find_sym(head, "malloc", 1).dso != &ldso)
1702 __malloc_replaced = 1;
1703
Rich Felkerc82f4a32012-01-23 00:57:38 -05001704 /* Switch to runtime mode: any further failures in the dynamic
1705 * linker are a reportable failure rather than a fatal startup
Rich Felkerf3ddd172015-04-13 02:56:26 -04001706 * error. */
Rich Felkera53de812011-07-24 00:26:12 -04001707 runtime = 1;
Rich Felker4ce3cb52012-02-06 14:39:09 -05001708
Rich Felker3ec8d292012-04-25 00:05:42 -04001709 debug.ver = 1;
Rich Felker326e1262015-04-17 23:23:05 -04001710 debug.bp = dl_debug_state;
Rich Felker3ec8d292012-04-25 00:05:42 -04001711 debug.head = head;
Rich Felkerf3ddd172015-04-13 02:56:26 -04001712 debug.base = ldso.base;
Rich Felker3ec8d292012-04-25 00:05:42 -04001713 debug.state = 0;
1714 _dl_debug_state();
1715
Rich Felkerf3055e02017-07-04 16:58:28 -04001716 if (replace_argv0) argv[0] = replace_argv0;
1717
Rich Felker75863602013-07-21 03:00:54 -04001718 errno = 0;
Rich Felker75863602013-07-21 03:00:54 -04001719
Rich Felkerf3ddd172015-04-13 02:56:26 -04001720 CRTJMP((void *)aux[AT_ENTRY], argv-1);
1721 for(;;);
Rich Felkera7936f62012-11-30 17:56:23 -05001722}
1723
Rich Felker6476b812017-03-13 08:52:41 -04001724static void prepare_lazy(struct dso *p)
1725{
1726 size_t dyn[DYN_CNT], n, flags1=0;
1727 decode_vec(p->dynv, dyn, DYN_CNT);
1728 search_vec(p->dynv, &flags1, DT_FLAGS_1);
1729 if (dyn[DT_BIND_NOW] || (dyn[DT_FLAGS] & DF_BIND_NOW) || (flags1 & DF_1_NOW))
1730 return;
1731 n = dyn[DT_RELSZ]/2 + dyn[DT_RELASZ]/3 + dyn[DT_PLTRELSZ]/2 + 1;
1732 if (NEED_MIPS_GOT_RELOCS) {
1733 size_t j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
1734 size_t i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
1735 n += i-j;
1736 }
1737 p->lazy = calloc(n, 3*sizeof(size_t));
1738 if (!p->lazy) {
1739 error("Error preparing lazy relocation for %s: %m", p->name);
1740 longjmp(*rtld_fail, 1);
1741 }
1742 p->lazy_next = lazy_head;
1743 lazy_head = p;
1744}
1745
Rich Felker59ab43f2011-06-26 19:23:28 -04001746void *dlopen(const char *file, int mode)
1747{
Rich Felker6476b812017-03-13 08:52:41 -04001748 struct dso *volatile p, *orig_tail, *orig_syms_tail, *orig_lazy_head, *next;
Rich Felkerd56460c2015-11-12 15:50:26 -05001749 struct tls_module *orig_tls_tail;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001750 size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
Rich Felker59ab43f2011-06-26 19:23:28 -04001751 size_t i;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001752 int cs;
Rich Felker17276be2013-07-24 02:38:05 -04001753 jmp_buf jb;
Rich Felker59ab43f2011-06-26 19:23:28 -04001754
1755 if (!file) return head;
1756
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001757 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
Rich Felker59ab43f2011-06-26 19:23:28 -04001758 pthread_rwlock_wrlock(&lock);
Rich Felkerdcd60372012-10-05 11:51:50 -04001759 __inhibit_ptc();
Rich Felker59ab43f2011-06-26 19:23:28 -04001760
Rich Felkerdcd60372012-10-05 11:51:50 -04001761 p = 0;
Rich Felkerd56460c2015-11-12 15:50:26 -05001762 orig_tls_tail = tls_tail;
Rich Felkerdcd60372012-10-05 11:51:50 -04001763 orig_tls_cnt = tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001764 orig_tls_offset = tls_offset;
1765 orig_tls_align = tls_align;
Rich Felker6476b812017-03-13 08:52:41 -04001766 orig_lazy_head = lazy_head;
Rich Felker4ff234f2017-03-12 21:03:05 -04001767 orig_syms_tail = syms_tail;
Rich Felker642b7592012-10-05 01:15:25 -04001768 orig_tail = tail;
Rich Felker4d07e552013-01-23 22:07:45 -05001769 noload = mode & RTLD_NOLOAD;
Rich Felker642b7592012-10-05 01:15:25 -04001770
Rich Felker17276be2013-07-24 02:38:05 -04001771 rtld_fail = &jb;
1772 if (setjmp(*rtld_fail)) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001773 /* Clean up anything new that was (partially) loaded */
Rich Felker4ff234f2017-03-12 21:03:05 -04001774 revert_syms(orig_syms_tail);
Rich Felker59ab43f2011-06-26 19:23:28 -04001775 for (p=orig_tail->next; p; p=next) {
1776 next = p->next;
Rich Felker9d15d5e2014-06-19 02:01:06 -04001777 while (p->td_index) {
1778 void *tmp = p->td_index->next;
1779 free(p->td_index);
1780 p->td_index = tmp;
1781 }
Rich Felkereaf7ab62015-09-22 19:12:48 +00001782 free(p->funcdescs);
Rich Felker07709622015-04-04 00:15:19 -04001783 if (p->rpath != p->rpath_orig)
1784 free(p->rpath);
Rich Felker66b53cf2017-07-04 10:58:13 -04001785 if (p->deps != &nodeps_dummy)
1786 free(p->deps);
Rich Felkereaf7ab62015-09-22 19:12:48 +00001787 unmap_library(p);
Rich Felker59ab43f2011-06-26 19:23:28 -04001788 free(p);
1789 }
Rich Felkerd56460c2015-11-12 15:50:26 -05001790 if (!orig_tls_tail) libc.tls_head = 0;
1791 tls_tail = orig_tls_tail;
Rich Felker27b3fd62017-01-04 22:54:06 -05001792 if (tls_tail) tls_tail->next = 0;
Rich Felkerdcd60372012-10-05 11:51:50 -04001793 tls_cnt = orig_tls_cnt;
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001794 tls_offset = orig_tls_offset;
1795 tls_align = orig_tls_align;
Rich Felker6476b812017-03-13 08:52:41 -04001796 lazy_head = orig_lazy_head;
Rich Felker59ab43f2011-06-26 19:23:28 -04001797 tail = orig_tail;
1798 tail->next = 0;
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001799 p = 0;
Rich Felkera5d10eb2012-04-23 12:03:31 -04001800 goto end;
Rich Felker0f9b1f62013-08-23 23:13:25 -04001801 } else p = load_library(file, head);
Rich Felkera9e85c02012-03-23 00:28:20 -04001802
1803 if (!p) {
Rich Felker01d42742015-04-18 18:00:22 -04001804 error(noload ?
Rich Felker4d07e552013-01-23 22:07:45 -05001805 "Library %s is not already loaded" :
1806 "Error loading shared library %s: %m",
1807 file);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001808 goto end;
Rich Felker59ab43f2011-06-26 19:23:28 -04001809 }
1810
Rich Felker59ab43f2011-06-26 19:23:28 -04001811 /* First load handling */
Rich Felker43c423a2017-07-04 11:34:39 -04001812 int first_load = !p->deps;
1813 if (first_load) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001814 load_deps(p);
Rich Felker0c531782017-03-21 08:35:59 -04001815 if (!p->relocated && (mode & RTLD_LAZY)) {
Rich Felker6476b812017-03-13 08:52:41 -04001816 prepare_lazy(p);
Rich Felker66b53cf2017-07-04 10:58:13 -04001817 for (i=0; p->deps[i]; i++)
Rich Felker6476b812017-03-13 08:52:41 -04001818 if (!p->deps[i]->relocated)
1819 prepare_lazy(p->deps[i]);
1820 }
Rich Felker43c423a2017-07-04 11:34:39 -04001821 }
1822 if (first_load || (mode & RTLD_GLOBAL)) {
Rich Felker4ff234f2017-03-12 21:03:05 -04001823 /* Make new symbols global, at least temporarily, so we can do
1824 * relocations. If not RTLD_GLOBAL, this is reverted below. */
1825 add_syms(p);
Rich Felker66b53cf2017-07-04 10:58:13 -04001826 for (i=0; p->deps[i]; i++)
Rich Felker4ff234f2017-03-12 21:03:05 -04001827 add_syms(p->deps[i]);
Rich Felker43c423a2017-07-04 11:34:39 -04001828 }
1829 if (first_load) {
Rich Felker59ab43f2011-06-26 19:23:28 -04001830 reloc_all(p);
1831 }
1832
Rich Felker4ff234f2017-03-12 21:03:05 -04001833 /* If RTLD_GLOBAL was not specified, undo any new additions
1834 * to the global symbol table. This is a nop if the library was
1835 * previously loaded and already global. */
1836 if (!(mode & RTLD_GLOBAL))
1837 revert_syms(orig_syms_tail);
Rich Felker59ab43f2011-06-26 19:23:28 -04001838
Rich Felker6476b812017-03-13 08:52:41 -04001839 /* Processing of deferred lazy relocations must not happen until
1840 * the new libraries are committed; otherwise we could end up with
1841 * relocations resolved to symbol definitions that get removed. */
1842 redo_lazy_relocs();
1843
Rich Felkercf3fd3d2012-10-06 01:22:51 -04001844 update_tls_size();
Rich Felker3ec8d292012-04-25 00:05:42 -04001845 _dl_debug_state();
Rich Felkerf4f77c02012-10-05 13:09:09 -04001846 orig_tail = tail;
Rich Felker06933cc2011-06-26 22:09:32 -04001847end:
Rich Felkerdcd60372012-10-05 11:51:50 -04001848 __release_ptc();
Rich Felker18c0e022012-10-31 21:27:48 -04001849 if (p) gencnt++;
Rich Felker59ab43f2011-06-26 19:23:28 -04001850 pthread_rwlock_unlock(&lock);
Rich Felkerf4f77c02012-10-05 13:09:09 -04001851 if (p) do_init_fini(orig_tail);
Rich Felkerf2baf4d2012-02-07 20:31:27 -05001852 pthread_setcancelstate(cs, 0);
Rich Felker59ab43f2011-06-26 19:23:28 -04001853 return p;
1854}
1855
Rich Felker891e6542016-01-25 18:51:33 -05001856__attribute__((__visibility__("hidden")))
1857int __dl_invalid_handle(void *h)
Rich Felker6468fc92013-01-10 14:05:40 -05001858{
1859 struct dso *p;
1860 for (p=head; p; p=p->next) if (h==p) return 0;
Rich Felker01d42742015-04-18 18:00:22 -04001861 error("Invalid library handle %p", (void *)h);
Rich Felker6468fc92013-01-10 14:05:40 -05001862 return 1;
1863}
1864
Rich Felker6c5cad22015-09-22 23:41:41 +00001865static void *addr2dso(size_t a)
1866{
1867 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001868 size_t i;
1869 if (DL_FDPIC) for (p=head; p; p=p->next) {
1870 i = count_syms(p);
1871 if (a-(size_t)p->funcdescs < i*sizeof(*p->funcdescs))
1872 return p;
1873 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001874 for (p=head; p; p=p->next) {
1875 if (DL_FDPIC && p->loadmap) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001876 for (i=0; i<p->loadmap->nsegs; i++) {
1877 if (a-p->loadmap->segs[i].p_vaddr
1878 < p->loadmap->segs[i].p_memsz)
1879 return p;
1880 }
Rich Felker6c5cad22015-09-22 23:41:41 +00001881 } else {
1882 if (a-(size_t)p->map < p->map_len)
1883 return p;
1884 }
1885 }
1886 return 0;
1887}
1888
rofl0r1f53e7d2017-01-13 10:28:46 +00001889void *__tls_get_addr(tls_mod_off_t *);
Rich Felker5ba238e2014-06-19 02:59:44 -04001890
Rich Felker623753a2011-08-16 00:42:13 -04001891static void *do_dlsym(struct dso *p, const char *s, void *ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04001892{
1893 size_t i;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001894 uint32_t h = 0, gh = 0, *ght;
Rich Felker59ab43f2011-06-26 19:23:28 -04001895 Sym *sym;
Rich Felker9c748562012-10-04 22:48:33 -04001896 if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
Rich Felkerdeb15b32012-10-19 21:41:30 -04001897 if (p == RTLD_DEFAULT) {
1898 p = head;
1899 } else if (p == RTLD_NEXT) {
Rich Felker6c5cad22015-09-22 23:41:41 +00001900 p = addr2dso((size_t)ra);
Rich Felker9c748562012-10-04 22:48:33 -04001901 if (!p) p=head;
Rich Felkerdeb15b32012-10-19 21:41:30 -04001902 p = p->next;
Rich Felker9c748562012-10-04 22:48:33 -04001903 }
Rich Felkerdeb15b32012-10-19 21:41:30 -04001904 struct symdef def = find_sym(p, s, 0);
Rich Felker9c748562012-10-04 22:48:33 -04001905 if (!def.sym) goto failed;
Rich Felker0a1c2c12012-10-19 21:57:56 -04001906 if ((def.sym->st_info&0xf) == STT_TLS)
rofl0r1f53e7d2017-01-13 10:28:46 +00001907 return __tls_get_addr((tls_mod_off_t []){def.dso->tls_id, def.sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001908 if (DL_FDPIC && (def.sym->st_info&0xf) == STT_FUNC)
1909 return def.dso->funcdescs + (def.sym - def.dso->syms);
Rich Felker301335a2015-09-17 17:18:09 +00001910 return laddr(def.dso, def.sym->st_value);
Rich Felkera9e85c02012-03-23 00:28:20 -04001911 }
Rich Felker891e6542016-01-25 18:51:33 -05001912 if (__dl_invalid_handle(p))
Rich Felker637dd2d2013-01-23 20:21:36 -05001913 return 0;
Alexander Monakov8f08a582015-06-28 02:48:33 +03001914 if ((ght = p->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001915 gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001916 sym = gnu_lookup(gh, ght, p, s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001917 } else {
1918 h = sysv_hash(s);
1919 sym = sysv_lookup(s, h, p);
1920 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001921 if (sym && (sym->st_info&0xf) == STT_TLS)
rofl0r1f53e7d2017-01-13 10:28:46 +00001922 return __tls_get_addr((tls_mod_off_t []){p->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001923 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1924 return p->funcdescs + (sym - p->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001925 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001926 return laddr(p, sym->st_value);
Rich Felker66b53cf2017-07-04 10:58:13 -04001927 for (i=0; p->deps[i]; i++) {
Alexander Monakov8f08a582015-06-28 02:48:33 +03001928 if ((ght = p->deps[i]->ghashtab)) {
Rich Felker2bd05a42012-08-25 17:13:28 -04001929 if (!gh) gh = gnu_hash(s);
Alexander Monakov8f08a582015-06-28 02:48:33 +03001930 sym = gnu_lookup(gh, ght, p->deps[i], s);
Rich Felker2bd05a42012-08-25 17:13:28 -04001931 } else {
1932 if (!h) h = sysv_hash(s);
1933 sym = sysv_lookup(s, h, p->deps[i]);
1934 }
Rich Felker0a1c2c12012-10-19 21:57:56 -04001935 if (sym && (sym->st_info&0xf) == STT_TLS)
rofl0r1f53e7d2017-01-13 10:28:46 +00001936 return __tls_get_addr((tls_mod_off_t []){p->deps[i]->tls_id, sym->st_value});
Rich Felkerd47d9a52015-09-22 22:48:21 +00001937 if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
1938 return p->deps[i]->funcdescs + (sym - p->deps[i]->syms);
Rich Felker59ab43f2011-06-26 19:23:28 -04001939 if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
Rich Felker301335a2015-09-17 17:18:09 +00001940 return laddr(p->deps[i], sym->st_value);
Rich Felker59ab43f2011-06-26 19:23:28 -04001941 }
Rich Felker4027f4e2012-05-04 20:18:18 -04001942failed:
Rich Felker01d42742015-04-18 18:00:22 -04001943 error("Symbol not found: %s", s);
Rich Felker59ab43f2011-06-26 19:23:28 -04001944 return 0;
1945}
1946
Rich Felker4f8f0382016-01-25 18:37:05 -05001947int dladdr(const void *addr, Dl_info *info)
Rich Felkerf419bcb2012-08-26 21:09:26 -04001948{
1949 struct dso *p;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001950 Sym *sym, *bestsym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001951 uint32_t nsym;
1952 char *strings;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001953 void *best = 0;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001954
1955 pthread_rwlock_rdlock(&lock);
Rich Felker6c5cad22015-09-22 23:41:41 +00001956 p = addr2dso((size_t)addr);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001957 pthread_rwlock_unlock(&lock);
1958
1959 if (!p) return 0;
1960
1961 sym = p->syms;
1962 strings = p->strings;
Rich Felker39581442015-09-21 21:47:50 +00001963 nsym = count_syms(p);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001964
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001965 if (DL_FDPIC) {
1966 size_t idx = ((size_t)addr-(size_t)p->funcdescs)
1967 / sizeof(*p->funcdescs);
1968 if (idx < nsym && (sym[idx].st_info&0xf) == STT_FUNC) {
1969 best = p->funcdescs + idx;
1970 bestsym = sym + idx;
1971 }
1972 }
1973
1974 if (!best) for (; nsym; nsym--, sym++) {
Rich Felkercdc5c742013-01-16 11:47:35 -05001975 if (sym->st_value
Rich Felkerf419bcb2012-08-26 21:09:26 -04001976 && (1<<(sym->st_info&0xf) & OK_TYPES)
1977 && (1<<(sym->st_info>>4) & OK_BINDS)) {
Rich Felker301335a2015-09-17 17:18:09 +00001978 void *symaddr = laddr(p, sym->st_value);
Rich Felkerf419bcb2012-08-26 21:09:26 -04001979 if (symaddr > addr || symaddr < best)
1980 continue;
1981 best = symaddr;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001982 bestsym = sym;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001983 if (addr == symaddr)
1984 break;
1985 }
1986 }
1987
1988 if (!best) return 0;
1989
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001990 if (DL_FDPIC && (bestsym->st_info&0xf) == STT_FUNC)
1991 best = p->funcdescs + (bestsym - p->syms);
1992
Rich Felkerf419bcb2012-08-26 21:09:26 -04001993 info->dli_fname = p->name;
Rich Felkerb3ae7be2018-02-02 12:15:43 -05001994 info->dli_fbase = p->map;
Rich Felkerbde0b4b2015-10-15 22:51:56 -04001995 info->dli_sname = strings + bestsym->st_name;
Rich Felkerf419bcb2012-08-26 21:09:26 -04001996 info->dli_saddr = best;
1997
1998 return 1;
1999}
2000
Rich Felker72b25dd2015-04-14 11:39:11 -04002001__attribute__((__visibility__("hidden")))
Rich Felker400c5e52012-09-06 22:44:55 -04002002void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
Rich Felker59ab43f2011-06-26 19:23:28 -04002003{
2004 void *res;
2005 pthread_rwlock_rdlock(&lock);
Rich Felker623753a2011-08-16 00:42:13 -04002006 res = do_dlsym(p, s, ra);
Rich Felker59ab43f2011-06-26 19:23:28 -04002007 pthread_rwlock_unlock(&lock);
2008 return res;
2009}
Rich Felker18c0e022012-10-31 21:27:48 -04002010
2011int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
2012{
2013 struct dso *current;
2014 struct dl_phdr_info info;
2015 int ret = 0;
2016 for(current = head; current;) {
2017 info.dlpi_addr = (uintptr_t)current->base;
2018 info.dlpi_name = current->name;
2019 info.dlpi_phdr = current->phdr;
2020 info.dlpi_phnum = current->phnum;
2021 info.dlpi_adds = gencnt;
2022 info.dlpi_subs = 0;
2023 info.dlpi_tls_modid = current->tls_id;
Rich Felkerd56460c2015-11-12 15:50:26 -05002024 info.dlpi_tls_data = current->tls.image;
Rich Felker18c0e022012-10-31 21:27:48 -04002025
2026 ret = (callback)(&info, sizeof (info), data);
2027
2028 if (ret != 0) break;
2029
2030 pthread_rwlock_rdlock(&lock);
2031 current = current->next;
2032 pthread_rwlock_unlock(&lock);
2033 }
2034 return ret;
2035}
Rich Felker59ab43f2011-06-26 19:23:28 -04002036
Rich Felker891e6542016-01-25 18:51:33 -05002037__attribute__((__visibility__("hidden")))
Rich Felkera4fbc822016-01-25 17:56:00 -05002038void __dl_vseterr(const char *, va_list);
Rich Felker01d42742015-04-18 18:00:22 -04002039
2040static void error(const char *fmt, ...)
2041{
2042 va_list ap;
2043 va_start(ap, fmt);
Rich Felker01d42742015-04-18 18:00:22 -04002044 if (!runtime) {
2045 vdprintf(2, fmt, ap);
2046 dprintf(2, "\n");
2047 ldso_fail = 1;
2048 va_end(ap);
2049 return;
2050 }
Rich Felkera4fbc822016-01-25 17:56:00 -05002051 __dl_vseterr(fmt, ap);
Rich Felker01d42742015-04-18 18:00:22 -04002052 va_end(ap);
Rich Felker01d42742015-04-18 18:00:22 -04002053}