2 * Copyright 2010 Tilera Corporation. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
15 #ifndef _ASM_TILE_UACCESS_H
16 #define _ASM_TILE_UACCESS_H
19 * User space memory access functions
22 #include <asm/processor.h>
26 * The fs value determines whether argument validity checking should be
27 * performed or not. If get_fs() == USER_DS, checking is performed, with
28 * get_fs() == KERNEL_DS, checking is bypassed.
30 * For historical reasons, these macros are grossly misnamed.
32 #define MAKE_MM_SEG(a) ((mm_segment_t) { (a) })
34 #define KERNEL_DS MAKE_MM_SEG(-1UL)
35 #define USER_DS MAKE_MM_SEG(PAGE_OFFSET)
37 #define get_ds() (KERNEL_DS)
38 #define get_fs() (current_thread_info()->addr_limit)
39 #define set_fs(x) (current_thread_info()->addr_limit = (x))
41 #define segment_eq(a, b) ((a).seg == (b).seg)
45 * We could allow mapping all 16 MB at 0xfc000000, but we set up a
46 * special hack in arch_setup_additional_pages() to auto-create a mapping
47 * for the first 16 KB, and it would seem strange to have different
48 * user-accessible semantics for memory at 0xfc000000 and above 0xfc004000.
50 static inline int is_arch_mappable_range(unsigned long addr
,
53 return (addr
>= MEM_USER_INTRPT
&&
54 addr
< (MEM_USER_INTRPT
+ INTRPT_SIZE
) &&
55 size
<= (MEM_USER_INTRPT
+ INTRPT_SIZE
) - addr
);
57 #define is_arch_mappable_range is_arch_mappable_range
59 #define is_arch_mappable_range(addr, size) 0
63 * Note that using this definition ignores is_arch_mappable_range(),
64 * so on tilepro code that uses user_addr_max() is constrained not
65 * to reference the tilepro user-interrupt region.
67 #define user_addr_max() (current_thread_info()->addr_limit.seg)
70 * Test whether a block of memory is a valid user space address.
71 * Returns 0 if the range is valid, nonzero otherwise.
73 int __range_ok(unsigned long addr
, unsigned long size
);
76 * access_ok: - Checks if a user space pointer is valid
77 * @type: Type of access: %VERIFY_READ or %VERIFY_WRITE. Note that
78 * %VERIFY_WRITE is a superset of %VERIFY_READ - if it is safe
79 * to write to a block, it is always safe to read from it.
80 * @addr: User space pointer to start of block to check
81 * @size: Size of block to check
83 * Context: User context only. This function may sleep if pagefaults are
86 * Checks if a pointer to a block of memory in user space is valid.
88 * Returns true (nonzero) if the memory block may be valid, false (zero)
89 * if it is definitely invalid.
91 * Note that, depending on architecture, this function probably just
92 * checks that the pointer is in the user space range - after calling
93 * this function, memory access functions may still return -EFAULT.
95 #define access_ok(type, addr, size) ({ \
96 __chk_user_ptr(addr); \
97 likely(__range_ok((unsigned long)(addr), (size)) == 0); \
100 #include <asm/extable.h>
103 * This is a type: either unsigned long, if the argument fits into
104 * that type, or otherwise unsigned long long.
106 #define __inttype(x) \
107 __typeof__(__builtin_choose_expr(sizeof(x) > sizeof(0UL), 0ULL, 0UL))
110 * Support macros for __get_user().
111 * Note that __get_user() and __put_user() assume proper alignment.
115 #define _ASM_PTR ".quad"
116 #define _ASM_ALIGN ".align 8"
118 #define _ASM_PTR ".long"
119 #define _ASM_ALIGN ".align 4"
122 #define __get_user_asm(OP, x, ptr, ret) \
123 asm volatile("1: {" #OP " %1, %2; movei %0, 0 }\n" \
124 ".pushsection .fixup,\"ax\"\n" \
125 "0: { movei %1, 0; movei %0, %3 }\n" \
127 ".section __ex_table,\"a\"\n" \
129 _ASM_PTR " 1b, 0b\n" \
132 : "=r" (ret), "=r" (x) \
133 : "r" (ptr), "i" (-EFAULT))
136 #define __get_user_1(x, ptr, ret) __get_user_asm(ld1u, x, ptr, ret)
137 #define __get_user_2(x, ptr, ret) __get_user_asm(ld2u, x, ptr, ret)
138 #define __get_user_4(x, ptr, ret) __get_user_asm(ld4s, x, ptr, ret)
139 #define __get_user_8(x, ptr, ret) __get_user_asm(ld, x, ptr, ret)
141 #define __get_user_1(x, ptr, ret) __get_user_asm(lb_u, x, ptr, ret)
142 #define __get_user_2(x, ptr, ret) __get_user_asm(lh_u, x, ptr, ret)
143 #define __get_user_4(x, ptr, ret) __get_user_asm(lw, x, ptr, ret)
144 #ifdef __LITTLE_ENDIAN
145 #define __lo32(a, b) a
146 #define __hi32(a, b) b
148 #define __lo32(a, b) b
149 #define __hi32(a, b) a
151 #define __get_user_8(x, ptr, ret) \
153 unsigned int __a, __b; \
154 asm volatile("1: { lw %1, %3; addi %2, %3, 4 }\n" \
155 "2: { lw %2, %2; movei %0, 0 }\n" \
156 ".pushsection .fixup,\"ax\"\n" \
157 "0: { movei %1, 0; movei %2, 0 }\n" \
158 "{ movei %0, %4; j 9f }\n" \
159 ".section __ex_table,\"a\"\n" \
165 : "=r" (ret), "=r" (__a), "=&r" (__b) \
166 : "r" (ptr), "i" (-EFAULT)); \
167 (x) = (__force __typeof(x))(__inttype(x)) \
168 (((u64)__hi32(__a, __b) << 32) | \
173 extern int __get_user_bad(void)
174 __attribute__((warning("sizeof __get_user argument not 1, 2, 4 or 8")));
177 * __get_user: - Get a simple variable from user space, with less checking.
178 * @x: Variable to store result.
179 * @ptr: Source address, in user space.
181 * Context: User context only. This function may sleep if pagefaults are
184 * This macro copies a single simple variable from user space to kernel
185 * space. It supports simple types like char and int, but not larger
186 * data types like structures or arrays.
188 * @ptr must have pointer-to-simple-variable type, and the result of
189 * dereferencing @ptr must be assignable to @x without a cast.
191 * Returns zero on success, or -EFAULT on error.
192 * On error, the variable @x is set to zero.
194 * Caller must check the pointer with access_ok() before calling this
197 #define __get_user(x, ptr) \
201 __chk_user_ptr(ptr); \
202 switch (sizeof(*(ptr))) { \
203 case 1: __get_user_1(_x, ptr, __ret); break; \
204 case 2: __get_user_2(_x, ptr, __ret); break; \
205 case 4: __get_user_4(_x, ptr, __ret); break; \
206 case 8: __get_user_8(_x, ptr, __ret); break; \
207 default: __ret = __get_user_bad(); break; \
209 (x) = (typeof(*(ptr))) _x; \
213 /* Support macros for __put_user(). */
215 #define __put_user_asm(OP, x, ptr, ret) \
216 asm volatile("1: {" #OP " %1, %2; movei %0, 0 }\n" \
217 ".pushsection .fixup,\"ax\"\n" \
218 "0: { movei %0, %3; j 9f }\n" \
219 ".section __ex_table,\"a\"\n" \
221 _ASM_PTR " 1b, 0b\n" \
225 : "r" (ptr), "r" (x), "i" (-EFAULT))
228 #define __put_user_1(x, ptr, ret) __put_user_asm(st1, x, ptr, ret)
229 #define __put_user_2(x, ptr, ret) __put_user_asm(st2, x, ptr, ret)
230 #define __put_user_4(x, ptr, ret) __put_user_asm(st4, x, ptr, ret)
231 #define __put_user_8(x, ptr, ret) __put_user_asm(st, x, ptr, ret)
233 #define __put_user_1(x, ptr, ret) __put_user_asm(sb, x, ptr, ret)
234 #define __put_user_2(x, ptr, ret) __put_user_asm(sh, x, ptr, ret)
235 #define __put_user_4(x, ptr, ret) __put_user_asm(sw, x, ptr, ret)
236 #define __put_user_8(x, ptr, ret) \
238 u64 __x = (__force __inttype(x))(x); \
239 int __lo = (int) __x, __hi = (int) (__x >> 32); \
240 asm volatile("1: { sw %1, %2; addi %0, %1, 4 }\n" \
241 "2: { sw %0, %3; movei %0, 0 }\n" \
242 ".pushsection .fixup,\"ax\"\n" \
243 "0: { movei %0, %4; j 9f }\n" \
244 ".section __ex_table,\"a\"\n" \
251 : "r" (ptr), "r" (__lo32(__lo, __hi)), \
252 "r" (__hi32(__lo, __hi)), "i" (-EFAULT)); \
256 extern int __put_user_bad(void)
257 __attribute__((warning("sizeof __put_user argument not 1, 2, 4 or 8")));
260 * __put_user: - Write a simple value into user space, with less checking.
261 * @x: Value to copy to user space.
262 * @ptr: Destination address, in user space.
264 * Context: User context only. This function may sleep if pagefaults are
267 * This macro copies a single simple value from kernel space to user
268 * space. It supports simple types like char and int, but not larger
269 * data types like structures or arrays.
271 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
272 * to the result of dereferencing @ptr.
274 * Caller must check the pointer with access_ok() before calling this
277 * Returns zero on success, or -EFAULT on error.
279 #define __put_user(x, ptr) \
282 typeof(*(ptr)) _x = (x); \
283 __chk_user_ptr(ptr); \
284 switch (sizeof(*(ptr))) { \
285 case 1: __put_user_1(_x, ptr, __ret); break; \
286 case 2: __put_user_2(_x, ptr, __ret); break; \
287 case 4: __put_user_4(_x, ptr, __ret); break; \
288 case 8: __put_user_8(_x, ptr, __ret); break; \
289 default: __ret = __put_user_bad(); break; \
295 * The versions of get_user and put_user without initial underscores
296 * check the address of their arguments to make sure they are not
299 #define put_user(x, ptr) \
301 __typeof__(*(ptr)) __user *__Pu_addr = (ptr); \
302 access_ok(VERIFY_WRITE, (__Pu_addr), sizeof(*(__Pu_addr))) ? \
303 __put_user((x), (__Pu_addr)) : \
307 #define get_user(x, ptr) \
309 __typeof__(*(ptr)) const __user *__Gu_addr = (ptr); \
310 access_ok(VERIFY_READ, (__Gu_addr), sizeof(*(__Gu_addr))) ? \
311 __get_user((x), (__Gu_addr)) : \
312 ((x) = 0, -EFAULT); \
315 extern unsigned long __must_check
316 raw_copy_to_user(void __user
*to
, const void *from
, unsigned long n
);
317 extern unsigned long __must_check
318 raw_copy_from_user(void *to
, const void __user
*from
, unsigned long n
);
319 #define INLINE_COPY_FROM_USER
320 #define INLINE_COPY_TO_USER
323 extern unsigned long raw_copy_in_user(
324 void __user
*to
, const void __user
*from
, unsigned long n
);
328 extern long strnlen_user(const char __user
*str
, long n
);
329 extern long strncpy_from_user(char *dst
, const char __user
*src
, long);
332 * clear_user: - Zero a block of memory in user space.
333 * @mem: Destination address, in user space.
334 * @len: Number of bytes to zero.
336 * Zero a block of memory in user space.
338 * Returns number of bytes that could not be cleared.
339 * On success, this will be zero.
341 extern unsigned long clear_user_asm(void __user
*mem
, unsigned long len
);
342 static inline unsigned long __must_check
__clear_user(
343 void __user
*mem
, unsigned long len
)
346 return clear_user_asm(mem
, len
);
348 static inline unsigned long __must_check
clear_user(
349 void __user
*mem
, unsigned long len
)
351 if (access_ok(VERIFY_WRITE
, mem
, len
))
352 return __clear_user(mem
, len
);
357 * flush_user: - Flush a block of memory in user space from cache.
358 * @mem: Destination address, in user space.
359 * @len: Number of bytes to flush.
361 * Returns number of bytes that could not be flushed.
362 * On success, this will be zero.
364 extern unsigned long flush_user_asm(void __user
*mem
, unsigned long len
);
365 static inline unsigned long __must_check
__flush_user(
366 void __user
*mem
, unsigned long len
)
371 retval
= flush_user_asm(mem
, len
);
376 static inline unsigned long __must_check
flush_user(
377 void __user
*mem
, unsigned long len
)
379 if (access_ok(VERIFY_WRITE
, mem
, len
))
380 return __flush_user(mem
, len
);
385 * finv_user: - Flush-inval a block of memory in user space from cache.
386 * @mem: Destination address, in user space.
387 * @len: Number of bytes to invalidate.
389 * Returns number of bytes that could not be flush-invalidated.
390 * On success, this will be zero.
392 extern unsigned long finv_user_asm(void __user
*mem
, unsigned long len
);
393 static inline unsigned long __must_check
__finv_user(
394 void __user
*mem
, unsigned long len
)
399 retval
= finv_user_asm(mem
, len
);
403 static inline unsigned long __must_check
finv_user(
404 void __user
*mem
, unsigned long len
)
406 if (access_ok(VERIFY_WRITE
, mem
, len
))
407 return __finv_user(mem
, len
);
411 #endif /* _ASM_TILE_UACCESS_H */