|
Message-ID: <CAP=LAmLa+BMXae_hfGB33RLwa+-gM9TWak23WdsDz9EKB6zYMA@mail.gmail.com>
Date: Wed, 30 May 2018 18:20:51 +0800
From: 姚俊 <yaojun8558363@...il.com>
To: Ard Biesheuvel <ard.biesheuvel@...aro.org>
Cc: Will Deacon <will.deacon@....com>,
Kernel Hardening <kernel-hardening@...ts.openwall.com>,
Catalin Marinas <catalin.marinas@....com>,
linux-arm-kernel <linux-arm-kernel@...ts.infradead.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] arm64: mm: mark tramp_pg_dir read-only
>We'd need to create a separate segment for it initially so the mapping
>is already at the right granularity.
I think that I should to it like your patch, right?
Subject: [RFC PATCH 2/6] arm64/mm: create dedicated segment for pgdir
mappings
From: Ard Biesheuvel <ard.biesheuvel () linaro ! org>
Date: 2018-03-19 11:19:54
Message-ID: 20180319111958.4171-3-ard.biesheuvel () linaro ! org
+ . = ALIGN(SEGMENT_ALIGN);
+ __pgdir_segment_start = .;
#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
tramp_pg_dir = .;
. += PAGE_SIZE;
@@ -229,6 +231,7 @@ SECTIONS
. += RESERVED_TTBR0_SIZE;
#endif
swapper_pg_dir = .;
+ __pgdir_segment_end = . + PAGE_SIZE;
. += SWAPPER_DIR_SIZE;
swapper_pg_end = .;
Thanks.
Jun
2018-05-30 17:53 GMT+08:00 Ard Biesheuvel <ard.biesheuvel@...aro.org>:
> On 30 May 2018 at 11:14, Will Deacon <will.deacon@....com> wrote:
> > On Wed, May 30, 2018 at 12:48:06PM +0800, YaoJun wrote:
> >> To protect against KSMA(Kernel Space Mirroring Attack), make
> >> tramp_pg_dir read-only. The principle of KSMA is to insert a
> >> carefully constructed PGD entry into the translation table.
> >> The type of this entry is block, which maps the kernel text
> >> and its access permissions bits are 01. The user process can
> >> then modify kernel text directly through this mapping. In this
> >> way, an arbitrary write can be converted to multiple arbitrary
> >> writes.
> >>
> >> Signed-off-by: YaoJun <yaojun8558363@...il.com>
> >> ---
> >> arch/arm64/mm/mmu.c | 4 ++++
> >> 1 file changed, 4 insertions(+)
> >>
> >> diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c
> >> index 2dbb2c9f1ec1..ac4b22c7e435 100644
> >> --- a/arch/arm64/mm/mmu.c
> >> +++ b/arch/arm64/mm/mmu.c
> >> @@ -551,6 +551,10 @@ static int __init map_entry_trampoline(void)
> >> __create_pgd_mapping(tramp_pg_dir, pa_start, TRAMP_VALIAS,
> PAGE_SIZE,
> >> prot, pgd_pgtable_alloc, 0);
> >>
> >> + update_mapping_prot(__pa_symbol(tramp_pg_dir),
> >> + (unsigned long)tramp_pg_dir,
> >> + PGD_SIZE, PAGE_KERNEL_RO);
> >
> > Hmm, I like the idea but is there a risk that the page table has been
> mapped
> > as part of a block entry, which we can't safely split at this point (i.e.
> > we'll run into one of the BUG_ONs in the mapping code)?
> >
>
> We'd need to create a separate segment for it initially so the mapping
> is already at the right granularity.
>
Content of type "text/html" skipped
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.