blob: 30ac2865ea730cdf650efd7ca993cfd6daa79d2e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef __PARISC_UACCESS_H
3#define __PARISC_UACCESS_H
4
5/*
6 * User space memory access functions
7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <asm/cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Helge Deller8dd95c62014-10-21 21:29:09 +020011#include <linux/bug.h>
Al Viroaace8802016-08-20 19:03:37 -040012#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#define KERNEL_DS ((mm_segment_t){0})
15#define USER_DS ((mm_segment_t){1})
16
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +020017#define segment_eq(a, b) ((a).seg == (b).seg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#define get_ds() (KERNEL_DS)
20#define get_fs() (current_thread_info()->addr_limit)
21#define set_fs(x) (current_thread_info()->addr_limit = (x))
22
23/*
24 * Note that since kernel addresses are in a separate address space on
Jesper Juhle49332b2005-05-01 08:59:08 -070025 * parisc, we don't need to do anything for access_ok().
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * We just let the page fault handler do the right thing. This also means
27 * that put_user is the same as __put_user, etc.
28 */
29
Linus Torvalds96d4f262019-01-03 18:57:57 -080030#define access_ok(uaddr, size) \
Helge Deller186ecf12017-03-15 21:48:42 +010031 ( (uaddr) == (uaddr) )
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define put_user __put_user
34#define get_user __get_user
35
Helge Dellerca72a222006-12-20 00:35:57 +010036#if !defined(CONFIG_64BIT)
Helge Deller3f795ce2017-04-16 10:00:14 +020037#define LDD_USER(val, ptr) __get_user_asm64(val, ptr)
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +020038#define STD_USER(x, ptr) __put_user_asm64(x, ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#else
Helge Deller3f795ce2017-04-16 10:00:14 +020040#define LDD_USER(val, ptr) __get_user_asm(val, "ldd", ptr)
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +020041#define STD_USER(x, ptr) __put_user_asm("std", x, ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#endif
43
44/*
Helge Dellercb910c12016-04-08 21:36:06 +020045 * The exception table contains two values: the first is the relative offset to
46 * the address of the instruction that is allowed to fault, and the second is
47 * the relative offset to the address of the fixup routine. Since relative
48 * addresses are used, 32bit values are sufficient even on 64bit kernel.
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 */
50
Helge Deller0de79852016-03-23 16:00:46 +010051#define ARCH_HAS_RELATIVE_EXTABLE
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct exception_table_entry {
Helge Deller0de79852016-03-23 16:00:46 +010053 int insn; /* relative address of insn that is allowed to fault. */
54 int fixup; /* relative address of fixup routine */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
Helge Deller0b3d6432007-01-28 14:52:57 +010057#define ASM_EXCEPTIONTABLE_ENTRY( fault_addr, except_addr )\
58 ".section __ex_table,\"aw\"\n" \
Helge Deller0de79852016-03-23 16:00:46 +010059 ".word (" #fault_addr " - .), (" #except_addr " - .)\n\t" \
Helge Deller0b3d6432007-01-28 14:52:57 +010060 ".previous\n"
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
Helge Dellerd19f5e42017-03-25 11:59:15 +010063 * ASM_EXCEPTIONTABLE_ENTRY_EFAULT() creates a special exception table entry
64 * (with lowest bit set) for which the fault handler in fixup_exception() will
65 * load -EFAULT into %r8 for a read or write fault, and zeroes the target
66 * register in case of a read fault in get_user().
67 */
68#define ASM_EXCEPTIONTABLE_ENTRY_EFAULT( fault_addr, except_addr )\
69 ASM_EXCEPTIONTABLE_ENTRY( fault_addr, except_addr + 1)
70
71/*
Helge Deller06bff6b2016-04-09 08:26:14 +020072 * load_sr2() preloads the space register %%sr2 - based on the value of
73 * get_fs() - with either a value of 0 to access kernel space (KERNEL_DS which
74 * is 0), or with the current value of %%sr3 to access user space (USER_DS)
75 * memory. The following __get_user_asm() and __put_user_asm() functions have
76 * %%sr2 hard-coded to access the requested memory.
77 */
78#define load_sr2() \
79 __asm__(" or,= %0,%%r0,%%r0\n\t" \
80 " mfsp %%sr3,%0\n\t" \
81 " mtsp %0,%%sr2\n\t" \
82 : : "r"(get_fs()) : )
83
Helge Deller3f795ce2017-04-16 10:00:14 +020084#define __get_user_internal(val, ptr) \
85({ \
86 register long __gu_err __asm__ ("r8") = 0; \
87 \
88 switch (sizeof(*(ptr))) { \
89 case 1: __get_user_asm(val, "ldb", ptr); break; \
90 case 2: __get_user_asm(val, "ldh", ptr); break; \
91 case 4: __get_user_asm(val, "ldw", ptr); break; \
92 case 8: LDD_USER(val, ptr); break; \
93 default: BUILD_BUG(); \
94 } \
95 \
96 __gu_err; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070097})
98
Helge Deller3f795ce2017-04-16 10:00:14 +020099#define __get_user(val, ptr) \
100({ \
101 load_sr2(); \
102 __get_user_internal(val, ptr); \
103})
104
105#define __get_user_asm(val, ldx, ptr) \
106{ \
107 register long __gu_val; \
108 \
Helge Dellerd19f5e42017-03-25 11:59:15 +0100109 __asm__("1: " ldx " 0(%%sr2,%2),%0\n" \
110 "9:\n" \
111 ASM_EXCEPTIONTABLE_ENTRY_EFAULT(1b, 9b) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 : "=r"(__gu_val), "=r"(__gu_err) \
Helge Deller3f795ce2017-04-16 10:00:14 +0200113 : "r"(ptr), "1"(__gu_err)); \
114 \
115 (val) = (__force __typeof__(*(ptr))) __gu_val; \
116}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Helge Dellerd2ad8242016-04-09 08:27:08 +0200118#if !defined(CONFIG_64BIT)
119
Helge Deller3f795ce2017-04-16 10:00:14 +0200120#define __get_user_asm64(val, ptr) \
121{ \
122 union { \
123 unsigned long long l; \
124 __typeof__(*(ptr)) t; \
125 } __gu_tmp; \
126 \
Helge Dellerd19f5e42017-03-25 11:59:15 +0100127 __asm__(" copy %%r0,%R0\n" \
128 "1: ldw 0(%%sr2,%2),%0\n" \
129 "2: ldw 4(%%sr2,%2),%R0\n" \
130 "9:\n" \
131 ASM_EXCEPTIONTABLE_ENTRY_EFAULT(1b, 9b) \
132 ASM_EXCEPTIONTABLE_ENTRY_EFAULT(2b, 9b) \
Helge Deller3f795ce2017-04-16 10:00:14 +0200133 : "=&r"(__gu_tmp.l), "=r"(__gu_err) \
134 : "r"(ptr), "1"(__gu_err)); \
135 \
136 (val) = __gu_tmp.t; \
137}
Helge Dellerd2ad8242016-04-09 08:27:08 +0200138
139#endif /* !defined(CONFIG_64BIT) */
140
141
Helge Deller3f795ce2017-04-16 10:00:14 +0200142#define __put_user_internal(x, ptr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143({ \
144 register long __pu_err __asm__ ("r8") = 0; \
145 __typeof__(*(ptr)) __x = (__typeof__(*(ptr)))(x); \
146 \
Helge Deller06bff6b2016-04-09 08:26:14 +0200147 switch (sizeof(*(ptr))) { \
Helge Deller3f795ce2017-04-16 10:00:14 +0200148 case 1: __put_user_asm("stb", __x, ptr); break; \
149 case 2: __put_user_asm("sth", __x, ptr); break; \
150 case 4: __put_user_asm("stw", __x, ptr); break; \
151 case 8: STD_USER(__x, ptr); break; \
152 default: BUILD_BUG(); \
153 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 \
155 __pu_err; \
156})
157
Helge Deller3f795ce2017-04-16 10:00:14 +0200158#define __put_user(x, ptr) \
159({ \
160 load_sr2(); \
161 __put_user_internal(x, ptr); \
162})
163
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
166 * The "__put_user/kernel_asm()" macros tell gcc they read from memory
167 * instead of writing. This is because they do not write to any memory
Carlos O'Donell3fd3a742006-04-22 14:47:21 -0600168 * gcc knows about, so there are no aliasing issues. These macros must
Helge Dellerd19f5e42017-03-25 11:59:15 +0100169 * also be aware that fixups are executed in the context of the fault,
170 * and any registers used there must be listed as clobbers.
171 * r8 is already listed as err.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
173
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200174#define __put_user_asm(stx, x, ptr) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 __asm__ __volatile__ ( \
Helge Dellerd19f5e42017-03-25 11:59:15 +0100176 "1: " stx " %2,0(%%sr2,%1)\n" \
177 "9:\n" \
178 ASM_EXCEPTIONTABLE_ENTRY_EFAULT(1b, 9b) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 : "=r"(__pu_err) \
Helge Dellerd19f5e42017-03-25 11:59:15 +0100180 : "r"(ptr), "r"(x), "0"(__pu_err))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Helge Dellerca72a222006-12-20 00:35:57 +0100183#if !defined(CONFIG_64BIT)
Helge Deller94a19812006-12-19 22:33:58 +0100184
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200185#define __put_user_asm64(__val, ptr) do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 __asm__ __volatile__ ( \
Helge Dellerd19f5e42017-03-25 11:59:15 +0100187 "1: stw %2,0(%%sr2,%1)\n" \
188 "2: stw %R2,4(%%sr2,%1)\n" \
189 "9:\n" \
190 ASM_EXCEPTIONTABLE_ENTRY_EFAULT(1b, 9b) \
191 ASM_EXCEPTIONTABLE_ENTRY_EFAULT(2b, 9b) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 : "=r"(__pu_err) \
Helge Dellerd19f5e42017-03-25 11:59:15 +0100193 : "r"(ptr), "r"(__val), "0"(__pu_err)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194} while (0)
195
Helge Dellerca72a222006-12-20 00:35:57 +0100196#endif /* !defined(CONFIG_64BIT) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198
199/*
200 * Complex access routines -- external declarations
201 */
202
James Bottomleyb1195c02012-05-26 09:48:19 +0100203extern long strncpy_from_user(char *, const char __user *, long);
Michael S. Tsirkinb9762e72015-01-06 17:45:34 +0200204extern unsigned lclear_user(void __user *, unsigned long);
205extern long lstrnlen_user(const char __user *, long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/*
207 * Complex access routines -- macros
208 */
Helge Dellera0ffa8f2013-11-19 23:31:35 +0100209#define user_addr_max() (~0UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#define strnlen_user lstrnlen_user
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#define clear_user lclear_user
213#define __clear_user lclear_user
214
Al Virof64fd182017-03-24 23:11:26 -0400215unsigned long __must_check raw_copy_to_user(void __user *dst, const void *src,
216 unsigned long len);
217unsigned long __must_check raw_copy_from_user(void *dst, const void __user *src,
218 unsigned long len);
219unsigned long __must_check raw_copy_in_user(void __user *dst, const void __user *src,
220 unsigned long len);
221#define INLINE_COPY_TO_USER
222#define INLINE_COPY_FROM_USER
Helge Deller888c31f2010-02-01 19:56:33 +0000223
Helge Dellere4483722009-01-13 20:52:46 +0100224struct pt_regs;
Kyle McMartinc61c25e2008-12-20 02:29:06 +0000225int fixup_exception(struct pt_regs *regs);
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227#endif /* __PARISC_UACCESS_H */