blob: 087df5f26f86783a3576a0f8bbdf55f6a764867d [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 Baechlebec9b2b2012-09-26 20:16:47 +020016#include <linux/audit.h>
17#include <linux/elf-em.h>
Ralf Baechlec0ff3c52012-08-17 08:22:04 +020018#include <linux/kernel.h>
19#include <linux/sched.h>
20#include <linux/uaccess.h>
21#include <asm/ptrace.h>
22
23static inline long syscall_get_nr(struct task_struct *task,
24 struct pt_regs *regs)
25{
26 return regs->regs[2];
27}
28
29static inline unsigned long mips_get_syscall_arg(unsigned long *arg,
30 struct task_struct *task, struct pt_regs *regs, unsigned int n)
31{
32 unsigned long usp = regs->regs[29];
33
34 switch (n) {
35 case 0: case 1: case 2: case 3:
36 *arg = regs->regs[4 + n];
37
38 return 0;
39
40#ifdef CONFIG_32BIT
41 case 4: case 5: case 6: case 7:
42 return get_user(*arg, (int *)usp + 4 * n);
43#endif
44
45#ifdef CONFIG_64BIT
46 case 4: case 5: case 6: case 7:
47#ifdef CONFIG_MIPS32_O32
48 if (test_thread_flag(TIF_32BIT_REGS))
49 return get_user(*arg, (int *)usp + 4 * n);
50 else
51#endif
52 *arg = regs->regs[4 + n];
53
54 return 0;
55#endif
56
57 default:
58 BUG();
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{
67 unsigned long arg;
68 int ret;
69
70 while (n--)
71 ret |= mips_get_syscall_arg(&arg, task, regs, i++);
72
73 /*
74 * No way to communicate an error because this is a void function.
75 */
76#if 0
77 return ret;
78#endif
79}
80
Ralf Baechle19e2e172012-07-13 23:38:17 +020081extern const unsigned long sys_call_table[];
82extern const unsigned long sys32_call_table[];
83extern const unsigned long sysn32_call_table[];
84
Ralf Baechlebec9b2b2012-09-26 20:16:47 +020085static inline int __syscall_get_arch(void)
86{
87 int arch = EM_MIPS;
88#ifdef CONFIG_64BIT
89 arch |= __AUDIT_ARCH_64BIT;
90#endif
91#if defined(__LITTLE_ENDIAN)
92 arch |= __AUDIT_ARCH_LE;
93#endif
94 return arch;
95}
96
Ralf Baechle19e2e172012-07-13 23:38:17 +020097#endif /* __ASM_MIPS_SYSCALL_H */