1 #ifndef _ARCH_POWERPC_UACCESS_H
2 #define _ARCH_POWERPC_UACCESS_H
7 #include <linux/sched.h>
8 #include <linux/errno.h>
9 #include <asm/processor.h>
12 #define VERIFY_WRITE 1
15 * The fs value determines whether argument validity checking should be
16 * performed or not. If get_fs() == USER_DS, checking is performed, with
17 * get_fs() == KERNEL_DS, checking is bypassed.
19 * For historical reasons, these macros are grossly misnamed.
21 * The fs/ds values are now the highest legal address in the "segment".
22 * This simplifies the checking in the routines below.
25 #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
27 #define KERNEL_DS MAKE_MM_SEG(~0UL)
29 /* We use TASK_SIZE_USER64 as TASK_SIZE is not constant */
30 #define USER_DS MAKE_MM_SEG(TASK_SIZE_USER64 - 1)
32 #define USER_DS MAKE_MM_SEG(TASK_SIZE - 1)
35 #define get_ds() (KERNEL_DS)
36 #define get_fs() (current->thread.fs)
37 #define set_fs(val) (current->thread.fs = (val))
39 #define segment_eq(a, b) ((a).seg == (b).seg)
43 * This check is sufficient because there is a large enough
44 * gap between user addresses and the kernel addresses
46 #define __access_ok(addr, size, segment) \
47 (((addr) <= (segment).seg) && ((size) <= (segment).seg))
51 #define __access_ok(addr, size, segment) \
52 (((addr) <= (segment).seg) && \
53 (((size) == 0) || (((size) - 1) <= ((segment).seg - (addr)))))
57 #define access_ok(type, addr, size) \
58 (__chk_user_ptr(addr), \
59 __access_ok((__force unsigned long)(addr), (size), get_fs()))
62 * The exception table consists of pairs of addresses: the first is the
63 * address of an instruction that is allowed to fault, and the second is
64 * the address at which the program should continue. No registers are
65 * modified, so it is entirely up to the continuation code to figure out
68 * All the routines below use bits of fixup code that are out of line
69 * with the main instruction path. This means when everything is well,
70 * we don't even have to jump over them. Further, they do not intrude
71 * on our cache or tlb entries.
74 struct exception_table_entry
{
80 * These are the main single-value transfer routines. They automatically
81 * use the right size if we just have the right pointer type.
83 * This gets kind of ugly. We want to return _two_ values in "get_user()"
84 * and yet we don't want to do any pointers, because that is too much
85 * of a performance impact. Thus we have a few rather ugly macros here,
86 * and hide all the ugliness from the user.
88 * The "__xxx" versions of the user access functions are versions that
89 * do not verify the address space, that must have been done previously
90 * with a separate "access_ok()" call (this is used when we do multiple
91 * accesses to the same area of user memory).
93 * As we use the same address space for kernel and user data on the
94 * PowerPC, we can just do these as direct assignments. (Of course, the
95 * exception handling means that it's no longer "just"...)
97 * The "user64" versions of the user access functions are versions that
98 * allow access of 64-bit data. The "get_user" functions do not
99 * properly handle 64-bit data because the value gets down cast to a long.
100 * The "put_user" functions already handle 64-bit data properly but we add
101 * "user64" versions for completeness
103 #define get_user(x, ptr) \
104 __get_user_check((x), (ptr), sizeof(*(ptr)))
105 #define put_user(x, ptr) \
106 __put_user_check((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
108 #define __get_user(x, ptr) \
109 __get_user_nocheck((x), (ptr), sizeof(*(ptr)))
110 #define __put_user(x, ptr) \
111 __put_user_nocheck((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
112 #ifndef __powerpc64__
113 #define __get_user64(x, ptr) \
114 __get_user64_nocheck((x), (ptr), sizeof(*(ptr)))
115 #define __put_user64(x, ptr) __put_user(x, ptr)
118 #define __get_user_unaligned __get_user
119 #define __put_user_unaligned __put_user
121 extern long __put_user_bad(void);
124 * We don't tell gcc that we are accessing memory, but this is OK
125 * because we do not write to any memory gcc knows about, so there
126 * are no aliasing issues.
128 #define __put_user_asm(x, addr, err, op) \
129 __asm__ __volatile__( \
130 "1: " op " %1,0(%2) # put_user\n" \
132 ".section .fixup,\"ax\"\n" \
136 ".section __ex_table,\"a\"\n" \
141 : "r" (x), "b" (addr), "i" (-EFAULT), "0" (err),\
142 "i"(sizeof(unsigned long)))
145 #define __put_user_asm2(x, ptr, retval) \
146 __put_user_asm(x, ptr, retval, "std")
147 #else /* __powerpc64__ */
148 #define __put_user_asm2(x, addr, err) \
149 __asm__ __volatile__( \
150 "1: stw %1,0(%2)\n" \
151 "2: stw %1+1,4(%2)\n" \
153 ".section .fixup,\"ax\"\n" \
157 ".section __ex_table,\"a\"\n" \
163 : "r" (x), "b" (addr), "i" (-EFAULT), "0" (err),\
164 "i"(sizeof(unsigned long)))
165 #endif /* __powerpc64__ */
167 #define __put_user_size(x, ptr, size, retval) \
171 case 1: __put_user_asm(x, ptr, retval, "stb"); break; \
172 case 2: __put_user_asm(x, ptr, retval, "sth"); break; \
173 case 4: __put_user_asm(x, ptr, retval, "stw"); break; \
174 case 8: __put_user_asm2(x, ptr, retval); break; \
175 default: __put_user_bad(); \
179 #define __put_user_nocheck(x, ptr, size) \
183 __chk_user_ptr(ptr); \
184 __put_user_size((x), (ptr), (size), __pu_err); \
188 #define __put_user_check(x, ptr, size) \
190 long __pu_err = -EFAULT; \
191 __typeof__(*(ptr)) __user *__pu_addr = (ptr); \
193 if (access_ok(VERIFY_WRITE, __pu_addr, size)) \
194 __put_user_size((x), __pu_addr, (size), __pu_err); \
198 extern long __get_user_bad(void);
200 #define __get_user_asm(x, addr, err, op) \
201 __asm__ __volatile__( \
202 "1: "op" %1,0(%2) # get_user\n" \
204 ".section .fixup,\"ax\"\n" \
209 ".section __ex_table,\"a\"\n" \
213 : "=r" (err), "=r" (x) \
214 : "b" (addr), "i" (-EFAULT), "0" (err), \
215 "i"(sizeof(unsigned long)))
218 #define __get_user_asm2(x, addr, err) \
219 __get_user_asm(x, addr, err, "ld")
220 #else /* __powerpc64__ */
221 #define __get_user_asm2(x, addr, err) \
222 __asm__ __volatile__( \
223 "1: lwz %1,0(%2)\n" \
224 "2: lwz %1+1,4(%2)\n" \
226 ".section .fixup,\"ax\"\n" \
232 ".section __ex_table,\"a\"\n" \
237 : "=r" (err), "=&r" (x) \
238 : "b" (addr), "i" (-EFAULT), "0" (err), \
239 "i"(sizeof(unsigned long)))
240 #endif /* __powerpc64__ */
242 #define __get_user_size(x, ptr, size, retval) \
245 __chk_user_ptr(ptr); \
246 if (size > sizeof(x)) \
247 (x) = __get_user_bad(); \
249 case 1: __get_user_asm(x, ptr, retval, "lbz"); break; \
250 case 2: __get_user_asm(x, ptr, retval, "lhz"); break; \
251 case 4: __get_user_asm(x, ptr, retval, "lwz"); break; \
252 case 8: __get_user_asm2(x, ptr, retval); break; \
253 default: (x) = __get_user_bad(); \
257 #define __get_user_nocheck(x, ptr, size) \
260 unsigned long __gu_val; \
261 __chk_user_ptr(ptr); \
263 __get_user_size(__gu_val, (ptr), (size), __gu_err); \
264 (x) = (__typeof__(*(ptr)))__gu_val; \
268 #ifndef __powerpc64__
269 #define __get_user64_nocheck(x, ptr, size) \
272 long long __gu_val; \
273 __chk_user_ptr(ptr); \
275 __get_user_size(__gu_val, (ptr), (size), __gu_err); \
276 (x) = (__typeof__(*(ptr)))__gu_val; \
279 #endif /* __powerpc64__ */
281 #define __get_user_check(x, ptr, size) \
283 long __gu_err = -EFAULT; \
284 unsigned long __gu_val = 0; \
285 const __typeof__(*(ptr)) __user *__gu_addr = (ptr); \
287 if (access_ok(VERIFY_READ, __gu_addr, (size))) \
288 __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \
289 (x) = (__typeof__(*(ptr)))__gu_val; \
293 /* more complex routines */
295 extern unsigned long __copy_tofrom_user(void __user
*to
,
296 const void __user
*from
, unsigned long size
);
298 #ifndef __powerpc64__
300 extern inline unsigned long copy_from_user(void *to
,
301 const void __user
*from
, unsigned long n
)
305 if (access_ok(VERIFY_READ
, from
, n
))
306 return __copy_tofrom_user((__force
void __user
*)to
, from
, n
);
307 if ((unsigned long)from
< TASK_SIZE
) {
308 over
= (unsigned long)from
+ n
- TASK_SIZE
;
309 return __copy_tofrom_user((__force
void __user
*)to
, from
,
315 extern inline unsigned long copy_to_user(void __user
*to
,
316 const void *from
, unsigned long n
)
320 if (access_ok(VERIFY_WRITE
, to
, n
))
321 return __copy_tofrom_user(to
, (__force
void __user
*)from
, n
);
322 if ((unsigned long)to
< TASK_SIZE
) {
323 over
= (unsigned long)to
+ n
- TASK_SIZE
;
324 return __copy_tofrom_user(to
, (__force
void __user
*)from
,
330 #else /* __powerpc64__ */
332 #define __copy_in_user(to, from, size) \
333 __copy_tofrom_user((to), (from), (size))
335 extern unsigned long copy_from_user(void *to
, const void __user
*from
,
337 extern unsigned long copy_to_user(void __user
*to
, const void *from
,
339 extern unsigned long copy_in_user(void __user
*to
, const void __user
*from
,
342 #endif /* __powerpc64__ */
344 static inline unsigned long __copy_from_user_inatomic(void *to
,
345 const void __user
*from
, unsigned long n
)
347 if (__builtin_constant_p(n
) && (n
<= 8)) {
352 __get_user_size(*(u8
*)to
, from
, 1, ret
);
355 __get_user_size(*(u16
*)to
, from
, 2, ret
);
358 __get_user_size(*(u32
*)to
, from
, 4, ret
);
361 __get_user_size(*(u64
*)to
, from
, 8, ret
);
367 return __copy_tofrom_user((__force
void __user
*)to
, from
, n
);
370 static inline unsigned long __copy_to_user_inatomic(void __user
*to
,
371 const void *from
, unsigned long n
)
373 if (__builtin_constant_p(n
) && (n
<= 8)) {
378 __put_user_size(*(u8
*)from
, (u8 __user
*)to
, 1, ret
);
381 __put_user_size(*(u16
*)from
, (u16 __user
*)to
, 2, ret
);
384 __put_user_size(*(u32
*)from
, (u32 __user
*)to
, 4, ret
);
387 __put_user_size(*(u64
*)from
, (u64 __user
*)to
, 8, ret
);
393 return __copy_tofrom_user(to
, (__force
const void __user
*)from
, n
);
396 static inline unsigned long __copy_from_user(void *to
,
397 const void __user
*from
, unsigned long size
)
400 return __copy_from_user_inatomic(to
, from
, size
);
403 static inline unsigned long __copy_to_user(void __user
*to
,
404 const void *from
, unsigned long size
)
407 return __copy_to_user_inatomic(to
, from
, size
);
410 extern unsigned long __clear_user(void __user
*addr
, unsigned long size
);
412 static inline unsigned long clear_user(void __user
*addr
, unsigned long size
)
415 if (likely(access_ok(VERIFY_WRITE
, addr
, size
)))
416 return __clear_user(addr
, size
);
417 if ((unsigned long)addr
< TASK_SIZE
) {
418 unsigned long over
= (unsigned long)addr
+ size
- TASK_SIZE
;
419 return __clear_user(addr
, size
- over
) + over
;
424 extern int __strncpy_from_user(char *dst
, const char __user
*src
, long count
);
426 static inline long strncpy_from_user(char *dst
, const char __user
*src
,
430 if (likely(access_ok(VERIFY_READ
, src
, 1)))
431 return __strncpy_from_user(dst
, src
, count
);
436 * Return the size of a string (including the ending 0)
440 extern int __strnlen_user(const char __user
*str
, long len
, unsigned long top
);
443 * Returns the length of the string at str (including the null byte),
444 * or 0 if we hit a page we can't access,
445 * or something > len if we didn't find a null byte.
447 * The `top' parameter to __strnlen_user is to make sure that
448 * we can never overflow from the user area into kernel space.
450 static inline int strnlen_user(const char __user
*str
, long len
)
452 unsigned long top
= current
->thread
.fs
.seg
;
454 if ((unsigned long)str
> top
)
456 return __strnlen_user(str
, len
, top
);
459 #define strlen_user(str) strnlen_user((str), 0x7ffffffe)
461 #endif /* __ASSEMBLY__ */
462 #endif /* __KERNEL__ */
464 #endif /* _ARCH_POWERPC_UACCESS_H */