Root/target/linux/octeon/patches-2.6.30/106-no_module_reloc.patch

1diff -urN linux-2.6.30.10/arch/mips/Makefile linux-2.6.30.10.new//arch/mips/Makefile
2--- linux-2.6.30.10/arch/mips/Makefile 2010-01-29 16:12:01.000000000 +0100
3+++ linux-2.6.30.10.new//arch/mips/Makefile 2009-12-04 07:00:07.000000000 +0100
4@@ -83,7 +83,7 @@
5 cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
6 cflags-y += -msoft-float
7 LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
8-MODFLAGS += -mno-long-calls
9+MODFLAGS += -mlong-calls
10 
11 cflags-y += -ffreestanding
12 
13diff -urN linux-2.6.30.10/arch/mips/include/asm/module.h linux-2.6.30.10.new//arch/mips/include/asm/module.h
14--- linux-2.6.30.10/arch/mips/include/asm/module.h 2010-01-29 16:12:01.000000000 +0100
15+++ linux-2.6.30.10.new//arch/mips/include/asm/module.h 2009-12-04 07:00:07.000000000 +0100
16@@ -9,11 +9,6 @@
17     struct list_head dbe_list;
18     const struct exception_table_entry *dbe_start;
19     const struct exception_table_entry *dbe_end;
20-
21- void *phys_plt_tbl;
22- void *virt_plt_tbl;
23- unsigned int phys_plt_offset;
24- unsigned int virt_plt_offset;
25 };
26 
27 typedef uint8_t Elf64_Byte; /* Type for a 8-bit quantity. */
28diff -urN linux-2.6.30.10/arch/mips/kernel/module.c linux-2.6.30.10.new//arch/mips/kernel/module.c
29--- linux-2.6.30.10/arch/mips/kernel/module.c 2010-01-29 16:12:01.000000000 +0100
30+++ linux-2.6.30.10.new//arch/mips/kernel/module.c 2009-12-04 07:00:07.000000000 +0100
31@@ -43,116 +43,6 @@
32 static LIST_HEAD(dbe_list);
33 static DEFINE_SPINLOCK(dbe_lock);
34 
35-/*
36- * Get the potential max trampolines size required of the init and
37- * non-init sections. Only used if we cannot find enough contiguous
38- * physically mapped memory to put the module into.
39- */
40-static unsigned int
41-get_plt_size(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs,
42- const char *secstrings, unsigned int symindex, bool is_init)
43-{
44- unsigned long ret = 0;
45- unsigned int i, j;
46- Elf_Sym *syms;
47-
48- /* Everything marked ALLOC (this includes the exported symbols) */
49- for (i = 1; i < hdr->e_shnum; ++i) {
50- unsigned int info = sechdrs[i].sh_info;
51-
52- if (sechdrs[i].sh_type != SHT_REL
53- && sechdrs[i].sh_type != SHT_RELA)
54- continue;
55-
56- /* Not a valid relocation section? */
57- if (info >= hdr->e_shnum)
58- continue;
59-
60- /* Don't bother with non-allocated sections */
61- if (!(sechdrs[info].sh_flags & SHF_ALLOC))
62- continue;
63-
64- /* If it's called *.init*, and we're not init, we're
65- not interested */
66- if ((strstr(secstrings + sechdrs[i].sh_name, ".init") != 0)
67- != is_init)
68- continue;
69-
70- syms = (Elf_Sym *) sechdrs[symindex].sh_addr;
71- if (sechdrs[i].sh_type == SHT_REL) {
72- Elf_Mips_Rel *rel = (void *) sechdrs[i].sh_addr;
73- unsigned int size = sechdrs[i].sh_size / sizeof(*rel);
74-
75- for (j = 0; j < size; ++j) {
76- Elf_Sym *sym;
77-
78- if (ELF_MIPS_R_TYPE(rel[j]) != R_MIPS_26)
79- continue;
80-
81- sym = syms + ELF_MIPS_R_SYM(rel[j]);
82- if (!is_init && sym->st_shndx != SHN_UNDEF)
83- continue;
84-
85- ret += 4 * sizeof(int);
86- }
87- } else {
88- Elf_Mips_Rela *rela = (void *) sechdrs[i].sh_addr;
89- unsigned int size = sechdrs[i].sh_size / sizeof(*rela);
90-
91- for (j = 0; j < size; ++j) {
92- Elf_Sym *sym;
93-
94- if (ELF_MIPS_R_TYPE(rela[j]) != R_MIPS_26)
95- continue;
96-
97- sym = syms + ELF_MIPS_R_SYM(rela[j]);
98- if (!is_init && sym->st_shndx != SHN_UNDEF)
99- continue;
100-
101- ret += 4 * sizeof(int);
102- }
103- }
104- }
105-
106- return ret;
107-}
108-
109-#ifndef MODULE_START
110-static void *alloc_phys(unsigned long size)
111-{
112- unsigned order;
113- struct page *page;
114- struct page *p;
115-
116- size = PAGE_ALIGN(size);
117- order = get_order(size);
118-
119- page = alloc_pages(GFP_KERNEL | __GFP_NORETRY | __GFP_NOWARN |
120- __GFP_THISNODE, order);
121- if (!page)
122- return NULL;
123-
124- split_page(page, order);
125-
126- for (p = page + (size >> PAGE_SHIFT); p < page + (1 << order); ++p)
127- __free_page(p);
128-
129- return page_address(page);
130-}
131-#endif
132-
133-static void free_phys(void *ptr, unsigned long size)
134-{
135- struct page *page;
136- struct page *end;
137-
138- page = virt_to_page(ptr);
139- end = page + (PAGE_ALIGN(size) >> PAGE_SHIFT);
140-
141- for (; page < end; ++page)
142- __free_page(page);
143-}
144-
145 void *module_alloc(unsigned long size)
146 {
147 #ifdef MODULE_START
148@@ -168,101 +58,23 @@
149 
150     return __vmalloc_area(area, GFP_KERNEL, PAGE_KERNEL);
151 #else
152- void *ptr;
153-
154     if (size == 0)
155         return NULL;
156-
157- ptr = alloc_phys(size);
158-
159- /* If we failed to allocate physically contiguous memory,
160- * fall back to regular vmalloc. The module loader code will
161- * create jump tables to handle long jumps */
162- if (!ptr)
163- return vmalloc(size);
164-
165- return ptr;
166-#endif
167-}
168-
169-static inline bool is_phys_addr(void *ptr)
170-{
171-#ifdef CONFIG_64BIT
172- return (KSEGX((unsigned long)ptr) == CKSEG0);
173-#else
174- return (KSEGX(ptr) == KSEG0);
175+ return vmalloc(size);
176 #endif
177 }
178 
179 /* Free memory returned from module_alloc */
180 void module_free(struct module *mod, void *module_region)
181 {
182- if (is_phys_addr(module_region)) {
183- if (mod->module_init == module_region)
184- free_phys(module_region, mod->init_size);
185- else if (mod->module_core == module_region)
186- free_phys(module_region, mod->core_size);
187- else
188- BUG();
189- } else {
190- vfree(module_region);
191- }
192+ vfree(module_region);
193     /* FIXME: If module_region == mod->init_region, trim exception
194            table entries. */
195 }
196 
197-static void *__module_alloc(int size, bool phys)
198-{
199- void *ptr;
200-
201- if (phys)
202- ptr = kmalloc(size, GFP_KERNEL);
203- else
204- ptr = vmalloc(size);
205- return ptr;
206-}
207-
208-static void __module_free(void *ptr)
209-{
210- if (is_phys_addr(ptr))
211- kfree(ptr);
212- else
213- vfree(ptr);
214-}
215-
216 int module_frob_arch_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
217                   char *secstrings, struct module *mod)
218 {
219- unsigned int symindex = 0;
220- unsigned int core_size, init_size;
221- int i;
222-
223- for (i = 1; i < hdr->e_shnum; i++)
224- if (sechdrs[i].sh_type == SHT_SYMTAB)
225- symindex = i;
226-
227- core_size = get_plt_size(hdr, sechdrs, secstrings, symindex, false);
228- init_size = get_plt_size(hdr, sechdrs, secstrings, symindex, true);
229-
230- mod->arch.phys_plt_offset = 0;
231- mod->arch.virt_plt_offset = 0;
232- mod->arch.phys_plt_tbl = NULL;
233- mod->arch.virt_plt_tbl = NULL;
234-
235- if ((core_size + init_size) == 0)
236- return 0;
237-
238- mod->arch.phys_plt_tbl = __module_alloc(core_size + init_size, 1);
239- if (!mod->arch.phys_plt_tbl)
240- return -ENOMEM;
241-
242- mod->arch.virt_plt_tbl = __module_alloc(core_size + init_size, 0);
243- if (!mod->arch.virt_plt_tbl) {
244- __module_free(mod->arch.phys_plt_tbl);
245- mod->arch.phys_plt_tbl = NULL;
246- return -ENOMEM;
247- }
248-
249     return 0;
250 }
251 
252@@ -285,37 +97,27 @@
253     return 0;
254 }
255 
256-static Elf_Addr add_plt_entry_to(unsigned *plt_offset,
257- void *start, Elf_Addr v)
258+static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v)
259 {
260- unsigned *tramp = start + *plt_offset;
261-
262- *plt_offset += 4 * sizeof(int);
263-
264- /* adjust carry for addiu */
265- if (v & 0x00008000)
266- v += 0x10000;
267-
268- tramp[0] = 0x3c190000 | (v >> 16); /* lui t9, hi16 */
269- tramp[1] = 0x27390000 | (v & 0xffff); /* addiu t9, t9, lo16 */
270- tramp[2] = 0x03200008; /* jr t9 */
271- tramp[3] = 0x00000000; /* nop */
272+ if (v % 4) {
273+ printk(KERN_ERR "module %s: dangerous relocation\n", me->name);
274+ return -ENOEXEC;
275+ }
276 
277- return (Elf_Addr) tramp;
278-}
279+ if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
280+ printk(KERN_ERR
281+ "module %s: relocation overflow\n",
282+ me->name);
283+ return -ENOEXEC;
284+ }
285 
286-static Elf_Addr add_plt_entry(struct module *me, void *location, Elf_Addr v)
287-{
288- if (is_phys_addr(location))
289- return add_plt_entry_to(&me->arch.phys_plt_offset,
290- me->arch.phys_plt_tbl, v);
291- else
292- return add_plt_entry_to(&me->arch.virt_plt_offset,
293- me->arch.virt_plt_tbl, v);
294+ *location = (*location & ~0x03ffffff) |
295+ ((*location + (v >> 2)) & 0x03ffffff);
296 
297+ return 0;
298 }
299 
300-static int set_r_mips_26(struct module *me, u32 *location, u32 ofs, Elf_Addr v)
301+static int apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v)
302 {
303     if (v % 4) {
304         printk(KERN_ERR "module %s: dangerous relocation\n", me->name);
305@@ -323,31 +125,17 @@
306     }
307 
308     if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
309- v = add_plt_entry(me, location, v + (ofs << 2));
310- if (!v) {
311- printk(KERN_ERR
312+ printk(KERN_ERR
313                "module %s: relocation overflow\n",
314                me->name);
315- return -ENOEXEC;
316- }
317- ofs = 0;
318+ return -ENOEXEC;
319     }
320 
321- *location = (*location & ~0x03ffffff) | ((ofs + (v >> 2)) & 0x03ffffff);
322+ *location = (*location & ~0x03ffffff) | ((v >> 2) & 0x03ffffff);
323 
324     return 0;
325 }
326 
327-static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v)
328-{
329- return set_r_mips_26(me, location, *location & 0x03ffffff, v);
330-}
331-
332-static int apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v)
333-{
334- return set_r_mips_26(me, location, 0, v);
335-}
336-
337 static int apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v)
338 {
339     struct mips_hi16 *n;
340@@ -612,32 +400,11 @@
341         list_add(&me->arch.dbe_list, &dbe_list);
342         spin_unlock_irq(&dbe_lock);
343     }
344-
345- /* Get rid of the fixup trampoline if we're running the module
346- * from physically mapped address space */
347- if (me->arch.phys_plt_offset == 0) {
348- __module_free(me->arch.phys_plt_tbl);
349- me->arch.phys_plt_tbl = NULL;
350- }
351- if (me->arch.virt_plt_offset == 0) {
352- __module_free(me->arch.virt_plt_tbl);
353- me->arch.virt_plt_tbl = NULL;
354- }
355-
356     return 0;
357 }
358 
359 void module_arch_cleanup(struct module *mod)
360 {
361- if (mod->arch.phys_plt_tbl) {
362- __module_free(mod->arch.phys_plt_tbl);
363- mod->arch.phys_plt_tbl = NULL;
364- }
365- if (mod->arch.virt_plt_tbl) {
366- __module_free(mod->arch.virt_plt_tbl);
367- mod->arch.virt_plt_tbl = NULL;
368- }
369-
370     spin_lock_irq(&dbe_lock);
371     list_del(&mod->arch.dbe_list);
372     spin_unlock_irq(&dbe_lock);
373

Archive Download this file



interactive