arm64: dts: amlogic: Add all CPUs in cooling maps
[linux-2.6-block.git] / kernel / jump_label.c
CommitLineData
bf5438fc
JB
1/*
2 * jump label support
3 *
4 * Copyright (C) 2009 Jason Baron <jbaron@redhat.com>
90eec103 5 * Copyright (C) 2011 Peter Zijlstra
bf5438fc
JB
6 *
7 */
bf5438fc
JB
8#include <linux/memory.h>
9#include <linux/uaccess.h>
10#include <linux/module.h>
11#include <linux/list.h>
bf5438fc
JB
12#include <linux/slab.h>
13#include <linux/sort.h>
14#include <linux/err.h>
c5905afb 15#include <linux/static_key.h>
851cf6e7 16#include <linux/jump_label_ratelimit.h>
1f69bf9c 17#include <linux/bug.h>
f2545b2d 18#include <linux/cpu.h>
578ae447 19#include <asm/sections.h>
bf5438fc
JB
20
21#ifdef HAVE_JUMP_LABEL
22
bf5438fc
JB
23/* mutex to protect coming/going of the the jump_label table */
24static DEFINE_MUTEX(jump_label_mutex);
25
91bad2f8
JB
26void jump_label_lock(void)
27{
28 mutex_lock(&jump_label_mutex);
29}
30
31void jump_label_unlock(void)
32{
33 mutex_unlock(&jump_label_mutex);
34}
35
bf5438fc
JB
36static 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
9ae033ac 41 if (jump_entry_key(jea) < jump_entry_key(jeb))
bf5438fc
JB
42 return -1;
43
9ae033ac 44 if (jump_entry_key(jea) > jump_entry_key(jeb))
bf5438fc
JB
45 return 1;
46
47 return 0;
48}
49
50ff18ab
AB
50static 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
bf5438fc 66static void
d430d3d7 67jump_label_sort_entries(struct jump_entry *start, struct jump_entry *stop)
bf5438fc
JB
68{
69 unsigned long size;
50ff18ab
AB
70 void *swapfn = NULL;
71
72 if (IS_ENABLED(CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE))
73 swapfn = jump_label_swap;
bf5438fc
JB
74
75 size = (((unsigned long)stop - (unsigned long)start)
76 / sizeof(struct jump_entry));
50ff18ab 77 sort(start, size, sizeof(struct jump_entry), jump_label_cmp, swapfn);
bf5438fc
JB
78}
79
706249c2 80static void jump_label_update(struct static_key *key);
a1efb01f 81
1f69bf9c
JB
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 */
91int 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}
101EXPORT_SYMBOL_GPL(static_key_count);
102
ce48c146 103void static_key_slow_inc_cpuslocked(struct static_key *key)
bf5438fc 104{
4c5ea0a9
PB
105 int v, v1;
106
5cdda511 107 STATIC_KEY_CHECK_USE(key);
cb538267 108 lockdep_assert_cpus_held();
4c5ea0a9
PB
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);
8b7b4128 124 if (likely(v1 == v))
4c5ea0a9
PB
125 return;
126 }
bf5438fc 127
d430d3d7 128 jump_label_lock();
4c5ea0a9
PB
129 if (atomic_read(&key->enabled) == 0) {
130 atomic_set(&key->enabled, -1);
706249c2 131 jump_label_update(key);
d0646a6f
PZ
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);
4c5ea0a9
PB
137 } else {
138 atomic_inc(&key->enabled);
139 }
d430d3d7 140 jump_label_unlock();
8b7b4128
MZ
141}
142
143void static_key_slow_inc(struct static_key *key)
144{
145 cpus_read_lock();
146 static_key_slow_inc_cpuslocked(key);
f2545b2d 147 cpus_read_unlock();
bf5438fc 148}
c5905afb 149EXPORT_SYMBOL_GPL(static_key_slow_inc);
bf5438fc 150
5a40527f 151void static_key_enable_cpuslocked(struct static_key *key)
1dbb6704 152{
5cdda511 153 STATIC_KEY_CHECK_USE(key);
cb538267 154 lockdep_assert_cpus_held();
5a40527f 155
1dbb6704
PB
156 if (atomic_read(&key->enabled) > 0) {
157 WARN_ON_ONCE(atomic_read(&key->enabled) != 1);
158 return;
159 }
160
1dbb6704
PB
161 jump_label_lock();
162 if (atomic_read(&key->enabled) == 0) {
163 atomic_set(&key->enabled, -1);
164 jump_label_update(key);
d0646a6f
PZ
165 /*
166 * See static_key_slow_inc().
167 */
168 atomic_set_release(&key->enabled, 1);
1dbb6704
PB
169 }
170 jump_label_unlock();
5a40527f
MZ
171}
172EXPORT_SYMBOL_GPL(static_key_enable_cpuslocked);
173
174void static_key_enable(struct static_key *key)
175{
176 cpus_read_lock();
177 static_key_enable_cpuslocked(key);
1dbb6704
PB
178 cpus_read_unlock();
179}
180EXPORT_SYMBOL_GPL(static_key_enable);
181
5a40527f 182void static_key_disable_cpuslocked(struct static_key *key)
1dbb6704 183{
5cdda511 184 STATIC_KEY_CHECK_USE(key);
cb538267 185 lockdep_assert_cpus_held();
5a40527f 186
1dbb6704
PB
187 if (atomic_read(&key->enabled) != 1) {
188 WARN_ON_ONCE(atomic_read(&key->enabled) != 0);
189 return;
190 }
191
1dbb6704
PB
192 jump_label_lock();
193 if (atomic_cmpxchg(&key->enabled, 1, 0))
194 jump_label_update(key);
195 jump_label_unlock();
5a40527f
MZ
196}
197EXPORT_SYMBOL_GPL(static_key_disable_cpuslocked);
198
199void static_key_disable(struct static_key *key)
200{
201 cpus_read_lock();
202 static_key_disable_cpuslocked(key);
1dbb6704
PB
203 cpus_read_unlock();
204}
205EXPORT_SYMBOL_GPL(static_key_disable);
206
ce48c146 207static void __static_key_slow_dec_cpuslocked(struct static_key *key,
8b7b4128
MZ
208 unsigned long rate_limit,
209 struct delayed_work *work)
bf5438fc 210{
cb538267
PZ
211 lockdep_assert_cpus_held();
212
4c5ea0a9
PB
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 */
fadf0464
JB
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");
d430d3d7 223 return;
fadf0464 224 }
bf5438fc 225
b2029520
GN
226 if (rate_limit) {
227 atomic_inc(&key->enabled);
228 schedule_delayed_work(work, rate_limit);
c5905afb 229 } else {
706249c2 230 jump_label_update(key);
c5905afb 231 }
91bad2f8 232 jump_label_unlock();
8b7b4128
MZ
233}
234
235static void __static_key_slow_dec(struct static_key *key,
236 unsigned long rate_limit,
237 struct delayed_work *work)
238{
239 cpus_read_lock();
ce48c146 240 __static_key_slow_dec_cpuslocked(key, rate_limit, work);
f2545b2d 241 cpus_read_unlock();
bf5438fc
JB
242}
243
b2029520
GN
244static void jump_label_update_timeout(struct work_struct *work)
245{
c5905afb
IM
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);
b2029520
GN
249}
250
c5905afb 251void static_key_slow_dec(struct static_key *key)
b2029520 252{
5cdda511 253 STATIC_KEY_CHECK_USE(key);
c5905afb 254 __static_key_slow_dec(key, 0, NULL);
b2029520 255}
c5905afb 256EXPORT_SYMBOL_GPL(static_key_slow_dec);
b2029520 257
ce48c146
PZ
258void 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
c5905afb 264void static_key_slow_dec_deferred(struct static_key_deferred *key)
b2029520 265{
5cdda511 266 STATIC_KEY_CHECK_USE(key);
c5905afb 267 __static_key_slow_dec(&key->key, key->timeout, &key->work);
b2029520 268}
c5905afb 269EXPORT_SYMBOL_GPL(static_key_slow_dec_deferred);
b2029520 270
b6416e61
DM
271void static_key_deferred_flush(struct static_key_deferred *key)
272{
5cdda511 273 STATIC_KEY_CHECK_USE(key);
b6416e61
DM
274 flush_delayed_work(&key->work);
275}
276EXPORT_SYMBOL_GPL(static_key_deferred_flush);
277
c5905afb 278void jump_label_rate_limit(struct static_key_deferred *key,
b2029520
GN
279 unsigned long rl)
280{
5cdda511 281 STATIC_KEY_CHECK_USE(key);
b2029520
GN
282 key->timeout = rl;
283 INIT_DELAYED_WORK(&key->work, jump_label_update_timeout);
284}
a181dc14 285EXPORT_SYMBOL_GPL(jump_label_rate_limit);
b2029520 286
4c3ef6d7
JB
287static int addr_conflict(struct jump_entry *entry, void *start, void *end)
288{
9ae033ac
AB
289 if (jump_entry_code(entry) <= (unsigned long)end &&
290 jump_entry_code(entry) + JUMP_LABEL_NOP_SIZE > (unsigned long)start)
4c3ef6d7
JB
291 return 1;
292
293 return 0;
294}
295
d430d3d7
JB
296static int __jump_label_text_reserved(struct jump_entry *iter_start,
297 struct jump_entry *iter_stop, void *start, void *end)
4c3ef6d7 298{
4c3ef6d7 299 struct jump_entry *iter;
4c3ef6d7 300
4c3ef6d7
JB
301 iter = iter_start;
302 while (iter < iter_stop) {
d430d3d7
JB
303 if (addr_conflict(iter, start, end))
304 return 1;
4c3ef6d7
JB
305 iter++;
306 }
307
d430d3d7
JB
308 return 0;
309}
310
706249c2 311/*
20284aa7
JF
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 */
9cdbe1cb 317void __weak __init_or_module arch_jump_label_transform_static(struct jump_entry *entry,
20284aa7
JF
318 enum jump_label_type type)
319{
706249c2 320 arch_jump_label_transform(entry, type);
20284aa7
JF
321}
322
706249c2 323static inline struct jump_entry *static_key_entries(struct static_key *key)
d430d3d7 324{
3821fd35
JB
325 WARN_ON_ONCE(key->type & JUMP_TYPE_LINKED);
326 return (struct jump_entry *)(key->type & ~JUMP_TYPE_MASK);
4c3ef6d7
JB
327}
328
706249c2 329static inline bool static_key_type(struct static_key *key)
c5905afb 330{
3821fd35
JB
331 return key->type & JUMP_TYPE_TRUE;
332}
333
334static inline bool static_key_linked(struct static_key *key)
335{
336 return key->type & JUMP_TYPE_LINKED;
337}
338
339static inline void static_key_clear_linked(struct static_key *key)
340{
341 key->type &= ~JUMP_TYPE_LINKED;
342}
343
344static inline void static_key_set_linked(struct static_key *key)
345{
346 key->type |= JUMP_TYPE_LINKED;
a1efb01f 347}
c5905afb 348
3821fd35
JB
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 */
358static 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
706249c2 369static enum jump_label_type jump_label_type(struct jump_entry *entry)
a1efb01f 370{
706249c2 371 struct static_key *key = jump_entry_key(entry);
a1efb01f 372 bool enabled = static_key_enabled(key);
9ae033ac 373 bool branch = jump_entry_is_branch(entry);
c5905afb 374
11276d53
PZ
375 /* See the comment in linux/jump_label.h */
376 return enabled ^ branch;
c5905afb
IM
377}
378
706249c2
PZ
379static void __jump_label_update(struct static_key *key,
380 struct jump_entry *entry,
19483677
AB
381 struct jump_entry *stop,
382 bool init)
706249c2
PZ
383{
384 for (; (entry < stop) && (jump_entry_key(entry) == key); entry++) {
385 /*
dc1dd184
JP
386 * An entry->code of 0 indicates an entry which has been
387 * disabled because it was in an init text area.
706249c2 388 */
19483677 389 if (init || !jump_entry_is_init(entry)) {
9ae033ac 390 if (kernel_text_address(jump_entry_code(entry)))
dc1dd184
JP
391 arch_jump_label_transform(entry, jump_label_type(entry));
392 else
af1d830b 393 WARN_ONCE(1, "can't patch jump_label at %pS",
9ae033ac 394 (void *)jump_entry_code(entry));
dc1dd184 395 }
706249c2
PZ
396 }
397}
398
97ce2c88 399void __init jump_label_init(void)
bf5438fc 400{
bf5438fc
JB
401 struct jump_entry *iter_start = __start___jump_table;
402 struct jump_entry *iter_stop = __stop___jump_table;
c5905afb 403 struct static_key *key = NULL;
bf5438fc
JB
404 struct jump_entry *iter;
405
1f69bf9c
JB
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
e3f91083
KH
415 if (static_key_initialized)
416 return;
417
f2545b2d 418 cpus_read_lock();
91bad2f8 419 jump_label_lock();
d430d3d7
JB
420 jump_label_sort_entries(iter_start, iter_stop);
421
422 for (iter = iter_start; iter < iter_stop; iter++) {
c5905afb 423 struct static_key *iterk;
37348804 424
11276d53
PZ
425 /* rewrite NOPs */
426 if (jump_label_type(iter) == JUMP_LABEL_NOP)
427 arch_jump_label_transform_static(iter, JUMP_LABEL_NOP);
428
19483677
AB
429 if (init_section_contains((void *)jump_entry_code(iter), 1))
430 jump_entry_set_init(iter);
431
7dcfd915 432 iterk = jump_entry_key(iter);
37348804 433 if (iterk == key)
d430d3d7
JB
434 continue;
435
37348804 436 key = iterk;
3821fd35 437 static_key_set_entries(key, iter);
bf5438fc 438 }
c4b2c0c5 439 static_key_initialized = true;
91bad2f8 440 jump_label_unlock();
f2545b2d 441 cpus_read_unlock();
bf5438fc 442}
bf5438fc
JB
443
444#ifdef CONFIG_MODULES
445
11276d53
PZ
446static 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);
9ae033ac 450 bool branch = jump_entry_is_branch(entry);
11276d53
PZ
451
452 /* See the comment in linux/jump_label.h */
453 return type ^ branch;
454}
455
c5905afb
IM
456struct static_key_mod {
457 struct static_key_mod *next;
d430d3d7
JB
458 struct jump_entry *entries;
459 struct module *mod;
460};
461
3821fd35
JB
462static inline struct static_key_mod *static_key_mod(struct static_key *key)
463{
34e12b86 464 WARN_ON_ONCE(!static_key_linked(key));
3821fd35
JB
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 */
474static 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
d430d3d7
JB
485static int __jump_label_mod_text_reserved(void *start, void *end)
486{
487 struct module *mod;
488
bdc9f373 489 preempt_disable();
d430d3d7 490 mod = __module_text_address((unsigned long)start);
bdc9f373
RR
491 WARN_ON_ONCE(__module_text_address((unsigned long)end) != mod);
492 preempt_enable();
493
d430d3d7
JB
494 if (!mod)
495 return 0;
496
d430d3d7
JB
497
498 return __jump_label_text_reserved(mod->jump_entries,
499 mod->jump_entries + mod->num_jump_entries,
500 start, end);
501}
502
706249c2 503static void __jump_label_mod_update(struct static_key *key)
d430d3d7 504{
706249c2 505 struct static_key_mod *mod;
d430d3d7 506
3821fd35
JB
507 for (mod = static_key_mod(key); mod; mod = mod->next) {
508 struct jump_entry *stop;
509 struct module *m;
510
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;
7cbc5b8d 517
3821fd35
JB
518 m = mod->mod;
519 if (!m)
520 stop = __stop___jump_table;
521 else
522 stop = m->jump_entries + m->num_jump_entries;
19483677 523 __jump_label_update(key, mod->entries, stop,
77ac1c02 524 m && m->state == MODULE_STATE_COMING);
d430d3d7
JB
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 */
536void jump_label_apply_nops(struct module *mod)
bf5438fc 537{
d430d3d7
JB
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
11276d53
PZ
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 }
bf5438fc
JB
551}
552
d430d3d7 553static int jump_label_add_module(struct module *mod)
bf5438fc 554{
d430d3d7
JB
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;
c5905afb 558 struct static_key *key = NULL;
3821fd35 559 struct static_key_mod *jlm, *jlm2;
bf5438fc
JB
560
561 /* if the module doesn't have jump label entries, just return */
d430d3d7 562 if (iter_start == iter_stop)
bf5438fc
JB
563 return 0;
564
d430d3d7
JB
565 jump_label_sort_entries(iter_start, iter_stop);
566
567 for (iter = iter_start; iter < iter_stop; iter++) {
c5905afb 568 struct static_key *iterk;
d430d3d7 569
19483677
AB
570 if (within_module_init(jump_entry_code(iter), mod))
571 jump_entry_set_init(iter);
572
7dcfd915 573 iterk = jump_entry_key(iter);
c5905afb
IM
574 if (iterk == key)
575 continue;
d430d3d7 576
c5905afb 577 key = iterk;
9ae033ac 578 if (within_module((unsigned long)key, mod)) {
3821fd35 579 static_key_set_entries(key, iter);
d430d3d7 580 continue;
bf5438fc 581 }
c5905afb 582 jlm = kzalloc(sizeof(struct static_key_mod), GFP_KERNEL);
d430d3d7
JB
583 if (!jlm)
584 return -ENOMEM;
3821fd35
JB
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 }
d430d3d7
JB
600 jlm->mod = mod;
601 jlm->entries = iter;
3821fd35
JB
602 jlm->next = static_key_mod(key);
603 static_key_set_mod(key, jlm);
604 static_key_set_linked(key);
d430d3d7 605
11276d53
PZ
606 /* Only update if we've changed from our initial state */
607 if (jump_label_type(iter) != jump_label_init_type(iter))
19483677 608 __jump_label_update(key, iter, iter_stop, true);
bf5438fc 609 }
d430d3d7 610
bf5438fc
JB
611 return 0;
612}
613
d430d3d7 614static void jump_label_del_module(struct module *mod)
bf5438fc 615{
d430d3d7
JB
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;
c5905afb
IM
619 struct static_key *key = NULL;
620 struct static_key_mod *jlm, **prev;
bf5438fc 621
d430d3d7 622 for (iter = iter_start; iter < iter_stop; iter++) {
7dcfd915 623 if (jump_entry_key(iter) == key)
d430d3d7
JB
624 continue;
625
7dcfd915 626 key = jump_entry_key(iter);
d430d3d7 627
9ae033ac 628 if (within_module((unsigned long)key, mod))
d430d3d7
JB
629 continue;
630
3821fd35
JB
631 /* No memory during module load */
632 if (WARN_ON(!static_key_linked(key)))
633 continue;
634
d430d3d7 635 prev = &key->next;
3821fd35 636 jlm = static_key_mod(key);
bf5438fc 637
d430d3d7
JB
638 while (jlm && jlm->mod != mod) {
639 prev = &jlm->next;
640 jlm = jlm->next;
641 }
642
3821fd35
JB
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
d430d3d7 650 *prev = jlm->next;
3821fd35
JB
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);
d430d3d7 659 kfree(jlm);
bf5438fc
JB
660 }
661 }
662}
663
664static int
665jump_label_module_notify(struct notifier_block *self, unsigned long val,
666 void *data)
667{
668 struct module *mod = data;
669 int ret = 0;
670
f2545b2d
TG
671 cpus_read_lock();
672 jump_label_lock();
673
bf5438fc
JB
674 switch (val) {
675 case MODULE_STATE_COMING:
d430d3d7 676 ret = jump_label_add_module(mod);
3821fd35 677 if (ret) {
da260fe1 678 WARN(1, "Failed to allocate memory: jump_label may not work properly.\n");
d430d3d7 679 jump_label_del_module(mod);
3821fd35 680 }
bf5438fc
JB
681 break;
682 case MODULE_STATE_GOING:
d430d3d7 683 jump_label_del_module(mod);
bf5438fc
JB
684 break;
685 }
bf5438fc 686
f2545b2d
TG
687 jump_label_unlock();
688 cpus_read_unlock();
689
d430d3d7 690 return notifier_from_errno(ret);
bf5438fc
JB
691}
692
885885f6 693static struct notifier_block jump_label_module_nb = {
bf5438fc 694 .notifier_call = jump_label_module_notify,
d430d3d7 695 .priority = 1, /* higher than tracepoints */
bf5438fc
JB
696};
697
d430d3d7 698static __init int jump_label_init_module(void)
bf5438fc
JB
699{
700 return register_module_notifier(&jump_label_module_nb);
701}
d430d3d7 702early_initcall(jump_label_init_module);
bf5438fc
JB
703
704#endif /* CONFIG_MODULES */
705
d430d3d7
JB
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.
715 * Caller must hold jump_label_mutex.
716 *
717 * returns 1 if there is an overlap, 0 otherwise
718 */
719int jump_label_text_reserved(void *start, void *end)
720{
721 int ret = __jump_label_text_reserved(__start___jump_table,
722 __stop___jump_table, start, end);
723
724 if (ret)
725 return ret;
726
727#ifdef CONFIG_MODULES
728 ret = __jump_label_mod_text_reserved(start, end);
729#endif
730 return ret;
731}
732
706249c2 733static void jump_label_update(struct static_key *key)
d430d3d7 734{
c5905afb 735 struct jump_entry *stop = __stop___jump_table;
3821fd35 736 struct jump_entry *entry;
d430d3d7 737#ifdef CONFIG_MODULES
bed831f9 738 struct module *mod;
140fe3b1 739
3821fd35
JB
740 if (static_key_linked(key)) {
741 __jump_label_mod_update(key);
742 return;
743 }
140fe3b1 744
bed831f9
PZ
745 preempt_disable();
746 mod = __module_address((unsigned long)key);
140fe3b1
XG
747 if (mod)
748 stop = mod->jump_entries + mod->num_jump_entries;
bed831f9 749 preempt_enable();
d430d3d7 750#endif
3821fd35 751 entry = static_key_entries(key);
140fe3b1
XG
752 /* if there are no users, entry can be NULL */
753 if (entry)
19483677
AB
754 __jump_label_update(key, entry, stop,
755 system_state < SYSTEM_RUNNING);
d430d3d7
JB
756}
757
1987c947
PZ
758#ifdef CONFIG_STATIC_KEYS_SELFTEST
759static DEFINE_STATIC_KEY_TRUE(sk_true);
760static DEFINE_STATIC_KEY_FALSE(sk_false);
761
762static __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}
92ee46ef 792early_initcall(jump_label_test);
1987c947
PZ
793#endif /* STATIC_KEYS_SELFTEST */
794
795#endif /* HAVE_JUMP_LABEL */