1 /* MN10300 Kernel module helper routines
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
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.
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.
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
21 #include <linux/moduleloader.h>
22 #include <linux/elf.h>
23 #include <linux/vmalloc.h>
25 #include <linux/string.h>
26 #include <linux/kernel.h>
27 #include <linux/bug.h>
32 #define DEBUGP(fmt, ...)
36 * allocate storage for a module
38 void *module_alloc(unsigned long size)
42 return vmalloc_exec(size);
46 * free memory returned from module_alloc()
48 void module_free(struct module *mod, void *module_region)
54 * allow the arch to fix up the section table
55 * - we don't need anything special
57 int module_frob_arch_sections(Elf_Ehdr *hdr,
65 static void reloc_put16(uint8_t *p, uint32_t val)
68 p[1] = (val >> 8) & 0xff;
71 static void reloc_put24(uint8_t *p, uint32_t val)
74 p[2] = (val >> 16) & 0xff;
77 static void reloc_put32(uint8_t *p, uint32_t val)
80 reloc_put16(p+2, val >> 16);
84 * apply a REL relocation
86 int apply_relocate(Elf32_Shdr *sechdrs,
88 unsigned int symindex,
92 printk(KERN_ERR "module %s: RELOCATION unsupported\n",
98 * apply a RELA relocation
100 int apply_relocate_add(Elf32_Shdr *sechdrs,
102 unsigned int symindex,
107 Elf32_Rela *rel = (void *)sechdrs[relsec].sh_addr;
109 Elf32_Addr relocation;
113 DEBUGP("Applying relocate section %u to %u\n",
114 relsec, sechdrs[relsec].sh_info);
116 for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
117 /* this is where to make the change */
118 location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
121 /* this is the symbol the relocation is referring to (note that
122 * all undefined symbols have been resolved by the caller) */
123 sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
124 + ELF32_R_SYM(rel[i].r_info);
126 /* this is the adjustment to be made */
127 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 simply
131 * store the adjustment at the location given */
133 reloc_put32(location, relocation);
136 reloc_put24(location, relocation);
139 reloc_put16(location, relocation);
142 *location = relocation;
145 /* for the next three relocation types, we write the
146 * adjustment with the address subtracted over the
147 * value at the location given */
148 case R_MN10300_PCREL32:
149 value = relocation - (uint32_t) location;
150 reloc_put32(location, value);
152 case R_MN10300_PCREL16:
153 value = relocation - (uint32_t) location;
154 reloc_put16(location, value);
156 case R_MN10300_PCREL8:
157 *location = relocation - (uint32_t) location;
161 printk(KERN_ERR "module %s: Unknown relocation: %u\n",
162 me->name, ELF32_R_TYPE(rel[i].r_info));
170 * finish loading the module
172 int module_finalize(const Elf_Ehdr *hdr,
173 const Elf_Shdr *sechdrs,
176 return module_bug_finalize(hdr, sechdrs, me);
180 * finish clearing the module
182 void module_arch_cleanup(struct module *mod)
184 module_bug_cleanup(mod);