Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Access to user system call parameters and results |
| 3 | * |
| 4 | * Copyright IBM Corp. 2008 |
| 5 | * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com) |
| 6 | * |
| 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. |
| 10 | */ |
| 11 | |
| 12 | #ifndef _ASM_SYSCALL_H |
| 13 | #define _ASM_SYSCALL_H 1 |
| 14 | |
Heiko Carstens | 9bf1226 | 2009-06-12 10:26:47 +0200 | [diff] [blame] | 15 | #include <linux/sched.h> |
Martin Schwidefsky | 20b40a7 | 2011-10-30 15:16:47 +0100 | [diff] [blame] | 16 | #include <linux/err.h> |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 17 | #include <asm/ptrace.h> |
| 18 | |
Mike Frysinger | e7b8e67 | 2010-01-26 04:40:03 -0500 | [diff] [blame] | 19 | /* |
| 20 | * The syscall table always contains 32 bit pointers since we know that the |
| 21 | * address of the function to be called is (way) below 4GB. So the "int" |
| 22 | * type here is what we want [need] for both 32 bit and 64 bit systems. |
| 23 | */ |
| 24 | extern const unsigned int sys_call_table[]; |
| 25 | |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 26 | static inline long syscall_get_nr(struct task_struct *task, |
| 27 | struct pt_regs *regs) |
| 28 | { |
Martin Schwidefsky | b6ef5bb | 2011-10-30 15:16:49 +0100 | [diff] [blame] | 29 | return test_tsk_thread_flag(task, TIF_SYSCALL) ? |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame^] | 30 | (regs->int_code & 0xffff) : -1; |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | static inline void syscall_rollback(struct task_struct *task, |
| 34 | struct pt_regs *regs) |
| 35 | { |
| 36 | regs->gprs[2] = regs->orig_gpr2; |
| 37 | } |
| 38 | |
| 39 | static inline long syscall_get_error(struct task_struct *task, |
| 40 | struct pt_regs *regs) |
| 41 | { |
Martin Schwidefsky | 20b40a7 | 2011-10-30 15:16:47 +0100 | [diff] [blame] | 42 | return IS_ERR_VALUE(regs->gprs[2]) ? regs->gprs[2] : 0; |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | static inline long syscall_get_return_value(struct task_struct *task, |
| 46 | struct pt_regs *regs) |
| 47 | { |
| 48 | return regs->gprs[2]; |
| 49 | } |
| 50 | |
| 51 | static inline void syscall_set_return_value(struct task_struct *task, |
| 52 | struct pt_regs *regs, |
| 53 | int error, long val) |
| 54 | { |
| 55 | regs->gprs[2] = error ? -error : val; |
| 56 | } |
| 57 | |
| 58 | static inline void syscall_get_arguments(struct task_struct *task, |
| 59 | struct pt_regs *regs, |
| 60 | unsigned int i, unsigned int n, |
| 61 | unsigned long *args) |
| 62 | { |
Martin Schwidefsky | 59da213 | 2008-11-27 11:05:55 +0100 | [diff] [blame] | 63 | unsigned long mask = -1UL; |
| 64 | |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 65 | BUG_ON(i + n > 6); |
| 66 | #ifdef CONFIG_COMPAT |
Martin Schwidefsky | 59da213 | 2008-11-27 11:05:55 +0100 | [diff] [blame] | 67 | if (test_tsk_thread_flag(task, TIF_31BIT)) |
| 68 | mask = 0xffffffff; |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 69 | #endif |
Martin Schwidefsky | 59da213 | 2008-11-27 11:05:55 +0100 | [diff] [blame] | 70 | while (n-- > 0) |
| 71 | if (i + n > 0) |
| 72 | args[n] = regs->gprs[2 + i + n] & mask; |
| 73 | if (i == 0) |
| 74 | args[0] = regs->orig_gpr2 & mask; |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | static inline void syscall_set_arguments(struct task_struct *task, |
| 78 | struct pt_regs *regs, |
| 79 | unsigned int i, unsigned int n, |
| 80 | const unsigned long *args) |
| 81 | { |
| 82 | BUG_ON(i + n > 6); |
Martin Schwidefsky | 59da213 | 2008-11-27 11:05:55 +0100 | [diff] [blame] | 83 | while (n-- > 0) |
| 84 | if (i + n > 0) |
| 85 | regs->gprs[2 + i + n] = args[n]; |
| 86 | if (i == 0) |
| 87 | regs->orig_gpr2 = args[0]; |
Martin Schwidefsky | 753c4dd | 2008-10-10 21:33:20 +0200 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | #endif /* _ASM_SYSCALL_H */ |