[PATCH 3/3] x86/entry/32: Copy only ptregs on paranoid entry/exit path

From: Joerg Roedel
Date: Fri Jul 20 2018 - 12:22:45 EST


From: Joerg Roedel <jroedel@xxxxxxx>

The code that switches from entry- to task-stack when we
enter from kernel-mode copies the full entry-stack contents
to the task-stack.

That is because we don't trust that the entry-stack
contents. But actually we can trust its contents if we are
not scheduled between entry and exit.

So do less copying and move only the ptregs over to the
task-stack in this code-path.

Suggested-by: Andy Lutomirski <luto@xxxxxxxxxxxxxx>
Signed-off-by: Joerg Roedel <jroedel@xxxxxxx>
---
arch/x86/entry/entry_32.S | 70 +++++++++++++++++++++++++----------------------
1 file changed, 38 insertions(+), 32 deletions(-)

diff --git a/arch/x86/entry/entry_32.S b/arch/x86/entry/entry_32.S
index 2767c62..90166b2 100644
--- a/arch/x86/entry/entry_32.S
+++ b/arch/x86/entry/entry_32.S
@@ -469,33 +469,48 @@
* segment registers on the way back to user-space or when the
* sysenter handler runs with eflags.tf set.
*
- * When we switch to the task-stack here, we can't trust the
- * contents of the entry-stack anymore, as the exception handler
- * might be scheduled out or moved to another CPU. Therefore we
- * copy the complete entry-stack to the task-stack and set a
- * marker in the iret-frame (bit 31 of the CS dword) to detect
- * what we've done on the iret path.
+ * When we switch to the task-stack here, we extend the
+ * stack-frame we copy to include the entry-stack %esp and a
+ * pseudo %ss value so that we have a full ptregs struct on the
+ * stack. We set a marker in the frame (bit 31 of the CS dword).
*
- * On the iret path we copy everything back and switch to the
- * entry-stack, so that the interrupted kernel code-path
- * continues on the same stack it was interrupted with.
+ * On the iret path we read %esp from the PT_OLDESP slot on the
+ * stack and copy ptregs (except oldesp and oldss) to it, when
+ * we find the marker set. Then we switch to the %esp we read,
+ * so that the interrupted kernel code-path continues on the
+ * same stack it was interrupted with.
*
* Be aware that an NMI can happen anytime in this code.
*
+ * Register values here are:
+ *
* %esi: Entry-Stack pointer (same as %esp)
* %edi: Top of the task stack
* %eax: CR3 on kernel entry
*/

- /* Calculate number of bytes on the entry stack in %ecx */
- movl %esi, %ecx
+ /* Allocate full pt_regs on task-stack */
+ subl $PTREGS_SIZE, %edi
+
+ /* Switch to task-stack */
+ movl %edi, %esp

- /* %ecx to the top of entry-stack */
- andl $(MASK_entry_stack), %ecx
- addl $(SIZEOF_entry_stack), %ecx
+ /* Populate pt_regs on task-stack */
+ movl $__KERNEL_DS, PT_OLDSS(%esp) /* Check: Is this needed? */

- /* Number of bytes on the entry stack to %ecx */
- sub %esi, %ecx
+ /*
+ * Save entry-stack pointer on task-stack so that we can switch back to
+ * it on the the iret path.
+ */
+ movl %esi, PT_OLDESP(%esp)
+
+ /* sizeof(pt_regs) minus space for %esp and %ss to %ecx */
+ movl $(PTREGS_SIZE - 8), %ecx
+
+ /* Copy rest */
+ shrl $2, %ecx
+ cld
+ rep movsl

/* Mark stackframe as coming from entry stack */
orl $CS_FROM_ENTRY_STACK, PT_CS(%esp)
@@ -505,16 +520,9 @@
* so that we can switch back to it before iret.
*/
testl $PTI_SWITCH_MASK, %eax
- jz .Lcopy_pt_regs_\@
+ jz .Lend_\@
orl $CS_FROM_USER_CR3, PT_CS(%esp)

- /*
- * %esi and %edi are unchanged, %ecx contains the number of
- * bytes to copy. The code at .Lcopy_pt_regs_\@ will allocate
- * the stack-frame on task-stack and copy everything over
- */
- jmp .Lcopy_pt_regs_\@
-
.Lend_\@:
.endm

@@ -594,16 +602,14 @@
/* Clear marker from stack-frame */
andl $(~CS_FROM_ENTRY_STACK), PT_CS(%esp)

- /* Copy the remaining task-stack contents to entry-stack */
+ /*
+ * Copy the remaining 'struct ptregs' to entry-stack. Leave out
+ * OLDESP and OLDSS as we didn't copy that over on entry.
+ */
movl %esp, %esi
- movl PER_CPU_VAR(cpu_tss_rw + TSS_sp0), %edi
+ movl PT_OLDESP(%esp), %edi

- /* Bytes on the task-stack to ecx */
- movl PER_CPU_VAR(cpu_tss_rw + TSS_sp1), %ecx
- subl %esi, %ecx
-
- /* Allocate stack-frame on entry-stack */
- subl %ecx, %edi
+ movl $(PTREGS_SIZE - 8), %ecx

/*
* Save future stack-pointer, we must not switch until the
--
2.7.4