2 * arch/s390/lib/uaccess_std.c
4 * Standard user space access functions based on mvcp/mvcs and doing
5 * interesting things in the secondary space mode.
7 * Copyright (C) IBM Corp. 2006
8 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
9 * Gerald Schaefer (gerald.schaefer@de.ibm.com)
12 #include <linux/errno.h>
14 #include <linux/uaccess.h>
15 #include <asm/futex.h>
32 size_t copy_from_user_std(size_t size
, const void __user
*ptr
, void *x
)
34 unsigned long tmp1
, tmp2
;
38 "0: mvcp 0(%0,%2),0(%1),%3\n"
43 "2: mvcp 0(%0,%2),0(%1),%3\n"
46 "3: la %4,255(%1)\n" /* %4 = ptr + 255 */
48 " nr %4,%3\n" /* %4 = (ptr + 255) & -4096 */
50 " "CLR
" %0,%4\n" /* copy crosses next page boundary? */
52 "4: mvcp 0(%4,%2),0(%1),%3\n"
56 " "ALR
" %4,%0\n" /* copy remaining size, subtract 1 */
57 " bras %3,7f\n" /* memset loop */
59 "6: xc 0(256,%2),0(%2)\n"
67 EX_TABLE(0b
,3b
) EX_TABLE(2b
,3b
) EX_TABLE(4b
,5b
)
68 : "+a" (size
), "+a" (ptr
), "+a" (x
), "+a" (tmp1
), "=a" (tmp2
)
73 static size_t copy_from_user_std_check(size_t size
, const void __user
*ptr
,
77 return copy_from_user_std(size
, ptr
, x
);
78 return copy_from_user_pt(size
, ptr
, x
);
81 size_t copy_to_user_std(size_t size
, void __user
*ptr
, const void *x
)
83 unsigned long tmp1
, tmp2
;
87 "0: mvcs 0(%0,%1),0(%2),%3\n"
92 "2: mvcs 0(%0,%1),0(%2),%3\n"
95 "3: la %4,255(%1)\n" /* %4 = ptr + 255 */
97 " nr %4,%3\n" /* %4 = (ptr + 255) & -4096 */
99 " "CLR
" %0,%4\n" /* copy crosses next page boundary? */
101 "4: mvcs 0(%4,%1),0(%2),%3\n"
106 EX_TABLE(0b
,3b
) EX_TABLE(2b
,3b
) EX_TABLE(4b
,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"
146 EX_TABLE(1b
,6b
) EX_TABLE(2b
,0b
) EX_TABLE(4b
,0b
)
147 : "+a" (size
), "+a" (to
), "+a" (from
), "=a" (tmp1
)
152 static size_t clear_user_std(size_t size
, void __user
*to
)
154 unsigned long tmp1
, tmp2
;
161 " xc 0(1,%1),0(%1)\n"
163 " la %2,255(%1)\n" /* %2 = ptr + 255 */
165 " sll %2,12\n" /* %2 = (ptr + 255) & -4096 */
167 " "CLR
" %0,%2\n" /* clear crosses next page boundary? */
174 "2: xc 0(256,%1),0(%1)\n"
182 EX_TABLE(1b
,6b
) EX_TABLE(2b
,0b
) EX_TABLE(4b
,0b
)
183 : "+a" (size
), "+a" (to
), "=a" (tmp1
), "=a" (tmp2
)
188 size_t strnlen_user_std(size_t size
, const char __user
*src
)
190 register unsigned long reg0
asm("0") = 0UL;
191 unsigned long tmp1
, tmp2
;
200 " la %0,1(%3)\n" /* strnlen_user results includes \0 */
204 : "+a" (size
), "+a" (src
), "=a" (tmp1
), "=a" (tmp2
)
205 : "d" (reg0
) : "cc", "memory");
209 size_t strncpy_from_user_std(size_t size
, const char __user
*src
, char *dst
)
211 register unsigned long reg0
asm("0") = 0UL;
212 unsigned long tmp1
, tmp2
;
222 " jh 1f\n" /* found \0 in string ? */
223 " "AHI
" %4,1\n" /* include \0 in copy */
224 "1:"SLR
" %0,%1\n" /* %0 = return length (without \0) */
225 " "SLR
" %4,%1\n" /* %4 = copy length (including \0) */
226 "2: mvcp 0(%4,%2),0(%1),%5\n"
231 "4: mvcp 0(%4,%2),0(%1),%5\n"
237 EX_TABLE(0b
,7b
) EX_TABLE(2b
,8b
) EX_TABLE(4b
,8b
)
238 : "+a" (size
), "+a" (src
), "+d" (dst
), "=a" (tmp1
), "=a" (tmp2
)
239 : "d" (reg0
), "K" (-EFAULT
) : "cc", "memory");
243 #define __futex_atomic_op(insn, ret, oldval, newval, uaddr, oparg) \
248 "2: cs %1,%2,0(%6)\n" \
252 EX_TABLE(0b,4b) EX_TABLE(2b,4b) EX_TABLE(3b,4b) \
253 : "=d" (ret), "=&d" (oldval), "=&d" (newval), \
255 : "0" (-EFAULT), "d" (oparg), "a" (uaddr), \
256 "m" (*uaddr) : "cc");
258 int futex_atomic_op_std(int op
, int __user
*uaddr
, int oparg
, int *old
)
260 int oldval
= 0, newval
, ret
;
264 __futex_atomic_op("lr %2,%5\n",
265 ret
, oldval
, newval
, uaddr
, oparg
);
268 __futex_atomic_op("lr %2,%1\nar %2,%5\n",
269 ret
, oldval
, newval
, uaddr
, oparg
);
272 __futex_atomic_op("lr %2,%1\nor %2,%5\n",
273 ret
, oldval
, newval
, uaddr
, oparg
);
276 __futex_atomic_op("lr %2,%1\nnr %2,%5\n",
277 ret
, oldval
, newval
, uaddr
, oparg
);
280 __futex_atomic_op("lr %2,%1\nxr %2,%5\n",
281 ret
, oldval
, newval
, uaddr
, oparg
);
290 int futex_atomic_cmpxchg_std(int __user
*uaddr
, int oldval
, int newval
)
300 : "=d" (ret
), "+d" (oldval
), "=m" (*uaddr
)
301 : "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
,