]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - arch/arm64/include/asm/futex.h
arm64: futex: Restore oldval initialization to work around buggy compilers
[thirdparty/kernel/linux.git] / arch / arm64 / include / asm / futex.h
CommitLineData
6170a974
CM
1/*
2 * Copyright (C) 2012 ARM Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#ifndef __ASM_FUTEX_H
17#define __ASM_FUTEX_H
18
19#ifdef __KERNEL__
20
21#include <linux/futex.h>
22#include <linux/uaccess.h>
338d4f49 23
6170a974
CM
24#include <asm/errno.h>
25
26#define __futex_atomic_op(insn, ret, oldval, uaddr, tmp, oparg) \
bd38967d
CM
27do { \
28 uaccess_enable(); \
6170a974 29 asm volatile( \
0ea366f5 30" prfm pstl1strm, %2\n" \
8e86f0b4 31"1: ldxr %w1, %2\n" \
6170a974 32 insn "\n" \
045afc24
WD
33"2: stlxr %w0, %w3, %2\n" \
34" cbnz %w0, 1b\n" \
8e86f0b4 35" dmb ish\n" \
6170a974
CM
36"3:\n" \
37" .pushsection .fixup,\"ax\"\n" \
4da7a56c 38" .align 2\n" \
6170a974
CM
39"4: mov %w0, %w5\n" \
40" b 3b\n" \
41" .popsection\n" \
6c94f27a
AB
42 _ASM_EXTABLE(1b, 4b) \
43 _ASM_EXTABLE(2b, 4b) \
6170a974
CM
44 : "=&r" (ret), "=&r" (oldval), "+Q" (*uaddr), "=&r" (tmp) \
45 : "r" (oparg), "Ir" (-EFAULT) \
bd38967d
CM
46 : "memory"); \
47 uaccess_disable(); \
48} while (0)
6170a974
CM
49
50static inline int
91b2d344 51arch_futex_atomic_op_inuser(int op, int oparg, int *oval, u32 __user *_uaddr)
6170a974 52{
ff8acf92 53 int oldval = 0, ret, tmp;
91b2d344 54 u32 __user *uaddr = __uaccess_mask_ptr(_uaddr);
6170a974 55
2f09b227 56 pagefault_disable();
6170a974
CM
57
58 switch (op) {
59 case FUTEX_OP_SET:
045afc24 60 __futex_atomic_op("mov %w3, %w4",
6170a974
CM
61 ret, oldval, uaddr, tmp, oparg);
62 break;
63 case FUTEX_OP_ADD:
045afc24 64 __futex_atomic_op("add %w3, %w1, %w4",
6170a974
CM
65 ret, oldval, uaddr, tmp, oparg);
66 break;
67 case FUTEX_OP_OR:
045afc24 68 __futex_atomic_op("orr %w3, %w1, %w4",
6170a974
CM
69 ret, oldval, uaddr, tmp, oparg);
70 break;
71 case FUTEX_OP_ANDN:
045afc24 72 __futex_atomic_op("and %w3, %w1, %w4",
6170a974
CM
73 ret, oldval, uaddr, tmp, ~oparg);
74 break;
75 case FUTEX_OP_XOR:
045afc24 76 __futex_atomic_op("eor %w3, %w1, %w4",
6170a974
CM
77 ret, oldval, uaddr, tmp, oparg);
78 break;
79 default:
80 ret = -ENOSYS;
81 }
82
2f09b227 83 pagefault_enable();
6170a974 84
30d6e0a4
JS
85 if (!ret)
86 *oval = oldval;
87
6170a974
CM
88 return ret;
89}
90
91static inline int
91b2d344 92futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *_uaddr,
6170a974
CM
93 u32 oldval, u32 newval)
94{
95 int ret = 0;
96 u32 val, tmp;
91b2d344 97 u32 __user *uaddr;
6170a974 98
96d4f267 99 if (!access_ok(_uaddr, sizeof(u32)))
6170a974
CM
100 return -EFAULT;
101
91b2d344 102 uaddr = __uaccess_mask_ptr(_uaddr);
bd38967d 103 uaccess_enable();
6170a974 104 asm volatile("// futex_atomic_cmpxchg_inatomic\n"
0ea366f5 105" prfm pstl1strm, %2\n"
8e86f0b4 106"1: ldxr %w1, %2\n"
6170a974
CM
107" sub %w3, %w1, %w4\n"
108" cbnz %w3, 3f\n"
109"2: stlxr %w3, %w5, %2\n"
110" cbnz %w3, 1b\n"
8e86f0b4 111" dmb ish\n"
6170a974
CM
112"3:\n"
113" .pushsection .fixup,\"ax\"\n"
114"4: mov %w0, %w6\n"
115" b 3b\n"
116" .popsection\n"
6c94f27a
AB
117 _ASM_EXTABLE(1b, 4b)
118 _ASM_EXTABLE(2b, 4b)
6170a974
CM
119 : "+r" (ret), "=&r" (val), "+Q" (*uaddr), "=&r" (tmp)
120 : "r" (oldval), "r" (newval), "Ir" (-EFAULT)
95c41896 121 : "memory");
bd38967d 122 uaccess_disable();
6170a974
CM
123
124 *uval = val;
125 return ret;
126}
127
128#endif /* __KERNEL__ */
129#endif /* __ASM_FUTEX_H */