blob: 5b11a10e196a82450084067832f67e53d305604f [file] [log] [blame]
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +01001/*
2 * Context tracking: Probe on high level context boundaries such as kernel
3 * and userspace. This includes syscalls and exceptions entry/exit.
4 *
5 * This is used by RCU to remove its dependency on the timer tick while a CPU
6 * runs in userspace.
7 *
8 * Started by Frederic Weisbecker:
9 *
10 * Copyright (C) 2012 Red Hat, Inc., Frederic Weisbecker <fweisbec@redhat.com>
11 *
12 * Many thanks to Gilad Ben-Yossef, Paul McKenney, Ingo Molnar, Andrew Morton,
13 * Steven Rostedt, Peter Zijlstra for suggestions and improvements.
14 *
15 */
16
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010017#include <linux/context_tracking.h>
18#include <linux/rcupdate.h>
19#include <linux/sched.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010020#include <linux/hardirq.h>
Frederic Weisbecker6a616712012-12-16 20:00:34 +010021#include <linux/export.h>
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +000022#include <linux/kprobes.h>
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010023
Frederic Weisbecker1b6a2592013-07-11 20:27:43 +020024#define CREATE_TRACE_POINTS
25#include <trace/events/context_tracking.h>
26
Frederic Weisbecker65f382f2013-07-11 19:12:32 +020027struct static_key context_tracking_enabled = STATIC_KEY_INIT_FALSE;
Frederic Weisbecker48d6a812013-07-10 02:44:35 +020028EXPORT_SYMBOL_GPL(context_tracking_enabled);
Frederic Weisbecker65f382f2013-07-11 19:12:32 +020029
30DEFINE_PER_CPU(struct context_tracking, context_tracking);
Frederic Weisbecker48d6a812013-07-10 02:44:35 +020031EXPORT_SYMBOL_GPL(context_tracking);
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010032
Frederic Weisbecker2e709332013-07-10 00:55:25 +020033void context_tracking_cpu_set(int cpu)
34{
Frederic Weisbecker65f382f2013-07-11 19:12:32 +020035 if (!per_cpu(context_tracking.active, cpu)) {
36 per_cpu(context_tracking.active, cpu) = true;
37 static_key_slow_inc(&context_tracking_enabled);
38 }
Frederic Weisbecker2e709332013-07-10 00:55:25 +020039}
40
Frederic Weisbeckeraed5ed42015-05-06 18:04:23 +020041static bool context_tracking_recursion_enter(void)
42{
43 int recursion;
44
45 recursion = __this_cpu_inc_return(context_tracking.recursion);
46 if (recursion == 1)
47 return true;
48
49 WARN_ONCE((recursion < 1), "Invalid context tracking recursion value %d\n", recursion);
50 __this_cpu_dec(context_tracking.recursion);
51
52 return false;
53}
54
55static void context_tracking_recursion_exit(void)
56{
57 __this_cpu_dec(context_tracking.recursion);
58}
59
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +010060/**
Rik van Riel3aab4f52015-02-10 15:27:50 -050061 * context_tracking_enter - Inform the context tracking that the CPU is going
62 * enter user or guest space mode.
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +010063 *
64 * This function must be called right before we switch from the kernel
Rik van Riel3aab4f52015-02-10 15:27:50 -050065 * to user or guest space, when it's guaranteed the remaining kernel
66 * instructions to execute won't use any RCU read side critical section
67 * because this function sets RCU in extended quiescent state.
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +010068 */
Rik van Riel3aab4f52015-02-10 15:27:50 -050069void context_tracking_enter(enum ctx_state state)
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010070{
71 unsigned long flags;
72
73 /*
Frederic Weisbecker0c06a5d2013-09-10 00:54:17 +020074 * Repeat the user_enter() check here because some archs may be calling
75 * this from asm and if no CPU needs context tracking, they shouldn't
Frederic Weisbecker58135f52013-11-06 14:45:57 +010076 * go further. Repeat the check here until they support the inline static
77 * key check.
Frederic Weisbecker0c06a5d2013-09-10 00:54:17 +020078 */
Frederic Weisbecker58135f52013-11-06 14:45:57 +010079 if (!context_tracking_is_enabled())
Frederic Weisbecker0c06a5d2013-09-10 00:54:17 +020080 return;
81
82 /*
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010083 * Some contexts may involve an exception occuring in an irq,
84 * leading to that nesting:
85 * rcu_irq_enter() rcu_user_exit() rcu_user_exit() rcu_irq_exit()
86 * This would mess up the dyntick_nesting count though. And rcu_irq_*()
87 * helpers are enough to protect RCU uses inside the exception. So
88 * just return immediately if we detect we are in an IRQ.
89 */
90 if (in_interrupt())
91 return;
92
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +010093 /* Kernel threads aren't supposed to go to userspace */
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010094 WARN_ON_ONCE(!current->mm);
95
96 local_irq_save(flags);
Frederic Weisbeckeraed5ed42015-05-06 18:04:23 +020097 if (!context_tracking_recursion_enter())
98 goto out_irq_restore;
99
Rik van Riel3aab4f52015-02-10 15:27:50 -0500100 if ( __this_cpu_read(context_tracking.state) != state) {
Frederic Weisbeckerd65ec122013-07-11 23:59:33 +0200101 if (__this_cpu_read(context_tracking.active)) {
102 /*
103 * At this stage, only low level arch entry code remains and
104 * then we'll run in userspace. We can assume there won't be
105 * any RCU read-side critical section until the next call to
106 * user_exit() or rcu_irq_enter(). Let's remove RCU's dependency
107 * on the tick.
108 */
Rik van Riel19fdd982015-02-10 15:27:52 -0500109 if (state == CONTEXT_USER) {
110 trace_user_enter(0);
111 vtime_user_enter(current);
112 }
Frederic Weisbeckerd65ec122013-07-11 23:59:33 +0200113 rcu_user_enter();
114 }
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +0100115 /*
Frederic Weisbeckerd65ec122013-07-11 23:59:33 +0200116 * Even if context tracking is disabled on this CPU, because it's outside
117 * the full dynticks mask for example, we still have to keep track of the
118 * context transitions and states to prevent inconsistency on those of
119 * other CPUs.
120 * If a task triggers an exception in userspace, sleep on the exception
121 * handler and then migrate to another CPU, that new CPU must know where
122 * the exception returns by the time we call exception_exit().
123 * This information can only be provided by the previous CPU when it called
124 * exception_enter().
125 * OTOH we can spare the calls to vtime and RCU when context_tracking.active
126 * is false because we know that CPU is not tickless.
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +0100127 */
Rik van Riel3aab4f52015-02-10 15:27:50 -0500128 __this_cpu_write(context_tracking.state, state);
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100129 }
Frederic Weisbeckeraed5ed42015-05-06 18:04:23 +0200130 context_tracking_recursion_exit();
131out_irq_restore:
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100132 local_irq_restore(flags);
133}
Rik van Riel3aab4f52015-02-10 15:27:50 -0500134NOKPROBE_SYMBOL(context_tracking_enter);
Rik van Rielefc1e2c2015-02-10 15:27:53 -0500135EXPORT_SYMBOL_GPL(context_tracking_enter);
Rik van Riel3aab4f52015-02-10 15:27:50 -0500136
137void context_tracking_user_enter(void)
138{
139 context_tracking_enter(CONTEXT_USER);
140}
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +0000141NOKPROBE_SYMBOL(context_tracking_user_enter);
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100142
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +0100143/**
Rik van Riel3aab4f52015-02-10 15:27:50 -0500144 * context_tracking_exit - Inform the context tracking that the CPU is
145 * exiting user or guest mode and entering the kernel.
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +0100146 *
Rik van Riel3aab4f52015-02-10 15:27:50 -0500147 * This function must be called after we entered the kernel from user or
148 * guest space before any use of RCU read side critical section. This
149 * potentially include any high level kernel code like syscalls, exceptions,
150 * signal handling, etc...
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +0100151 *
152 * This call supports re-entrancy. This way it can be called from any exception
153 * handler without needing to know if we came from userspace or not.
154 */
Rik van Riel3aab4f52015-02-10 15:27:50 -0500155void context_tracking_exit(enum ctx_state state)
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100156{
157 unsigned long flags;
158
Frederic Weisbecker58135f52013-11-06 14:45:57 +0100159 if (!context_tracking_is_enabled())
Frederic Weisbecker0c06a5d2013-09-10 00:54:17 +0200160 return;
161
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100162 if (in_interrupt())
163 return;
164
165 local_irq_save(flags);
Frederic Weisbeckeraed5ed42015-05-06 18:04:23 +0200166 if (!context_tracking_recursion_enter())
167 goto out_irq_restore;
168
Rik van Riel3aab4f52015-02-10 15:27:50 -0500169 if (__this_cpu_read(context_tracking.state) == state) {
Frederic Weisbeckerd65ec122013-07-11 23:59:33 +0200170 if (__this_cpu_read(context_tracking.active)) {
171 /*
172 * We are going to run code that may use RCU. Inform
173 * RCU core about that (ie: we may need the tick again).
174 */
175 rcu_user_exit();
Rik van Riel19fdd982015-02-10 15:27:52 -0500176 if (state == CONTEXT_USER) {
177 vtime_user_exit(current);
178 trace_user_exit(0);
179 }
Frederic Weisbeckerd65ec122013-07-11 23:59:33 +0200180 }
Frederic Weisbeckerc467ea72015-03-04 18:06:33 +0100181 __this_cpu_write(context_tracking.state, CONTEXT_KERNEL);
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100182 }
Frederic Weisbeckeraed5ed42015-05-06 18:04:23 +0200183 context_tracking_recursion_exit();
184out_irq_restore:
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100185 local_irq_restore(flags);
186}
Rik van Riel3aab4f52015-02-10 15:27:50 -0500187NOKPROBE_SYMBOL(context_tracking_exit);
Rik van Rielefc1e2c2015-02-10 15:27:53 -0500188EXPORT_SYMBOL_GPL(context_tracking_exit);
Rik van Riel3aab4f52015-02-10 15:27:50 -0500189
190void context_tracking_user_exit(void)
191{
192 context_tracking_exit(CONTEXT_USER);
193}
Masami Hiramatsu4cdf77a2014-06-14 06:47:12 +0000194NOKPROBE_SYMBOL(context_tracking_user_exit);
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100195
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +0100196/**
Frederic Weisbecker73d424f2013-07-11 19:42:13 +0200197 * __context_tracking_task_switch - context switch the syscall callbacks
Frederic Weisbecker4eacdf12013-01-16 17:16:37 +0100198 * @prev: the task that is being switched out
199 * @next: the task that is being switched in
200 *
201 * The context tracking uses the syscall slow path to implement its user-kernel
202 * boundaries probes on syscalls. This way it doesn't impact the syscall fast
203 * path on CPUs that don't do context tracking.
204 *
205 * But we need to clear the flag on the previous task because it may later
206 * migrate to some CPU that doesn't do the context tracking. As such the TIF
207 * flag may not be desired there.
208 */
Frederic Weisbecker73d424f2013-07-11 19:42:13 +0200209void __context_tracking_task_switch(struct task_struct *prev,
210 struct task_struct *next)
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100211{
Frederic Weisbeckerd65ec122013-07-11 23:59:33 +0200212 clear_tsk_thread_flag(prev, TIF_NOHZ);
213 set_tsk_thread_flag(next, TIF_NOHZ);
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +0100214}
Frederic Weisbecker65f382f2013-07-11 19:12:32 +0200215
216#ifdef CONFIG_CONTEXT_TRACKING_FORCE
217void __init context_tracking_init(void)
218{
219 int cpu;
220
221 for_each_possible_cpu(cpu)
222 context_tracking_cpu_set(cpu);
223}
224#endif