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