Page MenuHomeFreeBSD

amd64: Avoid enabling interrupts when handling kernel mode prot faults
ClosedPublic

Authored by markj on May 31 2021, 4:19 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 19 2024, 1:26 AM
Unknown Object (File)
Dec 23 2023, 12:29 AM
Unknown Object (File)
Dec 19 2023, 6:04 AM
Unknown Object (File)
Nov 22 2023, 3:48 PM
Unknown Object (File)
Nov 22 2023, 3:38 PM
Unknown Object (File)
Nov 14 2023, 2:07 PM
Unknown Object (File)
Nov 14 2023, 2:06 PM
Unknown Object (File)
Nov 12 2023, 12:46 PM
Subscribers

Details

Summary

When PTI is enabled, we may have been on the trampoline stack when iret
faults. So, we have to switch back to the regular stack before
re-entering trap().

trap() has the somewhat strange behaviour of re-enabling interrupts when
handling certain kernel-mode execeptions. In particular, it was doing
this for exceptions raised during execution of iret. When switching
away from the trampoline stack, however, the thread must not be migrated
to a different CPU. Fix the problem by simply leaving interrupts
disabled during the window.

Reported by: syzkaller

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable