1 /* Kernel module help for x86-64
2 Copyright (C) 2001 Rusty Russell.
3 Copyright (C) 2002,2003 Andi Kleen, SuSE Labs.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #include <linux/moduleloader.h>
20 #include <linux/elf.h>
21 #include <linux/vmalloc.h>
23 #include <linux/string.h>
24 #include <linux/kernel.h>
25 #include <linux/slab.h>
26 #include <linux/bug.h>
28 #include <asm/system.h>
30 #include <asm/pgtable.h>
32 #define DEBUGP(fmt...)
35 void module_free(struct module *mod, void *module_region)
38 /* FIXME: If module_region == mod->init_region, trim exception
42 void *module_alloc(unsigned long size)
44 struct vm_struct *area;
48 size = PAGE_ALIGN(size);
49 if (size > MODULES_LEN)
52 area = __get_vm_area(size, VM_ALLOC, MODULES_VADDR, MODULES_END);
56 return __vmalloc_area(area, GFP_KERNEL, PAGE_KERNEL_EXEC);
60 /* We don't need anything special. */
61 int module_frob_arch_sections(Elf_Ehdr *hdr,
69 int apply_relocate_add(Elf64_Shdr *sechdrs,
71 unsigned int symindex,
76 Elf64_Rela *rel = (void *)sechdrs[relsec].sh_addr;
81 DEBUGP("Applying relocate section %u to %u\n", relsec,
82 sechdrs[relsec].sh_info);
83 for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
84 /* This is where to make the change */
85 loc = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
88 /* This is the symbol it is referring to. Note that all
89 undefined symbols have been resolved. */
90 sym = (Elf64_Sym *)sechdrs[symindex].sh_addr
91 + ELF64_R_SYM(rel[i].r_info);
93 DEBUGP("type %d st_value %Lx r_addend %Lx loc %Lx\n",
94 (int)ELF64_R_TYPE(rel[i].r_info),
95 sym->st_value, rel[i].r_addend, (u64)loc);
97 val = sym->st_value + rel[i].r_addend;
99 switch (ELF64_R_TYPE(rel[i].r_info)) {
107 if (val != *(u32 *)loc)
112 if ((s64)val != *(s32 *)loc)
119 if ((s64)val != *(s32 *)loc)
124 printk(KERN_ERR "module %s: Unknown rela relocation: %Lu\n",
125 me->name, ELF64_R_TYPE(rel[i].r_info));
132 printk(KERN_ERR "overflow in relocation type %d val %Lx\n",
133 (int)ELF64_R_TYPE(rel[i].r_info), val);
134 printk(KERN_ERR "`%s' likely not compiled with -mcmodel=kernel\n",
139 int apply_relocate(Elf_Shdr *sechdrs,
141 unsigned int symindex,
145 printk("non add relocation not supported\n");
149 int module_finalize(const Elf_Ehdr *hdr,
150 const Elf_Shdr *sechdrs,
153 const Elf_Shdr *s, *text = NULL, *alt = NULL, *locks = NULL,
155 char *secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
157 for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) {
158 if (!strcmp(".text", secstrings + s->sh_name))
160 if (!strcmp(".altinstructions", secstrings + s->sh_name))
162 if (!strcmp(".smp_locks", secstrings + s->sh_name))
164 if (!strcmp(".parainstructions", secstrings + s->sh_name))
169 /* patch .altinstructions */
170 void *aseg = (void *)alt->sh_addr;
171 apply_alternatives(aseg, aseg + alt->sh_size);
174 void *lseg = (void *)locks->sh_addr;
175 void *tseg = (void *)text->sh_addr;
176 alternatives_smp_module_add(me, me->name,
177 lseg, lseg + locks->sh_size,
178 tseg, tseg + text->sh_size);
182 void *pseg = (void *)para->sh_addr;
183 apply_paravirt(pseg, pseg + para->sh_size);
186 return module_bug_finalize(hdr, sechdrs, me);
189 void module_arch_cleanup(struct module *mod)
191 alternatives_smp_module_del(mod);
192 module_bug_cleanup(mod);