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/vmalloc.h>
28 #include <asm/system.h>
30 #include <asm/pgtable.h>
32 #define DEBUGP(fmt...)
34 static struct vm_struct
*mod_vmlist
;
36 void module_free(struct module
*mod
, void *module_region
)
38 struct vm_struct
**prevp
, *map
;
40 unsigned long addr
= (unsigned long)module_region
;
44 write_lock(&vmlist_lock
);
45 for (prevp
= &mod_vmlist
; (map
= *prevp
) ; prevp
= &map
->next
) {
46 if ((unsigned long)map
->addr
== addr
) {
51 write_unlock(&vmlist_lock
);
52 printk("Trying to unmap nonexistent module vm area (%lx)\n", addr
);
56 write_unlock(&vmlist_lock
);
58 for (i
= 0; i
< map
->nr_pages
; i
++)
60 __free_page(map
->pages
[i
]);
66 void *module_alloc(unsigned long size
)
68 struct vm_struct
**p
, *tmp
, *area
;
71 unsigned int nr_pages
, array_size
, i
;
75 size
= PAGE_ALIGN(size
);
76 if (size
> MODULES_LEN
)
79 area
= (struct vm_struct
*) kmalloc(sizeof(*area
), GFP_KERNEL
);
82 memset(area
, 0, sizeof(struct vm_struct
));
84 write_lock(&vmlist_lock
);
85 addr
= (void *) MODULES_VADDR
;
86 for (p
= &mod_vmlist
; (tmp
= *p
); p
= &tmp
->next
) {
88 DEBUGP("vmlist %p %lu addr %p\n", tmp
->addr
, tmp
->size
, addr
);
89 if (size
+ (unsigned long) addr
+ PAGE_SIZE
< (unsigned long) tmp
->addr
)
91 next
= (void *) (tmp
->size
+ (unsigned long) tmp
->addr
);
96 if ((unsigned long)addr
+ size
>= MODULES_END
) {
97 write_unlock(&vmlist_lock
);
101 DEBUGP("addr %p\n", addr
);
105 area
->size
= size
+ PAGE_SIZE
;
107 write_unlock(&vmlist_lock
);
109 nr_pages
= size
>> PAGE_SHIFT
;
110 array_size
= (nr_pages
* sizeof(struct page
*));
112 area
->nr_pages
= nr_pages
;
113 area
->pages
= pages
= kmalloc(array_size
, GFP_KERNEL
);
117 memset(area
->pages
, 0, array_size
);
118 for (i
= 0; i
< nr_pages
; i
++) {
119 area
->pages
[i
] = alloc_page(GFP_KERNEL
);
120 if (area
->pages
[i
] == NULL
)
124 if (map_vm_area(area
, PAGE_KERNEL_EXEC
, &pages
))
127 memset(addr
, 0, size
);
128 DEBUGP("module_alloc size %lu = %p\n", size
, addr
);
132 module_free(NULL
, addr
);
136 /* We don't need anything special. */
137 int module_frob_arch_sections(Elf_Ehdr
*hdr
,
145 int apply_relocate_add(Elf64_Shdr
*sechdrs
,
147 unsigned int symindex
,
152 Elf64_Rela
*rel
= (void *)sechdrs
[relsec
].sh_addr
;
157 DEBUGP("Applying relocate section %u to %u\n", relsec
,
158 sechdrs
[relsec
].sh_info
);
159 for (i
= 0; i
< sechdrs
[relsec
].sh_size
/ sizeof(*rel
); i
++) {
160 /* This is where to make the change */
161 loc
= (void *)sechdrs
[sechdrs
[relsec
].sh_info
].sh_addr
164 /* This is the symbol it is referring to. Note that all
165 undefined symbols have been resolved. */
166 sym
= (Elf64_Sym
*)sechdrs
[symindex
].sh_addr
167 + ELF64_R_SYM(rel
[i
].r_info
);
169 DEBUGP("type %d st_value %Lx r_addend %Lx loc %Lx\n",
170 (int)ELF64_R_TYPE(rel
[i
].r_info
),
171 sym
->st_value
, rel
[i
].r_addend
, (u64
)loc
);
173 val
= sym
->st_value
+ rel
[i
].r_addend
;
175 switch (ELF64_R_TYPE(rel
[i
].r_info
)) {
183 if (val
!= *(u32
*)loc
)
188 if ((s64
)val
!= *(s32
*)loc
)
195 if ((s64
)val
!= *(s32
*)loc
)
200 printk(KERN_ERR
"module %s: Unknown rela relocation: %Lu\n",
201 me
->name
, ELF64_R_TYPE(rel
[i
].r_info
));
208 printk(KERN_ERR
"overflow in relocation type %d val %Lx\n",
209 (int)ELF64_R_TYPE(rel
[i
].r_info
), val
);
210 printk(KERN_ERR
"`%s' likely not compiled with -mcmodel=kernel\n",
215 int apply_relocate(Elf_Shdr
*sechdrs
,
217 unsigned int symindex
,
221 printk("non add relocation not supported\n");
225 extern void apply_alternatives(void *start
, void *end
);
227 int module_finalize(const Elf_Ehdr
*hdr
,
228 const Elf_Shdr
*sechdrs
,
232 char *secstrings
= (void *)hdr
+ sechdrs
[hdr
->e_shstrndx
].sh_offset
;
234 /* look for .altinstructions to patch */
235 for (s
= sechdrs
; s
< sechdrs
+ hdr
->e_shnum
; s
++) {
237 if (strcmp(".altinstructions", secstrings
+ s
->sh_name
))
239 seg
= (void *)s
->sh_addr
;
240 apply_alternatives(seg
, seg
+ s
->sh_size
);
245 void module_arch_cleanup(struct module
*mod
)