jump_label.h 5.2 KB
Newer Older
1 2 3
#ifndef _LINUX_JUMP_LABEL_H
#define _LINUX_JUMP_LABEL_H

4 5 6 7 8 9 10 11
/*
 * Jump label support
 *
 * Copyright (C) 2009-2012 Jason Baron <jbaron@redhat.com>
 * Copyright (C) 2011-2012 Peter Zijlstra <pzijlstr@redhat.com>
 *
 * Jump labels provide an interface to generate dynamic branches using
 * self-modifying code. Assuming toolchain and architecture support the result
12
 * of a "if (static_key_false(&key))" statement is a unconditional branch (which
13 14
 * defaults to false - and the true block is placed out of line).
 *
15 16
 * However at runtime we can change the branch target using
 * static_key_slow_{inc,dec}(). These function as a 'reference' count on the key
17 18 19
 * object and for as long as there are references all branches referring to
 * that particular key will point to the (out of line) true block.
 *
20
 * Since this relies on modifying code the static_key_slow_{inc,dec}() functions
21 22 23 24 25 26 27 28
 * must be considered absolute slow paths (machine wide synchronization etc.).
 * OTOH, since the affected branches are unconditional their runtime overhead
 * will be absolutely minimal, esp. in the default (off) case where the total
 * effect is a single NOP of appropriate size. The on case will patch in a jump
 * to the out-of-line block.
 *
 * When the control is directly exposed to userspace it is prudent to delay the
 * decrement to avoid high frequency code modifications which can (and do)
29 30
 * cause significant performance degradation. Struct static_key_deferred and
 * static_key_slow_dec_deferred() provide for this.
31 32 33
 *
 * Lacking toolchain and or architecture support, it falls back to a simple
 * conditional branch.
34 35 36 37 38 39 40 41 42 43 44
 *
 * struct static_key my_key = STATIC_KEY_INIT_TRUE;
 *
 *   if (static_key_true(&my_key)) {
 *   }
 *
 * will result in the true case being in-line and starts the key with a single
 * reference. Mixing static_key_true() and static_key_false() on the same key is not
 * allowed.
 *
 * Not initializing the key (static data is initialized to 0s anyway) is the
J
Jason Baron 已提交
45
 * same as using STATIC_KEY_INIT_FALSE.
46 47
 *
*/
48

49 50 51
#include <linux/types.h>
#include <linux/compiler.h>

52
#if defined(CC_HAVE_ASM_GOTO) && defined(CONFIG_JUMP_LABEL)
53

54
struct static_key {
55
	atomic_t enabled;
56
/* Set lsb bit to 1 if branch is default true, 0 ot */
57 58
	struct jump_entry *entries;
#ifdef CONFIG_MODULES
59
	struct static_key_mod *next;
60 61 62
#endif
};

63 64
# include <asm/jump_label.h>
# define HAVE_JUMP_LABEL
65
#endif	/* CC_HAVE_ASM_GOTO && CONFIG_JUMP_LABEL */
66 67

enum jump_label_type {
68
	JUMP_LABEL_DISABLE = 0,
69 70 71 72 73
	JUMP_LABEL_ENABLE,
};

struct module;

74
#include <linux/atomic.h>
75 76
#ifdef HAVE_JUMP_LABEL

77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
#define JUMP_LABEL_TRUE_BRANCH 1UL

static
inline struct jump_entry *jump_label_get_entries(struct static_key *key)
{
	return (struct jump_entry *)((unsigned long)key->entries
						& ~JUMP_LABEL_TRUE_BRANCH);
}

static inline bool jump_label_get_branch_default(struct static_key *key)
{
	if ((unsigned long)key->entries & JUMP_LABEL_TRUE_BRANCH)
		return true;
	return false;
}

static __always_inline bool static_key_false(struct static_key *key)
{
	return arch_static_branch(key);
}
97

98 99 100 101 102
static __always_inline bool static_key_true(struct static_key *key)
{
	return !static_key_false(key);
}

103 104 105
extern struct jump_entry __start___jump_table[];
extern struct jump_entry __stop___jump_table[];

106
extern void jump_label_init(void);
107 108
extern void jump_label_lock(void);
extern void jump_label_unlock(void);
109
extern void arch_jump_label_transform(struct jump_entry *entry,
110
				      enum jump_label_type type);
111 112
extern void arch_jump_label_transform_static(struct jump_entry *entry,
					     enum jump_label_type type);
113
extern int jump_label_text_reserved(void *start, void *end);
114 115
extern void static_key_slow_inc(struct static_key *key);
extern void static_key_slow_dec(struct static_key *key);
116
extern void jump_label_apply_nops(struct module *mod);
117 118 119 120 121

#define STATIC_KEY_INIT_TRUE ((struct static_key) \
	{ .enabled = ATOMIC_INIT(1), .entries = (void *)1 })
#define STATIC_KEY_INIT_FALSE ((struct static_key) \
	{ .enabled = ATOMIC_INIT(0), .entries = (void *)0 })
122

123
#else  /* !HAVE_JUMP_LABEL */
124

125
struct static_key {
126 127
	atomic_t enabled;
};
128

129 130 131 132
static __always_inline void jump_label_init(void)
{
}

133 134 135 136 137 138 139 140
static __always_inline bool static_key_false(struct static_key *key)
{
	if (unlikely(atomic_read(&key->enabled)) > 0)
		return true;
	return false;
}

static __always_inline bool static_key_true(struct static_key *key)
141
{
142
	if (likely(atomic_read(&key->enabled)) > 0)
143 144 145
		return true;
	return false;
}
146

147
static inline void static_key_slow_inc(struct static_key *key)
148 149 150
{
	atomic_inc(&key->enabled);
}
151

152
static inline void static_key_slow_dec(struct static_key *key)
153
{
154
	atomic_dec(&key->enabled);
155 156
}

157 158 159 160 161
static inline int jump_label_text_reserved(void *start, void *end)
{
	return 0;
}

162 163 164
static inline void jump_label_lock(void) {}
static inline void jump_label_unlock(void) {}

165 166 167 168
static inline int jump_label_apply_nops(struct module *mod)
{
	return 0;
}
169

170 171 172 173 174
#define STATIC_KEY_INIT_TRUE ((struct static_key) \
		{ .enabled = ATOMIC_INIT(1) })
#define STATIC_KEY_INIT_FALSE ((struct static_key) \
		{ .enabled = ATOMIC_INIT(0) })

175
#endif	/* HAVE_JUMP_LABEL */
176

177 178
#define STATIC_KEY_INIT STATIC_KEY_INIT_FALSE
#define jump_label_enabled static_key_enabled
179

180 181 182 183 184
static inline bool static_key_enabled(struct static_key *key)
{
	return (atomic_read(&key->enabled) > 0);
}

185
#endif	/* _LINUX_JUMP_LABEL_H */