blob: 42e964db29677877438f8b9bc8e6225cc5f64174 [file] [log] [blame]
Vineet Guptafa1c3ff2013-01-29 19:28:05 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/module.h>
10#include <linux/moduleloader.h>
11#include <linux/kernel.h>
12#include <linux/elf.h>
13#include <linux/vmalloc.h>
14#include <linux/slab.h>
15#include <linux/fs.h>
16#include <linux/string.h>
Vineet Gupta854a0d92013-01-22 17:03:19 +053017#include <asm/unwind.h>
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053018
19static inline void arc_write_me(unsigned short *addr, unsigned long value)
20{
21 *addr = (value & 0xffff0000) >> 16;
22 *(addr + 1) = (value & 0xffff);
23}
24
Vineet Gupta6716dbb2013-06-24 21:22:06 +053025/*
26 * This gets called before relocation loop in generic loader
27 * Make a note of the section index of unwinding section
Vineet Gupta854a0d92013-01-22 17:03:19 +053028 */
29int module_frob_arch_sections(Elf_Ehdr *hdr, Elf_Shdr *sechdrs,
30 char *secstr, struct module *mod)
31{
32#ifdef CONFIG_ARC_DW2_UNWIND
Vineet Gupta854a0d92013-01-22 17:03:19 +053033 mod->arch.unw_sec_idx = 0;
34 mod->arch.unw_info = NULL;
Vineet Guptad65283f2016-10-25 10:43:20 -070035 mod->arch.secstr = secstr;
Vineet Gupta854a0d92013-01-22 17:03:19 +053036#endif
Sachin Kamat955ad592013-03-06 16:53:45 +053037 return 0;
Vineet Gupta854a0d92013-01-22 17:03:19 +053038}
39
40void module_arch_cleanup(struct module *mod)
41{
42#ifdef CONFIG_ARC_DW2_UNWIND
43 if (mod->arch.unw_info)
44 unwind_remove_table(mod->arch.unw_info, 0);
45#endif
46}
47
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053048int apply_relocate_add(Elf32_Shdr *sechdrs,
49 const char *strtab,
50 unsigned int symindex, /* sec index for sym tbl */
51 unsigned int relsec, /* sec index for relo sec */
52 struct module *module)
53{
Vineet Guptab75dcd92016-10-25 11:23:19 -070054 int i, n, relo_type;
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053055 Elf32_Rela *rel_entry = (void *)sechdrs[relsec].sh_addr;
56 Elf32_Sym *sym_entry, *sym_sec;
Vineet Guptab75dcd92016-10-25 11:23:19 -070057 Elf32_Addr relocation, location, tgt_addr;
Vineet Guptad65283f2016-10-25 10:43:20 -070058 unsigned int tgtsec;
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053059
Vineet Guptab75dcd92016-10-25 11:23:19 -070060 /*
61 * @relsec has relocations e.g. .rela.init.text
62 * @tgtsec is section to patch e.g. .init.text
63 */
Vineet Guptad65283f2016-10-25 10:43:20 -070064 tgtsec = sechdrs[relsec].sh_info;
Vineet Guptab75dcd92016-10-25 11:23:19 -070065 tgt_addr = sechdrs[tgtsec].sh_addr;
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053066 sym_sec = (Elf32_Sym *) sechdrs[symindex].sh_addr;
67 n = sechdrs[relsec].sh_size / sizeof(*rel_entry);
68
Vineet Guptab75dcd92016-10-25 11:23:19 -070069 pr_debug("\nSection to fixup %s @%x\n",
70 module->arch.secstr + sechdrs[tgtsec].sh_name, tgt_addr);
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053071 pr_debug("=========================================================\n");
Vineet Guptab75dcd92016-10-25 11:23:19 -070072 pr_debug("r_off\tr_add\tst_value ADDRESS VALUE\n");
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053073 pr_debug("=========================================================\n");
74
75 /* Loop thru entries in relocation section */
76 for (i = 0; i < n; i++) {
Vineet Guptab75dcd92016-10-25 11:23:19 -070077 const char *s;
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053078
79 /* This is where to make the change */
Vineet Guptab75dcd92016-10-25 11:23:19 -070080 location = tgt_addr + rel_entry[i].r_offset;
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053081
82 /* This is the symbol it is referring to. Note that all
83 undefined symbols have been resolved. */
84 sym_entry = sym_sec + ELF32_R_SYM(rel_entry[i].r_info);
85
86 relocation = sym_entry->st_value + rel_entry[i].r_addend;
87
Vineet Guptab75dcd92016-10-25 11:23:19 -070088 if (sym_entry->st_name == 0 && ELF_ST_TYPE (sym_entry->st_info) == STT_SECTION) {
89 s = module->arch.secstr + sechdrs[sym_entry->st_shndx].sh_name;
90 } else {
91 s = strtab + sym_entry->st_name;
92 }
93
94 pr_debug(" %x\t%x\t%x %x %x [%s]\n",
95 rel_entry[i].r_offset, rel_entry[i].r_addend,
96 sym_entry->st_value, location, relocation, s);
Vineet Guptafa1c3ff2013-01-29 19:28:05 +053097
98 /* This assumes modules are built with -mlong-calls
99 * so any branches/jumps are absolute 32 bit jmps
100 * global data access again is abs 32 bit.
101 * Both of these are handled by same relocation type
102 */
103 relo_type = ELF32_R_TYPE(rel_entry[i].r_info);
104
Vineet Gupta94f4fb02016-09-12 16:50:50 -0700105 if (likely(R_ARC_32_ME == relo_type)) /* ME ( S + A ) */
Vineet Guptafa1c3ff2013-01-29 19:28:05 +0530106 arc_write_me((unsigned short *)location, relocation);
Vineet Gupta94f4fb02016-09-12 16:50:50 -0700107 else if (R_ARC_32 == relo_type) /* ( S + A ) */
Vineet Guptafa1c3ff2013-01-29 19:28:05 +0530108 *((Elf32_Addr *) location) = relocation;
Vineet Gupta94f4fb02016-09-12 16:50:50 -0700109 else if (R_ARC_32_PCREL == relo_type) /* ( S + A ) - PDATA ) */
110 *((Elf32_Addr *) location) = relocation - location;
Vineet Guptafa1c3ff2013-01-29 19:28:05 +0530111 else
112 goto relo_err;
113
114 }
Vineet Guptad65283f2016-10-25 10:43:20 -0700115
116 if (strcmp(module->arch.secstr+sechdrs[tgtsec].sh_name, ".eh_frame") == 0)
117 module->arch.unw_sec_idx = tgtsec;
118
Vineet Guptafa1c3ff2013-01-29 19:28:05 +0530119 return 0;
120
121relo_err:
122 pr_err("%s: unknown relocation: %u\n",
123 module->name, ELF32_R_TYPE(rel_entry[i].r_info));
124 return -ENOEXEC;
125
126}
Vineet Gupta854a0d92013-01-22 17:03:19 +0530127
128/* Just before lift off: After sections have been relocated, we add the
129 * dwarf section to unwinder table pool
130 * This couldn't be done in module_frob_arch_sections() because
131 * relocations had not been applied by then
132 */
133int module_finalize(const Elf32_Ehdr *hdr, const Elf_Shdr *sechdrs,
134 struct module *mod)
135{
136#ifdef CONFIG_ARC_DW2_UNWIND
137 void *unw;
138 int unwsec = mod->arch.unw_sec_idx;
139
140 if (unwsec) {
141 unw = unwind_add_table(mod, (void *)sechdrs[unwsec].sh_addr,
142 sechdrs[unwsec].sh_size);
143 mod->arch.unw_info = unw;
144 }
145#endif
Sachin Kamat955ad592013-03-06 16:53:45 +0530146 return 0;
Vineet Gupta854a0d92013-01-22 17:03:19 +0530147}