]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
tile/ptrace: Preserve previous registers for short regset write
authorDave Martin <Dave.Martin@arm.com>
Fri, 6 Jan 2017 17:54:51 +0000 (17:54 +0000)
committerJiri Slaby <jslaby@suse.cz>
Wed, 15 Feb 2017 10:56:07 +0000 (11:56 +0100)
commit fd7c99142d77dc4a851879a66715abf12a3193fb upstream.

Ensure that if userspace supplies insufficient data to
PTRACE_SETREGSET to fill all the registers, the thread's old
registers are preserved.

Signed-off-by: Dave Martin <Dave.Martin@arm.com>
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/tile/kernel/ptrace.c

index de98c6ddf136dbeebee00b7d8b1c553cc8bf56c1..2343126c4ad28322d71b67a66a16ecd10d7563dc 100644 (file)
@@ -110,7 +110,7 @@ static int tile_gpr_set(struct task_struct *target,
                          const void *kbuf, const void __user *ubuf)
 {
        int ret;
-       struct pt_regs regs;
+       struct pt_regs regs = *task_pt_regs(target);
 
        ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &regs, 0,
                                 sizeof(regs));