xref: /openbmc/linux/arch/s390/kernel/uprobes.c (revision 4efd417f)
1b2441318SGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0
22a0a5b22SJan Willeke /*
32a0a5b22SJan Willeke  *  User-space Probes (UProbes) for s390
42a0a5b22SJan Willeke  *
52a0a5b22SJan Willeke  *    Copyright IBM Corp. 2014
62a0a5b22SJan Willeke  *    Author(s): Jan Willeke,
72a0a5b22SJan Willeke  */
82a0a5b22SJan Willeke 
92a0a5b22SJan Willeke #include <linux/uaccess.h>
102a0a5b22SJan Willeke #include <linux/uprobes.h>
112a0a5b22SJan Willeke #include <linux/compat.h>
122a0a5b22SJan Willeke #include <linux/kdebug.h>
1368db0cf1SIngo Molnar #include <linux/sched/task_stack.h>
1468db0cf1SIngo Molnar 
152a0a5b22SJan Willeke #include <asm/switch_to.h>
162a0a5b22SJan Willeke #include <asm/facility.h>
17d6fe5be3SJan Willeke #include <asm/kprobes.h>
182a0a5b22SJan Willeke #include <asm/dis.h>
192a0a5b22SJan Willeke #include "entry.h"
202a0a5b22SJan Willeke 
212a0a5b22SJan Willeke #define	UPROBE_TRAP_NR	UINT_MAX
222a0a5b22SJan Willeke 
arch_uprobe_analyze_insn(struct arch_uprobe * auprobe,struct mm_struct * mm,unsigned long addr)232a0a5b22SJan Willeke int arch_uprobe_analyze_insn(struct arch_uprobe *auprobe, struct mm_struct *mm,
242a0a5b22SJan Willeke 			     unsigned long addr)
252a0a5b22SJan Willeke {
262a0a5b22SJan Willeke 	return probe_is_prohibited_opcode(auprobe->insn);
272a0a5b22SJan Willeke }
282a0a5b22SJan Willeke 
arch_uprobe_pre_xol(struct arch_uprobe * auprobe,struct pt_regs * regs)292a0a5b22SJan Willeke int arch_uprobe_pre_xol(struct arch_uprobe *auprobe, struct pt_regs *regs)
302a0a5b22SJan Willeke {
318bb3fdd6SHeiko Carstens 	if (psw_bits(regs->psw).eaba == PSW_BITS_AMODE_24BIT)
322a0a5b22SJan Willeke 		return -EINVAL;
338bb3fdd6SHeiko Carstens 	if (!is_compat_task() && psw_bits(regs->psw).eaba == PSW_BITS_AMODE_31BIT)
342a0a5b22SJan Willeke 		return -EINVAL;
3556e62a73SSven Schnelle 	clear_thread_flag(TIF_PER_TRAP);
36a7525982SHeiko Carstens 	auprobe->saved_per = psw_bits(regs->psw).per;
372a0a5b22SJan Willeke 	auprobe->saved_int_code = regs->int_code;
382a0a5b22SJan Willeke 	regs->int_code = UPROBE_TRAP_NR;
392a0a5b22SJan Willeke 	regs->psw.addr = current->utask->xol_vaddr;
402a0a5b22SJan Willeke 	set_tsk_thread_flag(current, TIF_UPROBE_SINGLESTEP);
412a0a5b22SJan Willeke 	update_cr_regs(current);
422a0a5b22SJan Willeke 	return 0;
432a0a5b22SJan Willeke }
442a0a5b22SJan Willeke 
arch_uprobe_xol_was_trapped(struct task_struct * tsk)452a0a5b22SJan Willeke bool arch_uprobe_xol_was_trapped(struct task_struct *tsk)
462a0a5b22SJan Willeke {
472a0a5b22SJan Willeke 	struct pt_regs *regs = task_pt_regs(tsk);
482a0a5b22SJan Willeke 
492a0a5b22SJan Willeke 	if (regs->int_code != UPROBE_TRAP_NR)
502a0a5b22SJan Willeke 		return true;
512a0a5b22SJan Willeke 	return false;
522a0a5b22SJan Willeke }
532a0a5b22SJan Willeke 
check_per_event(unsigned short cause,unsigned long control,struct pt_regs * regs)548d1a2427SJan Willeke static int check_per_event(unsigned short cause, unsigned long control,
558d1a2427SJan Willeke 			   struct pt_regs *regs)
568d1a2427SJan Willeke {
578d1a2427SJan Willeke 	if (!(regs->psw.mask & PSW_MASK_PER))
588d1a2427SJan Willeke 		return 0;
598d1a2427SJan Willeke 	/* user space single step */
608d1a2427SJan Willeke 	if (control == 0)
618d1a2427SJan Willeke 		return 1;
628d1a2427SJan Willeke 	/* over indication for storage alteration */
638d1a2427SJan Willeke 	if ((control & 0x20200000) && (cause & 0x2000))
648d1a2427SJan Willeke 		return 1;
658d1a2427SJan Willeke 	if (cause & 0x8000) {
668d1a2427SJan Willeke 		/* all branches */
678d1a2427SJan Willeke 		if ((control & 0x80800000) == 0x80000000)
688d1a2427SJan Willeke 			return 1;
698d1a2427SJan Willeke 		/* branch into selected range */
708d1a2427SJan Willeke 		if (((control & 0x80800000) == 0x80800000) &&
718d1a2427SJan Willeke 		    regs->psw.addr >= current->thread.per_user.start &&
728d1a2427SJan Willeke 		    regs->psw.addr <= current->thread.per_user.end)
738d1a2427SJan Willeke 			return 1;
748d1a2427SJan Willeke 	}
758d1a2427SJan Willeke 	return 0;
768d1a2427SJan Willeke }
778d1a2427SJan Willeke 
arch_uprobe_post_xol(struct arch_uprobe * auprobe,struct pt_regs * regs)782a0a5b22SJan Willeke int arch_uprobe_post_xol(struct arch_uprobe *auprobe, struct pt_regs *regs)
792a0a5b22SJan Willeke {
802a0a5b22SJan Willeke 	int fixup = probe_get_fixup_type(auprobe->insn);
812a0a5b22SJan Willeke 	struct uprobe_task *utask = current->utask;
822a0a5b22SJan Willeke 
832a0a5b22SJan Willeke 	clear_tsk_thread_flag(current, TIF_UPROBE_SINGLESTEP);
842a0a5b22SJan Willeke 	update_cr_regs(current);
85a7525982SHeiko Carstens 	psw_bits(regs->psw).per = auprobe->saved_per;
862a0a5b22SJan Willeke 	regs->int_code = auprobe->saved_int_code;
872a0a5b22SJan Willeke 
882a0a5b22SJan Willeke 	if (fixup & FIXUP_PSW_NORMAL)
892a0a5b22SJan Willeke 		regs->psw.addr += utask->vaddr - utask->xol_vaddr;
902a0a5b22SJan Willeke 	if (fixup & FIXUP_RETURN_REGISTER) {
912a0a5b22SJan Willeke 		int reg = (auprobe->insn[0] & 0xf0) >> 4;
922a0a5b22SJan Willeke 
932a0a5b22SJan Willeke 		regs->gprs[reg] += utask->vaddr - utask->xol_vaddr;
942a0a5b22SJan Willeke 	}
952a0a5b22SJan Willeke 	if (fixup & FIXUP_BRANCH_NOT_TAKEN) {
962a0a5b22SJan Willeke 		int ilen = insn_length(auprobe->insn[0] >> 8);
972a0a5b22SJan Willeke 
982a0a5b22SJan Willeke 		if (regs->psw.addr - utask->xol_vaddr == ilen)
992a0a5b22SJan Willeke 			regs->psw.addr = utask->vaddr + ilen;
1002a0a5b22SJan Willeke 	}
1018d1a2427SJan Willeke 	if (check_per_event(current->thread.per_event.cause,
1028d1a2427SJan Willeke 			    current->thread.per_user.control, regs)) {
1038d1a2427SJan Willeke 		/* fix per address */
1048d1a2427SJan Willeke 		current->thread.per_event.address = utask->vaddr;
1058d1a2427SJan Willeke 		/* trigger per event */
10656e62a73SSven Schnelle 		set_thread_flag(TIF_PER_TRAP);
1078d1a2427SJan Willeke 	}
1082a0a5b22SJan Willeke 	return 0;
1092a0a5b22SJan Willeke }
1102a0a5b22SJan Willeke 
arch_uprobe_exception_notify(struct notifier_block * self,unsigned long val,void * data)1112a0a5b22SJan Willeke int arch_uprobe_exception_notify(struct notifier_block *self, unsigned long val,
1122a0a5b22SJan Willeke 				 void *data)
1132a0a5b22SJan Willeke {
1142a0a5b22SJan Willeke 	struct die_args *args = data;
1152a0a5b22SJan Willeke 	struct pt_regs *regs = args->regs;
1162a0a5b22SJan Willeke 
1172a0a5b22SJan Willeke 	if (!user_mode(regs))
1182a0a5b22SJan Willeke 		return NOTIFY_DONE;
1192a0a5b22SJan Willeke 	if (regs->int_code & 0x200) /* Trap during transaction */
1202a0a5b22SJan Willeke 		return NOTIFY_DONE;
1212a0a5b22SJan Willeke 	switch (val) {
1222a0a5b22SJan Willeke 	case DIE_BPT:
1232a0a5b22SJan Willeke 		if (uprobe_pre_sstep_notifier(regs))
1242a0a5b22SJan Willeke 			return NOTIFY_STOP;
1252a0a5b22SJan Willeke 		break;
1262a0a5b22SJan Willeke 	case DIE_SSTEP:
1272a0a5b22SJan Willeke 		if (uprobe_post_sstep_notifier(regs))
1282a0a5b22SJan Willeke 			return NOTIFY_STOP;
129d4e81342SGustavo A. R. Silva 		break;
1302a0a5b22SJan Willeke 	default:
1312a0a5b22SJan Willeke 		break;
1322a0a5b22SJan Willeke 	}
1332a0a5b22SJan Willeke 	return NOTIFY_DONE;
1342a0a5b22SJan Willeke }
1352a0a5b22SJan Willeke 
arch_uprobe_abort_xol(struct arch_uprobe * auprobe,struct pt_regs * regs)1362a0a5b22SJan Willeke void arch_uprobe_abort_xol(struct arch_uprobe *auprobe, struct pt_regs *regs)
1372a0a5b22SJan Willeke {
1382a0a5b22SJan Willeke 	clear_thread_flag(TIF_UPROBE_SINGLESTEP);
1392a0a5b22SJan Willeke 	regs->int_code = auprobe->saved_int_code;
1402a0a5b22SJan Willeke 	regs->psw.addr = current->utask->vaddr;
1418d1a2427SJan Willeke 	current->thread.per_event.address = current->utask->vaddr;
1422a0a5b22SJan Willeke }
1432a0a5b22SJan Willeke 
arch_uretprobe_hijack_return_addr(unsigned long trampoline,struct pt_regs * regs)1442a0a5b22SJan Willeke unsigned long arch_uretprobe_hijack_return_addr(unsigned long trampoline,
1452a0a5b22SJan Willeke 						struct pt_regs *regs)
1462a0a5b22SJan Willeke {
1472a0a5b22SJan Willeke 	unsigned long orig;
1482a0a5b22SJan Willeke 
1492a0a5b22SJan Willeke 	orig = regs->gprs[14];
1502a0a5b22SJan Willeke 	regs->gprs[14] = trampoline;
1512a0a5b22SJan Willeke 	return orig;
1522a0a5b22SJan Willeke }
1532a0a5b22SJan Willeke 
arch_uretprobe_is_alive(struct return_instance * ret,enum rp_check ctx,struct pt_regs * regs)154783c3b53SHeiko Carstens bool arch_uretprobe_is_alive(struct return_instance *ret, enum rp_check ctx,
155783c3b53SHeiko Carstens 			     struct pt_regs *regs)
156783c3b53SHeiko Carstens {
157783c3b53SHeiko Carstens 	if (ctx == RP_CHECK_CHAIN_CALL)
158783c3b53SHeiko Carstens 		return user_stack_pointer(regs) <= ret->stack;
159783c3b53SHeiko Carstens 	else
160783c3b53SHeiko Carstens 		return user_stack_pointer(regs) < ret->stack;
161783c3b53SHeiko Carstens }
162783c3b53SHeiko Carstens 
1632a0a5b22SJan Willeke /* Instruction Emulation */
1642a0a5b22SJan Willeke 
adjust_psw_addr(psw_t * psw,unsigned long len)1652a0a5b22SJan Willeke static void adjust_psw_addr(psw_t *psw, unsigned long len)
1662a0a5b22SJan Willeke {
1672a0a5b22SJan Willeke 	psw->addr = __rewind_psw(*psw, -len);
1682a0a5b22SJan Willeke }
1692a0a5b22SJan Willeke 
1702a0a5b22SJan Willeke #define EMU_ILLEGAL_OP		1
1712a0a5b22SJan Willeke #define EMU_SPECIFICATION	2
1722a0a5b22SJan Willeke #define EMU_ADDRESSING		3
1732a0a5b22SJan Willeke 
1742a0a5b22SJan Willeke #define emu_load_ril(ptr, output)			\
1752a0a5b22SJan Willeke ({							\
1762a0a5b22SJan Willeke 	unsigned int mask = sizeof(*(ptr)) - 1;		\
1772a0a5b22SJan Willeke 	__typeof__(*(ptr)) input;			\
1782a0a5b22SJan Willeke 	int __rc = 0;					\
1792a0a5b22SJan Willeke 							\
180*4efd417fSVasily Gorbik 	if ((u64 __force)ptr & mask)			\
1812a0a5b22SJan Willeke 		__rc = EMU_SPECIFICATION;		\
1822a0a5b22SJan Willeke 	else if (get_user(input, ptr))			\
1832a0a5b22SJan Willeke 		__rc = EMU_ADDRESSING;			\
1842a0a5b22SJan Willeke 	else						\
1852a0a5b22SJan Willeke 		*(output) = input;			\
1862a0a5b22SJan Willeke 	__rc;						\
1872a0a5b22SJan Willeke })
1882a0a5b22SJan Willeke 
1898d1a2427SJan Willeke #define emu_store_ril(regs, ptr, input)			\
1902a0a5b22SJan Willeke ({							\
1912a0a5b22SJan Willeke 	unsigned int mask = sizeof(*(ptr)) - 1;		\
1928d1a2427SJan Willeke 	__typeof__(ptr) __ptr = (ptr);			\
1932a0a5b22SJan Willeke 	int __rc = 0;					\
1942a0a5b22SJan Willeke 							\
195*4efd417fSVasily Gorbik 	if ((u64 __force)__ptr & mask)			\
1962a0a5b22SJan Willeke 		__rc = EMU_SPECIFICATION;		\
1978d1a2427SJan Willeke 	else if (put_user(*(input), __ptr))		\
1982a0a5b22SJan Willeke 		__rc = EMU_ADDRESSING;			\
1998d1a2427SJan Willeke 	if (__rc == 0)					\
2009f9d86e1SHeiko Carstens 		sim_stor_event(regs,			\
2019f9d86e1SHeiko Carstens 			       (void __force *)__ptr,	\
2029f9d86e1SHeiko Carstens 			       mask + 1);		\
2032a0a5b22SJan Willeke 	__rc;						\
2042a0a5b22SJan Willeke })
2052a0a5b22SJan Willeke 
2062a0a5b22SJan Willeke #define emu_cmp_ril(regs, ptr, cmp)			\
2072a0a5b22SJan Willeke ({							\
2082a0a5b22SJan Willeke 	unsigned int mask = sizeof(*(ptr)) - 1;		\
2092a0a5b22SJan Willeke 	__typeof__(*(ptr)) input;			\
2102a0a5b22SJan Willeke 	int __rc = 0;					\
2112a0a5b22SJan Willeke 							\
212*4efd417fSVasily Gorbik 	if ((u64 __force)ptr & mask)			\
2132a0a5b22SJan Willeke 		__rc = EMU_SPECIFICATION;		\
2142a0a5b22SJan Willeke 	else if (get_user(input, ptr))			\
2152a0a5b22SJan Willeke 		__rc = EMU_ADDRESSING;			\
2162a0a5b22SJan Willeke 	else if (input > *(cmp))			\
2172a0a5b22SJan Willeke 		psw_bits((regs)->psw).cc = 1;		\
2182a0a5b22SJan Willeke 	else if (input < *(cmp))			\
2192a0a5b22SJan Willeke 		psw_bits((regs)->psw).cc = 2;		\
2202a0a5b22SJan Willeke 	else						\
2212a0a5b22SJan Willeke 		psw_bits((regs)->psw).cc = 0;		\
2222a0a5b22SJan Willeke 	__rc;						\
2232a0a5b22SJan Willeke })
2242a0a5b22SJan Willeke 
2252a0a5b22SJan Willeke struct insn_ril {
2262a0a5b22SJan Willeke 	u8 opc0;
2272a0a5b22SJan Willeke 	u8 reg	: 4;
2282a0a5b22SJan Willeke 	u8 opc1 : 4;
2292a0a5b22SJan Willeke 	s32 disp;
2302a0a5b22SJan Willeke } __packed;
2312a0a5b22SJan Willeke 
2322a0a5b22SJan Willeke union split_register {
2332a0a5b22SJan Willeke 	u64 u64;
2342a0a5b22SJan Willeke 	u32 u32[2];
2352a0a5b22SJan Willeke 	u16 u16[4];
2362a0a5b22SJan Willeke 	s64 s64;
2372a0a5b22SJan Willeke 	s32 s32[2];
2382a0a5b22SJan Willeke 	s16 s16[4];
2392a0a5b22SJan Willeke };
2402a0a5b22SJan Willeke 
2412a0a5b22SJan Willeke /*
2428d1a2427SJan Willeke  * If user per registers are setup to trace storage alterations and an
2438d1a2427SJan Willeke  * emulated store took place on a fitting address a user trap is generated.
2448d1a2427SJan Willeke  */
sim_stor_event(struct pt_regs * regs,void * addr,int len)2458d1a2427SJan Willeke static void sim_stor_event(struct pt_regs *regs, void *addr, int len)
2468d1a2427SJan Willeke {
2478d1a2427SJan Willeke 	if (!(regs->psw.mask & PSW_MASK_PER))
2488d1a2427SJan Willeke 		return;
2498d1a2427SJan Willeke 	if (!(current->thread.per_user.control & PER_EVENT_STORE))
2508d1a2427SJan Willeke 		return;
2518d1a2427SJan Willeke 	if ((void *)current->thread.per_user.start > (addr + len))
2528d1a2427SJan Willeke 		return;
2538d1a2427SJan Willeke 	if ((void *)current->thread.per_user.end < addr)
2548d1a2427SJan Willeke 		return;
2558d1a2427SJan Willeke 	current->thread.per_event.address = regs->psw.addr;
2568d1a2427SJan Willeke 	current->thread.per_event.cause = PER_EVENT_STORE >> 16;
25756e62a73SSven Schnelle 	set_thread_flag(TIF_PER_TRAP);
2588d1a2427SJan Willeke }
2598d1a2427SJan Willeke 
2608d1a2427SJan Willeke /*
2612a0a5b22SJan Willeke  * pc relative instructions are emulated, since parameters may not be
2622a0a5b22SJan Willeke  * accessible from the xol area due to range limitations.
2632a0a5b22SJan Willeke  */
handle_insn_ril(struct arch_uprobe * auprobe,struct pt_regs * regs)2642a0a5b22SJan Willeke static void handle_insn_ril(struct arch_uprobe *auprobe, struct pt_regs *regs)
2652a0a5b22SJan Willeke {
2662a0a5b22SJan Willeke 	union split_register *rx;
2672a0a5b22SJan Willeke 	struct insn_ril *insn;
2682a0a5b22SJan Willeke 	unsigned int ilen;
2692a0a5b22SJan Willeke 	void *uptr;
2702a0a5b22SJan Willeke 	int rc = 0;
2712a0a5b22SJan Willeke 
2722a0a5b22SJan Willeke 	insn = (struct insn_ril *) &auprobe->insn;
2732a0a5b22SJan Willeke 	rx = (union split_register *) &regs->gprs[insn->reg];
2742a0a5b22SJan Willeke 	uptr = (void *)(regs->psw.addr + (insn->disp * 2));
2752a0a5b22SJan Willeke 	ilen = insn_length(insn->opc0);
2762a0a5b22SJan Willeke 
2772a0a5b22SJan Willeke 	switch (insn->opc0) {
2782a0a5b22SJan Willeke 	case 0xc0:
2792a0a5b22SJan Willeke 		switch (insn->opc1) {
2802a0a5b22SJan Willeke 		case 0x00: /* larl */
2812a0a5b22SJan Willeke 			rx->u64 = (unsigned long)uptr;
2822a0a5b22SJan Willeke 			break;
2832a0a5b22SJan Willeke 		}
2842a0a5b22SJan Willeke 		break;
2852a0a5b22SJan Willeke 	case 0xc4:
2862a0a5b22SJan Willeke 		switch (insn->opc1) {
2872a0a5b22SJan Willeke 		case 0x02: /* llhrl */
2882a0a5b22SJan Willeke 			rc = emu_load_ril((u16 __user *)uptr, &rx->u32[1]);
2892a0a5b22SJan Willeke 			break;
2902a0a5b22SJan Willeke 		case 0x04: /* lghrl */
2912a0a5b22SJan Willeke 			rc = emu_load_ril((s16 __user *)uptr, &rx->u64);
2922a0a5b22SJan Willeke 			break;
2932a0a5b22SJan Willeke 		case 0x05: /* lhrl */
2942a0a5b22SJan Willeke 			rc = emu_load_ril((s16 __user *)uptr, &rx->u32[1]);
2952a0a5b22SJan Willeke 			break;
2962a0a5b22SJan Willeke 		case 0x06: /* llghrl */
2972a0a5b22SJan Willeke 			rc = emu_load_ril((u16 __user *)uptr, &rx->u64);
2982a0a5b22SJan Willeke 			break;
2992a0a5b22SJan Willeke 		case 0x08: /* lgrl */
3002a0a5b22SJan Willeke 			rc = emu_load_ril((u64 __user *)uptr, &rx->u64);
3012a0a5b22SJan Willeke 			break;
3022a0a5b22SJan Willeke 		case 0x0c: /* lgfrl */
3032a0a5b22SJan Willeke 			rc = emu_load_ril((s32 __user *)uptr, &rx->u64);
3042a0a5b22SJan Willeke 			break;
3052a0a5b22SJan Willeke 		case 0x0d: /* lrl */
3062a0a5b22SJan Willeke 			rc = emu_load_ril((u32 __user *)uptr, &rx->u32[1]);
3072a0a5b22SJan Willeke 			break;
3082a0a5b22SJan Willeke 		case 0x0e: /* llgfrl */
3092a0a5b22SJan Willeke 			rc = emu_load_ril((u32 __user *)uptr, &rx->u64);
3102a0a5b22SJan Willeke 			break;
3112a0a5b22SJan Willeke 		case 0x07: /* sthrl */
3128d1a2427SJan Willeke 			rc = emu_store_ril(regs, (u16 __user *)uptr, &rx->u16[3]);
3132a0a5b22SJan Willeke 			break;
3142a0a5b22SJan Willeke 		case 0x0b: /* stgrl */
3158d1a2427SJan Willeke 			rc = emu_store_ril(regs, (u64 __user *)uptr, &rx->u64);
3162a0a5b22SJan Willeke 			break;
3172a0a5b22SJan Willeke 		case 0x0f: /* strl */
3188d1a2427SJan Willeke 			rc = emu_store_ril(regs, (u32 __user *)uptr, &rx->u32[1]);
3192a0a5b22SJan Willeke 			break;
3202a0a5b22SJan Willeke 		}
3212a0a5b22SJan Willeke 		break;
3222a0a5b22SJan Willeke 	case 0xc6:
3232a0a5b22SJan Willeke 		switch (insn->opc1) {
3242a0a5b22SJan Willeke 		case 0x04: /* cghrl */
3252a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (s16 __user *)uptr, &rx->s64);
3262a0a5b22SJan Willeke 			break;
3272a0a5b22SJan Willeke 		case 0x05: /* chrl */
3282a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (s16 __user *)uptr, &rx->s32[1]);
3292a0a5b22SJan Willeke 			break;
3302a0a5b22SJan Willeke 		case 0x06: /* clghrl */
3312a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (u16 __user *)uptr, &rx->u64);
3322a0a5b22SJan Willeke 			break;
3332a0a5b22SJan Willeke 		case 0x07: /* clhrl */
3342a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (u16 __user *)uptr, &rx->u32[1]);
3352a0a5b22SJan Willeke 			break;
3362a0a5b22SJan Willeke 		case 0x08: /* cgrl */
3372a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (s64 __user *)uptr, &rx->s64);
3382a0a5b22SJan Willeke 			break;
3392a0a5b22SJan Willeke 		case 0x0a: /* clgrl */
3402a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (u64 __user *)uptr, &rx->u64);
3412a0a5b22SJan Willeke 			break;
3422a0a5b22SJan Willeke 		case 0x0c: /* cgfrl */
3432a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (s32 __user *)uptr, &rx->s64);
3442a0a5b22SJan Willeke 			break;
3452a0a5b22SJan Willeke 		case 0x0d: /* crl */
3462a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (s32 __user *)uptr, &rx->s32[1]);
3472a0a5b22SJan Willeke 			break;
3482a0a5b22SJan Willeke 		case 0x0e: /* clgfrl */
3492a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (u32 __user *)uptr, &rx->u64);
3502a0a5b22SJan Willeke 			break;
3512a0a5b22SJan Willeke 		case 0x0f: /* clrl */
3522a0a5b22SJan Willeke 			rc = emu_cmp_ril(regs, (u32 __user *)uptr, &rx->u32[1]);
3532a0a5b22SJan Willeke 			break;
3542a0a5b22SJan Willeke 		}
3552a0a5b22SJan Willeke 		break;
3562a0a5b22SJan Willeke 	}
3572a0a5b22SJan Willeke 	adjust_psw_addr(&regs->psw, ilen);
3582a0a5b22SJan Willeke 	switch (rc) {
3592a0a5b22SJan Willeke 	case EMU_ILLEGAL_OP:
3602a0a5b22SJan Willeke 		regs->int_code = ilen << 16 | 0x0001;
3612a0a5b22SJan Willeke 		do_report_trap(regs, SIGILL, ILL_ILLOPC, NULL);
3622a0a5b22SJan Willeke 		break;
3632a0a5b22SJan Willeke 	case EMU_SPECIFICATION:
3642a0a5b22SJan Willeke 		regs->int_code = ilen << 16 | 0x0006;
3652a0a5b22SJan Willeke 		do_report_trap(regs, SIGILL, ILL_ILLOPC , NULL);
3662a0a5b22SJan Willeke 		break;
3672a0a5b22SJan Willeke 	case EMU_ADDRESSING:
3682a0a5b22SJan Willeke 		regs->int_code = ilen << 16 | 0x0005;
3692a0a5b22SJan Willeke 		do_report_trap(regs, SIGSEGV, SEGV_MAPERR, NULL);
3702a0a5b22SJan Willeke 		break;
3712a0a5b22SJan Willeke 	}
3722a0a5b22SJan Willeke }
3732a0a5b22SJan Willeke 
arch_uprobe_skip_sstep(struct arch_uprobe * auprobe,struct pt_regs * regs)3742a0a5b22SJan Willeke bool arch_uprobe_skip_sstep(struct arch_uprobe *auprobe, struct pt_regs *regs)
3752a0a5b22SJan Willeke {
3768bb3fdd6SHeiko Carstens 	if ((psw_bits(regs->psw).eaba == PSW_BITS_AMODE_24BIT) ||
3778bb3fdd6SHeiko Carstens 	    ((psw_bits(regs->psw).eaba == PSW_BITS_AMODE_31BIT) &&
3782a0a5b22SJan Willeke 	     !is_compat_task())) {
3792a0a5b22SJan Willeke 		regs->psw.addr = __rewind_psw(regs->psw, UPROBE_SWBP_INSN_SIZE);
3802a0a5b22SJan Willeke 		do_report_trap(regs, SIGILL, ILL_ILLADR, NULL);
3812a0a5b22SJan Willeke 		return true;
3822a0a5b22SJan Willeke 	}
3832a0a5b22SJan Willeke 	if (probe_is_insn_relative_long(auprobe->insn)) {
3842a0a5b22SJan Willeke 		handle_insn_ril(auprobe, regs);
3852a0a5b22SJan Willeke 		return true;
3862a0a5b22SJan Willeke 	}
3872a0a5b22SJan Willeke 	return false;
3882a0a5b22SJan Willeke }
389