diff options
author | Oleg Nesterov <oleg@redhat.com> | 2024-10-07 19:46:01 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-11-08 16:20:42 +0100 |
commit | fe5e9182d3e227476642ae2b312e2356c4d326a3 (patch) | |
tree | 8949d7099c6b06e22d564f345f15f15eff117416 /kernel | |
parent | 7fc8b76903dc3cb1d1bb612ecfbce1cac4c09c5a (diff) | |
download | linux-fe5e9182d3e227476642ae2b312e2356c4d326a3.tar.gz linux-fe5e9182d3e227476642ae2b312e2356c4d326a3.tar.bz2 linux-fe5e9182d3e227476642ae2b312e2356c4d326a3.zip |
uprobes: fix kernel info leak via "[uprobes]" vma
commit 34820304cc2cd1804ee1f8f3504ec77813d29c8e upstream.
xol_add_vma() maps the uninitialized page allocated by __create_xol_area()
into userspace. On some architectures (x86) this memory is readable even
without VM_READ, VM_EXEC results in the same pgprot_t as VM_EXEC|VM_READ,
although this doesn't really matter, debugger can read this memory anyway.
Link: https://lore.kernel.org/all/20240929162047.GA12611@redhat.com/
Reported-by: Will Deacon <will@kernel.org>
Fixes: d4b3b6384f98 ("uprobes/core: Allocate XOL slots for uprobes use")
Cc: stable@vger.kernel.org
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/events/uprobes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c index c812575f0461..6285674412f2 100644 --- a/kernel/events/uprobes.c +++ b/kernel/events/uprobes.c @@ -1502,7 +1502,7 @@ static struct xol_area *__create_xol_area(unsigned long vaddr) area->xol_mapping.name = "[uprobes]"; area->xol_mapping.pages = area->pages; - area->pages[0] = alloc_page(GFP_HIGHUSER); + area->pages[0] = alloc_page(GFP_HIGHUSER | __GFP_ZERO); if (!area->pages[0]) goto free_bitmap; area->pages[1] = NULL; |