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> |
| 17 | #include <linux/compat.h> |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 18 | #include <linux/sched.h> |
| 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 |
| 22 | extern const unsigned long *sys_call_table; |
| 23 | #endif /* CONFIG_FTRACE_SYSCALLS */ |
| 24 | |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 25 | static inline long syscall_get_nr(struct task_struct *task, |
| 26 | struct pt_regs *regs) |
| 27 | { |
| 28 | return TRAP(regs) == 0xc00 ? regs->gpr[0] : -1L; |
| 29 | } |
| 30 | |
| 31 | static inline void syscall_rollback(struct task_struct *task, |
| 32 | struct pt_regs *regs) |
| 33 | { |
| 34 | regs->gpr[3] = regs->orig_gpr3; |
| 35 | } |
| 36 | |
| 37 | static inline long syscall_get_error(struct task_struct *task, |
| 38 | struct pt_regs *regs) |
| 39 | { |
Nathan Lynch | 409d241 | 2010-03-12 13:16:02 +0000 | [diff] [blame] | 40 | return (regs->ccr & 0x10000000) ? -regs->gpr[3] : 0; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | static inline long syscall_get_return_value(struct task_struct *task, |
| 44 | struct pt_regs *regs) |
| 45 | { |
| 46 | return regs->gpr[3]; |
| 47 | } |
| 48 | |
| 49 | static inline void syscall_set_return_value(struct task_struct *task, |
| 50 | struct pt_regs *regs, |
| 51 | int error, long val) |
| 52 | { |
| 53 | if (error) { |
Nathan Lynch | 409d241 | 2010-03-12 13:16:02 +0000 | [diff] [blame] | 54 | regs->ccr |= 0x10000000L; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 55 | regs->gpr[3] = -error; |
| 56 | } else { |
Nathan Lynch | 409d241 | 2010-03-12 13:16:02 +0000 | [diff] [blame] | 57 | regs->ccr &= ~0x10000000L; |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 58 | regs->gpr[3] = val; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | static inline void syscall_get_arguments(struct task_struct *task, |
| 63 | struct pt_regs *regs, |
| 64 | unsigned int i, unsigned int n, |
| 65 | unsigned long *args) |
| 66 | { |
| 67 | BUG_ON(i + n > 6); |
| 68 | #ifdef CONFIG_PPC64 |
| 69 | if (test_tsk_thread_flag(task, TIF_32BIT)) { |
| 70 | /* |
| 71 | * Zero-extend 32-bit argument values. The high bits are |
| 72 | * garbage ignored by the actual syscall dispatch. |
| 73 | */ |
| 74 | while (n-- > 0) |
| 75 | args[n] = (u32) regs->gpr[3 + i + n]; |
| 76 | return; |
| 77 | } |
| 78 | #endif |
| 79 | memcpy(args, ®s->gpr[3 + i], n * sizeof(args[0])); |
| 80 | } |
| 81 | |
| 82 | static inline void syscall_set_arguments(struct task_struct *task, |
| 83 | struct pt_regs *regs, |
| 84 | unsigned int i, unsigned int n, |
| 85 | const unsigned long *args) |
| 86 | { |
| 87 | BUG_ON(i + n > 6); |
| 88 | memcpy(®s->gpr[3 + i], args, n * sizeof(args[0])); |
| 89 | } |
| 90 | |
Eric Paris | ce5d112 | 2014-03-11 13:50:46 -0400 | [diff] [blame^] | 91 | static inline int syscall_get_arch(void) |
| 92 | { |
| 93 | int arch = AUDIT_ARCH_PPC; |
| 94 | |
| 95 | #ifdef CONFIG_PPC64 |
| 96 | if (!is_32bit_task()) |
| 97 | arch = AUDIT_ARCH_PPC64; |
| 98 | #endif |
| 99 | return arch; |
| 100 | } |
Roland McGrath | f1ba128 | 2008-07-27 16:51:35 +1000 | [diff] [blame] | 101 | #endif /* _ASM_SYSCALL_H */ |