Re: [PATCH 3/3] x86/kasan: Populate shadow for shared chunk of the CPU entry area

From: Sean Christopherson
Date: Wed Nov 09 2022 - 13:14:54 EST


On Tue, Nov 08, 2022, Andrey Ryabinin wrote:
>
> On 11/4/22 21:32, Sean Christopherson wrote:
> > @@ -409,6 +410,15 @@ void __init kasan_init(void)
> > kasan_mem_to_shadow((void *)VMALLOC_END + 1),
> > (void *)shadow_cea_begin);
> >
> > + /*
> > + * Populate the shadow for the shared portion of the CPU entry area.
> > + * Shadows for the per-CPU areas are mapped on-demand, as each CPU's
> > + * area is randomly placed somewhere in the 512GiB range and mapping
> > + * the entire 512GiB range is prohibitively expensive.
> > + */
> > + kasan_populate_shadow(shadow_cea_begin,
> > + shadow_cea_per_cpu_begin, 0);
> > +
>
> I think we can extend the kasan_populate_early_shadow() call above up to
> shadow_cea_per_cpu_begin point, instead of this.
> populate_early_shadow() maps single RO zeroed page. No one should write to the shadow for IDT.
> KASAN only needs writable shadow for linear mapping/stacks/vmalloc/global variables.

Any objection to simply converting this to use kasan_populate_early_shadow(),
i.e. to keeping a separate "populate" call for the CPU entry area? Purely so
that it's more obvious that a small portion of the overall CPU entry area is
mapped during init.