1 /* Kernel module help for PPC.
2 Copyright (C) 2001 Rusty Russell.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #include <linux/module.h>
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/ftrace.h>
26 #include <linux/cache.h>
27 #include <linux/bug.h>
28 #include <linux/sort.h>
35 #define DEBUGP(fmt , ...)
38 /* Count how many different relocations (different symbol, different
40 static unsigned int count_relocs(const Elf32_Rela
*rela
, unsigned int num
)
42 unsigned int i
, r_info
, r_addend
, _count_relocs
;
47 for (i
= 0; i
< num
; i
++)
48 /* Only count 24-bit relocs, others don't need stubs */
49 if (ELF32_R_TYPE(rela
[i
].r_info
) == R_PPC_REL24
&&
50 (r_info
!= ELF32_R_SYM(rela
[i
].r_info
) ||
51 r_addend
!= rela
[i
].r_addend
)) {
53 r_info
= ELF32_R_SYM(rela
[i
].r_info
);
54 r_addend
= rela
[i
].r_addend
;
57 #ifdef CONFIG_DYNAMIC_FTRACE
58 _count_relocs
++; /* add one for ftrace_caller */
63 static int relacmp(const void *_x
, const void *_y
)
65 const Elf32_Rela
*x
, *y
;
70 /* Compare the entire r_info (as opposed to ELF32_R_SYM(r_info) only) to
71 * make the comparison cheaper/faster. It won't affect the sorting or
72 * the counting algorithms' performance
74 if (x
->r_info
< y
->r_info
)
76 else if (x
->r_info
> y
->r_info
)
78 else if (x
->r_addend
< y
->r_addend
)
80 else if (x
->r_addend
> y
->r_addend
)
86 static void relaswap(void *_x
, void *_y
, int size
)
94 for (i
= 0; i
< sizeof(Elf32_Rela
) / sizeof(uint32_t); i
++) {
101 /* Get the potential trampolines size required of the init and
103 static unsigned long get_plt_size(const Elf32_Ehdr
*hdr
,
104 const Elf32_Shdr
*sechdrs
,
105 const char *secstrings
,
108 unsigned long ret
= 0;
111 /* Everything marked ALLOC (this includes the exported
113 for (i
= 1; i
< hdr
->e_shnum
; i
++) {
114 /* If it's called *.init*, and we're not init, we're
116 if ((strstr(secstrings
+ sechdrs
[i
].sh_name
, ".init") != 0)
120 /* We don't want to look at debug sections. */
121 if (strstr(secstrings
+ sechdrs
[i
].sh_name
, ".debug") != 0)
124 if (sechdrs
[i
].sh_type
== SHT_RELA
) {
125 DEBUGP("Found relocations in section %u\n", i
);
126 DEBUGP("Ptr: %p. Number: %u\n",
127 (void *)hdr
+ sechdrs
[i
].sh_offset
,
128 sechdrs
[i
].sh_size
/ sizeof(Elf32_Rela
));
130 /* Sort the relocation information based on a symbol and
131 * addend key. This is a stable O(n*log n) complexity
132 * alogrithm but it will reduce the complexity of
133 * count_relocs() to linear complexity O(n)
135 sort((void *)hdr
+ sechdrs
[i
].sh_offset
,
136 sechdrs
[i
].sh_size
/ sizeof(Elf32_Rela
),
137 sizeof(Elf32_Rela
), relacmp
, relaswap
);
139 ret
+= count_relocs((void *)hdr
140 + sechdrs
[i
].sh_offset
,
142 / sizeof(Elf32_Rela
))
143 * sizeof(struct ppc_plt_entry
);
150 int module_frob_arch_sections(Elf32_Ehdr
*hdr
,
157 /* Find .plt and .init.plt sections */
158 for (i
= 0; i
< hdr
->e_shnum
; i
++) {
159 if (strcmp(secstrings
+ sechdrs
[i
].sh_name
, ".init.plt") == 0)
160 me
->arch
.init_plt_section
= i
;
161 else if (strcmp(secstrings
+ sechdrs
[i
].sh_name
, ".plt") == 0)
162 me
->arch
.core_plt_section
= i
;
164 if (!me
->arch
.core_plt_section
|| !me
->arch
.init_plt_section
) {
165 printk("Module doesn't contain .plt or .init.plt sections.\n");
169 /* Override their sizes */
170 sechdrs
[me
->arch
.core_plt_section
].sh_size
171 = get_plt_size(hdr
, sechdrs
, secstrings
, 0);
172 sechdrs
[me
->arch
.init_plt_section
].sh_size
173 = get_plt_size(hdr
, sechdrs
, secstrings
, 1);
177 static inline int entry_matches(struct ppc_plt_entry
*entry
, Elf32_Addr val
)
179 if (entry
->jump
[0] == 0x3d800000 + ((val
+ 0x8000) >> 16)
180 && entry
->jump
[1] == 0x398c0000 + (val
& 0xffff))
185 /* Set up a trampoline in the PLT to bounce us to the distant function */
186 static uint32_t do_plt_call(void *location
,
191 struct ppc_plt_entry
*entry
;
193 DEBUGP("Doing plt for call to 0x%x at 0x%x\n", val
, (unsigned int)location
);
194 /* Init, or core PLT? */
195 if (location
>= mod
->module_core
196 && location
< mod
->module_core
+ mod
->core_size
)
197 entry
= (void *)sechdrs
[mod
->arch
.core_plt_section
].sh_addr
;
199 entry
= (void *)sechdrs
[mod
->arch
.init_plt_section
].sh_addr
;
201 /* Find this entry, or if that fails, the next avail. entry */
202 while (entry
->jump
[0]) {
203 if (entry_matches(entry
, val
)) return (uint32_t)entry
;
207 entry
->jump
[0] = 0x3d800000+((val
+0x8000)>>16); /* lis r12,sym@ha */
208 entry
->jump
[1] = 0x398c0000 + (val
&0xffff); /* addi r12,r12,sym@l*/
209 entry
->jump
[2] = 0x7d8903a6; /* mtctr r12 */
210 entry
->jump
[3] = 0x4e800420; /* bctr */
212 DEBUGP("Initialized plt for 0x%x at %p\n", val
, entry
);
213 return (uint32_t)entry
;
216 int apply_relocate_add(Elf32_Shdr
*sechdrs
,
218 unsigned int symindex
,
220 struct module
*module
)
223 Elf32_Rela
*rela
= (void *)sechdrs
[relsec
].sh_addr
;
228 DEBUGP("Applying ADD relocate section %u to %u\n", relsec
,
229 sechdrs
[relsec
].sh_info
);
230 for (i
= 0; i
< sechdrs
[relsec
].sh_size
/ sizeof(*rela
); i
++) {
231 /* This is where to make the change */
232 location
= (void *)sechdrs
[sechdrs
[relsec
].sh_info
].sh_addr
234 /* This is the symbol it is referring to. Note that all
235 undefined symbols have been resolved. */
236 sym
= (Elf32_Sym
*)sechdrs
[symindex
].sh_addr
237 + ELF32_R_SYM(rela
[i
].r_info
);
238 /* `Everything is relative'. */
239 value
= sym
->st_value
+ rela
[i
].r_addend
;
241 switch (ELF32_R_TYPE(rela
[i
].r_info
)) {
244 *(uint32_t *)location
= value
;
247 case R_PPC_ADDR16_LO
:
248 /* Low half of the symbol */
249 *(uint16_t *)location
= value
;
252 case R_PPC_ADDR16_HI
:
253 /* Higher half of the symbol */
254 *(uint16_t *)location
= (value
>> 16);
257 case R_PPC_ADDR16_HA
:
258 /* Sign-adjusted lower 16 bits: PPC ELF ABI says:
259 (((x >> 16) + ((x & 0x8000) ? 1 : 0))) & 0xFFFF.
260 This is the same, only sane.
262 *(uint16_t *)location
= (value
+ 0x8000) >> 16;
266 if ((int)(value
- (uint32_t)location
) < -0x02000000
267 || (int)(value
- (uint32_t)location
) >= 0x02000000)
268 value
= do_plt_call(location
, value
,
271 /* Only replace bits 2 through 26 */
272 DEBUGP("REL24 value = %08X. location = %08X\n",
273 value
, (uint32_t)location
);
274 DEBUGP("Location before: %08X.\n",
275 *(uint32_t *)location
);
276 *(uint32_t *)location
277 = (*(uint32_t *)location
& ~0x03fffffc)
278 | ((value
- (uint32_t)location
)
280 DEBUGP("Location after: %08X.\n",
281 *(uint32_t *)location
);
282 DEBUGP("ie. jump to %08X+%08X = %08X\n",
283 *(uint32_t *)location
& 0x03fffffc,
285 (*(uint32_t *)location
& 0x03fffffc)
286 + (uint32_t)location
);
290 /* 32-bit relative jump. */
291 *(uint32_t *)location
= value
- (uint32_t)location
;
295 printk("%s: unknown ADD relocation: %u\n",
297 ELF32_R_TYPE(rela
[i
].r_info
));
301 #ifdef CONFIG_DYNAMIC_FTRACE
303 do_plt_call(module
->module_core
,
304 (unsigned long)ftrace_caller
,