readelflib1.c 21 KB

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