module.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. /* MN10300 Kernel module helper routines
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by Mark Salter (msalter@redhat.com)
  5. * - Derived from arch/i386/kernel/module.c
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public Licence as published by
  9. * the Free Software Foundation; either version 2 of the Licence, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public Licence for more details.
  16. *
  17. * You should have received a copy of the GNU General Public Licence
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/moduleloader.h>
  22. #include <linux/elf.h>
  23. #include <linux/vmalloc.h>
  24. #include <linux/fs.h>
  25. #include <linux/string.h>
  26. #include <linux/kernel.h>
  27. #include <linux/bug.h>
  28. #if 0
  29. #define DEBUGP printk
  30. #else
  31. #define DEBUGP(fmt, ...)
  32. #endif
  33. /*
  34. * allocate storage for a module
  35. */
  36. void *module_alloc(unsigned long size)
  37. {
  38. if (size == 0)
  39. return NULL;
  40. return vmalloc_exec(size);
  41. }
  42. /*
  43. * free memory returned from module_alloc()
  44. */
  45. void module_free(struct module *mod, void *module_region)
  46. {
  47. vfree(module_region);
  48. /* FIXME: If module_region == mod->init_region, trim exception
  49. * table entries. */
  50. }
  51. /*
  52. * allow the arch to fix up the section table
  53. * - we don't need anything special
  54. */
  55. int module_frob_arch_sections(Elf_Ehdr *hdr,
  56. Elf_Shdr *sechdrs,
  57. char *secstrings,
  58. struct module *mod)
  59. {
  60. return 0;
  61. }
  62. static uint32_t reloc_get16(uint8_t *p)
  63. {
  64. return p[0] | (p[1] << 8);
  65. }
  66. static uint32_t reloc_get24(uint8_t *p)
  67. {
  68. return reloc_get16(p) | (p[2] << 16);
  69. }
  70. static uint32_t reloc_get32(uint8_t *p)
  71. {
  72. return reloc_get16(p) | (reloc_get16(p+2) << 16);
  73. }
  74. static void reloc_put16(uint8_t *p, uint32_t val)
  75. {
  76. p[0] = val & 0xff;
  77. p[1] = (val >> 8) & 0xff;
  78. }
  79. static void reloc_put24(uint8_t *p, uint32_t val)
  80. {
  81. reloc_put16(p, val);
  82. p[2] = (val >> 16) & 0xff;
  83. }
  84. static void reloc_put32(uint8_t *p, uint32_t val)
  85. {
  86. reloc_put16(p, val);
  87. reloc_put16(p+2, val >> 16);
  88. }
  89. /*
  90. * apply a REL relocation
  91. */
  92. int apply_relocate(Elf32_Shdr *sechdrs,
  93. const char *strtab,
  94. unsigned int symindex,
  95. unsigned int relsec,
  96. struct module *me)
  97. {
  98. printk(KERN_ERR "module %s: RELOCATION unsupported\n",
  99. me->name);
  100. return -ENOEXEC;
  101. }
  102. /*
  103. * apply a RELA relocation
  104. */
  105. int apply_relocate_add(Elf32_Shdr *sechdrs,
  106. const char *strtab,
  107. unsigned int symindex,
  108. unsigned int relsec,
  109. struct module *me)
  110. {
  111. unsigned int i;
  112. Elf32_Rela *rel = (void *)sechdrs[relsec].sh_addr;
  113. Elf32_Sym *sym;
  114. Elf32_Addr relocation;
  115. uint8_t *location;
  116. uint32_t value;
  117. DEBUGP("Applying relocate section %u to %u\n",
  118. relsec, sechdrs[relsec].sh_info);
  119. for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
  120. /* this is where to make the change */
  121. location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
  122. + rel[i].r_offset;
  123. /* this is the symbol the relocation is referring to (note that
  124. * all undefined symbols have been resolved by the caller) */
  125. sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
  126. + ELF32_R_SYM(rel[i].r_info);
  127. /* this is the adjustment to be made */
  128. relocation = sym->st_value + rel[i].r_addend;
  129. switch (ELF32_R_TYPE(rel[i].r_info)) {
  130. /* for the first four relocation types, we add the
  131. * adjustment into the value at the location given */
  132. case R_MN10300_32:
  133. value = reloc_get32(location);
  134. value += relocation;
  135. reloc_put32(location, value);
  136. break;
  137. case R_MN10300_24:
  138. value = reloc_get24(location);
  139. value += relocation;
  140. reloc_put24(location, value);
  141. break;
  142. case R_MN10300_16:
  143. value = reloc_get16(location);
  144. value += relocation;
  145. reloc_put16(location, value);
  146. break;
  147. case R_MN10300_8:
  148. *location += relocation;
  149. break;
  150. /* for the next three relocation types, we write the
  151. * adjustment with the address subtracted over the
  152. * value at the location given */
  153. case R_MN10300_PCREL32:
  154. value = relocation - (uint32_t) location;
  155. reloc_put32(location, value);
  156. break;
  157. case R_MN10300_PCREL16:
  158. value = relocation - (uint32_t) location;
  159. reloc_put16(location, value);
  160. break;
  161. case R_MN10300_PCREL8:
  162. *location = relocation - (uint32_t) location;
  163. break;
  164. default:
  165. printk(KERN_ERR "module %s: Unknown relocation: %u\n",
  166. me->name, ELF32_R_TYPE(rel[i].r_info));
  167. return -ENOEXEC;
  168. }
  169. }
  170. return 0;
  171. }
  172. /*
  173. * finish loading the module
  174. */
  175. int module_finalize(const Elf_Ehdr *hdr,
  176. const Elf_Shdr *sechdrs,
  177. struct module *me)
  178. {
  179. return module_bug_finalize(hdr, sechdrs, me);
  180. }
  181. /*
  182. * finish clearing the module
  183. */
  184. void module_arch_cleanup(struct module *mod)
  185. {
  186. module_bug_cleanup(mod);
  187. }