dynlink.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052
  1. #define _GNU_SOURCE
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <stdarg.h>
  5. #include <stddef.h>
  6. #include <string.h>
  7. #include <unistd.h>
  8. #include <stdint.h>
  9. #include <elf.h>
  10. #include <sys/mman.h>
  11. #include <limits.h>
  12. #include <fcntl.h>
  13. #include <sys/stat.h>
  14. #include <errno.h>
  15. #include <link.h>
  16. #include <setjmp.h>
  17. #include <pthread.h>
  18. #include <ctype.h>
  19. #include <dlfcn.h>
  20. #include "pthread_impl.h"
  21. #include "libc.h"
  22. #include "dynlink.h"
  23. static void error(const char *, ...);
  24. #define MAXP2(a,b) (-(-(a)&-(b)))
  25. #define ALIGN(x,y) ((x)+(y)-1 & -(y))
  26. struct debug {
  27. int ver;
  28. void *head;
  29. void (*bp)(void);
  30. int state;
  31. void *base;
  32. };
  33. struct td_index {
  34. size_t args[2];
  35. struct td_index *next;
  36. };
  37. struct dso {
  38. #if DL_FDPIC
  39. struct fdpic_loadmap *loadmap;
  40. #else
  41. unsigned char *base;
  42. #endif
  43. char *name;
  44. size_t *dynv;
  45. struct dso *next, *prev;
  46. Phdr *phdr;
  47. int phnum;
  48. size_t phentsize;
  49. Sym *syms;
  50. Elf_Symndx *hashtab;
  51. uint32_t *ghashtab;
  52. int16_t *versym;
  53. char *strings;
  54. struct dso *syms_next, *lazy_next;
  55. size_t *lazy, lazy_cnt;
  56. unsigned char *map;
  57. size_t map_len;
  58. dev_t dev;
  59. ino_t ino;
  60. char relocated;
  61. char constructed;
  62. char kernel_mapped;
  63. struct dso **deps, *needed_by;
  64. char *rpath_orig, *rpath;
  65. struct tls_module tls;
  66. size_t tls_id;
  67. size_t relro_start, relro_end;
  68. void **new_dtv;
  69. unsigned char *new_tls;
  70. volatile int new_dtv_idx, new_tls_idx;
  71. struct td_index *td_index;
  72. struct dso *fini_next;
  73. char *shortname;
  74. #if DL_FDPIC
  75. unsigned char *base;
  76. #else
  77. struct fdpic_loadmap *loadmap;
  78. #endif
  79. struct funcdesc {
  80. void *addr;
  81. size_t *got;
  82. } *funcdescs;
  83. size_t *got;
  84. char buf[];
  85. };
  86. struct symdef {
  87. Sym *sym;
  88. struct dso *dso;
  89. };
  90. int __init_tp(void *);
  91. void __init_libc(char **, char *);
  92. void *__copy_tls(unsigned char *);
  93. __attribute__((__visibility__("hidden")))
  94. const char *__libc_get_version(void);
  95. static struct builtin_tls {
  96. char c;
  97. struct pthread pt;
  98. void *space[16];
  99. } builtin_tls[1];
  100. #define MIN_TLS_ALIGN offsetof(struct builtin_tls, pt)
  101. #define ADDEND_LIMIT 4096
  102. static size_t *saved_addends, *apply_addends_to;
  103. static struct dso ldso;
  104. static struct dso *head, *tail, *fini_head, *syms_tail, *lazy_head;
  105. static char *env_path, *sys_path;
  106. static unsigned long long gencnt;
  107. static int runtime;
  108. static int ldd_mode;
  109. static int ldso_fail;
  110. static int noload;
  111. static jmp_buf *rtld_fail;
  112. static pthread_rwlock_t lock;
  113. static struct debug debug;
  114. static struct tls_module *tls_tail;
  115. static size_t tls_cnt, tls_offset, tls_align = MIN_TLS_ALIGN;
  116. static size_t static_tls_cnt;
  117. static pthread_mutex_t init_fini_lock = { ._m_type = PTHREAD_MUTEX_RECURSIVE };
  118. static struct fdpic_loadmap *app_loadmap;
  119. static struct fdpic_dummy_loadmap app_dummy_loadmap;
  120. static struct dso *const nodeps_dummy;
  121. struct debug *_dl_debug_addr = &debug;
  122. __attribute__((__visibility__("hidden")))
  123. extern int __malloc_replaced;
  124. __attribute__((__visibility__("hidden")))
  125. void (*const __init_array_start)(void)=0, (*const __fini_array_start)(void)=0;
  126. __attribute__((__visibility__("hidden")))
  127. extern void (*const __init_array_end)(void), (*const __fini_array_end)(void);
  128. weak_alias(__init_array_start, __init_array_end);
  129. weak_alias(__fini_array_start, __fini_array_end);
  130. static int dl_strcmp(const char *l, const char *r)
  131. {
  132. for (; *l==*r && *l; l++, r++);
  133. return *(unsigned char *)l - *(unsigned char *)r;
  134. }
  135. #define strcmp(l,r) dl_strcmp(l,r)
  136. /* Compute load address for a virtual address in a given dso. */
  137. #if DL_FDPIC
  138. static void *laddr(const struct dso *p, size_t v)
  139. {
  140. size_t j=0;
  141. if (!p->loadmap) return p->base + v;
  142. for (j=0; v-p->loadmap->segs[j].p_vaddr >= p->loadmap->segs[j].p_memsz; j++);
  143. return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
  144. }
  145. static void *laddr_pg(const struct dso *p, size_t v)
  146. {
  147. size_t j=0;
  148. size_t pgsz = PAGE_SIZE;
  149. if (!p->loadmap) return p->base + v;
  150. for (j=0; ; j++) {
  151. size_t a = p->loadmap->segs[j].p_vaddr;
  152. size_t b = a + p->loadmap->segs[j].p_memsz;
  153. a &= -pgsz;
  154. b += pgsz-1;
  155. b &= -pgsz;
  156. if (v-a<b-a) break;
  157. }
  158. return (void *)(v - p->loadmap->segs[j].p_vaddr + p->loadmap->segs[j].addr);
  159. }
  160. #define fpaddr(p, v) ((void (*)())&(struct funcdesc){ \
  161. laddr(p, v), (p)->got })
  162. #else
  163. #define laddr(p, v) (void *)((p)->base + (v))
  164. #define laddr_pg(p, v) laddr(p, v)
  165. #define fpaddr(p, v) ((void (*)())laddr(p, v))
  166. #endif
  167. static void decode_vec(size_t *v, size_t *a, size_t cnt)
  168. {
  169. size_t i;
  170. for (i=0; i<cnt; i++) a[i] = 0;
  171. for (; v[0]; v+=2) if (v[0]-1<cnt-1) {
  172. a[0] |= 1UL<<v[0];
  173. a[v[0]] = v[1];
  174. }
  175. }
  176. static int search_vec(size_t *v, size_t *r, size_t key)
  177. {
  178. for (; v[0]!=key; v+=2)
  179. if (!v[0]) return 0;
  180. *r = v[1];
  181. return 1;
  182. }
  183. static uint32_t sysv_hash(const char *s0)
  184. {
  185. const unsigned char *s = (void *)s0;
  186. uint_fast32_t h = 0;
  187. while (*s) {
  188. h = 16*h + *s++;
  189. h ^= h>>24 & 0xf0;
  190. }
  191. return h & 0xfffffff;
  192. }
  193. static uint32_t gnu_hash(const char *s0)
  194. {
  195. const unsigned char *s = (void *)s0;
  196. uint_fast32_t h = 5381;
  197. for (; *s; s++)
  198. h += h*32 + *s;
  199. return h;
  200. }
  201. static Sym *sysv_lookup(const char *s, uint32_t h, struct dso *dso)
  202. {
  203. size_t i;
  204. Sym *syms = dso->syms;
  205. Elf_Symndx *hashtab = dso->hashtab;
  206. char *strings = dso->strings;
  207. for (i=hashtab[2+h%hashtab[0]]; i; i=hashtab[2+hashtab[0]+i]) {
  208. if ((!dso->versym || dso->versym[i] >= 0)
  209. && (!strcmp(s, strings+syms[i].st_name)))
  210. return syms+i;
  211. }
  212. return 0;
  213. }
  214. static Sym *gnu_lookup(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s)
  215. {
  216. uint32_t nbuckets = hashtab[0];
  217. uint32_t *buckets = hashtab + 4 + hashtab[2]*(sizeof(size_t)/4);
  218. uint32_t i = buckets[h1 % nbuckets];
  219. if (!i) return 0;
  220. uint32_t *hashval = buckets + nbuckets + (i - hashtab[1]);
  221. for (h1 |= 1; ; i++) {
  222. uint32_t h2 = *hashval++;
  223. if ((h1 == (h2|1)) && (!dso->versym || dso->versym[i] >= 0)
  224. && !strcmp(s, dso->strings + dso->syms[i].st_name))
  225. return dso->syms+i;
  226. if (h2 & 1) break;
  227. }
  228. return 0;
  229. }
  230. static Sym *gnu_lookup_filtered(uint32_t h1, uint32_t *hashtab, struct dso *dso, const char *s, uint32_t fofs, size_t fmask)
  231. {
  232. const size_t *bloomwords = (const void *)(hashtab+4);
  233. size_t f = bloomwords[fofs & (hashtab[2]-1)];
  234. if (!(f & fmask)) return 0;
  235. f >>= (h1 >> hashtab[3]) % (8 * sizeof f);
  236. if (!(f & 1)) return 0;
  237. return gnu_lookup(h1, hashtab, dso, s);
  238. }
  239. #define OK_TYPES (1<<STT_NOTYPE | 1<<STT_OBJECT | 1<<STT_FUNC | 1<<STT_COMMON | 1<<STT_TLS)
  240. #define OK_BINDS (1<<STB_GLOBAL | 1<<STB_WEAK | 1<<STB_GNU_UNIQUE)
  241. #ifndef ARCH_SYM_REJECT_UND
  242. #define ARCH_SYM_REJECT_UND(s) 0
  243. #endif
  244. static struct symdef find_sym(struct dso *dso, const char *s, int need_def)
  245. {
  246. uint32_t h = 0, gh = gnu_hash(s), gho = gh / (8*sizeof(size_t)), *ght;
  247. size_t ghm = 1ul << gh % (8*sizeof(size_t));
  248. struct symdef def = {0};
  249. for (; dso; dso=dso->syms_next) {
  250. Sym *sym;
  251. if ((ght = dso->ghashtab)) {
  252. sym = gnu_lookup_filtered(gh, ght, dso, s, gho, ghm);
  253. } else {
  254. if (!h) h = sysv_hash(s);
  255. sym = sysv_lookup(s, h, dso);
  256. }
  257. if (!sym) continue;
  258. if (!sym->st_shndx)
  259. if (need_def || (sym->st_info&0xf) == STT_TLS
  260. || ARCH_SYM_REJECT_UND(sym))
  261. continue;
  262. if (!sym->st_value)
  263. if ((sym->st_info&0xf) != STT_TLS)
  264. continue;
  265. if (!(1<<(sym->st_info&0xf) & OK_TYPES)) continue;
  266. if (!(1<<(sym->st_info>>4) & OK_BINDS)) continue;
  267. def.sym = sym;
  268. def.dso = dso;
  269. break;
  270. }
  271. return def;
  272. }
  273. __attribute__((__visibility__("hidden")))
  274. ptrdiff_t __tlsdesc_static(), __tlsdesc_dynamic();
  275. static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride)
  276. {
  277. unsigned char *base = dso->base;
  278. Sym *syms = dso->syms;
  279. char *strings = dso->strings;
  280. Sym *sym;
  281. const char *name;
  282. void *ctx;
  283. int type;
  284. int sym_index;
  285. struct symdef def;
  286. size_t *reloc_addr;
  287. size_t sym_val;
  288. size_t tls_val;
  289. size_t addend;
  290. int skip_relative = 0, reuse_addends = 0, save_slot = 0;
  291. if (dso == &ldso) {
  292. /* Only ldso's REL table needs addend saving/reuse. */
  293. if (rel == apply_addends_to)
  294. reuse_addends = 1;
  295. skip_relative = 1;
  296. }
  297. for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) {
  298. if (skip_relative && IS_RELATIVE(rel[1], dso->syms)) continue;
  299. type = R_TYPE(rel[1]);
  300. if (type == REL_NONE) continue;
  301. reloc_addr = laddr(dso, rel[0]);
  302. if (stride > 2) {
  303. addend = rel[2];
  304. } else if (type==REL_GOT || type==REL_PLT|| type==REL_COPY) {
  305. addend = 0;
  306. } else if (reuse_addends) {
  307. /* Save original addend in stage 2 where the dso
  308. * chain consists of just ldso; otherwise read back
  309. * saved addend since the inline one was clobbered. */
  310. if (head==&ldso)
  311. saved_addends[save_slot] = *reloc_addr;
  312. addend = saved_addends[save_slot++];
  313. } else {
  314. addend = *reloc_addr;
  315. }
  316. sym_index = R_SYM(rel[1]);
  317. if (sym_index) {
  318. sym = syms + sym_index;
  319. name = strings + sym->st_name;
  320. ctx = type==REL_COPY ? head->syms_next : head;
  321. def = (sym->st_info&0xf) == STT_SECTION
  322. ? (struct symdef){ .dso = dso, .sym = sym }
  323. : find_sym(ctx, name, type==REL_PLT);
  324. if (!def.sym && (sym->st_shndx != SHN_UNDEF
  325. || sym->st_info>>4 != STB_WEAK)) {
  326. if (dso->lazy && (type==REL_PLT || type==REL_GOT)) {
  327. dso->lazy[3*dso->lazy_cnt+0] = rel[0];
  328. dso->lazy[3*dso->lazy_cnt+1] = rel[1];
  329. dso->lazy[3*dso->lazy_cnt+2] = addend;
  330. dso->lazy_cnt++;
  331. continue;
  332. }
  333. error("Error relocating %s: %s: symbol not found",
  334. dso->name, name);
  335. if (runtime) longjmp(*rtld_fail, 1);
  336. continue;
  337. }
  338. } else {
  339. sym = 0;
  340. def.sym = 0;
  341. def.dso = dso;
  342. }
  343. sym_val = def.sym ? (size_t)laddr(def.dso, def.sym->st_value) : 0;
  344. tls_val = def.sym ? def.sym->st_value : 0;
  345. switch(type) {
  346. case REL_NONE:
  347. break;
  348. case REL_OFFSET:
  349. addend -= (size_t)reloc_addr;
  350. case REL_SYMBOLIC:
  351. case REL_GOT:
  352. case REL_PLT:
  353. *reloc_addr = sym_val + addend;
  354. break;
  355. case REL_RELATIVE:
  356. *reloc_addr = (size_t)base + addend;
  357. break;
  358. case REL_SYM_OR_REL:
  359. if (sym) *reloc_addr = sym_val + addend;
  360. else *reloc_addr = (size_t)base + addend;
  361. break;
  362. case REL_COPY:
  363. memcpy(reloc_addr, (void *)sym_val, sym->st_size);
  364. break;
  365. case REL_OFFSET32:
  366. *(uint32_t *)reloc_addr = sym_val + addend
  367. - (size_t)reloc_addr;
  368. break;
  369. case REL_FUNCDESC:
  370. *reloc_addr = def.sym ? (size_t)(def.dso->funcdescs
  371. + (def.sym - def.dso->syms)) : 0;
  372. break;
  373. case REL_FUNCDESC_VAL:
  374. if ((sym->st_info&0xf) == STT_SECTION) *reloc_addr += sym_val;
  375. else *reloc_addr = sym_val;
  376. reloc_addr[1] = def.sym ? (size_t)def.dso->got : 0;
  377. break;
  378. case REL_DTPMOD:
  379. *reloc_addr = def.dso->tls_id;
  380. break;
  381. case REL_DTPOFF:
  382. *reloc_addr = tls_val + addend - DTP_OFFSET;
  383. break;
  384. #ifdef TLS_ABOVE_TP
  385. case REL_TPOFF:
  386. *reloc_addr = tls_val + def.dso->tls.offset + TPOFF_K + addend;
  387. break;
  388. #else
  389. case REL_TPOFF:
  390. *reloc_addr = tls_val - def.dso->tls.offset + addend;
  391. break;
  392. case REL_TPOFF_NEG:
  393. *reloc_addr = def.dso->tls.offset - tls_val + addend;
  394. break;
  395. #endif
  396. case REL_TLSDESC:
  397. if (stride<3) addend = reloc_addr[1];
  398. if (runtime && def.dso->tls_id >= static_tls_cnt) {
  399. struct td_index *new = malloc(sizeof *new);
  400. if (!new) {
  401. error(
  402. "Error relocating %s: cannot allocate TLSDESC for %s",
  403. dso->name, sym ? name : "(local)" );
  404. longjmp(*rtld_fail, 1);
  405. }
  406. new->next = dso->td_index;
  407. dso->td_index = new;
  408. new->args[0] = def.dso->tls_id;
  409. new->args[1] = tls_val + addend;
  410. reloc_addr[0] = (size_t)__tlsdesc_dynamic;
  411. reloc_addr[1] = (size_t)new;
  412. } else {
  413. reloc_addr[0] = (size_t)__tlsdesc_static;
  414. #ifdef TLS_ABOVE_TP
  415. reloc_addr[1] = tls_val + def.dso->tls.offset
  416. + TPOFF_K + addend;
  417. #else
  418. reloc_addr[1] = tls_val - def.dso->tls.offset
  419. + addend;
  420. #endif
  421. }
  422. break;
  423. default:
  424. error("Error relocating %s: unsupported relocation type %d",
  425. dso->name, type);
  426. if (runtime) longjmp(*rtld_fail, 1);
  427. continue;
  428. }
  429. }
  430. }
  431. static void redo_lazy_relocs()
  432. {
  433. struct dso *p = lazy_head, *next;
  434. lazy_head = 0;
  435. for (; p; p=next) {
  436. next = p->lazy_next;
  437. size_t size = p->lazy_cnt*3*sizeof(size_t);
  438. p->lazy_cnt = 0;
  439. do_relocs(p, p->lazy, size, 3);
  440. if (p->lazy_cnt) {
  441. p->lazy_next = lazy_head;
  442. lazy_head = p;
  443. } else {
  444. free(p->lazy);
  445. p->lazy = 0;
  446. p->lazy_next = 0;
  447. }
  448. }
  449. }
  450. /* A huge hack: to make up for the wastefulness of shared libraries
  451. * needing at least a page of dirty memory even if they have no global
  452. * data, we reclaim the gaps at the beginning and end of writable maps
  453. * and "donate" them to the heap. */
  454. static void reclaim(struct dso *dso, size_t start, size_t end)
  455. {
  456. void __malloc_donate(char *, char *);
  457. if (start >= dso->relro_start && start < dso->relro_end) start = dso->relro_end;
  458. if (end >= dso->relro_start && end < dso->relro_end) end = dso->relro_start;
  459. if (start >= end) return;
  460. char *base = laddr_pg(dso, start);
  461. __malloc_donate(base, base+(end-start));
  462. }
  463. static void reclaim_gaps(struct dso *dso)
  464. {
  465. Phdr *ph = dso->phdr;
  466. size_t phcnt = dso->phnum;
  467. for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
  468. if (ph->p_type!=PT_LOAD) continue;
  469. if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
  470. reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
  471. reclaim(dso, ph->p_vaddr+ph->p_memsz,
  472. ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
  473. }
  474. }
  475. static void *mmap_fixed(void *p, size_t n, int prot, int flags, int fd, off_t off)
  476. {
  477. static int no_map_fixed;
  478. char *q;
  479. if (!no_map_fixed) {
  480. q = mmap(p, n, prot, flags|MAP_FIXED, fd, off);
  481. if (!DL_NOMMU_SUPPORT || q != MAP_FAILED || errno != EINVAL)
  482. return q;
  483. no_map_fixed = 1;
  484. }
  485. /* Fallbacks for MAP_FIXED failure on NOMMU kernels. */
  486. if (flags & MAP_ANONYMOUS) {
  487. memset(p, 0, n);
  488. return p;
  489. }
  490. ssize_t r;
  491. if (lseek(fd, off, SEEK_SET) < 0) return MAP_FAILED;
  492. for (q=p; n; q+=r, off+=r, n-=r) {
  493. r = read(fd, q, n);
  494. if (r < 0 && errno != EINTR) return MAP_FAILED;
  495. if (!r) {
  496. memset(q, 0, n);
  497. break;
  498. }
  499. }
  500. return p;
  501. }
  502. static void unmap_library(struct dso *dso)
  503. {
  504. if (dso->loadmap) {
  505. size_t i;
  506. for (i=0; i<dso->loadmap->nsegs; i++) {
  507. if (!dso->loadmap->segs[i].p_memsz)
  508. continue;
  509. munmap((void *)dso->loadmap->segs[i].addr,
  510. dso->loadmap->segs[i].p_memsz);
  511. }
  512. free(dso->loadmap);
  513. } else if (dso->map && dso->map_len) {
  514. munmap(dso->map, dso->map_len);
  515. }
  516. }
  517. static void *map_library(int fd, struct dso *dso)
  518. {
  519. Ehdr buf[(896+sizeof(Ehdr))/sizeof(Ehdr)];
  520. void *allocated_buf=0;
  521. size_t phsize;
  522. size_t addr_min=SIZE_MAX, addr_max=0, map_len;
  523. size_t this_min, this_max;
  524. size_t nsegs = 0;
  525. off_t off_start;
  526. Ehdr *eh;
  527. Phdr *ph, *ph0;
  528. unsigned prot;
  529. unsigned char *map=MAP_FAILED, *base;
  530. size_t dyn=0;
  531. size_t tls_image=0;
  532. size_t i;
  533. ssize_t l = read(fd, buf, sizeof buf);
  534. eh = buf;
  535. if (l<0) return 0;
  536. if (l<sizeof *eh || (eh->e_type != ET_DYN && eh->e_type != ET_EXEC))
  537. goto noexec;
  538. phsize = eh->e_phentsize * eh->e_phnum;
  539. if (phsize > sizeof buf - sizeof *eh) {
  540. allocated_buf = malloc(phsize);
  541. if (!allocated_buf) return 0;
  542. l = pread(fd, allocated_buf, phsize, eh->e_phoff);
  543. if (l < 0) goto error;
  544. if (l != phsize) goto noexec;
  545. ph = ph0 = allocated_buf;
  546. } else if (eh->e_phoff + phsize > l) {
  547. l = pread(fd, buf+1, phsize, eh->e_phoff);
  548. if (l < 0) goto error;
  549. if (l != phsize) goto noexec;
  550. ph = ph0 = (void *)(buf + 1);
  551. } else {
  552. ph = ph0 = (void *)((char *)buf + eh->e_phoff);
  553. }
  554. for (i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
  555. if (ph->p_type == PT_DYNAMIC) {
  556. dyn = ph->p_vaddr;
  557. } else if (ph->p_type == PT_TLS) {
  558. tls_image = ph->p_vaddr;
  559. dso->tls.align = ph->p_align;
  560. dso->tls.len = ph->p_filesz;
  561. dso->tls.size = ph->p_memsz;
  562. } else if (ph->p_type == PT_GNU_RELRO) {
  563. dso->relro_start = ph->p_vaddr & -PAGE_SIZE;
  564. dso->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
  565. }
  566. if (ph->p_type != PT_LOAD) continue;
  567. nsegs++;
  568. if (ph->p_vaddr < addr_min) {
  569. addr_min = ph->p_vaddr;
  570. off_start = ph->p_offset;
  571. prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
  572. ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
  573. ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
  574. }
  575. if (ph->p_vaddr+ph->p_memsz > addr_max) {
  576. addr_max = ph->p_vaddr+ph->p_memsz;
  577. }
  578. }
  579. if (!dyn) goto noexec;
  580. if (DL_FDPIC && !(eh->e_flags & FDPIC_CONSTDISP_FLAG)) {
  581. dso->loadmap = calloc(1, sizeof *dso->loadmap
  582. + nsegs * sizeof *dso->loadmap->segs);
  583. if (!dso->loadmap) goto error;
  584. dso->loadmap->nsegs = nsegs;
  585. for (ph=ph0, i=0; i<nsegs; ph=(void *)((char *)ph+eh->e_phentsize)) {
  586. if (ph->p_type != PT_LOAD) continue;
  587. prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
  588. ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
  589. ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
  590. map = mmap(0, ph->p_memsz + (ph->p_vaddr & PAGE_SIZE-1),
  591. prot, MAP_PRIVATE,
  592. fd, ph->p_offset & -PAGE_SIZE);
  593. if (map == MAP_FAILED) {
  594. unmap_library(dso);
  595. goto error;
  596. }
  597. dso->loadmap->segs[i].addr = (size_t)map +
  598. (ph->p_vaddr & PAGE_SIZE-1);
  599. dso->loadmap->segs[i].p_vaddr = ph->p_vaddr;
  600. dso->loadmap->segs[i].p_memsz = ph->p_memsz;
  601. i++;
  602. if (prot & PROT_WRITE) {
  603. size_t brk = (ph->p_vaddr & PAGE_SIZE-1)
  604. + ph->p_filesz;
  605. size_t pgbrk = brk + PAGE_SIZE-1 & -PAGE_SIZE;
  606. size_t pgend = brk + ph->p_memsz - ph->p_filesz
  607. + PAGE_SIZE-1 & -PAGE_SIZE;
  608. if (pgend > pgbrk && mmap_fixed(map+pgbrk,
  609. pgend-pgbrk, prot,
  610. MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS,
  611. -1, off_start) == MAP_FAILED)
  612. goto error;
  613. memset(map + brk, 0, pgbrk-brk);
  614. }
  615. }
  616. map = (void *)dso->loadmap->segs[0].addr;
  617. map_len = 0;
  618. goto done_mapping;
  619. }
  620. addr_max += PAGE_SIZE-1;
  621. addr_max &= -PAGE_SIZE;
  622. addr_min &= -PAGE_SIZE;
  623. off_start &= -PAGE_SIZE;
  624. map_len = addr_max - addr_min + off_start;
  625. /* The first time, we map too much, possibly even more than
  626. * the length of the file. This is okay because we will not
  627. * use the invalid part; we just need to reserve the right
  628. * amount of virtual address space to map over later. */
  629. map = DL_NOMMU_SUPPORT
  630. ? mmap((void *)addr_min, map_len, PROT_READ|PROT_WRITE|PROT_EXEC,
  631. MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
  632. : mmap((void *)addr_min, map_len, prot,
  633. MAP_PRIVATE, fd, off_start);
  634. if (map==MAP_FAILED) goto error;
  635. dso->map = map;
  636. dso->map_len = map_len;
  637. /* If the loaded file is not relocatable and the requested address is
  638. * not available, then the load operation must fail. */
  639. if (eh->e_type != ET_DYN && addr_min && map!=(void *)addr_min) {
  640. errno = EBUSY;
  641. goto error;
  642. }
  643. base = map - addr_min;
  644. dso->phdr = 0;
  645. dso->phnum = 0;
  646. for (ph=ph0, i=eh->e_phnum; i; i--, ph=(void *)((char *)ph+eh->e_phentsize)) {
  647. if (ph->p_type != PT_LOAD) continue;
  648. /* Check if the programs headers are in this load segment, and
  649. * if so, record the address for use by dl_iterate_phdr. */
  650. if (!dso->phdr && eh->e_phoff >= ph->p_offset
  651. && eh->e_phoff+phsize <= ph->p_offset+ph->p_filesz) {
  652. dso->phdr = (void *)(base + ph->p_vaddr
  653. + (eh->e_phoff-ph->p_offset));
  654. dso->phnum = eh->e_phnum;
  655. dso->phentsize = eh->e_phentsize;
  656. }
  657. /* Reuse the existing mapping for the lowest-address LOAD */
  658. if ((ph->p_vaddr & -PAGE_SIZE) == addr_min && !DL_NOMMU_SUPPORT)
  659. continue;
  660. this_min = ph->p_vaddr & -PAGE_SIZE;
  661. this_max = ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE;
  662. off_start = ph->p_offset & -PAGE_SIZE;
  663. prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) |
  664. ((ph->p_flags&PF_W) ? PROT_WRITE: 0) |
  665. ((ph->p_flags&PF_X) ? PROT_EXEC : 0));
  666. if (mmap_fixed(base+this_min, this_max-this_min, prot, MAP_PRIVATE|MAP_FIXED, fd, off_start) == MAP_FAILED)
  667. goto error;
  668. if (ph->p_memsz > ph->p_filesz) {
  669. size_t brk = (size_t)base+ph->p_vaddr+ph->p_filesz;
  670. size_t pgbrk = brk+PAGE_SIZE-1 & -PAGE_SIZE;
  671. memset((void *)brk, 0, pgbrk-brk & PAGE_SIZE-1);
  672. 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)
  673. goto error;
  674. }
  675. }
  676. for (i=0; ((size_t *)(base+dyn))[i]; i+=2)
  677. if (((size_t *)(base+dyn))[i]==DT_TEXTREL) {
  678. if (mprotect(map, map_len, PROT_READ|PROT_WRITE|PROT_EXEC)
  679. && errno != ENOSYS)
  680. goto error;
  681. break;
  682. }
  683. done_mapping:
  684. dso->base = base;
  685. dso->dynv = laddr(dso, dyn);
  686. if (dso->tls.size) dso->tls.image = laddr(dso, tls_image);
  687. free(allocated_buf);
  688. return map;
  689. noexec:
  690. errno = ENOEXEC;
  691. error:
  692. if (map!=MAP_FAILED) unmap_library(dso);
  693. free(allocated_buf);
  694. return 0;
  695. }
  696. static int path_open(const char *name, const char *s, char *buf, size_t buf_size)
  697. {
  698. size_t l;
  699. int fd;
  700. for (;;) {
  701. s += strspn(s, ":\n");
  702. l = strcspn(s, ":\n");
  703. if (l-1 >= INT_MAX) return -1;
  704. if (snprintf(buf, buf_size, "%.*s/%s", (int)l, s, name) < buf_size) {
  705. if ((fd = open(buf, O_RDONLY|O_CLOEXEC))>=0) return fd;
  706. switch (errno) {
  707. case ENOENT:
  708. case ENOTDIR:
  709. case EACCES:
  710. case ENAMETOOLONG:
  711. break;
  712. default:
  713. /* Any negative value but -1 will inhibit
  714. * futher path search. */
  715. return -2;
  716. }
  717. }
  718. s += l;
  719. }
  720. }
  721. static int fixup_rpath(struct dso *p, char *buf, size_t buf_size)
  722. {
  723. size_t n, l;
  724. const char *s, *t, *origin;
  725. char *d;
  726. if (p->rpath || !p->rpath_orig) return 0;
  727. if (!strchr(p->rpath_orig, '$')) {
  728. p->rpath = p->rpath_orig;
  729. return 0;
  730. }
  731. n = 0;
  732. s = p->rpath_orig;
  733. while ((t=strchr(s, '$'))) {
  734. if (strncmp(t, "$ORIGIN", 7) && strncmp(t, "${ORIGIN}", 9))
  735. return 0;
  736. s = t+1;
  737. n++;
  738. }
  739. if (n > SSIZE_MAX/PATH_MAX) return 0;
  740. if (p->kernel_mapped) {
  741. /* $ORIGIN searches cannot be performed for the main program
  742. * when it is suid/sgid/AT_SECURE. This is because the
  743. * pathname is under the control of the caller of execve.
  744. * For libraries, however, $ORIGIN can be processed safely
  745. * since the library's pathname came from a trusted source
  746. * (either system paths or a call to dlopen). */
  747. if (libc.secure)
  748. return 0;
  749. l = readlink("/proc/self/exe", buf, buf_size);
  750. if (l == -1) switch (errno) {
  751. case ENOENT:
  752. case ENOTDIR:
  753. case EACCES:
  754. break;
  755. default:
  756. return -1;
  757. }
  758. if (l >= buf_size)
  759. return 0;
  760. buf[l] = 0;
  761. origin = buf;
  762. } else {
  763. origin = p->name;
  764. }
  765. t = strrchr(origin, '/');
  766. if (t) {
  767. l = t-origin;
  768. } else {
  769. /* Normally p->name will always be an absolute or relative
  770. * pathname containing at least one '/' character, but in the
  771. * case where ldso was invoked as a command to execute a
  772. * program in the working directory, app.name may not. Fix. */
  773. origin = ".";
  774. l = 1;
  775. }
  776. /* Disallow non-absolute origins for suid/sgid/AT_SECURE. */
  777. if (libc.secure && *origin != '/')
  778. return 0;
  779. p->rpath = malloc(strlen(p->rpath_orig) + n*l + 1);
  780. if (!p->rpath) return -1;
  781. d = p->rpath;
  782. s = p->rpath_orig;
  783. while ((t=strchr(s, '$'))) {
  784. memcpy(d, s, t-s);
  785. d += t-s;
  786. memcpy(d, origin, l);
  787. d += l;
  788. /* It was determined previously that the '$' is followed
  789. * either by "ORIGIN" or "{ORIGIN}". */
  790. s = t + 7 + 2*(t[1]=='{');
  791. }
  792. strcpy(d, s);
  793. return 0;
  794. }
  795. static void decode_dyn(struct dso *p)
  796. {
  797. size_t dyn[DYN_CNT];
  798. decode_vec(p->dynv, dyn, DYN_CNT);
  799. p->syms = laddr(p, dyn[DT_SYMTAB]);
  800. p->strings = laddr(p, dyn[DT_STRTAB]);
  801. if (dyn[0]&(1<<DT_HASH))
  802. p->hashtab = laddr(p, dyn[DT_HASH]);
  803. if (dyn[0]&(1<<DT_RPATH))
  804. p->rpath_orig = p->strings + dyn[DT_RPATH];
  805. if (dyn[0]&(1<<DT_RUNPATH))
  806. p->rpath_orig = p->strings + dyn[DT_RUNPATH];
  807. if (dyn[0]&(1<<DT_PLTGOT))
  808. p->got = laddr(p, dyn[DT_PLTGOT]);
  809. if (search_vec(p->dynv, dyn, DT_GNU_HASH))
  810. p->ghashtab = laddr(p, *dyn);
  811. if (search_vec(p->dynv, dyn, DT_VERSYM))
  812. p->versym = laddr(p, *dyn);
  813. }
  814. static size_t count_syms(struct dso *p)
  815. {
  816. if (p->hashtab) return p->hashtab[1];
  817. size_t nsym, i;
  818. uint32_t *buckets = p->ghashtab + 4 + (p->ghashtab[2]*sizeof(size_t)/4);
  819. uint32_t *hashval;
  820. for (i = nsym = 0; i < p->ghashtab[0]; i++) {
  821. if (buckets[i] > nsym)
  822. nsym = buckets[i];
  823. }
  824. if (nsym) {
  825. hashval = buckets + p->ghashtab[0] + (nsym - p->ghashtab[1]);
  826. do nsym++;
  827. while (!(*hashval++ & 1));
  828. }
  829. return nsym;
  830. }
  831. static void *dl_mmap(size_t n)
  832. {
  833. void *p;
  834. int prot = PROT_READ|PROT_WRITE, flags = MAP_ANONYMOUS|MAP_PRIVATE;
  835. #ifdef SYS_mmap2
  836. p = (void *)__syscall(SYS_mmap2, 0, n, prot, flags, -1, 0);
  837. #else
  838. p = (void *)__syscall(SYS_mmap, 0, n, prot, flags, -1, 0);
  839. #endif
  840. return p == MAP_FAILED ? 0 : p;
  841. }
  842. static void makefuncdescs(struct dso *p)
  843. {
  844. static int self_done;
  845. size_t nsym = count_syms(p);
  846. size_t i, size = nsym * sizeof(*p->funcdescs);
  847. if (!self_done) {
  848. p->funcdescs = dl_mmap(size);
  849. self_done = 1;
  850. } else {
  851. p->funcdescs = malloc(size);
  852. }
  853. if (!p->funcdescs) {
  854. if (!runtime) a_crash();
  855. error("Error allocating function descriptors for %s", p->name);
  856. longjmp(*rtld_fail, 1);
  857. }
  858. for (i=0; i<nsym; i++) {
  859. if ((p->syms[i].st_info&0xf)==STT_FUNC && p->syms[i].st_shndx) {
  860. p->funcdescs[i].addr = laddr(p, p->syms[i].st_value);
  861. p->funcdescs[i].got = p->got;
  862. } else {
  863. p->funcdescs[i].addr = 0;
  864. p->funcdescs[i].got = 0;
  865. }
  866. }
  867. }
  868. static struct dso *load_library(const char *name, struct dso *needed_by)
  869. {
  870. char buf[2*NAME_MAX+2];
  871. const char *pathname;
  872. unsigned char *map;
  873. struct dso *p, temp_dso = {0};
  874. int fd;
  875. struct stat st;
  876. size_t alloc_size;
  877. int n_th = 0;
  878. int is_self = 0;
  879. if (!*name) {
  880. errno = EINVAL;
  881. return 0;
  882. }
  883. /* Catch and block attempts to reload the implementation itself */
  884. if (name[0]=='l' && name[1]=='i' && name[2]=='b') {
  885. static const char reserved[] =
  886. "c.pthread.rt.m.dl.util.xnet.";
  887. const char *rp, *next;
  888. for (rp=reserved; *rp; rp=next) {
  889. next = strchr(rp, '.') + 1;
  890. if (strncmp(name+3, rp, next-rp) == 0)
  891. break;
  892. }
  893. if (*rp) {
  894. if (ldd_mode) {
  895. /* Track which names have been resolved
  896. * and only report each one once. */
  897. static unsigned reported;
  898. unsigned mask = 1U<<(rp-reserved);
  899. if (!(reported & mask)) {
  900. reported |= mask;
  901. dprintf(1, "\t%s => %s (%p)\n",
  902. name, ldso.name,
  903. ldso.base);
  904. }
  905. }
  906. is_self = 1;
  907. }
  908. }
  909. if (!strcmp(name, ldso.name)) is_self = 1;
  910. if (is_self) {
  911. if (!ldso.prev) {
  912. tail->next = &ldso;
  913. ldso.prev = tail;
  914. tail = &ldso;
  915. }
  916. return &ldso;
  917. }
  918. if (strchr(name, '/')) {
  919. pathname = name;
  920. fd = open(name, O_RDONLY|O_CLOEXEC);
  921. } else {
  922. /* Search for the name to see if it's already loaded */
  923. for (p=head->next; p; p=p->next) {
  924. if (p->shortname && !strcmp(p->shortname, name)) {
  925. return p;
  926. }
  927. }
  928. if (strlen(name) > NAME_MAX) return 0;
  929. fd = -1;
  930. if (env_path) fd = path_open(name, env_path, buf, sizeof buf);
  931. for (p=needed_by; fd == -1 && p; p=p->needed_by) {
  932. if (fixup_rpath(p, buf, sizeof buf) < 0)
  933. fd = -2; /* Inhibit further search. */
  934. if (p->rpath)
  935. fd = path_open(name, p->rpath, buf, sizeof buf);
  936. }
  937. if (fd == -1) {
  938. if (!sys_path) {
  939. char *prefix = 0;
  940. size_t prefix_len;
  941. if (ldso.name[0]=='/') {
  942. char *s, *t, *z;
  943. for (s=t=z=ldso.name; *s; s++)
  944. if (*s=='/') z=t, t=s;
  945. prefix_len = z-ldso.name;
  946. if (prefix_len < PATH_MAX)
  947. prefix = ldso.name;
  948. }
  949. if (!prefix) {
  950. prefix = "";
  951. prefix_len = 0;
  952. }
  953. char etc_ldso_path[prefix_len + 1
  954. + sizeof "/etc/ld-musl-" LDSO_ARCH ".path"];
  955. snprintf(etc_ldso_path, sizeof etc_ldso_path,
  956. "%.*s/etc/ld-musl-" LDSO_ARCH ".path",
  957. (int)prefix_len, prefix);
  958. FILE *f = fopen(etc_ldso_path, "rbe");
  959. if (f) {
  960. if (getdelim(&sys_path, (size_t[1]){0}, 0, f) <= 0) {
  961. free(sys_path);
  962. sys_path = "";
  963. }
  964. fclose(f);
  965. } else if (errno != ENOENT) {
  966. sys_path = "";
  967. }
  968. }
  969. if (!sys_path) sys_path = "/lib:/usr/local/lib:/usr/lib";
  970. fd = path_open(name, sys_path, buf, sizeof buf);
  971. }
  972. pathname = buf;
  973. }
  974. if (fd < 0) return 0;
  975. if (fstat(fd, &st) < 0) {
  976. close(fd);
  977. return 0;
  978. }
  979. for (p=head->next; p; p=p->next) {
  980. if (p->dev == st.st_dev && p->ino == st.st_ino) {
  981. /* If this library was previously loaded with a
  982. * pathname but a search found the same inode,
  983. * setup its shortname so it can be found by name. */
  984. if (!p->shortname && pathname != name)
  985. p->shortname = strrchr(p->name, '/')+1;
  986. close(fd);
  987. return p;
  988. }
  989. }
  990. map = noload ? 0 : map_library(fd, &temp_dso);
  991. close(fd);
  992. if (!map) return 0;
  993. /* Avoid the danger of getting two versions of libc mapped into the
  994. * same process when an absolute pathname was used. The symbols
  995. * checked are chosen to catch both musl and glibc, and to avoid
  996. * false positives from interposition-hack libraries. */
  997. decode_dyn(&temp_dso);
  998. if (find_sym(&temp_dso, "__libc_start_main", 1).sym &&
  999. find_sym(&temp_dso, "stdin", 1).sym) {
  1000. unmap_library(&temp_dso);
  1001. return load_library("libc.so", needed_by);
  1002. }
  1003. /* Past this point, if we haven't reached runtime yet, ldso has
  1004. * committed either to use the mapped library or to abort execution.
  1005. * Unmapping is not possible, so we can safely reclaim gaps. */
  1006. if (!runtime) reclaim_gaps(&temp_dso);
  1007. /* Allocate storage for the new DSO. When there is TLS, this
  1008. * storage must include a reservation for all pre-existing
  1009. * threads to obtain copies of both the new TLS, and an
  1010. * extended DTV capable of storing an additional slot for
  1011. * the newly-loaded DSO. */
  1012. alloc_size = sizeof *p + strlen(pathname) + 1;
  1013. if (runtime && temp_dso.tls.image) {
  1014. size_t per_th = temp_dso.tls.size + temp_dso.tls.align
  1015. + sizeof(void *) * (tls_cnt+3);
  1016. n_th = libc.threads_minus_1 + 1;
  1017. if (n_th > SSIZE_MAX / per_th) alloc_size = SIZE_MAX;
  1018. else alloc_size += n_th * per_th;
  1019. }
  1020. p = calloc(1, alloc_size);
  1021. if (!p) {
  1022. unmap_library(&temp_dso);
  1023. return 0;
  1024. }
  1025. memcpy(p, &temp_dso, sizeof temp_dso);
  1026. p->dev = st.st_dev;
  1027. p->ino = st.st_ino;
  1028. p->needed_by = needed_by;
  1029. p->name = p->buf;
  1030. strcpy(p->name, pathname);
  1031. /* Add a shortname only if name arg was not an explicit pathname. */
  1032. if (pathname != name) p->shortname = strrchr(p->name, '/')+1;
  1033. if (p->tls.image) {
  1034. p->tls_id = ++tls_cnt;
  1035. tls_align = MAXP2(tls_align, p->tls.align);
  1036. #ifdef TLS_ABOVE_TP
  1037. p->tls.offset = tls_offset + ( (tls_align-1) &
  1038. -(tls_offset + (uintptr_t)p->tls.image) );
  1039. tls_offset += p->tls.size;
  1040. #else
  1041. tls_offset += p->tls.size + p->tls.align - 1;
  1042. tls_offset -= (tls_offset + (uintptr_t)p->tls.image)
  1043. & (p->tls.align-1);
  1044. p->tls.offset = tls_offset;
  1045. #endif
  1046. p->new_dtv = (void *)(-sizeof(size_t) &
  1047. (uintptr_t)(p->name+strlen(p->name)+sizeof(size_t)));
  1048. p->new_tls = (void *)(p->new_dtv + n_th*(tls_cnt+1));
  1049. if (tls_tail) tls_tail->next = &p->tls;
  1050. else libc.tls_head = &p->tls;
  1051. tls_tail = &p->tls;
  1052. }
  1053. tail->next = p;
  1054. p->prev = tail;
  1055. tail = p;
  1056. if (DL_FDPIC) makefuncdescs(p);
  1057. if (ldd_mode) dprintf(1, "\t%s => %s (%p)\n", name, pathname, p->base);
  1058. return p;
  1059. }
  1060. static void load_deps(struct dso *p)
  1061. {
  1062. size_t i, ndeps=0;
  1063. struct dso ***deps = &p->deps, **tmp, *dep;
  1064. for (; p; p=p->next) {
  1065. for (i=0; p->dynv[i]; i+=2) {
  1066. if (p->dynv[i] != DT_NEEDED) continue;
  1067. dep = load_library(p->strings + p->dynv[i+1], p);
  1068. if (!dep) {
  1069. error("Error loading shared library %s: %m (needed by %s)",
  1070. p->strings + p->dynv[i+1], p->name);
  1071. if (runtime) longjmp(*rtld_fail, 1);
  1072. continue;
  1073. }
  1074. if (runtime) {
  1075. tmp = realloc(*deps, sizeof(*tmp)*(ndeps+2));
  1076. if (!tmp) longjmp(*rtld_fail, 1);
  1077. tmp[ndeps++] = dep;
  1078. tmp[ndeps] = 0;
  1079. *deps = tmp;
  1080. }
  1081. }
  1082. }
  1083. if (!*deps) *deps = (struct dso **)&nodeps_dummy;
  1084. }
  1085. static void load_preload(char *s)
  1086. {
  1087. int tmp;
  1088. char *z;
  1089. for (z=s; *z; s=z) {
  1090. for ( ; *s && (isspace(*s) || *s==':'); s++);
  1091. for (z=s; *z && !isspace(*z) && *z!=':'; z++);
  1092. tmp = *z;
  1093. *z = 0;
  1094. load_library(s, 0);
  1095. *z = tmp;
  1096. }
  1097. }
  1098. static void add_syms(struct dso *p)
  1099. {
  1100. if (!p->syms_next && syms_tail != p) {
  1101. syms_tail->syms_next = p;
  1102. syms_tail = p;
  1103. }
  1104. }
  1105. static void revert_syms(struct dso *old_tail)
  1106. {
  1107. struct dso *p, *next;
  1108. /* Chop off the tail of the list of dsos that participate in
  1109. * the global symbol table, reverting them to RTLD_LOCAL. */
  1110. for (p=old_tail; p; p=next) {
  1111. next = p->syms_next;
  1112. p->syms_next = 0;
  1113. }
  1114. syms_tail = old_tail;
  1115. }
  1116. static void do_mips_relocs(struct dso *p, size_t *got)
  1117. {
  1118. size_t i, j, rel[2];
  1119. unsigned char *base = p->base;
  1120. i=0; search_vec(p->dynv, &i, DT_MIPS_LOCAL_GOTNO);
  1121. if (p==&ldso) {
  1122. got += i;
  1123. } else {
  1124. while (i--) *got++ += (size_t)base;
  1125. }
  1126. j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
  1127. i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
  1128. Sym *sym = p->syms + j;
  1129. rel[0] = (unsigned char *)got - base;
  1130. for (i-=j; i; i--, sym++, rel[0]+=sizeof(size_t)) {
  1131. rel[1] = R_INFO(sym-p->syms, R_MIPS_JUMP_SLOT);
  1132. do_relocs(p, rel, sizeof rel, 2);
  1133. }
  1134. }
  1135. static void reloc_all(struct dso *p)
  1136. {
  1137. size_t dyn[DYN_CNT];
  1138. for (; p; p=p->next) {
  1139. if (p->relocated) continue;
  1140. decode_vec(p->dynv, dyn, DYN_CNT);
  1141. if (NEED_MIPS_GOT_RELOCS)
  1142. do_mips_relocs(p, laddr(p, dyn[DT_PLTGOT]));
  1143. do_relocs(p, laddr(p, dyn[DT_JMPREL]), dyn[DT_PLTRELSZ],
  1144. 2+(dyn[DT_PLTREL]==DT_RELA));
  1145. do_relocs(p, laddr(p, dyn[DT_REL]), dyn[DT_RELSZ], 2);
  1146. do_relocs(p, laddr(p, dyn[DT_RELA]), dyn[DT_RELASZ], 3);
  1147. if (head != &ldso && p->relro_start != p->relro_end &&
  1148. mprotect(laddr(p, p->relro_start), p->relro_end-p->relro_start, PROT_READ)
  1149. && errno != ENOSYS) {
  1150. error("Error relocating %s: RELRO protection failed: %m",
  1151. p->name);
  1152. if (runtime) longjmp(*rtld_fail, 1);
  1153. }
  1154. p->relocated = 1;
  1155. }
  1156. }
  1157. static void kernel_mapped_dso(struct dso *p)
  1158. {
  1159. size_t min_addr = -1, max_addr = 0, cnt;
  1160. Phdr *ph = p->phdr;
  1161. for (cnt = p->phnum; cnt--; ph = (void *)((char *)ph + p->phentsize)) {
  1162. if (ph->p_type == PT_DYNAMIC) {
  1163. p->dynv = laddr(p, ph->p_vaddr);
  1164. } else if (ph->p_type == PT_GNU_RELRO) {
  1165. p->relro_start = ph->p_vaddr & -PAGE_SIZE;
  1166. p->relro_end = (ph->p_vaddr + ph->p_memsz) & -PAGE_SIZE;
  1167. }
  1168. if (ph->p_type != PT_LOAD) continue;
  1169. if (ph->p_vaddr < min_addr)
  1170. min_addr = ph->p_vaddr;
  1171. if (ph->p_vaddr+ph->p_memsz > max_addr)
  1172. max_addr = ph->p_vaddr+ph->p_memsz;
  1173. }
  1174. min_addr &= -PAGE_SIZE;
  1175. max_addr = (max_addr + PAGE_SIZE-1) & -PAGE_SIZE;
  1176. p->map = p->base + min_addr;
  1177. p->map_len = max_addr - min_addr;
  1178. p->kernel_mapped = 1;
  1179. }
  1180. void __libc_exit_fini()
  1181. {
  1182. struct dso *p;
  1183. size_t dyn[DYN_CNT];
  1184. for (p=fini_head; p; p=p->fini_next) {
  1185. if (!p->constructed) continue;
  1186. decode_vec(p->dynv, dyn, DYN_CNT);
  1187. if (dyn[0] & (1<<DT_FINI_ARRAY)) {
  1188. size_t n = dyn[DT_FINI_ARRAYSZ]/sizeof(size_t);
  1189. size_t *fn = (size_t *)laddr(p, dyn[DT_FINI_ARRAY])+n;
  1190. while (n--) ((void (*)(void))*--fn)();
  1191. }
  1192. #ifndef NO_LEGACY_INITFINI
  1193. if ((dyn[0] & (1<<DT_FINI)) && dyn[DT_FINI])
  1194. fpaddr(p, dyn[DT_FINI])();
  1195. #endif
  1196. }
  1197. }
  1198. static void do_init_fini(struct dso *p)
  1199. {
  1200. size_t dyn[DYN_CNT];
  1201. int need_locking = libc.threads_minus_1;
  1202. /* Allow recursive calls that arise when a library calls
  1203. * dlopen from one of its constructors, but block any
  1204. * other threads until all ctors have finished. */
  1205. if (need_locking) pthread_mutex_lock(&init_fini_lock);
  1206. for (; p; p=p->prev) {
  1207. if (p->constructed) continue;
  1208. p->constructed = 1;
  1209. decode_vec(p->dynv, dyn, DYN_CNT);
  1210. if (dyn[0] & ((1<<DT_FINI) | (1<<DT_FINI_ARRAY))) {
  1211. p->fini_next = fini_head;
  1212. fini_head = p;
  1213. }
  1214. #ifndef NO_LEGACY_INITFINI
  1215. if ((dyn[0] & (1<<DT_INIT)) && dyn[DT_INIT])
  1216. fpaddr(p, dyn[DT_INIT])();
  1217. #endif
  1218. if (dyn[0] & (1<<DT_INIT_ARRAY)) {
  1219. size_t n = dyn[DT_INIT_ARRAYSZ]/sizeof(size_t);
  1220. size_t *fn = laddr(p, dyn[DT_INIT_ARRAY]);
  1221. while (n--) ((void (*)(void))*fn++)();
  1222. }
  1223. if (!need_locking && libc.threads_minus_1) {
  1224. need_locking = 1;
  1225. pthread_mutex_lock(&init_fini_lock);
  1226. }
  1227. }
  1228. if (need_locking) pthread_mutex_unlock(&init_fini_lock);
  1229. }
  1230. void __libc_start_init(void)
  1231. {
  1232. do_init_fini(tail);
  1233. }
  1234. static void dl_debug_state(void)
  1235. {
  1236. }
  1237. weak_alias(dl_debug_state, _dl_debug_state);
  1238. void __init_tls(size_t *auxv)
  1239. {
  1240. }
  1241. __attribute__((__visibility__("hidden")))
  1242. void *__tls_get_new(tls_mod_off_t *v)
  1243. {
  1244. pthread_t self = __pthread_self();
  1245. /* Block signals to make accessing new TLS async-signal-safe */
  1246. sigset_t set;
  1247. __block_all_sigs(&set);
  1248. if (v[0]<=(size_t)self->dtv[0]) {
  1249. __restore_sigs(&set);
  1250. return (char *)self->dtv[v[0]]+v[1]+DTP_OFFSET;
  1251. }
  1252. /* This is safe without any locks held because, if the caller
  1253. * is able to request the Nth entry of the DTV, the DSO list
  1254. * must be valid at least that far out and it was synchronized
  1255. * at program startup or by an already-completed call to dlopen. */
  1256. struct dso *p;
  1257. for (p=head; p->tls_id != v[0]; p=p->next);
  1258. /* Get new DTV space from new DSO if needed */
  1259. if (v[0] > (size_t)self->dtv[0]) {
  1260. void **newdtv = p->new_dtv +
  1261. (v[0]+1)*a_fetch_add(&p->new_dtv_idx,1);
  1262. memcpy(newdtv, self->dtv,
  1263. ((size_t)self->dtv[0]+1) * sizeof(void *));
  1264. newdtv[0] = (void *)v[0];
  1265. self->dtv = self->dtv_copy = newdtv;
  1266. }
  1267. /* Get new TLS memory from all new DSOs up to the requested one */
  1268. unsigned char *mem;
  1269. for (p=head; ; p=p->next) {
  1270. if (!p->tls_id || self->dtv[p->tls_id]) continue;
  1271. mem = p->new_tls + (p->tls.size + p->tls.align)
  1272. * a_fetch_add(&p->new_tls_idx,1);
  1273. mem += ((uintptr_t)p->tls.image - (uintptr_t)mem)
  1274. & (p->tls.align-1);
  1275. self->dtv[p->tls_id] = mem;
  1276. memcpy(mem, p->tls.image, p->tls.len);
  1277. if (p->tls_id == v[0]) break;
  1278. }
  1279. __restore_sigs(&set);
  1280. return mem + v[1] + DTP_OFFSET;
  1281. }
  1282. static void update_tls_size()
  1283. {
  1284. libc.tls_cnt = tls_cnt;
  1285. libc.tls_align = tls_align;
  1286. libc.tls_size = ALIGN(
  1287. (1+tls_cnt) * sizeof(void *) +
  1288. tls_offset +
  1289. sizeof(struct pthread) +
  1290. tls_align * 2,
  1291. tls_align);
  1292. }
  1293. /* Stage 1 of the dynamic linker is defined in dlstart.c. It calls the
  1294. * following stage 2 and stage 3 functions via primitive symbolic lookup
  1295. * since it does not have access to their addresses to begin with. */
  1296. /* Stage 2 of the dynamic linker is called after relative relocations
  1297. * have been processed. It can make function calls to static functions
  1298. * and access string literals and static data, but cannot use extern
  1299. * symbols. Its job is to perform symbolic relocations on the dynamic
  1300. * linker itself, but some of the relocations performed may need to be
  1301. * replaced later due to copy relocations in the main program. */
  1302. __attribute__((__visibility__("hidden")))
  1303. void __dls2(unsigned char *base, size_t *sp)
  1304. {
  1305. if (DL_FDPIC) {
  1306. void *p1 = (void *)sp[-2];
  1307. void *p2 = (void *)sp[-1];
  1308. if (!p1) {
  1309. size_t *auxv, aux[AUX_CNT];
  1310. for (auxv=sp+1+*sp+1; *auxv; auxv++); auxv++;
  1311. decode_vec(auxv, aux, AUX_CNT);
  1312. if (aux[AT_BASE]) ldso.base = (void *)aux[AT_BASE];
  1313. else ldso.base = (void *)(aux[AT_PHDR] & -4096);
  1314. }
  1315. app_loadmap = p2 ? p1 : 0;
  1316. ldso.loadmap = p2 ? p2 : p1;
  1317. ldso.base = laddr(&ldso, 0);
  1318. } else {
  1319. ldso.base = base;
  1320. }
  1321. Ehdr *ehdr = (void *)ldso.base;
  1322. ldso.name = ldso.shortname = "libc.so";
  1323. ldso.phnum = ehdr->e_phnum;
  1324. ldso.phdr = laddr(&ldso, ehdr->e_phoff);
  1325. ldso.phentsize = ehdr->e_phentsize;
  1326. kernel_mapped_dso(&ldso);
  1327. decode_dyn(&ldso);
  1328. if (DL_FDPIC) makefuncdescs(&ldso);
  1329. /* Prepare storage for to save clobbered REL addends so they
  1330. * can be reused in stage 3. There should be very few. If
  1331. * something goes wrong and there are a huge number, abort
  1332. * instead of risking stack overflow. */
  1333. size_t dyn[DYN_CNT];
  1334. decode_vec(ldso.dynv, dyn, DYN_CNT);
  1335. size_t *rel = laddr(&ldso, dyn[DT_REL]);
  1336. size_t rel_size = dyn[DT_RELSZ];
  1337. size_t symbolic_rel_cnt = 0;
  1338. apply_addends_to = rel;
  1339. for (; rel_size; rel+=2, rel_size-=2*sizeof(size_t))
  1340. if (!IS_RELATIVE(rel[1], ldso.syms)) symbolic_rel_cnt++;
  1341. if (symbolic_rel_cnt >= ADDEND_LIMIT) a_crash();
  1342. size_t addends[symbolic_rel_cnt+1];
  1343. saved_addends = addends;
  1344. head = &ldso;
  1345. reloc_all(&ldso);
  1346. ldso.relocated = 0;
  1347. /* Call dynamic linker stage-3, __dls3, looking it up
  1348. * symbolically as a barrier against moving the address
  1349. * load across the above relocation processing. */
  1350. struct symdef dls3_def = find_sym(&ldso, "__dls3", 0);
  1351. if (DL_FDPIC) ((stage3_func)&ldso.funcdescs[dls3_def.sym-ldso.syms])(sp);
  1352. else ((stage3_func)laddr(&ldso, dls3_def.sym->st_value))(sp);
  1353. }
  1354. /* Stage 3 of the dynamic linker is called with the dynamic linker/libc
  1355. * fully functional. Its job is to load (if not already loaded) and
  1356. * process dependencies and relocations for the main application and
  1357. * transfer control to its entry point. */
  1358. _Noreturn void __dls3(size_t *sp)
  1359. {
  1360. static struct dso app, vdso;
  1361. size_t aux[AUX_CNT], *auxv;
  1362. size_t i;
  1363. char *env_preload=0;
  1364. char *replace_argv0=0;
  1365. size_t vdso_base;
  1366. int argc = *sp;
  1367. char **argv = (void *)(sp+1);
  1368. char **argv_orig = argv;
  1369. char **envp = argv+argc+1;
  1370. /* Find aux vector just past environ[] and use it to initialize
  1371. * global data that may be needed before we can make syscalls. */
  1372. __environ = envp;
  1373. for (i=argc+1; argv[i]; i++);
  1374. libc.auxv = auxv = (void *)(argv+i+1);
  1375. decode_vec(auxv, aux, AUX_CNT);
  1376. __hwcap = aux[AT_HWCAP];
  1377. libc.page_size = aux[AT_PAGESZ];
  1378. libc.secure = ((aux[0]&0x7800)!=0x7800 || aux[AT_UID]!=aux[AT_EUID]
  1379. || aux[AT_GID]!=aux[AT_EGID] || aux[AT_SECURE]);
  1380. /* Setup early thread pointer in builtin_tls for ldso/libc itself to
  1381. * use during dynamic linking. If possible it will also serve as the
  1382. * thread pointer at runtime. */
  1383. libc.tls_size = sizeof builtin_tls;
  1384. libc.tls_align = tls_align;
  1385. if (__init_tp(__copy_tls((void *)builtin_tls)) < 0) {
  1386. a_crash();
  1387. }
  1388. /* Only trust user/env if kernel says we're not suid/sgid */
  1389. if (!libc.secure) {
  1390. env_path = getenv("LD_LIBRARY_PATH");
  1391. env_preload = getenv("LD_PRELOAD");
  1392. }
  1393. /* If the main program was already loaded by the kernel,
  1394. * AT_PHDR will point to some location other than the dynamic
  1395. * linker's program headers. */
  1396. if (aux[AT_PHDR] != (size_t)ldso.phdr) {
  1397. size_t interp_off = 0;
  1398. size_t tls_image = 0;
  1399. /* Find load address of the main program, via AT_PHDR vs PT_PHDR. */
  1400. Phdr *phdr = app.phdr = (void *)aux[AT_PHDR];
  1401. app.phnum = aux[AT_PHNUM];
  1402. app.phentsize = aux[AT_PHENT];
  1403. for (i=aux[AT_PHNUM]; i; i--, phdr=(void *)((char *)phdr + aux[AT_PHENT])) {
  1404. if (phdr->p_type == PT_PHDR)
  1405. app.base = (void *)(aux[AT_PHDR] - phdr->p_vaddr);
  1406. else if (phdr->p_type == PT_INTERP)
  1407. interp_off = (size_t)phdr->p_vaddr;
  1408. else if (phdr->p_type == PT_TLS) {
  1409. tls_image = phdr->p_vaddr;
  1410. app.tls.len = phdr->p_filesz;
  1411. app.tls.size = phdr->p_memsz;
  1412. app.tls.align = phdr->p_align;
  1413. }
  1414. }
  1415. if (DL_FDPIC) app.loadmap = app_loadmap;
  1416. if (app.tls.size) app.tls.image = laddr(&app, tls_image);
  1417. if (interp_off) ldso.name = laddr(&app, interp_off);
  1418. if ((aux[0] & (1UL<<AT_EXECFN))
  1419. && strncmp((char *)aux[AT_EXECFN], "/proc/", 6))
  1420. app.name = (char *)aux[AT_EXECFN];
  1421. else
  1422. app.name = argv[0];
  1423. kernel_mapped_dso(&app);
  1424. } else {
  1425. int fd;
  1426. char *ldname = argv[0];
  1427. size_t l = strlen(ldname);
  1428. if (l >= 3 && !strcmp(ldname+l-3, "ldd")) ldd_mode = 1;
  1429. argv++;
  1430. while (argv[0] && argv[0][0]=='-' && argv[0][1]=='-') {
  1431. char *opt = argv[0]+2;
  1432. *argv++ = (void *)-1;
  1433. if (!*opt) {
  1434. break;
  1435. } else if (!memcmp(opt, "list", 5)) {
  1436. ldd_mode = 1;
  1437. } else if (!memcmp(opt, "library-path", 12)) {
  1438. if (opt[12]=='=') env_path = opt+13;
  1439. else if (opt[12]) *argv = 0;
  1440. else if (*argv) env_path = *argv++;
  1441. } else if (!memcmp(opt, "preload", 7)) {
  1442. if (opt[7]=='=') env_preload = opt+8;
  1443. else if (opt[7]) *argv = 0;
  1444. else if (*argv) env_preload = *argv++;
  1445. } else if (!memcmp(opt, "argv0", 5)) {
  1446. if (opt[5]=='=') replace_argv0 = opt+6;
  1447. else if (opt[5]) *argv = 0;
  1448. else if (*argv) replace_argv0 = *argv++;
  1449. } else {
  1450. argv[0] = 0;
  1451. }
  1452. }
  1453. argv[-1] = (void *)(argc - (argv-argv_orig));
  1454. if (!argv[0]) {
  1455. dprintf(2, "musl libc (" LDSO_ARCH ")\n"
  1456. "Version %s\n"
  1457. "Dynamic Program Loader\n"
  1458. "Usage: %s [options] [--] pathname%s\n",
  1459. __libc_get_version(), ldname,
  1460. ldd_mode ? "" : " [args]");
  1461. _exit(1);
  1462. }
  1463. fd = open(argv[0], O_RDONLY);
  1464. if (fd < 0) {
  1465. dprintf(2, "%s: cannot load %s: %s\n", ldname, argv[0], strerror(errno));
  1466. _exit(1);
  1467. }
  1468. Ehdr *ehdr = (void *)map_library(fd, &app);
  1469. if (!ehdr) {
  1470. dprintf(2, "%s: %s: Not a valid dynamic program\n", ldname, argv[0]);
  1471. _exit(1);
  1472. }
  1473. close(fd);
  1474. ldso.name = ldname;
  1475. app.name = argv[0];
  1476. aux[AT_ENTRY] = (size_t)laddr(&app, ehdr->e_entry);
  1477. /* Find the name that would have been used for the dynamic
  1478. * linker had ldd not taken its place. */
  1479. if (ldd_mode) {
  1480. for (i=0; i<app.phnum; i++) {
  1481. if (app.phdr[i].p_type == PT_INTERP)
  1482. ldso.name = laddr(&app, app.phdr[i].p_vaddr);
  1483. }
  1484. dprintf(1, "\t%s (%p)\n", ldso.name, ldso.base);
  1485. }
  1486. }
  1487. if (app.tls.size) {
  1488. libc.tls_head = tls_tail = &app.tls;
  1489. app.tls_id = tls_cnt = 1;
  1490. #ifdef TLS_ABOVE_TP
  1491. app.tls.offset = 0;
  1492. tls_offset = app.tls.size
  1493. + ( -((uintptr_t)app.tls.image + app.tls.size)
  1494. & (app.tls.align-1) );
  1495. #else
  1496. tls_offset = app.tls.offset = app.tls.size
  1497. + ( -((uintptr_t)app.tls.image + app.tls.size)
  1498. & (app.tls.align-1) );
  1499. #endif
  1500. tls_align = MAXP2(tls_align, app.tls.align);
  1501. }
  1502. decode_dyn(&app);
  1503. if (DL_FDPIC) {
  1504. makefuncdescs(&app);
  1505. if (!app.loadmap) {
  1506. app.loadmap = (void *)&app_dummy_loadmap;
  1507. app.loadmap->nsegs = 1;
  1508. app.loadmap->segs[0].addr = (size_t)app.map;
  1509. app.loadmap->segs[0].p_vaddr = (size_t)app.map
  1510. - (size_t)app.base;
  1511. app.loadmap->segs[0].p_memsz = app.map_len;
  1512. }
  1513. argv[-3] = (void *)app.loadmap;
  1514. }
  1515. /* Initial dso chain consists only of the app. */
  1516. head = tail = syms_tail = &app;
  1517. /* Donate unused parts of app and library mapping to malloc */
  1518. reclaim_gaps(&app);
  1519. reclaim_gaps(&ldso);
  1520. /* Load preload/needed libraries, add symbols to global namespace. */
  1521. if (env_preload) load_preload(env_preload);
  1522. load_deps(&app);
  1523. for (struct dso *p=head; p; p=p->next)
  1524. add_syms(p);
  1525. /* Attach to vdso, if provided by the kernel, last so that it does
  1526. * not become part of the global namespace. */
  1527. if (search_vec(auxv, &vdso_base, AT_SYSINFO_EHDR) && vdso_base) {
  1528. Ehdr *ehdr = (void *)vdso_base;
  1529. Phdr *phdr = vdso.phdr = (void *)(vdso_base + ehdr->e_phoff);
  1530. vdso.phnum = ehdr->e_phnum;
  1531. vdso.phentsize = ehdr->e_phentsize;
  1532. for (i=ehdr->e_phnum; i; i--, phdr=(void *)((char *)phdr + ehdr->e_phentsize)) {
  1533. if (phdr->p_type == PT_DYNAMIC)
  1534. vdso.dynv = (void *)(vdso_base + phdr->p_offset);
  1535. if (phdr->p_type == PT_LOAD)
  1536. vdso.base = (void *)(vdso_base - phdr->p_vaddr + phdr->p_offset);
  1537. }
  1538. vdso.name = "";
  1539. vdso.shortname = "linux-gate.so.1";
  1540. vdso.relocated = 1;
  1541. decode_dyn(&vdso);
  1542. vdso.prev = tail;
  1543. tail->next = &vdso;
  1544. tail = &vdso;
  1545. }
  1546. for (i=0; app.dynv[i]; i+=2) {
  1547. if (!DT_DEBUG_INDIRECT && app.dynv[i]==DT_DEBUG)
  1548. app.dynv[i+1] = (size_t)&debug;
  1549. if (DT_DEBUG_INDIRECT && app.dynv[i]==DT_DEBUG_INDIRECT) {
  1550. size_t *ptr = (size_t *) app.dynv[i+1];
  1551. *ptr = (size_t)&debug;
  1552. }
  1553. }
  1554. /* The main program must be relocated LAST since it may contin
  1555. * copy relocations which depend on libraries' relocations. */
  1556. reloc_all(app.next);
  1557. reloc_all(&app);
  1558. update_tls_size();
  1559. if (libc.tls_size > sizeof builtin_tls || tls_align > MIN_TLS_ALIGN) {
  1560. void *initial_tls = calloc(libc.tls_size, 1);
  1561. if (!initial_tls) {
  1562. dprintf(2, "%s: Error getting %zu bytes thread-local storage: %m\n",
  1563. argv[0], libc.tls_size);
  1564. _exit(127);
  1565. }
  1566. if (__init_tp(__copy_tls(initial_tls)) < 0) {
  1567. a_crash();
  1568. }
  1569. } else {
  1570. size_t tmp_tls_size = libc.tls_size;
  1571. pthread_t self = __pthread_self();
  1572. /* Temporarily set the tls size to the full size of
  1573. * builtin_tls so that __copy_tls will use the same layout
  1574. * as it did for before. Then check, just to be safe. */
  1575. libc.tls_size = sizeof builtin_tls;
  1576. if (__copy_tls((void*)builtin_tls) != self) a_crash();
  1577. libc.tls_size = tmp_tls_size;
  1578. }
  1579. static_tls_cnt = tls_cnt;
  1580. if (ldso_fail) _exit(127);
  1581. if (ldd_mode) _exit(0);
  1582. /* Determine if malloc was interposed by a replacement implementation
  1583. * so that calloc and the memalign family can harden against the
  1584. * possibility of incomplete replacement. */
  1585. if (find_sym(head, "malloc", 1).dso != &ldso)
  1586. __malloc_replaced = 1;
  1587. /* Switch to runtime mode: any further failures in the dynamic
  1588. * linker are a reportable failure rather than a fatal startup
  1589. * error. */
  1590. runtime = 1;
  1591. debug.ver = 1;
  1592. debug.bp = dl_debug_state;
  1593. debug.head = head;
  1594. debug.base = ldso.base;
  1595. debug.state = 0;
  1596. _dl_debug_state();
  1597. if (replace_argv0) argv[0] = replace_argv0;
  1598. errno = 0;
  1599. CRTJMP((void *)aux[AT_ENTRY], argv-1);
  1600. for(;;);
  1601. }
  1602. static void prepare_lazy(struct dso *p)
  1603. {
  1604. size_t dyn[DYN_CNT], n, flags1=0;
  1605. decode_vec(p->dynv, dyn, DYN_CNT);
  1606. search_vec(p->dynv, &flags1, DT_FLAGS_1);
  1607. if (dyn[DT_BIND_NOW] || (dyn[DT_FLAGS] & DF_BIND_NOW) || (flags1 & DF_1_NOW))
  1608. return;
  1609. n = dyn[DT_RELSZ]/2 + dyn[DT_RELASZ]/3 + dyn[DT_PLTRELSZ]/2 + 1;
  1610. if (NEED_MIPS_GOT_RELOCS) {
  1611. size_t j=0; search_vec(p->dynv, &j, DT_MIPS_GOTSYM);
  1612. size_t i=0; search_vec(p->dynv, &i, DT_MIPS_SYMTABNO);
  1613. n += i-j;
  1614. }
  1615. p->lazy = calloc(n, 3*sizeof(size_t));
  1616. if (!p->lazy) {
  1617. error("Error preparing lazy relocation for %s: %m", p->name);
  1618. longjmp(*rtld_fail, 1);
  1619. }
  1620. p->lazy_next = lazy_head;
  1621. lazy_head = p;
  1622. }
  1623. void *dlopen(const char *file, int mode)
  1624. {
  1625. struct dso *volatile p, *orig_tail, *orig_syms_tail, *orig_lazy_head, *next;
  1626. struct tls_module *orig_tls_tail;
  1627. size_t orig_tls_cnt, orig_tls_offset, orig_tls_align;
  1628. size_t i;
  1629. int cs;
  1630. jmp_buf jb;
  1631. if (!file) return head;
  1632. pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
  1633. pthread_rwlock_wrlock(&lock);
  1634. __inhibit_ptc();
  1635. p = 0;
  1636. orig_tls_tail = tls_tail;
  1637. orig_tls_cnt = tls_cnt;
  1638. orig_tls_offset = tls_offset;
  1639. orig_tls_align = tls_align;
  1640. orig_lazy_head = lazy_head;
  1641. orig_syms_tail = syms_tail;
  1642. orig_tail = tail;
  1643. noload = mode & RTLD_NOLOAD;
  1644. rtld_fail = &jb;
  1645. if (setjmp(*rtld_fail)) {
  1646. /* Clean up anything new that was (partially) loaded */
  1647. revert_syms(orig_syms_tail);
  1648. for (p=orig_tail->next; p; p=next) {
  1649. next = p->next;
  1650. while (p->td_index) {
  1651. void *tmp = p->td_index->next;
  1652. free(p->td_index);
  1653. p->td_index = tmp;
  1654. }
  1655. free(p->funcdescs);
  1656. if (p->rpath != p->rpath_orig)
  1657. free(p->rpath);
  1658. if (p->deps != &nodeps_dummy)
  1659. free(p->deps);
  1660. unmap_library(p);
  1661. free(p);
  1662. }
  1663. if (!orig_tls_tail) libc.tls_head = 0;
  1664. tls_tail = orig_tls_tail;
  1665. if (tls_tail) tls_tail->next = 0;
  1666. tls_cnt = orig_tls_cnt;
  1667. tls_offset = orig_tls_offset;
  1668. tls_align = orig_tls_align;
  1669. lazy_head = orig_lazy_head;
  1670. tail = orig_tail;
  1671. tail->next = 0;
  1672. p = 0;
  1673. goto end;
  1674. } else p = load_library(file, head);
  1675. if (!p) {
  1676. error(noload ?
  1677. "Library %s is not already loaded" :
  1678. "Error loading shared library %s: %m",
  1679. file);
  1680. goto end;
  1681. }
  1682. /* First load handling */
  1683. int first_load = !p->deps;
  1684. if (first_load) {
  1685. load_deps(p);
  1686. if (!p->relocated && (mode & RTLD_LAZY)) {
  1687. prepare_lazy(p);
  1688. for (i=0; p->deps[i]; i++)
  1689. if (!p->deps[i]->relocated)
  1690. prepare_lazy(p->deps[i]);
  1691. }
  1692. }
  1693. if (first_load || (mode & RTLD_GLOBAL)) {
  1694. /* Make new symbols global, at least temporarily, so we can do
  1695. * relocations. If not RTLD_GLOBAL, this is reverted below. */
  1696. add_syms(p);
  1697. for (i=0; p->deps[i]; i++)
  1698. add_syms(p->deps[i]);
  1699. }
  1700. if (first_load) {
  1701. reloc_all(p);
  1702. }
  1703. /* If RTLD_GLOBAL was not specified, undo any new additions
  1704. * to the global symbol table. This is a nop if the library was
  1705. * previously loaded and already global. */
  1706. if (!(mode & RTLD_GLOBAL))
  1707. revert_syms(orig_syms_tail);
  1708. /* Processing of deferred lazy relocations must not happen until
  1709. * the new libraries are committed; otherwise we could end up with
  1710. * relocations resolved to symbol definitions that get removed. */
  1711. redo_lazy_relocs();
  1712. update_tls_size();
  1713. _dl_debug_state();
  1714. orig_tail = tail;
  1715. end:
  1716. __release_ptc();
  1717. if (p) gencnt++;
  1718. pthread_rwlock_unlock(&lock);
  1719. if (p) do_init_fini(orig_tail);
  1720. pthread_setcancelstate(cs, 0);
  1721. return p;
  1722. }
  1723. __attribute__((__visibility__("hidden")))
  1724. int __dl_invalid_handle(void *h)
  1725. {
  1726. struct dso *p;
  1727. for (p=head; p; p=p->next) if (h==p) return 0;
  1728. error("Invalid library handle %p", (void *)h);
  1729. return 1;
  1730. }
  1731. static void *addr2dso(size_t a)
  1732. {
  1733. struct dso *p;
  1734. size_t i;
  1735. if (DL_FDPIC) for (p=head; p; p=p->next) {
  1736. i = count_syms(p);
  1737. if (a-(size_t)p->funcdescs < i*sizeof(*p->funcdescs))
  1738. return p;
  1739. }
  1740. for (p=head; p; p=p->next) {
  1741. if (DL_FDPIC && p->loadmap) {
  1742. for (i=0; i<p->loadmap->nsegs; i++) {
  1743. if (a-p->loadmap->segs[i].p_vaddr
  1744. < p->loadmap->segs[i].p_memsz)
  1745. return p;
  1746. }
  1747. } else {
  1748. if (a-(size_t)p->map < p->map_len)
  1749. return p;
  1750. }
  1751. }
  1752. return 0;
  1753. }
  1754. void *__tls_get_addr(tls_mod_off_t *);
  1755. static void *do_dlsym(struct dso *p, const char *s, void *ra)
  1756. {
  1757. size_t i;
  1758. uint32_t h = 0, gh = 0, *ght;
  1759. Sym *sym;
  1760. if (p == head || p == RTLD_DEFAULT || p == RTLD_NEXT) {
  1761. if (p == RTLD_DEFAULT) {
  1762. p = head;
  1763. } else if (p == RTLD_NEXT) {
  1764. p = addr2dso((size_t)ra);
  1765. if (!p) p=head;
  1766. p = p->next;
  1767. }
  1768. struct symdef def = find_sym(p, s, 0);
  1769. if (!def.sym) goto failed;
  1770. if ((def.sym->st_info&0xf) == STT_TLS)
  1771. return __tls_get_addr((tls_mod_off_t []){def.dso->tls_id, def.sym->st_value});
  1772. if (DL_FDPIC && (def.sym->st_info&0xf) == STT_FUNC)
  1773. return def.dso->funcdescs + (def.sym - def.dso->syms);
  1774. return laddr(def.dso, def.sym->st_value);
  1775. }
  1776. if (__dl_invalid_handle(p))
  1777. return 0;
  1778. if ((ght = p->ghashtab)) {
  1779. gh = gnu_hash(s);
  1780. sym = gnu_lookup(gh, ght, p, s);
  1781. } else {
  1782. h = sysv_hash(s);
  1783. sym = sysv_lookup(s, h, p);
  1784. }
  1785. if (sym && (sym->st_info&0xf) == STT_TLS)
  1786. return __tls_get_addr((tls_mod_off_t []){p->tls_id, sym->st_value});
  1787. if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
  1788. return p->funcdescs + (sym - p->syms);
  1789. if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
  1790. return laddr(p, sym->st_value);
  1791. for (i=0; p->deps[i]; i++) {
  1792. if ((ght = p->deps[i]->ghashtab)) {
  1793. if (!gh) gh = gnu_hash(s);
  1794. sym = gnu_lookup(gh, ght, p->deps[i], s);
  1795. } else {
  1796. if (!h) h = sysv_hash(s);
  1797. sym = sysv_lookup(s, h, p->deps[i]);
  1798. }
  1799. if (sym && (sym->st_info&0xf) == STT_TLS)
  1800. return __tls_get_addr((tls_mod_off_t []){p->deps[i]->tls_id, sym->st_value});
  1801. if (DL_FDPIC && sym && sym->st_shndx && (sym->st_info&0xf) == STT_FUNC)
  1802. return p->deps[i]->funcdescs + (sym - p->deps[i]->syms);
  1803. if (sym && sym->st_value && (1<<(sym->st_info&0xf) & OK_TYPES))
  1804. return laddr(p->deps[i], sym->st_value);
  1805. }
  1806. failed:
  1807. error("Symbol not found: %s", s);
  1808. return 0;
  1809. }
  1810. int dladdr(const void *addr, Dl_info *info)
  1811. {
  1812. struct dso *p;
  1813. Sym *sym, *bestsym;
  1814. uint32_t nsym;
  1815. char *strings;
  1816. void *best = 0;
  1817. pthread_rwlock_rdlock(&lock);
  1818. p = addr2dso((size_t)addr);
  1819. pthread_rwlock_unlock(&lock);
  1820. if (!p) return 0;
  1821. sym = p->syms;
  1822. strings = p->strings;
  1823. nsym = count_syms(p);
  1824. if (DL_FDPIC) {
  1825. size_t idx = ((size_t)addr-(size_t)p->funcdescs)
  1826. / sizeof(*p->funcdescs);
  1827. if (idx < nsym && (sym[idx].st_info&0xf) == STT_FUNC) {
  1828. best = p->funcdescs + idx;
  1829. bestsym = sym + idx;
  1830. }
  1831. }
  1832. if (!best) for (; nsym; nsym--, sym++) {
  1833. if (sym->st_value
  1834. && (1<<(sym->st_info&0xf) & OK_TYPES)
  1835. && (1<<(sym->st_info>>4) & OK_BINDS)) {
  1836. void *symaddr = laddr(p, sym->st_value);
  1837. if (symaddr > addr || symaddr < best)
  1838. continue;
  1839. best = symaddr;
  1840. bestsym = sym;
  1841. if (addr == symaddr)
  1842. break;
  1843. }
  1844. }
  1845. if (!best) return 0;
  1846. if (DL_FDPIC && (bestsym->st_info&0xf) == STT_FUNC)
  1847. best = p->funcdescs + (bestsym - p->syms);
  1848. info->dli_fname = p->name;
  1849. info->dli_fbase = p->map;
  1850. info->dli_sname = strings + bestsym->st_name;
  1851. info->dli_saddr = best;
  1852. return 1;
  1853. }
  1854. __attribute__((__visibility__("hidden")))
  1855. void *__dlsym(void *restrict p, const char *restrict s, void *restrict ra)
  1856. {
  1857. void *res;
  1858. pthread_rwlock_rdlock(&lock);
  1859. res = do_dlsym(p, s, ra);
  1860. pthread_rwlock_unlock(&lock);
  1861. return res;
  1862. }
  1863. int dl_iterate_phdr(int(*callback)(struct dl_phdr_info *info, size_t size, void *data), void *data)
  1864. {
  1865. struct dso *current;
  1866. struct dl_phdr_info info;
  1867. int ret = 0;
  1868. for(current = head; current;) {
  1869. info.dlpi_addr = (uintptr_t)current->base;
  1870. info.dlpi_name = current->name;
  1871. info.dlpi_phdr = current->phdr;
  1872. info.dlpi_phnum = current->phnum;
  1873. info.dlpi_adds = gencnt;
  1874. info.dlpi_subs = 0;
  1875. info.dlpi_tls_modid = current->tls_id;
  1876. info.dlpi_tls_data = current->tls.image;
  1877. ret = (callback)(&info, sizeof (info), data);
  1878. if (ret != 0) break;
  1879. pthread_rwlock_rdlock(&lock);
  1880. current = current->next;
  1881. pthread_rwlock_unlock(&lock);
  1882. }
  1883. return ret;
  1884. }
  1885. __attribute__((__visibility__("hidden")))
  1886. void __dl_vseterr(const char *, va_list);
  1887. static void error(const char *fmt, ...)
  1888. {
  1889. va_list ap;
  1890. va_start(ap, fmt);
  1891. if (!runtime) {
  1892. vdprintf(2, fmt, ap);
  1893. dprintf(2, "\n");
  1894. ldso_fail = 1;
  1895. va_end(ap);
  1896. return;
  1897. }
  1898. __dl_vseterr(fmt, ap);
  1899. va_end(ap);
  1900. }