1 /* Kernel module help for i386.
2 Copyright (C) 2001 Rusty Russell.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #include <linux/moduleloader.h>
19 #include <linux/elf.h>
20 #include <linux/vmalloc.h>
22 #include <linux/string.h>
23 #include <linux/kernel.h>
28 #define DEBUGP(fmt...)
31 void *module_alloc(unsigned long size
)
35 return vmalloc_exec(size
);
39 /* Free memory returned from module_alloc */
40 void module_free(struct module
*mod
, void *module_region
)
43 /* FIXME: If module_region == mod->init_region, trim exception
47 /* We don't need anything special. */
48 int module_frob_arch_sections(Elf_Ehdr
*hdr
,
56 int apply_relocate(Elf32_Shdr
*sechdrs
,
58 unsigned int symindex
,
63 Elf32_Rel
*rel
= (void *)sechdrs
[relsec
].sh_addr
;
67 DEBUGP("Applying relocate section %u to %u\n", relsec
,
68 sechdrs
[relsec
].sh_info
);
69 for (i
= 0; i
< sechdrs
[relsec
].sh_size
/ sizeof(*rel
); i
++) {
70 /* This is where to make the change */
71 location
= (void *)sechdrs
[sechdrs
[relsec
].sh_info
].sh_addr
73 /* This is the symbol it is referring to. Note that all
74 undefined symbols have been resolved. */
75 sym
= (Elf32_Sym
*)sechdrs
[symindex
].sh_addr
76 + ELF32_R_SYM(rel
[i
].r_info
);
78 switch (ELF32_R_TYPE(rel
[i
].r_info
)) {
80 /* We add the value into the location given */
81 *location
+= sym
->st_value
;
84 /* Add the value, subtract its postition */
85 *location
+= sym
->st_value
- (uint32_t)location
;
88 printk(KERN_ERR
"module %s: Unknown relocation: %u\n",
89 me
->name
, ELF32_R_TYPE(rel
[i
].r_info
));
96 int apply_relocate_add(Elf32_Shdr
*sechdrs
,
98 unsigned int symindex
,
102 printk(KERN_ERR
"module %s: ADD RELOCATION unsupported\n",
107 extern void apply_alternatives(void *start
, void *end
);
109 int module_finalize(const Elf_Ehdr
*hdr
,
110 const Elf_Shdr
*sechdrs
,
114 char *secstrings
= (void *)hdr
+ sechdrs
[hdr
->e_shstrndx
].sh_offset
;
116 /* look for .altinstructions to patch */
117 for (s
= sechdrs
; s
< sechdrs
+ hdr
->e_shnum
; s
++) {
119 if (strcmp(".altinstructions", secstrings
+ s
->sh_name
))
121 seg
= (void *)s
->sh_addr
;
122 apply_alternatives(seg
, seg
+ s
->sh_size
);
127 void module_arch_cleanup(struct module
*mod
)