]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blob - releases/4.9.183/arm64-mm-inhibit-huge-vmap-with-ptdump.patch
Linux 4.9.183
[thirdparty/kernel/stable-queue.git] / releases / 4.9.183 / arm64-mm-inhibit-huge-vmap-with-ptdump.patch
1 From c02767771b72c3af9348fd42a422d86326ff67e2 Mon Sep 17 00:00:00 2001
2 From: Mark Rutland <mark.rutland@arm.com>
3 Date: Tue, 14 May 2019 14:30:06 +0530
4 Subject: arm64/mm: Inhibit huge-vmap with ptdump
5
6 [ Upstream commit 7ba36eccb3f83983a651efd570b4f933ecad1b5c ]
7
8 The arm64 ptdump code can race with concurrent modification of the
9 kernel page tables. At the time this was added, this was sound as:
10
11 * Modifications to leaf entries could result in stale information being
12 logged, but would not result in a functional problem.
13
14 * Boot time modifications to non-leaf entries (e.g. freeing of initmem)
15 were performed when the ptdump code cannot be invoked.
16
17 * At runtime, modifications to non-leaf entries only occurred in the
18 vmalloc region, and these were strictly additive, as intermediate
19 entries were never freed.
20
21 However, since commit:
22
23 commit 324420bf91f6 ("arm64: add support for ioremap() block mappings")
24
25 ... it has been possible to create huge mappings in the vmalloc area at
26 runtime, and as part of this existing intermediate levels of table my be
27 removed and freed.
28
29 It's possible for the ptdump code to race with this, and continue to
30 walk tables which have been freed (and potentially poisoned or
31 reallocated). As a result of this, the ptdump code may dereference bogus
32 addresses, which could be fatal.
33
34 Since huge-vmap is a TLB and memory optimization, we can disable it when
35 the runtime ptdump code is in use to avoid this problem.
36
37 Cc: Catalin Marinas <catalin.marinas@arm.com>
38 Fixes: 324420bf91f60582 ("arm64: add support for ioremap() block mappings")
39 Acked-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
40 Signed-off-by: Mark Rutland <mark.rutland@arm.com>
41 Signed-off-by: Anshuman Khandual <anshuman.khandual@arm.com>
42 Signed-off-by: Will Deacon <will.deacon@arm.com>
43 Signed-off-by: Sasha Levin <sashal@kernel.org>
44 ---
45 arch/arm64/mm/mmu.c | 11 ++++++++---
46 1 file changed, 8 insertions(+), 3 deletions(-)
47
48 diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c
49 index 0a56898f8410..efd65fc85238 100644
50 --- a/arch/arm64/mm/mmu.c
51 +++ b/arch/arm64/mm/mmu.c
52 @@ -765,13 +765,18 @@ void *__init fixmap_remap_fdt(phys_addr_t dt_phys)
53
54 int __init arch_ioremap_pud_supported(void)
55 {
56 - /* only 4k granule supports level 1 block mappings */
57 - return IS_ENABLED(CONFIG_ARM64_4K_PAGES);
58 + /*
59 + * Only 4k granule supports level 1 block mappings.
60 + * SW table walks can't handle removal of intermediate entries.
61 + */
62 + return IS_ENABLED(CONFIG_ARM64_4K_PAGES) &&
63 + !IS_ENABLED(CONFIG_ARM64_PTDUMP_DEBUGFS);
64 }
65
66 int __init arch_ioremap_pmd_supported(void)
67 {
68 - return 1;
69 + /* See arch_ioremap_pud_supported() */
70 + return !IS_ENABLED(CONFIG_ARM64_PTDUMP_DEBUGFS);
71 }
72
73 int pud_set_huge(pud_t *pud, phys_addr_t phys, pgprot_t prot)
74 --
75 2.20.1
76