|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH 11/22] x86: add a boot option to enable and disable the direct map
On Fri, 16 Dec 2022, Julien Grall wrote:
> From: Hongyan Xia <hongyxia@xxxxxxxxxx>
>
> Also add a helper function to retrieve it. Change arch_mfns_in_direct_map
> to check this option before returning.
>
> This is added as a boot command line option, not a Kconfig to allow
> the user to experiment the feature without rebuild the hypervisor.
>
> Signed-off-by: Hongyan Xia <hongyxia@xxxxxxxxxx>
> Signed-off-by: Julien Grall <jgrall@xxxxxxxxxx>
>
> ----
>
> TODO:
> * Do we also want to provide a Kconfig option?
>
> Changes since Hongyan's version:
> * Reword the commit message
> * opt_directmap is only modified during boot so mark it as
> __ro_after_init
> ---
> docs/misc/xen-command-line.pandoc | 12 ++++++++++++
> xen/arch/arm/include/asm/mm.h | 5 +++++
> xen/arch/x86/include/asm/mm.h | 17 ++++++++++++++++-
> xen/arch/x86/mm.c | 3 +++
> xen/arch/x86/setup.c | 2 ++
> 5 files changed, 38 insertions(+), 1 deletion(-)
>
> diff --git a/docs/misc/xen-command-line.pandoc
> b/docs/misc/xen-command-line.pandoc
> index b7ee97be762e..a63e4612acac 100644
> --- a/docs/misc/xen-command-line.pandoc
> +++ b/docs/misc/xen-command-line.pandoc
> @@ -760,6 +760,18 @@ Specify the size of the console debug trace buffer. By
> specifying `cpu:`
> additionally a trace buffer of the specified size is allocated per cpu.
> The debug trace feature is only enabled in debugging builds of Xen.
>
> +### directmap (x86)
> +> `= <boolean>`
> +
> +> Default: `true`
> +
> +Enable or disable the direct map region in Xen.
> +
> +By default, Xen creates the direct map region which maps physical memory
> +in that region. Setting this to no will remove the direct map, blocking
> +exploits that leak secrets via speculative memory access in the direct
> +map.
> +
> ### dma_bits
> > `= <integer>`
>
> diff --git a/xen/arch/arm/include/asm/mm.h b/xen/arch/arm/include/asm/mm.h
> index 68adcac9fa8d..2366928d71aa 100644
> --- a/xen/arch/arm/include/asm/mm.h
> +++ b/xen/arch/arm/include/asm/mm.h
> @@ -406,6 +406,11 @@ static inline void page_set_xenheap_gfn(struct page_info
> *p, gfn_t gfn)
> } while ( (y = cmpxchg(&p->u.inuse.type_info, x, nx)) != x );
> }
>
> +static inline bool arch_has_directmap(void)
> +{
> + return true;
Shoudn't arch_has_directmap return false for arm32?
> +}
> +
> #endif /* __ARCH_ARM_MM__ */
> /*
> * Local variables:
> diff --git a/xen/arch/x86/include/asm/mm.h b/xen/arch/x86/include/asm/mm.h
> index db29e3e2059f..cf8b20817c6c 100644
> --- a/xen/arch/x86/include/asm/mm.h
> +++ b/xen/arch/x86/include/asm/mm.h
> @@ -464,6 +464,8 @@ static inline int get_page_and_type(struct page_info
> *page,
> ASSERT(((_p)->count_info & PGC_count_mask) != 0); \
> ASSERT(page_get_owner(_p) == (_d))
>
> +extern bool opt_directmap;
> +
>
> /******************************************************************************
> * With shadow pagetables, the different kinds of address start
> * to get get confusing.
> @@ -620,13 +622,26 @@ extern const char zero_page[];
> /* Build a 32bit PSE page table using 4MB pages. */
> void write_32bit_pse_identmap(uint32_t *l2);
>
> +static inline bool arch_has_directmap(void)
> +{
> + return opt_directmap;
> +}
> +
> /*
> * x86 maps part of physical memory via the directmap region.
> * Return whether the range of MFN falls in the directmap region.
> + *
> + * When boot command line sets directmap=no, we will not have a direct map at
> + * all so this will always return false.
> */
> static inline bool arch_mfns_in_directmap(unsigned long mfn, unsigned long
> nr)
> {
> - unsigned long eva = min(DIRECTMAP_VIRT_END, HYPERVISOR_VIRT_END);
> + unsigned long eva;
> +
> + if ( !arch_has_directmap() )
> + return false;
> +
> + eva = min(DIRECTMAP_VIRT_END, HYPERVISOR_VIRT_END);
>
> return (mfn + nr) <= (virt_to_mfn(eva - 1) + 1);
> }
> diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c
> index 041bd4cfde17..e76e135b96fc 100644
> --- a/xen/arch/x86/mm.c
> +++ b/xen/arch/x86/mm.c
> @@ -157,6 +157,9 @@ l1_pgentry_t __section(".bss.page_aligned")
> __aligned(PAGE_SIZE)
> l1_pgentry_t __section(".bss.page_aligned") __aligned(PAGE_SIZE)
> l1_fixmap_x[L1_PAGETABLE_ENTRIES];
>
> +bool __ro_after_init opt_directmap = true;
> +boolean_param("directmap", opt_directmap);
> +
> /* Frame table size in pages. */
> unsigned long max_page;
> unsigned long total_pages;
> diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c
> index 1c2e09711eb0..2cb051c6e4e7 100644
> --- a/xen/arch/x86/setup.c
> +++ b/xen/arch/x86/setup.c
> @@ -1423,6 +1423,8 @@ void __init noreturn __start_xen(unsigned long mbi_p)
> if ( highmem_start )
> xenheap_max_mfn(PFN_DOWN(highmem_start - 1));
>
> + printk("Booting with directmap %s\n", arch_has_directmap() ? "on" :
> "off");
> +
> /*
> * Walk every RAM region and map it in its entirety (on x86/64, at least)
> * and notify it to the boot allocator.
> --
> 2.38.1
>
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |