Frederic Weisbecker | e7358b3 | 2013-07-12 02:15:49 +0200 | [diff] [blame] | 1 | #ifndef _LINUX_CONTEXT_TRACKING_STATE_H |
| 2 | #define _LINUX_CONTEXT_TRACKING_STATE_H |
| 3 | |
| 4 | #include <linux/percpu.h> |
| 5 | #include <linux/static_key.h> |
| 6 | |
| 7 | struct context_tracking { |
| 8 | /* |
| 9 | * When active is false, probes are unset in order |
| 10 | * to minimize overhead: TIF flags are cleared |
| 11 | * and calls to user_enter/exit are ignored. This |
| 12 | * may be further optimized using static keys. |
| 13 | */ |
| 14 | bool active; |
| 15 | enum ctx_state { |
Frederic Weisbecker | c467ea7 | 2015-03-04 18:06:33 +0100 | [diff] [blame] | 16 | CONTEXT_KERNEL = 0, |
| 17 | CONTEXT_USER, |
Rik van Riel | 126a6a5 | 2015-02-10 15:27:54 -0500 | [diff] [blame] | 18 | CONTEXT_GUEST, |
Frederic Weisbecker | e7358b3 | 2013-07-12 02:15:49 +0200 | [diff] [blame] | 19 | } state; |
| 20 | }; |
| 21 | |
| 22 | #ifdef CONFIG_CONTEXT_TRACKING |
| 23 | extern struct static_key context_tracking_enabled; |
| 24 | DECLARE_PER_CPU(struct context_tracking, context_tracking); |
| 25 | |
Frederic Weisbecker | 58135f5 | 2013-11-06 14:45:57 +0100 | [diff] [blame] | 26 | static inline bool context_tracking_is_enabled(void) |
| 27 | { |
| 28 | return static_key_false(&context_tracking_enabled); |
| 29 | } |
Frederic Weisbecker | d0df09e | 2013-11-06 15:11:57 +0100 | [diff] [blame] | 30 | |
| 31 | static inline bool context_tracking_cpu_is_enabled(void) |
| 32 | { |
| 33 | return __this_cpu_read(context_tracking.active); |
| 34 | } |
| 35 | |
Frederic Weisbecker | e7358b3 | 2013-07-12 02:15:49 +0200 | [diff] [blame] | 36 | static inline bool context_tracking_in_user(void) |
| 37 | { |
Frederic Weisbecker | c467ea7 | 2015-03-04 18:06:33 +0100 | [diff] [blame] | 38 | return __this_cpu_read(context_tracking.state) == CONTEXT_USER; |
Frederic Weisbecker | e7358b3 | 2013-07-12 02:15:49 +0200 | [diff] [blame] | 39 | } |
Frederic Weisbecker | e7358b3 | 2013-07-12 02:15:49 +0200 | [diff] [blame] | 40 | #else |
| 41 | static inline bool context_tracking_in_user(void) { return false; } |
| 42 | static inline bool context_tracking_active(void) { return false; } |
Rik van Riel | a3a9c7d | 2015-02-10 15:27:51 -0500 | [diff] [blame] | 43 | static inline bool context_tracking_is_enabled(void) { return false; } |
| 44 | static inline bool context_tracking_cpu_is_enabled(void) { return false; } |
Frederic Weisbecker | e7358b3 | 2013-07-12 02:15:49 +0200 | [diff] [blame] | 45 | #endif /* CONFIG_CONTEXT_TRACKING */ |
| 46 | |
| 47 | #endif |