diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/arm/kernel/module.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/arm/kernel/module.c')
-rw-r--r-- | arch/arm/kernel/module.c | 152 |
1 files changed, 152 insertions, 0 deletions
diff --git a/arch/arm/kernel/module.c b/arch/arm/kernel/module.c new file mode 100644 index 000000000000..1a85cfdad5ac --- /dev/null +++ b/arch/arm/kernel/module.c | |||
@@ -0,0 +1,152 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/kernel/module.c | ||
3 | * | ||
4 | * Copyright (C) 2002 Russell King. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * Module allocation method suggested by Andi Kleen. | ||
11 | */ | ||
12 | #include <linux/config.h> | ||
13 | #include <linux/module.h> | ||
14 | #include <linux/kernel.h> | ||
15 | #include <linux/elf.h> | ||
16 | #include <linux/vmalloc.h> | ||
17 | #include <linux/slab.h> | ||
18 | #include <linux/fs.h> | ||
19 | #include <linux/string.h> | ||
20 | |||
21 | #include <asm/pgtable.h> | ||
22 | |||
23 | #ifdef CONFIG_XIP_KERNEL | ||
24 | /* | ||
25 | * The XIP kernel text is mapped in the module area for modules and | ||
26 | * some other stuff to work without any indirect relocations. | ||
27 | * MODULE_START is redefined here and not in asm/memory.h to avoid | ||
28 | * recompiling the whole kernel when CONFIG_XIP_KERNEL is turned on/off. | ||
29 | */ | ||
30 | extern void _etext; | ||
31 | #undef MODULE_START | ||
32 | #define MODULE_START (((unsigned long)&_etext + ~PGDIR_MASK) & PGDIR_MASK) | ||
33 | #endif | ||
34 | |||
35 | void *module_alloc(unsigned long size) | ||
36 | { | ||
37 | struct vm_struct *area; | ||
38 | |||
39 | size = PAGE_ALIGN(size); | ||
40 | if (!size) | ||
41 | return NULL; | ||
42 | |||
43 | area = __get_vm_area(size, VM_ALLOC, MODULE_START, MODULE_END); | ||
44 | if (!area) | ||
45 | return NULL; | ||
46 | |||
47 | return __vmalloc_area(area, GFP_KERNEL, PAGE_KERNEL); | ||
48 | } | ||
49 | |||
50 | void module_free(struct module *module, void *region) | ||
51 | { | ||
52 | vfree(region); | ||
53 | } | ||
54 | |||
55 | int module_frob_arch_sections(Elf_Ehdr *hdr, | ||
56 | Elf_Shdr *sechdrs, | ||
57 | char *secstrings, | ||
58 | struct module *mod) | ||
59 | { | ||
60 | return 0; | ||
61 | } | ||
62 | |||
63 | int | ||
64 | apply_relocate(Elf32_Shdr *sechdrs, const char *strtab, unsigned int symindex, | ||
65 | unsigned int relindex, struct module *module) | ||
66 | { | ||
67 | Elf32_Shdr *symsec = sechdrs + symindex; | ||
68 | Elf32_Shdr *relsec = sechdrs + relindex; | ||
69 | Elf32_Shdr *dstsec = sechdrs + relsec->sh_info; | ||
70 | Elf32_Rel *rel = (void *)relsec->sh_addr; | ||
71 | unsigned int i; | ||
72 | |||
73 | for (i = 0; i < relsec->sh_size / sizeof(Elf32_Rel); i++, rel++) { | ||
74 | unsigned long loc; | ||
75 | Elf32_Sym *sym; | ||
76 | s32 offset; | ||
77 | |||
78 | offset = ELF32_R_SYM(rel->r_info); | ||
79 | if (offset < 0 || offset > (symsec->sh_size / sizeof(Elf32_Sym))) { | ||
80 | printk(KERN_ERR "%s: bad relocation, section %d reloc %d\n", | ||
81 | module->name, relindex, i); | ||
82 | return -ENOEXEC; | ||
83 | } | ||
84 | |||
85 | sym = ((Elf32_Sym *)symsec->sh_addr) + offset; | ||
86 | |||
87 | if (rel->r_offset < 0 || rel->r_offset > dstsec->sh_size - sizeof(u32)) { | ||
88 | printk(KERN_ERR "%s: out of bounds relocation, " | ||
89 | "section %d reloc %d offset %d size %d\n", | ||
90 | module->name, relindex, i, rel->r_offset, | ||
91 | dstsec->sh_size); | ||
92 | return -ENOEXEC; | ||
93 | } | ||
94 | |||
95 | loc = dstsec->sh_addr + rel->r_offset; | ||
96 | |||
97 | switch (ELF32_R_TYPE(rel->r_info)) { | ||
98 | case R_ARM_ABS32: | ||
99 | *(u32 *)loc += sym->st_value; | ||
100 | break; | ||
101 | |||
102 | case R_ARM_PC24: | ||
103 | offset = (*(u32 *)loc & 0x00ffffff) << 2; | ||
104 | if (offset & 0x02000000) | ||
105 | offset -= 0x04000000; | ||
106 | |||
107 | offset += sym->st_value - loc; | ||
108 | if (offset & 3 || | ||
109 | offset <= (s32)0xfc000000 || | ||
110 | offset >= (s32)0x04000000) { | ||
111 | printk(KERN_ERR | ||
112 | "%s: relocation out of range, section " | ||
113 | "%d reloc %d sym '%s'\n", module->name, | ||
114 | relindex, i, strtab + sym->st_name); | ||
115 | return -ENOEXEC; | ||
116 | } | ||
117 | |||
118 | offset >>= 2; | ||
119 | |||
120 | *(u32 *)loc &= 0xff000000; | ||
121 | *(u32 *)loc |= offset & 0x00ffffff; | ||
122 | break; | ||
123 | |||
124 | default: | ||
125 | printk(KERN_ERR "%s: unknown relocation: %u\n", | ||
126 | module->name, ELF32_R_TYPE(rel->r_info)); | ||
127 | return -ENOEXEC; | ||
128 | } | ||
129 | } | ||
130 | return 0; | ||
131 | } | ||
132 | |||
133 | int | ||
134 | apply_relocate_add(Elf32_Shdr *sechdrs, const char *strtab, | ||
135 | unsigned int symindex, unsigned int relsec, struct module *module) | ||
136 | { | ||
137 | printk(KERN_ERR "module %s: ADD RELOCATION unsupported\n", | ||
138 | module->name); | ||
139 | return -ENOEXEC; | ||
140 | } | ||
141 | |||
142 | int | ||
143 | module_finalize(const Elf32_Ehdr *hdr, const Elf_Shdr *sechdrs, | ||
144 | struct module *module) | ||
145 | { | ||
146 | return 0; | ||
147 | } | ||
148 | |||
149 | void | ||
150 | module_arch_cleanup(struct module *mod) | ||
151 | { | ||
152 | } | ||