module.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /* MN10300 Kernel module helper routines
  2. *
  3. * Copyright (C) 2007, 2008 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 void reloc_put16(uint8_t *p, uint32_t val)
  63. {
  64. p[0] = val & 0xff;
  65. p[1] = (val >> 8) & 0xff;
  66. }
  67. static void reloc_put24(uint8_t *p, uint32_t val)
  68. {
  69. reloc_put16(p, val);
  70. p[2] = (val >> 16) & 0xff;
  71. }
  72. static void reloc_put32(uint8_t *p, uint32_t val)
  73. {
  74. reloc_put16(p, val);
  75. reloc_put16(p+2, val >> 16);
  76. }
  77. /*
  78. * apply a REL relocation
  79. */
  80. int apply_relocate(Elf32_Shdr *sechdrs,
  81. const char *strtab,
  82. unsigned int symindex,
  83. unsigned int relsec,
  84. struct module *me)
  85. {
  86. printk(KERN_ERR "module %s: RELOCATION unsupported\n",
  87. me->name);
  88. return -ENOEXEC;
  89. }
  90. /*
  91. * apply a RELA relocation
  92. */
  93. int apply_relocate_add(Elf32_Shdr *sechdrs,
  94. const char *strtab,
  95. unsigned int symindex,
  96. unsigned int relsec,
  97. struct module *me)
  98. {
  99. unsigned int i;
  100. Elf32_Rela *rel = (void *)sechdrs[relsec].sh_addr;
  101. Elf32_Sym *sym;
  102. Elf32_Addr relocation;
  103. uint8_t *location;
  104. uint32_t value;
  105. DEBUGP("Applying relocate section %u to %u\n",
  106. relsec, sechdrs[relsec].sh_info);
  107. for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
  108. /* this is where to make the change */
  109. location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
  110. + rel[i].r_offset;
  111. /* this is the symbol the relocation is referring to (note that
  112. * all undefined symbols have been resolved by the caller) */
  113. sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
  114. + ELF32_R_SYM(rel[i].r_info);
  115. /* this is the adjustment to be made */
  116. relocation = sym->st_value + rel[i].r_addend;
  117. switch (ELF32_R_TYPE(rel[i].r_info)) {
  118. /* for the first four relocation types, we simply
  119. * store the adjustment at the location given */
  120. case R_MN10300_32:
  121. reloc_put32(location, relocation);
  122. break;
  123. case R_MN10300_24:
  124. reloc_put24(location, relocation);
  125. break;
  126. case R_MN10300_16:
  127. reloc_put16(location, relocation);
  128. break;
  129. case R_MN10300_8:
  130. *location = relocation;
  131. break;
  132. /* for the next three relocation types, we write the
  133. * adjustment with the address subtracted over the
  134. * value at the location given */
  135. case R_MN10300_PCREL32:
  136. value = relocation - (uint32_t) location;
  137. reloc_put32(location, value);
  138. break;
  139. case R_MN10300_PCREL16:
  140. value = relocation - (uint32_t) location;
  141. reloc_put16(location, value);
  142. break;
  143. case R_MN10300_PCREL8:
  144. *location = relocation - (uint32_t) location;
  145. break;
  146. default:
  147. printk(KERN_ERR "module %s: Unknown relocation: %u\n",
  148. me->name, ELF32_R_TYPE(rel[i].r_info));
  149. return -ENOEXEC;
  150. }
  151. }
  152. return 0;
  153. }
  154. /*
  155. * finish loading the module
  156. */
  157. int module_finalize(const Elf_Ehdr *hdr,
  158. const Elf_Shdr *sechdrs,
  159. struct module *me)
  160. {
  161. return module_bug_finalize(hdr, sechdrs, me);
  162. }
  163. /*
  164. * finish clearing the module
  165. */
  166. void module_arch_cleanup(struct module *mod)
  167. {
  168. module_bug_cleanup(mod);
  169. }