Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 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> |
James Morse | 338d4f4 | 2015-07-22 19:05:54 +0100 | [diff] [blame] | 23 | |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 24 | #include <asm/errno.h> |
| 25 | |
| 26 | #define __futex_atomic_op(insn, ret, oldval, uaddr, tmp, oparg) \ |
Catalin Marinas | bd38967 | 2016-07-01 14:58:21 +0100 | [diff] [blame] | 27 | do { \ |
| 28 | uaccess_enable(); \ |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 29 | asm volatile( \ |
Will Deacon | 0ea366f | 2015-05-29 13:31:10 +0100 | [diff] [blame] | 30 | " prfm pstl1strm, %2\n" \ |
Will Deacon | 8e86f0b | 2014-02-04 12:29:12 +0000 | [diff] [blame] | 31 | "1: ldxr %w1, %2\n" \ |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 32 | insn "\n" \ |
Will Deacon | 045afc2 | 2019-04-08 12:45:09 +0100 | [diff] [blame] | 33 | "2: stlxr %w0, %w3, %2\n" \ |
| 34 | " cbnz %w0, 1b\n" \ |
Will Deacon | 8e86f0b | 2014-02-04 12:29:12 +0000 | [diff] [blame] | 35 | " dmb ish\n" \ |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 36 | "3:\n" \ |
| 37 | " .pushsection .fixup,\"ax\"\n" \ |
Will Deacon | 4da7a56 | 2013-11-06 19:31:24 +0000 | [diff] [blame] | 38 | " .align 2\n" \ |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 39 | "4: mov %w0, %w5\n" \ |
| 40 | " b 3b\n" \ |
| 41 | " .popsection\n" \ |
Ard Biesheuvel | 6c94f27 | 2016-01-01 15:02:12 +0100 | [diff] [blame] | 42 | _ASM_EXTABLE(1b, 4b) \ |
| 43 | _ASM_EXTABLE(2b, 4b) \ |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 44 | : "=&r" (ret), "=&r" (oldval), "+Q" (*uaddr), "=&r" (tmp) \ |
| 45 | : "r" (oparg), "Ir" (-EFAULT) \ |
Catalin Marinas | bd38967 | 2016-07-01 14:58:21 +0100 | [diff] [blame] | 46 | : "memory"); \ |
| 47 | uaccess_disable(); \ |
| 48 | } while (0) |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 49 | |
| 50 | static inline int |
Will Deacon | 91b2d34 | 2018-02-05 15:34:24 +0000 | [diff] [blame] | 51 | arch_futex_atomic_op_inuser(int op, int oparg, int *oval, u32 __user *_uaddr) |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 52 | { |
Nathan Chancellor | ff8acf9 | 2019-04-17 00:21:21 -0700 | [diff] [blame] | 53 | int oldval = 0, ret, tmp; |
Will Deacon | 91b2d34 | 2018-02-05 15:34:24 +0000 | [diff] [blame] | 54 | u32 __user *uaddr = __uaccess_mask_ptr(_uaddr); |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 55 | |
David Hildenbrand | 2f09b22 | 2015-05-11 17:52:17 +0200 | [diff] [blame] | 56 | pagefault_disable(); |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 57 | |
| 58 | switch (op) { |
| 59 | case FUTEX_OP_SET: |
Will Deacon | 045afc2 | 2019-04-08 12:45:09 +0100 | [diff] [blame] | 60 | __futex_atomic_op("mov %w3, %w4", |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 61 | ret, oldval, uaddr, tmp, oparg); |
| 62 | break; |
| 63 | case FUTEX_OP_ADD: |
Will Deacon | 045afc2 | 2019-04-08 12:45:09 +0100 | [diff] [blame] | 64 | __futex_atomic_op("add %w3, %w1, %w4", |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 65 | ret, oldval, uaddr, tmp, oparg); |
| 66 | break; |
| 67 | case FUTEX_OP_OR: |
Will Deacon | 045afc2 | 2019-04-08 12:45:09 +0100 | [diff] [blame] | 68 | __futex_atomic_op("orr %w3, %w1, %w4", |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 69 | ret, oldval, uaddr, tmp, oparg); |
| 70 | break; |
| 71 | case FUTEX_OP_ANDN: |
Will Deacon | 045afc2 | 2019-04-08 12:45:09 +0100 | [diff] [blame] | 72 | __futex_atomic_op("and %w3, %w1, %w4", |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 73 | ret, oldval, uaddr, tmp, ~oparg); |
| 74 | break; |
| 75 | case FUTEX_OP_XOR: |
Will Deacon | 045afc2 | 2019-04-08 12:45:09 +0100 | [diff] [blame] | 76 | __futex_atomic_op("eor %w3, %w1, %w4", |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 77 | ret, oldval, uaddr, tmp, oparg); |
| 78 | break; |
| 79 | default: |
| 80 | ret = -ENOSYS; |
| 81 | } |
| 82 | |
David Hildenbrand | 2f09b22 | 2015-05-11 17:52:17 +0200 | [diff] [blame] | 83 | pagefault_enable(); |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 84 | |
Jiri Slaby | 30d6e0a | 2017-08-24 09:31:05 +0200 | [diff] [blame] | 85 | if (!ret) |
| 86 | *oval = oldval; |
| 87 | |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 88 | return ret; |
| 89 | } |
| 90 | |
| 91 | static inline int |
Will Deacon | 91b2d34 | 2018-02-05 15:34:24 +0000 | [diff] [blame] | 92 | futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *_uaddr, |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 93 | u32 oldval, u32 newval) |
| 94 | { |
| 95 | int ret = 0; |
| 96 | u32 val, tmp; |
Will Deacon | 91b2d34 | 2018-02-05 15:34:24 +0000 | [diff] [blame] | 97 | u32 __user *uaddr; |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 98 | |
Linus Torvalds | 96d4f26 | 2019-01-03 18:57:57 -0800 | [diff] [blame] | 99 | if (!access_ok(_uaddr, sizeof(u32))) |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 100 | return -EFAULT; |
| 101 | |
Will Deacon | 91b2d34 | 2018-02-05 15:34:24 +0000 | [diff] [blame] | 102 | uaddr = __uaccess_mask_ptr(_uaddr); |
Catalin Marinas | bd38967 | 2016-07-01 14:58:21 +0100 | [diff] [blame] | 103 | uaccess_enable(); |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 104 | asm volatile("// futex_atomic_cmpxchg_inatomic\n" |
Will Deacon | 0ea366f | 2015-05-29 13:31:10 +0100 | [diff] [blame] | 105 | " prfm pstl1strm, %2\n" |
Will Deacon | 8e86f0b | 2014-02-04 12:29:12 +0000 | [diff] [blame] | 106 | "1: ldxr %w1, %2\n" |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 107 | " sub %w3, %w1, %w4\n" |
| 108 | " cbnz %w3, 3f\n" |
| 109 | "2: stlxr %w3, %w5, %2\n" |
| 110 | " cbnz %w3, 1b\n" |
Will Deacon | 8e86f0b | 2014-02-04 12:29:12 +0000 | [diff] [blame] | 111 | " dmb ish\n" |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 112 | "3:\n" |
| 113 | " .pushsection .fixup,\"ax\"\n" |
| 114 | "4: mov %w0, %w6\n" |
| 115 | " b 3b\n" |
| 116 | " .popsection\n" |
Ard Biesheuvel | 6c94f27 | 2016-01-01 15:02:12 +0100 | [diff] [blame] | 117 | _ASM_EXTABLE(1b, 4b) |
| 118 | _ASM_EXTABLE(2b, 4b) |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 119 | : "+r" (ret), "=&r" (val), "+Q" (*uaddr), "=&r" (tmp) |
| 120 | : "r" (oldval), "r" (newval), "Ir" (-EFAULT) |
Will Deacon | 95c4189 | 2014-02-04 12:29:13 +0000 | [diff] [blame] | 121 | : "memory"); |
Catalin Marinas | bd38967 | 2016-07-01 14:58:21 +0100 | [diff] [blame] | 122 | uaccess_disable(); |
Catalin Marinas | 6170a97 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 123 | |
| 124 | *uval = val; |
| 125 | return ret; |
| 126 | } |
| 127 | |
| 128 | #endif /* __KERNEL__ */ |
| 129 | #endif /* __ASM_FUTEX_H */ |