Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 1 | /* |
| 2 | * jump label support |
| 3 | * |
| 4 | * Copyright (C) 2009 Jason Baron <jbaron@redhat.com> |
Peter Zijlstra | 90eec10 | 2015-11-16 11:08:45 +0100 | [diff] [blame] | 5 | * Copyright (C) 2011 Peter Zijlstra |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 6 | * |
| 7 | */ |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 8 | #include <linux/memory.h> |
| 9 | #include <linux/uaccess.h> |
| 10 | #include <linux/module.h> |
| 11 | #include <linux/list.h> |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 12 | #include <linux/slab.h> |
| 13 | #include <linux/sort.h> |
| 14 | #include <linux/err.h> |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 15 | #include <linux/static_key.h> |
Andrew Jones | 851cf6e | 2013-08-09 19:51:57 +0530 | [diff] [blame] | 16 | #include <linux/jump_label_ratelimit.h> |
Jason Baron | 1f69bf9 | 2016-08-03 13:46:36 -0700 | [diff] [blame] | 17 | #include <linux/bug.h> |
Thomas Gleixner | f2545b2d | 2017-05-24 10:15:35 +0200 | [diff] [blame] | 18 | #include <linux/cpu.h> |
Josh Poimboeuf | 578ae44 | 2018-03-19 13:18:57 -0500 | [diff] [blame] | 19 | #include <asm/sections.h> |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 20 | |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 21 | /* mutex to protect coming/going of the the jump_label table */ |
| 22 | static DEFINE_MUTEX(jump_label_mutex); |
| 23 | |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 24 | void jump_label_lock(void) |
| 25 | { |
| 26 | mutex_lock(&jump_label_mutex); |
| 27 | } |
| 28 | |
| 29 | void jump_label_unlock(void) |
| 30 | { |
| 31 | mutex_unlock(&jump_label_mutex); |
| 32 | } |
| 33 | |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 34 | static int jump_label_cmp(const void *a, const void *b) |
| 35 | { |
| 36 | const struct jump_entry *jea = a; |
| 37 | const struct jump_entry *jeb = b; |
| 38 | |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 39 | if (jump_entry_key(jea) < jump_entry_key(jeb)) |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 40 | return -1; |
| 41 | |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 42 | if (jump_entry_key(jea) > jump_entry_key(jeb)) |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 43 | return 1; |
| 44 | |
| 45 | return 0; |
| 46 | } |
| 47 | |
Ard Biesheuvel | 50ff18a | 2018-09-18 23:51:37 -0700 | [diff] [blame] | 48 | static void jump_label_swap(void *a, void *b, int size) |
| 49 | { |
| 50 | long delta = (unsigned long)a - (unsigned long)b; |
| 51 | struct jump_entry *jea = a; |
| 52 | struct jump_entry *jeb = b; |
| 53 | struct jump_entry tmp = *jea; |
| 54 | |
| 55 | jea->code = jeb->code - delta; |
| 56 | jea->target = jeb->target - delta; |
| 57 | jea->key = jeb->key - delta; |
| 58 | |
| 59 | jeb->code = tmp.code + delta; |
| 60 | jeb->target = tmp.target + delta; |
| 61 | jeb->key = tmp.key + delta; |
| 62 | } |
| 63 | |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 64 | static void |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 65 | jump_label_sort_entries(struct jump_entry *start, struct jump_entry *stop) |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 66 | { |
| 67 | unsigned long size; |
Ard Biesheuvel | 50ff18a | 2018-09-18 23:51:37 -0700 | [diff] [blame] | 68 | void *swapfn = NULL; |
| 69 | |
| 70 | if (IS_ENABLED(CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE)) |
| 71 | swapfn = jump_label_swap; |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 72 | |
| 73 | size = (((unsigned long)stop - (unsigned long)start) |
| 74 | / sizeof(struct jump_entry)); |
Ard Biesheuvel | 50ff18a | 2018-09-18 23:51:37 -0700 | [diff] [blame] | 75 | sort(start, size, sizeof(struct jump_entry), jump_label_cmp, swapfn); |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 76 | } |
| 77 | |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 78 | static void jump_label_update(struct static_key *key); |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame] | 79 | |
Jason Baron | 1f69bf9 | 2016-08-03 13:46:36 -0700 | [diff] [blame] | 80 | /* |
Masahiro Yamada | e9666d1 | 2018-12-31 00:14:15 +0900 | [diff] [blame] | 81 | * There are similar definitions for the !CONFIG_JUMP_LABEL case in jump_label.h. |
Jason Baron | 1f69bf9 | 2016-08-03 13:46:36 -0700 | [diff] [blame] | 82 | * The use of 'atomic_read()' requires atomic.h and its problematic for some |
| 83 | * kernel headers such as kernel.h and others. Since static_key_count() is not |
Masahiro Yamada | e9666d1 | 2018-12-31 00:14:15 +0900 | [diff] [blame] | 84 | * used in the branch statements as it is for the !CONFIG_JUMP_LABEL case its ok |
Jason Baron | 1f69bf9 | 2016-08-03 13:46:36 -0700 | [diff] [blame] | 85 | * to have it be a function here. Similarly, for 'static_key_enable()' and |
| 86 | * 'static_key_disable()', which require bug.h. This should allow jump_label.h |
Masahiro Yamada | e9666d1 | 2018-12-31 00:14:15 +0900 | [diff] [blame] | 87 | * to be included from most/all places for CONFIG_JUMP_LABEL. |
Jason Baron | 1f69bf9 | 2016-08-03 13:46:36 -0700 | [diff] [blame] | 88 | */ |
| 89 | int static_key_count(struct static_key *key) |
| 90 | { |
| 91 | /* |
| 92 | * -1 means the first static_key_slow_inc() is in progress. |
| 93 | * static_key_enabled() must return true, so return 1 here. |
| 94 | */ |
| 95 | int n = atomic_read(&key->enabled); |
| 96 | |
| 97 | return n >= 0 ? n : 1; |
| 98 | } |
| 99 | EXPORT_SYMBOL_GPL(static_key_count); |
| 100 | |
Peter Zijlstra | ce48c146 | 2018-01-22 22:53:28 +0100 | [diff] [blame] | 101 | void static_key_slow_inc_cpuslocked(struct static_key *key) |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 102 | { |
Paolo Bonzini | 4c5ea0a | 2016-06-21 18:52:17 +0200 | [diff] [blame] | 103 | int v, v1; |
| 104 | |
Borislav Petkov | 5cdda51 | 2017-10-18 17:24:28 +0200 | [diff] [blame] | 105 | STATIC_KEY_CHECK_USE(key); |
Peter Zijlstra | cb53826 | 2018-07-31 14:35:32 +0200 | [diff] [blame] | 106 | lockdep_assert_cpus_held(); |
Paolo Bonzini | 4c5ea0a | 2016-06-21 18:52:17 +0200 | [diff] [blame] | 107 | |
| 108 | /* |
| 109 | * Careful if we get concurrent static_key_slow_inc() calls; |
| 110 | * later calls must wait for the first one to _finish_ the |
| 111 | * jump_label_update() process. At the same time, however, |
| 112 | * the jump_label_update() call below wants to see |
| 113 | * static_key_enabled(&key) for jumps to be updated properly. |
| 114 | * |
| 115 | * So give a special meaning to negative key->enabled: it sends |
| 116 | * static_key_slow_inc() down the slow path, and it is non-zero |
| 117 | * so it counts as "enabled" in jump_label_update(). Note that |
| 118 | * atomic_inc_unless_negative() checks >= 0, so roll our own. |
| 119 | */ |
| 120 | for (v = atomic_read(&key->enabled); v > 0; v = v1) { |
| 121 | v1 = atomic_cmpxchg(&key->enabled, v, v + 1); |
Marc Zyngier | 8b7b412 | 2017-08-01 09:02:55 +0100 | [diff] [blame] | 122 | if (likely(v1 == v)) |
Paolo Bonzini | 4c5ea0a | 2016-06-21 18:52:17 +0200 | [diff] [blame] | 123 | return; |
| 124 | } |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 125 | |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 126 | jump_label_lock(); |
Paolo Bonzini | 4c5ea0a | 2016-06-21 18:52:17 +0200 | [diff] [blame] | 127 | if (atomic_read(&key->enabled) == 0) { |
| 128 | atomic_set(&key->enabled, -1); |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 129 | jump_label_update(key); |
Peter Zijlstra | d0646a6 | 2017-08-01 23:58:50 +0200 | [diff] [blame] | 130 | /* |
| 131 | * Ensure that if the above cmpxchg loop observes our positive |
| 132 | * value, it must also observe all the text changes. |
| 133 | */ |
| 134 | atomic_set_release(&key->enabled, 1); |
Paolo Bonzini | 4c5ea0a | 2016-06-21 18:52:17 +0200 | [diff] [blame] | 135 | } else { |
| 136 | atomic_inc(&key->enabled); |
| 137 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 138 | jump_label_unlock(); |
Marc Zyngier | 8b7b412 | 2017-08-01 09:02:55 +0100 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | void static_key_slow_inc(struct static_key *key) |
| 142 | { |
| 143 | cpus_read_lock(); |
| 144 | static_key_slow_inc_cpuslocked(key); |
Thomas Gleixner | f2545b2d | 2017-05-24 10:15:35 +0200 | [diff] [blame] | 145 | cpus_read_unlock(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 146 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 147 | EXPORT_SYMBOL_GPL(static_key_slow_inc); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 148 | |
Marc Zyngier | 5a40527 | 2017-08-01 09:02:56 +0100 | [diff] [blame] | 149 | void static_key_enable_cpuslocked(struct static_key *key) |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 150 | { |
Borislav Petkov | 5cdda51 | 2017-10-18 17:24:28 +0200 | [diff] [blame] | 151 | STATIC_KEY_CHECK_USE(key); |
Peter Zijlstra | cb53826 | 2018-07-31 14:35:32 +0200 | [diff] [blame] | 152 | lockdep_assert_cpus_held(); |
Marc Zyngier | 5a40527 | 2017-08-01 09:02:56 +0100 | [diff] [blame] | 153 | |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 154 | if (atomic_read(&key->enabled) > 0) { |
| 155 | WARN_ON_ONCE(atomic_read(&key->enabled) != 1); |
| 156 | return; |
| 157 | } |
| 158 | |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 159 | jump_label_lock(); |
| 160 | if (atomic_read(&key->enabled) == 0) { |
| 161 | atomic_set(&key->enabled, -1); |
| 162 | jump_label_update(key); |
Peter Zijlstra | d0646a6 | 2017-08-01 23:58:50 +0200 | [diff] [blame] | 163 | /* |
| 164 | * See static_key_slow_inc(). |
| 165 | */ |
| 166 | atomic_set_release(&key->enabled, 1); |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 167 | } |
| 168 | jump_label_unlock(); |
Marc Zyngier | 5a40527 | 2017-08-01 09:02:56 +0100 | [diff] [blame] | 169 | } |
| 170 | EXPORT_SYMBOL_GPL(static_key_enable_cpuslocked); |
| 171 | |
| 172 | void static_key_enable(struct static_key *key) |
| 173 | { |
| 174 | cpus_read_lock(); |
| 175 | static_key_enable_cpuslocked(key); |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 176 | cpus_read_unlock(); |
| 177 | } |
| 178 | EXPORT_SYMBOL_GPL(static_key_enable); |
| 179 | |
Marc Zyngier | 5a40527 | 2017-08-01 09:02:56 +0100 | [diff] [blame] | 180 | void static_key_disable_cpuslocked(struct static_key *key) |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 181 | { |
Borislav Petkov | 5cdda51 | 2017-10-18 17:24:28 +0200 | [diff] [blame] | 182 | STATIC_KEY_CHECK_USE(key); |
Peter Zijlstra | cb53826 | 2018-07-31 14:35:32 +0200 | [diff] [blame] | 183 | lockdep_assert_cpus_held(); |
Marc Zyngier | 5a40527 | 2017-08-01 09:02:56 +0100 | [diff] [blame] | 184 | |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 185 | if (atomic_read(&key->enabled) != 1) { |
| 186 | WARN_ON_ONCE(atomic_read(&key->enabled) != 0); |
| 187 | return; |
| 188 | } |
| 189 | |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 190 | jump_label_lock(); |
| 191 | if (atomic_cmpxchg(&key->enabled, 1, 0)) |
| 192 | jump_label_update(key); |
| 193 | jump_label_unlock(); |
Marc Zyngier | 5a40527 | 2017-08-01 09:02:56 +0100 | [diff] [blame] | 194 | } |
| 195 | EXPORT_SYMBOL_GPL(static_key_disable_cpuslocked); |
| 196 | |
| 197 | void static_key_disable(struct static_key *key) |
| 198 | { |
| 199 | cpus_read_lock(); |
| 200 | static_key_disable_cpuslocked(key); |
Paolo Bonzini | 1dbb670 | 2017-08-01 17:24:04 +0200 | [diff] [blame] | 201 | cpus_read_unlock(); |
| 202 | } |
| 203 | EXPORT_SYMBOL_GPL(static_key_disable); |
| 204 | |
Jakub Kicinski | b92e793 | 2019-03-29 17:08:53 -0700 | [diff] [blame^] | 205 | static bool static_key_slow_try_dec(struct static_key *key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 206 | { |
Peter Zijlstra | a1247d0 | 2019-03-19 13:18:56 +0100 | [diff] [blame] | 207 | int val; |
| 208 | |
Jakub Kicinski | b92e793 | 2019-03-29 17:08:53 -0700 | [diff] [blame^] | 209 | val = atomic_fetch_add_unless(&key->enabled, -1, 1); |
| 210 | if (val == 1) |
| 211 | return false; |
Peter Zijlstra | cb53826 | 2018-07-31 14:35:32 +0200 | [diff] [blame] | 212 | |
Paolo Bonzini | 4c5ea0a | 2016-06-21 18:52:17 +0200 | [diff] [blame] | 213 | /* |
| 214 | * The negative count check is valid even when a negative |
| 215 | * key->enabled is in use by static_key_slow_inc(); a |
| 216 | * __static_key_slow_dec() before the first static_key_slow_inc() |
| 217 | * returns is unbalanced, because all other static_key_slow_inc() |
| 218 | * instances block while the update is in progress. |
| 219 | */ |
Jakub Kicinski | b92e793 | 2019-03-29 17:08:53 -0700 | [diff] [blame^] | 220 | WARN(val < 0, "jump label: negative count!\n"); |
| 221 | return true; |
| 222 | } |
| 223 | |
| 224 | static void __static_key_slow_dec_cpuslocked(struct static_key *key, |
| 225 | unsigned long rate_limit, |
| 226 | struct delayed_work *work) |
| 227 | { |
| 228 | lockdep_assert_cpus_held(); |
| 229 | |
| 230 | if (static_key_slow_try_dec(key)) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 231 | return; |
| 232 | |
Peter Zijlstra | a1247d0 | 2019-03-19 13:18:56 +0100 | [diff] [blame] | 233 | jump_label_lock(); |
| 234 | if (atomic_dec_and_test(&key->enabled)) { |
| 235 | if (rate_limit) { |
| 236 | atomic_inc(&key->enabled); |
| 237 | schedule_delayed_work(work, rate_limit); |
| 238 | } else { |
| 239 | jump_label_update(key); |
| 240 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 241 | } |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 242 | jump_label_unlock(); |
Marc Zyngier | 8b7b412 | 2017-08-01 09:02:55 +0100 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | static void __static_key_slow_dec(struct static_key *key, |
| 246 | unsigned long rate_limit, |
| 247 | struct delayed_work *work) |
| 248 | { |
| 249 | cpus_read_lock(); |
Peter Zijlstra | ce48c146 | 2018-01-22 22:53:28 +0100 | [diff] [blame] | 250 | __static_key_slow_dec_cpuslocked(key, rate_limit, work); |
Thomas Gleixner | f2545b2d | 2017-05-24 10:15:35 +0200 | [diff] [blame] | 251 | cpus_read_unlock(); |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 252 | } |
| 253 | |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 254 | void jump_label_update_timeout(struct work_struct *work) |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 255 | { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 256 | struct static_key_deferred *key = |
| 257 | container_of(work, struct static_key_deferred, work.work); |
| 258 | __static_key_slow_dec(&key->key, 0, NULL); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 259 | } |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 260 | EXPORT_SYMBOL_GPL(jump_label_update_timeout); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 261 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 262 | void static_key_slow_dec(struct static_key *key) |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 263 | { |
Borislav Petkov | 5cdda51 | 2017-10-18 17:24:28 +0200 | [diff] [blame] | 264 | STATIC_KEY_CHECK_USE(key); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 265 | __static_key_slow_dec(key, 0, NULL); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 266 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 267 | EXPORT_SYMBOL_GPL(static_key_slow_dec); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 268 | |
Peter Zijlstra | ce48c146 | 2018-01-22 22:53:28 +0100 | [diff] [blame] | 269 | void static_key_slow_dec_cpuslocked(struct static_key *key) |
| 270 | { |
| 271 | STATIC_KEY_CHECK_USE(key); |
| 272 | __static_key_slow_dec_cpuslocked(key, 0, NULL); |
| 273 | } |
| 274 | |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 275 | void __static_key_slow_dec_deferred(struct static_key *key, |
| 276 | struct delayed_work *work, |
| 277 | unsigned long timeout) |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 278 | { |
Borislav Petkov | 5cdda51 | 2017-10-18 17:24:28 +0200 | [diff] [blame] | 279 | STATIC_KEY_CHECK_USE(key); |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 280 | __static_key_slow_dec(key, timeout, work); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 281 | } |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 282 | EXPORT_SYMBOL_GPL(__static_key_slow_dec_deferred); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 283 | |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 284 | void __static_key_deferred_flush(void *key, struct delayed_work *work) |
David Matlack | b6416e6 | 2016-12-16 14:30:35 -0800 | [diff] [blame] | 285 | { |
Borislav Petkov | 5cdda51 | 2017-10-18 17:24:28 +0200 | [diff] [blame] | 286 | STATIC_KEY_CHECK_USE(key); |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 287 | flush_delayed_work(work); |
David Matlack | b6416e6 | 2016-12-16 14:30:35 -0800 | [diff] [blame] | 288 | } |
Jakub Kicinski | ad282a8 | 2019-03-29 17:08:52 -0700 | [diff] [blame] | 289 | EXPORT_SYMBOL_GPL(__static_key_deferred_flush); |
David Matlack | b6416e6 | 2016-12-16 14:30:35 -0800 | [diff] [blame] | 290 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 291 | void jump_label_rate_limit(struct static_key_deferred *key, |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 292 | unsigned long rl) |
| 293 | { |
Borislav Petkov | 5cdda51 | 2017-10-18 17:24:28 +0200 | [diff] [blame] | 294 | STATIC_KEY_CHECK_USE(key); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 295 | key->timeout = rl; |
| 296 | INIT_DELAYED_WORK(&key->work, jump_label_update_timeout); |
| 297 | } |
Gleb Natapov | a181dc1 | 2012-08-05 15:58:29 +0300 | [diff] [blame] | 298 | EXPORT_SYMBOL_GPL(jump_label_rate_limit); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 299 | |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 300 | static int addr_conflict(struct jump_entry *entry, void *start, void *end) |
| 301 | { |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 302 | if (jump_entry_code(entry) <= (unsigned long)end && |
| 303 | jump_entry_code(entry) + JUMP_LABEL_NOP_SIZE > (unsigned long)start) |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 304 | return 1; |
| 305 | |
| 306 | return 0; |
| 307 | } |
| 308 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 309 | static int __jump_label_text_reserved(struct jump_entry *iter_start, |
| 310 | struct jump_entry *iter_stop, void *start, void *end) |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 311 | { |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 312 | struct jump_entry *iter; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 313 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 314 | iter = iter_start; |
| 315 | while (iter < iter_stop) { |
| 316 | if (addr_conflict(iter, start, end)) |
| 317 | return 1; |
| 318 | iter++; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 319 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 320 | |
| 321 | return 0; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 322 | } |
| 323 | |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 324 | /* |
Jeremy Fitzhardinge | 20284aa | 2011-10-03 11:01:46 -0700 | [diff] [blame] | 325 | * Update code which is definitely not currently executing. |
| 326 | * Architectures which need heavyweight synchronization to modify |
| 327 | * running code can override this to make the non-live update case |
| 328 | * cheaper. |
| 329 | */ |
Peter Zijlstra | 9cdbe1c | 2011-12-06 17:27:29 +0100 | [diff] [blame] | 330 | void __weak __init_or_module arch_jump_label_transform_static(struct jump_entry *entry, |
Jeremy Fitzhardinge | 20284aa | 2011-10-03 11:01:46 -0700 | [diff] [blame] | 331 | enum jump_label_type type) |
| 332 | { |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 333 | arch_jump_label_transform(entry, type); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 334 | } |
| 335 | |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame] | 336 | static inline struct jump_entry *static_key_entries(struct static_key *key) |
| 337 | { |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 338 | WARN_ON_ONCE(key->type & JUMP_TYPE_LINKED); |
| 339 | return (struct jump_entry *)(key->type & ~JUMP_TYPE_MASK); |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame] | 340 | } |
| 341 | |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 342 | static inline bool static_key_type(struct static_key *key) |
| 343 | { |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 344 | return key->type & JUMP_TYPE_TRUE; |
| 345 | } |
| 346 | |
| 347 | static inline bool static_key_linked(struct static_key *key) |
| 348 | { |
| 349 | return key->type & JUMP_TYPE_LINKED; |
| 350 | } |
| 351 | |
| 352 | static inline void static_key_clear_linked(struct static_key *key) |
| 353 | { |
| 354 | key->type &= ~JUMP_TYPE_LINKED; |
| 355 | } |
| 356 | |
| 357 | static inline void static_key_set_linked(struct static_key *key) |
| 358 | { |
| 359 | key->type |= JUMP_TYPE_LINKED; |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 360 | } |
| 361 | |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 362 | /*** |
| 363 | * A 'struct static_key' uses a union such that it either points directly |
| 364 | * to a table of 'struct jump_entry' or to a linked list of modules which in |
| 365 | * turn point to 'struct jump_entry' tables. |
| 366 | * |
| 367 | * The two lower bits of the pointer are used to keep track of which pointer |
| 368 | * type is in use and to store the initial branch direction, we use an access |
| 369 | * function which preserves these bits. |
| 370 | */ |
| 371 | static void static_key_set_entries(struct static_key *key, |
| 372 | struct jump_entry *entries) |
| 373 | { |
| 374 | unsigned long type; |
| 375 | |
| 376 | WARN_ON_ONCE((unsigned long)entries & JUMP_TYPE_MASK); |
| 377 | type = key->type & JUMP_TYPE_MASK; |
| 378 | key->entries = entries; |
| 379 | key->type |= type; |
| 380 | } |
| 381 | |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 382 | static enum jump_label_type jump_label_type(struct jump_entry *entry) |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 383 | { |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 384 | struct static_key *key = jump_entry_key(entry); |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame] | 385 | bool enabled = static_key_enabled(key); |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 386 | bool branch = jump_entry_is_branch(entry); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 387 | |
Peter Zijlstra | 11276d5 | 2015-07-24 15:09:55 +0200 | [diff] [blame] | 388 | /* See the comment in linux/jump_label.h */ |
| 389 | return enabled ^ branch; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 390 | } |
| 391 | |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 392 | static void __jump_label_update(struct static_key *key, |
| 393 | struct jump_entry *entry, |
Ard Biesheuvel | 1948367 | 2018-09-18 23:51:42 -0700 | [diff] [blame] | 394 | struct jump_entry *stop, |
| 395 | bool init) |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 396 | { |
| 397 | for (; (entry < stop) && (jump_entry_key(entry) == key); entry++) { |
| 398 | /* |
Josh Poimboeuf | dc1dd18 | 2018-02-20 11:37:52 -0600 | [diff] [blame] | 399 | * An entry->code of 0 indicates an entry which has been |
| 400 | * disabled because it was in an init text area. |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 401 | */ |
Ard Biesheuvel | 1948367 | 2018-09-18 23:51:42 -0700 | [diff] [blame] | 402 | if (init || !jump_entry_is_init(entry)) { |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 403 | if (kernel_text_address(jump_entry_code(entry))) |
Josh Poimboeuf | dc1dd18 | 2018-02-20 11:37:52 -0600 | [diff] [blame] | 404 | arch_jump_label_transform(entry, jump_label_type(entry)); |
| 405 | else |
Josh Poimboeuf | af1d830 | 2018-03-14 10:24:20 -0500 | [diff] [blame] | 406 | WARN_ONCE(1, "can't patch jump_label at %pS", |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 407 | (void *)jump_entry_code(entry)); |
Josh Poimboeuf | dc1dd18 | 2018-02-20 11:37:52 -0600 | [diff] [blame] | 408 | } |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 409 | } |
| 410 | } |
| 411 | |
Jeremy Fitzhardinge | 97ce2c8 | 2011-10-12 16:17:54 -0700 | [diff] [blame] | 412 | void __init jump_label_init(void) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 413 | { |
| 414 | struct jump_entry *iter_start = __start___jump_table; |
| 415 | struct jump_entry *iter_stop = __stop___jump_table; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 416 | struct static_key *key = NULL; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 417 | struct jump_entry *iter; |
| 418 | |
Jason Baron | 1f69bf9 | 2016-08-03 13:46:36 -0700 | [diff] [blame] | 419 | /* |
| 420 | * Since we are initializing the static_key.enabled field with |
| 421 | * with the 'raw' int values (to avoid pulling in atomic.h) in |
| 422 | * jump_label.h, let's make sure that is safe. There are only two |
| 423 | * cases to check since we initialize to 0 or 1. |
| 424 | */ |
| 425 | BUILD_BUG_ON((int)ATOMIC_INIT(0) != 0); |
| 426 | BUILD_BUG_ON((int)ATOMIC_INIT(1) != 1); |
| 427 | |
Kevin Hao | e3f9108 | 2016-07-23 14:42:37 +0530 | [diff] [blame] | 428 | if (static_key_initialized) |
| 429 | return; |
| 430 | |
Thomas Gleixner | f2545b2d | 2017-05-24 10:15:35 +0200 | [diff] [blame] | 431 | cpus_read_lock(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 432 | jump_label_lock(); |
| 433 | jump_label_sort_entries(iter_start, iter_stop); |
| 434 | |
| 435 | for (iter = iter_start; iter < iter_stop; iter++) { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 436 | struct static_key *iterk; |
Jeremy Fitzhardinge | 3734880 | 2011-09-29 11:10:05 -0700 | [diff] [blame] | 437 | |
Peter Zijlstra | 11276d5 | 2015-07-24 15:09:55 +0200 | [diff] [blame] | 438 | /* rewrite NOPs */ |
| 439 | if (jump_label_type(iter) == JUMP_LABEL_NOP) |
| 440 | arch_jump_label_transform_static(iter, JUMP_LABEL_NOP); |
| 441 | |
Ard Biesheuvel | 1948367 | 2018-09-18 23:51:42 -0700 | [diff] [blame] | 442 | if (init_section_contains((void *)jump_entry_code(iter), 1)) |
| 443 | jump_entry_set_init(iter); |
| 444 | |
Peter Zijlstra | 7dcfd91 | 2015-07-24 15:02:27 +0200 | [diff] [blame] | 445 | iterk = jump_entry_key(iter); |
Jeremy Fitzhardinge | 3734880 | 2011-09-29 11:10:05 -0700 | [diff] [blame] | 446 | if (iterk == key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 447 | continue; |
| 448 | |
Jeremy Fitzhardinge | 3734880 | 2011-09-29 11:10:05 -0700 | [diff] [blame] | 449 | key = iterk; |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 450 | static_key_set_entries(key, iter); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 451 | } |
Hannes Frederic Sowa | c4b2c0c | 2013-10-19 21:48:53 +0200 | [diff] [blame] | 452 | static_key_initialized = true; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 453 | jump_label_unlock(); |
Thomas Gleixner | f2545b2d | 2017-05-24 10:15:35 +0200 | [diff] [blame] | 454 | cpus_read_unlock(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 455 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 456 | |
| 457 | #ifdef CONFIG_MODULES |
| 458 | |
Peter Zijlstra | 11276d5 | 2015-07-24 15:09:55 +0200 | [diff] [blame] | 459 | static enum jump_label_type jump_label_init_type(struct jump_entry *entry) |
| 460 | { |
| 461 | struct static_key *key = jump_entry_key(entry); |
| 462 | bool type = static_key_type(key); |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 463 | bool branch = jump_entry_is_branch(entry); |
Peter Zijlstra | 11276d5 | 2015-07-24 15:09:55 +0200 | [diff] [blame] | 464 | |
| 465 | /* See the comment in linux/jump_label.h */ |
| 466 | return type ^ branch; |
| 467 | } |
| 468 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 469 | struct static_key_mod { |
| 470 | struct static_key_mod *next; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 471 | struct jump_entry *entries; |
| 472 | struct module *mod; |
| 473 | }; |
| 474 | |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 475 | static inline struct static_key_mod *static_key_mod(struct static_key *key) |
| 476 | { |
Borislav Petkov | 34e12b8 | 2018-09-09 13:42:52 +0200 | [diff] [blame] | 477 | WARN_ON_ONCE(!static_key_linked(key)); |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 478 | return (struct static_key_mod *)(key->type & ~JUMP_TYPE_MASK); |
| 479 | } |
| 480 | |
| 481 | /*** |
| 482 | * key->type and key->next are the same via union. |
| 483 | * This sets key->next and preserves the type bits. |
| 484 | * |
| 485 | * See additional comments above static_key_set_entries(). |
| 486 | */ |
| 487 | static void static_key_set_mod(struct static_key *key, |
| 488 | struct static_key_mod *mod) |
| 489 | { |
| 490 | unsigned long type; |
| 491 | |
| 492 | WARN_ON_ONCE((unsigned long)mod & JUMP_TYPE_MASK); |
| 493 | type = key->type & JUMP_TYPE_MASK; |
| 494 | key->next = mod; |
| 495 | key->type |= type; |
| 496 | } |
| 497 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 498 | static int __jump_label_mod_text_reserved(void *start, void *end) |
| 499 | { |
| 500 | struct module *mod; |
| 501 | |
Rusty Russell | bdc9f37 | 2016-07-27 12:17:35 +0930 | [diff] [blame] | 502 | preempt_disable(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 503 | mod = __module_text_address((unsigned long)start); |
Rusty Russell | bdc9f37 | 2016-07-27 12:17:35 +0930 | [diff] [blame] | 504 | WARN_ON_ONCE(__module_text_address((unsigned long)end) != mod); |
| 505 | preempt_enable(); |
| 506 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 507 | if (!mod) |
| 508 | return 0; |
| 509 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 510 | |
| 511 | return __jump_label_text_reserved(mod->jump_entries, |
| 512 | mod->jump_entries + mod->num_jump_entries, |
| 513 | start, end); |
| 514 | } |
| 515 | |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 516 | static void __jump_label_mod_update(struct static_key *key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 517 | { |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 518 | struct static_key_mod *mod; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 519 | |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 520 | for (mod = static_key_mod(key); mod; mod = mod->next) { |
| 521 | struct jump_entry *stop; |
| 522 | struct module *m; |
Jiri Olsa | 7cbc5b8 | 2011-05-10 12:43:46 +0200 | [diff] [blame] | 523 | |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 524 | /* |
| 525 | * NULL if the static_key is defined in a module |
| 526 | * that does not use it |
| 527 | */ |
| 528 | if (!mod->entries) |
| 529 | continue; |
| 530 | |
| 531 | m = mod->mod; |
| 532 | if (!m) |
| 533 | stop = __stop___jump_table; |
| 534 | else |
| 535 | stop = m->jump_entries + m->num_jump_entries; |
Ard Biesheuvel | 1948367 | 2018-09-18 23:51:42 -0700 | [diff] [blame] | 536 | __jump_label_update(key, mod->entries, stop, |
Ard Biesheuvel | 77ac1c0 | 2018-10-01 10:13:24 +0200 | [diff] [blame] | 537 | m && m->state == MODULE_STATE_COMING); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 538 | } |
| 539 | } |
| 540 | |
| 541 | /*** |
| 542 | * apply_jump_label_nops - patch module jump labels with arch_get_jump_label_nop() |
| 543 | * @mod: module to patch |
| 544 | * |
| 545 | * Allow for run-time selection of the optimal nops. Before the module |
| 546 | * loads patch these with arch_get_jump_label_nop(), which is specified by |
| 547 | * the arch specific jump label code. |
| 548 | */ |
| 549 | void jump_label_apply_nops(struct module *mod) |
| 550 | { |
| 551 | struct jump_entry *iter_start = mod->jump_entries; |
| 552 | struct jump_entry *iter_stop = iter_start + mod->num_jump_entries; |
| 553 | struct jump_entry *iter; |
| 554 | |
| 555 | /* if the module doesn't have jump label entries, just return */ |
| 556 | if (iter_start == iter_stop) |
| 557 | return; |
| 558 | |
Peter Zijlstra | 11276d5 | 2015-07-24 15:09:55 +0200 | [diff] [blame] | 559 | for (iter = iter_start; iter < iter_stop; iter++) { |
| 560 | /* Only write NOPs for arch_branch_static(). */ |
| 561 | if (jump_label_init_type(iter) == JUMP_LABEL_NOP) |
| 562 | arch_jump_label_transform_static(iter, JUMP_LABEL_NOP); |
| 563 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | static int jump_label_add_module(struct module *mod) |
| 567 | { |
| 568 | struct jump_entry *iter_start = mod->jump_entries; |
| 569 | struct jump_entry *iter_stop = iter_start + mod->num_jump_entries; |
| 570 | struct jump_entry *iter; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 571 | struct static_key *key = NULL; |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 572 | struct static_key_mod *jlm, *jlm2; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 573 | |
| 574 | /* if the module doesn't have jump label entries, just return */ |
| 575 | if (iter_start == iter_stop) |
| 576 | return 0; |
| 577 | |
| 578 | jump_label_sort_entries(iter_start, iter_stop); |
| 579 | |
| 580 | for (iter = iter_start; iter < iter_stop; iter++) { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 581 | struct static_key *iterk; |
| 582 | |
Ard Biesheuvel | 1948367 | 2018-09-18 23:51:42 -0700 | [diff] [blame] | 583 | if (within_module_init(jump_entry_code(iter), mod)) |
| 584 | jump_entry_set_init(iter); |
| 585 | |
Peter Zijlstra | 7dcfd91 | 2015-07-24 15:02:27 +0200 | [diff] [blame] | 586 | iterk = jump_entry_key(iter); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 587 | if (iterk == key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 588 | continue; |
| 589 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 590 | key = iterk; |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 591 | if (within_module((unsigned long)key, mod)) { |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 592 | static_key_set_entries(key, iter); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 593 | continue; |
| 594 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 595 | jlm = kzalloc(sizeof(struct static_key_mod), GFP_KERNEL); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 596 | if (!jlm) |
| 597 | return -ENOMEM; |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 598 | if (!static_key_linked(key)) { |
| 599 | jlm2 = kzalloc(sizeof(struct static_key_mod), |
| 600 | GFP_KERNEL); |
| 601 | if (!jlm2) { |
| 602 | kfree(jlm); |
| 603 | return -ENOMEM; |
| 604 | } |
| 605 | preempt_disable(); |
| 606 | jlm2->mod = __module_address((unsigned long)key); |
| 607 | preempt_enable(); |
| 608 | jlm2->entries = static_key_entries(key); |
| 609 | jlm2->next = NULL; |
| 610 | static_key_set_mod(key, jlm2); |
| 611 | static_key_set_linked(key); |
| 612 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 613 | jlm->mod = mod; |
| 614 | jlm->entries = iter; |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 615 | jlm->next = static_key_mod(key); |
| 616 | static_key_set_mod(key, jlm); |
| 617 | static_key_set_linked(key); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 618 | |
Peter Zijlstra | 11276d5 | 2015-07-24 15:09:55 +0200 | [diff] [blame] | 619 | /* Only update if we've changed from our initial state */ |
| 620 | if (jump_label_type(iter) != jump_label_init_type(iter)) |
Ard Biesheuvel | 1948367 | 2018-09-18 23:51:42 -0700 | [diff] [blame] | 621 | __jump_label_update(key, iter, iter_stop, true); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 622 | } |
| 623 | |
| 624 | return 0; |
| 625 | } |
| 626 | |
| 627 | static void jump_label_del_module(struct module *mod) |
| 628 | { |
| 629 | struct jump_entry *iter_start = mod->jump_entries; |
| 630 | struct jump_entry *iter_stop = iter_start + mod->num_jump_entries; |
| 631 | struct jump_entry *iter; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 632 | struct static_key *key = NULL; |
| 633 | struct static_key_mod *jlm, **prev; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 634 | |
| 635 | for (iter = iter_start; iter < iter_stop; iter++) { |
Peter Zijlstra | 7dcfd91 | 2015-07-24 15:02:27 +0200 | [diff] [blame] | 636 | if (jump_entry_key(iter) == key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 637 | continue; |
| 638 | |
Peter Zijlstra | 7dcfd91 | 2015-07-24 15:02:27 +0200 | [diff] [blame] | 639 | key = jump_entry_key(iter); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 640 | |
Ard Biesheuvel | 9ae033a | 2018-09-18 23:51:36 -0700 | [diff] [blame] | 641 | if (within_module((unsigned long)key, mod)) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 642 | continue; |
| 643 | |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 644 | /* No memory during module load */ |
| 645 | if (WARN_ON(!static_key_linked(key))) |
| 646 | continue; |
| 647 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 648 | prev = &key->next; |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 649 | jlm = static_key_mod(key); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 650 | |
| 651 | while (jlm && jlm->mod != mod) { |
| 652 | prev = &jlm->next; |
| 653 | jlm = jlm->next; |
| 654 | } |
| 655 | |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 656 | /* No memory during module load */ |
| 657 | if (WARN_ON(!jlm)) |
| 658 | continue; |
| 659 | |
| 660 | if (prev == &key->next) |
| 661 | static_key_set_mod(key, jlm->next); |
| 662 | else |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 663 | *prev = jlm->next; |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 664 | |
| 665 | kfree(jlm); |
| 666 | |
| 667 | jlm = static_key_mod(key); |
| 668 | /* if only one etry is left, fold it back into the static_key */ |
| 669 | if (jlm->next == NULL) { |
| 670 | static_key_set_entries(key, jlm->entries); |
| 671 | static_key_clear_linked(key); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 672 | kfree(jlm); |
| 673 | } |
| 674 | } |
| 675 | } |
| 676 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 677 | static int |
| 678 | jump_label_module_notify(struct notifier_block *self, unsigned long val, |
| 679 | void *data) |
| 680 | { |
| 681 | struct module *mod = data; |
| 682 | int ret = 0; |
| 683 | |
Thomas Gleixner | f2545b2d | 2017-05-24 10:15:35 +0200 | [diff] [blame] | 684 | cpus_read_lock(); |
| 685 | jump_label_lock(); |
| 686 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 687 | switch (val) { |
| 688 | case MODULE_STATE_COMING: |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 689 | ret = jump_label_add_module(mod); |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 690 | if (ret) { |
Borislav Petkov | da260fe | 2018-09-07 12:35:21 +0200 | [diff] [blame] | 691 | WARN(1, "Failed to allocate memory: jump_label may not work properly.\n"); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 692 | jump_label_del_module(mod); |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 693 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 694 | break; |
| 695 | case MODULE_STATE_GOING: |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 696 | jump_label_del_module(mod); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 697 | break; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 698 | } |
| 699 | |
Thomas Gleixner | f2545b2d | 2017-05-24 10:15:35 +0200 | [diff] [blame] | 700 | jump_label_unlock(); |
| 701 | cpus_read_unlock(); |
| 702 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 703 | return notifier_from_errno(ret); |
| 704 | } |
| 705 | |
Wei Yongjun | 885885f | 2016-06-17 17:19:40 +0000 | [diff] [blame] | 706 | static struct notifier_block jump_label_module_nb = { |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 707 | .notifier_call = jump_label_module_notify, |
| 708 | .priority = 1, /* higher than tracepoints */ |
| 709 | }; |
| 710 | |
| 711 | static __init int jump_label_init_module(void) |
| 712 | { |
| 713 | return register_module_notifier(&jump_label_module_nb); |
| 714 | } |
| 715 | early_initcall(jump_label_init_module); |
| 716 | |
| 717 | #endif /* CONFIG_MODULES */ |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 718 | |
| 719 | /*** |
| 720 | * jump_label_text_reserved - check if addr range is reserved |
| 721 | * @start: start text addr |
| 722 | * @end: end text addr |
| 723 | * |
| 724 | * checks if the text addr located between @start and @end |
| 725 | * overlaps with any of the jump label patch addresses. Code |
| 726 | * that wants to modify kernel text should first verify that |
| 727 | * it does not overlap with any of the jump label addresses. |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 728 | * Caller must hold jump_label_mutex. |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 729 | * |
| 730 | * returns 1 if there is an overlap, 0 otherwise |
| 731 | */ |
| 732 | int jump_label_text_reserved(void *start, void *end) |
| 733 | { |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 734 | int ret = __jump_label_text_reserved(__start___jump_table, |
| 735 | __stop___jump_table, start, end); |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 736 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 737 | if (ret) |
| 738 | return ret; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 739 | |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 740 | #ifdef CONFIG_MODULES |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 741 | ret = __jump_label_mod_text_reserved(start, end); |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 742 | #endif |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 743 | return ret; |
| 744 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 745 | |
Peter Zijlstra | 706249c | 2015-07-24 15:06:37 +0200 | [diff] [blame] | 746 | static void jump_label_update(struct static_key *key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 747 | { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 748 | struct jump_entry *stop = __stop___jump_table; |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 749 | struct jump_entry *entry; |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 750 | #ifdef CONFIG_MODULES |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 751 | struct module *mod; |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 752 | |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 753 | if (static_key_linked(key)) { |
| 754 | __jump_label_mod_update(key); |
| 755 | return; |
| 756 | } |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 757 | |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 758 | preempt_disable(); |
| 759 | mod = __module_address((unsigned long)key); |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 760 | if (mod) |
| 761 | stop = mod->jump_entries + mod->num_jump_entries; |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 762 | preempt_enable(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 763 | #endif |
Jason Baron | 3821fd3 | 2017-02-03 15:42:24 -0500 | [diff] [blame] | 764 | entry = static_key_entries(key); |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 765 | /* if there are no users, entry can be NULL */ |
| 766 | if (entry) |
Ard Biesheuvel | 1948367 | 2018-09-18 23:51:42 -0700 | [diff] [blame] | 767 | __jump_label_update(key, entry, stop, |
| 768 | system_state < SYSTEM_RUNNING); |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 769 | } |
| 770 | |
Peter Zijlstra | 1987c94 | 2015-07-27 18:32:09 +0200 | [diff] [blame] | 771 | #ifdef CONFIG_STATIC_KEYS_SELFTEST |
| 772 | static DEFINE_STATIC_KEY_TRUE(sk_true); |
| 773 | static DEFINE_STATIC_KEY_FALSE(sk_false); |
| 774 | |
| 775 | static __init int jump_label_test(void) |
| 776 | { |
| 777 | int i; |
| 778 | |
| 779 | for (i = 0; i < 2; i++) { |
| 780 | WARN_ON(static_key_enabled(&sk_true.key) != true); |
| 781 | WARN_ON(static_key_enabled(&sk_false.key) != false); |
| 782 | |
| 783 | WARN_ON(!static_branch_likely(&sk_true)); |
| 784 | WARN_ON(!static_branch_unlikely(&sk_true)); |
| 785 | WARN_ON(static_branch_likely(&sk_false)); |
| 786 | WARN_ON(static_branch_unlikely(&sk_false)); |
| 787 | |
| 788 | static_branch_disable(&sk_true); |
| 789 | static_branch_enable(&sk_false); |
| 790 | |
| 791 | WARN_ON(static_key_enabled(&sk_true.key) == true); |
| 792 | WARN_ON(static_key_enabled(&sk_false.key) == false); |
| 793 | |
| 794 | WARN_ON(static_branch_likely(&sk_true)); |
| 795 | WARN_ON(static_branch_unlikely(&sk_true)); |
| 796 | WARN_ON(!static_branch_likely(&sk_false)); |
| 797 | WARN_ON(!static_branch_unlikely(&sk_false)); |
| 798 | |
| 799 | static_branch_enable(&sk_true); |
| 800 | static_branch_disable(&sk_false); |
| 801 | } |
| 802 | |
| 803 | return 0; |
| 804 | } |
Jason Baron | 92ee46e | 2017-11-13 16:48:47 -0500 | [diff] [blame] | 805 | early_initcall(jump_label_test); |
Peter Zijlstra | 1987c94 | 2015-07-27 18:32:09 +0200 | [diff] [blame] | 806 | #endif /* STATIC_KEYS_SELFTEST */ |