dl-elf.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841
  1. /* vi: set sw=4 ts=4: */
  2. /* Program to load an ELF binary on a linux system, and run it
  3. * after resolving ELF shared library symbols
  4. *
  5. * Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
  6. * David Engel, Hongjiu Lu and Mitch D'Souza
  7. * Copyright (C) 2001-2003, Erik Andersen
  8. *
  9. * All rights reserved.
  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. /* This file contains the helper routines to load an ELF sharable
  33. library into memory and add the symbol table info to the chain. */
  34. #ifdef USE_CACHE
  35. static caddr_t _dl_cache_addr = NULL;
  36. static size_t _dl_cache_size = 0;
  37. int _dl_map_cache(void)
  38. {
  39. int fd;
  40. struct stat st;
  41. header_t *header;
  42. libentry_t *libent;
  43. int i, strtabsize;
  44. if (_dl_cache_addr == (caddr_t) - 1)
  45. return -1;
  46. else if (_dl_cache_addr != NULL)
  47. return 0;
  48. if (_dl_stat(LDSO_CACHE, &st)
  49. || (fd = _dl_open(LDSO_CACHE, O_RDONLY)) < 0) {
  50. _dl_dprintf(2, "%s: can't open cache '%s'\n", _dl_progname, LDSO_CACHE);
  51. _dl_cache_addr = (caddr_t) - 1; /* so we won't try again */
  52. return -1;
  53. }
  54. _dl_cache_size = st.st_size;
  55. _dl_cache_addr = (caddr_t) _dl_mmap(0, _dl_cache_size, PROT_READ, MAP_SHARED, fd, 0);
  56. _dl_close(fd);
  57. if (_dl_cache_addr == (caddr_t) - 1) {
  58. _dl_dprintf(2, "%s: can't map cache '%s'\n",
  59. _dl_progname, LDSO_CACHE);
  60. return -1;
  61. }
  62. header = (header_t *) _dl_cache_addr;
  63. if (_dl_cache_size < sizeof(header_t) ||
  64. _dl_memcmp(header->magic, LDSO_CACHE_MAGIC, LDSO_CACHE_MAGIC_LEN)
  65. || _dl_memcmp(header->version, LDSO_CACHE_VER, LDSO_CACHE_VER_LEN)
  66. || _dl_cache_size <
  67. (sizeof(header_t) + header->nlibs * sizeof(libentry_t))
  68. || _dl_cache_addr[_dl_cache_size - 1] != '\0')
  69. {
  70. _dl_dprintf(2, "%s: cache '%s' is corrupt\n", _dl_progname,
  71. LDSO_CACHE);
  72. goto fail;
  73. }
  74. strtabsize = _dl_cache_size - sizeof(header_t) -
  75. header->nlibs * sizeof(libentry_t);
  76. libent = (libentry_t *) & header[1];
  77. for (i = 0; i < header->nlibs; i++) {
  78. if (libent[i].sooffset >= strtabsize ||
  79. libent[i].liboffset >= strtabsize)
  80. {
  81. _dl_dprintf(2, "%s: cache '%s' is corrupt\n", _dl_progname, LDSO_CACHE);
  82. goto fail;
  83. }
  84. }
  85. return 0;
  86. fail:
  87. _dl_munmap(_dl_cache_addr, _dl_cache_size);
  88. _dl_cache_addr = (caddr_t) - 1;
  89. return -1;
  90. }
  91. int _dl_unmap_cache(void)
  92. {
  93. if (_dl_cache_addr == NULL || _dl_cache_addr == (caddr_t) - 1)
  94. return -1;
  95. #if 1
  96. _dl_munmap(_dl_cache_addr, _dl_cache_size);
  97. _dl_cache_addr = NULL;
  98. #endif
  99. return 0;
  100. }
  101. #endif
  102. /* This function's behavior must exactly match that
  103. * in uClibc/ldso/util/ldd.c */
  104. static struct elf_resolve *
  105. search_for_named_library(char *name, int secure, const char *path_list,
  106. struct dyn_elf **rpnt)
  107. {
  108. int i, count = 1;
  109. char *path, *path_n;
  110. char mylibname[2050];
  111. struct elf_resolve *tpnt1;
  112. if (path_list==NULL)
  113. return NULL;
  114. /* We need a writable copy of this string */
  115. path = _dl_strdup(path_list);
  116. if (!path) {
  117. _dl_dprintf(2, "Out of memory!\n");
  118. _dl_exit(0);
  119. }
  120. /* Unlike ldd.c, don't bother to eliminate double //s */
  121. /* Replace colons with zeros in path_list and count them */
  122. for(i=_dl_strlen(path); i > 0; i--) {
  123. if (path[i]==':') {
  124. path[i]=0;
  125. count++;
  126. }
  127. }
  128. path_n = path;
  129. for (i = 0; i < count; i++) {
  130. _dl_strcpy(mylibname, path_n);
  131. _dl_strcat(mylibname, "/");
  132. _dl_strcat(mylibname, name);
  133. if ((tpnt1 = _dl_load_elf_shared_library(secure, rpnt,
  134. mylibname)) != NULL)
  135. {
  136. return tpnt1;
  137. }
  138. path_n += (_dl_strlen(path_n) + 1);
  139. }
  140. return NULL;
  141. }
  142. /* Check if the named library is already loaded... */
  143. struct elf_resolve *_dl_check_if_named_library_is_loaded(const char *full_libname)
  144. {
  145. const char *pnt, *pnt1;
  146. struct elf_resolve *tpnt1;
  147. const char *libname, *libname2;
  148. pnt = libname = full_libname;
  149. /* quick hack to ensure mylibname buffer doesn't overflow. don't
  150. allow full_libname or any directory to be longer than 1024. */
  151. if (_dl_strlen(full_libname) > 1024)
  152. return NULL;
  153. /* Skip over any initial initial './' and '/' stuff to
  154. * get the short form libname with no path garbage */
  155. pnt1 = _dl_strrchr(pnt, '/');
  156. if (pnt1) {
  157. libname = pnt1 + 1;
  158. }
  159. /* Critical step! Weed out duplicates early to avoid
  160. * function aliasing, which wastes memory, and causes
  161. * really bad things to happen with weaks and globals. */
  162. for (tpnt1 = _dl_loaded_modules; tpnt1; tpnt1 = tpnt1->next) {
  163. /* Skip over any initial initial './' and '/' stuff to
  164. * get the short form libname with no path garbage */
  165. libname2 = tpnt1->libname;
  166. pnt1 = _dl_strrchr(libname2, '/');
  167. if (pnt1) {
  168. libname2 = pnt1 + 1;
  169. }
  170. if (_dl_strcmp(libname2, libname) == 0) {
  171. /* Well, that was certainly easy */
  172. return tpnt1;
  173. }
  174. }
  175. return NULL;
  176. }
  177. /*
  178. * Used to return error codes back to dlopen et. al.
  179. */
  180. unsigned long _dl_error_number;
  181. unsigned long _dl_internal_error_number;
  182. extern char *_dl_ldsopath;
  183. struct elf_resolve *_dl_load_shared_library(int secure, struct dyn_elf **rpnt,
  184. struct elf_resolve *tpnt, char *full_libname)
  185. {
  186. char *pnt, *pnt1;
  187. struct elf_resolve *tpnt1;
  188. char *libname;
  189. _dl_internal_error_number = 0;
  190. libname = full_libname;
  191. /* quick hack to ensure mylibname buffer doesn't overflow. don't
  192. allow full_libname or any directory to be longer than 1024. */
  193. if (_dl_strlen(full_libname) > 1024)
  194. goto goof;
  195. /* Skip over any initial initial './' and '/' stuff to
  196. * get the short form libname with no path garbage */
  197. pnt1 = _dl_strrchr(libname, '/');
  198. if (pnt1) {
  199. libname = pnt1 + 1;
  200. }
  201. /* Critical step! Weed out duplicates early to avoid
  202. * function aliasing, which wastes memory, and causes
  203. * really bad things to happen with weaks and globals. */
  204. if ((tpnt1=_dl_check_if_named_library_is_loaded(libname))!=NULL)
  205. return tpnt1;
  206. #if defined (__SUPPORT_LD_DEBUG__)
  207. if(_dl_debug) _dl_dprintf(_dl_debug_file, "searching for library: '%s'\n", libname);
  208. #endif
  209. /* If the filename has any '/', try it straight and leave it at that.
  210. For IBCS2 compatibility under linux, we substitute the string
  211. /usr/i486-sysv4/lib for /usr/lib in library names. */
  212. if (libname != full_libname) {
  213. tpnt1 = _dl_load_elf_shared_library(secure, rpnt, full_libname);
  214. if (tpnt1)
  215. return tpnt1;
  216. //goto goof;
  217. }
  218. /*
  219. * The ABI specifies that RPATH is searched before LD_*_PATH or
  220. * the default path of /usr/lib. Check in rpath directories.
  221. */
  222. for (tpnt = _dl_loaded_modules; tpnt; tpnt = tpnt->next) {
  223. if (tpnt->libtype == elf_executable) {
  224. pnt = (char *) tpnt->dynamic_info[DT_RPATH];
  225. if (pnt) {
  226. pnt += (unsigned long) tpnt->loadaddr +
  227. tpnt->dynamic_info[DT_STRTAB];
  228. #if defined (__SUPPORT_LD_DEBUG__)
  229. if(_dl_debug) _dl_dprintf(_dl_debug_file, "searching RPATH: '%s'\n", pnt);
  230. #endif
  231. if ((tpnt1 = search_for_named_library(libname, secure, pnt, rpnt)) != NULL)
  232. {
  233. return tpnt1;
  234. }
  235. }
  236. }
  237. }
  238. /* Check in LD_{ELF_}LIBRARY_PATH, if specified and allowed */
  239. if (_dl_library_path) {
  240. #if defined (__SUPPORT_LD_DEBUG__)
  241. if(_dl_debug) _dl_dprintf(_dl_debug_file, "searching _dl_library_path: '%s'\n", _dl_library_path);
  242. #endif
  243. if ((tpnt1 = search_for_named_library(libname, secure, _dl_library_path, rpnt)) != NULL)
  244. {
  245. return tpnt1;
  246. }
  247. }
  248. /*
  249. * Where should the cache be searched? There is no such concept in the
  250. * ABI, so we have some flexibility here. For now, search it before
  251. * the hard coded paths that follow (i.e before /lib and /usr/lib).
  252. */
  253. #ifdef USE_CACHE
  254. if (_dl_cache_addr != NULL && _dl_cache_addr != (caddr_t) - 1) {
  255. int i;
  256. header_t *header = (header_t *) _dl_cache_addr;
  257. libentry_t *libent = (libentry_t *) & header[1];
  258. char *strs = (char *) &libent[header->nlibs];
  259. for (i = 0; i < header->nlibs; i++) {
  260. if ((libent[i].flags == LIB_ELF ||
  261. libent[i].flags == LIB_ELF_LIBC5) &&
  262. _dl_strcmp(libname, strs + libent[i].sooffset) == 0 &&
  263. (tpnt1 = _dl_load_elf_shared_library(secure,
  264. rpnt, strs + libent[i].liboffset)))
  265. return tpnt1;
  266. }
  267. }
  268. #endif
  269. /* Look for libraries wherever the shared library loader
  270. * was installed */
  271. #if defined (__SUPPORT_LD_DEBUG__)
  272. if(_dl_debug) _dl_dprintf(_dl_debug_file, "searching in ldso dir: %s\n", _dl_ldsopath);
  273. #endif
  274. if ((tpnt1 = search_for_named_library(libname, secure, _dl_ldsopath, rpnt)) != NULL)
  275. {
  276. return tpnt1;
  277. }
  278. /* Lastly, search the standard list of paths for the library.
  279. This list must exactly match the list in uClibc/ldso/util/ldd.c */
  280. #if defined (__SUPPORT_LD_DEBUG__)
  281. if(_dl_debug) _dl_dprintf(_dl_debug_file, "searching full lib path list\n");
  282. #endif
  283. if ((tpnt1 = search_for_named_library(libname, secure,
  284. UCLIBC_TARGET_PREFIX "/usr/X11R6/lib:"
  285. UCLIBC_TARGET_PREFIX "/usr/lib:"
  286. UCLIBC_TARGET_PREFIX "/lib:"
  287. UCLIBC_DEVEL_PREFIX "/lib:"
  288. UCLIBC_BUILD_DIR "/lib:"
  289. "/usr/lib:"
  290. "/lib", rpnt)
  291. ) != NULL)
  292. {
  293. return tpnt1;
  294. }
  295. goof:
  296. /* Well, we shot our wad on that one. All we can do now is punt */
  297. if (_dl_internal_error_number)
  298. _dl_error_number = _dl_internal_error_number;
  299. else
  300. _dl_error_number = LD_ERROR_NOFILE;
  301. #if defined (__SUPPORT_LD_DEBUG__)
  302. if(_dl_debug) _dl_dprintf(2, "Bummer: could not find '%s'!\n", libname);
  303. #endif
  304. return NULL;
  305. }
  306. /*
  307. * Read one ELF library into memory, mmap it into the correct locations and
  308. * add the symbol info to the symbol chain. Perform any relocations that
  309. * are required.
  310. */
  311. struct elf_resolve *_dl_load_elf_shared_library(int secure,
  312. struct dyn_elf **rpnt, char *libname)
  313. {
  314. ElfW(Ehdr) *epnt;
  315. unsigned long dynamic_addr = 0;
  316. unsigned long dynamic_size = 0;
  317. Elf32_Dyn *dpnt;
  318. struct elf_resolve *tpnt;
  319. ElfW(Phdr) *ppnt;
  320. char *status;
  321. char header[4096];
  322. unsigned long dynamic_info[24];
  323. unsigned long *lpnt;
  324. unsigned long libaddr;
  325. unsigned long minvma = 0xffffffff, maxvma = 0;
  326. int i, flags, piclib, infile;
  327. /* If this file is already loaded, skip this step */
  328. tpnt = _dl_check_hashed_files(libname);
  329. if (tpnt) {
  330. if (*rpnt) {
  331. (*rpnt)->next = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  332. _dl_memset((*rpnt)->next, 0, sizeof(struct dyn_elf));
  333. (*rpnt)->next->prev = (*rpnt);
  334. *rpnt = (*rpnt)->next;
  335. (*rpnt)->dyn = tpnt;
  336. tpnt->symbol_scope = _dl_symbol_tables;
  337. }
  338. tpnt->usage_count++;
  339. tpnt->libtype = elf_lib;
  340. return tpnt;
  341. }
  342. /* If we are in secure mode (i.e. a setu/gid binary using LD_PRELOAD),
  343. we don't load the library if it isn't setuid. */
  344. if (secure) {
  345. struct stat st;
  346. if (_dl_stat(libname, &st) || !(st.st_mode & S_ISUID))
  347. return NULL;
  348. }
  349. libaddr = 0;
  350. infile = _dl_open(libname, O_RDONLY);
  351. if (infile < 0) {
  352. #if 0
  353. /*
  354. * NO! When we open shared libraries we may search several paths.
  355. * it is inappropriate to generate an error here.
  356. */
  357. _dl_dprintf(2, "%s: can't open '%s'\n", _dl_progname, libname);
  358. #endif
  359. _dl_internal_error_number = LD_ERROR_NOFILE;
  360. return NULL;
  361. }
  362. _dl_read(infile, header, sizeof(header));
  363. epnt = (ElfW(Ehdr) *) (intptr_t) header;
  364. if (epnt->e_ident[0] != 0x7f ||
  365. epnt->e_ident[1] != 'E' ||
  366. epnt->e_ident[2] != 'L' ||
  367. epnt->e_ident[3] != 'F')
  368. {
  369. _dl_dprintf(2, "%s: '%s' is not an ELF file\n", _dl_progname,
  370. libname);
  371. _dl_internal_error_number = LD_ERROR_NOTELF;
  372. _dl_close(infile);
  373. return NULL;
  374. };
  375. if ((epnt->e_type != ET_DYN) || (epnt->e_machine != MAGIC1
  376. #ifdef MAGIC2
  377. && epnt->e_machine != MAGIC2
  378. #endif
  379. ))
  380. {
  381. _dl_internal_error_number =
  382. (epnt->e_type != ET_DYN ? LD_ERROR_NOTDYN : LD_ERROR_NOTMAGIC);
  383. _dl_dprintf(2, "%s: '%s' is not an ELF executable for " ELF_TARGET
  384. "\n", _dl_progname, libname);
  385. _dl_close(infile);
  386. return NULL;
  387. };
  388. ppnt = (ElfW(Phdr) *)(intptr_t) & header[epnt->e_phoff];
  389. piclib = 1;
  390. for (i = 0; i < epnt->e_phnum; i++) {
  391. if (ppnt->p_type == PT_DYNAMIC) {
  392. if (dynamic_addr)
  393. _dl_dprintf(2, "%s: '%s' has more than one dynamic section\n",
  394. _dl_progname, libname);
  395. dynamic_addr = ppnt->p_vaddr;
  396. dynamic_size = ppnt->p_filesz;
  397. };
  398. if (ppnt->p_type == PT_LOAD) {
  399. /* See if this is a PIC library. */
  400. if (i == 0 && ppnt->p_vaddr > 0x1000000) {
  401. piclib = 0;
  402. minvma = ppnt->p_vaddr;
  403. }
  404. if (piclib && ppnt->p_vaddr < minvma) {
  405. minvma = ppnt->p_vaddr;
  406. }
  407. if (((unsigned long) ppnt->p_vaddr + ppnt->p_memsz) > maxvma) {
  408. maxvma = ppnt->p_vaddr + ppnt->p_memsz;
  409. }
  410. }
  411. ppnt++;
  412. };
  413. maxvma = (maxvma + ADDR_ALIGN) & ~ADDR_ALIGN;
  414. minvma = minvma & ~0xffffU;
  415. flags = MAP_PRIVATE /*| MAP_DENYWRITE */ ;
  416. if (!piclib)
  417. flags |= MAP_FIXED;
  418. status = (char *) _dl_mmap((char *) (piclib ? 0 : minvma),
  419. maxvma - minvma, PROT_NONE, flags | MAP_ANONYMOUS, -1, 0);
  420. if (_dl_mmap_check_error(status)) {
  421. _dl_dprintf(2, "%s: can't map %s\n", _dl_progname, libname);
  422. _dl_internal_error_number = LD_ERROR_MMAP_FAILED;
  423. _dl_close(infile);
  424. return NULL;
  425. };
  426. libaddr = (unsigned long) status;
  427. flags |= MAP_FIXED;
  428. /* Get the memory to store the library */
  429. ppnt = (ElfW(Phdr) *)(intptr_t) & header[epnt->e_phoff];
  430. for (i = 0; i < epnt->e_phnum; i++) {
  431. if (ppnt->p_type == PT_LOAD) {
  432. /* See if this is a PIC library. */
  433. if (i == 0 && ppnt->p_vaddr > 0x1000000) {
  434. piclib = 0;
  435. /* flags |= MAP_FIXED; */
  436. }
  437. if (ppnt->p_flags & PF_W) {
  438. unsigned long map_size;
  439. char *cpnt;
  440. status = (char *) _dl_mmap((char *) ((piclib ? libaddr : 0) +
  441. (ppnt->p_vaddr & PAGE_ALIGN)), (ppnt->p_vaddr & ADDR_ALIGN)
  442. + ppnt->p_filesz, LXFLAGS(ppnt->p_flags), flags, infile,
  443. ppnt->p_offset & OFFS_ALIGN);
  444. if (_dl_mmap_check_error(status)) {
  445. _dl_dprintf(2, "%s: can't map '%s'\n",
  446. _dl_progname, libname);
  447. _dl_internal_error_number = LD_ERROR_MMAP_FAILED;
  448. _dl_munmap((char *) libaddr, maxvma - minvma);
  449. _dl_close(infile);
  450. return NULL;
  451. };
  452. /* Pad the last page with zeroes. */
  453. cpnt = (char *) (status + (ppnt->p_vaddr & ADDR_ALIGN) +
  454. ppnt->p_filesz);
  455. while (((unsigned long) cpnt) & ADDR_ALIGN)
  456. *cpnt++ = 0;
  457. /* I am not quite sure if this is completely
  458. * correct to do or not, but the basic way that
  459. * we handle bss segments is that we mmap
  460. * /dev/zero if there are any pages left over
  461. * that are not mapped as part of the file */
  462. map_size = (ppnt->p_vaddr + ppnt->p_filesz + ADDR_ALIGN) & PAGE_ALIGN;
  463. if (map_size < ppnt->p_vaddr + ppnt->p_memsz)
  464. status = (char *) _dl_mmap((char *) map_size +
  465. (piclib ? libaddr : 0),
  466. ppnt->p_vaddr + ppnt->p_memsz - map_size,
  467. LXFLAGS(ppnt->p_flags), flags | MAP_ANONYMOUS, -1, 0);
  468. } else
  469. status = (char *) _dl_mmap((char *) (ppnt->p_vaddr & PAGE_ALIGN)
  470. + (piclib ? libaddr : 0), (ppnt->p_vaddr & ADDR_ALIGN) +
  471. ppnt->p_filesz, LXFLAGS(ppnt->p_flags), flags,
  472. infile, ppnt->p_offset & OFFS_ALIGN);
  473. if (_dl_mmap_check_error(status)) {
  474. _dl_dprintf(2, "%s: can't map '%s'\n", _dl_progname, libname);
  475. _dl_internal_error_number = LD_ERROR_MMAP_FAILED;
  476. _dl_munmap((char *) libaddr, maxvma - minvma);
  477. _dl_close(infile);
  478. return NULL;
  479. };
  480. /* if(libaddr == 0 && piclib) {
  481. libaddr = (unsigned long) status;
  482. flags |= MAP_FIXED;
  483. }; */
  484. };
  485. ppnt++;
  486. };
  487. _dl_close(infile);
  488. /* For a non-PIC library, the addresses are all absolute */
  489. if (piclib) {
  490. dynamic_addr += (unsigned long) libaddr;
  491. }
  492. /*
  493. * OK, the ELF library is now loaded into VM in the correct locations
  494. * The next step is to go through and do the dynamic linking (if needed).
  495. */
  496. /* Start by scanning the dynamic section to get all of the pointers */
  497. if (!dynamic_addr) {
  498. _dl_internal_error_number = LD_ERROR_NODYNAMIC;
  499. _dl_dprintf(2, "%s: '%s' is missing a dynamic section\n",
  500. _dl_progname, libname);
  501. return NULL;
  502. }
  503. dpnt = (Elf32_Dyn *) dynamic_addr;
  504. dynamic_size = dynamic_size / sizeof(Elf32_Dyn);
  505. _dl_memset(dynamic_info, 0, sizeof(dynamic_info));
  506. #if defined(__mips__)
  507. {
  508. int indx = 1;
  509. Elf32_Dyn *dpnt = (Elf32_Dyn *) dynamic_addr;
  510. while(dpnt->d_tag) {
  511. dpnt++;
  512. indx++;
  513. }
  514. dynamic_size = indx;
  515. }
  516. #endif
  517. {
  518. unsigned long indx;
  519. for (indx = 0; indx < dynamic_size; indx++)
  520. {
  521. if (dpnt->d_tag > DT_JMPREL) {
  522. dpnt++;
  523. continue;
  524. }
  525. dynamic_info[dpnt->d_tag] = dpnt->d_un.d_val;
  526. if (dpnt->d_tag == DT_TEXTREL)
  527. dynamic_info[DT_TEXTREL] = 1;
  528. dpnt++;
  529. };
  530. }
  531. /* If the TEXTREL is set, this means that we need to make the pages
  532. writable before we perform relocations. Do this now. They get set
  533. back again later. */
  534. if (dynamic_info[DT_TEXTREL]) {
  535. #ifndef FORCE_SHAREABLE_TEXT_SEGMENTS
  536. ppnt = (ElfW(Phdr) *)(intptr_t) & header[epnt->e_phoff];
  537. for (i = 0; i < epnt->e_phnum; i++, ppnt++) {
  538. if (ppnt->p_type == PT_LOAD && !(ppnt->p_flags & PF_W))
  539. _dl_mprotect((void *) ((piclib ? libaddr : 0) +
  540. (ppnt->p_vaddr & PAGE_ALIGN)),
  541. (ppnt->p_vaddr & ADDR_ALIGN) + (unsigned long) ppnt->p_filesz,
  542. PROT_READ | PROT_WRITE | PROT_EXEC);
  543. }
  544. #else
  545. _dl_dprintf(_dl_debug_file, "Can't modify %s's text section. Use GCC option -fPIC for shared objects, please.\n",libname);
  546. _dl_exit(1);
  547. #endif
  548. }
  549. tpnt = _dl_add_elf_hash_table(libname, (char *) libaddr, dynamic_info,
  550. dynamic_addr, dynamic_size);
  551. tpnt->ppnt = (ElfW(Phdr) *)(intptr_t) (tpnt->loadaddr + epnt->e_phoff);
  552. tpnt->n_phent = epnt->e_phnum;
  553. /*
  554. * Add this object into the symbol chain
  555. */
  556. if (*rpnt) {
  557. (*rpnt)->next = (struct dyn_elf *) _dl_malloc(sizeof(struct dyn_elf));
  558. _dl_memset((*rpnt)->next, 0, sizeof(struct dyn_elf));
  559. (*rpnt)->next->prev = (*rpnt);
  560. *rpnt = (*rpnt)->next;
  561. (*rpnt)->dyn = tpnt;
  562. tpnt->symbol_scope = _dl_symbol_tables;
  563. }
  564. tpnt->usage_count++;
  565. tpnt->libtype = elf_lib;
  566. /*
  567. * OK, the next thing we need to do is to insert the dynamic linker into
  568. * the proper entry in the GOT so that the PLT symbols can be properly
  569. * resolved.
  570. */
  571. lpnt = (unsigned long *) dynamic_info[DT_PLTGOT];
  572. if (lpnt) {
  573. lpnt = (unsigned long *) (dynamic_info[DT_PLTGOT] +
  574. ((int) libaddr));
  575. INIT_GOT(lpnt, tpnt);
  576. };
  577. return tpnt;
  578. }
  579. /* Ugly, ugly. Some versions of the SVr4 linker fail to generate COPY
  580. relocations for global variables that are present both in the image and
  581. the shared library. Go through and do it manually. If the images
  582. are guaranteed to be generated by a trustworthy linker, then this
  583. step can be skipped. */
  584. int _dl_copy_fixups(struct dyn_elf *rpnt)
  585. {
  586. int goof = 0;
  587. struct elf_resolve *tpnt;
  588. if (rpnt->next)
  589. goof += _dl_copy_fixups(rpnt->next);
  590. else
  591. return 0;
  592. tpnt = rpnt->dyn;
  593. if (tpnt->init_flag & COPY_RELOCS_DONE)
  594. return goof;
  595. tpnt->init_flag |= COPY_RELOCS_DONE;
  596. #if defined (__SUPPORT_LD_DEBUG__)
  597. if(_dl_debug) _dl_dprintf(_dl_debug_file,"\nrelocation copy fixups: %s", tpnt->libname);
  598. #endif
  599. #ifdef ELF_USES_RELOCA
  600. goof += _dl_parse_copy_information(rpnt,
  601. tpnt->dynamic_info[DT_RELA], tpnt->dynamic_info[DT_RELASZ], 0);
  602. #else
  603. goof += _dl_parse_copy_information(rpnt, tpnt->dynamic_info[DT_REL],
  604. tpnt->dynamic_info[DT_RELSZ], 0);
  605. #endif
  606. #if defined (__SUPPORT_LD_DEBUG__)
  607. if(_dl_debug) _dl_dprintf(_dl_debug_file,"\nrelocation copy fixups: %s; finished\n\n", tpnt->libname);
  608. #endif
  609. return goof;
  610. }
  611. /* Minimal printf which handles only %s, %d, and %x */
  612. void _dl_dprintf(int fd, const char *fmt, ...)
  613. {
  614. int num;
  615. va_list args;
  616. char *start, *ptr, *string;
  617. char buf[2048];
  618. start = ptr = buf;
  619. if (!fmt)
  620. return;
  621. if (_dl_strlen(fmt) >= (sizeof(buf) - 1))
  622. _dl_write(fd, "(overflow)\n", 10);
  623. _dl_strcpy(buf, fmt);
  624. va_start(args, fmt);
  625. while (start) {
  626. while (*ptr != '%' && *ptr) {
  627. ptr++;
  628. }
  629. if (*ptr == '%') {
  630. *ptr++ = '\0';
  631. _dl_write(fd, start, _dl_strlen(start));
  632. switch (*ptr++) {
  633. case 's':
  634. string = va_arg(args, char *);
  635. if (!string)
  636. _dl_write(fd, "(null)", 6);
  637. else
  638. _dl_write(fd, string, _dl_strlen(string));
  639. break;
  640. case 'i':
  641. case 'd':
  642. {
  643. char tmp[22];
  644. num = va_arg(args, int);
  645. string = _dl_simple_ltoa(tmp, num);
  646. _dl_write(fd, string, _dl_strlen(string));
  647. break;
  648. }
  649. case 'x':
  650. case 'X':
  651. {
  652. char tmp[22];
  653. num = va_arg(args, int);
  654. string = _dl_simple_ltoahex(tmp, num);
  655. _dl_write(fd, string, _dl_strlen(string));
  656. break;
  657. }
  658. default:
  659. _dl_write(fd, "(null)", 6);
  660. break;
  661. }
  662. start = ptr;
  663. } else {
  664. _dl_write(fd, start, _dl_strlen(start));
  665. start = NULL;
  666. }
  667. }
  668. return;
  669. }
  670. char *_dl_strdup(const char *string)
  671. {
  672. char *retval;
  673. int len;
  674. len = _dl_strlen(string);
  675. retval = _dl_malloc(len + 1);
  676. _dl_strcpy(retval, string);
  677. return retval;
  678. }
  679. void *(*_dl_malloc_function) (size_t size) = NULL;
  680. void *_dl_malloc(int size)
  681. {
  682. void *retval;
  683. #if 0
  684. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  685. _dl_dprintf(_dl_debug_file, "malloc: request for %d bytes\n", size);
  686. #endif
  687. #endif
  688. if (_dl_malloc_function)
  689. return (*_dl_malloc_function) (size);
  690. if (_dl_malloc_addr - _dl_mmap_zero + size > 4096) {
  691. #ifdef __SUPPORT_LD_DEBUG_EARLY__
  692. _dl_dprintf(_dl_debug_file, "malloc: mmapping more memory\n");
  693. #endif
  694. _dl_mmap_zero = _dl_malloc_addr = _dl_mmap((void *) 0, size,
  695. PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, 0, 0);
  696. if (_dl_mmap_check_error(_dl_mmap_zero)) {
  697. _dl_dprintf(2, "%s: mmap of a spare page failed!\n", _dl_progname);
  698. _dl_exit(20);
  699. }
  700. }
  701. retval = _dl_malloc_addr;
  702. _dl_malloc_addr += size;
  703. /*
  704. * Align memory to 4 byte boundary. Some platforms require this, others
  705. * simply get better performance.
  706. */
  707. _dl_malloc_addr = (char *) (((unsigned long) _dl_malloc_addr + 3) & ~(3));
  708. return retval;
  709. }