blob: 22ef48ff2da26557d58a2e3b2b0bd5b0c0c449c9 [file] [log] [blame]
Will Deacon257cb252012-03-05 11:49:33 +00001/*
2 * AArch64 loadable module support.
3 *
4 * Copyright (C) 2012 ARM Limited
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * Author: Will Deacon <will.deacon@arm.com>
19 */
20
21#include <linux/bitops.h>
22#include <linux/elf.h>
23#include <linux/gfp.h>
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030024#include <linux/kasan.h>
Will Deacon257cb252012-03-05 11:49:33 +000025#include <linux/kernel.h>
26#include <linux/mm.h>
27#include <linux/moduleloader.h>
28#include <linux/vmalloc.h>
Paul Walmsley2c2b2822015-01-05 17:38:41 -070029#include <asm/alternative.h>
Jiang Liuc84fced2014-01-07 22:17:10 +080030#include <asm/insn.h>
Andre Przywara932ded42014-11-28 13:40:45 +000031#include <asm/sections.h>
Jiang Liuc84fced2014-01-07 22:17:10 +080032
Will Deacon257cb252012-03-05 11:49:33 +000033void *module_alloc(unsigned long size)
34{
Florian Fainellifd491d32017-04-27 11:19:02 -070035 gfp_t gfp_mask = GFP_KERNEL;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030036 void *p;
Ard Biesheuveldd862502019-06-25 19:08:54 +020037 u64 module_alloc_end = module_alloc_base + MODULES_VSIZE;
38
39 if (IS_ENABLED(CONFIG_KASAN))
40 /* don't exceed the static module region - see below */
41 module_alloc_end = MODULES_END;
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030042
Florian Fainellifd491d32017-04-27 11:19:02 -070043 /* Silence the initial allocation */
44 if (IS_ENABLED(CONFIG_ARM64_MODULE_PLTS))
45 gfp_mask |= __GFP_NOWARN;
46
Ard Biesheuvelf80fb3a2016-01-26 14:12:01 +010047 p = __vmalloc_node_range(size, MODULE_ALIGN, module_alloc_base,
jianzhoudd975752019-08-07 16:36:14 +080048 module_alloc_end, gfp_mask, PAGE_KERNEL_EXEC, 0,
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030049 NUMA_NO_NODE, __builtin_return_address(0));
50
Ard Biesheuvelfd045f62015-11-24 12:37:35 +010051 if (!p && IS_ENABLED(CONFIG_ARM64_MODULE_PLTS) &&
52 !IS_ENABLED(CONFIG_KASAN))
53 /*
54 * KASAN can only deal with module allocations being served
55 * from the reserved module region, since the remainder of
56 * the vmalloc region is already backed by zero shadow pages,
57 * and punching holes into it is non-trivial. Since the module
58 * region is not randomized when KASAN is enabled, it is even
59 * less likely that the module region gets exhausted, so we
60 * can simply omit this fallback in that case.
61 */
62 p = __vmalloc_node_range(size, MODULE_ALIGN, VMALLOC_START,
63 VMALLOC_END, GFP_KERNEL, PAGE_KERNEL_EXEC, 0,
64 NUMA_NO_NODE, __builtin_return_address(0));
65
Andrey Ryabinin39d114d2015-10-12 18:52:58 +030066 if (p && (kasan_module_alloc(p, size) < 0)) {
67 vfree(p);
68 return NULL;
69 }
70
71 return p;
Will Deacon257cb252012-03-05 11:49:33 +000072}
73
74enum aarch64_reloc_op {
75 RELOC_OP_NONE,
76 RELOC_OP_ABS,
77 RELOC_OP_PREL,
78 RELOC_OP_PAGE,
79};
80
81static u64 do_reloc(enum aarch64_reloc_op reloc_op, void *place, u64 val)
82{
83 switch (reloc_op) {
84 case RELOC_OP_ABS:
85 return val;
86 case RELOC_OP_PREL:
87 return val - (u64)place;
88 case RELOC_OP_PAGE:
89 return (val & ~0xfff) - ((u64)place & ~0xfff);
90 case RELOC_OP_NONE:
91 return 0;
92 }
93
94 pr_err("do_reloc: unknown relocation operation %d\n", reloc_op);
95 return 0;
96}
97
98static int reloc_data(enum aarch64_reloc_op op, void *place, u64 val, int len)
99{
Will Deacon257cb252012-03-05 11:49:33 +0000100 s64 sval = do_reloc(op, place, val);
101
102 switch (len) {
103 case 16:
104 *(s16 *)place = sval;
Ard Biesheuvelf9308962016-01-05 10:18:52 +0100105 if (sval < S16_MIN || sval > U16_MAX)
106 return -ERANGE;
Will Deacon257cb252012-03-05 11:49:33 +0000107 break;
108 case 32:
109 *(s32 *)place = sval;
Ard Biesheuvelf9308962016-01-05 10:18:52 +0100110 if (sval < S32_MIN || sval > U32_MAX)
111 return -ERANGE;
Will Deacon257cb252012-03-05 11:49:33 +0000112 break;
113 case 64:
114 *(s64 *)place = sval;
115 break;
116 default:
117 pr_err("Invalid length (%d) for data relocation\n", len);
118 return 0;
119 }
Will Deacon257cb252012-03-05 11:49:33 +0000120 return 0;
121}
122
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100123enum aarch64_insn_movw_imm_type {
124 AARCH64_INSN_IMM_MOVNZ,
125 AARCH64_INSN_IMM_MOVKZ,
126};
127
Jiang Liuc84fced2014-01-07 22:17:10 +0800128static int reloc_insn_movw(enum aarch64_reloc_op op, void *place, u64 val,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100129 int lsb, enum aarch64_insn_movw_imm_type imm_type)
Will Deacon257cb252012-03-05 11:49:33 +0000130{
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100131 u64 imm;
Jiang Liuc84fced2014-01-07 22:17:10 +0800132 s64 sval;
133 u32 insn = le32_to_cpu(*(u32 *)place);
Will Deacon257cb252012-03-05 11:49:33 +0000134
Jiang Liuc84fced2014-01-07 22:17:10 +0800135 sval = do_reloc(op, place, val);
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100136 imm = sval >> lsb;
Will Deacon122e2fa2013-11-05 10:16:52 +0000137
Jiang Liuc84fced2014-01-07 22:17:10 +0800138 if (imm_type == AARCH64_INSN_IMM_MOVNZ) {
Will Deacon257cb252012-03-05 11:49:33 +0000139 /*
140 * For signed MOVW relocations, we have to manipulate the
141 * instruction encoding depending on whether or not the
142 * immediate is less than zero.
143 */
144 insn &= ~(3 << 29);
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100145 if (sval >= 0) {
Will Deacon257cb252012-03-05 11:49:33 +0000146 /* >=0: Set the instruction to MOVZ (opcode 10b). */
147 insn |= 2 << 29;
148 } else {
149 /*
150 * <0: Set the instruction to MOVN (opcode 00b).
151 * Since we've masked the opcode already, we
152 * don't need to do anything other than
153 * inverting the new immediate field.
154 */
155 imm = ~imm;
156 }
Will Deacon257cb252012-03-05 11:49:33 +0000157 }
158
Will Deacon257cb252012-03-05 11:49:33 +0000159 /* Update the instruction with the new encoding. */
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100160 insn = aarch64_insn_encode_immediate(AARCH64_INSN_IMM_16, insn, imm);
Jiang Liuc84fced2014-01-07 22:17:10 +0800161 *(u32 *)place = cpu_to_le32(insn);
Will Deacon257cb252012-03-05 11:49:33 +0000162
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100163 if (imm > U16_MAX)
Will Deacon257cb252012-03-05 11:49:33 +0000164 return -ERANGE;
165
166 return 0;
167}
168
169static int reloc_insn_imm(enum aarch64_reloc_op op, void *place, u64 val,
Jiang Liuc84fced2014-01-07 22:17:10 +0800170 int lsb, int len, enum aarch64_insn_imm_type imm_type)
Will Deacon257cb252012-03-05 11:49:33 +0000171{
172 u64 imm, imm_mask;
173 s64 sval;
Jiang Liuc84fced2014-01-07 22:17:10 +0800174 u32 insn = le32_to_cpu(*(u32 *)place);
Will Deacon257cb252012-03-05 11:49:33 +0000175
176 /* Calculate the relocation value. */
177 sval = do_reloc(op, place, val);
178 sval >>= lsb;
179
180 /* Extract the value bits and shift them to bit 0. */
181 imm_mask = (BIT(lsb + len) - 1) >> lsb;
182 imm = sval & imm_mask;
183
184 /* Update the instruction's immediate field. */
Jiang Liuc84fced2014-01-07 22:17:10 +0800185 insn = aarch64_insn_encode_immediate(imm_type, insn, imm);
186 *(u32 *)place = cpu_to_le32(insn);
Will Deacon257cb252012-03-05 11:49:33 +0000187
188 /*
189 * Extract the upper value bits (including the sign bit) and
190 * shift them to bit 0.
191 */
192 sval = (s64)(sval & ~(imm_mask >> 1)) >> (len - 1);
193
194 /*
195 * Overflow has occurred if the upper bits are not all equal to
196 * the sign bit of the value.
197 */
198 if ((u64)(sval + 1) >= 2)
199 return -ERANGE;
200
201 return 0;
202}
203
204int apply_relocate_add(Elf64_Shdr *sechdrs,
205 const char *strtab,
206 unsigned int symindex,
207 unsigned int relsec,
208 struct module *me)
209{
210 unsigned int i;
211 int ovf;
212 bool overflow_check;
213 Elf64_Sym *sym;
214 void *loc;
215 u64 val;
216 Elf64_Rela *rel = (void *)sechdrs[relsec].sh_addr;
217
218 for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) {
219 /* loc corresponds to P in the AArch64 ELF document. */
220 loc = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr
221 + rel[i].r_offset;
222
223 /* sym is the ELF symbol we're referring to. */
224 sym = (Elf64_Sym *)sechdrs[symindex].sh_addr
225 + ELF64_R_SYM(rel[i].r_info);
226
227 /* val corresponds to (S + A) in the AArch64 ELF document. */
228 val = sym->st_value + rel[i].r_addend;
229
230 /* Check for overflow by default. */
231 overflow_check = true;
232
233 /* Perform the static relocation. */
234 switch (ELF64_R_TYPE(rel[i].r_info)) {
235 /* Null relocations. */
236 case R_ARM_NONE:
237 case R_AARCH64_NONE:
238 ovf = 0;
239 break;
240
241 /* Data relocations. */
242 case R_AARCH64_ABS64:
243 overflow_check = false;
244 ovf = reloc_data(RELOC_OP_ABS, loc, val, 64);
245 break;
246 case R_AARCH64_ABS32:
247 ovf = reloc_data(RELOC_OP_ABS, loc, val, 32);
248 break;
249 case R_AARCH64_ABS16:
250 ovf = reloc_data(RELOC_OP_ABS, loc, val, 16);
251 break;
252 case R_AARCH64_PREL64:
253 overflow_check = false;
254 ovf = reloc_data(RELOC_OP_PREL, loc, val, 64);
255 break;
256 case R_AARCH64_PREL32:
257 ovf = reloc_data(RELOC_OP_PREL, loc, val, 32);
258 break;
259 case R_AARCH64_PREL16:
260 ovf = reloc_data(RELOC_OP_PREL, loc, val, 16);
261 break;
262
263 /* MOVW instruction relocations. */
264 case R_AARCH64_MOVW_UABS_G0_NC:
265 overflow_check = false;
266 case R_AARCH64_MOVW_UABS_G0:
267 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 0,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100268 AARCH64_INSN_IMM_MOVKZ);
Will Deacon257cb252012-03-05 11:49:33 +0000269 break;
270 case R_AARCH64_MOVW_UABS_G1_NC:
271 overflow_check = false;
272 case R_AARCH64_MOVW_UABS_G1:
273 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 16,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100274 AARCH64_INSN_IMM_MOVKZ);
Will Deacon257cb252012-03-05 11:49:33 +0000275 break;
276 case R_AARCH64_MOVW_UABS_G2_NC:
277 overflow_check = false;
278 case R_AARCH64_MOVW_UABS_G2:
279 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 32,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100280 AARCH64_INSN_IMM_MOVKZ);
Will Deacon257cb252012-03-05 11:49:33 +0000281 break;
282 case R_AARCH64_MOVW_UABS_G3:
283 /* We're using the top bits so we can't overflow. */
284 overflow_check = false;
285 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 48,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100286 AARCH64_INSN_IMM_MOVKZ);
Will Deacon257cb252012-03-05 11:49:33 +0000287 break;
288 case R_AARCH64_MOVW_SABS_G0:
289 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 0,
Jiang Liuc84fced2014-01-07 22:17:10 +0800290 AARCH64_INSN_IMM_MOVNZ);
Will Deacon257cb252012-03-05 11:49:33 +0000291 break;
292 case R_AARCH64_MOVW_SABS_G1:
293 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 16,
Jiang Liuc84fced2014-01-07 22:17:10 +0800294 AARCH64_INSN_IMM_MOVNZ);
Will Deacon257cb252012-03-05 11:49:33 +0000295 break;
296 case R_AARCH64_MOVW_SABS_G2:
297 ovf = reloc_insn_movw(RELOC_OP_ABS, loc, val, 32,
Jiang Liuc84fced2014-01-07 22:17:10 +0800298 AARCH64_INSN_IMM_MOVNZ);
Will Deacon257cb252012-03-05 11:49:33 +0000299 break;
300 case R_AARCH64_MOVW_PREL_G0_NC:
301 overflow_check = false;
302 ovf = reloc_insn_movw(RELOC_OP_PREL, loc, val, 0,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100303 AARCH64_INSN_IMM_MOVKZ);
Will Deacon257cb252012-03-05 11:49:33 +0000304 break;
305 case R_AARCH64_MOVW_PREL_G0:
306 ovf = reloc_insn_movw(RELOC_OP_PREL, loc, val, 0,
Jiang Liuc84fced2014-01-07 22:17:10 +0800307 AARCH64_INSN_IMM_MOVNZ);
Will Deacon257cb252012-03-05 11:49:33 +0000308 break;
309 case R_AARCH64_MOVW_PREL_G1_NC:
310 overflow_check = false;
311 ovf = reloc_insn_movw(RELOC_OP_PREL, loc, val, 16,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100312 AARCH64_INSN_IMM_MOVKZ);
Will Deacon257cb252012-03-05 11:49:33 +0000313 break;
314 case R_AARCH64_MOVW_PREL_G1:
315 ovf = reloc_insn_movw(RELOC_OP_PREL, loc, val, 16,
Jiang Liuc84fced2014-01-07 22:17:10 +0800316 AARCH64_INSN_IMM_MOVNZ);
Will Deacon257cb252012-03-05 11:49:33 +0000317 break;
318 case R_AARCH64_MOVW_PREL_G2_NC:
319 overflow_check = false;
320 ovf = reloc_insn_movw(RELOC_OP_PREL, loc, val, 32,
Ard Biesheuvelb24a5572016-01-05 10:18:51 +0100321 AARCH64_INSN_IMM_MOVKZ);
Will Deacon257cb252012-03-05 11:49:33 +0000322 break;
323 case R_AARCH64_MOVW_PREL_G2:
324 ovf = reloc_insn_movw(RELOC_OP_PREL, loc, val, 32,
Jiang Liuc84fced2014-01-07 22:17:10 +0800325 AARCH64_INSN_IMM_MOVNZ);
Will Deacon257cb252012-03-05 11:49:33 +0000326 break;
327 case R_AARCH64_MOVW_PREL_G3:
328 /* We're using the top bits so we can't overflow. */
329 overflow_check = false;
330 ovf = reloc_insn_movw(RELOC_OP_PREL, loc, val, 48,
Jiang Liuc84fced2014-01-07 22:17:10 +0800331 AARCH64_INSN_IMM_MOVNZ);
Will Deacon257cb252012-03-05 11:49:33 +0000332 break;
333
334 /* Immediate instruction relocations. */
335 case R_AARCH64_LD_PREL_LO19:
336 ovf = reloc_insn_imm(RELOC_OP_PREL, loc, val, 2, 19,
Jiang Liuc84fced2014-01-07 22:17:10 +0800337 AARCH64_INSN_IMM_19);
Will Deacon257cb252012-03-05 11:49:33 +0000338 break;
339 case R_AARCH64_ADR_PREL_LO21:
340 ovf = reloc_insn_imm(RELOC_OP_PREL, loc, val, 0, 21,
Jiang Liuc84fced2014-01-07 22:17:10 +0800341 AARCH64_INSN_IMM_ADR);
Will Deacon257cb252012-03-05 11:49:33 +0000342 break;
Will Deacondf057cc2015-03-17 12:15:02 +0000343#ifndef CONFIG_ARM64_ERRATUM_843419
Will Deacon257cb252012-03-05 11:49:33 +0000344 case R_AARCH64_ADR_PREL_PG_HI21_NC:
345 overflow_check = false;
346 case R_AARCH64_ADR_PREL_PG_HI21:
347 ovf = reloc_insn_imm(RELOC_OP_PAGE, loc, val, 12, 21,
Jiang Liuc84fced2014-01-07 22:17:10 +0800348 AARCH64_INSN_IMM_ADR);
Will Deacon257cb252012-03-05 11:49:33 +0000349 break;
Will Deacondf057cc2015-03-17 12:15:02 +0000350#endif
Will Deacon257cb252012-03-05 11:49:33 +0000351 case R_AARCH64_ADD_ABS_LO12_NC:
352 case R_AARCH64_LDST8_ABS_LO12_NC:
353 overflow_check = false;
354 ovf = reloc_insn_imm(RELOC_OP_ABS, loc, val, 0, 12,
Jiang Liuc84fced2014-01-07 22:17:10 +0800355 AARCH64_INSN_IMM_12);
Will Deacon257cb252012-03-05 11:49:33 +0000356 break;
357 case R_AARCH64_LDST16_ABS_LO12_NC:
358 overflow_check = false;
359 ovf = reloc_insn_imm(RELOC_OP_ABS, loc, val, 1, 11,
Jiang Liuc84fced2014-01-07 22:17:10 +0800360 AARCH64_INSN_IMM_12);
Will Deacon257cb252012-03-05 11:49:33 +0000361 break;
362 case R_AARCH64_LDST32_ABS_LO12_NC:
363 overflow_check = false;
364 ovf = reloc_insn_imm(RELOC_OP_ABS, loc, val, 2, 10,
Jiang Liuc84fced2014-01-07 22:17:10 +0800365 AARCH64_INSN_IMM_12);
Will Deacon257cb252012-03-05 11:49:33 +0000366 break;
367 case R_AARCH64_LDST64_ABS_LO12_NC:
368 overflow_check = false;
369 ovf = reloc_insn_imm(RELOC_OP_ABS, loc, val, 3, 9,
Jiang Liuc84fced2014-01-07 22:17:10 +0800370 AARCH64_INSN_IMM_12);
Will Deacon257cb252012-03-05 11:49:33 +0000371 break;
372 case R_AARCH64_LDST128_ABS_LO12_NC:
373 overflow_check = false;
374 ovf = reloc_insn_imm(RELOC_OP_ABS, loc, val, 4, 8,
Jiang Liuc84fced2014-01-07 22:17:10 +0800375 AARCH64_INSN_IMM_12);
Will Deacon257cb252012-03-05 11:49:33 +0000376 break;
377 case R_AARCH64_TSTBR14:
378 ovf = reloc_insn_imm(RELOC_OP_PREL, loc, val, 2, 14,
Jiang Liuc84fced2014-01-07 22:17:10 +0800379 AARCH64_INSN_IMM_14);
Will Deacon257cb252012-03-05 11:49:33 +0000380 break;
381 case R_AARCH64_CONDBR19:
382 ovf = reloc_insn_imm(RELOC_OP_PREL, loc, val, 2, 19,
Jiang Liuc84fced2014-01-07 22:17:10 +0800383 AARCH64_INSN_IMM_19);
Will Deacon257cb252012-03-05 11:49:33 +0000384 break;
385 case R_AARCH64_JUMP26:
386 case R_AARCH64_CALL26:
387 ovf = reloc_insn_imm(RELOC_OP_PREL, loc, val, 2, 26,
Jiang Liuc84fced2014-01-07 22:17:10 +0800388 AARCH64_INSN_IMM_26);
Ard Biesheuvelfd045f62015-11-24 12:37:35 +0100389
390 if (IS_ENABLED(CONFIG_ARM64_MODULE_PLTS) &&
391 ovf == -ERANGE) {
Ard Biesheuvel92abb7f2017-02-21 22:12:57 +0000392 val = module_emit_plt_entry(me, loc, &rel[i], sym);
Ard Biesheuvelfd045f62015-11-24 12:37:35 +0100393 ovf = reloc_insn_imm(RELOC_OP_PREL, loc, val, 2,
394 26, AARCH64_INSN_IMM_26);
395 }
Will Deacon257cb252012-03-05 11:49:33 +0000396 break;
397
398 default:
399 pr_err("module %s: unsupported RELA relocation: %llu\n",
400 me->name, ELF64_R_TYPE(rel[i].r_info));
401 return -ENOEXEC;
402 }
403
404 if (overflow_check && ovf == -ERANGE)
405 goto overflow;
406
407 }
408
409 return 0;
410
411overflow:
412 pr_err("module %s: overflow in relocation type %d val %Lx\n",
413 me->name, (int)ELF64_R_TYPE(rel[i].r_info), val);
414 return -ENOEXEC;
415}
Andre Przywara932ded42014-11-28 13:40:45 +0000416
417int module_finalize(const Elf_Ehdr *hdr,
418 const Elf_Shdr *sechdrs,
419 struct module *me)
420{
421 const Elf_Shdr *s, *se;
422 const char *secstrs = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
423
424 for (s = sechdrs, se = sechdrs + hdr->e_shnum; s < se; s++) {
425 if (strcmp(".altinstructions", secstrs + s->sh_name) == 0) {
426 apply_alternatives((void *)s->sh_addr, s->sh_size);
427 return 0;
428 }
429 }
430
431 return 0;
432}