Re: [PATCH] x86-64: espfix for 64-bit mode *PROTOTYPE*

From: Andrew Lutomirski
Date: Mon Apr 21 2014 - 19:19:44 EST


On Mon, Apr 21, 2014 at 3:47 PM, H. Peter Anvin <hpa@xxxxxxxxxxxxxxx> wrote:
> This is a prototype of espfix for the 64-bit kernel. espfix is a
> workaround for the architectural definition of IRET, which fails to
> restore bits [31:16] of %esp when returning to a 16-bit stack
> segment. We have a workaround for the 32-bit kernel, but that
> implementation doesn't work for 64 bits.
>
> The 64-bit implementation works like this:
>
> Set up a ministack for each CPU, which is then mapped 65536 times
> using the page tables. This implementation uses the second-to-last
> PGD slot for this; with a 64-byte espfix stack this is sufficient for
> 2^18 CPUs (currently we support a max of 2^13 CPUs.)
>
> 64 bytes appear to be sufficient, because NMI and #MC cause a task
> switch.
>
> THIS IS A PROTOTYPE AND IS NOT COMPLETE. We need to make sure all
> code paths that can interrupt userspace execute this code.
> Fortunately we never need to use the espfix stack for nested faults,
> so one per CPU is guaranteed to be safe.
>
> Furthermore, this code adds unnecessary instructions to the common
> path. For example, on exception entry we push %rdi, pop %rdi, and
> then save away %rdi. Ideally we should do this in such a way that we
> avoid unnecessary swapgs, especially on the IRET path (the exception
> path is going to be very rare, and so is less critical.)
>
> Putting this version out there for people to look at/laugh at/play
> with.

Hahaha! :)

Some comments:

Does returning to 64-bit CS with 16-bit SS not need espfix?
Conversely, does 16-bit CS and 32-bit SS need espfix?


> @@ -1058,6 +1095,7 @@ bad_iret:
> * So pretend we completed the iret and took the #GPF in user mode.
> *
> * We are now running with the kernel GS after exception recovery.
> + * Exception entry will have removed us from the espfix stack.
> * But error_entry expects us to have user GS to match the user %cs,
> * so swap back.
> */

What is that referring to?


> + /*
> + * Switch from the espfix stack to the proper stack: tricky stuff.
> + * On the stack right now is 5 words of exception frame,
> + * error code/oldeax, RDI, and the return value, so no additional
> + * stack is available.
> + *
> + * We will always be using the user space GS on entry.
> + */
> +ENTRY(espfix_fix_stack)
> + SWAPGS
> + cld
> + movq PER_CPU_VAR(kernel_stack),%rdi
> + subq $8*8,%rdi
> + /* Use the real stack to hold these registers for now */
> + movq %rsi,-8(%rdi)
> + movq %rcx,-16(%rdi)
> + movq %rsp,%rsi
> + movl $8,%ecx
> + rep;movsq
> + leaq -(10*8)(%rdi),%rsp
> + popq %rcx
> + popq %rsi
> + SWAPGS
> + retq
>

Is it guaranteed that the userspace thread that caused this is dead?
If not, do you need to change RIP so that espfix gets invoked again
when you return from the exception?

> +
> +void init_espfix_cpu(void)
> +{
> + int cpu = smp_processor_id();
> + unsigned long addr;
> + pgd_t pgd, *pgd_p;
> + pud_t pud, *pud_p;
> + pmd_t pmd, *pmd_p;
> + pte_t pte, *pte_p;
> + int n;
> + void *stack_page;
> +
> + cpu = smp_processor_id();
> + BUG_ON(cpu >= (8 << 20)/ESPFIX_STACK_SIZE);
> +
> + /* We only have to do this once... */
> + if (likely(this_cpu_read(espfix_stack)))
> + return; /* Already initialized */
> +
> + addr = espfix_base_addr(cpu);
> +
> + /* Did another CPU already set this up? */
> + if (likely(espfix_already_there(addr)))
> + goto done;
> +
> + mutex_lock(&espfix_init_mutex);
> +
> + if (unlikely(espfix_already_there(addr)))
> + goto unlock_done;

Wouldn't it be simpler to just have a single static bool to indicate
whether espfix is initialized?

Even better: why not separate the percpu init from the pagetable init
and just do the pagetable init once from main or even modify_ldt?

--Andy
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/