]> git.baikalelectronics.ru Git - kernel.git/commit
parisc: Fix syscall restarts
authorHelge Deller <deller@gmx.de>
Mon, 21 Dec 2015 09:03:30 +0000 (10:03 +0100)
committerHelge Deller <deller@gmx.de>
Mon, 21 Dec 2015 09:16:18 +0000 (10:16 +0100)
commite5b0ed9412c0960853008787c84aa489d1a64133
tree7caabcb26d339b8b7ecde1de88f133743dae74b9
parent76066219c1aa9865e8fc88181b8dc2f6356df9ce
parisc: Fix syscall restarts

On parisc syscalls which are interrupted by signals sometimes failed to
restart and instead returned -ENOSYS which in the worst case lead to
userspace crashes.
A similiar problem existed on MIPS and was fixed by commit 46847650
("MIPS: Fix restart of indirect syscalls").

On parisc the current syscall restart code assumes that all syscall
callers load the syscall number in the delay slot of the ble
instruction. That's how it is e.g. done in the unistd.h header file:
ble 0x100(%sr2, %r0)
ldi #syscall_nr, %r20
Because of that assumption the current code never restored %r20 before
returning to userspace.

This assumption is at least not true for code which uses the glibc
syscall() function, which instead uses this syntax:
ble 0x100(%sr2, %r0)
copy regX, %r20
where regX depend on how the compiler optimizes the code and register
usage.

This patch fixes this problem by adding code to analyze how the syscall
number is loaded in the delay branch and - if needed - copy the syscall
number to regX prior returning to userspace for the syscall restart.

Signed-off-by: Helge Deller <deller@gmx.de>
Cc: stable@vger.kernel.org
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
arch/parisc/kernel/signal.c