2 * Standard user space access functions based on mvcp/mvcs and doing
3 * interesting things in the secondary space mode.
5 * Copyright IBM Corp. 2006
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
7 * Gerald Schaefer (gerald.schaefer@de.ibm.com)
10 #include <linux/errno.h>
12 #include <linux/uaccess.h>
13 #include <asm/futex.h>
30 size_t copy_from_user_std(size_t size, const void __user *ptr, void *x)
32 unsigned long tmp1, tmp2;
36 "0: mvcp 0(%0,%2),0(%1),%3\n"
41 "2: mvcp 0(%0,%2),0(%1),%3\n"
44 "3: la %4,255(%1)\n" /* %4 = ptr + 255 */
46 " nr %4,%3\n" /* %4 = (ptr + 255) & -4096 */
48 " "CLR" %0,%4\n" /* copy crosses next page boundary? */
50 "4: mvcp 0(%4,%2),0(%1),%3\n"
54 " "ALR" %4,%0\n" /* copy remaining size, subtract 1 */
55 " bras %3,7f\n" /* memset loop */
57 "6: xc 0(256,%2),0(%2)\n"
65 EX_TABLE(0b,3b) EX_TABLE(2b,3b) EX_TABLE(4b,5b)
66 EX_TABLE(10b,3b) EX_TABLE(11b,3b) EX_TABLE(12b,5b)
67 : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2)
72 static size_t copy_from_user_std_check(size_t size, const void __user *ptr,
76 return copy_from_user_std(size, ptr, x);
77 return copy_from_user_pt(size, ptr, x);
80 size_t copy_to_user_std(size_t size, void __user *ptr, const void *x)
82 unsigned long tmp1, tmp2;
86 "0: mvcs 0(%0,%1),0(%2),%3\n"
91 "2: mvcs 0(%0,%1),0(%2),%3\n"
94 "3: la %4,255(%1)\n" /* %4 = ptr + 255 */
96 " nr %4,%3\n" /* %4 = (ptr + 255) & -4096 */
98 " "CLR" %0,%4\n" /* copy crosses next page boundary? */
100 "4: mvcs 0(%4,%1),0(%2),%3\n"
105 EX_TABLE(0b,3b) EX_TABLE(2b,3b) EX_TABLE(4b,6b)
106 EX_TABLE(7b,3b) EX_TABLE(8b,3b) EX_TABLE(9b,6b)
107 : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2)
112 static size_t copy_to_user_std_check(size_t size, void __user *ptr,
116 return copy_to_user_std(size, ptr, x);
117 return copy_to_user_pt(size, ptr, x);
120 static size_t copy_in_user_std(size_t size, void __user *to,
121 const void __user *from)
131 "1: mvc 0(1,%1),0(%2)\n"
137 "2: mvc 0(256,%1),0(%2)\n"
142 "4: ex %0,1b-0b(%3)\n"
145 EX_TABLE(1b,6b) EX_TABLE(2b,0b) EX_TABLE(4b,0b)
146 : "+a" (size), "+a" (to), "+a" (from), "=a" (tmp1)
151 static size_t clear_user_std(size_t size, void __user *to)
153 unsigned long tmp1, tmp2;
160 " xc 0(1,%1),0(%1)\n"
162 " la %2,255(%1)\n" /* %2 = ptr + 255 */
164 " sll %2,12\n" /* %2 = (ptr + 255) & -4096 */
166 " "CLR" %0,%2\n" /* clear crosses next page boundary? */
173 "2: xc 0(256,%1),0(%1)\n"
180 EX_TABLE(1b,6b) EX_TABLE(2b,0b) EX_TABLE(4b,0b)
181 : "+a" (size), "+a" (to), "=a" (tmp1), "=a" (tmp2)
186 size_t strnlen_user_std(size_t size, const char __user *src)
188 register unsigned long reg0 asm("0") = 0UL;
189 unsigned long tmp1, tmp2;
198 " la %0,1(%3)\n" /* strnlen_user results includes \0 */
202 : "+a" (size), "+a" (src), "=a" (tmp1), "=a" (tmp2)
203 : "d" (reg0) : "cc", "memory");
207 size_t strncpy_from_user_std(size_t size, const char __user *src, char *dst)
209 register unsigned long reg0 asm("0") = 0UL;
210 unsigned long tmp1, tmp2;
220 " jh 1f\n" /* found \0 in string ? */
221 " "AHI" %4,1\n" /* include \0 in copy */
222 "1:"SLR" %0,%1\n" /* %0 = return length (without \0) */
223 " "SLR" %4,%1\n" /* %4 = copy length (including \0) */
224 "2: mvcp 0(%4,%2),0(%1),%5\n"
229 "4: mvcp 0(%4,%2),0(%1),%5\n"
235 EX_TABLE(0b,7b) EX_TABLE(2b,8b) EX_TABLE(4b,8b)
236 : "+a" (size), "+a" (src), "+d" (dst), "=a" (tmp1), "=a" (tmp2)
237 : "d" (reg0), "K" (-EFAULT) : "cc", "memory");
241 #define __futex_atomic_op(insn, ret, oldval, newval, uaddr, oparg) \
246 "2: cs %1,%2,0(%6)\n" \
250 EX_TABLE(0b,4b) EX_TABLE(2b,4b) EX_TABLE(3b,4b) \
251 : "=d" (ret), "=&d" (oldval), "=&d" (newval), \
253 : "0" (-EFAULT), "d" (oparg), "a" (uaddr), \
254 "m" (*uaddr) : "cc");
256 int futex_atomic_op_std(int op, u32 __user *uaddr, int oparg, int *old)
258 int oldval = 0, newval, ret;
262 __futex_atomic_op("lr %2,%5\n",
263 ret, oldval, newval, uaddr, oparg);
266 __futex_atomic_op("lr %2,%1\nar %2,%5\n",
267 ret, oldval, newval, uaddr, oparg);
270 __futex_atomic_op("lr %2,%1\nor %2,%5\n",
271 ret, oldval, newval, uaddr, oparg);
274 __futex_atomic_op("lr %2,%1\nnr %2,%5\n",
275 ret, oldval, newval, uaddr, oparg);
278 __futex_atomic_op("lr %2,%1\nxr %2,%5\n",
279 ret, oldval, newval, uaddr, oparg);
288 int futex_atomic_cmpxchg_std(u32 *uval, u32 __user *uaddr,
289 u32 oldval, u32 newval)
295 "0: cs %1,%4,0(%5)\n"
298 EX_TABLE(0b,2b) EX_TABLE(1b,2b)
299 : "=d" (ret), "+d" (oldval), "=m" (*uaddr)
300 : "0" (-EFAULT), "d" (newval), "a" (uaddr), "m" (*uaddr)
306 struct uaccess_ops uaccess_std = {
307 .copy_from_user = copy_from_user_std_check,
308 .copy_from_user_small = copy_from_user_std,
309 .copy_to_user = copy_to_user_std_check,
310 .copy_to_user_small = copy_to_user_std,
311 .copy_in_user = copy_in_user_std,
312 .clear_user = clear_user_std,
313 .strnlen_user = strnlen_user_std,
314 .strncpy_from_user = strncpy_from_user_std,
315 .futex_atomic_op = futex_atomic_op_std,
316 .futex_atomic_cmpxchg = futex_atomic_cmpxchg_std,