Re: [PATCH 28/43] x86/mm/kaiser: Map cpu entry area

From: Ingo Molnar
Date: Sun Nov 26 2017 - 10:19:51 EST



* Thomas Gleixner <tglx@xxxxxxxxxxxxx> wrote:

> On Fri, 24 Nov 2017, Ingo Molnar wrote:
> > +void kaiser_add_mapping_cpu_entry(int cpu)
> > +{
> > + kaiser_add_user_map_early(get_cpu_gdt_ro(cpu), PAGE_SIZE,
> > + __PAGE_KERNEL_RO);
> > +
> > + /* includes the entry stack */
> > + kaiser_add_user_map_early(&get_cpu_entry_area(cpu)->tss,
> > + sizeof(get_cpu_entry_area(cpu)->tss),
> > + __PAGE_KERNEL | _PAGE_GLOBAL);
> > +
> > + /* Entry code, so needs to be EXEC */
> > + kaiser_add_user_map_early(&get_cpu_entry_area(cpu)->entry_trampoline,
> > + sizeof(get_cpu_entry_area(cpu)->entry_trampoline),
> > + __PAGE_KERNEL_EXEC | _PAGE_GLOBAL);
>
> This creates a RWX mapping and wants to be __PAGE_KERNEL_RX!

So I think __PAGE_KERNEL_EXEC and __PAGE_KERNEL are really dangerous names which
creates RWX mappings without people intending it.

Should be renamed to something like __PAGE_KERNEL_RWX ? And not be used anywhere ...

Thanks,

Ingo