blob: 0170602a1e4e3f920b0b3834e0df26203d81c5a5 [file] [log] [blame]
Ralf Baechle19e2e172012-07-13 23:38:17 +02001/*
Ralf Baechlec0ff3c52012-08-17 08:22:04 +02002 * Access to user system call parameters and results
3 *
Ralf Baechle19e2e172012-07-13 23:38:17 +02004 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
Ralf Baechlec0ff3c52012-08-17 08:22:04 +02008 * See asm-generic/syscall.h for descriptions of what we must do here.
9 *
Ralf Baechle19e2e172012-07-13 23:38:17 +020010 * Copyright (C) 2012 Ralf Baechle <ralf@linux-mips.org>
11 */
12
13#ifndef __ASM_MIPS_SYSCALL_H
14#define __ASM_MIPS_SYSCALL_H
15
Ralf Baechlef5179282014-02-10 18:00:17 +010016#include <linux/compiler.h>
Eric Paris579ec9e2014-03-11 12:55:42 -040017#include <uapi/linux/audit.h>
Ralf Baechlebec9b2b2012-09-26 20:16:47 +020018#include <linux/elf-em.h>
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020019#include <linux/kernel.h>
20#include <linux/sched.h>
21#include <linux/uaccess.h>
22#include <asm/ptrace.h>
Markos Chandras4c21b8f2014-01-22 14:40:03 +000023#include <asm/unistd.h>
24
25#ifndef __NR_syscall /* Only defined if _MIPS_SIM == _MIPS_SIM_ABI32 */
26#define __NR_syscall 4000
27#endif
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020028
James Hogande8cd0d2017-08-11 21:56:52 +010029static inline bool mips_syscall_is_indirect(struct task_struct *task,
30 struct pt_regs *regs)
31{
32 /* O32 ABI syscall() - Either 64-bit with O32 or 32-bit */
33 return (IS_ENABLED(CONFIG_32BIT) ||
34 test_tsk_thread_flag(task, TIF_32BIT_REGS)) &&
35 (regs->regs[2] == __NR_syscall);
36}
37
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020038static inline long syscall_get_nr(struct task_struct *task,
39 struct pt_regs *regs)
40{
Lars Perssonc2d9f172015-02-03 17:08:17 +010041 return current_thread_info()->syscall;
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020042}
43
James Hogande8cd0d2017-08-11 21:56:52 +010044static inline void mips_syscall_update_nr(struct task_struct *task,
45 struct pt_regs *regs)
46{
47 /*
48 * v0 is the system call number, except for O32 ABI syscall(), where it
49 * ends up in a0.
50 */
51 if (mips_syscall_is_indirect(task, regs))
52 task_thread_info(task)->syscall = regs->regs[4];
53 else
54 task_thread_info(task)->syscall = regs->regs[2];
55}
56
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020057static inline unsigned long mips_get_syscall_arg(unsigned long *arg,
58 struct task_struct *task, struct pt_regs *regs, unsigned int n)
59{
Guenter Roeck63238f22013-11-25 15:21:00 -080060 unsigned long usp __maybe_unused = regs->regs[29];
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020061
62 switch (n) {
63 case 0: case 1: case 2: case 3:
64 *arg = regs->regs[4 + n];
65
66 return 0;
67
68#ifdef CONFIG_32BIT
69 case 4: case 5: case 6: case 7:
Lars Persson86ca57b2014-03-17 12:14:13 +010070 return get_user(*arg, (int *)usp + n);
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020071#endif
72
73#ifdef CONFIG_64BIT
74 case 4: case 5: case 6: case 7:
75#ifdef CONFIG_MIPS32_O32
76 if (test_thread_flag(TIF_32BIT_REGS))
Lars Persson86ca57b2014-03-17 12:14:13 +010077 return get_user(*arg, (int *)usp + n);
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020078 else
79#endif
80 *arg = regs->regs[4 + n];
81
82 return 0;
83#endif
84
85 default:
86 BUG();
87 }
Ralf Baechlef5179282014-02-10 18:00:17 +010088
89 unreachable();
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020090}
91
Ralf Baechle1d7bf992013-09-06 20:24:48 +020092static inline long syscall_get_return_value(struct task_struct *task,
93 struct pt_regs *regs)
94{
95 return regs->regs[2];
96}
97
Markos Chandras22feadb2014-01-22 14:39:58 +000098static inline void syscall_rollback(struct task_struct *task,
99 struct pt_regs *regs)
100{
101 /* Do nothing */
102}
103
Ralf Baechle1d7bf992013-09-06 20:24:48 +0200104static inline void syscall_set_return_value(struct task_struct *task,
105 struct pt_regs *regs,
106 int error, long val)
107{
108 if (error) {
109 regs->regs[2] = -error;
James Hoganbecddba2017-06-29 10:12:35 +0100110 regs->regs[7] = 1;
Ralf Baechle1d7bf992013-09-06 20:24:48 +0200111 } else {
112 regs->regs[2] = val;
113 regs->regs[7] = 0;
114 }
115}
116
Ralf Baechlec0ff3c52012-08-17 08:22:04 +0200117static inline void syscall_get_arguments(struct task_struct *task,
118 struct pt_regs *regs,
119 unsigned int i, unsigned int n,
120 unsigned long *args)
121{
Ralf Baechlec0ff3c52012-08-17 08:22:04 +0200122 int ret;
James Hogande8cd0d2017-08-11 21:56:52 +0100123
124 /* O32 ABI syscall() */
125 if (mips_syscall_is_indirect(task, regs))
Markos Chandras4c21b8f2014-01-22 14:40:03 +0000126 i++;
Ralf Baechlec0ff3c52012-08-17 08:22:04 +0200127
128 while (n--)
Markos Chandrasa8031d22014-01-22 14:39:57 +0000129 ret |= mips_get_syscall_arg(args++, task, regs, i++);
Ralf Baechlec0ff3c52012-08-17 08:22:04 +0200130
131 /*
132 * No way to communicate an error because this is a void function.
133 */
134#if 0
135 return ret;
136#endif
137}
138
Ralf Baechle19e2e172012-07-13 23:38:17 +0200139extern const unsigned long sys_call_table[];
140extern const unsigned long sys32_call_table[];
141extern const unsigned long sysn32_call_table[];
142
Eric Paris5e937a92014-03-11 12:48:43 -0400143static inline int syscall_get_arch(void)
Ralf Baechlebec9b2b2012-09-26 20:16:47 +0200144{
Eric Parisce5d1122014-03-11 13:50:46 -0400145 int arch = AUDIT_ARCH_MIPS;
Ralf Baechlebec9b2b2012-09-26 20:16:47 +0200146#ifdef CONFIG_64BIT
Markos Chandras40381522014-07-24 12:10:01 +0100147 if (!test_thread_flag(TIF_32BIT_REGS)) {
Markos Chandras6e345742014-01-22 14:39:59 +0000148 arch |= __AUDIT_ARCH_64BIT;
Markos Chandras40381522014-07-24 12:10:01 +0100149 /* N32 sets only TIF_32BIT_ADDR */
150 if (test_thread_flag(TIF_32BIT_ADDR))
151 arch |= __AUDIT_ARCH_CONVENTION_MIPS64_N32;
152 }
Ralf Baechlebec9b2b2012-09-26 20:16:47 +0200153#endif
154#if defined(__LITTLE_ENDIAN)
155 arch |= __AUDIT_ARCH_LE;
156#endif
157 return arch;
158}
159
Ralf Baechle19e2e172012-07-13 23:38:17 +0200160#endif /* __ASM_MIPS_SYSCALL_H */