Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Frederic Weisbecker | 91d1aa43 | 2012-11-27 19:33:25 +0100 | [diff] [blame] | 2 | #ifndef _LINUX_CONTEXT_TRACKING_H |
| 3 | #define _LINUX_CONTEXT_TRACKING_H |
| 4 | |
Frederic Weisbecker | 91d1aa43 | 2012-11-27 19:33:25 +0100 | [diff] [blame] | 5 | #include <linux/sched.h> |
Frederic Weisbecker | 521921b | 2013-05-16 01:21:38 +0200 | [diff] [blame] | 6 | #include <linux/vtime.h> |
Frederic Weisbecker | e7358b3 | 2013-07-12 02:15:49 +0200 | [diff] [blame] | 7 | #include <linux/context_tracking_state.h> |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 8 | #include <asm/ptrace.h> |
Frederic Weisbecker | 95a79fd | 2013-01-07 18:12:14 +0100 | [diff] [blame] | 9 | |
Frederic Weisbecker | 521921b | 2013-05-16 01:21:38 +0200 | [diff] [blame] | 10 | |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 11 | #ifdef CONFIG_CONTEXT_TRACKING |
Frederic Weisbecker | 2e70933 | 2013-07-10 00:55:25 +0200 | [diff] [blame] | 12 | extern void context_tracking_cpu_set(int cpu); |
| 13 | |
Paolo Bonzini | d0e536d | 2015-10-28 02:39:56 +0100 | [diff] [blame] | 14 | /* Called with interrupts disabled. */ |
| 15 | extern void __context_tracking_enter(enum ctx_state state); |
| 16 | extern void __context_tracking_exit(enum ctx_state state); |
| 17 | |
Rik van Riel | 3aab4f5 | 2015-02-10 15:27:50 -0500 | [diff] [blame] | 18 | extern void context_tracking_enter(enum ctx_state state); |
| 19 | extern void context_tracking_exit(enum ctx_state state); |
Frederic Weisbecker | ad65782 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 20 | extern void context_tracking_user_enter(void); |
| 21 | extern void context_tracking_user_exit(void); |
| 22 | |
| 23 | static inline void user_enter(void) |
| 24 | { |
Frederic Weisbecker | 58135f5 | 2013-11-06 14:45:57 +0100 | [diff] [blame] | 25 | if (context_tracking_is_enabled()) |
Paolo Bonzini | f70cd6b | 2015-10-28 02:39:55 +0100 | [diff] [blame] | 26 | context_tracking_enter(CONTEXT_USER); |
Frederic Weisbecker | ad65782 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 27 | |
| 28 | } |
| 29 | static inline void user_exit(void) |
| 30 | { |
Frederic Weisbecker | 58135f5 | 2013-11-06 14:45:57 +0100 | [diff] [blame] | 31 | if (context_tracking_is_enabled()) |
Paolo Bonzini | f70cd6b | 2015-10-28 02:39:55 +0100 | [diff] [blame] | 32 | context_tracking_exit(CONTEXT_USER); |
Frederic Weisbecker | ad65782 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 33 | } |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 34 | |
Paolo Bonzini | 2e9d1e1 | 2016-06-20 16:58:29 +0200 | [diff] [blame] | 35 | /* Called with interrupts disabled. */ |
| 36 | static inline void user_enter_irqoff(void) |
| 37 | { |
| 38 | if (context_tracking_is_enabled()) |
| 39 | __context_tracking_enter(CONTEXT_USER); |
| 40 | |
| 41 | } |
| 42 | static inline void user_exit_irqoff(void) |
| 43 | { |
| 44 | if (context_tracking_is_enabled()) |
| 45 | __context_tracking_exit(CONTEXT_USER); |
| 46 | } |
| 47 | |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 48 | static inline enum ctx_state exception_enter(void) |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 49 | { |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 50 | enum ctx_state prev_ctx; |
| 51 | |
Frederic Weisbecker | 58135f5 | 2013-11-06 14:45:57 +0100 | [diff] [blame] | 52 | if (!context_tracking_is_enabled()) |
Frederic Weisbecker | ad65782 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 53 | return 0; |
| 54 | |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 55 | prev_ctx = this_cpu_read(context_tracking.state); |
Rik van Riel | 3aab4f5 | 2015-02-10 15:27:50 -0500 | [diff] [blame] | 56 | if (prev_ctx != CONTEXT_KERNEL) |
| 57 | context_tracking_exit(prev_ctx); |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 58 | |
| 59 | return prev_ctx; |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 60 | } |
| 61 | |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 62 | static inline void exception_exit(enum ctx_state prev_ctx) |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 63 | { |
Frederic Weisbecker | 58135f5 | 2013-11-06 14:45:57 +0100 | [diff] [blame] | 64 | if (context_tracking_is_enabled()) { |
Rik van Riel | 3aab4f5 | 2015-02-10 15:27:50 -0500 | [diff] [blame] | 65 | if (prev_ctx != CONTEXT_KERNEL) |
| 66 | context_tracking_enter(prev_ctx); |
Frederic Weisbecker | ad65782 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 67 | } |
Frederic Weisbecker | 56dd947 | 2013-02-24 00:23:25 +0100 | [diff] [blame] | 68 | } |
| 69 | |
Andy Lutomirski | f928164 | 2015-07-03 12:44:21 -0700 | [diff] [blame] | 70 | |
| 71 | /** |
| 72 | * ct_state() - return the current context tracking state if known |
| 73 | * |
| 74 | * Returns the current cpu's context tracking state if context tracking |
| 75 | * is enabled. If context tracking is disabled, returns |
| 76 | * CONTEXT_DISABLED. This should be used primarily for debugging. |
| 77 | */ |
| 78 | static inline enum ctx_state ct_state(void) |
| 79 | { |
| 80 | return context_tracking_is_enabled() ? |
| 81 | this_cpu_read(context_tracking.state) : CONTEXT_DISABLED; |
| 82 | } |
Frederic Weisbecker | 91d1aa43 | 2012-11-27 19:33:25 +0100 | [diff] [blame] | 83 | #else |
Frederic Weisbecker | 91d1aa43 | 2012-11-27 19:33:25 +0100 | [diff] [blame] | 84 | static inline void user_enter(void) { } |
| 85 | static inline void user_exit(void) { } |
Paolo Bonzini | 2e9d1e1 | 2016-06-20 16:58:29 +0200 | [diff] [blame] | 86 | static inline void user_enter_irqoff(void) { } |
| 87 | static inline void user_exit_irqoff(void) { } |
Frederic Weisbecker | 6c1e025 | 2013-02-24 01:19:14 +0100 | [diff] [blame] | 88 | static inline enum ctx_state exception_enter(void) { return 0; } |
| 89 | static inline void exception_exit(enum ctx_state prev_ctx) { } |
Andy Lutomirski | f928164 | 2015-07-03 12:44:21 -0700 | [diff] [blame] | 90 | static inline enum ctx_state ct_state(void) { return CONTEXT_DISABLED; } |
Frederic Weisbecker | 91d1aa43 | 2012-11-27 19:33:25 +0100 | [diff] [blame] | 91 | #endif /* !CONFIG_CONTEXT_TRACKING */ |
| 92 | |
Andy Lutomirski | f928164 | 2015-07-03 12:44:21 -0700 | [diff] [blame] | 93 | #define CT_WARN_ON(cond) WARN_ON(context_tracking_is_enabled() && (cond)) |
Frederic Weisbecker | 65f382f | 2013-07-11 19:12:32 +0200 | [diff] [blame] | 94 | |
| 95 | #ifdef CONFIG_CONTEXT_TRACKING_FORCE |
| 96 | extern void context_tracking_init(void); |
| 97 | #else |
| 98 | static inline void context_tracking_init(void) { } |
| 99 | #endif /* CONFIG_CONTEXT_TRACKING_FORCE */ |
| 100 | |
| 101 | |
Frederic Weisbecker | 2d854e5 | 2013-07-12 19:02:30 +0200 | [diff] [blame] | 102 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING_GEN |
Paolo Bonzini | ebaac173 | 2016-06-15 15:09:28 +0200 | [diff] [blame] | 103 | /* must be called with irqs disabled */ |
| 104 | static inline void guest_enter_irqoff(void) |
Frederic Weisbecker | 48d6a81 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 105 | { |
Frederic Weisbecker | 55dbdcf | 2015-11-19 16:47:32 +0100 | [diff] [blame] | 106 | if (vtime_accounting_cpu_enabled()) |
Frederic Weisbecker | 48d6a81 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 107 | vtime_guest_enter(current); |
| 108 | else |
| 109 | current->flags |= PF_VCPU; |
Rik van Riel | 126a6a5 | 2015-02-10 15:27:54 -0500 | [diff] [blame] | 110 | |
| 111 | if (context_tracking_is_enabled()) |
Paolo Bonzini | d0e536d | 2015-10-28 02:39:56 +0100 | [diff] [blame] | 112 | __context_tracking_enter(CONTEXT_GUEST); |
Paolo Bonzini | ebaac173 | 2016-06-15 15:09:28 +0200 | [diff] [blame] | 113 | |
| 114 | /* KVM does not hold any references to rcu protected data when it |
| 115 | * switches CPU into a guest mode. In fact switching to a guest mode |
| 116 | * is very similar to exiting to userspace from rcu point of view. In |
| 117 | * addition CPU may stay in a guest mode for quite a long time (up to |
| 118 | * one time slice). Lets treat guest mode as quiescent state, just like |
| 119 | * we do with user-mode execution. |
| 120 | */ |
| 121 | if (!context_tracking_cpu_is_enabled()) |
| 122 | rcu_virt_note_context_switch(smp_processor_id()); |
Frederic Weisbecker | 48d6a81 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 123 | } |
| 124 | |
Paolo Bonzini | ebaac173 | 2016-06-15 15:09:28 +0200 | [diff] [blame] | 125 | static inline void guest_exit_irqoff(void) |
Frederic Weisbecker | 48d6a81 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 126 | { |
Rik van Riel | 126a6a5 | 2015-02-10 15:27:54 -0500 | [diff] [blame] | 127 | if (context_tracking_is_enabled()) |
Paolo Bonzini | d0e536d | 2015-10-28 02:39:56 +0100 | [diff] [blame] | 128 | __context_tracking_exit(CONTEXT_GUEST); |
Rik van Riel | 126a6a5 | 2015-02-10 15:27:54 -0500 | [diff] [blame] | 129 | |
Frederic Weisbecker | 55dbdcf | 2015-11-19 16:47:32 +0100 | [diff] [blame] | 130 | if (vtime_accounting_cpu_enabled()) |
Frederic Weisbecker | 48d6a81 | 2013-07-10 02:44:35 +0200 | [diff] [blame] | 131 | vtime_guest_exit(current); |
| 132 | else |
| 133 | current->flags &= ~PF_VCPU; |
| 134 | } |
Frederic Weisbecker | 73d424f | 2013-07-11 19:42:13 +0200 | [diff] [blame] | 135 | |
Frederic Weisbecker | 2d854e5 | 2013-07-12 19:02:30 +0200 | [diff] [blame] | 136 | #else |
Paolo Bonzini | ebaac173 | 2016-06-15 15:09:28 +0200 | [diff] [blame] | 137 | static inline void guest_enter_irqoff(void) |
Frederic Weisbecker | 2d854e5 | 2013-07-12 19:02:30 +0200 | [diff] [blame] | 138 | { |
| 139 | /* |
Frederic Weisbecker | 5b206d4 | 2013-07-12 19:05:14 +0200 | [diff] [blame] | 140 | * This is running in ioctl context so its safe |
| 141 | * to assume that it's the stime pending cputime |
| 142 | * to flush. |
Frederic Weisbecker | 2d854e5 | 2013-07-12 19:02:30 +0200 | [diff] [blame] | 143 | */ |
| 144 | vtime_account_system(current); |
| 145 | current->flags |= PF_VCPU; |
Paolo Bonzini | ebaac173 | 2016-06-15 15:09:28 +0200 | [diff] [blame] | 146 | rcu_virt_note_context_switch(smp_processor_id()); |
Frederic Weisbecker | 2d854e5 | 2013-07-12 19:02:30 +0200 | [diff] [blame] | 147 | } |
| 148 | |
Paolo Bonzini | ebaac173 | 2016-06-15 15:09:28 +0200 | [diff] [blame] | 149 | static inline void guest_exit_irqoff(void) |
Frederic Weisbecker | 2d854e5 | 2013-07-12 19:02:30 +0200 | [diff] [blame] | 150 | { |
Frederic Weisbecker | 5b206d4 | 2013-07-12 19:05:14 +0200 | [diff] [blame] | 151 | /* Flush the guest cputime we spent on the guest */ |
Frederic Weisbecker | 2d854e5 | 2013-07-12 19:02:30 +0200 | [diff] [blame] | 152 | vtime_account_system(current); |
| 153 | current->flags &= ~PF_VCPU; |
| 154 | } |
| 155 | #endif /* CONFIG_VIRT_CPU_ACCOUNTING_GEN */ |
| 156 | |
Paolo Bonzini | ebaac173 | 2016-06-15 15:09:28 +0200 | [diff] [blame] | 157 | static inline void guest_enter(void) |
| 158 | { |
| 159 | unsigned long flags; |
| 160 | |
| 161 | local_irq_save(flags); |
| 162 | guest_enter_irqoff(); |
| 163 | local_irq_restore(flags); |
| 164 | } |
| 165 | |
| 166 | static inline void guest_exit(void) |
| 167 | { |
| 168 | unsigned long flags; |
| 169 | |
| 170 | local_irq_save(flags); |
| 171 | guest_exit_irqoff(); |
| 172 | local_irq_restore(flags); |
| 173 | } |
| 174 | |
Frederic Weisbecker | 91d1aa43 | 2012-11-27 19:33:25 +0100 | [diff] [blame] | 175 | #endif |