]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/context_tracking_state.h
net: rtnetlink: validate IFLA_MTU attribute in rtnl_create_link()
[mirror_ubuntu-bionic-kernel.git] / include / linux / context_tracking_state.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
e7358b3b
FW
2#ifndef _LINUX_CONTEXT_TRACKING_STATE_H
3#define _LINUX_CONTEXT_TRACKING_STATE_H
4
5#include <linux/percpu.h>
6#include <linux/static_key.h>
7
8struct context_tracking {
9 /*
10 * When active is false, probes are unset in order
11 * to minimize overhead: TIF flags are cleared
12 * and calls to user_enter/exit are ignored. This
13 * may be further optimized using static keys.
14 */
15 bool active;
aed5ed47 16 int recursion;
e7358b3b 17 enum ctx_state {
f9281648 18 CONTEXT_DISABLED = -1, /* returned by ct_state() if unknown */
c467ea76
FW
19 CONTEXT_KERNEL = 0,
20 CONTEXT_USER,
126a6a54 21 CONTEXT_GUEST,
e7358b3b
FW
22 } state;
23};
24
25#ifdef CONFIG_CONTEXT_TRACKING
ed11a7f1 26extern struct static_key_false context_tracking_enabled;
e7358b3b
FW
27DECLARE_PER_CPU(struct context_tracking, context_tracking);
28
58135f57
FW
29static inline bool context_tracking_is_enabled(void)
30{
ed11a7f1 31 return static_branch_unlikely(&context_tracking_enabled);
58135f57 32}
d0df09eb
FW
33
34static inline bool context_tracking_cpu_is_enabled(void)
e7358b3b 35{
d0df09eb 36 return __this_cpu_read(context_tracking.active);
e7358b3b
FW
37}
38
d0df09eb 39static inline bool context_tracking_in_user(void)
e7358b3b 40{
c467ea76 41 return __this_cpu_read(context_tracking.state) == CONTEXT_USER;
e7358b3b
FW
42}
43#else
44static inline bool context_tracking_in_user(void) { return false; }
45static inline bool context_tracking_active(void) { return false; }
a3a9c7df
RR
46static inline bool context_tracking_is_enabled(void) { return false; }
47static inline bool context_tracking_cpu_is_enabled(void) { return false; }
e7358b3b
FW
48#endif /* CONFIG_CONTEXT_TRACKING */
49
50#endif