]> git.baikalelectronics.ru Git - kernel.git/commit
parisc: Ensure consistent state when switching to kernel stack at syscall entry
authorJohn David Anglin <dave.anglin@bell.net>
Sat, 29 Oct 2016 03:00:34 +0000 (23:00 -0400)
committerHelge Deller <deller@gmx.de>
Wed, 2 Nov 2016 22:05:30 +0000 (23:05 +0100)
commit79fd383b14cbd6e12a7c8cb9b5d9b3010a5757dd
tree177a971638fed789cd8972580e89d6aaa466c73a
parentdbe4d5e4614d48b60842e4e45578bc82eeb67c2d
parisc: Ensure consistent state when switching to kernel stack at syscall entry

We have one critical section in the syscall entry path in which we switch from
the userspace stack to kernel stack. In the event of an external interrupt, the
interrupt code distinguishes between those two states by analyzing the value of
sr7. If sr7 is zero, it uses the kernel stack. Therefore it's important, that
the value of sr7 is in sync with the currently enabled stack.

This patch now disables interrupts while executing the critical section.  This
prevents the interrupt handler to possibly see an inconsistent state which in
the worst case can lead to crashes.

Interestingly, in the syscall exit path interrupts were already disabled in the
critical section which switches back to the userspace stack.

Cc: <stable@vger.kernel.org>
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/kernel/syscall.S