blob: 5a69273e93e6a4dea0d4451cf1388939154cd085 [file] [log] [blame]
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01001#ifndef _LINUX_CONTEXT_TRACKING_H
2#define _LINUX_CONTEXT_TRACKING_H
3
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +01004#include <linux/sched.h>
Frederic Weisbecker95a79fd2013-01-07 18:12:14 +01005#include <linux/percpu.h>
Frederic Weisbecker56dd9472013-02-24 00:23:25 +01006#include <asm/ptrace.h>
Frederic Weisbecker95a79fd2013-01-07 18:12:14 +01007
Frederic Weisbecker56dd9472013-02-24 00:23:25 +01008#ifdef CONFIG_CONTEXT_TRACKING
Frederic Weisbecker95a79fd2013-01-07 18:12:14 +01009struct context_tracking {
10 /*
11 * When active is false, probes are unset in order
12 * to minimize overhead: TIF flags are cleared
13 * and calls to user_enter/exit are ignored. This
14 * may be further optimized using static keys.
15 */
16 bool active;
17 enum {
18 IN_KERNEL = 0,
19 IN_USER,
20 } state;
21};
22
23DECLARE_PER_CPU(struct context_tracking, context_tracking);
24
25static inline bool context_tracking_in_user(void)
26{
27 return __this_cpu_read(context_tracking.state) == IN_USER;
28}
29
30static inline bool context_tracking_active(void)
31{
32 return __this_cpu_read(context_tracking.active);
33}
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010034
35extern void user_enter(void);
36extern void user_exit(void);
Frederic Weisbecker56dd9472013-02-24 00:23:25 +010037
38static inline void exception_enter(struct pt_regs *regs)
39{
40 user_exit();
41}
42
43static inline void exception_exit(struct pt_regs *regs)
44{
45 if (user_mode(regs))
46 user_enter();
47}
48
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010049extern void context_tracking_task_switch(struct task_struct *prev,
50 struct task_struct *next);
51#else
Frederic Weisbecker95a79fd2013-01-07 18:12:14 +010052static inline bool context_tracking_in_user(void) { return false; }
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010053static inline void user_enter(void) { }
54static inline void user_exit(void) { }
Frederic Weisbecker56dd9472013-02-24 00:23:25 +010055static inline void exception_enter(struct pt_regs *regs) { }
56static inline void exception_exit(struct pt_regs *regs) { }
Frederic Weisbecker91d1aa432012-11-27 19:33:25 +010057static inline void context_tracking_task_switch(struct task_struct *prev,
58 struct task_struct *next) { }
59#endif /* !CONFIG_CONTEXT_TRACKING */
60
61#endif