1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Access to user system call parameters and results
5 * Copyright (C) 2008 Red Hat, Inc. All rights reserved.
7 * See asm-generic/syscall.h for descriptions of what we must do here.
10 #ifndef _ASM_SYSCALL_H
11 #define _ASM_SYSCALL_H 1
13 #include <uapi/linux/audit.h>
14 #include <linux/sched.h>
15 #include <linux/thread_info.h>
17 #ifdef CONFIG_ARCH_HAS_SYSCALL_WRAPPER
18 typedef long (*syscall_fn
)(const struct pt_regs
*);
20 typedef long (*syscall_fn
)(unsigned long, unsigned long, unsigned long,
21 unsigned long, unsigned long, unsigned long);
24 /* ftrace syscalls requires exporting the sys_call_table */
25 extern const syscall_fn sys_call_table
[];
26 extern const syscall_fn compat_sys_call_table
[];
28 static inline int syscall_get_nr(struct task_struct
*task
, struct pt_regs
*regs
)
31 * Note that we are returning an int here. That means 0xffffffff, ie.
32 * 32-bit negative 1, will be interpreted as -1 on a 64-bit kernel.
33 * This is important for seccomp so that compat tasks can set r0 = -1
34 * to reject the syscall.
36 if (trap_is_syscall(regs
))
42 static inline void syscall_rollback(struct task_struct
*task
,
45 regs
->gpr
[3] = regs
->orig_gpr3
;
48 static inline long syscall_get_error(struct task_struct
*task
,
51 if (trap_is_scv(regs
)) {
52 unsigned long error
= regs
->gpr
[3];
54 return IS_ERR_VALUE(error
) ? error
: 0;
57 * If the system call failed,
58 * regs->gpr[3] contains a positive ERRORCODE.
60 return (regs
->ccr
& 0x10000000UL
) ? -regs
->gpr
[3] : 0;
64 static inline long syscall_get_return_value(struct task_struct
*task
,
70 static inline void syscall_set_return_value(struct task_struct
*task
,
74 if (trap_is_scv(regs
)) {
75 regs
->gpr
[3] = (long) error
?: val
;
78 * In the general case it's not obvious that we must deal with
79 * CCR here, as the syscall exit path will also do that for us.
80 * However there are some places, eg. the signal code, which
81 * check ccr to decide if the value in r3 is actually an error.
84 regs
->ccr
|= 0x10000000L
;
87 regs
->ccr
&= ~0x10000000L
;
93 static inline void syscall_get_arguments(struct task_struct
*task
,
97 unsigned long val
, mask
= -1UL;
100 if (is_tsk_32bit_task(task
))
105 val
= regs
->orig_gpr3
;
107 val
= regs
->gpr
[3 + n
];
109 args
[n
] = val
& mask
;
113 static inline int syscall_get_arch(struct task_struct
*task
)
115 if (is_tsk_32bit_task(task
))
116 return AUDIT_ARCH_PPC
;
117 else if (IS_ENABLED(CONFIG_CPU_LITTLE_ENDIAN
))
118 return AUDIT_ARCH_PPC64LE
;
120 return AUDIT_ARCH_PPC64
;
122 #endif /* _ASM_SYSCALL_H */