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> |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 5 | * Copyright (C) 2011 Peter Zijlstra <pzijlstr@redhat.com> |
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 | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 17 | |
| 18 | #ifdef HAVE_JUMP_LABEL |
| 19 | |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 20 | /* mutex to protect coming/going of the the jump_label table */ |
| 21 | static DEFINE_MUTEX(jump_label_mutex); |
| 22 | |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 23 | void jump_label_lock(void) |
| 24 | { |
| 25 | mutex_lock(&jump_label_mutex); |
| 26 | } |
| 27 | |
| 28 | void jump_label_unlock(void) |
| 29 | { |
| 30 | mutex_unlock(&jump_label_mutex); |
| 31 | } |
| 32 | |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 33 | static int jump_label_cmp(const void *a, const void *b) |
| 34 | { |
| 35 | const struct jump_entry *jea = a; |
| 36 | const struct jump_entry *jeb = b; |
| 37 | |
| 38 | if (jea->key < jeb->key) |
| 39 | return -1; |
| 40 | |
| 41 | if (jea->key > jeb->key) |
| 42 | return 1; |
| 43 | |
| 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | static void |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 48 | jump_label_sort_entries(struct jump_entry *start, struct jump_entry *stop) |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 49 | { |
| 50 | unsigned long size; |
| 51 | |
| 52 | size = (((unsigned long)stop - (unsigned long)start) |
| 53 | / sizeof(struct jump_entry)); |
| 54 | sort(start, size, sizeof(struct jump_entry), jump_label_cmp, NULL); |
| 55 | } |
| 56 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 57 | static void jump_label_update(struct static_key *key, int enable); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 58 | |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame^] | 59 | static inline bool static_key_type(struct static_key *key) |
| 60 | { |
| 61 | return (unsigned long)key->entries & JUMP_TYPE_MASK; |
| 62 | } |
| 63 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 64 | void static_key_slow_inc(struct static_key *key) |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 65 | { |
Hannes Frederic Sowa | c4b2c0c | 2013-10-19 21:48:53 +0200 | [diff] [blame] | 66 | STATIC_KEY_CHECK_USE(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 67 | if (atomic_inc_not_zero(&key->enabled)) |
| 68 | return; |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 69 | |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 70 | jump_label_lock(); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 71 | if (atomic_read(&key->enabled) == 0) { |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame^] | 72 | if (!static_key_type(key)) |
Peter Zijlstra | 76b235c | 2015-07-24 14:45:44 +0200 | [diff] [blame] | 73 | jump_label_update(key, JUMP_LABEL_JMP); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 74 | else |
Peter Zijlstra | 76b235c | 2015-07-24 14:45:44 +0200 | [diff] [blame] | 75 | jump_label_update(key, JUMP_LABEL_NOP); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 76 | } |
Gleb Natapov | bbbf7af | 2011-10-18 19:55:51 +0200 | [diff] [blame] | 77 | atomic_inc(&key->enabled); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 78 | jump_label_unlock(); |
| 79 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 80 | EXPORT_SYMBOL_GPL(static_key_slow_inc); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 81 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 82 | static void __static_key_slow_dec(struct static_key *key, |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 83 | unsigned long rate_limit, struct delayed_work *work) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 84 | { |
Jason Baron | fadf046 | 2012-02-21 15:02:53 -0500 | [diff] [blame] | 85 | if (!atomic_dec_and_mutex_lock(&key->enabled, &jump_label_mutex)) { |
| 86 | WARN(atomic_read(&key->enabled) < 0, |
| 87 | "jump label: negative count!\n"); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 88 | return; |
Jason Baron | fadf046 | 2012-02-21 15:02:53 -0500 | [diff] [blame] | 89 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 90 | |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 91 | if (rate_limit) { |
| 92 | atomic_inc(&key->enabled); |
| 93 | schedule_delayed_work(work, rate_limit); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 94 | } else { |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame^] | 95 | if (!static_key_type(key)) |
Peter Zijlstra | 76b235c | 2015-07-24 14:45:44 +0200 | [diff] [blame] | 96 | jump_label_update(key, JUMP_LABEL_NOP); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 97 | else |
Peter Zijlstra | 76b235c | 2015-07-24 14:45:44 +0200 | [diff] [blame] | 98 | jump_label_update(key, JUMP_LABEL_JMP); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 99 | } |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 100 | jump_label_unlock(); |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 101 | } |
| 102 | |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 103 | static void jump_label_update_timeout(struct work_struct *work) |
| 104 | { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 105 | struct static_key_deferred *key = |
| 106 | container_of(work, struct static_key_deferred, work.work); |
| 107 | __static_key_slow_dec(&key->key, 0, NULL); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 108 | } |
| 109 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 110 | void static_key_slow_dec(struct static_key *key) |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 111 | { |
Hannes Frederic Sowa | c4b2c0c | 2013-10-19 21:48:53 +0200 | [diff] [blame] | 112 | STATIC_KEY_CHECK_USE(); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 113 | __static_key_slow_dec(key, 0, NULL); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 114 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 115 | EXPORT_SYMBOL_GPL(static_key_slow_dec); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 116 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 117 | void static_key_slow_dec_deferred(struct static_key_deferred *key) |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 118 | { |
Hannes Frederic Sowa | c4b2c0c | 2013-10-19 21:48:53 +0200 | [diff] [blame] | 119 | STATIC_KEY_CHECK_USE(); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 120 | __static_key_slow_dec(&key->key, key->timeout, &key->work); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 121 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 122 | EXPORT_SYMBOL_GPL(static_key_slow_dec_deferred); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 123 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 124 | void jump_label_rate_limit(struct static_key_deferred *key, |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 125 | unsigned long rl) |
| 126 | { |
Hannes Frederic Sowa | c4b2c0c | 2013-10-19 21:48:53 +0200 | [diff] [blame] | 127 | STATIC_KEY_CHECK_USE(); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 128 | key->timeout = rl; |
| 129 | INIT_DELAYED_WORK(&key->work, jump_label_update_timeout); |
| 130 | } |
Gleb Natapov | a181dc1 | 2012-08-05 15:58:29 +0300 | [diff] [blame] | 131 | EXPORT_SYMBOL_GPL(jump_label_rate_limit); |
Gleb Natapov | b202952 | 2011-11-27 17:59:09 +0200 | [diff] [blame] | 132 | |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 133 | static int addr_conflict(struct jump_entry *entry, void *start, void *end) |
| 134 | { |
| 135 | if (entry->code <= (unsigned long)end && |
| 136 | entry->code + JUMP_LABEL_NOP_SIZE > (unsigned long)start) |
| 137 | return 1; |
| 138 | |
| 139 | return 0; |
| 140 | } |
| 141 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 142 | static int __jump_label_text_reserved(struct jump_entry *iter_start, |
| 143 | struct jump_entry *iter_stop, void *start, void *end) |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 144 | { |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 145 | struct jump_entry *iter; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 146 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 147 | iter = iter_start; |
| 148 | while (iter < iter_stop) { |
| 149 | if (addr_conflict(iter, start, end)) |
| 150 | return 1; |
| 151 | iter++; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 152 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 153 | |
| 154 | return 0; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 155 | } |
| 156 | |
Jeremy Fitzhardinge | 20284aa | 2011-10-03 11:01:46 -0700 | [diff] [blame] | 157 | /* |
| 158 | * Update code which is definitely not currently executing. |
| 159 | * Architectures which need heavyweight synchronization to modify |
| 160 | * running code can override this to make the non-live update case |
| 161 | * cheaper. |
| 162 | */ |
Peter Zijlstra | 9cdbe1c | 2011-12-06 17:27:29 +0100 | [diff] [blame] | 163 | 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] | 164 | enum jump_label_type type) |
| 165 | { |
| 166 | arch_jump_label_transform(entry, type); |
| 167 | } |
| 168 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 169 | static void __jump_label_update(struct static_key *key, |
Jiri Olsa | 7cbc5b8 | 2011-05-10 12:43:46 +0200 | [diff] [blame] | 170 | struct jump_entry *entry, |
| 171 | struct jump_entry *stop, int enable) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 172 | { |
Jiri Olsa | 7cbc5b8 | 2011-05-10 12:43:46 +0200 | [diff] [blame] | 173 | for (; (entry < stop) && |
| 174 | (entry->key == (jump_label_t)(unsigned long)key); |
| 175 | entry++) { |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 176 | /* |
| 177 | * entry->code set to 0 invalidates module init text sections |
| 178 | * kernel_text_address() verifies we are not in core kernel |
| 179 | * init code, see jump_label_invalidate_module_init(). |
| 180 | */ |
| 181 | if (entry->code && kernel_text_address(entry->code)) |
| 182 | arch_jump_label_transform(entry, enable); |
| 183 | } |
| 184 | } |
| 185 | |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame^] | 186 | static inline struct jump_entry *static_key_entries(struct static_key *key) |
| 187 | { |
| 188 | return (struct jump_entry *)((unsigned long)key->entries & ~JUMP_TYPE_MASK); |
| 189 | } |
| 190 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 191 | static enum jump_label_type jump_label_type(struct static_key *key) |
| 192 | { |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame^] | 193 | bool enabled = static_key_enabled(key); |
| 194 | bool type = static_key_type(key); |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 195 | |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame^] | 196 | return enabled ^ type; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 197 | } |
| 198 | |
Jeremy Fitzhardinge | 97ce2c8 | 2011-10-12 16:17:54 -0700 | [diff] [blame] | 199 | void __init jump_label_init(void) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 200 | { |
| 201 | struct jump_entry *iter_start = __start___jump_table; |
| 202 | struct jump_entry *iter_stop = __stop___jump_table; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 203 | struct static_key *key = NULL; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 204 | struct jump_entry *iter; |
| 205 | |
| 206 | jump_label_lock(); |
| 207 | jump_label_sort_entries(iter_start, iter_stop); |
| 208 | |
| 209 | for (iter = iter_start; iter < iter_stop; iter++) { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 210 | struct static_key *iterk; |
Jeremy Fitzhardinge | 3734880 | 2011-09-29 11:10:05 -0700 | [diff] [blame] | 211 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 212 | iterk = (struct static_key *)(unsigned long)iter->key; |
| 213 | arch_jump_label_transform_static(iter, jump_label_type(iterk)); |
Jeremy Fitzhardinge | 3734880 | 2011-09-29 11:10:05 -0700 | [diff] [blame] | 214 | if (iterk == key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 215 | continue; |
| 216 | |
Jeremy Fitzhardinge | 3734880 | 2011-09-29 11:10:05 -0700 | [diff] [blame] | 217 | key = iterk; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 218 | /* |
| 219 | * Set key->entries to iter, but preserve JUMP_LABEL_TRUE_BRANCH. |
| 220 | */ |
| 221 | *((unsigned long *)&key->entries) += (unsigned long)iter; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 222 | #ifdef CONFIG_MODULES |
| 223 | key->next = NULL; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 224 | #endif |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 225 | } |
Hannes Frederic Sowa | c4b2c0c | 2013-10-19 21:48:53 +0200 | [diff] [blame] | 226 | static_key_initialized = true; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 227 | jump_label_unlock(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 228 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 229 | |
| 230 | #ifdef CONFIG_MODULES |
| 231 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 232 | struct static_key_mod { |
| 233 | struct static_key_mod *next; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 234 | struct jump_entry *entries; |
| 235 | struct module *mod; |
| 236 | }; |
| 237 | |
| 238 | static int __jump_label_mod_text_reserved(void *start, void *end) |
| 239 | { |
| 240 | struct module *mod; |
| 241 | |
| 242 | mod = __module_text_address((unsigned long)start); |
| 243 | if (!mod) |
| 244 | return 0; |
| 245 | |
| 246 | WARN_ON_ONCE(__module_text_address((unsigned long)end) != mod); |
| 247 | |
| 248 | return __jump_label_text_reserved(mod->jump_entries, |
| 249 | mod->jump_entries + mod->num_jump_entries, |
| 250 | start, end); |
| 251 | } |
| 252 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 253 | static void __jump_label_mod_update(struct static_key *key, int enable) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 254 | { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 255 | struct static_key_mod *mod = key->next; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 256 | |
| 257 | while (mod) { |
Jiri Olsa | 7cbc5b8 | 2011-05-10 12:43:46 +0200 | [diff] [blame] | 258 | struct module *m = mod->mod; |
| 259 | |
| 260 | __jump_label_update(key, mod->entries, |
| 261 | m->jump_entries + m->num_jump_entries, |
| 262 | enable); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 263 | mod = mod->next; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | /*** |
| 268 | * apply_jump_label_nops - patch module jump labels with arch_get_jump_label_nop() |
| 269 | * @mod: module to patch |
| 270 | * |
| 271 | * Allow for run-time selection of the optimal nops. Before the module |
| 272 | * loads patch these with arch_get_jump_label_nop(), which is specified by |
| 273 | * the arch specific jump label code. |
| 274 | */ |
| 275 | void jump_label_apply_nops(struct module *mod) |
| 276 | { |
| 277 | struct jump_entry *iter_start = mod->jump_entries; |
| 278 | struct jump_entry *iter_stop = iter_start + mod->num_jump_entries; |
| 279 | struct jump_entry *iter; |
| 280 | |
| 281 | /* if the module doesn't have jump label entries, just return */ |
| 282 | if (iter_start == iter_stop) |
| 283 | return; |
| 284 | |
Peter Zijlstra | ac99b86 | 2011-07-06 14:20:14 +0200 | [diff] [blame] | 285 | for (iter = iter_start; iter < iter_stop; iter++) { |
Peter Zijlstra | 76b235c | 2015-07-24 14:45:44 +0200 | [diff] [blame] | 286 | arch_jump_label_transform_static(iter, JUMP_LABEL_NOP); |
Peter Zijlstra | ac99b86 | 2011-07-06 14:20:14 +0200 | [diff] [blame] | 287 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | static int jump_label_add_module(struct module *mod) |
| 291 | { |
| 292 | struct jump_entry *iter_start = mod->jump_entries; |
| 293 | struct jump_entry *iter_stop = iter_start + mod->num_jump_entries; |
| 294 | struct jump_entry *iter; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 295 | struct static_key *key = NULL; |
| 296 | struct static_key_mod *jlm; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 297 | |
| 298 | /* if the module doesn't have jump label entries, just return */ |
| 299 | if (iter_start == iter_stop) |
| 300 | return 0; |
| 301 | |
| 302 | jump_label_sort_entries(iter_start, iter_stop); |
| 303 | |
| 304 | for (iter = iter_start; iter < iter_stop; iter++) { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 305 | struct static_key *iterk; |
| 306 | |
| 307 | iterk = (struct static_key *)(unsigned long)iter->key; |
| 308 | if (iterk == key) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 309 | continue; |
| 310 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 311 | key = iterk; |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 312 | if (within_module(iter->key, mod)) { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 313 | /* |
| 314 | * Set key->entries to iter, but preserve JUMP_LABEL_TRUE_BRANCH. |
| 315 | */ |
| 316 | *((unsigned long *)&key->entries) += (unsigned long)iter; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 317 | key->next = NULL; |
| 318 | continue; |
| 319 | } |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 320 | jlm = kzalloc(sizeof(struct static_key_mod), GFP_KERNEL); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 321 | if (!jlm) |
| 322 | return -ENOMEM; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 323 | jlm->mod = mod; |
| 324 | jlm->entries = iter; |
| 325 | jlm->next = key->next; |
| 326 | key->next = jlm; |
| 327 | |
Peter Zijlstra | 76b235c | 2015-07-24 14:45:44 +0200 | [diff] [blame] | 328 | if (jump_label_type(key) == JUMP_LABEL_JMP) |
| 329 | __jump_label_update(key, iter, iter_stop, JUMP_LABEL_JMP); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | return 0; |
| 333 | } |
| 334 | |
| 335 | static void jump_label_del_module(struct module *mod) |
| 336 | { |
| 337 | struct jump_entry *iter_start = mod->jump_entries; |
| 338 | struct jump_entry *iter_stop = iter_start + mod->num_jump_entries; |
| 339 | struct jump_entry *iter; |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 340 | struct static_key *key = NULL; |
| 341 | struct static_key_mod *jlm, **prev; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 342 | |
| 343 | for (iter = iter_start; iter < iter_stop; iter++) { |
| 344 | if (iter->key == (jump_label_t)(unsigned long)key) |
| 345 | continue; |
| 346 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 347 | key = (struct static_key *)(unsigned long)iter->key; |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 348 | |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 349 | if (within_module(iter->key, mod)) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 350 | continue; |
| 351 | |
| 352 | prev = &key->next; |
| 353 | jlm = key->next; |
| 354 | |
| 355 | while (jlm && jlm->mod != mod) { |
| 356 | prev = &jlm->next; |
| 357 | jlm = jlm->next; |
| 358 | } |
| 359 | |
| 360 | if (jlm) { |
| 361 | *prev = jlm->next; |
| 362 | kfree(jlm); |
| 363 | } |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | static void jump_label_invalidate_module_init(struct module *mod) |
| 368 | { |
| 369 | struct jump_entry *iter_start = mod->jump_entries; |
| 370 | struct jump_entry *iter_stop = iter_start + mod->num_jump_entries; |
| 371 | struct jump_entry *iter; |
| 372 | |
| 373 | for (iter = iter_start; iter < iter_stop; iter++) { |
| 374 | if (within_module_init(iter->code, mod)) |
| 375 | iter->code = 0; |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | static int |
| 380 | jump_label_module_notify(struct notifier_block *self, unsigned long val, |
| 381 | void *data) |
| 382 | { |
| 383 | struct module *mod = data; |
| 384 | int ret = 0; |
| 385 | |
| 386 | switch (val) { |
| 387 | case MODULE_STATE_COMING: |
| 388 | jump_label_lock(); |
| 389 | ret = jump_label_add_module(mod); |
| 390 | if (ret) |
| 391 | jump_label_del_module(mod); |
| 392 | jump_label_unlock(); |
| 393 | break; |
| 394 | case MODULE_STATE_GOING: |
| 395 | jump_label_lock(); |
| 396 | jump_label_del_module(mod); |
| 397 | jump_label_unlock(); |
| 398 | break; |
| 399 | case MODULE_STATE_LIVE: |
| 400 | jump_label_lock(); |
| 401 | jump_label_invalidate_module_init(mod); |
| 402 | jump_label_unlock(); |
| 403 | break; |
| 404 | } |
| 405 | |
| 406 | return notifier_from_errno(ret); |
| 407 | } |
| 408 | |
| 409 | struct notifier_block jump_label_module_nb = { |
| 410 | .notifier_call = jump_label_module_notify, |
| 411 | .priority = 1, /* higher than tracepoints */ |
| 412 | }; |
| 413 | |
| 414 | static __init int jump_label_init_module(void) |
| 415 | { |
| 416 | return register_module_notifier(&jump_label_module_nb); |
| 417 | } |
| 418 | early_initcall(jump_label_init_module); |
| 419 | |
| 420 | #endif /* CONFIG_MODULES */ |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 421 | |
| 422 | /*** |
| 423 | * jump_label_text_reserved - check if addr range is reserved |
| 424 | * @start: start text addr |
| 425 | * @end: end text addr |
| 426 | * |
| 427 | * checks if the text addr located between @start and @end |
| 428 | * overlaps with any of the jump label patch addresses. Code |
| 429 | * that wants to modify kernel text should first verify that |
| 430 | * it does not overlap with any of the jump label addresses. |
Jason Baron | 91bad2f | 2010-10-01 17:23:48 -0400 | [diff] [blame] | 431 | * Caller must hold jump_label_mutex. |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 432 | * |
| 433 | * returns 1 if there is an overlap, 0 otherwise |
| 434 | */ |
| 435 | int jump_label_text_reserved(void *start, void *end) |
| 436 | { |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 437 | int ret = __jump_label_text_reserved(__start___jump_table, |
| 438 | __stop___jump_table, start, end); |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 439 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 440 | if (ret) |
| 441 | return ret; |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 442 | |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 443 | #ifdef CONFIG_MODULES |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 444 | ret = __jump_label_mod_text_reserved(start, end); |
Jason Baron | 4c3ef6d | 2010-09-17 11:09:08 -0400 | [diff] [blame] | 445 | #endif |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 446 | return ret; |
| 447 | } |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 448 | |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 449 | static void jump_label_update(struct static_key *key, int enable) |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 450 | { |
Ingo Molnar | c5905af | 2012-02-24 08:31:31 +0100 | [diff] [blame] | 451 | struct jump_entry *stop = __stop___jump_table; |
Peter Zijlstra | a1efb01 | 2015-07-24 14:55:40 +0200 | [diff] [blame^] | 452 | struct jump_entry *entry = static_key_entries(key); |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 453 | #ifdef CONFIG_MODULES |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 454 | struct module *mod; |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 455 | |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 456 | __jump_label_mod_update(key, enable); |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 457 | |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 458 | preempt_disable(); |
| 459 | mod = __module_address((unsigned long)key); |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 460 | if (mod) |
| 461 | stop = mod->jump_entries + mod->num_jump_entries; |
Peter Zijlstra | bed831f | 2015-05-27 11:09:35 +0930 | [diff] [blame] | 462 | preempt_enable(); |
Jason Baron | d430d3d | 2011-03-16 17:29:47 -0400 | [diff] [blame] | 463 | #endif |
Xiao Guangrong | 140fe3b | 2011-06-21 10:35:55 +0800 | [diff] [blame] | 464 | /* if there are no users, entry can be NULL */ |
| 465 | if (entry) |
| 466 | __jump_label_update(key, entry, stop, enable); |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 467 | } |
| 468 | |
Jason Baron | bf5438fc | 2010-09-17 11:09:00 -0400 | [diff] [blame] | 469 | #endif |