blob: 93720e7b0289250267dbc461b1defb9d4160e6e5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: uaccess.h,v 1.35 2002/02/09 19:49:31 davem Exp $ */
2#ifndef _ASM_UACCESS_H
3#define _ASM_UACCESS_H
4
5/*
6 * User space memory access functions
7 */
8
9#ifdef __KERNEL__
10#include <linux/compiler.h>
11#include <linux/sched.h>
12#include <linux/string.h>
13#include <asm/a.out.h>
14#include <asm/asi.h>
15#include <asm/system.h>
16#include <asm/spitfire.h>
17#include <asm-generic/uaccess.h>
18#endif
19
20#ifndef __ASSEMBLY__
21
22/*
23 * Sparc64 is segmented, though more like the M68K than the I386.
24 * We use the secondary ASI to address user memory, which references a
25 * completely different VM map, thus there is zero chance of the user
26 * doing something queer and tricking us into poking kernel memory.
27 *
28 * What is left here is basically what is needed for the other parts of
29 * the kernel that expect to be able to manipulate, erum, "segments".
30 * Or perhaps more properly, permissions.
31 *
32 * "For historical reasons, these macros are grossly misnamed." -Linus
33 */
34
35#define KERNEL_DS ((mm_segment_t) { ASI_P })
36#define USER_DS ((mm_segment_t) { ASI_AIUS }) /* har har har */
37
38#define VERIFY_READ 0
39#define VERIFY_WRITE 1
40
41#define get_fs() ((mm_segment_t) { get_thread_current_ds() })
42#define get_ds() (KERNEL_DS)
43
44#define segment_eq(a,b) ((a).seg == (b).seg)
45
46#define set_fs(val) \
47do { \
48 set_thread_current_ds((val).seg); \
49 __asm__ __volatile__ ("wr %%g0, %0, %%asi" : : "r" ((val).seg)); \
50} while(0)
51
52static inline int __access_ok(const void __user * addr, unsigned long size)
53{
54 return 1;
55}
56
57static inline int access_ok(int type, const void __user * addr, unsigned long size)
58{
59 return 1;
60}
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
63 * The exception table consists of pairs of addresses: the first is the
64 * address of an instruction that is allowed to fault, and the second is
65 * the address at which the program should continue. No registers are
66 * modified, so it is entirely up to the continuation code to figure out
67 * what to do.
68 *
69 * All the routines below use bits of fixup code that are out of line
70 * with the main instruction path. This means when everything is well,
71 * we don't even have to jump over them. Further, they do not intrude
72 * on our cache or tlb entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
74
David S. Miller8cf14af2005-09-28 20:21:11 -070075struct exception_table_entry {
76 unsigned int insn, fixup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079extern void __ret_efault(void);
David S. Miller5fd29752005-09-28 20:41:45 -070080extern void __retl_efault(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/* Uh, these should become the main single-value transfer routines..
83 * They automatically use the right size if we just have the right
84 * pointer type..
85 *
86 * This gets kind of ugly. We want to return _two_ values in "get_user()"
87 * and yet we don't want to do any pointers, because that is too much
88 * of a performance impact. Thus we have a few rather ugly macros here,
89 * and hide all the ugliness from the user.
90 */
91#define put_user(x,ptr) ({ \
92unsigned long __pu_addr = (unsigned long)(ptr); \
93__chk_user_ptr(ptr); \
94__put_user_nocheck((__typeof__(*(ptr)))(x),__pu_addr,sizeof(*(ptr))); })
95
96#define get_user(x,ptr) ({ \
97unsigned long __gu_addr = (unsigned long)(ptr); \
98__chk_user_ptr(ptr); \
99__get_user_nocheck((x),__gu_addr,sizeof(*(ptr)),__typeof__(*(ptr))); })
100
101#define __put_user(x,ptr) put_user(x,ptr)
102#define __get_user(x,ptr) get_user(x,ptr)
103
104struct __large_struct { unsigned long buf[100]; };
105#define __m(x) ((struct __large_struct *)(x))
106
107#define __put_user_nocheck(data,addr,size) ({ \
108register int __pu_ret; \
109switch (size) { \
110case 1: __put_user_asm(data,b,addr,__pu_ret); break; \
111case 2: __put_user_asm(data,h,addr,__pu_ret); break; \
112case 4: __put_user_asm(data,w,addr,__pu_ret); break; \
113case 8: __put_user_asm(data,x,addr,__pu_ret); break; \
114default: __pu_ret = __put_user_bad(); break; \
115} __pu_ret; })
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define __put_user_asm(x,size,addr,ret) \
118__asm__ __volatile__( \
119 "/* Put user asm, inline. */\n" \
120"1:\t" "st"#size "a %1, [%2] %%asi\n\t" \
121 "clr %0\n" \
122"2:\n\n\t" \
123 ".section .fixup,#alloc,#execinstr\n\t" \
124 ".align 4\n" \
125"3:\n\t" \
David S. Miller52eb0532007-10-30 21:11:28 -0700126 "sethi %%hi(2b), %0\n\t" \
127 "jmpl %0 + %%lo(2b), %%g0\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 " mov %3, %0\n\n\t" \
129 ".previous\n\t" \
David S. Miller4d000d52006-03-04 23:23:56 -0800130 ".section __ex_table,\"a\"\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 ".align 4\n\t" \
132 ".word 1b, 3b\n\t" \
133 ".previous\n\n\t" \
134 : "=r" (ret) : "r" (x), "r" (__m(addr)), \
135 "i" (-EFAULT))
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137extern int __put_user_bad(void);
138
139#define __get_user_nocheck(data,addr,size,type) ({ \
140register int __gu_ret; \
141register unsigned long __gu_val; \
142switch (size) { \
143case 1: __get_user_asm(__gu_val,ub,addr,__gu_ret); break; \
144case 2: __get_user_asm(__gu_val,uh,addr,__gu_ret); break; \
145case 4: __get_user_asm(__gu_val,uw,addr,__gu_ret); break; \
146case 8: __get_user_asm(__gu_val,x,addr,__gu_ret); break; \
147default: __gu_val = 0; __gu_ret = __get_user_bad(); break; \
148} data = (type) __gu_val; __gu_ret; })
149
150#define __get_user_nocheck_ret(data,addr,size,type,retval) ({ \
151register unsigned long __gu_val __asm__ ("l1"); \
152switch (size) { \
153case 1: __get_user_asm_ret(__gu_val,ub,addr,retval); break; \
154case 2: __get_user_asm_ret(__gu_val,uh,addr,retval); break; \
155case 4: __get_user_asm_ret(__gu_val,uw,addr,retval); break; \
156case 8: __get_user_asm_ret(__gu_val,x,addr,retval); break; \
157default: if (__get_user_bad()) return retval; \
158} data = (type) __gu_val; })
159
160#define __get_user_asm(x,size,addr,ret) \
161__asm__ __volatile__( \
162 "/* Get user asm, inline. */\n" \
163"1:\t" "ld"#size "a [%2] %%asi, %1\n\t" \
164 "clr %0\n" \
165"2:\n\n\t" \
166 ".section .fixup,#alloc,#execinstr\n\t" \
167 ".align 4\n" \
168"3:\n\t" \
David S. Miller52eb0532007-10-30 21:11:28 -0700169 "sethi %%hi(2b), %0\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 "clr %1\n\t" \
David S. Miller52eb0532007-10-30 21:11:28 -0700171 "jmpl %0 + %%lo(2b), %%g0\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 " mov %3, %0\n\n\t" \
173 ".previous\n\t" \
David S. Miller4d000d52006-03-04 23:23:56 -0800174 ".section __ex_table,\"a\"\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 ".align 4\n\t" \
176 ".word 1b, 3b\n\n\t" \
177 ".previous\n\t" \
178 : "=r" (ret), "=r" (x) : "r" (__m(addr)), \
179 "i" (-EFAULT))
180
181#define __get_user_asm_ret(x,size,addr,retval) \
182if (__builtin_constant_p(retval) && retval == -EFAULT) \
183__asm__ __volatile__( \
184 "/* Get user asm ret, inline. */\n" \
185"1:\t" "ld"#size "a [%1] %%asi, %0\n\n\t" \
David S. Miller4d000d52006-03-04 23:23:56 -0800186 ".section __ex_table,\"a\"\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 ".align 4\n\t" \
188 ".word 1b,__ret_efault\n\n\t" \
189 ".previous\n\t" \
190 : "=r" (x) : "r" (__m(addr))); \
191else \
192__asm__ __volatile__( \
193 "/* Get user asm ret, inline. */\n" \
194"1:\t" "ld"#size "a [%1] %%asi, %0\n\n\t" \
195 ".section .fixup,#alloc,#execinstr\n\t" \
196 ".align 4\n" \
197"3:\n\t" \
198 "ret\n\t" \
199 " restore %%g0, %2, %%o0\n\n\t" \
200 ".previous\n\t" \
David S. Miller4d000d52006-03-04 23:23:56 -0800201 ".section __ex_table,\"a\"\n\t" \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 ".align 4\n\t" \
203 ".word 1b, 3b\n\n\t" \
204 ".previous\n\t" \
205 : "=r" (x) : "r" (__m(addr)), "i" (retval))
206
207extern int __get_user_bad(void);
208
209extern unsigned long __must_check ___copy_from_user(void *to,
210 const void __user *from,
211 unsigned long size);
212extern unsigned long copy_from_user_fixup(void *to, const void __user *from,
213 unsigned long size);
214static inline unsigned long __must_check
215copy_from_user(void *to, const void __user *from, unsigned long size)
216{
217 unsigned long ret = ___copy_from_user(to, from, size);
218
David S. Millerefdc1e22005-09-28 21:06:47 -0700219 if (unlikely(ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 ret = copy_from_user_fixup(to, from, size);
221 return ret;
222}
223#define __copy_from_user copy_from_user
224
225extern unsigned long __must_check ___copy_to_user(void __user *to,
226 const void *from,
227 unsigned long size);
228extern unsigned long copy_to_user_fixup(void __user *to, const void *from,
229 unsigned long size);
230static inline unsigned long __must_check
231copy_to_user(void __user *to, const void *from, unsigned long size)
232{
233 unsigned long ret = ___copy_to_user(to, from, size);
234
David S. Millerefdc1e22005-09-28 21:06:47 -0700235 if (unlikely(ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 ret = copy_to_user_fixup(to, from, size);
237 return ret;
238}
239#define __copy_to_user copy_to_user
240
241extern unsigned long __must_check ___copy_in_user(void __user *to,
242 const void __user *from,
243 unsigned long size);
244extern unsigned long copy_in_user_fixup(void __user *to, void __user *from,
245 unsigned long size);
246static inline unsigned long __must_check
247copy_in_user(void __user *to, void __user *from, unsigned long size)
248{
249 unsigned long ret = ___copy_in_user(to, from, size);
250
David S. Millerefdc1e22005-09-28 21:06:47 -0700251 if (unlikely(ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 ret = copy_in_user_fixup(to, from, size);
253 return ret;
254}
255#define __copy_in_user copy_in_user
256
David S. Millerc857e3f2006-02-17 10:35:23 -0800257extern unsigned long __must_check __clear_user(void __user *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259#define clear_user __clear_user
260
261extern long __must_check __strncpy_from_user(char *dest, const char __user *src, long count);
262
263#define strncpy_from_user __strncpy_from_user
264
265extern long __strlen_user(const char __user *);
266extern long __strnlen_user(const char __user *, long len);
267
268#define strlen_user __strlen_user
269#define strnlen_user __strnlen_user
270#define __copy_to_user_inatomic __copy_to_user
271#define __copy_from_user_inatomic __copy_from_user
272
273#endif /* __ASSEMBLY__ */
274
275#endif /* _ASM_UACCESS_H */