1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Access to user system call parameters and results
5 * Copyright IBM Corp. 2008
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
10 #define _ASM_SYSCALL_H 1
12 #include <uapi/linux/audit.h>
13 #include <linux/sched.h>
14 #include <linux/err.h>
15 #include <asm/ptrace.h>
18 * The syscall table always contains 32 bit pointers since we know that the
19 * address of the function to be called is (way) below 4GB. So the "int"
20 * type here is what we want [need] for both 32 bit and 64 bit systems.
22 extern const unsigned int sys_call_table
[];
23 extern const unsigned int sys_call_table_emu
[];
25 static inline long syscall_get_nr(struct task_struct
*task
,
28 return test_pt_regs_flag(regs
, PIF_SYSCALL
) ?
29 (regs
->int_code
& 0xffff) : -1;
32 static inline void syscall_rollback(struct task_struct
*task
,
35 regs
->gprs
[2] = regs
->orig_gpr2
;
38 static inline long syscall_get_error(struct task_struct
*task
,
41 return IS_ERR_VALUE(regs
->gprs
[2]) ? regs
->gprs
[2] : 0;
44 static inline long syscall_get_return_value(struct task_struct
*task
,
50 static inline void syscall_set_return_value(struct task_struct
*task
,
54 regs
->gprs
[2] = error
? error
: val
;
57 static inline void syscall_get_arguments(struct task_struct
*task
,
59 unsigned int i
, unsigned int n
,
62 unsigned long mask
= -1UL;
65 * No arguments for this syscall, there's nothing to do.
72 if (test_tsk_thread_flag(task
, TIF_31BIT
))
77 args
[n
] = regs
->gprs
[2 + i
+ n
] & mask
;
79 args
[0] = regs
->orig_gpr2
& mask
;
82 static inline void syscall_set_arguments(struct task_struct
*task
,
84 unsigned int i
, unsigned int n
,
85 const unsigned long *args
)
90 regs
->gprs
[2 + i
+ n
] = args
[n
];
92 regs
->orig_gpr2
= args
[0];
95 static inline int syscall_get_arch(void)
98 if (test_tsk_thread_flag(current
, TIF_31BIT
))
99 return AUDIT_ARCH_S390
;
101 return AUDIT_ARCH_S390X
;
103 #endif /* _ASM_SYSCALL_H */