1 /* $Id: uaccess.h,v 1.11 2003/10/13 07:21:20 lethal Exp $
3 * User space memory access functions
5 * Copyright (C) 1999, 2002 Niibe Yutaka
6 * Copyright (C) 2003 Paul Mundt
9 * MIPS implementation version 1.15 by
10 * Copyright (C) 1996, 1997, 1998 by Ralf Baechle
13 #ifndef __ASM_SH_UACCESS_H
14 #define __ASM_SH_UACCESS_H
16 #include <linux/errno.h>
17 #include <linux/sched.h>
20 #define VERIFY_WRITE 1
23 * The fs value determines whether argument validity checking should be
24 * performed or not. If get_fs() == USER_DS, checking is performed, with
25 * get_fs() == KERNEL_DS, checking is bypassed.
27 * For historical reasons (Data Segment Register?), these macros are misnamed.
30 #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
32 #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFFUL)
33 #define USER_DS MAKE_MM_SEG(PAGE_OFFSET)
35 #define segment_eq(a,b) ((a).seg == (b).seg)
37 #define get_ds() (KERNEL_DS)
39 #if !defined(CONFIG_MMU)
40 /* NOMMU is always true */
41 #define __addr_ok(addr) (1)
43 static inline mm_segment_t get_fs(void)
48 static inline void set_fs(mm_segment_t s)
53 * __access_ok: Check if address with size is OK or not.
55 * If we don't have an MMU (or if its disabled) the only thing we really have
56 * to look out for is if the address resides somewhere outside of what
57 * available RAM we have.
59 * TODO: This check could probably also stand to be restricted somewhat more..
60 * though it still does the Right Thing(tm) for the time being.
62 static inline int __access_ok(unsigned long addr, unsigned long size)
64 return ((addr >= memory_start) && ((addr + size) < memory_end));
66 #else /* CONFIG_MMU */
67 #define __addr_ok(addr) \
68 ((unsigned long)(addr) < (current_thread_info()->addr_limit.seg))
70 #define get_fs() (current_thread_info()->addr_limit)
71 #define set_fs(x) (current_thread_info()->addr_limit = (x))
74 * __access_ok: Check if address with size is OK or not.
76 * Uhhuh, this needs 33-bit arithmetic. We have a carry..
78 * sum := addr + size; carry? --> flag = true;
79 * if (sum >= addr_limit) flag = true;
81 static inline int __access_ok(unsigned long addr, unsigned long size)
83 unsigned long flag, sum;
90 :"=&r" (flag), "=r" (sum)
91 :"1" (addr), "r" (size),
92 "r" (current_thread_info()->addr_limit.seg)
97 #endif /* CONFIG_MMU */
99 static inline int access_ok(int type, const void __user *p, unsigned long size)
101 unsigned long addr = (unsigned long)p;
102 return __access_ok(addr, size);
106 * Uh, these should become the main single-value transfer routines ...
107 * They automatically use the right size if we just have the right
110 * As SuperH uses the same address space for kernel and user data, we
111 * can just do these as direct assignments.
114 * (a) re-use the arguments for side effects (sizeof is ok)
115 * (b) require any knowledge of processes at this stage
117 #define put_user(x,ptr) __put_user_check((x),(ptr),sizeof(*(ptr)))
118 #define get_user(x,ptr) __get_user_check((x),(ptr),sizeof(*(ptr)))
121 * The "__xxx" versions do not do address space checking, useful when
122 * doing multiple accesses to the same area (the user has to do the
123 * checks by hand with "access_ok()")
125 #define __put_user(x,ptr) \
126 __put_user_nocheck((__typeof__(*(ptr)))(x),(ptr),sizeof(*(ptr)))
127 #define __get_user(x,ptr) \
128 __get_user_nocheck((x),(ptr),sizeof(*(ptr)))
130 struct __large_struct { unsigned long buf[100]; };
131 #define __m(x) (*(struct __large_struct __user *)(x))
133 #define __get_user_size(x,ptr,size,retval) \
136 __chk_user_ptr(ptr); \
139 __get_user_asm(x, ptr, retval, "b"); \
142 __get_user_asm(x, ptr, retval, "w"); \
145 __get_user_asm(x, ptr, retval, "l"); \
148 __get_user_unknown(); \
153 #define __get_user_nocheck(x,ptr,size) \
155 long __gu_err, __gu_val; \
156 __get_user_size(__gu_val, (ptr), (size), __gu_err); \
157 (x) = (__typeof__(*(ptr)))__gu_val; \
162 #define __get_user_check(x,ptr,size) \
164 long __gu_err, __gu_val; \
165 __chk_user_ptr(ptr); \
168 __get_user_1(__gu_val, (ptr), __gu_err); \
171 __get_user_2(__gu_val, (ptr), __gu_err); \
174 __get_user_4(__gu_val, (ptr), __gu_err); \
177 __get_user_unknown(); \
181 (x) = (__typeof__(*(ptr)))__gu_val; \
185 #define __get_user_1(x,addr,err) ({ \
186 __asm__("stc r7_bank, %1\n\t" \
187 "mov.l @(8,%1), %1\n\t" \
197 "mov.b @%2, %1\n\t" \
200 ".section __ex_table,\"a\"\n\t" \
203 : "=&r" (err), "=&r" (x) \
208 #define __get_user_2(x,addr,err) ({ \
209 __asm__("stc r7_bank, %1\n\t" \
210 "mov.l @(8,%1), %1\n\t" \
220 "mov.w @%2, %1\n\t" \
223 ".section __ex_table,\"a\"\n\t" \
226 : "=&r" (err), "=&r" (x) \
231 #define __get_user_4(x,addr,err) ({ \
232 __asm__("stc r7_bank, %1\n\t" \
233 "mov.l @(8,%1), %1\n\t" \
243 "mov.l @%2, %1\n\t" \
245 ".section __ex_table,\"a\"\n\t" \
248 : "=&r" (err), "=&r" (x) \
252 #else /* CONFIG_MMU */
253 #define __get_user_check(x,ptr,size) \
255 long __gu_err, __gu_val; \
256 if (__access_ok((unsigned long)(ptr), (size))) { \
257 __get_user_size(__gu_val, (ptr), (size), __gu_err); \
258 (x) = (__typeof__(*(ptr)))__gu_val; \
260 __gu_err = -EFAULT; \
265 #define __get_user_asm(x, addr, err, insn) \
267 __asm__ __volatile__( \
269 "mov." insn " %2, %1\n\t" \
272 ".section .fixup,\"ax\"\n" \
280 ".section __ex_table,\"a\"\n\t" \
283 :"=&r" (err), "=&r" (x) \
284 :"m" (__m(addr)), "i" (-EFAULT)); })
286 extern void __get_user_unknown(void);
288 #define __put_user_size(x,ptr,size,retval) \
291 __chk_user_ptr(ptr); \
294 __put_user_asm(x, ptr, retval, "b"); \
297 __put_user_asm(x, ptr, retval, "w"); \
300 __put_user_asm(x, ptr, retval, "l"); \
303 __put_user_u64(x, ptr, retval); \
306 __put_user_unknown(); \
310 #define __put_user_nocheck(x,ptr,size) \
313 __put_user_size((x),(ptr),(size),__pu_err); \
317 #define __put_user_check(x,ptr,size) \
319 long __pu_err = -EFAULT; \
320 __typeof__(*(ptr)) __user *__pu_addr = (ptr); \
322 if (__access_ok((unsigned long)__pu_addr,size)) \
323 __put_user_size((x),__pu_addr,(size),__pu_err); \
327 #define __put_user_asm(x, addr, err, insn) \
329 __asm__ __volatile__( \
331 "mov." insn " %1, %2\n\t" \
334 ".section .fixup,\"ax\"\n" \
342 ".section __ex_table,\"a\"\n\t" \
346 :"r" (x), "m" (__m(addr)), "i" (-EFAULT) \
349 #if defined(__LITTLE_ENDIAN__)
350 #define __put_user_u64(val,addr,retval) \
352 __asm__ __volatile__( \
355 "mov.l %S1,%T2\n\t" \
358 ".section .fixup,\"ax\"\n" \
366 ".section __ex_table,\"a\"\n\t" \
370 : "r" (val), "m" (__m(addr)), "i" (-EFAULT) \
373 #define __put_user_u64(val,addr,retval) \
375 __asm__ __volatile__( \
378 "mov.l %R1,%T2\n\t" \
381 ".section .fixup,\"ax\"\n" \
389 ".section __ex_table,\"a\"\n\t" \
393 : "r" (val), "m" (__m(addr)), "i" (-EFAULT) \
397 extern void __put_user_unknown(void);
399 /* Generic arbitrary sized copy. */
400 /* Return the number of bytes NOT copied */
401 __kernel_size_t __copy_user(void *to, const void *from, __kernel_size_t n);
403 #define copy_to_user(to,from,n) ({ \
404 void *__copy_to = (void *) (to); \
405 __kernel_size_t __copy_size = (__kernel_size_t) (n); \
406 __kernel_size_t __copy_res; \
407 if(__copy_size && __access_ok((unsigned long)__copy_to, __copy_size)) { \
408 __copy_res = __copy_user(__copy_to, (void *) (from), __copy_size); \
409 } else __copy_res = __copy_size; \
412 #define copy_from_user(to,from,n) ({ \
413 void *__copy_to = (void *) (to); \
414 void *__copy_from = (void *) (from); \
415 __kernel_size_t __copy_size = (__kernel_size_t) (n); \
416 __kernel_size_t __copy_res; \
417 if(__copy_size && __access_ok((unsigned long)__copy_from, __copy_size)) { \
418 __copy_res = __copy_user(__copy_to, __copy_from, __copy_size); \
419 } else __copy_res = __copy_size; \
422 static __always_inline unsigned long
423 __copy_from_user(void *to, const void __user *from, unsigned long n)
425 return __copy_user(to, (__force void *)from, n);
428 static __always_inline unsigned long __must_check
429 __copy_to_user(void __user *to, const void *from, unsigned long n)
431 return __copy_user((__force void *)to, from, n);
434 #define __copy_to_user_inatomic __copy_to_user
435 #define __copy_from_user_inatomic __copy_from_user
438 * Clear the area and return remaining number of bytes
439 * (on failure. Usually it's 0.)
441 extern __kernel_size_t __clear_user(void *addr, __kernel_size_t size);
443 #define clear_user(addr,n) ({ \
444 void * __cl_addr = (addr); \
445 unsigned long __cl_size = (n); \
446 if (__cl_size && __access_ok(((unsigned long)(__cl_addr)), __cl_size)) \
447 __cl_size = __clear_user(__cl_addr, __cl_size); \
450 static __inline__ int
451 __strncpy_from_user(unsigned long __dest, unsigned long __user __src, int __count)
454 unsigned long __dummy, _d, _s;
456 __asm__ __volatile__(
469 ".section .fixup,\"ax\"\n"
477 ".section __ex_table,\"a\"\n"
481 : "=r" (res), "=&z" (__dummy), "=r" (_s), "=r" (_d)
482 : "0" (__count), "2" (__src), "3" (__dest), "r" (__count),
489 #define strncpy_from_user(dest,src,count) ({ \
490 unsigned long __sfu_src = (unsigned long) (src); \
491 int __sfu_count = (int) (count); \
492 long __sfu_res = -EFAULT; \
493 if(__access_ok(__sfu_src, __sfu_count)) { \
494 __sfu_res = __strncpy_from_user((unsigned long) (dest), __sfu_src, __sfu_count); \
498 * Return the size of a string (including the ending 0!)
500 static __inline__ long __strnlen_user(const char __user *__s, long __n)
503 unsigned long __dummy;
505 __asm__ __volatile__(
510 "mov.b @(%0,%3), %1\n\t"
515 ".section .fixup,\"ax\"\n"
523 ".section __ex_table,\"a\"\n"
527 : "=z" (res), "=&r" (__dummy)
528 : "0" (0), "r" (__s), "r" (__n)
533 static __inline__ long strnlen_user(const char __user *s, long n)
538 return __strnlen_user(s, n);
541 #define strlen_user(str) strnlen_user(str, ~0UL >> 1)
544 * The exception table consists of pairs of addresses: the first is the
545 * address of an instruction that is allowed to fault, and the second is
546 * the address at which the program should continue. No registers are
547 * modified, so it is entirely up to the continuation code to figure out
550 * All the routines below use bits of fixup code that are out of line
551 * with the main instruction path. This means when everything is well,
552 * we don't even have to jump over them. Further, they do not intrude
553 * on our cache or tlb entries.
556 struct exception_table_entry
558 unsigned long insn, fixup;
561 extern int fixup_exception(struct pt_regs *regs);
563 #endif /* __ASM_SH_UACCESS_H */