-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement syscall wrapper as per s390, x86, arm64. When enabled cause handlers to accept parameters from a stack frame rather than from user scratch register state. This allows for user registers to be safely cleared in order to reduce caller influence on speculation within syscall routine. The wrapper is a macro that emits syscall handler symbols that call into the target handler, obtaining its parameters from a struct pt_regs on the stack. As registers are already saved to the stack prior to calling system_call_exception, it appears that this function is executed more efficiently with the new stack-pointer convention than with parameters passed by registers, avoiding the allocation of a stack frame for this method. On a 32-bit system, we see >20% performance increases on the null_syscall microbenchmark, and on a Power 8 the performance gains amortise the cost of clearing and restoring registers which is implemented at the end of this series, seeing final result of ~5.6% performance improvement on null_syscall. Syscalls are wrapped in this fashion on all platforms except for the Cell processor as this commit does not provide SPU support. This can be quickly fixed in a successive patch, but requires spu_sys_callback to allocate a pt_regs structure to satisfy the wrapped calling convention. Co-developed-by: Andrew Donnellan <[email protected]> Signed-off-by: Andrew Donnellan <[email protected]> Signed-off-by: Rohan McLure <[email protected]> Reviewed-by: Nicholas Piggin <[email protected]> [mpe: Make incompatible with COMPAT to retain clearing of high bits of args] Signed-off-by: Michael Ellerman <[email protected]> Link: https://lore.kernel.org/r/[email protected]
- Loading branch information
1 parent
f8971c6
commit 7e92e01
Showing
7 changed files
with
105 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* SPDX-License-Identifier: GPL-2.0 */ | ||
/* | ||
* syscall_wrapper.h - powerpc specific wrappers to syscall definitions | ||
* | ||
* Based on arch/{x86,arm64}/include/asm/syscall_wrapper.h | ||
*/ | ||
|
||
#ifndef __ASM_POWERPC_SYSCALL_WRAPPER_H | ||
#define __ASM_POWERPC_SYSCALL_WRAPPER_H | ||
|
||
struct pt_regs; | ||
|
||
#define SC_POWERPC_REGS_TO_ARGS(x, ...) \ | ||
__MAP(x,__SC_ARGS \ | ||
,,regs->gpr[3],,regs->gpr[4],,regs->gpr[5] \ | ||
,,regs->gpr[6],,regs->gpr[7],,regs->gpr[8]) | ||
|
||
#define __SYSCALL_DEFINEx(x, name, ...) \ | ||
long __powerpc_sys##name(const struct pt_regs *regs); \ | ||
ALLOW_ERROR_INJECTION(__powerpc_sys##name, ERRNO); \ | ||
static long __se_sys##name(__MAP(x,__SC_LONG,__VA_ARGS__)); \ | ||
static inline long __do_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__)); \ | ||
long __powerpc_sys##name(const struct pt_regs *regs) \ | ||
{ \ | ||
return __se_sys##name(SC_POWERPC_REGS_TO_ARGS(x,__VA_ARGS__)); \ | ||
} \ | ||
static long __se_sys##name(__MAP(x,__SC_LONG,__VA_ARGS__)) \ | ||
{ \ | ||
long ret = __do_sys##name(__MAP(x,__SC_CAST,__VA_ARGS__)); \ | ||
__MAP(x,__SC_TEST,__VA_ARGS__); \ | ||
__PROTECT(x, ret,__MAP(x,__SC_ARGS,__VA_ARGS__)); \ | ||
return ret; \ | ||
} \ | ||
static inline long __do_sys##name(__MAP(x,__SC_DECL,__VA_ARGS__)) | ||
|
||
#define SYSCALL_DEFINE0(sname) \ | ||
SYSCALL_METADATA(_##sname, 0); \ | ||
long __powerpc_sys_##sname(const struct pt_regs *__unused); \ | ||
ALLOW_ERROR_INJECTION(__powerpc_sys_##sname, ERRNO); \ | ||
long __powerpc_sys_##sname(const struct pt_regs *__unused) | ||
|
||
#define COND_SYSCALL(name) \ | ||
long __powerpc_sys_##name(const struct pt_regs *regs); \ | ||
long __weak __powerpc_sys_##name(const struct pt_regs *regs) \ | ||
{ \ | ||
return sys_ni_syscall(); \ | ||
} | ||
|
||
#define SYS_NI(name) SYSCALL_ALIAS(__powerpc_sys_##name, sys_ni_posix_timers); | ||
|
||
#endif // __ASM_POWERPC_SYSCALL_WRAPPER_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters