1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_JUMP_LABEL_H
3 #define _LINUX_JUMP_LABEL_H
4
5 /*
6 * Jump label support
7 *
8 * Copyright (C) 2009-2012 Jason Baron <jbaron@redhat.com>
9 * Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra
10 *
11 * DEPRECATED API:
12 *
13 * The use of 'struct static_key' directly, is now DEPRECATED. In addition
14 * static_key_{true,false}() is also DEPRECATED. IE DO NOT use the following:
15 *
16 * struct static_key false = STATIC_KEY_INIT_FALSE;
17 * struct static_key true = STATIC_KEY_INIT_TRUE;
18 * static_key_true()
19 * static_key_false()
20 *
21 * The updated API replacements are:
22 *
23 * DEFINE_STATIC_KEY_TRUE(key);
24 * DEFINE_STATIC_KEY_FALSE(key);
25 * DEFINE_STATIC_KEY_ARRAY_TRUE(keys, count);
26 * DEFINE_STATIC_KEY_ARRAY_FALSE(keys, count);
27 * static_branch_likely()
28 * static_branch_unlikely()
29 *
30 * Jump labels provide an interface to generate dynamic branches using
31 * self-modifying code. Assuming toolchain and architecture support, if we
32 * define a "key" that is initially false via "DEFINE_STATIC_KEY_FALSE(key)",
33 * an "if (static_branch_unlikely(&key))" statement is an unconditional branch
34 * (which defaults to false - and the true block is placed out of line).
35 * Similarly, we can define an initially true key via
36 * "DEFINE_STATIC_KEY_TRUE(key)", and use it in the same
37 * "if (static_branch_unlikely(&key))", in which case we will generate an
38 * unconditional branch to the out-of-line true branch. Keys that are
39 * initially true or false can be using in both static_branch_unlikely()
40 * and static_branch_likely() statements.
41 *
42 * At runtime we can change the branch target by setting the key
43 * to true via a call to static_branch_enable(), or false using
44 * static_branch_disable(). If the direction of the branch is switched by
45 * these calls then we run-time modify the branch target via a
46 * no-op -> jump or jump -> no-op conversion. For example, for an
47 * initially false key that is used in an "if (static_branch_unlikely(&key))"
48 * statement, setting the key to true requires us to patch in a jump
49 * to the out-of-line of true branch.
50 *
51 * In addition to static_branch_{enable,disable}, we can also reference count
52 * the key or branch direction via static_branch_{inc,dec}. Thus,
53 * static_branch_inc() can be thought of as a 'make more true' and
54 * static_branch_dec() as a 'make more false'.
55 *
56 * Since this relies on modifying code, the branch modifying functions
57 * must be considered absolute slow paths (machine wide synchronization etc.).
58 * OTOH, since the affected branches are unconditional, their runtime overhead
59 * will be absolutely minimal, esp. in the default (off) case where the total
60 * effect is a single NOP of appropriate size. The on case will patch in a jump
61 * to the out-of-line block.
62 *
63 * When the control is directly exposed to userspace, it is prudent to delay the
64 * decrement to avoid high frequency code modifications which can (and do)
65 * cause significant performance degradation. Struct static_key_deferred and
66 * static_key_slow_dec_deferred() provide for this.
67 *
68 * Lacking toolchain and or architecture support, static keys fall back to a
69 * simple conditional branch.
70 *
71 * Additional babbling in: Documentation/staging/static-keys.rst
72 */
73
74 #ifndef __ASSEMBLY__
75
76 #include <linux/types.h>
77 #include <linux/compiler.h>
78
79 extern bool static_key_initialized;
80
81 #define STATIC_KEY_CHECK_USE(key) WARN(!static_key_initialized, \
82 "%s(): static key '%pS' used before call to jump_label_init()", \
83 __func__, (key))
84
85 #ifdef CONFIG_JUMP_LABEL
86
87 struct static_key {
88 atomic_t enabled;
89 /*
90 * Note:
91 * To make anonymous unions work with old compilers, the static
92 * initialization of them requires brackets. This creates a dependency
93 * on the order of the struct with the initializers. If any fields
94 * are added, STATIC_KEY_INIT_TRUE and STATIC_KEY_INIT_FALSE may need
95 * to be modified.
96 *
97 * bit 0 => 1 if key is initially true
98 * 0 if initially false
99 * bit 1 => 1 if points to struct static_key_mod
100 * 0 if points to struct jump_entry
101 */
102 union {
103 unsigned long type;
104 struct jump_entry *entries;
105 struct static_key_mod *next;
106 };
107 };
108
109 #else
110 struct static_key {
111 atomic_t enabled;
112 };
113 #endif /* CONFIG_JUMP_LABEL */
114 #endif /* __ASSEMBLY__ */
115
116 #if defined(CONFIG_JUMP_LABEL) && !defined(BUILD_FIPS140_KO)
117 #include <asm/jump_label.h>
118
119 #ifndef __ASSEMBLY__
120 #ifdef CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE
121
122 struct jump_entry {
123 s32 code;
124 s32 target;
125 long key; // key may be far away from the core kernel under KASLR
126 };
127
jump_entry_code(const struct jump_entry * entry)128 static inline unsigned long jump_entry_code(const struct jump_entry *entry)
129 {
130 return (unsigned long)&entry->code + entry->code;
131 }
132
jump_entry_target(const struct jump_entry * entry)133 static inline unsigned long jump_entry_target(const struct jump_entry *entry)
134 {
135 return (unsigned long)&entry->target + entry->target;
136 }
137
jump_entry_key(const struct jump_entry * entry)138 static inline struct static_key *jump_entry_key(const struct jump_entry *entry)
139 {
140 long offset = entry->key & ~3L;
141
142 return (struct static_key *)((unsigned long)&entry->key + offset);
143 }
144
145 #else
146
jump_entry_code(const struct jump_entry * entry)147 static inline unsigned long jump_entry_code(const struct jump_entry *entry)
148 {
149 return entry->code;
150 }
151
jump_entry_target(const struct jump_entry * entry)152 static inline unsigned long jump_entry_target(const struct jump_entry *entry)
153 {
154 return entry->target;
155 }
156
jump_entry_key(const struct jump_entry * entry)157 static inline struct static_key *jump_entry_key(const struct jump_entry *entry)
158 {
159 return (struct static_key *)((unsigned long)entry->key & ~3UL);
160 }
161
162 #endif
163
jump_entry_is_branch(const struct jump_entry * entry)164 static inline bool jump_entry_is_branch(const struct jump_entry *entry)
165 {
166 return (unsigned long)entry->key & 1UL;
167 }
168
jump_entry_is_init(const struct jump_entry * entry)169 static inline bool jump_entry_is_init(const struct jump_entry *entry)
170 {
171 return (unsigned long)entry->key & 2UL;
172 }
173
jump_entry_set_init(struct jump_entry * entry,bool set)174 static inline void jump_entry_set_init(struct jump_entry *entry, bool set)
175 {
176 if (set)
177 entry->key |= 2;
178 else
179 entry->key &= ~2;
180 }
181
jump_entry_size(struct jump_entry * entry)182 static inline int jump_entry_size(struct jump_entry *entry)
183 {
184 #ifdef JUMP_LABEL_NOP_SIZE
185 return JUMP_LABEL_NOP_SIZE;
186 #else
187 return arch_jump_entry_size(entry);
188 #endif
189 }
190
191 #endif
192 #endif
193
194 #ifndef __ASSEMBLY__
195
196 enum jump_label_type {
197 JUMP_LABEL_NOP = 0,
198 JUMP_LABEL_JMP,
199 };
200
201 struct module;
202
203 #ifdef BUILD_FIPS140_KO
204
205 #include <linux/atomic.h>
206
static_key_count(struct static_key * key)207 static inline int static_key_count(struct static_key *key)
208 {
209 return atomic_read(&key->enabled);
210 }
211
static_key_false(struct static_key * key)212 static __always_inline bool static_key_false(struct static_key *key)
213 {
214 if (unlikely(static_key_count(key) > 0))
215 return true;
216 return false;
217 }
218
static_key_true(struct static_key * key)219 static __always_inline bool static_key_true(struct static_key *key)
220 {
221 if (likely(static_key_count(key) > 0))
222 return true;
223 return false;
224 }
225
226 #elif defined(CONFIG_JUMP_LABEL)
227
228 #define JUMP_TYPE_FALSE 0UL
229 #define JUMP_TYPE_TRUE 1UL
230 #define JUMP_TYPE_LINKED 2UL
231 #define JUMP_TYPE_MASK 3UL
232
static_key_false(struct static_key * key)233 static __always_inline bool static_key_false(struct static_key *key)
234 {
235 return arch_static_branch(key, false);
236 }
237
static_key_true(struct static_key * key)238 static __always_inline bool static_key_true(struct static_key *key)
239 {
240 return !arch_static_branch(key, true);
241 }
242
243 extern struct jump_entry __start___jump_table[];
244 extern struct jump_entry __stop___jump_table[];
245
246 extern void jump_label_init(void);
247 extern void jump_label_lock(void);
248 extern void jump_label_unlock(void);
249 extern void arch_jump_label_transform(struct jump_entry *entry,
250 enum jump_label_type type);
251 extern void arch_jump_label_transform_static(struct jump_entry *entry,
252 enum jump_label_type type);
253 extern bool arch_jump_label_transform_queue(struct jump_entry *entry,
254 enum jump_label_type type);
255 extern void arch_jump_label_transform_apply(void);
256 extern int jump_label_text_reserved(void *start, void *end);
257 extern void static_key_slow_inc(struct static_key *key);
258 extern void static_key_slow_dec(struct static_key *key);
259 extern void static_key_slow_inc_cpuslocked(struct static_key *key);
260 extern void static_key_slow_dec_cpuslocked(struct static_key *key);
261 extern void jump_label_apply_nops(struct module *mod);
262 extern int static_key_count(struct static_key *key);
263 extern void static_key_enable(struct static_key *key);
264 extern void static_key_disable(struct static_key *key);
265 extern void static_key_enable_cpuslocked(struct static_key *key);
266 extern void static_key_disable_cpuslocked(struct static_key *key);
267
268 /*
269 * We should be using ATOMIC_INIT() for initializing .enabled, but
270 * the inclusion of atomic.h is problematic for inclusion of jump_label.h
271 * in 'low-level' headers. Thus, we are initializing .enabled with a
272 * raw value, but have added a BUILD_BUG_ON() to catch any issues in
273 * jump_label_init() see: kernel/jump_label.c.
274 */
275 #define STATIC_KEY_INIT_TRUE \
276 { .enabled = { 1 }, \
277 { .entries = (void *)JUMP_TYPE_TRUE } }
278 #define STATIC_KEY_INIT_FALSE \
279 { .enabled = { 0 }, \
280 { .entries = (void *)JUMP_TYPE_FALSE } }
281
282 #else /* !CONFIG_JUMP_LABEL */
283
284 #include <linux/atomic.h>
285 #include <linux/bug.h>
286
static_key_count(struct static_key * key)287 static __always_inline int static_key_count(struct static_key *key)
288 {
289 return arch_atomic_read(&key->enabled);
290 }
291
jump_label_init(void)292 static __always_inline void jump_label_init(void)
293 {
294 static_key_initialized = true;
295 }
296
static_key_false(struct static_key * key)297 static __always_inline bool static_key_false(struct static_key *key)
298 {
299 if (unlikely_notrace(static_key_count(key) > 0))
300 return true;
301 return false;
302 }
303
static_key_true(struct static_key * key)304 static __always_inline bool static_key_true(struct static_key *key)
305 {
306 if (likely_notrace(static_key_count(key) > 0))
307 return true;
308 return false;
309 }
310
static_key_slow_inc(struct static_key * key)311 static inline void static_key_slow_inc(struct static_key *key)
312 {
313 STATIC_KEY_CHECK_USE(key);
314 atomic_inc(&key->enabled);
315 }
316
static_key_slow_dec(struct static_key * key)317 static inline void static_key_slow_dec(struct static_key *key)
318 {
319 STATIC_KEY_CHECK_USE(key);
320 atomic_dec(&key->enabled);
321 }
322
323 #define static_key_slow_inc_cpuslocked(key) static_key_slow_inc(key)
324 #define static_key_slow_dec_cpuslocked(key) static_key_slow_dec(key)
325
jump_label_text_reserved(void * start,void * end)326 static inline int jump_label_text_reserved(void *start, void *end)
327 {
328 return 0;
329 }
330
jump_label_lock(void)331 static inline void jump_label_lock(void) {}
jump_label_unlock(void)332 static inline void jump_label_unlock(void) {}
333
jump_label_apply_nops(struct module * mod)334 static inline int jump_label_apply_nops(struct module *mod)
335 {
336 return 0;
337 }
338
static_key_enable(struct static_key * key)339 static inline void static_key_enable(struct static_key *key)
340 {
341 STATIC_KEY_CHECK_USE(key);
342
343 if (atomic_read(&key->enabled) != 0) {
344 WARN_ON_ONCE(atomic_read(&key->enabled) != 1);
345 return;
346 }
347 atomic_set(&key->enabled, 1);
348 }
349
static_key_disable(struct static_key * key)350 static inline void static_key_disable(struct static_key *key)
351 {
352 STATIC_KEY_CHECK_USE(key);
353
354 if (atomic_read(&key->enabled) != 1) {
355 WARN_ON_ONCE(atomic_read(&key->enabled) != 0);
356 return;
357 }
358 atomic_set(&key->enabled, 0);
359 }
360
361 #define static_key_enable_cpuslocked(k) static_key_enable((k))
362 #define static_key_disable_cpuslocked(k) static_key_disable((k))
363
364 #define STATIC_KEY_INIT_TRUE { .enabled = ATOMIC_INIT(1) }
365 #define STATIC_KEY_INIT_FALSE { .enabled = ATOMIC_INIT(0) }
366
367 #endif /* CONFIG_JUMP_LABEL */
368
369 #define STATIC_KEY_INIT STATIC_KEY_INIT_FALSE
370 #define jump_label_enabled static_key_enabled
371
372 /* -------------------------------------------------------------------------- */
373
374 /*
375 * Two type wrappers around static_key, such that we can use compile time
376 * type differentiation to emit the right code.
377 *
378 * All the below code is macros in order to play type games.
379 */
380
381 struct static_key_true {
382 struct static_key key;
383 };
384
385 struct static_key_false {
386 struct static_key key;
387 };
388
389 #define STATIC_KEY_TRUE_INIT (struct static_key_true) { .key = STATIC_KEY_INIT_TRUE, }
390 #define STATIC_KEY_FALSE_INIT (struct static_key_false){ .key = STATIC_KEY_INIT_FALSE, }
391
392 #define DEFINE_STATIC_KEY_TRUE(name) \
393 struct static_key_true name = STATIC_KEY_TRUE_INIT
394
395 #define DEFINE_STATIC_KEY_TRUE_RO(name) \
396 struct static_key_true name __ro_after_init = STATIC_KEY_TRUE_INIT
397
398 #define DECLARE_STATIC_KEY_TRUE(name) \
399 extern struct static_key_true name
400
401 #define DEFINE_STATIC_KEY_FALSE(name) \
402 struct static_key_false name = STATIC_KEY_FALSE_INIT
403
404 #define DEFINE_STATIC_KEY_FALSE_RO(name) \
405 struct static_key_false name __ro_after_init = STATIC_KEY_FALSE_INIT
406
407 #define DECLARE_STATIC_KEY_FALSE(name) \
408 extern struct static_key_false name
409
410 #define DEFINE_STATIC_KEY_ARRAY_TRUE(name, count) \
411 struct static_key_true name[count] = { \
412 [0 ... (count) - 1] = STATIC_KEY_TRUE_INIT, \
413 }
414
415 #define DEFINE_STATIC_KEY_ARRAY_FALSE(name, count) \
416 struct static_key_false name[count] = { \
417 [0 ... (count) - 1] = STATIC_KEY_FALSE_INIT, \
418 }
419
420 #define _DEFINE_STATIC_KEY_1(name) DEFINE_STATIC_KEY_TRUE(name)
421 #define _DEFINE_STATIC_KEY_0(name) DEFINE_STATIC_KEY_FALSE(name)
422 #define DEFINE_STATIC_KEY_MAYBE(cfg, name) \
423 __PASTE(_DEFINE_STATIC_KEY_, IS_ENABLED(cfg))(name)
424
425 #define _DEFINE_STATIC_KEY_RO_1(name) DEFINE_STATIC_KEY_TRUE_RO(name)
426 #define _DEFINE_STATIC_KEY_RO_0(name) DEFINE_STATIC_KEY_FALSE_RO(name)
427 #define DEFINE_STATIC_KEY_MAYBE_RO(cfg, name) \
428 __PASTE(_DEFINE_STATIC_KEY_RO_, IS_ENABLED(cfg))(name)
429
430 #define _DECLARE_STATIC_KEY_1(name) DECLARE_STATIC_KEY_TRUE(name)
431 #define _DECLARE_STATIC_KEY_0(name) DECLARE_STATIC_KEY_FALSE(name)
432 #define DECLARE_STATIC_KEY_MAYBE(cfg, name) \
433 __PASTE(_DECLARE_STATIC_KEY_, IS_ENABLED(cfg))(name)
434
435 extern bool ____wrong_branch_error(void);
436
437 #define static_key_enabled(x) \
438 ({ \
439 if (!__builtin_types_compatible_p(typeof(*x), struct static_key) && \
440 !__builtin_types_compatible_p(typeof(*x), struct static_key_true) &&\
441 !__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
442 ____wrong_branch_error(); \
443 static_key_count((struct static_key *)x) > 0; \
444 })
445
446 #if defined(CONFIG_JUMP_LABEL) && !defined(BUILD_FIPS140_KO)
447
448 /*
449 * Combine the right initial value (type) with the right branch order
450 * to generate the desired result.
451 *
452 *
453 * type\branch| likely (1) | unlikely (0)
454 * -----------+-----------------------+------------------
455 * | |
456 * true (1) | ... | ...
457 * | NOP | JMP L
458 * | <br-stmts> | 1: ...
459 * | L: ... |
460 * | |
461 * | | L: <br-stmts>
462 * | | jmp 1b
463 * | |
464 * -----------+-----------------------+------------------
465 * | |
466 * false (0) | ... | ...
467 * | JMP L | NOP
468 * | <br-stmts> | 1: ...
469 * | L: ... |
470 * | |
471 * | | L: <br-stmts>
472 * | | jmp 1b
473 * | |
474 * -----------+-----------------------+------------------
475 *
476 * The initial value is encoded in the LSB of static_key::entries,
477 * type: 0 = false, 1 = true.
478 *
479 * The branch type is encoded in the LSB of jump_entry::key,
480 * branch: 0 = unlikely, 1 = likely.
481 *
482 * This gives the following logic table:
483 *
484 * enabled type branch instuction
485 * -----------------------------+-----------
486 * 0 0 0 | NOP
487 * 0 0 1 | JMP
488 * 0 1 0 | NOP
489 * 0 1 1 | JMP
490 *
491 * 1 0 0 | JMP
492 * 1 0 1 | NOP
493 * 1 1 0 | JMP
494 * 1 1 1 | NOP
495 *
496 * Which gives the following functions:
497 *
498 * dynamic: instruction = enabled ^ branch
499 * static: instruction = type ^ branch
500 *
501 * See jump_label_type() / jump_label_init_type().
502 */
503
504 #define static_branch_likely(x) \
505 ({ \
506 bool branch; \
507 if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
508 branch = !arch_static_branch(&(x)->key, true); \
509 else if (__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
510 branch = !arch_static_branch_jump(&(x)->key, true); \
511 else \
512 branch = ____wrong_branch_error(); \
513 likely_notrace(branch); \
514 })
515
516 #define static_branch_unlikely(x) \
517 ({ \
518 bool branch; \
519 if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
520 branch = arch_static_branch_jump(&(x)->key, false); \
521 else if (__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
522 branch = arch_static_branch(&(x)->key, false); \
523 else \
524 branch = ____wrong_branch_error(); \
525 unlikely_notrace(branch); \
526 })
527
528 #else /* !CONFIG_JUMP_LABEL */
529
530 #define static_branch_likely(x) likely_notrace(static_key_enabled(&(x)->key))
531 #define static_branch_unlikely(x) unlikely_notrace(static_key_enabled(&(x)->key))
532
533 #endif /* CONFIG_JUMP_LABEL */
534
535 #define static_branch_maybe(config, x) \
536 (IS_ENABLED(config) ? static_branch_likely(x) \
537 : static_branch_unlikely(x))
538
539 /*
540 * Advanced usage; refcount, branch is enabled when: count != 0
541 */
542
543 #define static_branch_inc(x) static_key_slow_inc(&(x)->key)
544 #define static_branch_dec(x) static_key_slow_dec(&(x)->key)
545 #define static_branch_inc_cpuslocked(x) static_key_slow_inc_cpuslocked(&(x)->key)
546 #define static_branch_dec_cpuslocked(x) static_key_slow_dec_cpuslocked(&(x)->key)
547
548 /*
549 * Normal usage; boolean enable/disable.
550 */
551
552 #define static_branch_enable(x) static_key_enable(&(x)->key)
553 #define static_branch_disable(x) static_key_disable(&(x)->key)
554 #define static_branch_enable_cpuslocked(x) static_key_enable_cpuslocked(&(x)->key)
555 #define static_branch_disable_cpuslocked(x) static_key_disable_cpuslocked(&(x)->key)
556
557 #endif /* __ASSEMBLY__ */
558
559 #endif /* _LINUX_JUMP_LABEL_H */
560