2 * Access to user system call parameters and results
4 * Copyright IBM Corp. 2008
5 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License (version 2 only)
9 * as published by the Free Software Foundation.
12 #ifndef _ASM_SYSCALL_H
13 #define _ASM_SYSCALL_H 1
15 #include <uapi/linux/audit.h>
16 #include <linux/sched.h>
17 #include <linux/err.h>
18 #include <asm/ptrace.h>
21 * The syscall table always contains 32 bit pointers since we know that the
22 * address of the function to be called is (way) below 4GB. So the "int"
23 * type here is what we want [need] for both 32 bit and 64 bit systems.
25 extern const unsigned int sys_call_table
[];
26 extern const unsigned int sys_call_table_emu
[];
28 static inline long syscall_get_nr(struct task_struct
*task
,
31 return test_pt_regs_flag(regs
, PIF_SYSCALL
) ?
32 (regs
->int_code
& 0xffff) : -1;
35 static inline void syscall_rollback(struct task_struct
*task
,
38 regs
->gprs
[2] = regs
->orig_gpr2
;
41 static inline long syscall_get_error(struct task_struct
*task
,
44 return IS_ERR_VALUE(regs
->gprs
[2]) ? regs
->gprs
[2] : 0;
47 static inline long syscall_get_return_value(struct task_struct
*task
,
53 static inline void syscall_set_return_value(struct task_struct
*task
,
57 regs
->gprs
[2] = error
? error
: val
;
60 static inline void syscall_get_arguments(struct task_struct
*task
,
62 unsigned int i
, unsigned int n
,
65 unsigned long mask
= -1UL;
69 if (test_tsk_thread_flag(task
, TIF_31BIT
))
74 args
[n
] = regs
->gprs
[2 + i
+ n
] & mask
;
76 args
[0] = regs
->orig_gpr2
& mask
;
79 static inline void syscall_set_arguments(struct task_struct
*task
,
81 unsigned int i
, unsigned int n
,
82 const unsigned long *args
)
87 regs
->gprs
[2 + i
+ n
] = args
[n
];
89 regs
->orig_gpr2
= args
[0];
92 static inline int syscall_get_arch(void)
95 if (test_tsk_thread_flag(current
, TIF_31BIT
))
96 return AUDIT_ARCH_S390
;
98 return AUDIT_ARCH_S390X
;
100 #endif /* _ASM_SYSCALL_H */