blob: 8d79a87c0511abea70456ce9a79884ba47b1a2e0 [file] [log] [blame]
Roland McGrathf1ba1282008-07-27 16:51:35 +10001/*
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 Parisce5d1122014-03-11 13:50:46 -040016#include <uapi/linux/audit.h>
Roland McGrathf1ba1282008-07-27 16:51:35 +100017#include <linux/sched.h>
Eric Paris75dddcb2014-04-22 12:07:30 -040018#include <linux/thread_info.h>
Roland McGrathf1ba1282008-07-27 16:51:35 +100019
Ian Munsie02424d82011-02-02 17:27:24 +000020/* ftrace syscalls requires exporting the sys_call_table */
21#ifdef CONFIG_FTRACE_SYSCALLS
Romeo Cane1028ccf2014-10-02 15:41:39 +010022extern const unsigned long sys_call_table[];
Ian Munsie02424d82011-02-02 17:27:24 +000023#endif /* CONFIG_FTRACE_SYSCALLS */
24
Roland McGrathf1ba1282008-07-27 16:51:35 +100025static 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
31static inline void syscall_rollback(struct task_struct *task,
32 struct pt_regs *regs)
33{
34 regs->gpr[3] = regs->orig_gpr3;
35}
36
Roland McGrathf1ba1282008-07-27 16:51:35 +100037static inline long syscall_get_return_value(struct task_struct *task,
38 struct pt_regs *regs)
39{
40 return regs->gpr[3];
41}
42
43static inline void syscall_set_return_value(struct task_struct *task,
44 struct pt_regs *regs,
45 int error, long val)
46{
Michael Ellerman1b1a3702015-07-23 20:21:04 +100047 /*
48 * In the general case it's not obvious that we must deal with CCR
49 * here, as the syscall exit path will also do that for us. However
50 * there are some places, eg. the signal code, which check ccr to
51 * decide if the value in r3 is actually an error.
52 */
Roland McGrathf1ba1282008-07-27 16:51:35 +100053 if (error) {
Nathan Lynch409d2412010-03-12 13:16:02 +000054 regs->ccr |= 0x10000000L;
Michael Ellerman1b1a3702015-07-23 20:21:04 +100055 regs->gpr[3] = error;
Roland McGrathf1ba1282008-07-27 16:51:35 +100056 } else {
Nathan Lynch409d2412010-03-12 13:16:02 +000057 regs->ccr &= ~0x10000000L;
Roland McGrathf1ba1282008-07-27 16:51:35 +100058 regs->gpr[3] = val;
59 }
60}
61
62static 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{
Michael Ellerman1cb98392015-07-23 20:21:06 +100067 unsigned long val, mask = -1UL;
Michael Ellermana7657842015-07-23 20:21:05 +100068
Roland McGrathf1ba1282008-07-27 16:51:35 +100069 BUG_ON(i + n > 6);
Michael Ellermana7657842015-07-23 20:21:05 +100070
71#ifdef CONFIG_COMPAT
72 if (test_tsk_thread_flag(task, TIF_32BIT))
73 mask = 0xffffffff;
Roland McGrathf1ba1282008-07-27 16:51:35 +100074#endif
Michael Ellerman1cb98392015-07-23 20:21:06 +100075 while (n--) {
76 if (n == 0 && i == 0)
77 val = regs->orig_gpr3;
78 else
79 val = regs->gpr[3 + i + n];
80
81 args[n] = val & mask;
82 }
Roland McGrathf1ba1282008-07-27 16:51:35 +100083}
84
85static inline void syscall_set_arguments(struct task_struct *task,
86 struct pt_regs *regs,
87 unsigned int i, unsigned int n,
88 const unsigned long *args)
89{
90 BUG_ON(i + n > 6);
91 memcpy(&regs->gpr[3 + i], args, n * sizeof(args[0]));
Michael Ellerman1cb98392015-07-23 20:21:06 +100092
93 /* Also copy the first argument into orig_gpr3 */
94 if (i == 0 && n > 0)
95 regs->orig_gpr3 = args[0];
Roland McGrathf1ba1282008-07-27 16:51:35 +100096}
97
Eric Parisce5d1122014-03-11 13:50:46 -040098static inline int syscall_get_arch(void)
99{
Richard Guy Briggs63f13442014-12-09 15:37:07 -0500100 int arch = is_32bit_task() ? AUDIT_ARCH_PPC : AUDIT_ARCH_PPC64;
101#ifdef __LITTLE_ENDIAN__
102 arch |= __AUDIT_ARCH_LE;
103#endif
104 return arch;
Eric Parisce5d1122014-03-11 13:50:46 -0400105}
Roland McGrathf1ba1282008-07-27 16:51:35 +1000106#endif /* _ASM_SYSCALL_H */