From: Richard Weinberger Date: Fri, 31 Mar 2017 22:41:57 +0000 (+0200) Subject: um: Fix PTRACE_POKEUSER on x86_64 X-Git-Tag: Ubuntu-4.10.0-25.29~76 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=9d78b0fddce2445be838076ab7bc36a69fea6a43;p=mirror_ubuntu-zesty-kernel.git um: Fix PTRACE_POKEUSER on x86_64 BugLink: http://bugs.launchpad.net/bugs/1692898 commit 9abc74a22d85ab29cef9896a2582a530da7e79bf upstream. This is broken since ever but sadly nobody noticed. Recent versions of GDB set DR_CONTROL unconditionally and UML dies due to a heap corruption. It turns out that the PTRACE_POKEUSER was copy&pasted from i386 and assumes that addresses are 4 bytes long. Fix that by using 8 as address size in the calculation. Reported-by: jie cao Signed-off-by: Richard Weinberger Signed-off-by: Greg Kroah-Hartman Signed-off-by: Stefan Bader Signed-off-by: Kleber Sacilotto de Souza --- diff --git a/arch/x86/um/ptrace_64.c b/arch/x86/um/ptrace_64.c index a5c9910d234f..09a085bde0d4 100644 --- a/arch/x86/um/ptrace_64.c +++ b/arch/x86/um/ptrace_64.c @@ -125,7 +125,7 @@ int poke_user(struct task_struct *child, long addr, long data) else if ((addr >= offsetof(struct user, u_debugreg[0])) && (addr <= offsetof(struct user, u_debugreg[7]))) { addr -= offsetof(struct user, u_debugreg[0]); - addr = addr >> 2; + addr = addr >> 3; if ((addr == 4) || (addr == 5)) return -EIO; child->thread.arch.debugregs[addr] = data;