diff options
author | Roland McGrath <roland@redhat.com> | 2008-02-06 16:39:43 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-02-06 16:39:43 -0500 |
commit | 3aa4b37d3e899cfe7a9cbdcda2b277df4c1f210d (patch) | |
tree | f0a7c5ddaf7e38c7305096b1dba8b12b4f1b8c27 /arch/x86 | |
parent | 551e4fb2465b87de9d4aa1669b27d624435443bb (diff) |
x86: make traps on entry code be debuggable in user space, 64-bit
Unify the x86-64 behavior for 32-bit processes that set
bogus %cs/%ss values (the only ones that can fault in iret)
match what the native i386 behavior is. (do not kill the task
via do_exit but generate a SIGSEGV signal)
[ tglx@linutronix.de: build fix ]
Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/entry_64.S | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index bea8474744ff..e518928114db 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -593,13 +593,22 @@ ENTRY(native_iret) | |||
593 | .quad native_iret, bad_iret | 593 | .quad native_iret, bad_iret |
594 | .previous | 594 | .previous |
595 | .section .fixup,"ax" | 595 | .section .fixup,"ax" |
596 | /* force a signal here? this matches i386 behaviour */ | ||
597 | /* running with kernel gs */ | ||
598 | bad_iret: | 596 | bad_iret: |
599 | movq $11,%rdi /* SIGSEGV */ | 597 | /* |
600 | TRACE_IRQS_ON | 598 | * The iret traps when the %cs or %ss being restored is bogus. |
601 | ENABLE_INTERRUPTS(CLBR_ANY | ~(CLBR_RDI)) | 599 | * We've lost the original trap vector and error code. |
602 | jmp do_exit | 600 | * #GPF is the most likely one to get for an invalid selector. |
601 | * So pretend we completed the iret and took the #GPF in user mode. | ||
602 | * | ||
603 | * We are now running with the kernel GS after exception recovery. | ||
604 | * But error_entry expects us to have user GS to match the user %cs, | ||
605 | * so swap back. | ||
606 | */ | ||
607 | pushq $0 | ||
608 | |||
609 | SWAPGS | ||
610 | jmp general_protection | ||
611 | |||
603 | .previous | 612 | .previous |
604 | 613 | ||
605 | /* edi: workmask, edx: work */ | 614 | /* edi: workmask, edx: work */ |