Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Access to user system call parameters and results |
| 3 | * |
| 4 | * Copyright (C) 2008 Red Hat, Inc. All rights reserved. |
| 5 | * |
| 6 | * This copyrighted material is made available to anyone wishing to use, |
| 7 | * modify, copy, or redistribute it subject to the terms and conditions |
| 8 | * of the GNU General Public License v.2. |
| 9 | * |
| 10 | * See asm-generic/syscall.h for descriptions of what we must do here. |
| 11 | */ |
| 12 | |
| 13 | #ifndef _ASM_SYSCALL_H |
| 14 | #define _ASM_SYSCALL_H 1 |
| 15 | |
Eric Paris | ce5d112 | 2014-03-11 13:50:46 -0400 | [diff] [blame] | 16 | #include <uapi/linux/audit.h> |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 17 | #include <linux/sched.h> |
Eric Paris | 75dddcb | 2014-04-22 12:07:30 -0400 | [diff] [blame] | 18 | #include <linux/thread_info.h> |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 19 | |
Ian Munsie | 02424d8 | 2011-02-02 17:27:24 +0000 | [diff] [blame] | 20 | /* ftrace syscalls requires exporting the sys_call_table */ |
| 21 | #ifdef CONFIG_FTRACE_SYSCALLS |
Romeo Cane | 1028ccf | 2014-10-02 15:41:39 +0100 | [diff] [blame] | 22 | extern const unsigned long sys_call_table[]; |
Ian Munsie | 02424d8 | 2011-02-02 17:27:24 +0000 | [diff] [blame] | 23 | #endif /* CONFIG_FTRACE_SYSCALLS */ |
| 24 | |
Michael Ellerman | e9fbe68 | 2015-07-23 20:21:07 +1000 | [diff] [blame] | 25 | 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] | 26 | { |
Michael Ellerman | e9fbe68 | 2015-07-23 20:21:07 +1000 | [diff] [blame] | 27 | /* |
| 28 | * Note that we are returning an int here. That means 0xffffffff, ie. |
| 29 | * 32-bit negative 1, will be interpreted as -1 on a 64-bit kernel. |
| 30 | * This is important for seccomp so that compat tasks can set r0 = -1 |
| 31 | * to reject the syscall. |
| 32 | */ |
| 33 | return TRAP(regs) == 0xc00 ? regs->gpr[0] : -1; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | static inline void syscall_rollback(struct task_struct *task, |
| 37 | struct pt_regs *regs) |
| 38 | { |
| 39 | regs->gpr[3] = regs->orig_gpr3; |
| 40 | } |
| 41 | |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 42 | static inline long syscall_get_return_value(struct task_struct *task, |
| 43 | struct pt_regs *regs) |
| 44 | { |
| 45 | return regs->gpr[3]; |
| 46 | } |
| 47 | |
| 48 | static inline void syscall_set_return_value(struct task_struct *task, |
| 49 | struct pt_regs *regs, |
| 50 | int error, long val) |
| 51 | { |
Michael Ellerman | 1b1a370 | 2015-07-23 20:21:04 +1000 | [diff] [blame] | 52 | /* |
| 53 | * In the general case it's not obvious that we must deal with CCR |
| 54 | * here, as the syscall exit path will also do that for us. However |
| 55 | * there are some places, eg. the signal code, which check ccr to |
| 56 | * decide if the value in r3 is actually an error. |
| 57 | */ |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 58 | if (error) { |
Nathan Lynch | 409d241 | 2010-03-12 13:16:02 +0000 | [diff] [blame] | 59 | regs->ccr |= 0x10000000L; |
Michael Ellerman | 1b1a370 | 2015-07-23 20:21:04 +1000 | [diff] [blame] | 60 | regs->gpr[3] = error; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 61 | } else { |
Nathan Lynch | 409d241 | 2010-03-12 13:16:02 +0000 | [diff] [blame] | 62 | regs->ccr &= ~0x10000000L; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 63 | regs->gpr[3] = val; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | static inline void syscall_get_arguments(struct task_struct *task, |
| 68 | struct pt_regs *regs, |
| 69 | unsigned int i, unsigned int n, |
| 70 | unsigned long *args) |
| 71 | { |
Michael Ellerman | 1cb9839 | 2015-07-23 20:21:06 +1000 | [diff] [blame] | 72 | unsigned long val, mask = -1UL; |
Michael Ellerman | a765784 | 2015-07-23 20:21:05 +1000 | [diff] [blame] | 73 | |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 74 | BUG_ON(i + n > 6); |
Michael Ellerman | a765784 | 2015-07-23 20:21:05 +1000 | [diff] [blame] | 75 | |
| 76 | #ifdef CONFIG_COMPAT |
| 77 | if (test_tsk_thread_flag(task, TIF_32BIT)) |
| 78 | mask = 0xffffffff; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 79 | #endif |
Michael Ellerman | 1cb9839 | 2015-07-23 20:21:06 +1000 | [diff] [blame] | 80 | while (n--) { |
| 81 | if (n == 0 && i == 0) |
| 82 | val = regs->orig_gpr3; |
| 83 | else |
| 84 | val = regs->gpr[3 + i + n]; |
| 85 | |
| 86 | args[n] = val & mask; |
| 87 | } |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | static inline void syscall_set_arguments(struct task_struct *task, |
| 91 | struct pt_regs *regs, |
| 92 | unsigned int i, unsigned int n, |
| 93 | const unsigned long *args) |
| 94 | { |
| 95 | BUG_ON(i + n > 6); |
| 96 | memcpy(®s->gpr[3 + i], args, n * sizeof(args[0])); |
Michael Ellerman | 1cb9839 | 2015-07-23 20:21:06 +1000 | [diff] [blame] | 97 | |
| 98 | /* Also copy the first argument into orig_gpr3 */ |
| 99 | if (i == 0 && n > 0) |
| 100 | regs->orig_gpr3 = args[0]; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 101 | } |
| 102 | |
Eric Paris | ce5d112 | 2014-03-11 13:50:46 -0400 | [diff] [blame] | 103 | static inline int syscall_get_arch(void) |
| 104 | { |
Richard Guy Briggs | 63f1344 | 2014-12-09 15:37:07 -0500 | [diff] [blame] | 105 | int arch = is_32bit_task() ? AUDIT_ARCH_PPC : AUDIT_ARCH_PPC64; |
| 106 | #ifdef __LITTLE_ENDIAN__ |
| 107 | arch |= __AUDIT_ARCH_LE; |
| 108 | #endif |
| 109 | return arch; |
Eric Paris | ce5d112 | 2014-03-11 13:50:46 -0400 | [diff] [blame] | 110 | } |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 111 | #endif /* _ASM_SYSCALL_H */ |