]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
vfs/proc/kcore, x86/mm/kcore: Fix SMAP fault when dumping vsyscall user page
authorJia Zhang <zhang.jia@linux.alibaba.com>
Mon, 12 Feb 2018 14:44:53 +0000 (22:44 +0800)
committerKhalid Elmously <khalid.elmously@canonical.com>
Wed, 6 Jun 2018 17:44:25 +0000 (13:44 -0400)
commit6ed1391c631bcdb4befc81e48043fd4d5c51733c
tree32e05b946ef2d0c8700aa39691289220888e1bdb
parent735f17eca57c4ef493bff564d8030926457d3bb3
vfs/proc/kcore, x86/mm/kcore: Fix SMAP fault when dumping vsyscall user page

BugLink: http://bugs.launchpad.net/bugs/1774063
[ Upstream commit 595dd46ebfc10be041a365d0a3fa99df50b6ba73 ]

Commit:

  df04abfd181a ("fs/proc/kcore.c: Add bounce buffer for ktext data")

... introduced a bounce buffer to work around CONFIG_HARDENED_USERCOPY=y.
However, accessing the vsyscall user page will cause an SMAP fault.

Replace memcpy() with copy_from_user() to fix this bug works, but adding
a common way to handle this sort of user page may be useful for future.

Currently, only vsyscall page requires KCORE_USER.

Signed-off-by: Jia Zhang <zhang.jia@linux.alibaba.com>
Reviewed-by: Jiri Olsa <jolsa@kernel.org>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: jolsa@redhat.com
Link: http://lkml.kernel.org/r/1518446694-21124-2-git-send-email-zhang.jia@linux.alibaba.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Khalid Elmously <khalid.elmously@canonical.com>
arch/x86/mm/init_64.c
fs/proc/kcore.c
include/linux/kcore.h