Lines Matching +full:32 +full:- +full:bit
1 // SPDX-License-Identifier: GPL-2.0+
25 #include <asm/nospec-branch.h>
58 module_memfree(mod->arch.trampolines_start); in module_arch_cleanup()
65 mod->state == MODULE_STATE_LIVE) in module_arch_freeing_init()
68 vfree(mod->arch.syminfo); in module_arch_freeing_init()
69 mod->arch.syminfo = NULL; in module_arch_freeing_init()
76 info = me->arch.syminfo + ELF_R_SYM (rela->r_info); in check_rela()
77 switch (ELF_R_TYPE (rela->r_info)) { in check_rela()
78 case R_390_GOT12: /* 12 bit GOT offset. */ in check_rela()
79 case R_390_GOT16: /* 16 bit GOT offset. */ in check_rela()
80 case R_390_GOT20: /* 20 bit GOT offset. */ in check_rela()
81 case R_390_GOT32: /* 32 bit GOT offset. */ in check_rela()
82 case R_390_GOT64: /* 64 bit GOT offset. */ in check_rela()
83 case R_390_GOTENT: /* 32 bit PC rel. to GOT entry shifted by 1. */ in check_rela()
84 case R_390_GOTPLT12: /* 12 bit offset to jump slot. */ in check_rela()
85 case R_390_GOTPLT16: /* 16 bit offset to jump slot. */ in check_rela()
86 case R_390_GOTPLT20: /* 20 bit offset to jump slot. */ in check_rela()
87 case R_390_GOTPLT32: /* 32 bit offset to jump slot. */ in check_rela()
88 case R_390_GOTPLT64: /* 64 bit offset to jump slot. */ in check_rela()
89 case R_390_GOTPLTENT: /* 32 bit rel. offset to jump slot >> 1. */ in check_rela()
90 if (info->got_offset == -1UL) { in check_rela()
91 info->got_offset = me->arch.got_size; in check_rela()
92 me->arch.got_size += sizeof(void*); in check_rela()
95 case R_390_PLT16DBL: /* 16 bit PC rel. PLT shifted by 1. */ in check_rela()
96 case R_390_PLT32DBL: /* 32 bit PC rel. PLT shifted by 1. */ in check_rela()
97 case R_390_PLT32: /* 32 bit PC relative PLT address. */ in check_rela()
98 case R_390_PLT64: /* 64 bit PC relative PLT address. */ in check_rela()
99 case R_390_PLTOFF16: /* 16 bit offset from GOT to PLT. */ in check_rela()
100 case R_390_PLTOFF32: /* 32 bit offset from GOT to PLT. */ in check_rela()
101 case R_390_PLTOFF64: /* 16 bit offset from GOT to PLT. */ in check_rela()
102 if (info->plt_offset == -1UL) { in check_rela()
103 info->plt_offset = me->arch.plt_size; in check_rela()
104 me->arch.plt_size += PLT_ENTRY_SIZE; in check_rela()
112 modules linked with -shared. */ in check_rela()
132 for (i = 0; i < hdr->e_shnum; i++) in module_frob_arch_sections()
139 printk(KERN_ERR "module %s: no symbol table\n", me->name); in module_frob_arch_sections()
140 return -ENOEXEC; in module_frob_arch_sections()
144 me->arch.nsyms = symtab->sh_size / sizeof(Elf_Sym); in module_frob_arch_sections()
145 me->arch.syminfo = vmalloc(array_size(sizeof(struct mod_arch_syminfo), in module_frob_arch_sections()
146 me->arch.nsyms)); in module_frob_arch_sections()
147 if (!me->arch.syminfo) in module_frob_arch_sections()
148 return -ENOMEM; in module_frob_arch_sections()
149 symbols = (void *) hdr + symtab->sh_offset; in module_frob_arch_sections()
150 strings = (void *) hdr + sechdrs[symtab->sh_link].sh_offset; in module_frob_arch_sections()
151 for (i = 0; i < me->arch.nsyms; i++) { in module_frob_arch_sections()
157 me->arch.syminfo[i].got_offset = -1UL; in module_frob_arch_sections()
158 me->arch.syminfo[i].plt_offset = -1UL; in module_frob_arch_sections()
159 me->arch.syminfo[i].got_initialized = 0; in module_frob_arch_sections()
160 me->arch.syminfo[i].plt_initialized = 0; in module_frob_arch_sections()
164 me->arch.got_size = me->arch.plt_size = 0; in module_frob_arch_sections()
165 for (i = 0; i < hdr->e_shnum; i++) { in module_frob_arch_sections()
176 me->core_layout.size = ALIGN(me->core_layout.size, 4); in module_frob_arch_sections()
177 me->arch.got_offset = me->core_layout.size; in module_frob_arch_sections()
178 me->core_layout.size += me->arch.got_size; in module_frob_arch_sections()
179 me->arch.plt_offset = me->core_layout.size; in module_frob_arch_sections()
180 if (me->arch.plt_size) { in module_frob_arch_sections()
182 me->arch.plt_size += PLT_ENTRY_SIZE; in module_frob_arch_sections()
183 me->core_layout.size += me->arch.plt_size; in module_frob_arch_sections()
196 if (val & ((1UL << shift) - 1)) in apply_rela_bits()
197 return -ENOEXEC; in apply_rela_bits()
200 min = -(1L << (bits - 1)); in apply_rela_bits()
201 max = (1L << (bits - 1)) - 1; in apply_rela_bits()
203 return -ENOEXEC; in apply_rela_bits()
206 umax = ((1UL << (bits - 1)) << 1) - 1; in apply_rela_bits()
208 return -ENOEXEC; in apply_rela_bits()
225 } else if (bits == 32) { in apply_rela_bits()
242 int rc = -ENOEXEC; in apply_rela()
245 loc = base + rela->r_offset; in apply_rela()
248 r_sym = ELF_R_SYM(rela->r_info); in apply_rela()
249 r_type = ELF_R_TYPE(rela->r_info); in apply_rela()
250 info = me->arch.syminfo + r_sym; in apply_rela()
257 case R_390_8: /* Direct 8 bit. */ in apply_rela()
258 case R_390_12: /* Direct 12 bit. */ in apply_rela()
259 case R_390_16: /* Direct 16 bit. */ in apply_rela()
260 case R_390_20: /* Direct 20 bit. */ in apply_rela()
261 case R_390_32: /* Direct 32 bit. */ in apply_rela()
262 case R_390_64: /* Direct 64 bit. */ in apply_rela()
263 val += rela->r_addend; in apply_rela()
273 rc = apply_rela_bits(loc, val, 0, 32, 0, write); in apply_rela()
277 case R_390_PC16: /* PC relative 16 bit. */ in apply_rela()
278 case R_390_PC16DBL: /* PC relative 16 bit shifted by 1. */ in apply_rela()
279 case R_390_PC32DBL: /* PC relative 32 bit shifted by 1. */ in apply_rela()
280 case R_390_PC32: /* PC relative 32 bit. */ in apply_rela()
281 case R_390_PC64: /* PC relative 64 bit. */ in apply_rela()
282 val += rela->r_addend - loc; in apply_rela()
288 rc = apply_rela_bits(loc, val, 1, 32, 1, write); in apply_rela()
290 rc = apply_rela_bits(loc, val, 1, 32, 0, write); in apply_rela()
294 case R_390_GOT12: /* 12 bit GOT offset. */ in apply_rela()
295 case R_390_GOT16: /* 16 bit GOT offset. */ in apply_rela()
296 case R_390_GOT20: /* 20 bit GOT offset. */ in apply_rela()
297 case R_390_GOT32: /* 32 bit GOT offset. */ in apply_rela()
298 case R_390_GOT64: /* 64 bit GOT offset. */ in apply_rela()
299 case R_390_GOTENT: /* 32 bit PC rel. to GOT entry shifted by 1. */ in apply_rela()
300 case R_390_GOTPLT12: /* 12 bit offset to jump slot. */ in apply_rela()
301 case R_390_GOTPLT20: /* 20 bit offset to jump slot. */ in apply_rela()
302 case R_390_GOTPLT16: /* 16 bit offset to jump slot. */ in apply_rela()
303 case R_390_GOTPLT32: /* 32 bit offset to jump slot. */ in apply_rela()
304 case R_390_GOTPLT64: /* 64 bit offset to jump slot. */ in apply_rela()
305 case R_390_GOTPLTENT: /* 32 bit rel. offset to jump slot >> 1. */ in apply_rela()
306 if (info->got_initialized == 0) { in apply_rela()
307 Elf_Addr *gotent = me->core_layout.base + in apply_rela()
308 me->arch.got_offset + in apply_rela()
309 info->got_offset; in apply_rela()
312 info->got_initialized = 1; in apply_rela()
314 val = info->got_offset + rela->r_addend; in apply_rela()
326 rc = apply_rela_bits(loc, val, 0, 32, 0, write); in apply_rela()
332 val += (Elf_Addr) me->core_layout.base - loc; in apply_rela()
333 rc = apply_rela_bits(loc, val, 1, 32, 1, write); in apply_rela()
336 case R_390_PLT16DBL: /* 16 bit PC rel. PLT shifted by 1. */ in apply_rela()
337 case R_390_PLT32DBL: /* 32 bit PC rel. PLT shifted by 1. */ in apply_rela()
338 case R_390_PLT32: /* 32 bit PC relative PLT address. */ in apply_rela()
339 case R_390_PLT64: /* 64 bit PC relative PLT address. */ in apply_rela()
340 case R_390_PLTOFF16: /* 16 bit offset from GOT to PLT. */ in apply_rela()
341 case R_390_PLTOFF32: /* 32 bit offset from GOT to PLT. */ in apply_rela()
342 case R_390_PLTOFF64: /* 16 bit offset from GOT to PLT. */ in apply_rela()
343 if (info->plt_initialized == 0) { in apply_rela()
348 plt_base = me->core_layout.base + me->arch.plt_offset; in apply_rela()
349 ip = plt_base + info->plt_offset; in apply_rela()
355 jump_r1 = plt_base + me->arch.plt_size - in apply_rela()
359 *(int *)&insn[10] = (jump_r1 - (ip + 8)) / 2; in apply_rela()
366 info->plt_initialized = 1; in apply_rela()
371 val = me->arch.plt_offset - me->arch.got_offset + in apply_rela()
372 info->plt_offset + rela->r_addend; in apply_rela()
375 val - loc + 0xffffUL < 0x1ffffeUL) || in apply_rela()
377 val - loc + 0xffffffffULL < 0x1fffffffeULL))) in apply_rela()
378 val = (Elf_Addr) me->core_layout.base + in apply_rela()
379 me->arch.plt_offset + in apply_rela()
380 info->plt_offset; in apply_rela()
381 val += rela->r_addend - loc; in apply_rela()
388 rc = apply_rela_bits(loc, val, 1, 32, 1, write); in apply_rela()
391 rc = apply_rela_bits(loc, val, 0, 32, 0, write); in apply_rela()
396 case R_390_GOTOFF16: /* 16 bit offset to GOT. */ in apply_rela()
397 case R_390_GOTOFF32: /* 32 bit offset to GOT. */ in apply_rela()
398 case R_390_GOTOFF64: /* 64 bit offset to GOT. */ in apply_rela()
399 val = val + rela->r_addend - in apply_rela()
400 ((Elf_Addr) me->core_layout.base + me->arch.got_offset); in apply_rela()
404 rc = apply_rela_bits(loc, val, 0, 32, 0, write); in apply_rela()
408 case R_390_GOTPC: /* 32 bit PC relative offset to GOT. */ in apply_rela()
409 case R_390_GOTPCDBL: /* 32 bit PC rel. off. to GOT shifted by 1. */ in apply_rela()
410 val = (Elf_Addr) me->core_layout.base + me->arch.got_offset + in apply_rela()
411 rela->r_addend - loc; in apply_rela()
413 rc = apply_rela_bits(loc, val, 1, 32, 0, write); in apply_rela()
415 rc = apply_rela_bits(loc, val, 1, 32, 1, write); in apply_rela()
422 modules linked with -shared. */ in apply_rela()
423 return -ENOEXEC; in apply_rela()
426 me->name, r_type); in apply_rela()
427 return -ENOEXEC; in apply_rela()
432 me->name, strtab + symtab[r_sym].st_name, in apply_rela()
469 bool early = me->state == MODULE_STATE_UNFORMED; in apply_relocate_add()
487 size = FTRACE_HOTPATCH_TRAMPOLINES_SIZE(s->sh_size); in module_alloc_ftrace_hotpatch_trampolines()
491 return -ENOMEM; in module_alloc_ftrace_hotpatch_trampolines()
495 me->arch.trampolines_start = (struct ftrace_hotpatch_trampoline *)start; in module_alloc_ftrace_hotpatch_trampolines()
496 me->arch.trampolines_end = (struct ftrace_hotpatch_trampoline *)end; in module_alloc_ftrace_hotpatch_trampolines()
497 me->arch.next_trampoline = me->arch.trampolines_start; in module_alloc_ftrace_hotpatch_trampolines()
515 !nospec_disable && me->arch.plt_size) { in module_finalize()
518 ij = me->core_layout.base + me->arch.plt_offset + in module_finalize()
519 me->arch.plt_size - PLT_ENTRY_SIZE; in module_finalize()
525 secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset; in module_finalize()
526 for (s = sechdrs; s < sechdrs + hdr->e_shnum; s++) { in module_finalize()
527 aseg = (void *) s->sh_addr; in module_finalize()
528 secname = secstrings + s->sh_name; in module_finalize()
532 apply_alternatives(aseg, aseg + s->sh_size); in module_finalize()
536 nospec_revert(aseg, aseg + s->sh_size); in module_finalize()
540 nospec_revert(aseg, aseg + s->sh_size); in module_finalize()