1 --- a/arch/mips/Makefile
2 +++ b/arch/mips/Makefile
3 @@ -90,8 +90,8 @@ all-$(CONFIG_SYS_SUPPORTS_ZBOOT)+= vmlin
4 cflags-y += -G 0 -mno-abicalls -fno-pic -pipe
5 cflags-y += -msoft-float
6 LDFLAGS_vmlinux += -G 0 -static -n -nostdlib
7 -KBUILD_AFLAGS_MODULE += -mlong-calls
8 -KBUILD_CFLAGS_MODULE += -mlong-calls
9 +KBUILD_AFLAGS_MODULE += -mno-long-calls
10 +KBUILD_CFLAGS_MODULE += -mno-long-calls
12 cflags-y += -ffreestanding
14 --- a/arch/mips/include/asm/module.h
15 +++ b/arch/mips/include/asm/module.h
16 @@ -9,6 +9,11 @@ struct mod_arch_specific {
17 struct list_head dbe_list;
18 const struct exception_table_entry *dbe_start;
19 const struct exception_table_entry *dbe_end;
23 + unsigned int phys_plt_offset;
24 + unsigned int virt_plt_offset;
27 typedef uint8_t Elf64_Byte; /* Type for a 8-bit quantity. */
28 --- a/arch/mips/kernel/module.c
29 +++ b/arch/mips/kernel/module.c
30 @@ -44,14 +44,219 @@ static struct mips_hi16 *mips_hi16_list;
31 static LIST_HEAD(dbe_list);
32 static DEFINE_SPINLOCK(dbe_lock);
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.
41 +get_plt_size(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs,
42 + const char *secstrings, unsigned int symindex, bool is_init)
44 + unsigned long ret = 0;
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;
52 + if (sechdrs[i].sh_type != SHT_REL
53 + && sechdrs[i].sh_type != SHT_RELA)
56 + /* Not a valid relocation section? */
57 + if (info >= hdr->e_shnum)
60 + /* Don't bother with non-allocated sections */
61 + if (!(sechdrs[info].sh_flags & SHF_ALLOC))
64 + /* If it's called *.init*, and we're not init, we're
66 + if ((strstr(secstrings + sechdrs[i].sh_name, ".init") != 0)
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);
75 + for (j = 0; j < size; ++j) {
78 + if (ELF_MIPS_R_TYPE(rel[j]) != R_MIPS_26)
81 + sym = syms + ELF_MIPS_R_SYM(rel[j]);
82 + if (!is_init && sym->st_shndx != SHN_UNDEF)
85 + ret += 4 * sizeof(int);
88 + Elf_Mips_Rela *rela = (void *) sechdrs[i].sh_addr;
89 + unsigned int size = sechdrs[i].sh_size / sizeof(*rela);
91 + for (j = 0; j < size; ++j) {
94 + if (ELF_MIPS_R_TYPE(rela[j]) != R_MIPS_26)
97 + sym = syms + ELF_MIPS_R_SYM(rela[j]);
98 + if (!is_init && sym->st_shndx != SHN_UNDEF)
101 + ret += 4 * sizeof(int);
109 +#ifndef MODULE_START
110 +static void *alloc_phys(unsigned long size)
116 + size = PAGE_ALIGN(size);
117 + order = get_order(size);
119 + page = alloc_pages(GFP_KERNEL | __GFP_NORETRY | __GFP_NOWARN |
120 + __GFP_THISNODE, order);
124 + split_page(page, order);
126 + for (p = page + (size >> PAGE_SHIFT); p < page + (1 << order); ++p)
129 + return page_address(page);
133 +static void free_phys(void *ptr, unsigned long size)
138 + page = virt_to_page(ptr);
139 + end = page + (PAGE_ALIGN(size) >> PAGE_SHIFT);
141 + for (; page < end; ++page)
146 void *module_alloc(unsigned long size)
149 return __vmalloc_node_range(size, 1, MODULE_START, MODULE_END,
150 GFP_KERNEL, PAGE_KERNEL, -1,
151 __builtin_return_address(0));
158 + ptr = alloc_phys(size);
160 + /* If we failed to allocate physically contiguous memory,
161 + * fall back to regular vmalloc. The module loader code will
162 + * create jump tables to handle long jumps */
164 + return vmalloc(size);
170 +static inline bool is_phys_addr(void *ptr)
173 + return (KSEGX((unsigned long)ptr) == CKSEG0);
175 + return (KSEGX(ptr) == KSEG0);
179 +/* Free memory returned from module_alloc */
180 +void module_free(struct module *mod, void *module_region)
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);
190 + vfree(module_region);
194 +static void *__module_alloc(int size, bool phys)
199 + ptr = kmalloc(size, GFP_KERNEL);
201 + ptr = vmalloc(size);
205 +static void __module_free(void *ptr)
207 + if (is_phys_addr(ptr))
213 +int module_frob_arch_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
214 + char *secstrings, struct module *mod)
216 + unsigned int symindex = 0;
217 + unsigned int core_size, init_size;
220 + for (i = 1; i < hdr->e_shnum; i++)
221 + if (sechdrs[i].sh_type == SHT_SYMTAB)
224 + core_size = get_plt_size(hdr, sechdrs, secstrings, symindex, false);
225 + init_size = get_plt_size(hdr, sechdrs, secstrings, symindex, true);
227 + mod->arch.phys_plt_offset = 0;
228 + mod->arch.virt_plt_offset = 0;
229 + mod->arch.phys_plt_tbl = NULL;
230 + mod->arch.virt_plt_tbl = NULL;
232 + if ((core_size + init_size) == 0)
235 + mod->arch.phys_plt_tbl = __module_alloc(core_size + init_size, 1);
236 + if (!mod->arch.phys_plt_tbl)
239 + mod->arch.virt_plt_tbl = __module_alloc(core_size + init_size, 0);
240 + if (!mod->arch.virt_plt_tbl) {
241 + __module_free(mod->arch.phys_plt_tbl);
242 + mod->arch.phys_plt_tbl = NULL;
249 static int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v)
251 @@ -72,28 +277,36 @@ static int apply_r_mips_32_rela(struct m
255 -static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v)
256 +static Elf_Addr add_plt_entry_to(unsigned *plt_offset,
257 + void *start, Elf_Addr v)
260 - pr_err("module %s: dangerous R_MIPS_26 REL relocation\n",
264 + unsigned *tramp = start + *plt_offset;
265 + *plt_offset += 4 * sizeof(int);
267 - if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
269 - "module %s: relocation overflow\n",
273 + /* adjust carry for addiu */
274 + if (v & 0x00008000)
277 - *location = (*location & ~0x03ffffff) |
278 - ((*location + (v >> 2)) & 0x03ffffff);
279 + tramp[0] = 0x3c190000 | (v >> 16); /* lui t9, hi16 */
280 + tramp[1] = 0x27390000 | (v & 0xffff); /* addiu t9, t9, lo16 */
281 + tramp[2] = 0x03200008; /* jr t9 */
282 + tramp[3] = 0x00000000; /* nop */
285 + return (Elf_Addr) tramp;
288 -static int apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v)
289 +static Elf_Addr add_plt_entry(struct module *me, void *location, Elf_Addr v)
291 + if (is_phys_addr(location))
292 + return add_plt_entry_to(&me->arch.phys_plt_offset,
293 + me->arch.phys_plt_tbl, v);
295 + return add_plt_entry_to(&me->arch.virt_plt_offset,
296 + me->arch.virt_plt_tbl, v);
300 +static int set_r_mips_26(struct module *me, u32 *location, u32 ofs, Elf_Addr v)
303 pr_err("module %s: dangerous R_MIPS_26 RELArelocation\n",
304 @@ -102,17 +315,31 @@ static int apply_r_mips_26_rela(struct m
307 if ((v & 0xf0000000) != (((unsigned long)location + 4) & 0xf0000000)) {
309 + v = add_plt_entry(me, location, v + (ofs << 2));
312 "module %s: relocation overflow\n",
320 - *location = (*location & ~0x03ffffff) | ((v >> 2) & 0x03ffffff);
321 + *location = (*location & ~0x03ffffff) | ((ofs + (v >> 2)) & 0x03ffffff);
326 +static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v)
328 + return set_r_mips_26(me, location, *location & 0x03ffffff, v);
331 +static int apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v)
333 + return set_r_mips_26(me, location, 0, v);
336 static int apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v)
339 @@ -380,11 +607,32 @@ int module_finalize(const Elf_Ehdr *hdr,
340 list_add(&me->arch.dbe_list, &dbe_list);
341 spin_unlock_irq(&dbe_lock);
344 + /* Get rid of the fixup trampoline if we're running the module
345 + * from physically mapped address space */
346 + if (me->arch.phys_plt_offset == 0) {
347 + __module_free(me->arch.phys_plt_tbl);
348 + me->arch.phys_plt_tbl = NULL;
350 + if (me->arch.virt_plt_offset == 0) {
351 + __module_free(me->arch.virt_plt_tbl);
352 + me->arch.virt_plt_tbl = NULL;
358 void module_arch_cleanup(struct module *mod)
360 + if (mod->arch.phys_plt_tbl) {
361 + __module_free(mod->arch.phys_plt_tbl);
362 + mod->arch.phys_plt_tbl = NULL;
364 + if (mod->arch.virt_plt_tbl) {
365 + __module_free(mod->arch.virt_plt_tbl);
366 + mod->arch.virt_plt_tbl = NULL;
369 spin_lock_irq(&dbe_lock);
370 list_del(&mod->arch.dbe_list);
371 spin_unlock_irq(&dbe_lock);