ldso.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Program to load an ELF binary on a linux system, and run it
  4. * after resolving ELF shared library symbols
  5. *
  6. * Copyright (C) 2005 by Joakim Tjernlund
  7. * Copyright (C) 2000-2006 by Erik Andersen <andersen@codepoet.org>
  8. * Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
  9. * David Engel, Hongjiu Lu and Mitch D'Souza
  10. *
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions
  13. * are met:
  14. * 1. Redistributions of source code must retain the above copyright
  15. * notice, this list of conditions and the following disclaimer.
  16. * 2. The name of the above contributors may not be
  17. * used to endorse or promote products derived from this software
  18. * without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND
  21. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. * ARE DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE
  24. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. * SUCH DAMAGE.
  31. */
  32. #include "ldso.h"
  33. #include "unsecvars.h"
  34. /* Pull in common debug code */
  35. #include "dl-debug.c"
  36. #define ALLOW_ZERO_PLTGOT
  37. #if defined(USE_TLS) && USE_TLS
  38. #include "dl-tls.c"
  39. #endif
  40. /* Pull in the value of _dl_progname */
  41. #include LDSO_ELFINTERP
  42. /* Global variables used within the shared library loader */
  43. char *_dl_library_path = NULL; /* Where we look for libraries */
  44. char *_dl_preload = NULL; /* Things to be loaded before the libs */
  45. char *_dl_ldsopath = NULL; /* Location of the shared lib loader */
  46. int _dl_errno = 0; /* We can't use the real errno in ldso */
  47. size_t _dl_pagesize = 0; /* Store the page size for use later */
  48. struct r_debug *_dl_debug_addr = NULL; /* Used to communicate with the gdb debugger */
  49. void *(*_dl_malloc_function) (size_t size) = NULL;
  50. void (*_dl_free_function) (void *p) = NULL;
  51. static int _dl_secure = 1; /* Are we dealing with setuid stuff? */
  52. #ifdef __SUPPORT_LD_DEBUG__
  53. char *_dl_debug = NULL;
  54. char *_dl_debug_symbols = NULL;
  55. char *_dl_debug_move = NULL;
  56. char *_dl_debug_reloc = NULL;
  57. char *_dl_debug_detail = NULL;
  58. char *_dl_debug_nofixups = NULL;
  59. char *_dl_debug_bindings = NULL;
  60. int _dl_debug_file = 2;
  61. #endif
  62. /* Needed for standalone execution. */
  63. unsigned long attribute_hidden _dl_skip_args = 0;
  64. const char *_dl_progname = UCLIBC_LDSO; /* The name of the executable being run */
  65. #include "dl-startup.c"
  66. #include "dl-symbols.c"
  67. #include "dl-array.c"
  68. /*
  69. * This stub function is used by some debuggers. The idea is that they
  70. * can set an internal breakpoint on it, so that we are notified when the
  71. * address mapping is changed in some way.
  72. */
  73. void _dl_debug_state(void);
  74. rtld_hidden_proto(_dl_debug_state, noinline);
  75. void _dl_debug_state(void)
  76. {
  77. /* Make sure GCC doesn't recognize this function as pure, to avoid
  78. * having the calls optimized away.
  79. */
  80. __asm__("");
  81. }
  82. rtld_hidden_def(_dl_debug_state);
  83. static unsigned char *_dl_malloc_addr = NULL; /* Lets _dl_malloc use the already allocated memory page */
  84. static unsigned char *_dl_mmap_zero = NULL; /* Also used by _dl_malloc */
  85. static struct elf_resolve **init_fini_list;
  86. static unsigned int nlist; /* # items in init_fini_list */
  87. extern void _start(void);
  88. #ifdef __UCLIBC_HAS_SSP__
  89. # include <dl-osinfo.h>
  90. uintptr_t stack_chk_guard;
  91. # ifndef THREAD_SET_STACK_GUARD
  92. /* Only exported for architectures that don't store the stack guard canary
  93. * in local thread area. */
  94. uintptr_t __stack_chk_guard attribute_relro;
  95. # ifdef __UCLIBC_HAS_SSP_COMPAT__
  96. strong_alias(__stack_chk_guard,__guard)
  97. # endif
  98. # elif __UCLIBC_HAS_SSP_COMPAT__
  99. uintptr_t __guard attribute_relro;
  100. # endif
  101. #endif
  102. char *_dl_getenv(const char *symbol, char **envp)
  103. {
  104. char *pnt;
  105. const char *pnt1;
  106. while ((pnt = *envp++)) {
  107. pnt1 = symbol;
  108. while (*pnt && *pnt == *pnt1)
  109. pnt1++, pnt++;
  110. if (!*pnt || *pnt != '=' || *pnt1)
  111. continue;
  112. return pnt + 1;
  113. }
  114. return 0;
  115. }
  116. void _dl_unsetenv(const char *symbol, char **envp)
  117. {
  118. char *pnt;
  119. const char *pnt1;
  120. char **newenvp = envp;
  121. for (pnt = *envp; pnt; pnt = *++envp) {
  122. pnt1 = symbol;
  123. while (*pnt && *pnt == *pnt1)
  124. pnt1++, pnt++;
  125. if (!*pnt || *pnt != '=' || *pnt1)
  126. *newenvp++ = *envp;
  127. }
  128. *newenvp++ = *envp;
  129. return;
  130. }
  131. static int _dl_suid_ok(void)
  132. {
  133. __kernel_uid_t uid, euid;
  134. __kernel_gid_t gid, egid;
  135. uid = _dl_getuid();
  136. euid = _dl_geteuid();
  137. gid = _dl_getgid();
  138. egid = _dl_getegid();
  139. if (uid == euid && gid == egid) {
  140. return 1;
  141. }
  142. return 0;
  143. }
  144. void *_dl_malloc(size_t size)
  145. {
  146. void *retval;
  147. #if 0
  148. _dl_debug_early("request for %d bytes\n", size);
  149. #endif
  150. if (_dl_malloc_function)
  151. return (*_dl_malloc_function) (size);
  152. if (_dl_malloc_addr - _dl_mmap_zero + size > _dl_pagesize) {
  153. size_t rounded_size;
  154. /* Since the above assumes we get a full page even if
  155. we request less than that, make sure we request a
  156. full page, since uClinux may give us less than than
  157. a full page. We might round even
  158. larger-than-a-page sizes, but we end up never
  159. reusing _dl_mmap_zero/_dl_malloc_addr in that case,
  160. so we don't do it.
  161. The actual page size doesn't really matter; as long
  162. as we're self-consistent here, we're safe. */
  163. if (size < _dl_pagesize)
  164. rounded_size = (size + ADDR_ALIGN) & _dl_pagesize;
  165. else
  166. rounded_size = size;
  167. _dl_debug_early("mmapping more memory\n");
  168. _dl_mmap_zero = _dl_malloc_addr = _dl_mmap((void *) 0, rounded_size,
  169. PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_UNINITIALIZE, -1, 0);
  170. if (_dl_mmap_check_error(_dl_mmap_zero)) {
  171. _dl_dprintf(_dl_debug_file, "%s: mmap of a spare page failed!\n", _dl_progname);
  172. _dl_exit(20);
  173. }
  174. }
  175. retval = _dl_malloc_addr;
  176. _dl_malloc_addr += size;
  177. /*
  178. * Align memory to DL_MALLOC_ALIGN byte boundary. Some
  179. * platforms require this, others simply get better
  180. * performance.
  181. */
  182. _dl_malloc_addr = (unsigned char *) (((unsigned long) _dl_malloc_addr + DL_MALLOC_ALIGN - 1) & ~(DL_MALLOC_ALIGN - 1));
  183. return retval;
  184. }
  185. static void *_dl_zalloc(size_t size)
  186. {
  187. void *p = _dl_malloc(size);
  188. if (p)
  189. _dl_memset(p, 0, size);
  190. return p;
  191. }
  192. void _dl_free(void *p)
  193. {
  194. if (_dl_free_function)
  195. (*_dl_free_function) (p);
  196. }
  197. #if defined(USE_TLS) && USE_TLS
  198. void *_dl_memalign(size_t __boundary, size_t __size)
  199. {
  200. void *result;
  201. int i = 0;
  202. size_t delta;
  203. size_t rounded = 0;
  204. if (_dl_memalign_function)
  205. return (*_dl_memalign_function) (__boundary, __size);
  206. while (rounded < __boundary) {
  207. rounded = (1 << i++);
  208. }
  209. delta = (((size_t) _dl_malloc_addr + __size) & (rounded - 1));
  210. if ((result = _dl_malloc(rounded - delta)) == NULL)
  211. return result;
  212. result = _dl_malloc(__size);
  213. return result;
  214. }
  215. #endif
  216. static void __attribute__ ((destructor)) __attribute_used__ _dl_fini(void)
  217. {
  218. unsigned int i;
  219. struct elf_resolve * tpnt;
  220. for (i = 0; i < nlist; ++i) {
  221. tpnt = init_fini_list[i];
  222. if (tpnt->init_flag & FINI_FUNCS_CALLED)
  223. continue;
  224. tpnt->init_flag |= FINI_FUNCS_CALLED;
  225. _dl_run_fini_array(tpnt);
  226. if (tpnt->dynamic_info[DT_FINI]) {
  227. void (*dl_elf_func) (void);
  228. dl_elf_func = (void (*)(void)) (intptr_t) DL_RELOC_ADDR(tpnt->loadaddr, tpnt->dynamic_info[DT_FINI]);
  229. _dl_if_debug_dprint("\ncalling FINI: %s\n\n", tpnt->libname);
  230. DL_CALL_FUNC_AT_ADDR (dl_elf_func, tpnt->loadaddr, (void(*)(void)));
  231. }
  232. }
  233. }
  234. void _dl_get_ready_to_run(struct elf_resolve *tpnt, DL_LOADADDR_TYPE load_addr,
  235. ElfW(auxv_t) auxvt[AT_EGID + 1], char **envp,
  236. char **argv
  237. DL_GET_READY_TO_RUN_EXTRA_PARMS)
  238. {
  239. ElfW(Addr) app_mapaddr = 0;
  240. ElfW(Phdr) *ppnt;
  241. ElfW(Dyn) *dpnt;
  242. char *lpntstr;
  243. unsigned int i;
  244. int unlazy = 0, trace_loaded_objects = 0;
  245. struct dyn_elf *rpnt;
  246. struct elf_resolve *tcurr;
  247. struct elf_resolve *tpnt1;
  248. struct elf_resolve app_tpnt_tmp;
  249. struct elf_resolve *app_tpnt = &app_tpnt_tmp;
  250. struct r_debug *debug_addr;
  251. unsigned long *lpnt;
  252. unsigned long *_dl_envp; /* The environment address */
  253. ElfW(Addr) relro_addr = 0;
  254. size_t relro_size = 0;
  255. struct stat st;
  256. #if defined(USE_TLS) && USE_TLS
  257. void *tcbp = NULL;
  258. #endif
  259. /* Wahoo!!! We managed to make a function call! Get malloc
  260. * setup so we can use _dl_dprintf() to print debug noise
  261. * instead of the SEND_STDERR macros used in dl-startup.c */
  262. _dl_memset(app_tpnt, 0, sizeof(*app_tpnt));
  263. /* Store the page size for later use */
  264. _dl_pagesize = (auxvt[AT_PAGESZ].a_un.a_val) ? (size_t) auxvt[AT_PAGESZ].a_un.a_val : PAGE_SIZE;
  265. /* Make it so _dl_malloc can use the page of memory we have already
  266. * allocated. We shouldn't need to grab any more memory. This must
  267. * be first since things like _dl_dprintf() use _dl_malloc()...
  268. */
  269. _dl_malloc_addr = (unsigned char *)_dl_pagesize;
  270. _dl_mmap_zero = 0;
  271. /* Wahoo!!! */
  272. _dl_debug_early("Cool, ldso survived making function calls\n");
  273. /* Now we have done the mandatory linking of some things. We are now
  274. * free to start using global variables, since these things have all
  275. * been fixed up by now. Still no function calls outside of this
  276. * library, since the dynamic resolver is not yet ready.
  277. */
  278. if (argv[0]) {
  279. _dl_progname = argv[0];
  280. }
  281. if (_start == (void *) auxvt[AT_ENTRY].a_un.a_val) {
  282. _dl_dprintf(_dl_debug_file, "Standalone execution is not supported yet\n");
  283. _dl_exit(1);
  284. }
  285. /* Start to build the tables of the modules that are required for
  286. * this beast to run. We start with the basic executable, and then
  287. * go from there. Eventually we will run across ourself, and we
  288. * will need to properly deal with that as well.
  289. */
  290. rpnt = NULL;
  291. if (_dl_getenv("LD_BIND_NOW", envp))
  292. unlazy = RTLD_NOW;
  293. /* Now we need to figure out what kind of options are selected.
  294. * Note that for SUID programs we ignore the settings in
  295. * LD_LIBRARY_PATH.
  296. */
  297. if ((auxvt[AT_UID].a_un.a_val == (size_t)-1 && _dl_suid_ok()) ||
  298. (auxvt[AT_UID].a_un.a_val != (size_t)-1 &&
  299. auxvt[AT_UID].a_un.a_val == auxvt[AT_EUID].a_un.a_val &&
  300. auxvt[AT_GID].a_un.a_val == auxvt[AT_EGID].a_un.a_val)) {
  301. _dl_secure = 0;
  302. _dl_preload = _dl_getenv("LD_PRELOAD", envp);
  303. _dl_library_path = _dl_getenv("LD_LIBRARY_PATH", envp);
  304. } else {
  305. static const char unsecure_envvars[] =
  306. #ifdef EXTRA_UNSECURE_ENVVARS
  307. EXTRA_UNSECURE_ENVVARS
  308. #endif
  309. UNSECURE_ENVVARS;
  310. const char *nextp;
  311. _dl_secure = 1;
  312. nextp = unsecure_envvars;
  313. do {
  314. _dl_unsetenv (nextp, envp);
  315. /* We could use rawmemchr but this need not be fast. */
  316. nextp = _dl_strchr(nextp, '\0') + 1;
  317. } while (*nextp != '\0');
  318. _dl_preload = NULL;
  319. _dl_library_path = NULL;
  320. /* SUID binaries can be exploited if they do LAZY relocation. */
  321. unlazy = RTLD_NOW;
  322. }
  323. #if defined(USE_TLS) && USE_TLS
  324. _dl_error_catch_tsd = &_dl_initial_error_catch_tsd;
  325. _dl_init_static_tls = &_dl_nothread_init_static_tls;
  326. #endif
  327. #ifdef __UCLIBC_HAS_SSP__
  328. /* Set up the stack checker's canary. */
  329. stack_chk_guard = _dl_setup_stack_chk_guard ();
  330. # ifdef THREAD_SET_STACK_GUARD
  331. THREAD_SET_STACK_GUARD (stack_chk_guard);
  332. # ifdef __UCLIBC_HAS_SSP_COMPAT__
  333. __guard = stack_chk_guard;
  334. # endif
  335. # else
  336. __stack_chk_guard = stack_chk_guard;
  337. # endif
  338. #endif
  339. /* At this point we are now free to examine the user application,
  340. * and figure out which libraries are supposed to be called. Until
  341. * we have this list, we will not be completely ready for dynamic
  342. * linking.
  343. */
  344. /* Find the runtime load address of the main executable. This may be
  345. * different from what the ELF header says for ET_DYN/PIE executables.
  346. */
  347. {
  348. unsigned int idx;
  349. ElfW(Phdr) *phdr = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_val;
  350. for (idx = 0; idx < auxvt[AT_PHNUM].a_un.a_val; idx++, phdr++)
  351. if (phdr->p_type == PT_PHDR) {
  352. DL_INIT_LOADADDR_PROG(app_tpnt->loadaddr, auxvt[AT_PHDR].a_un.a_val - phdr->p_vaddr);
  353. break;
  354. }
  355. if (DL_LOADADDR_BASE(app_tpnt->loadaddr))
  356. _dl_debug_early("Position Independent Executable: "
  357. "app_tpnt->loadaddr=%x\n", DL_LOADADDR_BASE(app_tpnt->loadaddr));
  358. }
  359. /*
  360. * This is used by gdb to locate the chain of shared libraries that are
  361. * currently loaded.
  362. */
  363. debug_addr = _dl_zalloc(sizeof(struct r_debug));
  364. ppnt = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_val;
  365. for (i = 0; i < auxvt[AT_PHNUM].a_un.a_val; i++, ppnt++) {
  366. if (ppnt->p_type == PT_GNU_RELRO) {
  367. relro_addr = ppnt->p_vaddr;
  368. relro_size = ppnt->p_memsz;
  369. }
  370. if (!app_mapaddr && (ppnt->p_type == PT_LOAD)) {
  371. app_mapaddr = DL_RELOC_ADDR (app_tpnt->loadaddr, ppnt->p_vaddr);
  372. }
  373. if (ppnt->p_type == PT_DYNAMIC) {
  374. dpnt = (ElfW(Dyn) *) DL_RELOC_ADDR(app_tpnt->loadaddr, ppnt->p_vaddr);
  375. _dl_parse_dynamic_info(dpnt, app_tpnt->dynamic_info, debug_addr, app_tpnt->loadaddr);
  376. #ifndef __FORCE_SHAREABLE_TEXT_SEGMENTS__
  377. /* Ugly, ugly. We need to call mprotect to change the
  378. * protection of the text pages so that we can do the
  379. * dynamic linking. We can set the protection back
  380. * again once we are done.
  381. */
  382. _dl_debug_early("calling mprotect on the application program\n");
  383. /* Now cover the application program. */
  384. if (app_tpnt->dynamic_info[DT_TEXTREL]) {
  385. ElfW(Phdr) *ppnt_outer = ppnt;
  386. ppnt = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_val;
  387. for (i = 0; i < auxvt[AT_PHNUM].a_un.a_val; i++, ppnt++) {
  388. if (ppnt->p_type == PT_LOAD && !(ppnt->p_flags & PF_W))
  389. _dl_mprotect((void *) (DL_RELOC_ADDR(app_tpnt->loadaddr, ppnt->p_vaddr) & PAGE_ALIGN),
  390. (DL_RELOC_ADDR(app_tpnt->loadaddr, ppnt->p_vaddr) & ADDR_ALIGN) +
  391. (unsigned long) ppnt->p_filesz,
  392. PROT_READ | PROT_WRITE | PROT_EXEC);
  393. }
  394. ppnt = ppnt_outer;
  395. }
  396. #else
  397. if (app_tpnt->dynamic_info[DT_TEXTREL]) {
  398. _dl_dprintf(_dl_debug_file, "Can't modify application's text section; use the GCC option -fPIE for position-independent executables.\n");
  399. _dl_exit(1);
  400. }
  401. #endif
  402. #ifndef ALLOW_ZERO_PLTGOT
  403. /* make sure it's really there. */
  404. if (app_tpnt->dynamic_info[DT_PLTGOT] == 0)
  405. continue;
  406. #endif
  407. /* OK, we have what we need - slip this one into the list. */
  408. app_tpnt = _dl_add_elf_hash_table(_dl_progname, app_tpnt->loadaddr,
  409. app_tpnt->dynamic_info,
  410. (unsigned long) DL_RELOC_ADDR(app_tpnt->loadaddr, ppnt->p_vaddr),
  411. ppnt->p_filesz);
  412. _dl_loaded_modules->libtype = elf_executable;
  413. _dl_loaded_modules->ppnt = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_val;
  414. _dl_loaded_modules->n_phent = auxvt[AT_PHNUM].a_un.a_val;
  415. _dl_symbol_tables = rpnt = _dl_zalloc(sizeof(struct dyn_elf));
  416. rpnt->dyn = _dl_loaded_modules;
  417. app_tpnt->mapaddr = app_mapaddr;
  418. app_tpnt->rtld_flags = unlazy | RTLD_GLOBAL;
  419. app_tpnt->usage_count++;
  420. app_tpnt->symbol_scope = _dl_symbol_tables;
  421. lpnt = (unsigned long *) (app_tpnt->dynamic_info[DT_PLTGOT]);
  422. #ifdef ALLOW_ZERO_PLTGOT
  423. if (lpnt)
  424. #endif
  425. INIT_GOT(lpnt, _dl_loaded_modules);
  426. }
  427. /* OK, fill this in - we did not have this before */
  428. if (ppnt->p_type == PT_INTERP) {
  429. tpnt->libname = (char *) DL_RELOC_ADDR(app_tpnt->loadaddr, ppnt->p_vaddr);
  430. #ifdef __LDSO_SEARCH_INTERP_PATH__
  431. {
  432. char *ptmp;
  433. /* Store the path where the shared lib loader was found
  434. * for later use
  435. */
  436. _dl_ldsopath = _dl_strdup(tpnt->libname);
  437. ptmp = _dl_strrchr(_dl_ldsopath, '/');
  438. if (ptmp != _dl_ldsopath)
  439. *ptmp = '\0';
  440. }
  441. _dl_debug_early("Lib Loader: (%x) %s\n", (unsigned) DL_LOADADDR_BASE(tpnt->loadaddr), tpnt->libname);
  442. #endif
  443. }
  444. /* Discover any TLS sections if the target supports them. */
  445. if (ppnt->p_type == PT_TLS) {
  446. #if defined(USE_TLS) && USE_TLS
  447. if (ppnt->p_memsz > 0) {
  448. app_tpnt->l_tls_blocksize = ppnt->p_memsz;
  449. app_tpnt->l_tls_align = ppnt->p_align;
  450. if (ppnt->p_align == 0)
  451. app_tpnt->l_tls_firstbyte_offset = 0;
  452. else
  453. app_tpnt->l_tls_firstbyte_offset =
  454. (ppnt->p_vaddr & (ppnt->p_align - 1));
  455. app_tpnt->l_tls_initimage_size = ppnt->p_filesz;
  456. app_tpnt->l_tls_initimage = (void *) ppnt->p_vaddr;
  457. /* This image gets the ID one. */
  458. _dl_tls_max_dtv_idx = app_tpnt->l_tls_modid = 1;
  459. }
  460. _dl_debug_early("Found TLS header for appplication program\n");
  461. break;
  462. #else
  463. _dl_dprintf(_dl_debug_file, "Program uses unsupported TLS data!\n");
  464. _dl_exit(1);
  465. #endif
  466. }
  467. }
  468. app_tpnt->relro_addr = relro_addr;
  469. app_tpnt->relro_size = relro_size;
  470. #if defined(USE_TLS) && USE_TLS
  471. /*
  472. * Adjust the address of the TLS initialization image in
  473. * case the executable is actually an ET_DYN object.
  474. */
  475. if (app_tpnt->l_tls_initimage != NULL) {
  476. app_tpnt->l_tls_initimage =
  477. (char *) app_tpnt->l_tls_initimage + app_tpnt->loadaddr;
  478. _dl_debug_early("Relocated TLS initial image from %x to %x (size = %x)\n",
  479. (unsigned int)app_tpnt->l_tls_initimage,
  480. app_tpnt->l_tls_initimage, app_tpnt->l_tls_initimage_size);
  481. }
  482. #endif
  483. #ifdef __SUPPORT_LD_DEBUG__
  484. _dl_debug = _dl_getenv("LD_DEBUG", envp);
  485. if (_dl_debug) {
  486. if (_dl_strstr(_dl_debug, "all")) {
  487. _dl_debug_detail = _dl_debug_move = _dl_debug_symbols
  488. = _dl_debug_reloc = _dl_debug_bindings = _dl_debug_nofixups = (void*)1;
  489. } else {
  490. _dl_debug_detail = _dl_strstr(_dl_debug, "detail");
  491. _dl_debug_move = _dl_strstr(_dl_debug, "move");
  492. _dl_debug_symbols = _dl_strstr(_dl_debug, "sym");
  493. _dl_debug_reloc = _dl_strstr(_dl_debug, "reloc");
  494. _dl_debug_nofixups = _dl_strstr(_dl_debug, "nofix");
  495. _dl_debug_bindings = _dl_strstr(_dl_debug, "bind");
  496. }
  497. }
  498. {
  499. const char *dl_debug_output;
  500. dl_debug_output = _dl_getenv("LD_DEBUG_OUTPUT", envp);
  501. if (dl_debug_output) {
  502. char tmp[22], *tmp1, *filename;
  503. int len1, len2;
  504. _dl_memset(tmp, 0, sizeof(tmp));
  505. tmp1 = _dl_simple_ltoa( tmp, (unsigned long)_dl_getpid());
  506. len1 = _dl_strlen(dl_debug_output);
  507. len2 = _dl_strlen(tmp1);
  508. filename = _dl_malloc(len1 + len2 + 2);
  509. if (filename) {
  510. _dl_strcpy (filename, dl_debug_output);
  511. filename[len1] = '.';
  512. _dl_strcpy (&filename[len1+1], tmp1);
  513. _dl_debug_file = _dl_open(filename, O_WRONLY|O_CREAT, 0644);
  514. if (_dl_debug_file < 0) {
  515. _dl_debug_file = 2;
  516. _dl_dprintf(_dl_debug_file, "can't open file: '%s'\n",filename);
  517. }
  518. }
  519. }
  520. }
  521. #endif
  522. if (_dl_getenv("LD_TRACE_LOADED_OBJECTS", envp) != NULL) {
  523. trace_loaded_objects++;
  524. }
  525. #ifndef __LDSO_LDD_SUPPORT__
  526. if (trace_loaded_objects) {
  527. _dl_dprintf(_dl_debug_file, "Use the ldd provided by uClibc\n");
  528. _dl_exit(1);
  529. }
  530. #endif
  531. /*
  532. * OK, fix one more thing - set up debug_addr so it will point
  533. * to our chain. Later we may need to fill in more fields, but this
  534. * should be enough for now.
  535. */
  536. debug_addr->r_map = (struct link_map *) _dl_loaded_modules;
  537. debug_addr->r_version = 1;
  538. debug_addr->r_ldbase = (ElfW(Addr)) DL_LOADADDR_BASE(load_addr);
  539. debug_addr->r_brk = (unsigned long) &_dl_debug_state;
  540. _dl_debug_addr = debug_addr;
  541. /* Do not notify the debugger until the interpreter is in the list */
  542. /* OK, we now have the application in the list, and we have some
  543. * basic stuff in place. Now search through the list for other shared
  544. * libraries that should be loaded, and insert them on the list in the
  545. * correct order.
  546. */
  547. _dl_map_cache();
  548. if (_dl_preload) {
  549. char c, *str, *str2;
  550. str = _dl_preload;
  551. while (*str == ':' || *str == ' ' || *str == '\t')
  552. str++;
  553. while (*str) {
  554. str2 = str;
  555. while (*str2 && *str2 != ':' && *str2 != ' ' && *str2 != '\t')
  556. str2++;
  557. c = *str2;
  558. *str2 = '\0';
  559. if (!_dl_secure || _dl_strchr(str, '/') == NULL) {
  560. _dl_if_debug_dprint("\tfile='%s'; needed by '%s'\n", str, _dl_progname);
  561. tpnt1 = _dl_load_shared_library(_dl_secure, &rpnt, NULL, str, trace_loaded_objects);
  562. if (!tpnt1) {
  563. #ifdef __LDSO_LDD_SUPPORT__
  564. if (trace_loaded_objects)
  565. _dl_dprintf(1, "\t%s => not found\n", str);
  566. else
  567. #endif
  568. {
  569. _dl_dprintf(_dl_debug_file, "%s: can't load " "library '%s'\n", _dl_progname, str);
  570. _dl_exit(15);
  571. }
  572. } else {
  573. tpnt1->rtld_flags = unlazy | RTLD_GLOBAL;
  574. _dl_debug_early("Loading: (%x) %s\n", DL_LOADADDR_BASE(tpnt1->loadaddr), tpnt1->libname);
  575. #ifdef __LDSO_LDD_SUPPORT__
  576. if (trace_loaded_objects &&
  577. tpnt1->usage_count == 1) {
  578. /* This is a real hack to make
  579. * ldd not print the library
  580. * itself when run on a
  581. * library.
  582. */
  583. if (_dl_strcmp(_dl_progname, str) != 0)
  584. _dl_dprintf(1, "\t%s => %s (%x)\n", str, tpnt1->libname,
  585. DL_LOADADDR_BASE(tpnt1->loadaddr));
  586. }
  587. #endif
  588. }
  589. }
  590. *str2 = c;
  591. str = str2;
  592. while (*str == ':' || *str == ' ' || *str == '\t')
  593. str++;
  594. }
  595. }
  596. #ifdef __LDSO_PRELOAD_FILE_SUPPORT__
  597. do {
  598. struct stat st;
  599. char *preload;
  600. int fd;
  601. char c, *cp, *cp2;
  602. if (_dl_stat(LDSO_PRELOAD, &st) || st.st_size == 0) {
  603. break;
  604. }
  605. if ((fd = _dl_open(LDSO_PRELOAD, O_RDONLY, 0)) < 0) {
  606. _dl_dprintf(_dl_debug_file, "%s: can't open file '%s'\n",
  607. _dl_progname, LDSO_PRELOAD);
  608. break;
  609. }
  610. preload = (caddr_t) _dl_mmap(0, st.st_size + 1,
  611. PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
  612. _dl_close(fd);
  613. if (preload == (caddr_t) -1) {
  614. _dl_dprintf(_dl_debug_file, "%s:%i: can't map '%s'\n",
  615. _dl_progname, __LINE__, LDSO_PRELOAD);
  616. break;
  617. }
  618. /* convert all separators and comments to spaces */
  619. for (cp = preload; *cp; /*nada */ ) {
  620. if (*cp == ':' || *cp == '\t' || *cp == '\n') {
  621. *cp++ = ' ';
  622. } else if (*cp == '#') {
  623. do {
  624. *cp++ = ' ';
  625. } while (*cp != '\n' && *cp != '\0');
  626. } else {
  627. cp++;
  628. }
  629. }
  630. /* find start of first library */
  631. for (cp = preload; *cp && *cp == ' '; cp++)
  632. /*nada */ ;
  633. while (*cp) {
  634. /* find end of library */
  635. for (cp2 = cp; *cp && *cp != ' '; cp++)
  636. /*nada */ ;
  637. c = *cp;
  638. *cp = '\0';
  639. _dl_if_debug_dprint("\tfile='%s'; needed by '%s'\n", cp2, _dl_progname);
  640. tpnt1 = _dl_load_shared_library(0, &rpnt, NULL, cp2, trace_loaded_objects);
  641. if (!tpnt1) {
  642. #ifdef __LDSO_LDD_SUPPORT__
  643. if (trace_loaded_objects)
  644. _dl_dprintf(1, "\t%s => not found\n", cp2);
  645. else
  646. #endif
  647. {
  648. _dl_dprintf(_dl_debug_file, "%s: can't load library '%s'\n", _dl_progname, cp2);
  649. _dl_exit(15);
  650. }
  651. } else {
  652. tpnt1->rtld_flags = unlazy | RTLD_GLOBAL;
  653. _dl_debug_early("Loading: (%x) %s\n", DL_LOADADDR_BASE(tpnt1->loadaddr), tpnt1->libname);
  654. #ifdef __LDSO_LDD_SUPPORT__
  655. if (trace_loaded_objects &&
  656. tpnt1->usage_count == 1) {
  657. _dl_dprintf(1, "\t%s => %s (%x)\n",
  658. cp2, tpnt1->libname,
  659. DL_LOADADDR_BASE(tpnt1->loadaddr));
  660. }
  661. #endif
  662. }
  663. /* find start of next library */
  664. *cp = c;
  665. for ( /*nada */ ; *cp && *cp == ' '; cp++)
  666. /*nada */ ;
  667. }
  668. _dl_munmap(preload, st.st_size + 1);
  669. } while (0);
  670. #endif /* __LDSO_PRELOAD_FILE_SUPPORT__ */
  671. nlist = 0;
  672. for (tcurr = _dl_loaded_modules; tcurr; tcurr = tcurr->next) {
  673. ElfW(Dyn) *this_dpnt;
  674. nlist++;
  675. for (this_dpnt = (ElfW(Dyn) *) tcurr->dynamic_addr; this_dpnt->d_tag; this_dpnt++) {
  676. if (this_dpnt->d_tag == DT_NEEDED) {
  677. char *name;
  678. struct init_fini_list *tmp;
  679. lpntstr = (char*) (tcurr->dynamic_info[DT_STRTAB] + this_dpnt->d_un.d_val);
  680. name = _dl_get_last_path_component(lpntstr);
  681. if (_dl_strcmp(name, UCLIBC_LDSO) == 0)
  682. continue;
  683. _dl_if_debug_dprint("\tfile='%s'; needed by '%s'\n", lpntstr, _dl_progname);
  684. if (!(tpnt1 = _dl_load_shared_library(0, &rpnt, tcurr, lpntstr, trace_loaded_objects))) {
  685. #ifdef __LDSO_LDD_SUPPORT__
  686. if (trace_loaded_objects) {
  687. _dl_dprintf(1, "\t%s => not found\n", lpntstr);
  688. continue;
  689. } else
  690. #endif
  691. {
  692. _dl_dprintf(_dl_debug_file, "%s: can't load library '%s'\n", _dl_progname, lpntstr);
  693. _dl_exit(16);
  694. }
  695. }
  696. tmp = alloca(sizeof(struct init_fini_list)); /* Allocates on stack, no need to free this memory */
  697. tmp->tpnt = tpnt1;
  698. tmp->next = tcurr->init_fini;
  699. tcurr->init_fini = tmp;
  700. tpnt1->rtld_flags = unlazy | RTLD_GLOBAL;
  701. _dl_debug_early("Loading: (%x) %s\n", DL_LOADADDR_BASE(tpnt1->loadaddr), tpnt1->libname);
  702. #ifdef __LDSO_LDD_SUPPORT__
  703. if (trace_loaded_objects &&
  704. tpnt1->usage_count == 1) {
  705. _dl_dprintf(1, "\t%s => %s (%x)\n",
  706. lpntstr, tpnt1->libname,
  707. DL_LOADADDR_BASE(tpnt1->loadaddr));
  708. }
  709. #endif
  710. }
  711. }
  712. }
  713. _dl_unmap_cache();
  714. --nlist; /* Exclude the application. */
  715. init_fini_list = _dl_malloc(nlist * sizeof(struct elf_resolve *));
  716. i = 0;
  717. for (tcurr = _dl_loaded_modules->next; tcurr; tcurr = tcurr->next) {
  718. init_fini_list[i++] = tcurr;
  719. }
  720. /* Sort the INIT/FINI list in dependency order. */
  721. for (tcurr = _dl_loaded_modules->next; tcurr; tcurr = tcurr->next) {
  722. unsigned int j, k;
  723. for (j = 0; init_fini_list[j] != tcurr; ++j)
  724. /* Empty */;
  725. for (k = j + 1; k < nlist; ++k) {
  726. struct init_fini_list *runp = init_fini_list[k]->init_fini;
  727. for (; runp; runp = runp->next) {
  728. if (runp->tpnt == tcurr) {
  729. struct elf_resolve *here = init_fini_list[k];
  730. _dl_if_debug_dprint("Move %s from pos %d to %d in INIT/FINI list\n", here->libname, k, j);
  731. for (i = (k - j); i; --i)
  732. init_fini_list[i+j] = init_fini_list[i+j-1];
  733. init_fini_list[j] = here;
  734. ++j;
  735. break;
  736. }
  737. }
  738. }
  739. }
  740. #ifdef __SUPPORT_LD_DEBUG__
  741. if (_dl_debug) {
  742. _dl_dprintf(_dl_debug_file, "\nINIT/FINI order and dependencies:\n");
  743. for (i = 0; i < nlist; i++) {
  744. struct init_fini_list *tmp;
  745. _dl_dprintf(_dl_debug_file, "lib: %s has deps:\n",
  746. init_fini_list[i]->libname);
  747. tmp = init_fini_list[i]->init_fini;
  748. for (; tmp; tmp = tmp->next)
  749. _dl_dprintf(_dl_debug_file, " %s ", tmp->tpnt->libname);
  750. _dl_dprintf(_dl_debug_file, "\n");
  751. }
  752. }
  753. #endif
  754. /*
  755. * If the program interpreter is not in the module chain, add it.
  756. * This will be required for dlopen to be able to access the internal
  757. * functions in the dynamic linker and to relocate the interpreter
  758. * again once all libs are loaded.
  759. */
  760. if (tpnt) {
  761. ElfW(Ehdr) *epnt = (ElfW(Ehdr) *) auxvt[AT_BASE].a_un.a_val;
  762. ElfW(Phdr) *myppnt = (ElfW(Phdr) *) DL_RELOC_ADDR(load_addr, epnt->e_phoff);
  763. int j;
  764. tpnt = _dl_add_elf_hash_table(tpnt->libname, load_addr,
  765. tpnt->dynamic_info,
  766. (unsigned long)tpnt->dynamic_addr,
  767. 0);
  768. if (_dl_stat(tpnt->libname, &st) >= 0) {
  769. tpnt->st_dev = st.st_dev;
  770. tpnt->st_ino = st.st_ino;
  771. }
  772. tpnt->n_phent = epnt->e_phnum;
  773. tpnt->ppnt = myppnt;
  774. for (j = 0; j < epnt->e_phnum; j++, myppnt++) {
  775. if (myppnt->p_type == PT_GNU_RELRO) {
  776. tpnt->relro_addr = myppnt->p_vaddr;
  777. tpnt->relro_size = myppnt->p_memsz;
  778. break;
  779. }
  780. }
  781. tpnt->libtype = program_interpreter;
  782. tpnt->usage_count++;
  783. tpnt->symbol_scope = _dl_symbol_tables;
  784. if (rpnt) {
  785. rpnt->next = _dl_zalloc(sizeof(struct dyn_elf));
  786. rpnt->next->prev = rpnt;
  787. rpnt = rpnt->next;
  788. } else {
  789. rpnt = _dl_zalloc(sizeof(struct dyn_elf));
  790. }
  791. rpnt->dyn = tpnt;
  792. tpnt->rtld_flags = RTLD_NOW | RTLD_GLOBAL; /* Must not be LAZY */
  793. #ifdef RERELOCATE_LDSO
  794. /* Only rerelocate functions for now. */
  795. tpnt->init_flag = RELOCS_DONE;
  796. lpnt = (unsigned long *) (tpnt->dynamic_info[DT_PLTGOT]);
  797. # ifdef ALLOW_ZERO_PLTGOT
  798. if (tpnt->dynamic_info[DT_PLTGOT])
  799. # endif
  800. INIT_GOT(lpnt, tpnt);
  801. #else
  802. tpnt->init_flag = RELOCS_DONE | JMP_RELOCS_DONE;
  803. #endif
  804. tpnt = NULL;
  805. }
  806. #ifdef __LDSO_LDD_SUPPORT__
  807. /* End of the line for ldd.... */
  808. if (trace_loaded_objects) {
  809. _dl_dprintf(1, "\t%s => %s (%x)\n",
  810. rpnt->dyn->libname + _dl_strlen(_dl_ldsopath) + 1,
  811. rpnt->dyn->libname, DL_LOADADDR_BASE(rpnt->dyn->loadaddr));
  812. _dl_exit(0);
  813. }
  814. #endif
  815. #if defined(USE_TLS) && USE_TLS
  816. /* We do not initialize any of the TLS functionality unless any of the
  817. * initial modules uses TLS. This makes dynamic loading of modules with
  818. * TLS impossible, but to support it requires either eagerly doing setup
  819. * now or lazily doing it later. Doing it now makes us incompatible with
  820. * an old kernel that can't perform TLS_INIT_TP, even if no TLS is ever
  821. * used. Trying to do it lazily is too hairy to try when there could be
  822. * multiple threads (from a non-TLS-using libpthread). */
  823. bool was_tls_init_tp_called = tls_init_tp_called;
  824. if (tcbp == NULL) {
  825. _dl_debug_early("Calling init_tls()!\n");
  826. tcbp = init_tls ();
  827. }
  828. #endif
  829. _dl_debug_early("Beginning relocation fixups\n");
  830. #ifdef __mips__
  831. /*
  832. * Relocation of the GOT entries for MIPS have to be done
  833. * after all the libraries have been loaded.
  834. */
  835. _dl_perform_mips_global_got_relocations(_dl_loaded_modules, !unlazy);
  836. #endif
  837. /*
  838. * OK, now all of the kids are tucked into bed in their proper
  839. * addresses. Now we go through and look for REL and RELA records that
  840. * indicate fixups to the GOT tables. We need to do this in reverse
  841. * order so that COPY directives work correctly.
  842. */
  843. if (_dl_symbol_tables)
  844. if (_dl_fixup(_dl_symbol_tables, unlazy))
  845. _dl_exit(-1);
  846. for (tpnt = _dl_loaded_modules; tpnt; tpnt = tpnt->next) {
  847. if (tpnt->relro_size)
  848. _dl_protect_relro (tpnt);
  849. }
  850. #if defined(USE_TLS) && USE_TLS
  851. if (!was_tls_init_tp_called && _dl_tls_max_dtv_idx > 0)
  852. ++_dl_tls_generation;
  853. _dl_debug_early("Calling _dl_allocate_tls_init()!\n");
  854. /* Now that we have completed relocation, the initializer data
  855. for the TLS blocks has its final values and we can copy them
  856. into the main thread's TLS area, which we allocated above. */
  857. _dl_allocate_tls_init (tcbp);
  858. /* And finally install it for the main thread. If ld.so itself uses
  859. TLS we know the thread pointer was initialized earlier. */
  860. if (! tls_init_tp_called) {
  861. const char *lossage = (char *) TLS_INIT_TP (tcbp, USE___THREAD);
  862. if (__builtin_expect (lossage != NULL, 0)) {
  863. _dl_debug_early("cannot set up thread-local storage: %s\n", lossage);
  864. _dl_exit(30);
  865. }
  866. }
  867. #endif /* USE_TLS */
  868. /* OK, at this point things are pretty much ready to run. Now we need
  869. * to touch up a few items that are required, and then we can let the
  870. * user application have at it. Note that the dynamic linker itself
  871. * is not guaranteed to be fully dynamicly linked if we are using
  872. * ld.so.1, so we have to look up each symbol individually.
  873. */
  874. _dl_envp = (unsigned long *) (intptr_t) _dl_find_hash(__C_SYMBOL_PREFIX__ "__environ", _dl_symbol_tables, NULL, 0, NULL);
  875. if (_dl_envp)
  876. *_dl_envp = (unsigned long) envp;
  877. #ifndef __FORCE_SHAREABLE_TEXT_SEGMENTS__
  878. {
  879. unsigned int j;
  880. ElfW(Phdr) *myppnt;
  881. /* We had to set the protections of all pages to R/W for
  882. * dynamic linking. Set text pages back to R/O.
  883. */
  884. for (tpnt = _dl_loaded_modules; tpnt; tpnt = tpnt->next) {
  885. for (myppnt = tpnt->ppnt, j = 0; j < tpnt->n_phent; j++, myppnt++) {
  886. if (myppnt->p_type == PT_LOAD && !(myppnt->p_flags & PF_W) && tpnt->dynamic_info[DT_TEXTREL]) {
  887. _dl_mprotect((void *) (DL_RELOC_ADDR(tpnt->loadaddr, myppnt->p_vaddr) & PAGE_ALIGN),
  888. (myppnt->p_vaddr & ADDR_ALIGN) + (unsigned long) myppnt->p_filesz, LXFLAGS(myppnt->p_flags));
  889. }
  890. }
  891. }
  892. }
  893. #endif
  894. /* Notify the debugger we have added some objects. */
  895. _dl_debug_addr->r_state = RT_ADD;
  896. _dl_debug_state();
  897. /* Run pre-initialization functions for the executable. */
  898. _dl_run_array_forward(_dl_loaded_modules->dynamic_info[DT_PREINIT_ARRAY],
  899. _dl_loaded_modules->dynamic_info[DT_PREINIT_ARRAYSZ],
  900. _dl_loaded_modules->loadaddr);
  901. /* Run initialization functions for loaded objects. For the
  902. main executable, they will be run from __uClibc_main. */
  903. for (i = nlist; i; --i) {
  904. tpnt = init_fini_list[i-1];
  905. tpnt->init_fini = NULL; /* Clear, since alloca was used */
  906. if (tpnt->init_flag & INIT_FUNCS_CALLED)
  907. continue;
  908. tpnt->init_flag |= INIT_FUNCS_CALLED;
  909. if (tpnt->dynamic_info[DT_INIT]) {
  910. void (*dl_elf_func) (void);
  911. dl_elf_func = (void (*)(void)) DL_RELOC_ADDR(tpnt->loadaddr, tpnt->dynamic_info[DT_INIT]);
  912. _dl_if_debug_dprint("calling INIT: %s\n\n", tpnt->libname);
  913. DL_CALL_FUNC_AT_ADDR (dl_elf_func, tpnt->loadaddr, (void(*)(void)));
  914. }
  915. _dl_run_init_array(tpnt);
  916. }
  917. /* Find the real malloc function and make ldso functions use that from now on */
  918. _dl_malloc_function = (void* (*)(size_t)) (intptr_t) _dl_find_hash(__C_SYMBOL_PREFIX__ "malloc",
  919. _dl_symbol_tables, NULL, ELF_RTYPE_CLASS_PLT, NULL);
  920. #if defined(USE_TLS) && USE_TLS
  921. /* Find the real functions and make ldso functions use them from now on */
  922. _dl_calloc_function = (void* (*)(size_t, size_t)) (intptr_t)
  923. _dl_find_hash(__C_SYMBOL_PREFIX__ "calloc", _dl_symbol_tables, NULL, ELF_RTYPE_CLASS_PLT, NULL);
  924. _dl_realloc_function = (void* (*)(void *, size_t)) (intptr_t)
  925. _dl_find_hash(__C_SYMBOL_PREFIX__ "realloc", _dl_symbol_tables, NULL, ELF_RTYPE_CLASS_PLT, NULL);
  926. _dl_free_function = (void (*)(void *)) (intptr_t)
  927. _dl_find_hash(__C_SYMBOL_PREFIX__ "free", _dl_symbol_tables, NULL, ELF_RTYPE_CLASS_PLT, NULL);
  928. _dl_memalign_function = (void* (*)(size_t, size_t)) (intptr_t)
  929. _dl_find_hash(__C_SYMBOL_PREFIX__ "memalign", _dl_symbol_tables, NULL, ELF_RTYPE_CLASS_PLT, NULL);
  930. #endif
  931. /* Notify the debugger that all objects are now mapped in. */
  932. _dl_debug_addr->r_state = RT_CONSISTENT;
  933. _dl_debug_state();
  934. }
  935. #include "dl-hash.c"
  936. #include "dl-elf.c"