blob: f96656209a78b8ae5f042c1937c1342d31960b78 [file] [log] [blame]
Sam Ravnborgf5e706a2008-07-17 21:55:51 -07001/*
2 * uaccess.h: User space memore access functions.
3 *
4 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6 */
7#ifndef _ASM_UACCESS_H
8#define _ASM_UACCESS_H
9
10#ifdef __KERNEL__
11#include <linux/compiler.h>
12#include <linux/sched.h>
13#include <linux/string.h>
14#include <linux/errno.h>
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070015#endif
16
17#ifndef __ASSEMBLY__
18
David Miller2c66f622012-05-26 11:14:27 -070019#include <asm/processor.h>
20
Rusty Russellad6561d2009-06-12 21:47:03 -060021#define ARCH_HAS_SORT_EXTABLE
22#define ARCH_HAS_SEARCH_EXTABLE
23
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070024/* Sparc is not segmented, however we need to be able to fool access_ok()
25 * when doing system calls from kernel mode legitimately.
26 *
27 * "For historical reasons, these macros are grossly misnamed." -Linus
28 */
29
30#define KERNEL_DS ((mm_segment_t) { 0 })
31#define USER_DS ((mm_segment_t) { -1 })
32
33#define VERIFY_READ 0
34#define VERIFY_WRITE 1
35
36#define get_ds() (KERNEL_DS)
37#define get_fs() (current->thread.current_ds)
38#define set_fs(val) ((current->thread.current_ds) = (val))
39
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +020040#define segment_eq(a, b) ((a).seg == (b).seg)
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070041
42/* We have there a nice not-mapped page at PAGE_OFFSET - PAGE_SIZE, so that this test
43 * can be fairly lightweight.
44 * No one can read/write anything from userland in the kernel space by setting
45 * large size and address near to PAGE_OFFSET - a fault will break his intentions.
46 */
47#define __user_ok(addr, size) ({ (void)(size); (addr) < STACK_TOP; })
48#define __kernel_ok (segment_eq(get_fs(), KERNEL_DS))
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +020049#define __access_ok(addr, size) (__user_ok((addr) & get_fs().seg, (size)))
50#define access_ok(type, addr, size) \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070051 ({ (void)(type); __access_ok((unsigned long)(addr), size); })
52
53/*
54 * The exception table consists of pairs of addresses: the first is the
55 * address of an instruction that is allowed to fault, and the second is
56 * the address at which the program should continue. No registers are
57 * modified, so it is entirely up to the continuation code to figure out
58 * what to do.
59 *
60 * All the routines below use bits of fixup code that are out of line
61 * with the main instruction path. This means when everything is well,
62 * we don't even have to jump over them. Further, they do not intrude
63 * on our cache or tlb entries.
64 *
65 * There is a special way how to put a range of potentially faulting
66 * insns (like twenty ldd/std's with now intervening other instructions)
67 * You specify address of first in insn and 0 in fixup and in the next
68 * exception_table_entry you specify last potentially faulting insn + 1
69 * and in fixup the routine which should handle the fault.
70 * That fixup code will get
71 * (faulting_insn_address - first_insn_in_the_range_address)/4
72 * in %g2 (ie. index of the faulting instruction in the range).
73 */
74
75struct exception_table_entry
76{
77 unsigned long insn, fixup;
78};
79
80/* Returns 0 if exception not found and fixup otherwise. */
Sam Ravnborgf05a6862014-05-16 23:25:50 +020081unsigned long search_extables_range(unsigned long addr, unsigned long *g2);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070082
Sam Ravnborgf05a6862014-05-16 23:25:50 +020083void __ret_efault(void);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070084
85/* Uh, these should become the main single-value transfer routines..
86 * They automatically use the right size if we just have the right
87 * pointer type..
88 *
89 * This gets kind of ugly. We want to return _two_ values in "get_user()"
90 * and yet we don't want to do any pointers, because that is too much
91 * of a performance impact. Thus we have a few rather ugly macros here,
92 * and hide all the ugliness from the user.
93 */
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +020094#define put_user(x, ptr) ({ \
95 unsigned long __pu_addr = (unsigned long)(ptr); \
96 __chk_user_ptr(ptr); \
97 __put_user_check((__typeof__(*(ptr)))(x), __pu_addr, sizeof(*(ptr))); \
98})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -070099
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200100#define get_user(x, ptr) ({ \
101 unsigned long __gu_addr = (unsigned long)(ptr); \
102 __chk_user_ptr(ptr); \
103 __get_user_check((x), __gu_addr, sizeof(*(ptr)), __typeof__(*(ptr))); \
104})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700105
106/*
107 * The "__xxx" versions do not do address space checking, useful when
108 * doing multiple accesses to the same area (the user has to do the
109 * checks by hand with "access_ok()")
110 */
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200111#define __put_user(x, ptr) \
112 __put_user_nocheck((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
113#define __get_user(x, ptr) \
114 __get_user_nocheck((x), (ptr), sizeof(*(ptr)), __typeof__(*(ptr)))
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700115
116struct __large_struct { unsigned long buf[100]; };
117#define __m(x) ((struct __large_struct __user *)(x))
118
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200119#define __put_user_check(x, addr, size) ({ \
120 register int __pu_ret; \
121 if (__access_ok(addr, size)) { \
122 switch (size) { \
123 case 1: \
124 __put_user_asm(x, b, addr, __pu_ret); \
125 break; \
126 case 2: \
127 __put_user_asm(x, h, addr, __pu_ret); \
128 break; \
129 case 4: \
130 __put_user_asm(x, , addr, __pu_ret); \
131 break; \
132 case 8: \
133 __put_user_asm(x, d, addr, __pu_ret); \
134 break; \
135 default: \
136 __pu_ret = __put_user_bad(); \
137 break; \
138 } \
139 } else { \
140 __pu_ret = -EFAULT; \
141 } \
142 __pu_ret; \
143})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700144
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200145#define __put_user_nocheck(x, addr, size) ({ \
146 register int __pu_ret; \
147 switch (size) { \
148 case 1: \
149 __put_user_asm(x, b, addr, __pu_ret); \
150 break; \
151 case 2: \
152 __put_user_asm(x, h, addr, __pu_ret); \
153 break; \
154 case 4: \
155 __put_user_asm(x, , addr, __pu_ret); \
156 break; \
157 case 8: \
158 __put_user_asm(x, d, addr, __pu_ret); \
159 break; \
160 default: \
161 __pu_ret = __put_user_bad(); \
162 break; \
163 } \
164 __pu_ret; \
165})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700166
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200167#define __put_user_asm(x, size, addr, ret) \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700168__asm__ __volatile__( \
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200169 "/* Put user asm, inline. */\n" \
170 "1:\t" "st"#size " %1, %2\n\t" \
171 "clr %0\n" \
172 "2:\n\n\t" \
173 ".section .fixup,#alloc,#execinstr\n\t" \
174 ".align 4\n" \
175 "3:\n\t" \
176 "b 2b\n\t" \
177 " mov %3, %0\n\t" \
178 ".previous\n\n\t" \
179 ".section __ex_table,#alloc\n\t" \
180 ".align 4\n\t" \
181 ".word 1b, 3b\n\t" \
182 ".previous\n\n\t" \
183 : "=&r" (ret) : "r" (x), "m" (*__m(addr)), \
184 "i" (-EFAULT))
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700185
Sam Ravnborgf05a6862014-05-16 23:25:50 +0200186int __put_user_bad(void);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700187
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200188#define __get_user_check(x, addr, size, type) ({ \
189 register int __gu_ret; \
190 register unsigned long __gu_val; \
191 if (__access_ok(addr, size)) { \
192 switch (size) { \
193 case 1: \
194 __get_user_asm(__gu_val, ub, addr, __gu_ret); \
195 break; \
196 case 2: \
197 __get_user_asm(__gu_val, uh, addr, __gu_ret); \
198 break; \
199 case 4: \
200 __get_user_asm(__gu_val, , addr, __gu_ret); \
201 break; \
202 case 8: \
203 __get_user_asm(__gu_val, d, addr, __gu_ret); \
204 break; \
205 default: \
206 __gu_val = 0; \
207 __gu_ret = __get_user_bad(); \
208 break; \
209 } \
210 } else { \
211 __gu_val = 0; \
212 __gu_ret = -EFAULT; \
213 } \
214 x = (__force type) __gu_val; \
215 __gu_ret; \
216})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700217
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200218#define __get_user_check_ret(x, addr, size, type, retval) ({ \
219 register unsigned long __gu_val __asm__ ("l1"); \
220 if (__access_ok(addr, size)) { \
221 switch (size) { \
222 case 1: \
223 __get_user_asm_ret(__gu_val, ub, addr, retval); \
224 break; \
225 case 2: \
226 __get_user_asm_ret(__gu_val, uh, addr, retval); \
227 break; \
228 case 4: \
229 __get_user_asm_ret(__gu_val, , addr, retval); \
230 break; \
231 case 8: \
232 __get_user_asm_ret(__gu_val, d, addr, retval); \
233 break; \
234 default: \
235 if (__get_user_bad()) \
236 return retval; \
237 } \
238 x = (__force type) __gu_val; \
239 } else \
240 return retval; \
241})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700242
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200243#define __get_user_nocheck(x, addr, size, type) ({ \
244 register int __gu_ret; \
245 register unsigned long __gu_val; \
246 switch (size) { \
247 case 1: \
248 __get_user_asm(__gu_val, ub, addr, __gu_ret); \
249 break; \
250 case 2: \
251 __get_user_asm(__gu_val, uh, addr, __gu_ret); \
252 break; \
253 case 4: \
254 __get_user_asm(__gu_val, , addr, __gu_ret); \
255 break; \
256 case 8: \
257 __get_user_asm(__gu_val, d, addr, __gu_ret); \
258 break; \
259 default: \
260 __gu_val = 0; \
261 __gu_ret = __get_user_bad(); \
262 break; \
263 } \
264 x = (__force type) __gu_val; \
265 __gu_ret; \
266})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700267
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200268#define __get_user_nocheck_ret(x, addr, size, type, retval) ({ \
269 register unsigned long __gu_val __asm__ ("l1"); \
270 switch (size) { \
271 case 1: \
272 __get_user_asm_ret(__gu_val, ub, addr, retval); \
273 break; \
274 case 2: \
275 __get_user_asm_ret(__gu_val, uh, addr, retval); \
276 break; \
277 case 4: \
278 __get_user_asm_ret(__gu_val, , addr, retval); \
279 break; \
280 case 8: \
281 __get_user_asm_ret(__gu_val, d, addr, retval); \
282 break; \
283 default: \
284 if (__get_user_bad()) \
285 return retval; \
286 } \
287 x = (__force type) __gu_val; \
288})
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700289
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200290#define __get_user_asm(x, size, addr, ret) \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700291__asm__ __volatile__( \
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200292 "/* Get user asm, inline. */\n" \
293 "1:\t" "ld"#size " %2, %1\n\t" \
294 "clr %0\n" \
295 "2:\n\n\t" \
296 ".section .fixup,#alloc,#execinstr\n\t" \
297 ".align 4\n" \
298 "3:\n\t" \
299 "clr %1\n\t" \
300 "b 2b\n\t" \
301 " mov %3, %0\n\n\t" \
302 ".previous\n\t" \
303 ".section __ex_table,#alloc\n\t" \
304 ".align 4\n\t" \
305 ".word 1b, 3b\n\n\t" \
306 ".previous\n\t" \
307 : "=&r" (ret), "=&r" (x) : "m" (*__m(addr)), \
308 "i" (-EFAULT))
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700309
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200310#define __get_user_asm_ret(x, size, addr, retval) \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700311if (__builtin_constant_p(retval) && retval == -EFAULT) \
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200312 __asm__ __volatile__( \
313 "/* Get user asm ret, inline. */\n" \
314 "1:\t" "ld"#size " %1, %0\n\n\t" \
315 ".section __ex_table,#alloc\n\t" \
316 ".align 4\n\t" \
317 ".word 1b,__ret_efault\n\n\t" \
318 ".previous\n\t" \
319 : "=&r" (x) : "m" (*__m(addr))); \
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700320else \
Michael S. Tsirkin8ccf7b22015-01-06 14:30:51 +0200321 __asm__ __volatile__( \
322 "/* Get user asm ret, inline. */\n" \
323 "1:\t" "ld"#size " %1, %0\n\n\t" \
324 ".section .fixup,#alloc,#execinstr\n\t" \
325 ".align 4\n" \
326 "3:\n\t" \
327 "ret\n\t" \
328 " restore %%g0, %2, %%o0\n\n\t" \
329 ".previous\n\t" \
330 ".section __ex_table,#alloc\n\t" \
331 ".align 4\n\t" \
332 ".word 1b, 3b\n\n\t" \
333 ".previous\n\t" \
334 : "=&r" (x) : "m" (*__m(addr)), "i" (retval))
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700335
Sam Ravnborgf05a6862014-05-16 23:25:50 +0200336int __get_user_bad(void);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700337
Sam Ravnborgf05a6862014-05-16 23:25:50 +0200338unsigned long __copy_user(void __user *to, const void __user *from, unsigned long size);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700339
340static inline unsigned long copy_to_user(void __user *to, const void *from, unsigned long n)
341{
342 if (n && __access_ok((unsigned long) to, n))
343 return __copy_user(to, (__force void __user *) from, n);
344 else
345 return n;
346}
347
348static inline unsigned long __copy_to_user(void __user *to, const void *from, unsigned long n)
349{
350 return __copy_user(to, (__force void __user *) from, n);
351}
352
353static inline unsigned long copy_from_user(void *to, const void __user *from, unsigned long n)
354{
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700355 if (n && __access_ok((unsigned long) from, n))
356 return __copy_user((__force void __user *) to, from, n);
357 else
358 return n;
359}
360
361static inline unsigned long __copy_from_user(void *to, const void __user *from, unsigned long n)
362{
363 return __copy_user((__force void __user *) to, from, n);
364}
365
366#define __copy_to_user_inatomic __copy_to_user
367#define __copy_from_user_inatomic __copy_from_user
368
369static inline unsigned long __clear_user(void __user *addr, unsigned long size)
370{
371 unsigned long ret;
372
373 __asm__ __volatile__ (
374 ".section __ex_table,#alloc\n\t"
375 ".align 4\n\t"
376 ".word 1f,3\n\t"
377 ".previous\n\t"
378 "mov %2, %%o1\n"
379 "1:\n\t"
380 "call __bzero\n\t"
381 " mov %1, %%o0\n\t"
382 "mov %%o0, %0\n"
383 : "=r" (ret) : "r" (addr), "r" (size) :
384 "o0", "o1", "o2", "o3", "o4", "o5", "o7",
385 "g1", "g2", "g3", "g4", "g5", "g7", "cc");
386
387 return ret;
388}
389
390static inline unsigned long clear_user(void __user *addr, unsigned long n)
391{
392 if (n && __access_ok((unsigned long) addr, n))
393 return __clear_user(addr, n);
394 else
395 return n;
396}
397
Sam Ravnborgf05a6862014-05-16 23:25:50 +0200398__must_check long strlen_user(const char __user *str);
399__must_check long strnlen_user(const char __user *str, long n);
Sam Ravnborgf5e706a2008-07-17 21:55:51 -0700400
401#endif /* __ASSEMBLY__ */
402
403#endif /* _ASM_UACCESS_H */