ldso.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969
  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) 2000-2004 by Erik Andersen <andersen@codpoet.org>
  7. * Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
  8. * David Engel, Hongjiu Lu and Mitch D'Souza
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * 2. The name of the above contributors may not be
  16. * used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE CONTRIBUTORS ``AS IS'' AND
  20. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE
  23. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. * SUCH DAMAGE.
  30. */
  31. #include "ldso.h"
  32. #define ALLOW_ZERO_PLTGOT
  33. /* Pull in the value of _dl_progname */
  34. #include "dl-progname.h"
  35. /* Global variables used within the shared library loader */
  36. char *_dl_library_path = 0; /* Where we look for libraries */
  37. char *_dl_preload = 0; /* Things to be loaded before the libs */
  38. char *_dl_ldsopath = 0; /* Location of the shared lib loader */
  39. int _dl_secure = 1; /* Are we dealing with setuid stuff? */
  40. int _dl_errno = 0; /* We can't use the real errno in ldso */
  41. size_t _dl_pagesize = 0; /* Store the page size for use later */
  42. struct r_debug *_dl_debug_addr = NULL; /* Used to communicate with the gdb debugger */
  43. void *(*_dl_malloc_function) (size_t size) = NULL;
  44. #ifdef __SUPPORT_LD_DEBUG__
  45. char *_dl_debug = 0;
  46. char *_dl_debug_symbols = 0;
  47. char *_dl_debug_move = 0;
  48. char *_dl_debug_reloc = 0;
  49. char *_dl_debug_detail = 0;
  50. char *_dl_debug_nofixups = 0;
  51. char *_dl_debug_bindings = 0;
  52. int _dl_debug_file = 2;
  53. #endif
  54. #include "dl-startup.c"
  55. /* Forward function declarations */
  56. static int _dl_suid_ok(void);
  57. /*
  58. * This stub function is used by some debuggers. The idea is that they
  59. * can set an internal breakpoint on it, so that we are notified when the
  60. * address mapping is changed in some way.
  61. */
  62. void _dl_debug_state(void)
  63. {
  64. }
  65. static unsigned char *_dl_malloc_addr = 0; /* Lets _dl_malloc use the already allocated memory page */
  66. static unsigned char *_dl_mmap_zero = 0; /* Also used by _dl_malloc */
  67. #if defined (__SUPPORT_LD_DEBUG__)
  68. static void debug_fini (int status, void *arg)
  69. {
  70. (void)status;
  71. _dl_dprintf(_dl_debug_file,"\ncalling fini: %s\n\n", (const char*)arg);
  72. }
  73. #endif
  74. void _dl_get_ready_to_run(struct elf_resolve *tpnt, unsigned long load_addr,
  75. Elf32_auxv_t auxvt[AT_EGID + 1], char **envp,
  76. char **argv)
  77. {
  78. ElfW(Phdr) *ppnt;
  79. Elf32_Dyn *dpnt;
  80. char *lpntstr;
  81. int i, nlist, goof = 0, unlazy = 0, trace_loaded_objects = 0;
  82. struct elf_resolve **init_fini_list;
  83. struct dyn_elf *rpnt;
  84. struct elf_resolve *tcurr;
  85. struct elf_resolve *tpnt1;
  86. struct elf_resolve app_tpnt_tmp;
  87. struct elf_resolve *app_tpnt = &app_tpnt_tmp;
  88. struct r_debug *debug_addr;
  89. unsigned long brk_addr, *lpnt;
  90. int (*_dl_atexit) (void *);
  91. unsigned long *_dl_envp; /* The environment address */
  92. #if defined (__SUPPORT_LD_DEBUG__)
  93. int (*_dl_on_exit) (void (*FUNCTION)(int STATUS, void *ARG),void*);
  94. #endif
  95. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  96. /* Wahoo!!! */
  97. SEND_STDERR("Cool, we managed to make a function call.\n");
  98. #endif
  99. /* Store the page size for later use */
  100. _dl_pagesize = (auxvt[AT_PAGESZ].a_un.a_val) ? (size_t) auxvt[AT_PAGESZ].a_un.a_val : PAGE_SIZE;
  101. /* Make it so _dl_malloc can use the page of memory we have already
  102. * allocated. We shouldn't need to grab any more memory. This must
  103. * be first since things like _dl_dprintf() use _dl_malloc()...
  104. */
  105. _dl_malloc_addr = (unsigned char *)_dl_pagesize;
  106. _dl_mmap_zero = 0;
  107. /* Now we have done the mandatory linking of some things. We are now
  108. * free to start using global variables, since these things have all
  109. * been fixed up by now. Still no function calls outside of this
  110. * library, since the dynamic resolver is not yet ready.
  111. */
  112. if (argv[0]) {
  113. _dl_progname = argv[0];
  114. }
  115. /* Start to build the tables of the modules that are required for
  116. * this beast to run. We start with the basic executable, and then
  117. * go from there. Eventually we will run across ourself, and we
  118. * will need to properly deal with that as well.
  119. */
  120. {
  121. ElfW(Ehdr) *epnt;
  122. ElfW(Phdr) *myppnt;
  123. int j;
  124. epnt = (ElfW(Ehdr) *) auxvt[AT_BASE].a_un.a_ptr;
  125. tpnt->n_phent = epnt->e_phnum;
  126. tpnt->ppnt = myppnt = (ElfW(Phdr) *) (load_addr + epnt->e_phoff);
  127. for (j = 0; j < epnt->e_phnum; j++, myppnt++) {
  128. if (myppnt->p_type == PT_DYNAMIC) {
  129. tpnt->dynamic_addr = (ElfW(Dyn) *)(myppnt->p_vaddr + load_addr);
  130. tpnt->dynamic_size = myppnt->p_filesz;
  131. }
  132. }
  133. }
  134. brk_addr = 0;
  135. rpnt = NULL;
  136. if (_dl_getenv("LD_BIND_NOW", envp))
  137. unlazy = RTLD_NOW;
  138. /* At this point we are now free to examine the user application,
  139. * and figure out which libraries are supposed to be called. Until
  140. * we have this list, we will not be completely ready for dynamic
  141. * linking.
  142. */
  143. /* Find the runtime load address of the main executable. This may be
  144. * different from what the ELF header says for ET_DYN/PIE executables.
  145. */
  146. {
  147. int i;
  148. ElfW(Phdr) *ppnt = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_ptr;
  149. for (i = 0; i < auxvt[AT_PHNUM].a_un.a_val; i++, ppnt++)
  150. if (ppnt->p_type == PT_PHDR) {
  151. app_tpnt->loadaddr = (ElfW(Addr)) (auxvt[AT_PHDR].a_un.a_val - ppnt->p_vaddr);
  152. break;
  153. }
  154. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  155. if (app_tpnt->loadaddr) {
  156. SEND_STDERR("Position Independent Executable: app_tpnt->loadaddr=");
  157. SEND_ADDRESS_STDERR(app_tpnt->loadaddr, 1);
  158. }
  159. #endif
  160. }
  161. /*
  162. * This is used by gdb to locate the chain of shared libraries that are
  163. * currently loaded.
  164. */
  165. debug_addr = _dl_malloc(sizeof(struct r_debug));
  166. _dl_memset(debug_addr, 0, sizeof(struct r_debug));
  167. ppnt = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_ptr;
  168. for (i = 0; i < auxvt[AT_PHNUM].a_un.a_val; i++, ppnt++) {
  169. if (ppnt->p_type == PT_LOAD) {
  170. if (ppnt->p_vaddr + app_tpnt->loadaddr + ppnt->p_memsz > brk_addr)
  171. brk_addr = ppnt->p_vaddr + app_tpnt->loadaddr + ppnt->p_memsz;
  172. }
  173. if (ppnt->p_type == PT_DYNAMIC) {
  174. dpnt = (Elf32_Dyn *) (ppnt->p_vaddr + app_tpnt->loadaddr);
  175. while (dpnt->d_tag) {
  176. #if defined(__mips__)
  177. if (dpnt->d_tag == DT_MIPS_GOTSYM)
  178. app_tpnt->mips_gotsym =
  179. (unsigned long) dpnt->d_un.d_val;
  180. if (dpnt->d_tag == DT_MIPS_LOCAL_GOTNO)
  181. app_tpnt->mips_local_gotno =
  182. (unsigned long) dpnt->d_un.d_val;
  183. if (dpnt->d_tag == DT_MIPS_SYMTABNO)
  184. app_tpnt->mips_symtabno =
  185. (unsigned long) dpnt->d_un.d_val;
  186. if (dpnt->d_tag > DT_JMPREL) {
  187. dpnt++;
  188. continue;
  189. }
  190. app_tpnt->dynamic_info[dpnt->d_tag] = dpnt->d_un.d_val;
  191. if (dpnt->d_tag == DT_DEBUG) {
  192. /* Allow writing debug_addr into the
  193. * .dynamic segment. Even though the
  194. * program header is marked RWE, the
  195. * kernel gives it to us rx.
  196. */
  197. Elf32_Addr mpa = (ppnt->p_vaddr + app_tpnt->loadaddr) & ~(_dl_pagesize - 1);
  198. Elf32_Word mps = ((ppnt->p_vaddr + app_tpnt->loadaddr) - mpa) + ppnt->p_memsz;
  199. if (_dl_mprotect((void *)mpa, mps, PROT_READ | PROT_WRITE | PROT_EXEC)) {
  200. SEND_STDERR("Couldn't mprotect .dynamic segment to rwx.\n");
  201. _dl_exit(0);
  202. }
  203. dpnt->d_un.d_val = (unsigned long) debug_addr;
  204. }
  205. #else
  206. if (dpnt->d_tag > DT_JMPREL) {
  207. dpnt++;
  208. continue;
  209. }
  210. app_tpnt->dynamic_info[dpnt->d_tag] = dpnt->d_un.d_val;
  211. if (dpnt->d_tag == DT_DEBUG) {
  212. dpnt->d_un.d_val = (unsigned long) debug_addr;
  213. }
  214. #endif
  215. if (dpnt->d_tag == DT_TEXTREL)
  216. app_tpnt->dynamic_info[DT_TEXTREL] = 1;
  217. dpnt++;
  218. }
  219. #ifndef __FORCE_SHAREABLE_TEXT_SEGMENTS__
  220. /* Ugly, ugly. We need to call mprotect to change the
  221. * protection of the text pages so that we can do the
  222. * dynamic linking. We can set the protection back
  223. * again once we are done.
  224. */
  225. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  226. SEND_STDERR("calling mprotect on the application program\n");
  227. #endif
  228. /* Now cover the application program. */
  229. if (app_tpnt->dynamic_info[DT_TEXTREL]) {
  230. ppnt = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_ptr;
  231. for (i = 0; i < auxvt[AT_PHNUM].a_un.a_val; i++, ppnt++) {
  232. if (ppnt->p_type == PT_LOAD && !(ppnt->p_flags & PF_W))
  233. _dl_mprotect((void *) ((ppnt->p_vaddr + app_tpnt->loadaddr) & PAGE_ALIGN),
  234. ((ppnt->p_vaddr + app_tpnt->loadaddr) & ADDR_ALIGN) +
  235. (unsigned long) ppnt->p_filesz,
  236. PROT_READ | PROT_WRITE | PROT_EXEC);
  237. }
  238. }
  239. #endif
  240. #ifndef ALLOW_ZERO_PLTGOT
  241. /* make sure it's really there. */
  242. if (app_tpnt->dynamic_info[DT_PLTGOT] == 0)
  243. continue;
  244. #endif
  245. /* OK, we have what we need - slip this one into the list. */
  246. app_tpnt = _dl_add_elf_hash_table(_dl_progname, (char *)app_tpnt->loadaddr,
  247. app_tpnt->dynamic_info, ppnt->p_vaddr + app_tpnt->loadaddr, ppnt->p_filesz);
  248. _dl_loaded_modules->libtype = elf_executable;
  249. _dl_loaded_modules->ppnt = (ElfW(Phdr) *) auxvt[AT_PHDR].a_un.a_ptr;
  250. _dl_loaded_modules->n_phent = auxvt[AT_PHNUM].a_un.a_val;
  251. _dl_symbol_tables = rpnt = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  252. _dl_memset(rpnt, 0, sizeof(struct dyn_elf));
  253. rpnt->dyn = _dl_loaded_modules;
  254. app_tpnt->rtld_flags = unlazy | RTLD_GLOBAL;
  255. app_tpnt->usage_count++;
  256. app_tpnt->symbol_scope = _dl_symbol_tables;
  257. lpnt = (unsigned long *) (app_tpnt->dynamic_info[DT_PLTGOT] + app_tpnt->loadaddr);
  258. #ifdef ALLOW_ZERO_PLTGOT
  259. if (lpnt)
  260. #endif
  261. INIT_GOT(lpnt, _dl_loaded_modules);
  262. }
  263. /* OK, fill this in - we did not have this before */
  264. if (ppnt->p_type == PT_INTERP) {
  265. int readsize = 0;
  266. char *pnt, *pnt1, buf[1024];
  267. tpnt->libname = _dl_strdup((char *) ppnt->p_offset +
  268. (auxvt[AT_PHDR].a_un.a_val & PAGE_ALIGN));
  269. /* Determine if the shared lib loader is a symlink */
  270. _dl_memset(buf, 0, sizeof(buf));
  271. readsize = _dl_readlink(tpnt->libname, buf, sizeof(buf));
  272. if (readsize > 0 && readsize < (int)(sizeof(buf)-1)) {
  273. pnt1 = _dl_strrchr(buf, '/');
  274. if (pnt1 && buf != pnt1) {
  275. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  276. _dl_dprintf(_dl_debug_file,
  277. "changing tpnt->libname from '%s' to '%s'\n",
  278. tpnt->libname, buf);
  279. #endif
  280. tpnt->libname = _dl_strdup(buf);
  281. }
  282. }
  283. /* Store the path where the shared lib loader was found
  284. * for later use
  285. */
  286. pnt = _dl_strdup(tpnt->libname);
  287. pnt1 = _dl_strrchr(pnt, '/');
  288. if (pnt != pnt1) {
  289. *pnt1 = '\0';
  290. _dl_ldsopath = pnt;
  291. } else {
  292. _dl_ldsopath = tpnt->libname;
  293. }
  294. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  295. _dl_dprintf(_dl_debug_file, "Lib Loader:\t(%x) %s\n",
  296. tpnt->loadaddr, tpnt->libname);
  297. #endif
  298. }
  299. }
  300. /* Now we need to figure out what kind of options are selected.
  301. * Note that for SUID programs we ignore the settings in
  302. * LD_LIBRARY_PATH.
  303. */
  304. if ((auxvt[AT_UID].a_un.a_val == -1 && _dl_suid_ok()) ||
  305. (auxvt[AT_UID].a_un.a_val != -1 &&
  306. auxvt[AT_UID].a_un.a_val == auxvt[AT_EUID].a_un.a_val &&
  307. auxvt[AT_GID].a_un.a_val == auxvt[AT_EGID].a_un.a_val)) {
  308. _dl_secure = 0;
  309. _dl_preload = _dl_getenv("LD_PRELOAD", envp);
  310. _dl_library_path = _dl_getenv("LD_LIBRARY_PATH", envp);
  311. } else {
  312. _dl_secure = 1;
  313. _dl_preload = _dl_getenv("LD_PRELOAD", envp);
  314. _dl_unsetenv("LD_AOUT_PRELOAD", envp);
  315. _dl_unsetenv("LD_LIBRARY_PATH", envp);
  316. _dl_unsetenv("LD_AOUT_LIBRARY_PATH", envp);
  317. _dl_library_path = NULL;
  318. }
  319. #ifdef __SUPPORT_LD_DEBUG__
  320. _dl_debug = _dl_getenv("LD_DEBUG", envp);
  321. if (_dl_debug) {
  322. if (_dl_strstr(_dl_debug, "all")) {
  323. _dl_debug_detail = _dl_debug_move = _dl_debug_symbols
  324. = _dl_debug_reloc = _dl_debug_bindings = _dl_debug_nofixups = (void*)1;
  325. } else {
  326. _dl_debug_detail = _dl_strstr(_dl_debug, "detail");
  327. _dl_debug_move = _dl_strstr(_dl_debug, "move");
  328. _dl_debug_symbols = _dl_strstr(_dl_debug, "sym");
  329. _dl_debug_reloc = _dl_strstr(_dl_debug, "reloc");
  330. _dl_debug_nofixups = _dl_strstr(_dl_debug, "nofix");
  331. _dl_debug_bindings = _dl_strstr(_dl_debug, "bind");
  332. }
  333. }
  334. {
  335. const char *dl_debug_output;
  336. dl_debug_output = _dl_getenv("LD_DEBUG_OUTPUT", envp);
  337. if (dl_debug_output) {
  338. char tmp[22], *tmp1, *filename;
  339. int len1, len2;
  340. _dl_memset(tmp, 0, sizeof(tmp));
  341. tmp1 = _dl_simple_ltoa( tmp, (unsigned long)_dl_getpid());
  342. len1 = _dl_strlen(dl_debug_output);
  343. len2 = _dl_strlen(tmp1);
  344. filename = _dl_malloc(len1+len2+2);
  345. if (filename) {
  346. _dl_strcpy (filename, dl_debug_output);
  347. filename[len1] = '.';
  348. _dl_strcpy (&filename[len1+1], tmp1);
  349. _dl_debug_file= _dl_open(filename, O_WRONLY|O_CREAT, 0644);
  350. if (_dl_debug_file < 0) {
  351. _dl_debug_file = 2;
  352. _dl_dprintf (2, "can't open file: '%s'\n",filename);
  353. }
  354. }
  355. }
  356. }
  357. #endif
  358. if (_dl_getenv("LD_TRACE_LOADED_OBJECTS", envp) != NULL) {
  359. trace_loaded_objects++;
  360. }
  361. #ifndef __LDSO_LDD_SUPPORT__
  362. if (trace_loaded_objects) {
  363. _dl_dprintf(_dl_debug_file, "Use the ldd provided by uClibc\n");
  364. _dl_exit(1);
  365. }
  366. #endif
  367. /*
  368. * OK, fix one more thing - set up debug_addr so it will point
  369. * to our chain. Later we may need to fill in more fields, but this
  370. * should be enough for now.
  371. */
  372. debug_addr->r_map = (struct link_map *) _dl_loaded_modules;
  373. debug_addr->r_version = 1;
  374. debug_addr->r_ldbase = load_addr;
  375. debug_addr->r_brk = (unsigned long) &_dl_debug_state;
  376. _dl_debug_addr = debug_addr;
  377. /* Notify the debugger we are in a consistant state */
  378. _dl_debug_addr->r_state = RT_CONSISTENT;
  379. _dl_debug_state();
  380. /* OK, we now have the application in the list, and we have some
  381. * basic stuff in place. Now search through the list for other shared
  382. * libraries that should be loaded, and insert them on the list in the
  383. * correct order.
  384. */
  385. _dl_map_cache();
  386. if (_dl_preload) {
  387. char c, *str, *str2;
  388. str = _dl_preload;
  389. while (*str == ':' || *str == ' ' || *str == '\t')
  390. str++;
  391. while (*str) {
  392. str2 = str;
  393. while (*str2 && *str2 != ':' && *str2 != ' ' && *str2 != '\t')
  394. str2++;
  395. c = *str2;
  396. *str2 = '\0';
  397. if (!_dl_secure || _dl_strchr(str, '/') == NULL) {
  398. if ((tpnt1 = _dl_check_if_named_library_is_loaded(str, trace_loaded_objects))) {
  399. tpnt1->usage_count++;
  400. goto next_lib;
  401. }
  402. #if defined (__SUPPORT_LD_DEBUG__)
  403. if(_dl_debug)
  404. _dl_dprintf(_dl_debug_file,
  405. "\tfile='%s'; needed by '%s'\n",
  406. str, _dl_progname);
  407. #endif
  408. tpnt1 = _dl_load_shared_library(_dl_secure, &rpnt, NULL, str, trace_loaded_objects);
  409. if (!tpnt1) {
  410. #ifdef __LDSO_LDD_SUPPORT__
  411. if (trace_loaded_objects)
  412. _dl_dprintf(1, "\t%s => not found\n", str);
  413. else
  414. #endif
  415. {
  416. _dl_dprintf(2, "%s: can't load " "library '%s'\n", _dl_progname, str);
  417. _dl_exit(15);
  418. }
  419. } else {
  420. tpnt1->rtld_flags = unlazy | RTLD_GLOBAL;
  421. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  422. _dl_dprintf(_dl_debug_file,
  423. "Loading:\t(%x) %s\n",
  424. tpnt1->loadaddr,
  425. tpnt1->libname);
  426. #endif
  427. #ifdef __LDSO_LDD_SUPPORT__
  428. if (trace_loaded_objects &&
  429. tpnt1->usage_count == 1) {
  430. /* This is a real hack to make
  431. * ldd not print the library
  432. * itself when run on a
  433. * library.
  434. */
  435. if (_dl_strcmp(_dl_progname, str) != 0)
  436. _dl_dprintf(1, "\t%s => %s (%x)\n", str, tpnt1->libname,
  437. (unsigned)tpnt1->loadaddr);
  438. }
  439. #endif
  440. }
  441. }
  442. next_lib:
  443. *str2 = c;
  444. str = str2;
  445. while (*str == ':' || *str == ' ' || *str == '\t')
  446. str++;
  447. }
  448. }
  449. #ifdef __LDSO_PRELOAD_FILE_SUPPORT__
  450. do {
  451. struct stat st;
  452. char *preload;
  453. int fd;
  454. char c, *cp, *cp2;
  455. if (_dl_stat(LDSO_PRELOAD, &st) || st.st_size == 0) {
  456. break;
  457. }
  458. if ((fd = _dl_open(LDSO_PRELOAD, O_RDONLY, 0)) < 0) {
  459. _dl_dprintf(2, "%s: can't open file '%s'\n",
  460. _dl_progname, LDSO_PRELOAD);
  461. break;
  462. }
  463. preload = (caddr_t) _dl_mmap(0, st.st_size + 1,
  464. PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
  465. _dl_close(fd);
  466. if (preload == (caddr_t) -1) {
  467. _dl_dprintf(2, "%s: can't map file '%s'\n",
  468. _dl_progname, LDSO_PRELOAD);
  469. break;
  470. }
  471. /* convert all separators and comments to spaces */
  472. for (cp = preload; *cp; /*nada */ ) {
  473. if (*cp == ':' || *cp == '\t' || *cp == '\n') {
  474. *cp++ = ' ';
  475. } else if (*cp == '#') {
  476. do {
  477. *cp++ = ' ';
  478. } while (*cp != '\n' && *cp != '\0');
  479. } else {
  480. cp++;
  481. }
  482. }
  483. /* find start of first library */
  484. for (cp = preload; *cp && *cp == ' '; cp++)
  485. /*nada */ ;
  486. while (*cp) {
  487. /* find end of library */
  488. for (cp2 = cp; *cp && *cp != ' '; cp++)
  489. /*nada */ ;
  490. c = *cp;
  491. *cp = '\0';
  492. if ((tpnt1 = _dl_check_if_named_library_is_loaded(cp2, trace_loaded_objects))) {
  493. tpnt1->usage_count++;
  494. goto next_lib2;
  495. }
  496. #if defined (__SUPPORT_LD_DEBUG__)
  497. if(_dl_debug)
  498. _dl_dprintf(_dl_debug_file,
  499. "\tfile='%s'; needed by '%s'\n",
  500. cp2, _dl_progname);
  501. #endif
  502. tpnt1 = _dl_load_shared_library(0, &rpnt, NULL, cp2, trace_loaded_objects);
  503. if (!tpnt1) {
  504. #ifdef __LDSO_LDD_SUPPORT__
  505. if (trace_loaded_objects)
  506. _dl_dprintf(1, "\t%s => not found\n", cp2);
  507. else
  508. #endif
  509. {
  510. _dl_dprintf(2, "%s: can't load library '%s'\n", _dl_progname, cp2);
  511. _dl_exit(15);
  512. }
  513. } else {
  514. tpnt1->rtld_flags = unlazy | RTLD_GLOBAL;
  515. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  516. _dl_dprintf(_dl_debug_file,
  517. "Loading:\t(%x) %s\n",
  518. tpnt1->loadaddr, tpnt1->libname);
  519. #endif
  520. #ifdef __LDSO_LDD_SUPPORT__
  521. if (trace_loaded_objects &&
  522. tpnt1->usage_count == 1) {
  523. _dl_dprintf(1, "\t%s => %s (%x)\n",
  524. cp2, tpnt1->libname,
  525. (unsigned)tpnt1->loadaddr);
  526. }
  527. #endif
  528. }
  529. next_lib2:
  530. /* find start of next library */
  531. *cp = c;
  532. for ( /*nada */ ; *cp && *cp == ' '; cp++)
  533. /*nada */ ;
  534. }
  535. _dl_munmap(preload, st.st_size + 1);
  536. } while (0);
  537. #endif /* __LDSO_PRELOAD_FILE_SUPPORT__ */
  538. nlist = 0;
  539. for (tcurr = _dl_loaded_modules; tcurr; tcurr = tcurr->next) {
  540. Elf32_Dyn *dpnt;
  541. nlist++;
  542. for (dpnt = (Elf32_Dyn *) tcurr->dynamic_addr; dpnt->d_tag; dpnt++) {
  543. if (dpnt->d_tag == DT_NEEDED) {
  544. char *name;
  545. struct init_fini_list *tmp;
  546. lpntstr = (char*) (tcurr->loadaddr + tcurr->dynamic_info[DT_STRTAB] + dpnt->d_un.d_val);
  547. name = _dl_get_last_path_component(lpntstr);
  548. if ((tpnt1 = _dl_check_if_named_library_is_loaded(name, trace_loaded_objects))) {
  549. tpnt1->usage_count++;
  550. }
  551. #if defined (__SUPPORT_LD_DEBUG__)
  552. if(_dl_debug)
  553. _dl_dprintf(_dl_debug_file,
  554. "\tfile='%s'; needed by '%s'\n",
  555. lpntstr, _dl_progname);
  556. #endif
  557. if (!tpnt1) {
  558. if (!(tpnt1 = _dl_load_shared_library(0, &rpnt, tcurr, lpntstr, trace_loaded_objects))) {
  559. #ifdef __LDSO_LDD_SUPPORT__
  560. if (trace_loaded_objects) {
  561. _dl_dprintf(1, "\t%s => not found\n", lpntstr);
  562. continue;
  563. } else
  564. #endif
  565. {
  566. _dl_dprintf(2, "%s: can't load library '%s'\n", _dl_progname, lpntstr);
  567. _dl_exit(16);
  568. }
  569. }
  570. }
  571. tmp = alloca(sizeof(struct init_fini_list)); /* Allocates on stack, no need to free this memory */
  572. tmp->tpnt = tpnt1;
  573. tmp->next = tcurr->init_fini;
  574. tcurr->init_fini = tmp;
  575. tpnt1->rtld_flags = unlazy | RTLD_GLOBAL;
  576. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  577. _dl_dprintf(_dl_debug_file,
  578. "Loading:\t(%x) %s\n",
  579. tpnt1->loadaddr, tpnt1->libname);
  580. #endif
  581. #ifdef __LDSO_LDD_SUPPORT__
  582. if (trace_loaded_objects &&
  583. tpnt1->usage_count == 1) {
  584. _dl_dprintf(1, "\t%s => %s (%x)\n",
  585. lpntstr, tpnt1->libname,
  586. (unsigned)tpnt1->loadaddr);
  587. }
  588. #endif
  589. }
  590. }
  591. }
  592. _dl_unmap_cache();
  593. --nlist; /* Exclude the application. */
  594. /* As long as atexit() is used to run the FINI functions, we can use
  595. * alloca here. The use of atexit() should go away at some time as that
  596. * will make Valgring happy.
  597. */
  598. init_fini_list = alloca(nlist * sizeof(struct elf_resolve *));
  599. i = 0;
  600. for (tcurr = _dl_loaded_modules->next; tcurr; tcurr = tcurr->next) {
  601. init_fini_list[i++] = tcurr;
  602. }
  603. /* Sort the INIT/FINI list in dependency order. */
  604. for (tcurr = _dl_loaded_modules->next; tcurr; tcurr = tcurr->next) {
  605. int j, k;
  606. for (j = 0; init_fini_list[j] != tcurr; ++j)
  607. /* Empty */;
  608. for (k = j + 1; k < nlist; ++k) {
  609. struct init_fini_list *runp = init_fini_list[k]->init_fini;
  610. for (; runp; runp = runp->next) {
  611. if (runp->tpnt == tcurr) {
  612. struct elf_resolve *here = init_fini_list[k];
  613. #ifdef __SUPPORT_LD_DEBUG__
  614. if(_dl_debug)
  615. _dl_dprintf(2, "Move %s from pos %d to %d in INIT/FINI list.\n", here->libname, k, j);
  616. #endif
  617. for (i = (k - j); i; --i)
  618. init_fini_list[i+j] = init_fini_list[i+j-1];
  619. init_fini_list[j] = here;
  620. ++j;
  621. break;
  622. }
  623. }
  624. }
  625. }
  626. #ifdef __SUPPORT_LD_DEBUG__
  627. if(_dl_debug) {
  628. _dl_dprintf(2, "\nINIT/FINI order and dependencies:\n");
  629. for (i = 0; i < nlist; i++) {
  630. struct init_fini_list *tmp;
  631. _dl_dprintf(2, "lib: %s has deps:\n",
  632. init_fini_list[i]->libname);
  633. tmp = init_fini_list[i]->init_fini;
  634. for (; tmp; tmp = tmp->next)
  635. _dl_dprintf(2, " %s ", tmp->tpnt->libname);
  636. _dl_dprintf(2, "\n");
  637. }
  638. }
  639. #endif
  640. /*
  641. * If the program interpreter is not in the module chain, add it.
  642. * This will be required for dlopen to be able to access the internal
  643. * functions in the dynamic linker and to relocate the interpreter
  644. * again once all libs are loaded.
  645. */
  646. if (tpnt) {
  647. tpnt = _dl_add_elf_hash_table(tpnt->libname, (char *)load_addr,
  648. tpnt->dynamic_info,
  649. (unsigned long)tpnt->dynamic_addr,
  650. tpnt->dynamic_size);
  651. tpnt->libtype = program_interpreter;
  652. tpnt->usage_count++;
  653. tpnt->symbol_scope = _dl_symbol_tables;
  654. if (rpnt) {
  655. rpnt->next = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  656. _dl_memset(rpnt->next, 0, sizeof(struct dyn_elf));
  657. rpnt->next->prev = rpnt;
  658. rpnt = rpnt->next;
  659. } else {
  660. rpnt = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  661. _dl_memset(rpnt, 0, sizeof(struct dyn_elf));
  662. }
  663. rpnt->dyn = tpnt;
  664. tpnt->rtld_flags = RTLD_NOW | RTLD_GLOBAL; /* Must not be LAZY */
  665. #ifdef RERELOCATE_LDSO
  666. /* Only rerelocate functions for now. */
  667. tpnt->init_flag = RELOCS_DONE | COPY_RELOCS_DONE;
  668. lpnt = (unsigned long *) (tpnt->dynamic_info[DT_PLTGOT] + load_addr);
  669. # ifdef ALLOW_ZERO_PLTGOT
  670. if (tpnt->dynamic_info[DT_PLTGOT])
  671. # endif
  672. INIT_GOT(lpnt, tpnt);
  673. #else
  674. tpnt->init_flag = RELOCS_DONE | JMP_RELOCS_DONE | COPY_RELOCS_DONE;
  675. #endif
  676. tpnt = NULL;
  677. }
  678. #ifdef __LDSO_LDD_SUPPORT__
  679. /* End of the line for ldd.... */
  680. if (trace_loaded_objects) {
  681. _dl_dprintf(1, "\t%s => %s (%x)\n",
  682. rpnt->dyn->libname + _dl_strlen(_dl_ldsopath) + 1,
  683. rpnt->dyn->libname, rpnt->dyn->loadaddr);
  684. _dl_exit(0);
  685. }
  686. #endif
  687. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  688. _dl_dprintf(_dl_debug_file, "Beginning relocation fixups\n");
  689. #endif
  690. #ifdef __mips__
  691. /*
  692. * Relocation of the GOT entries for MIPS have to be done
  693. * after all the libraries have been loaded.
  694. */
  695. _dl_perform_mips_global_got_relocations(_dl_loaded_modules);
  696. #endif
  697. /*
  698. * OK, now all of the kids are tucked into bed in their proper
  699. * addresses. Now we go through and look for REL and RELA records that
  700. * indicate fixups to the GOT tables. We need to do this in reverse
  701. * order so that COPY directives work correctly.
  702. */
  703. if (_dl_symbol_tables)
  704. goof += _dl_fixup(_dl_symbol_tables, unlazy);
  705. /* OK, at this point things are pretty much ready to run. Now we need
  706. * to touch up a few items that are required, and then we can let the
  707. * user application have at it. Note that the dynamic linker itself
  708. * is not guaranteed to be fully dynamicly linked if we are using
  709. * ld.so.1, so we have to look up each symbol individually.
  710. */
  711. _dl_envp = (unsigned long *) (intptr_t) _dl_find_hash("__environ", _dl_symbol_tables, 0);
  712. if (_dl_envp)
  713. *_dl_envp = (unsigned long) envp;
  714. #ifndef __FORCE_SHAREABLE_TEXT_SEGMENTS__
  715. {
  716. unsigned int j;
  717. ElfW(Phdr) *myppnt;
  718. /* We had to set the protections of all pages to R/W for
  719. * dynamic linking. Set text pages back to R/O.
  720. */
  721. for (tpnt = _dl_loaded_modules; tpnt; tpnt = tpnt->next) {
  722. for (myppnt = tpnt->ppnt, j = 0; j < tpnt->n_phent; j++, myppnt++) {
  723. if (myppnt->p_type == PT_LOAD && !(myppnt->p_flags & PF_W) && tpnt->dynamic_info[DT_TEXTREL]) {
  724. _dl_mprotect((void *) (tpnt->loadaddr + (myppnt->p_vaddr & PAGE_ALIGN)),
  725. (myppnt->p_vaddr & ADDR_ALIGN) + (unsigned long) myppnt->p_filesz, LXFLAGS(myppnt->p_flags));
  726. }
  727. }
  728. }
  729. }
  730. #endif
  731. _dl_atexit = (int (*)(void *)) (intptr_t) _dl_find_hash("atexit", _dl_symbol_tables, ELF_RTYPE_CLASS_PLT);
  732. #if defined (__SUPPORT_LD_DEBUG__)
  733. _dl_on_exit = (int (*)(void (*)(int, void *),void*))
  734. (intptr_t) _dl_find_hash("on_exit", _dl_symbol_tables, ELF_RTYPE_CLASS_PLT);
  735. #endif
  736. /* Notify the debugger we have added some objects. */
  737. _dl_debug_addr->r_state = RT_ADD;
  738. _dl_debug_state();
  739. for (i = nlist; i; --i) {
  740. tpnt = init_fini_list[i-1];
  741. tpnt->init_fini = NULL; /* Clear, since alloca was used */
  742. if (tpnt->init_flag & INIT_FUNCS_CALLED)
  743. continue;
  744. tpnt->init_flag |= INIT_FUNCS_CALLED;
  745. if (tpnt->dynamic_info[DT_INIT]) {
  746. void (*dl_elf_func) (void);
  747. dl_elf_func = (void (*)(void)) (intptr_t) (tpnt->loadaddr + tpnt->dynamic_info[DT_INIT]);
  748. #if defined (__SUPPORT_LD_DEBUG__)
  749. if(_dl_debug)
  750. _dl_dprintf(_dl_debug_file,
  751. "\ncalling init: %s\n\n",
  752. tpnt->libname);
  753. #endif
  754. (*dl_elf_func) ();
  755. }
  756. tpnt->init_flag |= FINI_FUNCS_CALLED;
  757. if (_dl_atexit && tpnt->dynamic_info[DT_FINI]) {
  758. void (*dl_elf_func) (void);
  759. dl_elf_func = (void (*)(void)) (intptr_t) (tpnt->loadaddr + tpnt->dynamic_info[DT_FINI]);
  760. (*_dl_atexit) (dl_elf_func);
  761. #if defined (__SUPPORT_LD_DEBUG__)
  762. if(_dl_debug && _dl_on_exit) {
  763. (*_dl_on_exit)(debug_fini, tpnt->libname);
  764. }
  765. #endif
  766. }
  767. #if defined (__SUPPORT_LD_DEBUG__)
  768. else {
  769. if (!_dl_atexit)
  770. _dl_dprintf(_dl_debug_file, "%s: The address of atexit () is 0x0.\n", tpnt->libname);
  771. }
  772. #endif
  773. }
  774. /* Notify the debugger that all objects are now mapped in. */
  775. _dl_debug_addr->r_state = RT_CONSISTENT;
  776. _dl_debug_state();
  777. /* Find the real malloc function and make ldso functions use that from now on */
  778. _dl_malloc_function = (void* (*)(size_t)) (intptr_t) _dl_find_hash("malloc", _dl_symbol_tables, ELF_RTYPE_CLASS_PLT);
  779. }
  780. char *_dl_getenv(const char *symbol, char **envp)
  781. {
  782. char *pnt;
  783. const char *pnt1;
  784. while ((pnt = *envp++)) {
  785. pnt1 = symbol;
  786. while (*pnt && *pnt == *pnt1)
  787. pnt1++, pnt++;
  788. if (!*pnt || *pnt != '=' || *pnt1)
  789. continue;
  790. return pnt + 1;
  791. }
  792. return 0;
  793. }
  794. void _dl_unsetenv(const char *symbol, char **envp)
  795. {
  796. char *pnt;
  797. const char *pnt1;
  798. char **newenvp = envp;
  799. for (pnt = *envp; pnt; pnt = *++envp) {
  800. pnt1 = symbol;
  801. while (*pnt && *pnt == *pnt1)
  802. pnt1++, pnt++;
  803. if (!*pnt || *pnt != '=' || *pnt1)
  804. *newenvp++ = *envp;
  805. }
  806. *newenvp++ = *envp;
  807. return;
  808. }
  809. static int _dl_suid_ok(void)
  810. {
  811. __kernel_uid_t uid, euid;
  812. __kernel_gid_t gid, egid;
  813. uid = _dl_getuid();
  814. euid = _dl_geteuid();
  815. gid = _dl_getgid();
  816. egid = _dl_getegid();
  817. if(uid == euid && gid == egid) {
  818. return 1;
  819. }
  820. return 0;
  821. }
  822. void *_dl_malloc(int size)
  823. {
  824. void *retval;
  825. #if 0
  826. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  827. _dl_dprintf(2, "malloc: request for %d bytes\n", size);
  828. #endif
  829. #endif
  830. if (_dl_malloc_function)
  831. return (*_dl_malloc_function) (size);
  832. if (_dl_malloc_addr - _dl_mmap_zero + (unsigned)size > _dl_pagesize) {
  833. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  834. _dl_dprintf(2, "malloc: mmapping more memory\n");
  835. #endif
  836. _dl_mmap_zero = _dl_malloc_addr = _dl_mmap((void *) 0, size,
  837. PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
  838. if (_dl_mmap_check_error(_dl_mmap_zero)) {
  839. _dl_dprintf(2, "%s: mmap of a spare page failed!\n", _dl_progname);
  840. _dl_exit(20);
  841. }
  842. }
  843. retval = _dl_malloc_addr;
  844. _dl_malloc_addr += size;
  845. /*
  846. * Align memory to 4 byte boundary. Some platforms require this,
  847. * others simply get better performance.
  848. */
  849. _dl_malloc_addr = (unsigned char *) (((unsigned long) _dl_malloc_addr + 3) & ~(3));
  850. return retval;
  851. }
  852. #include "dl-hash.c"
  853. #include "dl-elf.c"