1 // SPDX-License-Identifier: GPL-2.0-only
3 * AArch64 loadable module support.
5 * Copyright (C) 2012 ARM Limited
7 * Author: Will Deacon <will.deacon@arm.com>
10 #include <linux/bitops.h>
11 #include <linux/elf.h>
12 #include <linux/ftrace.h>
13 #include <linux/gfp.h>
14 #include <linux/kasan.h>
15 #include <linux/kernel.h>
17 #include <linux/moduleloader.h>
18 #include <linux/vmalloc.h>
19 #include <asm/alternative.h>
21 #include <asm/sections.h>
23 void *module_alloc(unsigned long size
)
25 u64 module_alloc_end
= module_alloc_base
+ MODULES_VSIZE
;
26 gfp_t gfp_mask
= GFP_KERNEL
;
29 /* Silence the initial allocation */
30 if (IS_ENABLED(CONFIG_ARM64_MODULE_PLTS
))
31 gfp_mask
|= __GFP_NOWARN
;
33 if (IS_ENABLED(CONFIG_KASAN
))
34 /* don't exceed the static module region - see below */
35 module_alloc_end
= MODULES_END
;
37 p
= __vmalloc_node_range(size
, MODULE_ALIGN
, module_alloc_base
,
38 module_alloc_end
, gfp_mask
, PAGE_KERNEL
, 0,
39 NUMA_NO_NODE
, __builtin_return_address(0));
41 if (!p
&& IS_ENABLED(CONFIG_ARM64_MODULE_PLTS
) &&
42 !IS_ENABLED(CONFIG_KASAN
))
44 * KASAN can only deal with module allocations being served
45 * from the reserved module region, since the remainder of
46 * the vmalloc region is already backed by zero shadow pages,
47 * and punching holes into it is non-trivial. Since the module
48 * region is not randomized when KASAN is enabled, it is even
49 * less likely that the module region gets exhausted, so we
50 * can simply omit this fallback in that case.
52 p
= __vmalloc_node_range(size
, MODULE_ALIGN
, module_alloc_base
,
53 module_alloc_base
+ SZ_2G
, GFP_KERNEL
,
54 PAGE_KERNEL
, 0, NUMA_NO_NODE
,
55 __builtin_return_address(0));
57 if (p
&& (kasan_module_alloc(p
, size
) < 0)) {
65 enum aarch64_reloc_op
{
72 static u64
do_reloc(enum aarch64_reloc_op reloc_op
, __le32
*place
, u64 val
)
78 return val
- (u64
)place
;
80 return (val
& ~0xfff) - ((u64
)place
& ~0xfff);
85 pr_err("do_reloc: unknown relocation operation %d\n", reloc_op
);
89 static int reloc_data(enum aarch64_reloc_op op
, void *place
, u64 val
, int len
)
91 s64 sval
= do_reloc(op
, place
, val
);
94 * The ELF psABI for AArch64 documents the 16-bit and 32-bit place
95 * relative and absolute relocations as having a range of [-2^15, 2^16)
96 * or [-2^31, 2^32), respectively. However, in order to be able to
97 * detect overflows reliably, we have to choose whether we interpret
98 * such quantities as signed or as unsigned, and stick with it.
99 * The way we organize our address space requires a signed
100 * interpretation of 32-bit relative references, so let's use that
101 * for all R_AARCH64_PRELxx relocations. This means our upper
102 * bound for overflow detection should be Sxx_MAX rather than Uxx_MAX.
107 *(s16
*)place
= sval
;
110 if (sval
< 0 || sval
> U16_MAX
)
114 if (sval
< S16_MIN
|| sval
> S16_MAX
)
118 pr_err("Invalid 16-bit data relocation (%d)\n", op
);
123 *(s32
*)place
= sval
;
126 if (sval
< 0 || sval
> U32_MAX
)
130 if (sval
< S32_MIN
|| sval
> S32_MAX
)
134 pr_err("Invalid 32-bit data relocation (%d)\n", op
);
139 *(s64
*)place
= sval
;
142 pr_err("Invalid length (%d) for data relocation\n", len
);
148 enum aarch64_insn_movw_imm_type
{
149 AARCH64_INSN_IMM_MOVNZ
,
150 AARCH64_INSN_IMM_MOVKZ
,
153 static int reloc_insn_movw(enum aarch64_reloc_op op
, __le32
*place
, u64 val
,
154 int lsb
, enum aarch64_insn_movw_imm_type imm_type
)
158 u32 insn
= le32_to_cpu(*place
);
160 sval
= do_reloc(op
, place
, val
);
163 if (imm_type
== AARCH64_INSN_IMM_MOVNZ
) {
165 * For signed MOVW relocations, we have to manipulate the
166 * instruction encoding depending on whether or not the
167 * immediate is less than zero.
171 /* >=0: Set the instruction to MOVZ (opcode 10b). */
175 * <0: Set the instruction to MOVN (opcode 00b).
176 * Since we've masked the opcode already, we
177 * don't need to do anything other than
178 * inverting the new immediate field.
184 /* Update the instruction with the new encoding. */
185 insn
= aarch64_insn_encode_immediate(AARCH64_INSN_IMM_16
, insn
, imm
);
186 *place
= cpu_to_le32(insn
);
194 static int reloc_insn_imm(enum aarch64_reloc_op op
, __le32
*place
, u64 val
,
195 int lsb
, int len
, enum aarch64_insn_imm_type imm_type
)
199 u32 insn
= le32_to_cpu(*place
);
201 /* Calculate the relocation value. */
202 sval
= do_reloc(op
, place
, val
);
205 /* Extract the value bits and shift them to bit 0. */
206 imm_mask
= (BIT(lsb
+ len
) - 1) >> lsb
;
207 imm
= sval
& imm_mask
;
209 /* Update the instruction's immediate field. */
210 insn
= aarch64_insn_encode_immediate(imm_type
, insn
, imm
);
211 *place
= cpu_to_le32(insn
);
214 * Extract the upper value bits (including the sign bit) and
215 * shift them to bit 0.
217 sval
= (s64
)(sval
& ~(imm_mask
>> 1)) >> (len
- 1);
220 * Overflow has occurred if the upper bits are not all equal to
221 * the sign bit of the value.
223 if ((u64
)(sval
+ 1) >= 2)
229 static int reloc_insn_adrp(struct module
*mod
, Elf64_Shdr
*sechdrs
,
230 __le32
*place
, u64 val
)
234 if (!is_forbidden_offset_for_adrp(place
))
235 return reloc_insn_imm(RELOC_OP_PAGE
, place
, val
, 12, 21,
236 AARCH64_INSN_IMM_ADR
);
238 /* patch ADRP to ADR if it is in range */
239 if (!reloc_insn_imm(RELOC_OP_PREL
, place
, val
& ~0xfff, 0, 21,
240 AARCH64_INSN_IMM_ADR
)) {
241 insn
= le32_to_cpu(*place
);
244 /* out of range for ADR -> emit a veneer */
245 val
= module_emit_veneer_for_adrp(mod
, sechdrs
, place
, val
& ~0xfff);
248 insn
= aarch64_insn_gen_branch_imm((u64
)place
, val
,
249 AARCH64_INSN_BRANCH_NOLINK
);
252 *place
= cpu_to_le32(insn
);
256 int apply_relocate_add(Elf64_Shdr
*sechdrs
,
258 unsigned int symindex
,
268 Elf64_Rela
*rel
= (void *)sechdrs
[relsec
].sh_addr
;
270 for (i
= 0; i
< sechdrs
[relsec
].sh_size
/ sizeof(*rel
); i
++) {
271 /* loc corresponds to P in the AArch64 ELF document. */
272 loc
= (void *)sechdrs
[sechdrs
[relsec
].sh_info
].sh_addr
275 /* sym is the ELF symbol we're referring to. */
276 sym
= (Elf64_Sym
*)sechdrs
[symindex
].sh_addr
277 + ELF64_R_SYM(rel
[i
].r_info
);
279 /* val corresponds to (S + A) in the AArch64 ELF document. */
280 val
= sym
->st_value
+ rel
[i
].r_addend
;
282 /* Check for overflow by default. */
283 overflow_check
= true;
285 /* Perform the static relocation. */
286 switch (ELF64_R_TYPE(rel
[i
].r_info
)) {
287 /* Null relocations. */
293 /* Data relocations. */
294 case R_AARCH64_ABS64
:
295 overflow_check
= false;
296 ovf
= reloc_data(RELOC_OP_ABS
, loc
, val
, 64);
298 case R_AARCH64_ABS32
:
299 ovf
= reloc_data(RELOC_OP_ABS
, loc
, val
, 32);
301 case R_AARCH64_ABS16
:
302 ovf
= reloc_data(RELOC_OP_ABS
, loc
, val
, 16);
304 case R_AARCH64_PREL64
:
305 overflow_check
= false;
306 ovf
= reloc_data(RELOC_OP_PREL
, loc
, val
, 64);
308 case R_AARCH64_PREL32
:
309 ovf
= reloc_data(RELOC_OP_PREL
, loc
, val
, 32);
311 case R_AARCH64_PREL16
:
312 ovf
= reloc_data(RELOC_OP_PREL
, loc
, val
, 16);
315 /* MOVW instruction relocations. */
316 case R_AARCH64_MOVW_UABS_G0_NC
:
317 overflow_check
= false;
319 case R_AARCH64_MOVW_UABS_G0
:
320 ovf
= reloc_insn_movw(RELOC_OP_ABS
, loc
, val
, 0,
321 AARCH64_INSN_IMM_MOVKZ
);
323 case R_AARCH64_MOVW_UABS_G1_NC
:
324 overflow_check
= false;
326 case R_AARCH64_MOVW_UABS_G1
:
327 ovf
= reloc_insn_movw(RELOC_OP_ABS
, loc
, val
, 16,
328 AARCH64_INSN_IMM_MOVKZ
);
330 case R_AARCH64_MOVW_UABS_G2_NC
:
331 overflow_check
= false;
333 case R_AARCH64_MOVW_UABS_G2
:
334 ovf
= reloc_insn_movw(RELOC_OP_ABS
, loc
, val
, 32,
335 AARCH64_INSN_IMM_MOVKZ
);
337 case R_AARCH64_MOVW_UABS_G3
:
338 /* We're using the top bits so we can't overflow. */
339 overflow_check
= false;
340 ovf
= reloc_insn_movw(RELOC_OP_ABS
, loc
, val
, 48,
341 AARCH64_INSN_IMM_MOVKZ
);
343 case R_AARCH64_MOVW_SABS_G0
:
344 ovf
= reloc_insn_movw(RELOC_OP_ABS
, loc
, val
, 0,
345 AARCH64_INSN_IMM_MOVNZ
);
347 case R_AARCH64_MOVW_SABS_G1
:
348 ovf
= reloc_insn_movw(RELOC_OP_ABS
, loc
, val
, 16,
349 AARCH64_INSN_IMM_MOVNZ
);
351 case R_AARCH64_MOVW_SABS_G2
:
352 ovf
= reloc_insn_movw(RELOC_OP_ABS
, loc
, val
, 32,
353 AARCH64_INSN_IMM_MOVNZ
);
355 case R_AARCH64_MOVW_PREL_G0_NC
:
356 overflow_check
= false;
357 ovf
= reloc_insn_movw(RELOC_OP_PREL
, loc
, val
, 0,
358 AARCH64_INSN_IMM_MOVKZ
);
360 case R_AARCH64_MOVW_PREL_G0
:
361 ovf
= reloc_insn_movw(RELOC_OP_PREL
, loc
, val
, 0,
362 AARCH64_INSN_IMM_MOVNZ
);
364 case R_AARCH64_MOVW_PREL_G1_NC
:
365 overflow_check
= false;
366 ovf
= reloc_insn_movw(RELOC_OP_PREL
, loc
, val
, 16,
367 AARCH64_INSN_IMM_MOVKZ
);
369 case R_AARCH64_MOVW_PREL_G1
:
370 ovf
= reloc_insn_movw(RELOC_OP_PREL
, loc
, val
, 16,
371 AARCH64_INSN_IMM_MOVNZ
);
373 case R_AARCH64_MOVW_PREL_G2_NC
:
374 overflow_check
= false;
375 ovf
= reloc_insn_movw(RELOC_OP_PREL
, loc
, val
, 32,
376 AARCH64_INSN_IMM_MOVKZ
);
378 case R_AARCH64_MOVW_PREL_G2
:
379 ovf
= reloc_insn_movw(RELOC_OP_PREL
, loc
, val
, 32,
380 AARCH64_INSN_IMM_MOVNZ
);
382 case R_AARCH64_MOVW_PREL_G3
:
383 /* We're using the top bits so we can't overflow. */
384 overflow_check
= false;
385 ovf
= reloc_insn_movw(RELOC_OP_PREL
, loc
, val
, 48,
386 AARCH64_INSN_IMM_MOVNZ
);
389 /* Immediate instruction relocations. */
390 case R_AARCH64_LD_PREL_LO19
:
391 ovf
= reloc_insn_imm(RELOC_OP_PREL
, loc
, val
, 2, 19,
392 AARCH64_INSN_IMM_19
);
394 case R_AARCH64_ADR_PREL_LO21
:
395 ovf
= reloc_insn_imm(RELOC_OP_PREL
, loc
, val
, 0, 21,
396 AARCH64_INSN_IMM_ADR
);
398 case R_AARCH64_ADR_PREL_PG_HI21_NC
:
399 overflow_check
= false;
401 case R_AARCH64_ADR_PREL_PG_HI21
:
402 ovf
= reloc_insn_adrp(me
, sechdrs
, loc
, val
);
403 if (ovf
&& ovf
!= -ERANGE
)
406 case R_AARCH64_ADD_ABS_LO12_NC
:
407 case R_AARCH64_LDST8_ABS_LO12_NC
:
408 overflow_check
= false;
409 ovf
= reloc_insn_imm(RELOC_OP_ABS
, loc
, val
, 0, 12,
410 AARCH64_INSN_IMM_12
);
412 case R_AARCH64_LDST16_ABS_LO12_NC
:
413 overflow_check
= false;
414 ovf
= reloc_insn_imm(RELOC_OP_ABS
, loc
, val
, 1, 11,
415 AARCH64_INSN_IMM_12
);
417 case R_AARCH64_LDST32_ABS_LO12_NC
:
418 overflow_check
= false;
419 ovf
= reloc_insn_imm(RELOC_OP_ABS
, loc
, val
, 2, 10,
420 AARCH64_INSN_IMM_12
);
422 case R_AARCH64_LDST64_ABS_LO12_NC
:
423 overflow_check
= false;
424 ovf
= reloc_insn_imm(RELOC_OP_ABS
, loc
, val
, 3, 9,
425 AARCH64_INSN_IMM_12
);
427 case R_AARCH64_LDST128_ABS_LO12_NC
:
428 overflow_check
= false;
429 ovf
= reloc_insn_imm(RELOC_OP_ABS
, loc
, val
, 4, 8,
430 AARCH64_INSN_IMM_12
);
432 case R_AARCH64_TSTBR14
:
433 ovf
= reloc_insn_imm(RELOC_OP_PREL
, loc
, val
, 2, 14,
434 AARCH64_INSN_IMM_14
);
436 case R_AARCH64_CONDBR19
:
437 ovf
= reloc_insn_imm(RELOC_OP_PREL
, loc
, val
, 2, 19,
438 AARCH64_INSN_IMM_19
);
440 case R_AARCH64_JUMP26
:
441 case R_AARCH64_CALL26
:
442 ovf
= reloc_insn_imm(RELOC_OP_PREL
, loc
, val
, 2, 26,
443 AARCH64_INSN_IMM_26
);
445 if (IS_ENABLED(CONFIG_ARM64_MODULE_PLTS
) &&
447 val
= module_emit_plt_entry(me
, sechdrs
, loc
, &rel
[i
], sym
);
450 ovf
= reloc_insn_imm(RELOC_OP_PREL
, loc
, val
, 2,
451 26, AARCH64_INSN_IMM_26
);
456 pr_err("module %s: unsupported RELA relocation: %llu\n",
457 me
->name
, ELF64_R_TYPE(rel
[i
].r_info
));
461 if (overflow_check
&& ovf
== -ERANGE
)
469 pr_err("module %s: overflow in relocation type %d val %Lx\n",
470 me
->name
, (int)ELF64_R_TYPE(rel
[i
].r_info
), val
);
474 static const Elf_Shdr
*find_section(const Elf_Ehdr
*hdr
,
475 const Elf_Shdr
*sechdrs
,
478 const Elf_Shdr
*s
, *se
;
479 const char *secstrs
= (void *)hdr
+ sechdrs
[hdr
->e_shstrndx
].sh_offset
;
481 for (s
= sechdrs
, se
= sechdrs
+ hdr
->e_shnum
; s
< se
; s
++) {
482 if (strcmp(name
, secstrs
+ s
->sh_name
) == 0)
489 static inline void __init_plt(struct plt_entry
*plt
, unsigned long addr
)
491 *plt
= get_plt_entry(addr
, plt
);
494 static int module_init_ftrace_plt(const Elf_Ehdr
*hdr
,
495 const Elf_Shdr
*sechdrs
,
498 #if defined(CONFIG_ARM64_MODULE_PLTS) && defined(CONFIG_DYNAMIC_FTRACE)
500 struct plt_entry
*plts
;
502 s
= find_section(hdr
, sechdrs
, ".text.ftrace_trampoline");
506 plts
= (void *)s
->sh_addr
;
508 __init_plt(&plts
[FTRACE_PLT_IDX
], FTRACE_ADDR
);
510 if (IS_ENABLED(CONFIG_DYNAMIC_FTRACE_WITH_REGS
))
511 __init_plt(&plts
[FTRACE_REGS_PLT_IDX
], FTRACE_REGS_ADDR
);
513 mod
->arch
.ftrace_trampolines
= plts
;
518 int module_finalize(const Elf_Ehdr
*hdr
,
519 const Elf_Shdr
*sechdrs
,
523 s
= find_section(hdr
, sechdrs
, ".altinstructions");
525 apply_alternatives_module((void *)s
->sh_addr
, s
->sh_size
);
527 return module_init_ftrace_plt(hdr
, sechdrs
, me
);