elfinterp.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. /* vi: set sw=4 ts=4: */
  2. /* m68k ELF shared library loader suppport
  3. *
  4. * Copyright (c) 1994-2000 Eric Youngdale, Peter MacDonald,
  5. * David Engel, Hongjiu Lu and Mitch D'Souza
  6. * Adapted to ELF/68k by Andreas Schwab.
  7. *
  8. * All rights reserved.
  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. /* Program to load an ELF binary on a linux system, and run it.
  32. References to symbols in sharable libraries can be resolved by either
  33. an ELF sharable library or a linux style of shared library. */
  34. /* Disclaimer: I have never seen any AT&T source code for SVr4, nor have
  35. I ever taken any courses on internals. This program was developed using
  36. information available through the book "UNIX SYSTEM V RELEASE 4,
  37. Programmers guide: Ansi C and Programming Support Tools", which did
  38. a more than adequate job of explaining everything required to get this
  39. working. */
  40. #include "ldso.h"
  41. extern int _dl_linux_resolve(void);
  42. unsigned long
  43. _dl_linux_resolver(struct elf_resolve *tpnt, int reloc_entry)
  44. {
  45. int reloc_type;
  46. ELF_RELOC *this_reloc;
  47. char *strtab;
  48. ElfW(Sym) *symtab;
  49. int symtab_index;
  50. char *rel_addr;
  51. char *new_addr;
  52. char **got_addr;
  53. ElfW(Addr) instr_addr;
  54. char *symname;
  55. rel_addr = (char *)tpnt->dynamic_info[DT_JMPREL];
  56. this_reloc = (ELF_RELOC *)(rel_addr + reloc_entry);
  57. reloc_type = ELF_R_TYPE(this_reloc->r_info);
  58. symtab_index = ELF_R_SYM(this_reloc->r_info);
  59. symtab = (ElfW(Sym) *)tpnt->dynamic_info[DT_SYMTAB];
  60. strtab = (char *)tpnt->dynamic_info[DT_STRTAB];
  61. symname = strtab + symtab[symtab_index].st_name;
  62. if (unlikely(reloc_type != R_68K_JMP_SLOT)) {
  63. _dl_dprintf(2, "%s: Incorrect relocation type in jump relocations\n",
  64. _dl_progname);
  65. _dl_exit(1);
  66. }
  67. /* Address of the jump instruction to fix up. */
  68. instr_addr = (this_reloc->r_offset + tpnt->loadaddr);
  69. got_addr = (char **)instr_addr;
  70. /* Get the address of the GOT entry. */
  71. new_addr = _dl_find_hash(symname, tpnt->symbol_scope, tpnt, ELF_RTYPE_CLASS_PLT);
  72. if (unlikely(!new_addr)) {
  73. _dl_dprintf(2, "%s: Can't resolve symbol '%s'\n", _dl_progname, symname);
  74. _dl_exit(1);
  75. }
  76. #if defined (__SUPPORT_LD_DEBUG__)
  77. if ((unsigned long)got_addr < 0x40000000) {
  78. if (_dl_debug_bindings) {
  79. _dl_dprintf(_dl_debug_file, "\nresolve function: %s", symname);
  80. if (_dl_debug_detail)
  81. _dl_dprintf(_dl_debug_file,
  82. "\tpatched: %x ==> %x @ %x\n",
  83. *got_addr, new_addr, got_addr);
  84. }
  85. }
  86. if (!_dl_debug_nofixups)
  87. #endif
  88. *got_addr = new_addr;
  89. return (unsigned int)new_addr;
  90. }
  91. static int
  92. _dl_parse(struct elf_resolve *tpnt, struct dyn_elf *scope,
  93. unsigned long rel_addr, unsigned long rel_size,
  94. int (*reloc_fnc)(struct elf_resolve *tpnt, struct dyn_elf *scope,
  95. ELF_RELOC *rpnt, ElfW(Sym) *symtab, char *strtab))
  96. {
  97. unsigned int i;
  98. char *strtab;
  99. ElfW(Sym) *symtab;
  100. ELF_RELOC *rpnt;
  101. int symtab_index;
  102. /* Parse the relocation information. */
  103. rpnt = (ELF_RELOC *)rel_addr;
  104. rel_size /= sizeof(ELF_RELOC);
  105. symtab = (ElfW(Sym) *)tpnt->dynamic_info[DT_SYMTAB];
  106. strtab = (char *)tpnt->dynamic_info[DT_STRTAB];
  107. for (i = 0; i < rel_size; i++, rpnt++) {
  108. int res;
  109. symtab_index = ELF_R_SYM(rpnt->r_info);
  110. debug_sym(symtab, strtab, symtab_index);
  111. debug_reloc(symtab, strtab, rpnt);
  112. res = reloc_fnc(tpnt, scope, rpnt, symtab, strtab);
  113. if (res == 0)
  114. continue;
  115. _dl_dprintf(2, "\n%s: ", _dl_progname);
  116. if (symtab_index)
  117. _dl_dprintf(2, "symbol '%s': ",
  118. strtab + symtab[symtab_index].st_name);
  119. if (unlikely(res < 0)) {
  120. int reloc_type = ELF_R_TYPE(rpnt->r_info);
  121. _dl_dprintf(2, "can't handle reloc type "
  122. #if defined (__SUPPORT_LD_DEBUG__)
  123. "%s\n", _dl_reltypes(reloc_type));
  124. #else
  125. "%x\n", reloc_type);
  126. #endif
  127. _dl_exit(-res);
  128. } else if (unlikely(res > 0)) {
  129. _dl_dprintf(2, "can't resolve symbol\n");
  130. return res;
  131. }
  132. }
  133. return 0;
  134. }
  135. static int
  136. _dl_do_reloc(struct elf_resolve *tpnt, struct dyn_elf *scope,
  137. ELF_RELOC *rpnt, ElfW(Sym) *symtab, char *strtab)
  138. {
  139. int reloc_type;
  140. int symtab_index;
  141. char *symname;
  142. ElfW(Sym) *sym;
  143. ElfW(Addr) *reloc_addr;
  144. ElfW(Addr) symbol_addr;
  145. #if defined (__SUPPORT_LD_DEBUG__)
  146. ElfW(Addr) old_val;
  147. #endif
  148. reloc_addr = (ElfW(Addr)*)(tpnt->loadaddr + (unsigned long)rpnt->r_offset);
  149. reloc_type = ELF_R_TYPE(rpnt->r_info);
  150. symtab_index = ELF_R_SYM(rpnt->r_info);
  151. sym = &symtab[symtab_index];
  152. symbol_addr = 0;
  153. symname = strtab + sym->st_name;
  154. if (symtab_index) {
  155. symbol_addr = (ElfW(Addr))_dl_find_hash(symname, scope, tpnt,
  156. elf_machine_type_class(reloc_type));
  157. /*
  158. * We want to allow undefined references to weak symbols - this
  159. * might have been intentional. We should not be linking local
  160. * symbols here, so all bases should be covered.
  161. */
  162. if (unlikely(!symbol_addr && ELF_ST_BIND(sym->st_info) != STB_WEAK)) {
  163. _dl_dprintf(2, "%s: can't resolve symbol '%s'\n", _dl_progname, symname);
  164. _dl_exit(1);
  165. }
  166. }
  167. #if defined (__SUPPORT_LD_DEBUG__)
  168. old_val = *reloc_addr;
  169. #endif
  170. switch (reloc_type) {
  171. case R_68K_NONE:
  172. break;
  173. case R_68K_8:
  174. *(char *) reloc_addr = symbol_addr + rpnt->r_addend;
  175. break;
  176. case R_68K_16:
  177. *(short *) reloc_addr = symbol_addr + rpnt->r_addend;
  178. break;
  179. case R_68K_32:
  180. *reloc_addr = symbol_addr + rpnt->r_addend;
  181. break;
  182. case R_68K_PC8:
  183. *(char *) reloc_addr = (symbol_addr + rpnt->r_addend
  184. - (unsigned int) reloc_addr);
  185. break;
  186. case R_68K_PC16:
  187. *(short *) reloc_addr = (symbol_addr + rpnt->r_addend
  188. - (unsigned int) reloc_addr);
  189. break;
  190. case R_68K_PC32:
  191. *reloc_addr = (symbol_addr + rpnt->r_addend
  192. - (unsigned int) reloc_addr);
  193. break;
  194. case R_68K_GLOB_DAT:
  195. case R_68K_JMP_SLOT:
  196. *reloc_addr = symbol_addr + rpnt->r_addend;
  197. break;
  198. /* handled by elf_machine_relative()
  199. case R_68K_RELATIVE:
  200. *reloc_addr = ((unsigned int) tpnt->loadaddr
  201. / * Compatibility kludge. * /
  202. + (rpnt->r_addend ? : *reloc_addr));
  203. */
  204. break;
  205. case R_68K_COPY:
  206. if (symbol_addr) {
  207. #if defined (__SUPPORT_LD_DEBUG__)
  208. if (_dl_debug_move)
  209. _dl_dprintf(_dl_debug_file,
  210. "\t%s move %d bytes from %x to %x\n",
  211. symname, sym->st_size,
  212. symbol_addr, reloc_addr);
  213. #endif
  214. _dl_memcpy ((void *) reloc_addr,
  215. (void *) symbol_addr,
  216. sym->st_size);
  217. } else
  218. _dl_dprintf(_dl_debug_file, "no symbol_addr to copy !?\n");
  219. break;
  220. default:
  221. return -1; /* Calls _dl_exit(1). */
  222. }
  223. #if defined (__SUPPORT_LD_DEBUG__)
  224. if (_dl_debug_reloc && _dl_debug_detail)
  225. _dl_dprintf(_dl_debug_file, "\tpatched: %x ==> %x @ %x\n",
  226. old_val, *reloc_addr, reloc_addr);
  227. #endif
  228. return 0;
  229. }
  230. #undef LAZY_RELOC_WORKS
  231. #ifdef LAZY_RELOC_WORKS
  232. static int
  233. _dl_do_lazy_reloc(struct elf_resolve *tpnt, struct dyn_elf *scope,
  234. ELF_RELOC *rpnt, ElfW(Sym) *symtab, char *strtab)
  235. {
  236. int reloc_type;
  237. int symtab_index;
  238. ElfW(Addr) *reloc_addr;
  239. #if defined (__SUPPORT_LD_DEBUG__)
  240. ElfW(Addr) old_val;
  241. #endif
  242. (void)scope;
  243. symtab_index = ELF_R_SYM(rpnt->r_info);
  244. (void)strtab;
  245. reloc_addr = (ElfW(Addr)*)(tpnt->loadaddr + rpnt->r_offset);
  246. reloc_type = ELF_R_TYPE(rpnt->r_info);
  247. #if defined (__SUPPORT_LD_DEBUG__)
  248. old_val = *reloc_addr;
  249. #endif
  250. switch (reloc_type) {
  251. case R_68K_NONE:
  252. break;
  253. case R_68K_JMP_SLOT:
  254. *reloc_addr += (unsigned int) tpnt->loadaddr;
  255. break;
  256. default:
  257. _dl_exit(1);
  258. }
  259. #if defined (__SUPPORT_LD_DEBUG__)
  260. if (_dl_debug_reloc && _dl_debug_detail)
  261. _dl_dprintf(_dl_debug_file, "\tpatched_lazy: %x ==> %x @ %x\n",
  262. old_val, *reloc_addr, reloc_addr);
  263. #endif
  264. return 0;
  265. }
  266. #endif
  267. void
  268. _dl_parse_lazy_relocation_information(struct dyn_elf *rpnt,
  269. unsigned long rel_addr,
  270. unsigned long rel_size)
  271. {
  272. #ifdef LAZY_RELOC_WORKS
  273. (void)_dl_parse(rpnt->dyn, NULL, rel_addr, rel_size, _dl_do_lazy_reloc);
  274. #else
  275. _dl_parse_relocation_information(rpnt, rel_addr, rel_size);
  276. #endif
  277. }
  278. int
  279. _dl_parse_relocation_information(struct dyn_elf *rpnt,
  280. unsigned long rel_addr,
  281. unsigned long rel_size)
  282. {
  283. return _dl_parse(rpnt->dyn, rpnt->dyn->symbol_scope, rel_addr, rel_size, _dl_do_reloc);
  284. }