jump_label: Fix NULL dereference bug in __jump_label_mod_update()
[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);
4c5ea0a9
PB
108
109 /*
110 * Careful if we get concurrent static_key_slow_inc() calls;
111 * later calls must wait for the first one to _finish_ the
112 * jump_label_update() process. At the same time, however,
113 * the jump_label_update() call below wants to see
114 * static_key_enabled(&key) for jumps to be updated properly.
115 *
116 * So give a special meaning to negative key->enabled: it sends
117 * static_key_slow_inc() down the slow path, and it is non-zero
118 * so it counts as "enabled" in jump_label_update(). Note that
119 * atomic_inc_unless_negative() checks >= 0, so roll our own.
120 */
121 for (v = atomic_read(&key->enabled); v > 0; v = v1) {
122 v1 = atomic_cmpxchg(&key->enabled, v, v + 1);
8b7b4128 123 if (likely(v1 == v))
4c5ea0a9
PB
124 return;
125 }
bf5438fc 126
d430d3d7 127 jump_label_lock();
4c5ea0a9
PB
128 if (atomic_read(&key->enabled) == 0) {
129 atomic_set(&key->enabled, -1);
706249c2 130 jump_label_update(key);
d0646a6f
PZ
131 /*
132 * Ensure that if the above cmpxchg loop observes our positive
133 * value, it must also observe all the text changes.
134 */
135 atomic_set_release(&key->enabled, 1);
4c5ea0a9
PB
136 } else {
137 atomic_inc(&key->enabled);
138 }
d430d3d7 139 jump_label_unlock();
8b7b4128
MZ
140}
141
142void static_key_slow_inc(struct static_key *key)
143{
144 cpus_read_lock();
145 static_key_slow_inc_cpuslocked(key);
f2545b2d 146 cpus_read_unlock();
bf5438fc 147}
c5905afb 148EXPORT_SYMBOL_GPL(static_key_slow_inc);
bf5438fc 149
5a40527f 150void static_key_enable_cpuslocked(struct static_key *key)
1dbb6704 151{
5cdda511 152 STATIC_KEY_CHECK_USE(key);
5a40527f 153
1dbb6704
PB
154 if (atomic_read(&key->enabled) > 0) {
155 WARN_ON_ONCE(atomic_read(&key->enabled) != 1);
156 return;
157 }
158
1dbb6704
PB
159 jump_label_lock();
160 if (atomic_read(&key->enabled) == 0) {
161 atomic_set(&key->enabled, -1);
162 jump_label_update(key);
d0646a6f
PZ
163 /*
164 * See static_key_slow_inc().
165 */
166 atomic_set_release(&key->enabled, 1);
1dbb6704
PB
167 }
168 jump_label_unlock();
5a40527f
MZ
169}
170EXPORT_SYMBOL_GPL(static_key_enable_cpuslocked);
171
172void static_key_enable(struct static_key *key)
173{
174 cpus_read_lock();
175 static_key_enable_cpuslocked(key);
1dbb6704
PB
176 cpus_read_unlock();
177}
178EXPORT_SYMBOL_GPL(static_key_enable);
179
5a40527f 180void static_key_disable_cpuslocked(struct static_key *key)
1dbb6704 181{
5cdda511 182 STATIC_KEY_CHECK_USE(key);
5a40527f 183
1dbb6704
PB
184 if (atomic_read(&key->enabled) != 1) {
185 WARN_ON_ONCE(atomic_read(&key->enabled) != 0);
186 return;
187 }
188
1dbb6704
PB
189 jump_label_lock();
190 if (atomic_cmpxchg(&key->enabled, 1, 0))
191 jump_label_update(key);
192 jump_label_unlock();
5a40527f
MZ
193}
194EXPORT_SYMBOL_GPL(static_key_disable_cpuslocked);
195
196void static_key_disable(struct static_key *key)
197{
198 cpus_read_lock();
199 static_key_disable_cpuslocked(key);
1dbb6704
PB
200 cpus_read_unlock();
201}
202EXPORT_SYMBOL_GPL(static_key_disable);
203
ce48c146 204static void __static_key_slow_dec_cpuslocked(struct static_key *key,
8b7b4128
MZ
205 unsigned long rate_limit,
206 struct delayed_work *work)
bf5438fc 207{
4c5ea0a9
PB
208 /*
209 * The negative count check is valid even when a negative
210 * key->enabled is in use by static_key_slow_inc(); a
211 * __static_key_slow_dec() before the first static_key_slow_inc()
212 * returns is unbalanced, because all other static_key_slow_inc()
213 * instances block while the update is in progress.
214 */
fadf0464
JB
215 if (!atomic_dec_and_mutex_lock(&key->enabled, &jump_label_mutex)) {
216 WARN(atomic_read(&key->enabled) < 0,
217 "jump label: negative count!\n");
d430d3d7 218 return;
fadf0464 219 }
bf5438fc 220
b2029520
GN
221 if (rate_limit) {
222 atomic_inc(&key->enabled);
223 schedule_delayed_work(work, rate_limit);
c5905afb 224 } else {
706249c2 225 jump_label_update(key);
c5905afb 226 }
91bad2f8 227 jump_label_unlock();
8b7b4128
MZ
228}
229
230static void __static_key_slow_dec(struct static_key *key,
231 unsigned long rate_limit,
232 struct delayed_work *work)
233{
234 cpus_read_lock();
ce48c146 235 __static_key_slow_dec_cpuslocked(key, rate_limit, work);
f2545b2d 236 cpus_read_unlock();
bf5438fc
JB
237}
238
b2029520
GN
239static void jump_label_update_timeout(struct work_struct *work)
240{
c5905afb
IM
241 struct static_key_deferred *key =
242 container_of(work, struct static_key_deferred, work.work);
243 __static_key_slow_dec(&key->key, 0, NULL);
b2029520
GN
244}
245
c5905afb 246void static_key_slow_dec(struct static_key *key)
b2029520 247{
5cdda511 248 STATIC_KEY_CHECK_USE(key);
c5905afb 249 __static_key_slow_dec(key, 0, NULL);
b2029520 250}
c5905afb 251EXPORT_SYMBOL_GPL(static_key_slow_dec);
b2029520 252
ce48c146
PZ
253void static_key_slow_dec_cpuslocked(struct static_key *key)
254{
255 STATIC_KEY_CHECK_USE(key);
256 __static_key_slow_dec_cpuslocked(key, 0, NULL);
257}
258
c5905afb 259void static_key_slow_dec_deferred(struct static_key_deferred *key)
b2029520 260{
5cdda511 261 STATIC_KEY_CHECK_USE(key);
c5905afb 262 __static_key_slow_dec(&key->key, key->timeout, &key->work);
b2029520 263}
c5905afb 264EXPORT_SYMBOL_GPL(static_key_slow_dec_deferred);
b2029520 265
b6416e61
DM
266void static_key_deferred_flush(struct static_key_deferred *key)
267{
5cdda511 268 STATIC_KEY_CHECK_USE(key);
b6416e61
DM
269 flush_delayed_work(&key->work);
270}
271EXPORT_SYMBOL_GPL(static_key_deferred_flush);
272
c5905afb 273void jump_label_rate_limit(struct static_key_deferred *key,
b2029520
GN
274 unsigned long rl)
275{
5cdda511 276 STATIC_KEY_CHECK_USE(key);
b2029520
GN
277 key->timeout = rl;
278 INIT_DELAYED_WORK(&key->work, jump_label_update_timeout);
279}
a181dc14 280EXPORT_SYMBOL_GPL(jump_label_rate_limit);
b2029520 281
4c3ef6d7
JB
282static int addr_conflict(struct jump_entry *entry, void *start, void *end)
283{
9ae033ac
AB
284 if (jump_entry_code(entry) <= (unsigned long)end &&
285 jump_entry_code(entry) + JUMP_LABEL_NOP_SIZE > (unsigned long)start)
4c3ef6d7
JB
286 return 1;
287
288 return 0;
289}
290
d430d3d7
JB
291static int __jump_label_text_reserved(struct jump_entry *iter_start,
292 struct jump_entry *iter_stop, void *start, void *end)
4c3ef6d7 293{
4c3ef6d7 294 struct jump_entry *iter;
4c3ef6d7 295
4c3ef6d7
JB
296 iter = iter_start;
297 while (iter < iter_stop) {
d430d3d7
JB
298 if (addr_conflict(iter, start, end))
299 return 1;
4c3ef6d7
JB
300 iter++;
301 }
302
d430d3d7
JB
303 return 0;
304}
305
706249c2 306/*
20284aa7
JF
307 * Update code which is definitely not currently executing.
308 * Architectures which need heavyweight synchronization to modify
309 * running code can override this to make the non-live update case
310 * cheaper.
311 */
9cdbe1cb 312void __weak __init_or_module arch_jump_label_transform_static(struct jump_entry *entry,
20284aa7
JF
313 enum jump_label_type type)
314{
706249c2 315 arch_jump_label_transform(entry, type);
20284aa7
JF
316}
317
706249c2 318static inline struct jump_entry *static_key_entries(struct static_key *key)
d430d3d7 319{
3821fd35
JB
320 WARN_ON_ONCE(key->type & JUMP_TYPE_LINKED);
321 return (struct jump_entry *)(key->type & ~JUMP_TYPE_MASK);
4c3ef6d7
JB
322}
323
706249c2 324static inline bool static_key_type(struct static_key *key)
c5905afb 325{
3821fd35
JB
326 return key->type & JUMP_TYPE_TRUE;
327}
328
329static inline bool static_key_linked(struct static_key *key)
330{
331 return key->type & JUMP_TYPE_LINKED;
332}
333
334static inline void static_key_clear_linked(struct static_key *key)
335{
336 key->type &= ~JUMP_TYPE_LINKED;
337}
338
339static inline void static_key_set_linked(struct static_key *key)
340{
341 key->type |= JUMP_TYPE_LINKED;
a1efb01f 342}
c5905afb 343
3821fd35
JB
344/***
345 * A 'struct static_key' uses a union such that it either points directly
346 * to a table of 'struct jump_entry' or to a linked list of modules which in
347 * turn point to 'struct jump_entry' tables.
348 *
349 * The two lower bits of the pointer are used to keep track of which pointer
350 * type is in use and to store the initial branch direction, we use an access
351 * function which preserves these bits.
352 */
353static void static_key_set_entries(struct static_key *key,
354 struct jump_entry *entries)
355{
356 unsigned long type;
357
358 WARN_ON_ONCE((unsigned long)entries & JUMP_TYPE_MASK);
359 type = key->type & JUMP_TYPE_MASK;
360 key->entries = entries;
361 key->type |= type;
362}
363
706249c2 364static enum jump_label_type jump_label_type(struct jump_entry *entry)
a1efb01f 365{
706249c2 366 struct static_key *key = jump_entry_key(entry);
a1efb01f 367 bool enabled = static_key_enabled(key);
9ae033ac 368 bool branch = jump_entry_is_branch(entry);
c5905afb 369
11276d53
PZ
370 /* See the comment in linux/jump_label.h */
371 return enabled ^ branch;
c5905afb
IM
372}
373
706249c2
PZ
374static void __jump_label_update(struct static_key *key,
375 struct jump_entry *entry,
19483677
AB
376 struct jump_entry *stop,
377 bool init)
706249c2
PZ
378{
379 for (; (entry < stop) && (jump_entry_key(entry) == key); entry++) {
380 /*
dc1dd184
JP
381 * An entry->code of 0 indicates an entry which has been
382 * disabled because it was in an init text area.
706249c2 383 */
19483677 384 if (init || !jump_entry_is_init(entry)) {
9ae033ac 385 if (kernel_text_address(jump_entry_code(entry)))
dc1dd184
JP
386 arch_jump_label_transform(entry, jump_label_type(entry));
387 else
af1d830b 388 WARN_ONCE(1, "can't patch jump_label at %pS",
9ae033ac 389 (void *)jump_entry_code(entry));
dc1dd184 390 }
706249c2
PZ
391 }
392}
393
97ce2c88 394void __init jump_label_init(void)
bf5438fc 395{
bf5438fc
JB
396 struct jump_entry *iter_start = __start___jump_table;
397 struct jump_entry *iter_stop = __stop___jump_table;
c5905afb 398 struct static_key *key = NULL;
bf5438fc
JB
399 struct jump_entry *iter;
400
1f69bf9c
JB
401 /*
402 * Since we are initializing the static_key.enabled field with
403 * with the 'raw' int values (to avoid pulling in atomic.h) in
404 * jump_label.h, let's make sure that is safe. There are only two
405 * cases to check since we initialize to 0 or 1.
406 */
407 BUILD_BUG_ON((int)ATOMIC_INIT(0) != 0);
408 BUILD_BUG_ON((int)ATOMIC_INIT(1) != 1);
409
e3f91083
KH
410 if (static_key_initialized)
411 return;
412
f2545b2d 413 cpus_read_lock();
91bad2f8 414 jump_label_lock();
d430d3d7
JB
415 jump_label_sort_entries(iter_start, iter_stop);
416
417 for (iter = iter_start; iter < iter_stop; iter++) {
c5905afb 418 struct static_key *iterk;
37348804 419
11276d53
PZ
420 /* rewrite NOPs */
421 if (jump_label_type(iter) == JUMP_LABEL_NOP)
422 arch_jump_label_transform_static(iter, JUMP_LABEL_NOP);
423
19483677
AB
424 if (init_section_contains((void *)jump_entry_code(iter), 1))
425 jump_entry_set_init(iter);
426
7dcfd915 427 iterk = jump_entry_key(iter);
37348804 428 if (iterk == key)
d430d3d7
JB
429 continue;
430
37348804 431 key = iterk;
3821fd35 432 static_key_set_entries(key, iter);
bf5438fc 433 }
c4b2c0c5 434 static_key_initialized = true;
91bad2f8 435 jump_label_unlock();
f2545b2d 436 cpus_read_unlock();
bf5438fc 437}
bf5438fc
JB
438
439#ifdef CONFIG_MODULES
440
11276d53
PZ
441static enum jump_label_type jump_label_init_type(struct jump_entry *entry)
442{
443 struct static_key *key = jump_entry_key(entry);
444 bool type = static_key_type(key);
9ae033ac 445 bool branch = jump_entry_is_branch(entry);
11276d53
PZ
446
447 /* See the comment in linux/jump_label.h */
448 return type ^ branch;
449}
450
c5905afb
IM
451struct static_key_mod {
452 struct static_key_mod *next;
d430d3d7
JB
453 struct jump_entry *entries;
454 struct module *mod;
455};
456
3821fd35
JB
457static inline struct static_key_mod *static_key_mod(struct static_key *key)
458{
459 WARN_ON_ONCE(!(key->type & JUMP_TYPE_LINKED));
460 return (struct static_key_mod *)(key->type & ~JUMP_TYPE_MASK);
461}
462
463/***
464 * key->type and key->next are the same via union.
465 * This sets key->next and preserves the type bits.
466 *
467 * See additional comments above static_key_set_entries().
468 */
469static void static_key_set_mod(struct static_key *key,
470 struct static_key_mod *mod)
471{
472 unsigned long type;
473
474 WARN_ON_ONCE((unsigned long)mod & JUMP_TYPE_MASK);
475 type = key->type & JUMP_TYPE_MASK;
476 key->next = mod;
477 key->type |= type;
478}
479
d430d3d7
JB
480static int __jump_label_mod_text_reserved(void *start, void *end)
481{
482 struct module *mod;
483
bdc9f373 484 preempt_disable();
d430d3d7 485 mod = __module_text_address((unsigned long)start);
bdc9f373
RR
486 WARN_ON_ONCE(__module_text_address((unsigned long)end) != mod);
487 preempt_enable();
488
d430d3d7
JB
489 if (!mod)
490 return 0;
491
d430d3d7
JB
492
493 return __jump_label_text_reserved(mod->jump_entries,
494 mod->jump_entries + mod->num_jump_entries,
495 start, end);
496}
497
706249c2 498static void __jump_label_mod_update(struct static_key *key)
d430d3d7 499{
706249c2 500 struct static_key_mod *mod;
d430d3d7 501
3821fd35
JB
502 for (mod = static_key_mod(key); mod; mod = mod->next) {
503 struct jump_entry *stop;
504 struct module *m;
505
506 /*
507 * NULL if the static_key is defined in a module
508 * that does not use it
509 */
510 if (!mod->entries)
511 continue;
7cbc5b8d 512
3821fd35
JB
513 m = mod->mod;
514 if (!m)
515 stop = __stop___jump_table;
516 else
517 stop = m->jump_entries + m->num_jump_entries;
19483677 518 __jump_label_update(key, mod->entries, stop,
77ac1c02 519 m && m->state == MODULE_STATE_COMING);
d430d3d7
JB
520 }
521}
522
523/***
524 * apply_jump_label_nops - patch module jump labels with arch_get_jump_label_nop()
525 * @mod: module to patch
526 *
527 * Allow for run-time selection of the optimal nops. Before the module
528 * loads patch these with arch_get_jump_label_nop(), which is specified by
529 * the arch specific jump label code.
530 */
531void jump_label_apply_nops(struct module *mod)
bf5438fc 532{
d430d3d7
JB
533 struct jump_entry *iter_start = mod->jump_entries;
534 struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
535 struct jump_entry *iter;
536
537 /* if the module doesn't have jump label entries, just return */
538 if (iter_start == iter_stop)
539 return;
540
11276d53
PZ
541 for (iter = iter_start; iter < iter_stop; iter++) {
542 /* Only write NOPs for arch_branch_static(). */
543 if (jump_label_init_type(iter) == JUMP_LABEL_NOP)
544 arch_jump_label_transform_static(iter, JUMP_LABEL_NOP);
545 }
bf5438fc
JB
546}
547
d430d3d7 548static int jump_label_add_module(struct module *mod)
bf5438fc 549{
d430d3d7
JB
550 struct jump_entry *iter_start = mod->jump_entries;
551 struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
552 struct jump_entry *iter;
c5905afb 553 struct static_key *key = NULL;
3821fd35 554 struct static_key_mod *jlm, *jlm2;
bf5438fc
JB
555
556 /* if the module doesn't have jump label entries, just return */
d430d3d7 557 if (iter_start == iter_stop)
bf5438fc
JB
558 return 0;
559
d430d3d7
JB
560 jump_label_sort_entries(iter_start, iter_stop);
561
562 for (iter = iter_start; iter < iter_stop; iter++) {
c5905afb 563 struct static_key *iterk;
d430d3d7 564
19483677
AB
565 if (within_module_init(jump_entry_code(iter), mod))
566 jump_entry_set_init(iter);
567
7dcfd915 568 iterk = jump_entry_key(iter);
c5905afb
IM
569 if (iterk == key)
570 continue;
d430d3d7 571
c5905afb 572 key = iterk;
9ae033ac 573 if (within_module((unsigned long)key, mod)) {
3821fd35 574 static_key_set_entries(key, iter);
d430d3d7 575 continue;
bf5438fc 576 }
c5905afb 577 jlm = kzalloc(sizeof(struct static_key_mod), GFP_KERNEL);
d430d3d7
JB
578 if (!jlm)
579 return -ENOMEM;
3821fd35
JB
580 if (!static_key_linked(key)) {
581 jlm2 = kzalloc(sizeof(struct static_key_mod),
582 GFP_KERNEL);
583 if (!jlm2) {
584 kfree(jlm);
585 return -ENOMEM;
586 }
587 preempt_disable();
588 jlm2->mod = __module_address((unsigned long)key);
589 preempt_enable();
590 jlm2->entries = static_key_entries(key);
591 jlm2->next = NULL;
592 static_key_set_mod(key, jlm2);
593 static_key_set_linked(key);
594 }
d430d3d7
JB
595 jlm->mod = mod;
596 jlm->entries = iter;
3821fd35
JB
597 jlm->next = static_key_mod(key);
598 static_key_set_mod(key, jlm);
599 static_key_set_linked(key);
d430d3d7 600
11276d53
PZ
601 /* Only update if we've changed from our initial state */
602 if (jump_label_type(iter) != jump_label_init_type(iter))
19483677 603 __jump_label_update(key, iter, iter_stop, true);
bf5438fc 604 }
d430d3d7 605
bf5438fc
JB
606 return 0;
607}
608
d430d3d7 609static void jump_label_del_module(struct module *mod)
bf5438fc 610{
d430d3d7
JB
611 struct jump_entry *iter_start = mod->jump_entries;
612 struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
613 struct jump_entry *iter;
c5905afb
IM
614 struct static_key *key = NULL;
615 struct static_key_mod *jlm, **prev;
bf5438fc 616
d430d3d7 617 for (iter = iter_start; iter < iter_stop; iter++) {
7dcfd915 618 if (jump_entry_key(iter) == key)
d430d3d7
JB
619 continue;
620
7dcfd915 621 key = jump_entry_key(iter);
d430d3d7 622
9ae033ac 623 if (within_module((unsigned long)key, mod))
d430d3d7
JB
624 continue;
625
3821fd35
JB
626 /* No memory during module load */
627 if (WARN_ON(!static_key_linked(key)))
628 continue;
629
d430d3d7 630 prev = &key->next;
3821fd35 631 jlm = static_key_mod(key);
bf5438fc 632
d430d3d7
JB
633 while (jlm && jlm->mod != mod) {
634 prev = &jlm->next;
635 jlm = jlm->next;
636 }
637
3821fd35
JB
638 /* No memory during module load */
639 if (WARN_ON(!jlm))
640 continue;
641
642 if (prev == &key->next)
643 static_key_set_mod(key, jlm->next);
644 else
d430d3d7 645 *prev = jlm->next;
3821fd35
JB
646
647 kfree(jlm);
648
649 jlm = static_key_mod(key);
650 /* if only one etry is left, fold it back into the static_key */
651 if (jlm->next == NULL) {
652 static_key_set_entries(key, jlm->entries);
653 static_key_clear_linked(key);
d430d3d7 654 kfree(jlm);
bf5438fc
JB
655 }
656 }
657}
658
659static int
660jump_label_module_notify(struct notifier_block *self, unsigned long val,
661 void *data)
662{
663 struct module *mod = data;
664 int ret = 0;
665
f2545b2d
TG
666 cpus_read_lock();
667 jump_label_lock();
668
bf5438fc
JB
669 switch (val) {
670 case MODULE_STATE_COMING:
d430d3d7 671 ret = jump_label_add_module(mod);
3821fd35 672 if (ret) {
da260fe1 673 WARN(1, "Failed to allocate memory: jump_label may not work properly.\n");
d430d3d7 674 jump_label_del_module(mod);
3821fd35 675 }
bf5438fc
JB
676 break;
677 case MODULE_STATE_GOING:
d430d3d7 678 jump_label_del_module(mod);
bf5438fc
JB
679 break;
680 }
bf5438fc 681
f2545b2d
TG
682 jump_label_unlock();
683 cpus_read_unlock();
684
d430d3d7 685 return notifier_from_errno(ret);
bf5438fc
JB
686}
687
885885f6 688static struct notifier_block jump_label_module_nb = {
bf5438fc 689 .notifier_call = jump_label_module_notify,
d430d3d7 690 .priority = 1, /* higher than tracepoints */
bf5438fc
JB
691};
692
d430d3d7 693static __init int jump_label_init_module(void)
bf5438fc
JB
694{
695 return register_module_notifier(&jump_label_module_nb);
696}
d430d3d7 697early_initcall(jump_label_init_module);
bf5438fc
JB
698
699#endif /* CONFIG_MODULES */
700
d430d3d7
JB
701/***
702 * jump_label_text_reserved - check if addr range is reserved
703 * @start: start text addr
704 * @end: end text addr
705 *
706 * checks if the text addr located between @start and @end
707 * overlaps with any of the jump label patch addresses. Code
708 * that wants to modify kernel text should first verify that
709 * it does not overlap with any of the jump label addresses.
710 * Caller must hold jump_label_mutex.
711 *
712 * returns 1 if there is an overlap, 0 otherwise
713 */
714int jump_label_text_reserved(void *start, void *end)
715{
716 int ret = __jump_label_text_reserved(__start___jump_table,
717 __stop___jump_table, start, end);
718
719 if (ret)
720 return ret;
721
722#ifdef CONFIG_MODULES
723 ret = __jump_label_mod_text_reserved(start, end);
724#endif
725 return ret;
726}
727
706249c2 728static void jump_label_update(struct static_key *key)
d430d3d7 729{
c5905afb 730 struct jump_entry *stop = __stop___jump_table;
3821fd35 731 struct jump_entry *entry;
d430d3d7 732#ifdef CONFIG_MODULES
bed831f9 733 struct module *mod;
140fe3b1 734
3821fd35
JB
735 if (static_key_linked(key)) {
736 __jump_label_mod_update(key);
737 return;
738 }
140fe3b1 739
bed831f9
PZ
740 preempt_disable();
741 mod = __module_address((unsigned long)key);
140fe3b1
XG
742 if (mod)
743 stop = mod->jump_entries + mod->num_jump_entries;
bed831f9 744 preempt_enable();
d430d3d7 745#endif
3821fd35 746 entry = static_key_entries(key);
140fe3b1
XG
747 /* if there are no users, entry can be NULL */
748 if (entry)
19483677
AB
749 __jump_label_update(key, entry, stop,
750 system_state < SYSTEM_RUNNING);
d430d3d7
JB
751}
752
1987c947
PZ
753#ifdef CONFIG_STATIC_KEYS_SELFTEST
754static DEFINE_STATIC_KEY_TRUE(sk_true);
755static DEFINE_STATIC_KEY_FALSE(sk_false);
756
757static __init int jump_label_test(void)
758{
759 int i;
760
761 for (i = 0; i < 2; i++) {
762 WARN_ON(static_key_enabled(&sk_true.key) != true);
763 WARN_ON(static_key_enabled(&sk_false.key) != false);
764
765 WARN_ON(!static_branch_likely(&sk_true));
766 WARN_ON(!static_branch_unlikely(&sk_true));
767 WARN_ON(static_branch_likely(&sk_false));
768 WARN_ON(static_branch_unlikely(&sk_false));
769
770 static_branch_disable(&sk_true);
771 static_branch_enable(&sk_false);
772
773 WARN_ON(static_key_enabled(&sk_true.key) == true);
774 WARN_ON(static_key_enabled(&sk_false.key) == false);
775
776 WARN_ON(static_branch_likely(&sk_true));
777 WARN_ON(static_branch_unlikely(&sk_true));
778 WARN_ON(!static_branch_likely(&sk_false));
779 WARN_ON(!static_branch_unlikely(&sk_false));
780
781 static_branch_enable(&sk_true);
782 static_branch_disable(&sk_false);
783 }
784
785 return 0;
786}
92ee46ef 787early_initcall(jump_label_test);
1987c947
PZ
788#endif /* STATIC_KEYS_SELFTEST */
789
790#endif /* HAVE_JUMP_LABEL */