blob: 6f893d29f1b21625aadc4464d06ffba30b7697f3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __PARISC_UACCESS_H
2#define __PARISC_UACCESS_H
3
4/*
5 * User space memory access functions
6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/cache.h>
Helge Deller888c31f2010-02-01 19:56:33 +00009#include <asm/errno.h>
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +000010#include <asm-generic/uaccess-unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Helge Deller8dd95c62014-10-21 21:29:09 +020012#include <linux/bug.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#define VERIFY_READ 0
15#define VERIFY_WRITE 1
16
17#define KERNEL_DS ((mm_segment_t){0})
18#define USER_DS ((mm_segment_t){1})
19
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +020020#define segment_eq(a, b) ((a).seg == (b).seg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#define get_ds() (KERNEL_DS)
23#define get_fs() (current_thread_info()->addr_limit)
24#define set_fs(x) (current_thread_info()->addr_limit = (x))
25
26/*
27 * Note that since kernel addresses are in a separate address space on
Jesper Juhle49332b2005-05-01 08:59:08 -070028 * parisc, we don't need to do anything for access_ok().
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * We just let the page fault handler do the right thing. This also means
30 * that put_user is the same as __put_user, etc.
31 */
32
Helge Dellera0ffa8f2013-11-19 23:31:35 +010033static inline long access_ok(int type, const void __user * addr,
34 unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Helge Dellera0ffa8f2013-11-19 23:31:35 +010036 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define put_user __put_user
40#define get_user __get_user
41
Helge Dellerca72a222006-12-20 00:35:57 +010042#if !defined(CONFIG_64BIT)
Helge Deller8dd95c62014-10-21 21:29:09 +020043#define LDD_KERNEL(ptr) BUILD_BUG()
44#define LDD_USER(ptr) BUILD_BUG()
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +020045#define STD_KERNEL(x, ptr) __put_kernel_asm64(x, ptr)
46#define STD_USER(x, ptr) __put_user_asm64(x, ptr)
Helge Deller94a19812006-12-19 22:33:58 +010047#define ASM_WORD_INSN ".word\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#else
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +020049#define LDD_KERNEL(ptr) __get_kernel_asm("ldd", ptr)
50#define LDD_USER(ptr) __get_user_asm("ldd", ptr)
51#define STD_KERNEL(x, ptr) __put_kernel_asm("std", x, ptr)
52#define STD_USER(x, ptr) __put_user_asm("std", x, ptr)
Helge Deller94a19812006-12-19 22:33:58 +010053#define ASM_WORD_INSN ".dword\t"
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#endif
55
56/*
57 * The exception table contains two values: the first is an address
58 * for an instruction that is allowed to fault, and the second is
Helge Deller61dbbae2013-10-13 21:11:30 +020059 * the address to the fixup routine. Even on a 64bit kernel we could
60 * use a 32bit (unsigned int) address here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 */
62
Helge Deller0de79852016-03-23 16:00:46 +010063#define ARCH_HAS_RELATIVE_EXTABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070064struct exception_table_entry {
Helge Deller0de79852016-03-23 16:00:46 +010065 int insn; /* relative address of insn that is allowed to fault. */
66 int fixup; /* relative address of fixup routine */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Helge Deller0b3d6432007-01-28 14:52:57 +010069#define ASM_EXCEPTIONTABLE_ENTRY( fault_addr, except_addr )\
70 ".section __ex_table,\"aw\"\n" \
Helge Deller0de79852016-03-23 16:00:46 +010071 ".word (" #fault_addr " - .), (" #except_addr " - .)\n\t" \
Helge Deller0b3d6432007-01-28 14:52:57 +010072 ".previous\n"
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
75 * The page fault handler stores, in a per-cpu area, the following information
76 * if a fixup routine is available.
77 */
78struct exception_data {
79 unsigned long fault_ip;
Helge Deller2ef4dfd2016-04-08 18:32:52 +020080 unsigned long fault_gp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned long fault_space;
82 unsigned long fault_addr;
83};
84
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +020085#define __get_user(x, ptr) \
86({ \
87 register long __gu_err __asm__ ("r8") = 0; \
88 register long __gu_val __asm__ ("r9") = 0; \
89 \
90 if (segment_eq(get_fs(), KERNEL_DS)) { \
91 switch (sizeof(*(ptr))) { \
92 case 1: __get_kernel_asm("ldb", ptr); break; \
93 case 2: __get_kernel_asm("ldh", ptr); break; \
94 case 4: __get_kernel_asm("ldw", ptr); break; \
95 case 8: LDD_KERNEL(ptr); break; \
96 default: BUILD_BUG(); break; \
97 } \
98 } \
99 else { \
100 switch (sizeof(*(ptr))) { \
101 case 1: __get_user_asm("ldb", ptr); break; \
102 case 2: __get_user_asm("ldh", ptr); break; \
103 case 4: __get_user_asm("ldw", ptr); break; \
104 case 8: LDD_USER(ptr); break; \
105 default: BUILD_BUG(); break; \
106 } \
107 } \
108 \
109 (x) = (__force __typeof__(*(ptr))) __gu_val; \
110 __gu_err; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111})
112
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200113#define __get_kernel_asm(ldx, ptr) \
Helge Deller0b3d6432007-01-28 14:52:57 +0100114 __asm__("\n1:\t" ldx "\t0(%2),%0\n\t" \
115 ASM_EXCEPTIONTABLE_ENTRY(1b, fixup_get_user_skip_1)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 : "=r"(__gu_val), "=r"(__gu_err) \
117 : "r"(ptr), "1"(__gu_err) \
118 : "r1");
119
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200120#define __get_user_asm(ldx, ptr) \
Helge Deller0b3d6432007-01-28 14:52:57 +0100121 __asm__("\n1:\t" ldx "\t0(%%sr3,%2),%0\n\t" \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200122 ASM_EXCEPTIONTABLE_ENTRY(1b, fixup_get_user_skip_1)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 : "=r"(__gu_val), "=r"(__gu_err) \
124 : "r"(ptr), "1"(__gu_err) \
125 : "r1");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200127#define __put_user(x, ptr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128({ \
129 register long __pu_err __asm__ ("r8") = 0; \
130 __typeof__(*(ptr)) __x = (__typeof__(*(ptr)))(x); \
131 \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200132 if (segment_eq(get_fs(), KERNEL_DS)) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 switch (sizeof(*(ptr))) { \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200134 case 1: __put_kernel_asm("stb", __x, ptr); break; \
135 case 2: __put_kernel_asm("sth", __x, ptr); break; \
136 case 4: __put_kernel_asm("stw", __x, ptr); break; \
137 case 8: STD_KERNEL(__x, ptr); break; \
Helge Deller8dd95c62014-10-21 21:29:09 +0200138 default: BUILD_BUG(); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 } \
140 } \
141 else { \
142 switch (sizeof(*(ptr))) { \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200143 case 1: __put_user_asm("stb", __x, ptr); break; \
144 case 2: __put_user_asm("sth", __x, ptr); break; \
145 case 4: __put_user_asm("stw", __x, ptr); break; \
146 case 8: STD_USER(__x, ptr); break; \
Helge Deller8dd95c62014-10-21 21:29:09 +0200147 default: BUILD_BUG(); break; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 } \
149 } \
150 \
151 __pu_err; \
152})
153
154/*
155 * The "__put_user/kernel_asm()" macros tell gcc they read from memory
156 * instead of writing. This is because they do not write to any memory
Carlos O'Donell3fd3a742006-04-22 14:47:21 -0600157 * gcc knows about, so there are no aliasing issues. These macros must
158 * also be aware that "fixup_put_user_skip_[12]" are executed in the
159 * context of the fault, and any registers used there must be listed
160 * as clobbers. In this case only "r1" is used by the current routines.
161 * r8/r9 are already listed as err/val.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 */
163
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200164#define __put_kernel_asm(stx, x, ptr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 __asm__ __volatile__ ( \
Helge Deller0b3d6432007-01-28 14:52:57 +0100166 "\n1:\t" stx "\t%2,0(%1)\n\t" \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200167 ASM_EXCEPTIONTABLE_ENTRY(1b, fixup_put_user_skip_1)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 : "=r"(__pu_err) \
Carlos O'Donell3fd3a742006-04-22 14:47:21 -0600169 : "r"(ptr), "r"(x), "0"(__pu_err) \
170 : "r1")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200172#define __put_user_asm(stx, x, ptr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 __asm__ __volatile__ ( \
Helge Deller0b3d6432007-01-28 14:52:57 +0100174 "\n1:\t" stx "\t%2,0(%%sr3,%1)\n\t" \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200175 ASM_EXCEPTIONTABLE_ENTRY(1b, fixup_put_user_skip_1)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 : "=r"(__pu_err) \
177 : "r"(ptr), "r"(x), "0"(__pu_err) \
178 : "r1")
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Helge Dellerca72a222006-12-20 00:35:57 +0100181#if !defined(CONFIG_64BIT)
Helge Deller94a19812006-12-19 22:33:58 +0100182
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200183#define __put_kernel_asm64(__val, ptr) do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 __asm__ __volatile__ ( \
Helge Deller0b3d6432007-01-28 14:52:57 +0100185 "\n1:\tstw %2,0(%1)" \
Will Deacon0f28b622013-04-22 12:53:43 +0000186 "\n2:\tstw %R2,4(%1)\n\t" \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200187 ASM_EXCEPTIONTABLE_ENTRY(1b, fixup_put_user_skip_2)\
188 ASM_EXCEPTIONTABLE_ENTRY(2b, fixup_put_user_skip_1)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 : "=r"(__pu_err) \
Will Deacon0f28b622013-04-22 12:53:43 +0000190 : "r"(ptr), "r"(__val), "0"(__pu_err) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 : "r1"); \
192} while (0)
193
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200194#define __put_user_asm64(__val, ptr) do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 __asm__ __volatile__ ( \
Helge Deller0b3d6432007-01-28 14:52:57 +0100196 "\n1:\tstw %2,0(%%sr3,%1)" \
Will Deacon0f28b622013-04-22 12:53:43 +0000197 "\n2:\tstw %R2,4(%%sr3,%1)\n\t" \
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200198 ASM_EXCEPTIONTABLE_ENTRY(1b, fixup_put_user_skip_2)\
199 ASM_EXCEPTIONTABLE_ENTRY(2b, fixup_put_user_skip_1)\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 : "=r"(__pu_err) \
Will Deacon0f28b622013-04-22 12:53:43 +0000201 : "r"(ptr), "r"(__val), "0"(__pu_err) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 : "r1"); \
203} while (0)
204
Helge Dellerca72a222006-12-20 00:35:57 +0100205#endif /* !defined(CONFIG_64BIT) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207
208/*
209 * Complex access routines -- external declarations
210 */
211
212extern unsigned long lcopy_to_user(void __user *, const void *, unsigned long);
213extern unsigned long lcopy_from_user(void *, const void __user *, unsigned long);
214extern unsigned long lcopy_in_user(void __user *, const void __user *, unsigned long);
James Bottomleyb1195c02012-05-26 09:48:19 +0100215extern long strncpy_from_user(char *, const char __user *, long);
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200216extern unsigned lclear_user(void __user *, unsigned long);
217extern long lstrnlen_user(const char __user *, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
219 * Complex access routines -- macros
220 */
Helge Dellera0ffa8f2013-11-19 23:31:35 +0100221#define user_addr_max() (~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#define strnlen_user lstrnlen_user
224#define strlen_user(str) lstrnlen_user(str, 0x7fffffffL)
225#define clear_user lclear_user
226#define __clear_user lclear_user
227
228unsigned long copy_to_user(void __user *dst, const void *src, unsigned long len);
229#define __copy_to_user copy_to_user
Helge Deller888c31f2010-02-01 19:56:33 +0000230unsigned long __copy_from_user(void *dst, const void __user *src, unsigned long len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231unsigned long copy_in_user(void __user *dst, const void __user *src, unsigned long len);
232#define __copy_in_user copy_in_user
233#define __copy_to_user_inatomic __copy_to_user
234#define __copy_from_user_inatomic __copy_from_user
235
Helge Deller888c31f2010-02-01 19:56:33 +0000236extern void copy_from_user_overflow(void)
237#ifdef CONFIG_DEBUG_STRICT_USER_COPY_CHECKS
238 __compiletime_error("copy_from_user() buffer size is not provably correct")
239#else
240 __compiletime_warning("copy_from_user() buffer size is not provably correct")
241#endif
242;
243
244static inline unsigned long __must_check copy_from_user(void *to,
245 const void __user *from,
246 unsigned long n)
247{
248 int sz = __compiletime_object_size(to);
249 int ret = -EFAULT;
250
251 if (likely(sz == -1 || !__builtin_constant_p(n) || sz >= n))
252 ret = __copy_from_user(to, from, n);
253 else
254 copy_from_user_overflow();
255
256 return ret;
257}
258
Helge Dellere4483722009-01-13 20:52:46 +0100259struct pt_regs;
Kyle McMartinc61c25e2008-12-20 02:29:06 +0000260int fixup_exception(struct pt_regs *regs);
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#endif /* __PARISC_UACCESS_H */