Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / arch / metag / include / asm / uaccess.h
blob0748b0a9798684c40eb02f5782472862245d9b78
1 #ifndef __METAG_UACCESS_H
2 #define __METAG_UACCESS_H
4 /*
5 * User space memory access functions
6 */
7 #include <linux/sched.h>
9 #define VERIFY_READ 0
10 #define VERIFY_WRITE 1
13 * The fs value determines whether argument validity checking should be
14 * performed or not. If get_fs() == USER_DS, checking is performed, with
15 * get_fs() == KERNEL_DS, checking is bypassed.
17 * For historical reasons, these macros are grossly misnamed.
20 #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
22 #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFF)
23 #define USER_DS MAKE_MM_SEG(PAGE_OFFSET)
25 #define get_ds() (KERNEL_DS)
26 #define get_fs() (current_thread_info()->addr_limit)
27 #define set_fs(x) (current_thread_info()->addr_limit = (x))
29 #define segment_eq(a, b) ((a).seg == (b).seg)
31 #define __kernel_ok (segment_eq(get_fs(), KERNEL_DS))
33 * Explicitly allow NULL pointers here. Parts of the kernel such
34 * as readv/writev use access_ok to validate pointers, but want
35 * to allow NULL pointers for various reasons. NULL pointers are
36 * safe to allow through because the first page is not mappable on
37 * Meta.
39 * We also wish to avoid letting user code access the system area
40 * and the kernel half of the address space.
42 #define __user_bad(addr, size) (((addr) > 0 && (addr) < META_MEMORY_BASE) || \
43 ((addr) > PAGE_OFFSET && \
44 (addr) < LINCORE_BASE))
46 static inline int __access_ok(unsigned long addr, unsigned long size)
48 return __kernel_ok || !__user_bad(addr, size);
51 #define access_ok(type, addr, size) __access_ok((unsigned long)(addr), \
52 (unsigned long)(size))
54 static inline int verify_area(int type, const void *addr, unsigned long size)
56 return access_ok(type, addr, size) ? 0 : -EFAULT;
60 * The exception table consists of pairs of addresses: the first is the
61 * address of an instruction that is allowed to fault, and the second is
62 * the address at which the program should continue. No registers are
63 * modified, so it is entirely up to the continuation code to figure out
64 * what to do.
66 * All the routines below use bits of fixup code that are out of line
67 * with the main instruction path. This means when everything is well,
68 * we don't even have to jump over them. Further, they do not intrude
69 * on our cache or tlb entries.
71 struct exception_table_entry {
72 unsigned long insn, fixup;
75 extern int fixup_exception(struct pt_regs *regs);
78 * These are the main single-value transfer routines. They automatically
79 * use the right size if we just have the right pointer type.
82 #define put_user(x, ptr) \
83 __put_user_check((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
84 #define __put_user(x, ptr) \
85 __put_user_nocheck((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
87 extern void __put_user_bad(void);
89 #define __put_user_nocheck(x, ptr, size) \
90 ({ \
91 long __pu_err; \
92 __put_user_size((x), (ptr), (size), __pu_err); \
93 __pu_err; \
96 #define __put_user_check(x, ptr, size) \
97 ({ \
98 long __pu_err = -EFAULT; \
99 __typeof__(*(ptr)) __user *__pu_addr = (ptr); \
100 if (access_ok(VERIFY_WRITE, __pu_addr, size)) \
101 __put_user_size((x), __pu_addr, (size), __pu_err); \
102 __pu_err; \
105 extern long __put_user_asm_b(unsigned int x, void __user *addr);
106 extern long __put_user_asm_w(unsigned int x, void __user *addr);
107 extern long __put_user_asm_d(unsigned int x, void __user *addr);
108 extern long __put_user_asm_l(unsigned long long x, void __user *addr);
110 #define __put_user_size(x, ptr, size, retval) \
111 do { \
112 retval = 0; \
113 switch (size) { \
114 case 1: \
115 retval = __put_user_asm_b((unsigned int)x, ptr); break; \
116 case 2: \
117 retval = __put_user_asm_w((unsigned int)x, ptr); break; \
118 case 4: \
119 retval = __put_user_asm_d((unsigned int)x, ptr); break; \
120 case 8: \
121 retval = __put_user_asm_l((unsigned long long)x, ptr); break; \
122 default: \
123 __put_user_bad(); \
125 } while (0)
127 #define get_user(x, ptr) \
128 __get_user_check((x), (ptr), sizeof(*(ptr)))
129 #define __get_user(x, ptr) \
130 __get_user_nocheck((x), (ptr), sizeof(*(ptr)))
132 extern long __get_user_bad(void);
134 #define __get_user_nocheck(x, ptr, size) \
135 ({ \
136 long __gu_err, __gu_val; \
137 __get_user_size(__gu_val, (ptr), (size), __gu_err); \
138 (x) = (__typeof__(*(ptr)))__gu_val; \
139 __gu_err; \
142 #define __get_user_check(x, ptr, size) \
143 ({ \
144 long __gu_err = -EFAULT, __gu_val = 0; \
145 const __typeof__(*(ptr)) __user *__gu_addr = (ptr); \
146 if (access_ok(VERIFY_READ, __gu_addr, size)) \
147 __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \
148 (x) = (__typeof__(*(ptr)))__gu_val; \
149 __gu_err; \
152 extern unsigned char __get_user_asm_b(const void __user *addr, long *err);
153 extern unsigned short __get_user_asm_w(const void __user *addr, long *err);
154 extern unsigned int __get_user_asm_d(const void __user *addr, long *err);
156 #define __get_user_size(x, ptr, size, retval) \
157 do { \
158 retval = 0; \
159 switch (size) { \
160 case 1: \
161 x = __get_user_asm_b(ptr, &retval); break; \
162 case 2: \
163 x = __get_user_asm_w(ptr, &retval); break; \
164 case 4: \
165 x = __get_user_asm_d(ptr, &retval); break; \
166 default: \
167 (x) = __get_user_bad(); \
169 } while (0)
172 * Copy a null terminated string from userspace.
174 * Must return:
175 * -EFAULT for an exception
176 * count if we hit the buffer limit
177 * bytes copied if we hit a null byte
178 * (without the null byte)
181 extern long __must_check __strncpy_from_user(char *dst, const char __user *src,
182 long count);
184 #define strncpy_from_user(dst, src, count) __strncpy_from_user(dst, src, count)
187 * Return the size of a string (including the ending 0)
189 * Return 0 on exception, a value greater than N if too long
191 extern long __must_check strnlen_user(const char __user *src, long count);
193 #define strlen_user(str) strnlen_user(str, 32767)
195 extern unsigned long __must_check __copy_user_zeroing(void *to,
196 const void __user *from,
197 unsigned long n);
199 static inline unsigned long
200 copy_from_user(void *to, const void __user *from, unsigned long n)
202 if (access_ok(VERIFY_READ, from, n))
203 return __copy_user_zeroing(to, from, n);
204 return n;
207 #define __copy_from_user(to, from, n) __copy_user_zeroing(to, from, n)
208 #define __copy_from_user_inatomic __copy_from_user
210 extern unsigned long __must_check __copy_user(void __user *to,
211 const void *from,
212 unsigned long n);
214 static inline unsigned long copy_to_user(void __user *to, const void *from,
215 unsigned long n)
217 if (access_ok(VERIFY_WRITE, to, n))
218 return __copy_user(to, from, n);
219 return n;
222 #define __copy_to_user(to, from, n) __copy_user(to, from, n)
223 #define __copy_to_user_inatomic __copy_to_user
226 * Zero Userspace
229 extern unsigned long __must_check __do_clear_user(void __user *to,
230 unsigned long n);
232 static inline unsigned long clear_user(void __user *to, unsigned long n)
234 if (access_ok(VERIFY_WRITE, to, n))
235 return __do_clear_user(to, n);
236 return n;
239 #define __clear_user(to, n) __do_clear_user(to, n)
241 #endif /* _METAG_UACCESS_H */