Skip to content

Commit a10d9a7

Browse files
Peter ZijlstraLinus Torvalds
authored andcommitted
i386: fixup TRACE_IRQ breakage
The TRACE_IRQS_ON function in iret_exc: calls a C function without ensuring that the segments are set properly. Move the trace function and the enabling of interrupt into the C stub. Signed-off-by: Peter Zijlstra <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 29eb511 commit a10d9a7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

arch/i386/kernel/entry.S

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,6 @@ restore_nocheck_notrace:
409409
1: INTERRUPT_RETURN
410410
.section .fixup,"ax"
411411
iret_exc:
412-
TRACE_IRQS_ON
413-
ENABLE_INTERRUPTS(CLBR_NONE)
414412
pushl $0 # no error code
415413
pushl $do_iret_error
416414
jmp error_code

arch/i386/kernel/traps.c

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -518,10 +518,12 @@ fastcall void do_##name(struct pt_regs * regs, long error_code) \
518518
do_trap(trapnr, signr, str, 0, regs, error_code, NULL); \
519519
}
520520

521-
#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
521+
#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr, irq) \
522522
fastcall void do_##name(struct pt_regs * regs, long error_code) \
523523
{ \
524524
siginfo_t info; \
525+
if (irq) \
526+
local_irq_enable(); \
525527
info.si_signo = signr; \
526528
info.si_errno = 0; \
527529
info.si_code = sicode; \
@@ -561,13 +563,13 @@ DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
561563
#endif
562564
DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
563565
DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
564-
DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip)
566+
DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip, 0)
565567
DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
566568
DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
567569
DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
568570
DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
569-
DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
570-
DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0)
571+
DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0, 0)
572+
DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0, 1)
571573

572574
fastcall void __kprobes do_general_protection(struct pt_regs * regs,
573575
long error_code)

0 commit comments

Comments
 (0)