powerpc: Define and use get_user_instr() et. al.
Define specialised get_user_instr(), __get_user_instr() and __get_user_instr_inatomic() macros for reading instructions from user and/or kernel space. Signed-off-by: Jordan Niethe <jniethe5@gmail.com> Reviewed-by: Alistair Popple <alistair@popple.id.au> [mpe: Squash in addition of get_user_instr() & __user annotations] Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20200506034050.24806-17-jniethe5@gmail.com
This commit is contained in:

committed by
Michael Ellerman

parent
a8646f43ba
commit
5249385ad7
@@ -305,7 +305,7 @@ int fix_alignment(struct pt_regs *regs)
|
||||
*/
|
||||
CHECK_FULL_REGS(regs);
|
||||
|
||||
if (unlikely(__get_user(instr.val, (unsigned int __user *)regs->nip)))
|
||||
if (unlikely(__get_user_instr(instr, (void __user *)regs->nip)))
|
||||
return -EFAULT;
|
||||
if ((regs->msr & MSR_LE) != (MSR_KERNEL & MSR_LE)) {
|
||||
/* We don't handle PPC little-endian any more... */
|
||||
|
@@ -249,7 +249,7 @@ static bool stepping_handler(struct pt_regs *regs, struct perf_event *bp,
|
||||
struct instruction_op op;
|
||||
unsigned long addr = info->address;
|
||||
|
||||
if (__get_user_inatomic(instr.val, (unsigned int *)regs->nip))
|
||||
if (__get_user_instr_inatomic(instr, (void __user *)regs->nip))
|
||||
goto fail;
|
||||
|
||||
ret = analyse_instr(&op, regs, instr);
|
||||
|
@@ -266,7 +266,7 @@ int emulate_altivec(struct pt_regs *regs)
|
||||
unsigned int va, vb, vc, vd;
|
||||
vector128 *vrs;
|
||||
|
||||
if (get_user(instr.val, (unsigned int __user *)regs->nip))
|
||||
if (get_user_instr(instr, (void __user *)regs->nip))
|
||||
return -EFAULT;
|
||||
|
||||
word = ppc_inst_val(instr);
|
||||
|
Reference in New Issue
Block a user