blob: 2003a093547830f5a14fe7ecf6ffe932402cbc5c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jason Baronbf5438fc2010-09-17 11:09:00 -04002#ifndef _LINUX_JUMP_LABEL_H
3#define _LINUX_JUMP_LABEL_H
4
Peter Zijlstraefb30402012-01-26 13:32:15 +01005/*
6 * Jump label support
7 *
8 * Copyright (C) 2009-2012 Jason Baron <[email protected]>
Peter Zijlstra90eec102015-11-16 11:08:45 +01009 * Copyright (C) 2011-2012 Red Hat, Inc., Peter Zijlstra
Peter Zijlstraefb30402012-01-26 13:32:15 +010010 *
Jason Baron412758c2015-07-30 03:59:48 +000011 * 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);
Catalin Marinasef0da552016-09-05 18:25:47 +010025 * DEFINE_STATIC_KEY_ARRAY_TRUE(keys, count);
26 * DEFINE_STATIC_KEY_ARRAY_FALSE(keys, count);
Jonathan Corbet1975dbc2015-09-14 17:11:05 -060027 * static_branch_likely()
28 * static_branch_unlikely()
Jason Baron412758c2015-07-30 03:59:48 +000029 *
Peter Zijlstraefb30402012-01-26 13:32:15 +010030 * Jump labels provide an interface to generate dynamic branches using
Jason Baron412758c2015-07-30 03:59:48 +000031 * 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.
Peter Zijlstraefb30402012-01-26 13:32:15 +010041 *
Jason Baron412758c2015-07-30 03:59:48 +000042 * 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.
Peter Zijlstraefb30402012-01-26 13:32:15 +010050 *
Jonathan Corbet1975dbc2015-09-14 17:11:05 -060051 * In addition to static_branch_{enable,disable}, we can also reference count
Jason Baron412758c2015-07-30 03:59:48 +000052 * 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
Jonathan Corbet1975dbc2015-09-14 17:11:05 -060054 * static_branch_dec() as a 'make more false'.
Jason Baron412758c2015-07-30 03:59:48 +000055 *
56 * Since this relies on modifying code, the branch modifying functions
Peter Zijlstraefb30402012-01-26 13:32:15 +010057 * must be considered absolute slow paths (machine wide synchronization etc.).
Ingo Molnarfd3cbdc2014-08-10 08:53:39 +020058 * OTOH, since the affected branches are unconditional, their runtime overhead
Peter Zijlstraefb30402012-01-26 13:32:15 +010059 * 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 *
Ingo Molnarfd3cbdc2014-08-10 08:53:39 +020063 * When the control is directly exposed to userspace, it is prudent to delay the
Peter Zijlstraefb30402012-01-26 13:32:15 +010064 * decrement to avoid high frequency code modifications which can (and do)
Ingo Molnarc5905af2012-02-24 08:31:31 +010065 * cause significant performance degradation. Struct static_key_deferred and
66 * static_key_slow_dec_deferred() provide for this.
Peter Zijlstraefb30402012-01-26 13:32:15 +010067 *
Jason Baron412758c2015-07-30 03:59:48 +000068 * Lacking toolchain and or architecture support, static keys fall back to a
69 * simple conditional branch.
Ingo Molnarc5905af2012-02-24 08:31:31 +010070 *
Mauro Carvalho Chehab8e2a46a42020-06-15 08:50:25 +020071 * Additional babbling in: Documentation/staging/static-keys.rst
Ingo Molnarfd3cbdc2014-08-10 08:53:39 +020072 */
Peter Zijlstraefb30402012-01-26 13:32:15 +010073
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +100074#ifndef __ASSEMBLY__
75
Jason Barond430d3d2011-03-16 17:29:47 -040076#include <linux/types.h>
77#include <linux/compiler.h>
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +020078
79extern bool static_key_initialized;
80
Borislav Petkov5cdda512017-10-18 17:24:28 +020081#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))
Jason Barond430d3d2011-03-16 17:29:47 -040084
Ingo Molnarc5905af2012-02-24 08:31:31 +010085struct static_key {
Jason Barond430d3d2011-03-16 17:29:47 -040086 atomic_t enabled;
Masahiro Yamadacd27ccfc2022-02-14 01:57:17 +090087#ifdef CONFIG_JUMP_LABEL
Jason Baron3821fd32017-02-03 15:42:24 -050088/*
Steven Rostedt (VMware)b17ef2e2017-03-02 17:28:45 -050089 * Note:
90 * To make anonymous unions work with old compilers, the static
91 * initialization of them requires brackets. This creates a dependency
92 * on the order of the struct with the initializers. If any fields
93 * are added, STATIC_KEY_INIT_TRUE and STATIC_KEY_INIT_FALSE may need
94 * to be modified.
95 *
Jason Baron3821fd32017-02-03 15:42:24 -050096 * bit 0 => 1 if key is initially true
97 * 0 if initially false
98 * bit 1 => 1 if points to struct static_key_mod
99 * 0 if points to struct jump_entry
100 */
101 union {
102 unsigned long type;
103 struct jump_entry *entries;
104 struct static_key_mod *next;
105 };
Masahiro Yamadacd27ccfc2022-02-14 01:57:17 +0900106#endif /* CONFIG_JUMP_LABEL */
Jason Barond430d3d2011-03-16 17:29:47 -0400107};
108
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +1000109#endif /* __ASSEMBLY__ */
110
Masahiro Yamadae9666d12018-12-31 00:14:15 +0900111#ifdef CONFIG_JUMP_LABEL
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +1000112#include <asm/jump_label.h>
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700113
114#ifndef __ASSEMBLY__
Ard Biesheuvel50ff18a2018-09-18 23:51:37 -0700115#ifdef CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE
116
117struct jump_entry {
118 s32 code;
119 s32 target;
120 long key; // key may be far away from the core kernel under KASLR
121};
122
123static inline unsigned long jump_entry_code(const struct jump_entry *entry)
124{
125 return (unsigned long)&entry->code + entry->code;
126}
127
128static inline unsigned long jump_entry_target(const struct jump_entry *entry)
129{
130 return (unsigned long)&entry->target + entry->target;
131}
132
133static inline struct static_key *jump_entry_key(const struct jump_entry *entry)
134{
Ard Biesheuvel19483672018-09-18 23:51:42 -0700135 long offset = entry->key & ~3L;
Ard Biesheuvel50ff18a2018-09-18 23:51:37 -0700136
137 return (struct static_key *)((unsigned long)&entry->key + offset);
138}
139
140#else
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700141
142static inline unsigned long jump_entry_code(const struct jump_entry *entry)
143{
144 return entry->code;
145}
146
147static inline unsigned long jump_entry_target(const struct jump_entry *entry)
148{
149 return entry->target;
150}
151
152static inline struct static_key *jump_entry_key(const struct jump_entry *entry)
153{
Ard Biesheuvel19483672018-09-18 23:51:42 -0700154 return (struct static_key *)((unsigned long)entry->key & ~3UL);
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700155}
156
Ard Biesheuvel50ff18a2018-09-18 23:51:37 -0700157#endif
158
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700159static inline bool jump_entry_is_branch(const struct jump_entry *entry)
160{
161 return (unsigned long)entry->key & 1UL;
162}
163
164static inline bool jump_entry_is_init(const struct jump_entry *entry)
165{
Ard Biesheuvel19483672018-09-18 23:51:42 -0700166 return (unsigned long)entry->key & 2UL;
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700167}
168
Peter Zijlstra5af0ea22021-05-06 21:34:00 +0200169static inline void jump_entry_set_init(struct jump_entry *entry, bool set)
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700170{
Peter Zijlstra5af0ea22021-05-06 21:34:00 +0200171 if (set)
172 entry->key |= 2;
173 else
174 entry->key &= ~2;
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700175}
176
Peter Zijlstrafa5e5dc2021-05-06 21:33:58 +0200177static inline int jump_entry_size(struct jump_entry *entry)
178{
179#ifdef JUMP_LABEL_NOP_SIZE
180 return JUMP_LABEL_NOP_SIZE;
181#else
182 return arch_jump_entry_size(entry);
183#endif
184}
185
Ard Biesheuvel9ae033a2018-09-18 23:51:36 -0700186#endif
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +1000187#endif
188
189#ifndef __ASSEMBLY__
Jason Baronbf5438fc2010-09-17 11:09:00 -0400190
191enum jump_label_type {
Peter Zijlstra76b235c2015-07-24 14:45:44 +0200192 JUMP_LABEL_NOP = 0,
193 JUMP_LABEL_JMP,
Jason Baronbf5438fc2010-09-17 11:09:00 -0400194};
195
196struct module;
197
Masahiro Yamadae9666d12018-12-31 00:14:15 +0900198#ifdef CONFIG_JUMP_LABEL
Paolo Bonzini4c5ea0a2016-06-21 18:52:17 +0200199
Jason Baron3821fd32017-02-03 15:42:24 -0500200#define JUMP_TYPE_FALSE 0UL
201#define JUMP_TYPE_TRUE 1UL
202#define JUMP_TYPE_LINKED 2UL
203#define JUMP_TYPE_MASK 3UL
Ingo Molnarc5905af2012-02-24 08:31:31 +0100204
205static __always_inline bool static_key_false(struct static_key *key)
206{
Peter Zijlstra11276d52015-07-24 15:09:55 +0200207 return arch_static_branch(key, false);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100208}
209
210static __always_inline bool static_key_true(struct static_key *key)
211{
Peter Zijlstra11276d52015-07-24 15:09:55 +0200212 return !arch_static_branch(key, true);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100213}
214
Jason Baronbf5438fc2010-09-17 11:09:00 -0400215extern struct jump_entry __start___jump_table[];
216extern struct jump_entry __stop___jump_table[];
217
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700218extern void jump_label_init(void);
Jason Baron91bad2f2010-10-01 17:23:48 -0400219extern void jump_label_lock(void);
220extern void jump_label_unlock(void);
Jason Baronbf5438fc2010-09-17 11:09:00 -0400221extern void arch_jump_label_transform(struct jump_entry *entry,
Jeremy Fitzhardinge37348802011-09-29 11:10:05 -0700222 enum jump_label_type type);
Jeremy Fitzhardinge20284aa2011-10-03 11:01:46 -0700223extern void arch_jump_label_transform_static(struct jump_entry *entry,
224 enum jump_label_type type);
Daniel Bristot de Oliveirac2ba8a12019-06-12 11:57:30 +0200225extern bool arch_jump_label_transform_queue(struct jump_entry *entry,
226 enum jump_label_type type);
227extern void arch_jump_label_transform_apply(void);
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400228extern int jump_label_text_reserved(void *start, void *end);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100229extern void static_key_slow_inc(struct static_key *key);
230extern void static_key_slow_dec(struct static_key *key);
Peter Zijlstrace48c1462018-01-22 22:53:28 +0100231extern void static_key_slow_inc_cpuslocked(struct static_key *key);
232extern void static_key_slow_dec_cpuslocked(struct static_key *key);
Jason Baron1f69bf92016-08-03 13:46:36 -0700233extern int static_key_count(struct static_key *key);
234extern void static_key_enable(struct static_key *key);
235extern void static_key_disable(struct static_key *key);
Marc Zyngier5a405272017-08-01 09:02:56 +0100236extern void static_key_enable_cpuslocked(struct static_key *key);
237extern void static_key_disable_cpuslocked(struct static_key *key);
Ard Biesheuvelfdfd4282022-06-15 17:41:41 +0200238extern enum jump_label_type jump_label_init_type(struct jump_entry *entry);
Ingo Molnarc5905af2012-02-24 08:31:31 +0100239
Jason Baron1f69bf92016-08-03 13:46:36 -0700240/*
241 * We should be using ATOMIC_INIT() for initializing .enabled, but
242 * the inclusion of atomic.h is problematic for inclusion of jump_label.h
243 * in 'low-level' headers. Thus, we are initializing .enabled with a
244 * raw value, but have added a BUILD_BUG_ON() to catch any issues in
245 * jump_label_init() see: kernel/jump_label.c.
246 */
Peter Zijlstra11276d52015-07-24 15:09:55 +0200247#define STATIC_KEY_INIT_TRUE \
Jason Baron1f69bf92016-08-03 13:46:36 -0700248 { .enabled = { 1 }, \
Masahiro Yamadafe65deb2022-02-14 01:57:16 +0900249 { .type = JUMP_TYPE_TRUE } }
Peter Zijlstra11276d52015-07-24 15:09:55 +0200250#define STATIC_KEY_INIT_FALSE \
Jason Baron1f69bf92016-08-03 13:46:36 -0700251 { .enabled = { 0 }, \
Masahiro Yamadafe65deb2022-02-14 01:57:16 +0900252 { .type = JUMP_TYPE_FALSE } }
Jason Baronbf5438fc2010-09-17 11:09:00 -0400253
Masahiro Yamadae9666d12018-12-31 00:14:15 +0900254#else /* !CONFIG_JUMP_LABEL */
Jason Baronbf5438fc2010-09-17 11:09:00 -0400255
Jason Baron1f69bf92016-08-03 13:46:36 -0700256#include <linux/atomic.h>
257#include <linux/bug.h>
258
Peter Zijlstra656d0542022-05-02 12:30:20 +0200259static __always_inline int static_key_count(struct static_key *key)
Paolo Bonzini4c5ea0a2016-06-21 18:52:17 +0200260{
Peter Zijlstra656d0542022-05-02 12:30:20 +0200261 return arch_atomic_read(&key->enabled);
Paolo Bonzini4c5ea0a2016-06-21 18:52:17 +0200262}
263
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700264static __always_inline void jump_label_init(void)
265{
Hannes Frederic Sowac4b2c0c2013-10-19 21:48:53 +0200266 static_key_initialized = true;
Jeremy Fitzhardinge97ce2c82011-10-12 16:17:54 -0700267}
268
Ingo Molnarc5905af2012-02-24 08:31:31 +0100269static __always_inline bool static_key_false(struct static_key *key)
Jason Baronbf5438fc2010-09-17 11:09:00 -0400270{
Steven Rostedt (VMware)2f0df492020-12-11 16:37:54 -0500271 if (unlikely_notrace(static_key_count(key) > 0))
Jason Barond430d3d2011-03-16 17:29:47 -0400272 return true;
273 return false;
274}
275
Ingo Molnarc5905af2012-02-24 08:31:31 +0100276static __always_inline bool static_key_true(struct static_key *key)
277{
Steven Rostedt (VMware)2f0df492020-12-11 16:37:54 -0500278 if (likely_notrace(static_key_count(key) > 0))
Ingo Molnarc5905af2012-02-24 08:31:31 +0100279 return true;
280 return false;
281}
282
Ingo Molnarc5905af2012-02-24 08:31:31 +0100283static inline void static_key_slow_inc(struct static_key *key)
Jason Barond430d3d2011-03-16 17:29:47 -0400284{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200285 STATIC_KEY_CHECK_USE(key);
Jason Barond430d3d2011-03-16 17:29:47 -0400286 atomic_inc(&key->enabled);
287}
288
Ingo Molnarc5905af2012-02-24 08:31:31 +0100289static inline void static_key_slow_dec(struct static_key *key)
Jason Barond430d3d2011-03-16 17:29:47 -0400290{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200291 STATIC_KEY_CHECK_USE(key);
Jason Barond430d3d2011-03-16 17:29:47 -0400292 atomic_dec(&key->enabled);
Jason Baronbf5438fc2010-09-17 11:09:00 -0400293}
294
Peter Zijlstrace48c1462018-01-22 22:53:28 +0100295#define static_key_slow_inc_cpuslocked(key) static_key_slow_inc(key)
296#define static_key_slow_dec_cpuslocked(key) static_key_slow_dec(key)
297
Jason Baron4c3ef6d2010-09-17 11:09:08 -0400298static inline int jump_label_text_reserved(void *start, void *end)
299{
300 return 0;
301}
302
Jason Baron91bad2f2010-10-01 17:23:48 -0400303static inline void jump_label_lock(void) {}
304static inline void jump_label_unlock(void) {}
305
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200306static inline void static_key_enable(struct static_key *key)
307{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200308 STATIC_KEY_CHECK_USE(key);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200309
Paolo Bonzini1dbb6702017-08-01 17:24:04 +0200310 if (atomic_read(&key->enabled) != 0) {
311 WARN_ON_ONCE(atomic_read(&key->enabled) != 1);
312 return;
313 }
314 atomic_set(&key->enabled, 1);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200315}
316
317static inline void static_key_disable(struct static_key *key)
318{
Borislav Petkov5cdda512017-10-18 17:24:28 +0200319 STATIC_KEY_CHECK_USE(key);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200320
Paolo Bonzini1dbb6702017-08-01 17:24:04 +0200321 if (atomic_read(&key->enabled) != 1) {
322 WARN_ON_ONCE(atomic_read(&key->enabled) != 0);
323 return;
324 }
325 atomic_set(&key->enabled, 0);
Peter Zijlstrae33886b2015-07-24 15:03:40 +0200326}
327
Marc Zyngier5a405272017-08-01 09:02:56 +0100328#define static_key_enable_cpuslocked(k) static_key_enable((k))
329#define static_key_disable_cpuslocked(k) static_key_disable((k))
330
Jason Baron1f69bf92016-08-03 13:46:36 -0700331#define STATIC_KEY_INIT_TRUE { .enabled = ATOMIC_INIT(1) }
332#define STATIC_KEY_INIT_FALSE { .enabled = ATOMIC_INIT(0) }
333
Masahiro Yamadae9666d12018-12-31 00:14:15 +0900334#endif /* CONFIG_JUMP_LABEL */
Jason Baron1f69bf92016-08-03 13:46:36 -0700335
336#define STATIC_KEY_INIT STATIC_KEY_INIT_FALSE
337#define jump_label_enabled static_key_enabled
338
Peter Zijlstra11276d52015-07-24 15:09:55 +0200339/* -------------------------------------------------------------------------- */
340
341/*
342 * Two type wrappers around static_key, such that we can use compile time
343 * type differentiation to emit the right code.
344 *
345 * All the below code is macros in order to play type games.
346 */
347
348struct static_key_true {
349 struct static_key key;
350};
351
352struct static_key_false {
353 struct static_key key;
354};
355
356#define STATIC_KEY_TRUE_INIT (struct static_key_true) { .key = STATIC_KEY_INIT_TRUE, }
357#define STATIC_KEY_FALSE_INIT (struct static_key_false){ .key = STATIC_KEY_INIT_FALSE, }
358
359#define DEFINE_STATIC_KEY_TRUE(name) \
360 struct static_key_true name = STATIC_KEY_TRUE_INIT
361
Chris von Recklinghausenb5cb15d2018-07-03 15:43:08 -0400362#define DEFINE_STATIC_KEY_TRUE_RO(name) \
363 struct static_key_true name __ro_after_init = STATIC_KEY_TRUE_INIT
364
Tony Luckb8fb0372016-09-01 11:39:33 -0700365#define DECLARE_STATIC_KEY_TRUE(name) \
366 extern struct static_key_true name
367
Peter Zijlstra11276d52015-07-24 15:09:55 +0200368#define DEFINE_STATIC_KEY_FALSE(name) \
369 struct static_key_false name = STATIC_KEY_FALSE_INIT
370
Chris von Recklinghausenb5cb15d2018-07-03 15:43:08 -0400371#define DEFINE_STATIC_KEY_FALSE_RO(name) \
372 struct static_key_false name __ro_after_init = STATIC_KEY_FALSE_INIT
373
Tony Luckb8fb0372016-09-01 11:39:33 -0700374#define DECLARE_STATIC_KEY_FALSE(name) \
375 extern struct static_key_false name
376
Catalin Marinasef0da552016-09-05 18:25:47 +0100377#define DEFINE_STATIC_KEY_ARRAY_TRUE(name, count) \
378 struct static_key_true name[count] = { \
379 [0 ... (count) - 1] = STATIC_KEY_TRUE_INIT, \
380 }
381
382#define DEFINE_STATIC_KEY_ARRAY_FALSE(name, count) \
383 struct static_key_false name[count] = { \
384 [0 ... (count) - 1] = STATIC_KEY_FALSE_INIT, \
385 }
386
Kees Cook0d66ccc2021-04-01 16:23:42 -0700387#define _DEFINE_STATIC_KEY_1(name) DEFINE_STATIC_KEY_TRUE(name)
388#define _DEFINE_STATIC_KEY_0(name) DEFINE_STATIC_KEY_FALSE(name)
389#define DEFINE_STATIC_KEY_MAYBE(cfg, name) \
390 __PASTE(_DEFINE_STATIC_KEY_, IS_ENABLED(cfg))(name)
391
392#define _DEFINE_STATIC_KEY_RO_1(name) DEFINE_STATIC_KEY_TRUE_RO(name)
393#define _DEFINE_STATIC_KEY_RO_0(name) DEFINE_STATIC_KEY_FALSE_RO(name)
394#define DEFINE_STATIC_KEY_MAYBE_RO(cfg, name) \
395 __PASTE(_DEFINE_STATIC_KEY_RO_, IS_ENABLED(cfg))(name)
396
397#define _DECLARE_STATIC_KEY_1(name) DECLARE_STATIC_KEY_TRUE(name)
398#define _DECLARE_STATIC_KEY_0(name) DECLARE_STATIC_KEY_FALSE(name)
399#define DECLARE_STATIC_KEY_MAYBE(cfg, name) \
400 __PASTE(_DECLARE_STATIC_KEY_, IS_ENABLED(cfg))(name)
401
Tejun Heofa128fd2015-09-18 11:56:28 -0400402extern bool ____wrong_branch_error(void);
403
404#define static_key_enabled(x) \
405({ \
406 if (!__builtin_types_compatible_p(typeof(*x), struct static_key) && \
407 !__builtin_types_compatible_p(typeof(*x), struct static_key_true) &&\
408 !__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
409 ____wrong_branch_error(); \
410 static_key_count((struct static_key *)x) > 0; \
411})
412
Masahiro Yamadae9666d12018-12-31 00:14:15 +0900413#ifdef CONFIG_JUMP_LABEL
Peter Zijlstra11276d52015-07-24 15:09:55 +0200414
415/*
416 * Combine the right initial value (type) with the right branch order
417 * to generate the desired result.
418 *
419 *
420 * type\branch| likely (1) | unlikely (0)
421 * -----------+-----------------------+------------------
422 * | |
423 * true (1) | ... | ...
424 * | NOP | JMP L
425 * | <br-stmts> | 1: ...
426 * | L: ... |
427 * | |
428 * | | L: <br-stmts>
429 * | | jmp 1b
430 * | |
431 * -----------+-----------------------+------------------
432 * | |
433 * false (0) | ... | ...
434 * | JMP L | NOP
435 * | <br-stmts> | 1: ...
436 * | L: ... |
437 * | |
438 * | | L: <br-stmts>
439 * | | jmp 1b
440 * | |
441 * -----------+-----------------------+------------------
442 *
443 * The initial value is encoded in the LSB of static_key::entries,
444 * type: 0 = false, 1 = true.
445 *
446 * The branch type is encoded in the LSB of jump_entry::key,
447 * branch: 0 = unlikely, 1 = likely.
448 *
449 * This gives the following logic table:
450 *
451 * enabled type branch instuction
452 * -----------------------------+-----------
453 * 0 0 0 | NOP
454 * 0 0 1 | JMP
455 * 0 1 0 | NOP
456 * 0 1 1 | JMP
457 *
458 * 1 0 0 | JMP
459 * 1 0 1 | NOP
460 * 1 1 0 | JMP
461 * 1 1 1 | NOP
462 *
463 * Which gives the following functions:
464 *
465 * dynamic: instruction = enabled ^ branch
466 * static: instruction = type ^ branch
467 *
468 * See jump_label_type() / jump_label_init_type().
469 */
470
Peter Zijlstra11276d52015-07-24 15:09:55 +0200471#define static_branch_likely(x) \
472({ \
473 bool branch; \
474 if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
475 branch = !arch_static_branch(&(x)->key, true); \
476 else if (__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
477 branch = !arch_static_branch_jump(&(x)->key, true); \
478 else \
479 branch = ____wrong_branch_error(); \
Steven Rostedt (VMware)2f0df492020-12-11 16:37:54 -0500480 likely_notrace(branch); \
Peter Zijlstra11276d52015-07-24 15:09:55 +0200481})
482
483#define static_branch_unlikely(x) \
484({ \
485 bool branch; \
486 if (__builtin_types_compatible_p(typeof(*x), struct static_key_true)) \
487 branch = arch_static_branch_jump(&(x)->key, false); \
488 else if (__builtin_types_compatible_p(typeof(*x), struct static_key_false)) \
489 branch = arch_static_branch(&(x)->key, false); \
490 else \
491 branch = ____wrong_branch_error(); \
Steven Rostedt (VMware)2f0df492020-12-11 16:37:54 -0500492 unlikely_notrace(branch); \
Peter Zijlstra11276d52015-07-24 15:09:55 +0200493})
494
Masahiro Yamadae9666d12018-12-31 00:14:15 +0900495#else /* !CONFIG_JUMP_LABEL */
Peter Zijlstra11276d52015-07-24 15:09:55 +0200496
Steven Rostedt (VMware)2f0df492020-12-11 16:37:54 -0500497#define static_branch_likely(x) likely_notrace(static_key_enabled(&(x)->key))
498#define static_branch_unlikely(x) unlikely_notrace(static_key_enabled(&(x)->key))
Peter Zijlstra11276d52015-07-24 15:09:55 +0200499
Masahiro Yamadae9666d12018-12-31 00:14:15 +0900500#endif /* CONFIG_JUMP_LABEL */
Peter Zijlstra11276d52015-07-24 15:09:55 +0200501
Kees Cook0d66ccc2021-04-01 16:23:42 -0700502#define static_branch_maybe(config, x) \
503 (IS_ENABLED(config) ? static_branch_likely(x) \
504 : static_branch_unlikely(x))
505
Peter Zijlstra11276d52015-07-24 15:09:55 +0200506/*
507 * Advanced usage; refcount, branch is enabled when: count != 0
508 */
509
510#define static_branch_inc(x) static_key_slow_inc(&(x)->key)
511#define static_branch_dec(x) static_key_slow_dec(&(x)->key)
Peter Zijlstrace48c1462018-01-22 22:53:28 +0100512#define static_branch_inc_cpuslocked(x) static_key_slow_inc_cpuslocked(&(x)->key)
513#define static_branch_dec_cpuslocked(x) static_key_slow_dec_cpuslocked(&(x)->key)
Peter Zijlstra11276d52015-07-24 15:09:55 +0200514
515/*
516 * Normal usage; boolean enable/disable.
517 */
518
Marc Zyngier5a405272017-08-01 09:02:56 +0100519#define static_branch_enable(x) static_key_enable(&(x)->key)
520#define static_branch_disable(x) static_key_disable(&(x)->key)
521#define static_branch_enable_cpuslocked(x) static_key_enable_cpuslocked(&(x)->key)
522#define static_branch_disable_cpuslocked(x) static_key_disable_cpuslocked(&(x)->key)
Peter Zijlstra11276d52015-07-24 15:09:55 +0200523
Anton Blanchardc0ccf6f2015-04-09 13:51:31 +1000524#endif /* __ASSEMBLY__ */
Luis R. Rodriguez85b36c92017-01-18 09:38:04 -0800525
526#endif /* _LINUX_JUMP_LABEL_H */