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>
24 #include <linux/slab.h>
29 #define DEBUGP(fmt , ...)
32 #ifdef CONFIG_ETRAX_KMALLOCED_MODULES
33 void *module_alloc(unsigned long size
)
35 return kmalloc(size
, GFP_KERNEL
);
38 /* Free memory returned from module_alloc */
39 void module_free(struct module
*mod
, void *module_region
)
45 int apply_relocate_add(Elf32_Shdr
*sechdrs
,
47 unsigned int symindex
,
52 Elf32_Rela
*rela
= (void *)sechdrs
[relsec
].sh_addr
;
54 DEBUGP ("Applying add relocate section %u to %u\n", relsec
,
55 sechdrs
[relsec
].sh_info
);
57 for (i
= 0; i
< sechdrs
[relsec
].sh_size
/ sizeof (*rela
); i
++) {
58 /* This is where to make the change */
60 = ((void *)sechdrs
[sechdrs
[relsec
].sh_info
].sh_addr
62 /* This is the symbol it is referring to. Note that all
63 undefined symbols have been resolved. */
65 = ((Elf32_Sym
*)sechdrs
[symindex
].sh_addr
66 + ELF32_R_SYM (rela
[i
].r_info
));
67 switch (ELF32_R_TYPE(rela
[i
].r_info
)) {
69 *loc
= sym
->st_value
+ rela
[i
].r_addend
;
72 *loc
= sym
->st_value
- (unsigned)loc
+ rela
[i
].r_addend
- 4;
75 printk(KERN_ERR
"module %s: Unknown relocation: %u\n",
76 me
->name
, ELF32_R_TYPE(rela
[i
].r_info
));