Thomas Gleixner | 2522fe4 | 2019-05-28 09:57:20 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 2 | /* |
| 3 | * Access to user system call parameters and results |
| 4 | * |
| 5 | * Copyright (C) 2008 Red Hat, Inc. All rights reserved. |
| 6 | * |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 7 | * See asm-generic/syscall.h for descriptions of what we must do here. |
| 8 | */ |
| 9 | |
| 10 | #ifndef _ASM_SYSCALL_H |
| 11 | #define _ASM_SYSCALL_H 1 |
| 12 | |
Eric Paris | ce5d112 | 2014-03-11 13:50:46 -0400 | [diff] [blame] | 13 | #include <uapi/linux/audit.h> |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 14 | #include <linux/sched.h> |
Eric Paris | 75dddcb | 2014-04-22 12:07:30 -0400 | [diff] [blame] | 15 | #include <linux/thread_info.h> |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 16 | |
Ian Munsie | 02424d8 | 2011-02-02 17:27:24 +0000 | [diff] [blame] | 17 | /* ftrace syscalls requires exporting the sys_call_table */ |
Romeo Cane | 1028ccf | 2014-10-02 15:41:39 +0100 | [diff] [blame] | 18 | extern const unsigned long sys_call_table[]; |
Firoz Khan | fbf508d | 2018-12-17 16:10:35 +0530 | [diff] [blame] | 19 | extern const unsigned long compat_sys_call_table[]; |
Ian Munsie | 02424d8 | 2011-02-02 17:27:24 +0000 | [diff] [blame] | 20 | |
Michael Ellerman | e9fbe68 | 2015-07-23 20:21:07 +1000 | [diff] [blame] | 21 | static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs) |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 22 | { |
Michael Ellerman | e9fbe68 | 2015-07-23 20:21:07 +1000 | [diff] [blame] | 23 | /* |
| 24 | * Note that we are returning an int here. That means 0xffffffff, ie. |
| 25 | * 32-bit negative 1, will be interpreted as -1 on a 64-bit kernel. |
| 26 | * This is important for seccomp so that compat tasks can set r0 = -1 |
| 27 | * to reject the syscall. |
| 28 | */ |
Nicholas Piggin | 912237e | 2020-05-07 22:13:31 +1000 | [diff] [blame] | 29 | if (trap_is_syscall(regs)) |
| 30 | return regs->gpr[0]; |
| 31 | else |
| 32 | return -1; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | static inline void syscall_rollback(struct task_struct *task, |
| 36 | struct pt_regs *regs) |
| 37 | { |
| 38 | regs->gpr[3] = regs->orig_gpr3; |
| 39 | } |
| 40 | |
Dmitry V. Levin | f296f1d | 2019-07-16 16:29:39 -0700 | [diff] [blame] | 41 | static inline long syscall_get_error(struct task_struct *task, |
| 42 | struct pt_regs *regs) |
| 43 | { |
Nicholas Piggin | d72500f | 2021-05-20 21:19:31 +1000 | [diff] [blame] | 44 | if (trap_is_scv(regs)) { |
| 45 | unsigned long error = regs->gpr[3]; |
| 46 | |
| 47 | return IS_ERR_VALUE(error) ? error : 0; |
| 48 | } else { |
| 49 | /* |
| 50 | * If the system call failed, |
| 51 | * regs->gpr[3] contains a positive ERRORCODE. |
| 52 | */ |
| 53 | return (regs->ccr & 0x10000000UL) ? -regs->gpr[3] : 0; |
| 54 | } |
Dmitry V. Levin | f296f1d | 2019-07-16 16:29:39 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 57 | static inline long syscall_get_return_value(struct task_struct *task, |
| 58 | struct pt_regs *regs) |
| 59 | { |
| 60 | return regs->gpr[3]; |
| 61 | } |
| 62 | |
| 63 | static inline void syscall_set_return_value(struct task_struct *task, |
| 64 | struct pt_regs *regs, |
| 65 | int error, long val) |
| 66 | { |
Nicholas Piggin | d72500f | 2021-05-20 21:19:31 +1000 | [diff] [blame] | 67 | if (trap_is_scv(regs)) { |
| 68 | regs->gpr[3] = (long) error ?: val; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 69 | } else { |
Nicholas Piggin | d72500f | 2021-05-20 21:19:31 +1000 | [diff] [blame] | 70 | /* |
| 71 | * In the general case it's not obvious that we must deal with |
| 72 | * CCR here, as the syscall exit path will also do that for us. |
| 73 | * However there are some places, eg. the signal code, which |
| 74 | * check ccr to decide if the value in r3 is actually an error. |
| 75 | */ |
| 76 | if (error) { |
| 77 | regs->ccr |= 0x10000000L; |
| 78 | regs->gpr[3] = error; |
| 79 | } else { |
| 80 | regs->ccr &= ~0x10000000L; |
| 81 | regs->gpr[3] = val; |
| 82 | } |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | |
| 86 | static inline void syscall_get_arguments(struct task_struct *task, |
| 87 | struct pt_regs *regs, |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 88 | unsigned long *args) |
| 89 | { |
Michael Ellerman | 1cb9839 | 2015-07-23 20:21:06 +1000 | [diff] [blame] | 90 | unsigned long val, mask = -1UL; |
Steven Rostedt (Red Hat) | b35f549 | 2016-11-07 16:26:37 -0500 | [diff] [blame] | 91 | unsigned int n = 6; |
Michael Ellerman | a765784 | 2015-07-23 20:21:05 +1000 | [diff] [blame] | 92 | |
Christophe Leroy | 898a1ef | 2021-08-20 09:28:19 +0000 | [diff] [blame] | 93 | if (is_32bit_task()) |
Michael Ellerman | a765784 | 2015-07-23 20:21:05 +1000 | [diff] [blame] | 94 | mask = 0xffffffff; |
Christophe Leroy | 898a1ef | 2021-08-20 09:28:19 +0000 | [diff] [blame] | 95 | |
Michael Ellerman | 1cb9839 | 2015-07-23 20:21:06 +1000 | [diff] [blame] | 96 | while (n--) { |
Steven Rostedt (Red Hat) | b35f549 | 2016-11-07 16:26:37 -0500 | [diff] [blame] | 97 | if (n == 0) |
Michael Ellerman | 1cb9839 | 2015-07-23 20:21:06 +1000 | [diff] [blame] | 98 | val = regs->orig_gpr3; |
| 99 | else |
Steven Rostedt (Red Hat) | b35f549 | 2016-11-07 16:26:37 -0500 | [diff] [blame] | 100 | val = regs->gpr[3 + n]; |
Michael Ellerman | 1cb9839 | 2015-07-23 20:21:06 +1000 | [diff] [blame] | 101 | |
| 102 | args[n] = val & mask; |
| 103 | } |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 104 | } |
| 105 | |
Dmitry V. Levin | 16add41 | 2019-03-18 02:30:18 +0300 | [diff] [blame] | 106 | static inline int syscall_get_arch(struct task_struct *task) |
Eric Paris | ce5d112 | 2014-03-11 13:50:46 -0400 | [diff] [blame] | 107 | { |
Christophe Leroy | 770cec1 | 2021-08-20 09:39:14 +0000 | [diff] [blame] | 108 | if (is_32bit_task()) |
| 109 | return AUDIT_ARCH_PPC; |
| 110 | else if (IS_ENABLED(CONFIG_CPU_LITTLE_ENDIAN)) |
| 111 | return AUDIT_ARCH_PPC64LE; |
Dmitry V. Levin | 16add41 | 2019-03-18 02:30:18 +0300 | [diff] [blame] | 112 | else |
Christophe Leroy | 770cec1 | 2021-08-20 09:39:14 +0000 | [diff] [blame] | 113 | return AUDIT_ARCH_PPC64; |
Eric Paris | ce5d112 | 2014-03-11 13:50:46 -0400 | [diff] [blame] | 114 | } |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 115 | #endif /* _ASM_SYSCALL_H */ |