2 * arch/arm/kernel/kprobes-common.c
4 * Copyright (C) 2011 Jon Medhurst <tixy@yxit.co.uk>.
6 * Some contents moved here from arch/arm/include/asm/kprobes-arm.c which is
7 * Copyright (C) 2006, 2007 Motorola Inc.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/kprobes.h>
20 #ifndef find_str_pc_offset
23 * For STR and STM instructions, an ARM core may choose to use either
24 * a +8 or a +12 displacement from the current instruction's address.
25 * Whichever value is chosen for a given core, it must be the same for
26 * both instructions and may not change. This function measures it.
31 void __init find_str_pc_offset(void)
33 int addr, scratch, ret;
36 "sub %[ret], pc, #4 \n\t"
37 "str pc, %[addr] \n\t"
38 "ldr %[scr], %[addr] \n\t"
39 "sub %[ret], %[scr], %[ret] \n\t"
40 : [ret] "=r" (ret), [scr] "=r" (scratch), [addr] "+m" (addr));
45 #endif /* !find_str_pc_offset */
48 #ifndef test_load_write_pc_interworking
50 bool load_write_pc_interworks;
52 void __init test_load_write_pc_interworking(void)
54 int arch = cpu_architecture();
55 BUG_ON(arch == CPU_ARCH_UNKNOWN);
56 load_write_pc_interworks = arch >= CPU_ARCH_ARMv5T;
59 #endif /* !test_load_write_pc_interworking */
62 #ifndef test_alu_write_pc_interworking
64 bool alu_write_pc_interworks;
66 void __init test_alu_write_pc_interworking(void)
68 int arch = cpu_architecture();
69 BUG_ON(arch == CPU_ARCH_UNKNOWN);
70 alu_write_pc_interworks = arch >= CPU_ARCH_ARMv7;
73 #endif /* !test_alu_write_pc_interworking */
76 void __init arm_kprobe_decode_init(void)
79 test_load_write_pc_interworking();
80 test_alu_write_pc_interworking();
84 static unsigned long __kprobes __check_eq(unsigned long cpsr)
86 return cpsr & PSR_Z_BIT;
89 static unsigned long __kprobes __check_ne(unsigned long cpsr)
91 return (~cpsr) & PSR_Z_BIT;
94 static unsigned long __kprobes __check_cs(unsigned long cpsr)
96 return cpsr & PSR_C_BIT;
99 static unsigned long __kprobes __check_cc(unsigned long cpsr)
101 return (~cpsr) & PSR_C_BIT;
104 static unsigned long __kprobes __check_mi(unsigned long cpsr)
106 return cpsr & PSR_N_BIT;
109 static unsigned long __kprobes __check_pl(unsigned long cpsr)
111 return (~cpsr) & PSR_N_BIT;
114 static unsigned long __kprobes __check_vs(unsigned long cpsr)
116 return cpsr & PSR_V_BIT;
119 static unsigned long __kprobes __check_vc(unsigned long cpsr)
121 return (~cpsr) & PSR_V_BIT;
124 static unsigned long __kprobes __check_hi(unsigned long cpsr)
126 cpsr &= ~(cpsr >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */
127 return cpsr & PSR_C_BIT;
130 static unsigned long __kprobes __check_ls(unsigned long cpsr)
132 cpsr &= ~(cpsr >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */
133 return (~cpsr) & PSR_C_BIT;
136 static unsigned long __kprobes __check_ge(unsigned long cpsr)
138 cpsr ^= (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */
139 return (~cpsr) & PSR_N_BIT;
142 static unsigned long __kprobes __check_lt(unsigned long cpsr)
144 cpsr ^= (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */
145 return cpsr & PSR_N_BIT;
148 static unsigned long __kprobes __check_gt(unsigned long cpsr)
150 unsigned long temp = cpsr ^ (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */
151 temp |= (cpsr << 1); /* PSR_N_BIT |= PSR_Z_BIT */
152 return (~temp) & PSR_N_BIT;
155 static unsigned long __kprobes __check_le(unsigned long cpsr)
157 unsigned long temp = cpsr ^ (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */
158 temp |= (cpsr << 1); /* PSR_N_BIT |= PSR_Z_BIT */
159 return temp & PSR_N_BIT;
162 static unsigned long __kprobes __check_al(unsigned long cpsr)
167 kprobe_check_cc * const kprobe_condition_checks[16] = {
168 &__check_eq, &__check_ne, &__check_cs, &__check_cc,
169 &__check_mi, &__check_pl, &__check_vs, &__check_vc,
170 &__check_hi, &__check_ls, &__check_ge, &__check_lt,
171 &__check_gt, &__check_le, &__check_al, &__check_al
175 void __kprobes kprobe_simulate_nop(struct kprobe *p, struct pt_regs *regs)
179 void __kprobes kprobe_emulate_none(struct kprobe *p, struct pt_regs *regs)
184 static void __kprobes simulate_ldm1stm1(struct kprobe *p, struct pt_regs *regs)
186 kprobe_opcode_t insn = p->opcode;
187 int rn = (insn >> 16) & 0xf;
188 int lbit = insn & (1 << 20);
189 int wbit = insn & (1 << 21);
190 int ubit = insn & (1 << 23);
191 int pbit = insn & (1 << 24);
192 long *addr = (long *)regs->uregs[rn];
197 reg_bit_vector = insn & 0xffff;
198 while (reg_bit_vector) {
199 reg_bit_vector &= (reg_bit_vector - 1);
205 addr += (!pbit == !ubit);
207 reg_bit_vector = insn & 0xffff;
208 while (reg_bit_vector) {
209 int reg = __ffs(reg_bit_vector);
210 reg_bit_vector &= (reg_bit_vector - 1);
212 regs->uregs[reg] = *addr++;
214 *addr++ = regs->uregs[reg];
220 addr -= (!pbit == !ubit);
221 regs->uregs[rn] = (long)addr;
225 static void __kprobes simulate_stm1_pc(struct kprobe *p, struct pt_regs *regs)
227 regs->ARM_pc = (long)p->addr + str_pc_offset;
228 simulate_ldm1stm1(p, regs);
229 regs->ARM_pc = (long)p->addr + 4;
232 static void __kprobes simulate_ldm1_pc(struct kprobe *p, struct pt_regs *regs)
234 simulate_ldm1stm1(p, regs);
235 load_write_pc(regs->ARM_pc, regs);
238 static void __kprobes
239 emulate_generic_r0_12_noflags(struct kprobe *p, struct pt_regs *regs)
241 register void *rregs asm("r1") = regs;
242 register void *rfn asm("lr") = p->ainsn.insn_fn;
244 __asm__ __volatile__ (
245 "stmdb sp!, {%[regs], r11} \n\t"
246 "ldmia %[regs], {r0-r12} \n\t"
247 #if __LINUX_ARM_ARCH__ >= 6
250 "str %[fn], [sp, #-4]! \n\t"
252 "ldr pc, [sp], #4 \n\t"
255 "ldr lr, [sp], #4 \n\t" /* lr = regs */
256 "stmia lr, {r0-r12} \n\t"
257 "ldr r11, [sp], #4 \n\t"
258 : [regs] "=r" (rregs), [fn] "=r" (rfn)
259 : "0" (rregs), "1" (rfn)
260 : "r0", "r2", "r3", "r4", "r5", "r6", "r7",
261 "r8", "r9", "r10", "r12", "memory", "cc"
265 static void __kprobes
266 emulate_generic_r2_14_noflags(struct kprobe *p, struct pt_regs *regs)
268 emulate_generic_r0_12_noflags(p, (struct pt_regs *)(regs->uregs+2));
271 static void __kprobes
272 emulate_ldm_r3_15(struct kprobe *p, struct pt_regs *regs)
274 emulate_generic_r0_12_noflags(p, (struct pt_regs *)(regs->uregs+3));
275 load_write_pc(regs->ARM_pc, regs);
278 enum kprobe_insn __kprobes
279 kprobe_decode_ldmstm(kprobe_opcode_t insn, struct arch_specific_insn *asi)
281 kprobe_insn_handler_t *handler = 0;
282 unsigned reglist = insn & 0xffff;
283 int is_ldm = insn & 0x100000;
284 int rn = (insn >> 16) & 0xf;
286 if (rn <= 12 && (reglist & 0xe000) == 0) {
287 /* Instruction only uses registers in the range R0..R12 */
288 handler = emulate_generic_r0_12_noflags;
290 } else if (rn >= 2 && (reglist & 0x8003) == 0) {
291 /* Instruction only uses registers in the range R2..R14 */
294 handler = emulate_generic_r2_14_noflags;
296 } else if (rn >= 3 && (reglist & 0x0007) == 0) {
297 /* Instruction only uses registers in the range R3..R15 */
298 if (is_ldm && (reglist & 0x8000)) {
301 handler = emulate_ldm_r3_15;
306 /* We can emulate the instruction in (possibly) modified form */
307 asi->insn[0] = (insn & 0xfff00000) | (rn << 16) | reglist;
308 asi->insn_handler = handler;
312 /* Fallback to slower simulation... */
313 if (reglist & 0x8000)
314 handler = is_ldm ? simulate_ldm1_pc : simulate_stm1_pc;
316 handler = simulate_ldm1stm1;
317 asi->insn_handler = handler;
318 return INSN_GOOD_NO_SLOT;
323 * Prepare an instruction slot to receive an instruction for emulating.
324 * This is done by placing a subroutine return after the location where the
325 * instruction will be placed. We also modify ARM instructions to be
326 * unconditional as the condition code will already be checked before any
327 * emulation handler is called.
329 static kprobe_opcode_t __kprobes
330 prepare_emulated_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi,
333 #ifdef CONFIG_THUMB2_KERNEL
335 u16 *thumb_insn = (u16 *)asi->insn;
336 thumb_insn[1] = 0x4770; /* Thumb bx lr */
337 thumb_insn[2] = 0x4770; /* Thumb bx lr */
340 asi->insn[1] = 0xe12fff1e; /* ARM bx lr */
342 asi->insn[1] = 0xe1a0f00e; /* mov pc, lr */
344 /* Make an ARM instruction unconditional */
345 if (insn < 0xe0000000)
346 insn = (insn | 0xe0000000) & ~0x10000000;
351 * Write a (probably modified) instruction into the slot previously prepared by
352 * prepare_emulated_insn
354 static void __kprobes
355 set_emulated_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi,
358 #ifdef CONFIG_THUMB2_KERNEL
360 u16 *ip = (u16 *)asi->insn;
361 if (is_wide_instruction(insn))
371 * When we modify the register numbers encoded in an instruction to be emulated,
372 * the new values come from this define. For ARM and 32-bit Thumb instructions
375 * bit position 16 12 8 4 0
376 * ---------------+---+---+---+---+---+
377 * register r2 r0 r1 -- r3
379 #define INSN_NEW_BITS 0x00020103
381 /* Each nibble has same value as that at INSN_NEW_BITS bit 16 */
382 #define INSN_SAMEAS16_BITS 0x22222222
385 * Validate and modify each of the registers encoded in an instruction.
387 * Each nibble in regs contains a value from enum decode_reg_type. For each
388 * non-zero value, the corresponding nibble in pinsn is validated and modified
389 * according to the type.
391 static bool __kprobes decode_regs(kprobe_opcode_t* pinsn, u32 regs)
393 kprobe_opcode_t insn = *pinsn;
394 kprobe_opcode_t mask = 0xf; /* Start at least significant nibble */
396 for (; regs != 0; regs >>= 4, mask <<= 4) {
398 kprobe_opcode_t new_bits = INSN_NEW_BITS;
400 switch (regs & 0xf) {
403 /* Nibble not a register, skip to next */
407 /* Any register is allowed */
410 case REG_TYPE_SAMEAS16:
411 /* Replace register with same as at bit position 16 */
412 new_bits = INSN_SAMEAS16_BITS;
416 /* Only allow SP (R13) */
417 if ((insn ^ 0xdddddddd) & mask)
422 /* Only allow PC (R15) */
423 if ((insn ^ 0xffffffff) & mask)
428 /* Reject SP (R13) */
429 if (((insn ^ 0xdddddddd) & mask) == 0)
433 case REG_TYPE_NOSPPC:
434 case REG_TYPE_NOSPPCX:
435 /* Reject SP and PC (R13 and R15) */
436 if (((insn ^ 0xdddddddd) & 0xdddddddd & mask) == 0)
440 case REG_TYPE_NOPCWB:
441 if (!is_writeback(insn))
442 break; /* No writeback, so any register is OK */
443 /* fall through... */
446 /* Reject PC (R15) */
447 if (((insn ^ 0xffffffff) & mask) == 0)
452 /* Replace value of nibble with new register number... */
454 insn |= new_bits & mask;
464 static const int decode_struct_sizes[NUM_DECODE_TYPES] = {
465 [DECODE_TYPE_TABLE] = sizeof(struct decode_table),
466 [DECODE_TYPE_CUSTOM] = sizeof(struct decode_custom),
467 [DECODE_TYPE_SIMULATE] = sizeof(struct decode_simulate),
468 [DECODE_TYPE_EMULATE] = sizeof(struct decode_emulate),
469 [DECODE_TYPE_OR] = sizeof(struct decode_or),
470 [DECODE_TYPE_REJECT] = sizeof(struct decode_reject)
474 * kprobe_decode_insn operates on data tables in order to decode an ARM
475 * architecture instruction onto which a kprobe has been placed.
477 * These instruction decoding tables are a concatenation of entries each
478 * of which consist of one of the following structs:
487 * Each of these starts with a struct decode_header which has the following
494 * The least significant DECODE_TYPE_BITS of type_regs contains a value
495 * from enum decode_type, this indicates which of the decode_* structs
496 * the entry contains. The value DECODE_TYPE_END indicates the end of the
499 * When the table is parsed, each entry is checked in turn to see if it
500 * matches the instruction to be decoded using the test:
502 * (insn & mask) == value
504 * If no match is found before the end of the table is reached then decoding
505 * fails with INSN_REJECTED.
507 * When a match is found, decode_regs() is called to validate and modify each
508 * of the registers encoded in the instruction; the data it uses to do this
509 * is (type_regs >> DECODE_TYPE_BITS). A validation failure will cause decoding
510 * to fail with INSN_REJECTED.
512 * Once the instruction has passed the above tests, further processing
513 * depends on the type of the table entry's decode struct.
517 kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi,
518 const union decode_item *table, bool thumb)
520 const struct decode_header *h = (struct decode_header *)table;
521 const struct decode_header *next;
522 bool matched = false;
524 insn = prepare_emulated_insn(insn, asi, thumb);
527 enum decode_type type = h->type_regs.bits & DECODE_TYPE_MASK;
528 u32 regs = h->type_regs.bits >> DECODE_TYPE_BITS;
530 if (type == DECODE_TYPE_END)
531 return INSN_REJECTED;
533 next = (struct decode_header *)
534 ((uintptr_t)h + decode_struct_sizes[type]);
536 if (!matched && (insn & h->mask.bits) != h->value.bits)
539 if (!decode_regs(&insn, regs))
540 return INSN_REJECTED;
544 case DECODE_TYPE_TABLE: {
545 struct decode_table *d = (struct decode_table *)h;
546 next = (struct decode_header *)d->table.table;
550 case DECODE_TYPE_CUSTOM: {
551 struct decode_custom *d = (struct decode_custom *)h;
552 return (*d->decoder.decoder)(insn, asi);
555 case DECODE_TYPE_SIMULATE: {
556 struct decode_simulate *d = (struct decode_simulate *)h;
557 asi->insn_handler = d->handler.handler;
558 return INSN_GOOD_NO_SLOT;
561 case DECODE_TYPE_EMULATE: {
562 struct decode_emulate *d = (struct decode_emulate *)h;
563 asi->insn_handler = d->handler.handler;
564 set_emulated_insn(insn, asi, thumb);
572 case DECODE_TYPE_REJECT:
574 return INSN_REJECTED;