blob: 4234b2d726c55d60bd08e18d46d3d51a6a6694da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1995, 1996, 1997, 2000, 2001, 05 by Ralf Baechle
7 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8 * Copyright (C) 2001 MIPS Technologies, Inc.
9 */
Randy Dunlapa9415642006-01-11 12:17:48 -080010#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/errno.h>
12#include <linux/linkage.h>
Alexey Dobriyan4e950f62007-07-30 02:36:13 +040013#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/string.h>
17#include <linux/syscalls.h>
18#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/utsname.h>
20#include <linux/unistd.h>
21#include <linux/sem.h>
22#include <linux/msg.h>
23#include <linux/shm.h>
24#include <linux/compiler.h>
Adrian Bunkcba4fbb2007-10-16 23:29:24 -070025#include <linux/ipc.h>
Ralf Baechlef1e39a42009-09-17 02:25:05 +020026#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
David Daney652b14a2010-07-19 13:14:57 -070028#include <linux/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Ralf Baechlef1e39a42009-09-17 02:25:05 +020030#include <asm/asm.h>
James Hoganf39f3b52017-05-31 16:19:49 +010031#include <asm/asm-eva.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/branch.h>
33#include <asm/cachectl.h>
34#include <asm/cacheflush.h>
Sam Ravnborg048eb582005-09-09 22:32:31 +020035#include <asm/asm-offsets.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/signal.h>
37#include <asm/sim.h>
38#include <asm/shmparam.h>
39#include <asm/sysmips.h>
40#include <asm/uaccess.h>
David Howellsb81947c2012-03-28 18:30:02 +010041#include <asm/switch_to.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Ralf Baechle8213bbf2008-07-20 13:16:46 +010043/*
44 * For historic reasons the pipe(2) syscall on MIPS has an unusual calling
Ralf Baechle70342282013-01-22 12:59:30 +010045 * convention. It returns results in registers $v0 / $v1 which means there
Ralf Baechle8213bbf2008-07-20 13:16:46 +010046 * is no need for it to do verify the validity of a userspace pointer
Ralf Baechle70342282013-01-22 12:59:30 +010047 * argument. Historically that used to be expensive in Linux. These days
Ralf Baechle8213bbf2008-07-20 13:16:46 +010048 * the performance advantage is negligible.
49 */
Al Viro974fdb32012-12-23 20:18:28 -050050asmlinkage int sysm_pipe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52 int fd[2];
Al Viro974fdb32012-12-23 20:18:28 -050053 int error = do_pipe_flags(fd, 0);
54 if (error)
55 return error;
56 current_pt_regs()->regs[3] = fd[1];
57 return fd[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
Ralf Baechledbda6ac2009-02-08 16:00:26 +000060SYSCALL_DEFINE6(mips_mmap, unsigned long, addr, unsigned long, len,
61 unsigned long, prot, unsigned long, flags, unsigned long,
62 fd, off_t, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
64 unsigned long result;
65
66 result = -EINVAL;
67 if (offset & ~PAGE_MASK)
68 goto out;
69
Al Virof8b72562009-11-30 17:37:04 -050070 result = sys_mmap_pgoff(addr, len, prot, flags, fd, offset >> PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72out:
73 return result;
74}
75
Ralf Baechledbda6ac2009-02-08 16:00:26 +000076SYSCALL_DEFINE6(mips_mmap2, unsigned long, addr, unsigned long, len,
77 unsigned long, prot, unsigned long, flags, unsigned long, fd,
78 unsigned long, pgoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
H. Peter Anvin947df172006-02-24 21:20:29 -080080 if (pgoff & (~PAGE_MASK >> 12))
81 return -EINVAL;
82
Al Virof8b72562009-11-30 17:37:04 -050083 return sys_mmap_pgoff(addr, len, prot, flags, fd, pgoff >> (PAGE_SHIFT-12));
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
86save_static_function(sys_fork);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087save_static_function(sys_clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Ralf Baechledbda6ac2009-02-08 16:00:26 +000089SYSCALL_DEFINE1(set_thread_area, unsigned long, addr)
Ralf Baechle3c370262005-04-13 17:43:59 +000090{
Al Virodc8f6022006-01-12 01:06:07 -080091 struct thread_info *ti = task_thread_info(current);
Ralf Baechle3c370262005-04-13 17:43:59 +000092
93 ti->tp_value = addr;
Ralf Baechlea3692022007-07-10 17:33:02 +010094 if (cpu_has_userlocal)
95 write_c0_userlocal(addr);
Ralf Baechle06be3752006-09-19 17:18:53 +010096
97 return 0;
Ralf Baechle3c370262005-04-13 17:43:59 +000098}
99
Ralf Baechle12890d02012-12-27 16:23:12 +0100100static inline int mips_atomic_set(unsigned long addr, unsigned long new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200102 unsigned long old, tmp;
Ralf Baechle12890d02012-12-27 16:23:12 +0100103 struct pt_regs *regs;
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200104 unsigned int err;
105
106 if (unlikely(addr & 3))
107 return -EINVAL;
108
109 if (unlikely(!access_ok(VERIFY_WRITE, addr, 4)))
110 return -EINVAL;
111
112 if (cpu_has_llsc && R10000_LLSC_WAR) {
113 __asm__ __volatile__ (
Ralf Baechlea809d462014-03-30 13:20:10 +0200114 " .set arch=r4000 \n"
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200115 " li %[err], 0 \n"
116 "1: ll %[old], (%[addr]) \n"
117 " move %[tmp], %[new] \n"
118 "2: sc %[tmp], (%[addr]) \n"
119 " beqzl %[tmp], 1b \n"
120 "3: \n"
Maciej W. Rozycki0e525e42014-11-15 22:09:31 +0000121 " .insn \n"
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200122 " .section .fixup,\"ax\" \n"
123 "4: li %[err], %[efault] \n"
124 " j 3b \n"
125 " .previous \n"
126 " .section __ex_table,\"a\" \n"
127 " "STR(PTR)" 1b, 4b \n"
128 " "STR(PTR)" 2b, 4b \n"
129 " .previous \n"
Ralf Baechlea91be9e2009-12-02 11:33:03 +0000130 " .set mips0 \n"
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200131 : [old] "=&r" (old),
132 [err] "=&r" (err),
133 [tmp] "=&r" (tmp)
134 : [addr] "r" (addr),
135 [new] "r" (new),
136 [efault] "i" (-EFAULT)
137 : "memory");
138 } else if (cpu_has_llsc) {
139 __asm__ __volatile__ (
Markos Chandrasfee313d2015-01-15 10:34:00 +0000140 " .set "MIPS_ISA_ARCH_LEVEL" \n"
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200141 " li %[err], 0 \n"
James Hoganf39f3b52017-05-31 16:19:49 +0100142 "1: \n"
143 user_ll("%[old]", "(%[addr])")
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200144 " move %[tmp], %[new] \n"
James Hoganf39f3b52017-05-31 16:19:49 +0100145 "2: \n"
146 user_sc("%[tmp]", "(%[addr])")
James Hogandd2f8322017-05-31 16:19:47 +0100147 " beqz %[tmp], 4f \n"
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200148 "3: \n"
Maciej W. Rozycki0e525e42014-11-15 22:09:31 +0000149 " .insn \n"
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200150 " .subsection 2 \n"
151 "4: b 1b \n"
152 " .previous \n"
153 " \n"
154 " .section .fixup,\"ax\" \n"
155 "5: li %[err], %[efault] \n"
156 " j 3b \n"
157 " .previous \n"
158 " .section __ex_table,\"a\" \n"
159 " "STR(PTR)" 1b, 5b \n"
160 " "STR(PTR)" 2b, 5b \n"
161 " .previous \n"
Ralf Baechlea91be9e2009-12-02 11:33:03 +0000162 " .set mips0 \n"
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200163 : [old] "=&r" (old),
164 [err] "=&r" (err),
165 [tmp] "=&r" (tmp)
166 : [addr] "r" (addr),
167 [new] "r" (new),
168 [efault] "i" (-EFAULT)
169 : "memory");
170 } else {
171 do {
172 preempt_disable();
173 ll_bit = 1;
174 ll_task = current;
175 preempt_enable();
176
177 err = __get_user(old, (unsigned int *) addr);
178 err |= __put_user(new, (unsigned int *) addr);
179 if (err)
180 break;
181 rmb();
182 } while (!ll_bit);
183 }
184
185 if (unlikely(err))
186 return err;
187
Ralf Baechle12890d02012-12-27 16:23:12 +0100188 regs = current_pt_regs();
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200189 regs->regs[2] = old;
190 regs->regs[7] = 0; /* No error */
191
192 /*
193 * Don't let your children do this ...
194 */
195 __asm__ __volatile__(
196 " move $29, %0 \n"
197 " j syscall_exit \n"
198 : /* no outputs */
199 : "r" (regs));
200
201 /* unreached. Honestly. */
Ralf Baechlef2ace932012-12-27 13:37:40 +0100202 unreachable();
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200203}
204
James Hoganf8c331c2017-05-31 16:19:48 +0100205/*
206 * mips_atomic_set() normally returns directly via syscall_exit potentially
207 * clobbering static registers, so be sure to preserve them.
208 */
209save_static_function(sys_sysmips);
210
Ralf Baechle12890d02012-12-27 16:23:12 +0100211SYSCALL_DEFINE3(sysmips, long, cmd, long, arg1, long, arg2)
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200212{
Ralf Baechle293c5bd2007-07-25 16:19:33 +0100213 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 case MIPS_ATOMIC_SET:
Ralf Baechle12890d02012-12-27 16:23:12 +0100215 return mips_atomic_set(arg1, arg2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 case MIPS_FIXADE:
Ralf Baechle293c5bd2007-07-25 16:19:33 +0100218 if (arg1 & ~3)
219 return -EINVAL;
220
221 if (arg1 & 1)
222 set_thread_flag(TIF_FIXADE);
223 else
224 clear_thread_flag(TIF_FIXADE);
225 if (arg1 & 2)
226 set_thread_flag(TIF_LOGADE);
227 else
Stefan Oberhumere56293b2011-01-17 09:19:53 +0100228 clear_thread_flag(TIF_LOGADE);
Ralf Baechle293c5bd2007-07-25 16:19:33 +0100229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 return 0;
231
232 case FLUSH_CACHE:
233 __flush_cache_all();
234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
237 return -EINVAL;
238}
239
240/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * No implemented yet ...
242 */
Ralf Baechledbda6ac2009-02-08 16:00:26 +0000243SYSCALL_DEFINE3(cachectl, char *, addr, int, nbytes, int, op)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 return -ENOSYS;
246}
247
248/*
249 * If we ever come here the user sp is bad. Zap the process right away.
250 * Due to the bad stack signaling wouldn't work.
251 */
252asmlinkage void bad_stack(void)
253{
254 do_exit(SIGSEGV);
255}