module.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /*
  2. * linux/arch/arm/kernel/module.c
  3. *
  4. * Copyright (C) 2002 Russell King.
  5. * Modified for nommu by Hyok S. Choi
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * Module allocation method suggested by Andi Kleen.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/moduleloader.h>
  15. #include <linux/kernel.h>
  16. #include <linux/mm.h>
  17. #include <linux/elf.h>
  18. #include <linux/vmalloc.h>
  19. #include <linux/fs.h>
  20. #include <linux/string.h>
  21. #include <linux/gfp.h>
  22. #include <asm/pgtable.h>
  23. #include <asm/sections.h>
  24. #include <asm/smp_plat.h>
  25. #include <asm/unwind.h>
  26. #ifdef CONFIG_XIP_KERNEL
  27. /*
  28. * The XIP kernel text is mapped in the module area for modules and
  29. * some other stuff to work without any indirect relocations.
  30. * MODULES_VADDR is redefined here and not in asm/memory.h to avoid
  31. * recompiling the whole kernel when CONFIG_XIP_KERNEL is turned on/off.
  32. */
  33. #undef MODULES_VADDR
  34. #define MODULES_VADDR (((unsigned long)_etext + ~PGDIR_MASK) & PGDIR_MASK)
  35. #endif
  36. #ifdef CONFIG_MMU
  37. void *module_alloc(unsigned long size)
  38. {
  39. return __vmalloc_node_range(size, 1, MODULES_VADDR, MODULES_END,
  40. GFP_KERNEL, PAGE_KERNEL_EXEC, -1,
  41. __builtin_return_address(0));
  42. }
  43. #else /* CONFIG_MMU */
  44. void *module_alloc(unsigned long size)
  45. {
  46. return size == 0 ? NULL : vmalloc(size);
  47. }
  48. #endif /* !CONFIG_MMU */
  49. void module_free(struct module *module, void *region)
  50. {
  51. vfree(region);
  52. }
  53. int module_frob_arch_sections(Elf_Ehdr *hdr,
  54. Elf_Shdr *sechdrs,
  55. char *secstrings,
  56. struct module *mod)
  57. {
  58. return 0;
  59. }
  60. int
  61. apply_relocate(Elf32_Shdr *sechdrs, const char *strtab, unsigned int symindex,
  62. unsigned int relindex, struct module *module)
  63. {
  64. Elf32_Shdr *symsec = sechdrs + symindex;
  65. Elf32_Shdr *relsec = sechdrs + relindex;
  66. Elf32_Shdr *dstsec = sechdrs + relsec->sh_info;
  67. Elf32_Rel *rel = (void *)relsec->sh_addr;
  68. unsigned int i;
  69. for (i = 0; i < relsec->sh_size / sizeof(Elf32_Rel); i++, rel++) {
  70. unsigned long loc;
  71. Elf32_Sym *sym;
  72. const char *symname;
  73. s32 offset;
  74. #ifdef CONFIG_THUMB2_KERNEL
  75. u32 upper, lower, sign, j1, j2;
  76. #endif
  77. offset = ELF32_R_SYM(rel->r_info);
  78. if (offset < 0 || offset > (symsec->sh_size / sizeof(Elf32_Sym))) {
  79. pr_err("%s: section %u reloc %u: bad relocation sym offset\n",
  80. module->name, relindex, i);
  81. return -ENOEXEC;
  82. }
  83. sym = ((Elf32_Sym *)symsec->sh_addr) + offset;
  84. symname = strtab + sym->st_name;
  85. if (rel->r_offset < 0 || rel->r_offset > dstsec->sh_size - sizeof(u32)) {
  86. pr_err("%s: section %u reloc %u sym '%s': out of bounds relocation, offset %d size %u\n",
  87. module->name, relindex, i, symname,
  88. rel->r_offset, dstsec->sh_size);
  89. return -ENOEXEC;
  90. }
  91. loc = dstsec->sh_addr + rel->r_offset;
  92. switch (ELF32_R_TYPE(rel->r_info)) {
  93. case R_ARM_NONE:
  94. /* ignore */
  95. break;
  96. case R_ARM_ABS32:
  97. *(u32 *)loc += sym->st_value;
  98. break;
  99. case R_ARM_PC24:
  100. case R_ARM_CALL:
  101. case R_ARM_JUMP24:
  102. offset = (*(u32 *)loc & 0x00ffffff) << 2;
  103. if (offset & 0x02000000)
  104. offset -= 0x04000000;
  105. offset += sym->st_value - loc;
  106. if (offset & 3 ||
  107. offset <= (s32)0xfe000000 ||
  108. offset >= (s32)0x02000000) {
  109. pr_err("%s: section %u reloc %u sym '%s': relocation %u out of range (%#lx -> %#x)\n",
  110. module->name, relindex, i, symname,
  111. ELF32_R_TYPE(rel->r_info), loc,
  112. sym->st_value);
  113. return -ENOEXEC;
  114. }
  115. offset >>= 2;
  116. *(u32 *)loc &= 0xff000000;
  117. *(u32 *)loc |= offset & 0x00ffffff;
  118. break;
  119. case R_ARM_V4BX:
  120. /* Preserve Rm and the condition code. Alter
  121. * other bits to re-code instruction as
  122. * MOV PC,Rm.
  123. */
  124. *(u32 *)loc &= 0xf000000f;
  125. *(u32 *)loc |= 0x01a0f000;
  126. break;
  127. case R_ARM_PREL31:
  128. offset = *(u32 *)loc + sym->st_value - loc;
  129. *(u32 *)loc = offset & 0x7fffffff;
  130. break;
  131. case R_ARM_MOVW_ABS_NC:
  132. case R_ARM_MOVT_ABS:
  133. offset = *(u32 *)loc;
  134. offset = ((offset & 0xf0000) >> 4) | (offset & 0xfff);
  135. offset = (offset ^ 0x8000) - 0x8000;
  136. offset += sym->st_value;
  137. if (ELF32_R_TYPE(rel->r_info) == R_ARM_MOVT_ABS)
  138. offset >>= 16;
  139. *(u32 *)loc &= 0xfff0f000;
  140. *(u32 *)loc |= ((offset & 0xf000) << 4) |
  141. (offset & 0x0fff);
  142. break;
  143. #ifdef CONFIG_THUMB2_KERNEL
  144. case R_ARM_THM_CALL:
  145. case R_ARM_THM_JUMP24:
  146. upper = *(u16 *)loc;
  147. lower = *(u16 *)(loc + 2);
  148. /*
  149. * 25 bit signed address range (Thumb-2 BL and B.W
  150. * instructions):
  151. * S:I1:I2:imm10:imm11:0
  152. * where:
  153. * S = upper[10] = offset[24]
  154. * I1 = ~(J1 ^ S) = offset[23]
  155. * I2 = ~(J2 ^ S) = offset[22]
  156. * imm10 = upper[9:0] = offset[21:12]
  157. * imm11 = lower[10:0] = offset[11:1]
  158. * J1 = lower[13]
  159. * J2 = lower[11]
  160. */
  161. sign = (upper >> 10) & 1;
  162. j1 = (lower >> 13) & 1;
  163. j2 = (lower >> 11) & 1;
  164. offset = (sign << 24) | ((~(j1 ^ sign) & 1) << 23) |
  165. ((~(j2 ^ sign) & 1) << 22) |
  166. ((upper & 0x03ff) << 12) |
  167. ((lower & 0x07ff) << 1);
  168. if (offset & 0x01000000)
  169. offset -= 0x02000000;
  170. offset += sym->st_value - loc;
  171. /* only Thumb addresses allowed (no interworking) */
  172. if (!(offset & 1) ||
  173. offset <= (s32)0xff000000 ||
  174. offset >= (s32)0x01000000) {
  175. pr_err("%s: section %u reloc %u sym '%s': relocation %u out of range (%#lx -> %#x)\n",
  176. module->name, relindex, i, symname,
  177. ELF32_R_TYPE(rel->r_info), loc,
  178. sym->st_value);
  179. return -ENOEXEC;
  180. }
  181. sign = (offset >> 24) & 1;
  182. j1 = sign ^ (~(offset >> 23) & 1);
  183. j2 = sign ^ (~(offset >> 22) & 1);
  184. *(u16 *)loc = (u16)((upper & 0xf800) | (sign << 10) |
  185. ((offset >> 12) & 0x03ff));
  186. *(u16 *)(loc + 2) = (u16)((lower & 0xd000) |
  187. (j1 << 13) | (j2 << 11) |
  188. ((offset >> 1) & 0x07ff));
  189. break;
  190. case R_ARM_THM_MOVW_ABS_NC:
  191. case R_ARM_THM_MOVT_ABS:
  192. upper = *(u16 *)loc;
  193. lower = *(u16 *)(loc + 2);
  194. /*
  195. * MOVT/MOVW instructions encoding in Thumb-2:
  196. *
  197. * i = upper[10]
  198. * imm4 = upper[3:0]
  199. * imm3 = lower[14:12]
  200. * imm8 = lower[7:0]
  201. *
  202. * imm16 = imm4:i:imm3:imm8
  203. */
  204. offset = ((upper & 0x000f) << 12) |
  205. ((upper & 0x0400) << 1) |
  206. ((lower & 0x7000) >> 4) | (lower & 0x00ff);
  207. offset = (offset ^ 0x8000) - 0x8000;
  208. offset += sym->st_value;
  209. if (ELF32_R_TYPE(rel->r_info) == R_ARM_THM_MOVT_ABS)
  210. offset >>= 16;
  211. *(u16 *)loc = (u16)((upper & 0xfbf0) |
  212. ((offset & 0xf000) >> 12) |
  213. ((offset & 0x0800) >> 1));
  214. *(u16 *)(loc + 2) = (u16)((lower & 0x8f00) |
  215. ((offset & 0x0700) << 4) |
  216. (offset & 0x00ff));
  217. break;
  218. #endif
  219. default:
  220. printk(KERN_ERR "%s: unknown relocation: %u\n",
  221. module->name, ELF32_R_TYPE(rel->r_info));
  222. return -ENOEXEC;
  223. }
  224. }
  225. return 0;
  226. }
  227. int
  228. apply_relocate_add(Elf32_Shdr *sechdrs, const char *strtab,
  229. unsigned int symindex, unsigned int relsec, struct module *module)
  230. {
  231. printk(KERN_ERR "module %s: ADD RELOCATION unsupported\n",
  232. module->name);
  233. return -ENOEXEC;
  234. }
  235. struct mod_unwind_map {
  236. const Elf_Shdr *unw_sec;
  237. const Elf_Shdr *txt_sec;
  238. };
  239. static const Elf_Shdr *find_mod_section(const Elf32_Ehdr *hdr,
  240. const Elf_Shdr *sechdrs, const char *name)
  241. {
  242. const Elf_Shdr *s, *se;
  243. const char *secstrs = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
  244. for (s = sechdrs, se = sechdrs + hdr->e_shnum; s < se; s++)
  245. if (strcmp(name, secstrs + s->sh_name) == 0)
  246. return s;
  247. return NULL;
  248. }
  249. extern void fixup_pv_table(const void *, unsigned long);
  250. extern void fixup_smp(const void *, unsigned long);
  251. int module_finalize(const Elf32_Ehdr *hdr, const Elf_Shdr *sechdrs,
  252. struct module *mod)
  253. {
  254. const Elf_Shdr *s = NULL;
  255. #ifdef CONFIG_ARM_UNWIND
  256. const char *secstrs = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
  257. const Elf_Shdr *sechdrs_end = sechdrs + hdr->e_shnum;
  258. struct mod_unwind_map maps[ARM_SEC_MAX];
  259. int i;
  260. memset(maps, 0, sizeof(maps));
  261. for (s = sechdrs; s < sechdrs_end; s++) {
  262. const char *secname = secstrs + s->sh_name;
  263. if (!(s->sh_flags & SHF_ALLOC))
  264. continue;
  265. if (strcmp(".ARM.exidx.init.text", secname) == 0)
  266. maps[ARM_SEC_INIT].unw_sec = s;
  267. else if (strcmp(".ARM.exidx.devinit.text", secname) == 0)
  268. maps[ARM_SEC_DEVINIT].unw_sec = s;
  269. else if (strcmp(".ARM.exidx", secname) == 0)
  270. maps[ARM_SEC_CORE].unw_sec = s;
  271. else if (strcmp(".ARM.exidx.exit.text", secname) == 0)
  272. maps[ARM_SEC_EXIT].unw_sec = s;
  273. else if (strcmp(".ARM.exidx.devexit.text", secname) == 0)
  274. maps[ARM_SEC_DEVEXIT].unw_sec = s;
  275. else if (strcmp(".init.text", secname) == 0)
  276. maps[ARM_SEC_INIT].txt_sec = s;
  277. else if (strcmp(".devinit.text", secname) == 0)
  278. maps[ARM_SEC_DEVINIT].txt_sec = s;
  279. else if (strcmp(".text", secname) == 0)
  280. maps[ARM_SEC_CORE].txt_sec = s;
  281. else if (strcmp(".exit.text", secname) == 0)
  282. maps[ARM_SEC_EXIT].txt_sec = s;
  283. else if (strcmp(".devexit.text", secname) == 0)
  284. maps[ARM_SEC_DEVEXIT].txt_sec = s;
  285. }
  286. for (i = 0; i < ARM_SEC_MAX; i++)
  287. if (maps[i].unw_sec && maps[i].txt_sec)
  288. mod->arch.unwind[i] =
  289. unwind_table_add(maps[i].unw_sec->sh_addr,
  290. maps[i].unw_sec->sh_size,
  291. maps[i].txt_sec->sh_addr,
  292. maps[i].txt_sec->sh_size);
  293. #endif
  294. #ifdef CONFIG_ARM_PATCH_PHYS_VIRT
  295. s = find_mod_section(hdr, sechdrs, ".pv_table");
  296. if (s)
  297. fixup_pv_table((void *)s->sh_addr, s->sh_size);
  298. #endif
  299. s = find_mod_section(hdr, sechdrs, ".alt.smp.init");
  300. if (s && !is_smp())
  301. fixup_smp((void *)s->sh_addr, s->sh_size);
  302. return 0;
  303. }
  304. void
  305. module_arch_cleanup(struct module *mod)
  306. {
  307. #ifdef CONFIG_ARM_UNWIND
  308. int i;
  309. for (i = 0; i < ARM_SEC_MAX; i++)
  310. if (mod->arch.unwind[i])
  311. unwind_table_del(mod->arch.unwind[i]);
  312. #endif
  313. }