blob: 1edc9cd198b8538bd7d70da33b369d0d7e5743a8 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_MMU_CONTEXT_H
2#define _ASM_X86_MMU_CONTEXT_H
Jeremy Fitzhardingec3c2fee2008-06-25 00:19:07 -04003
4#include <asm/desc.h>
Arun Sharma600634972011-07-26 16:09:06 -07005#include <linux/atomic.h>
Dave Hansend17d8f92014-07-31 08:40:59 -07006#include <linux/mm_types.h>
7
8#include <trace/events/tlb.h>
9
Jeremy Fitzhardingec3c2fee2008-06-25 00:19:07 -040010#include <asm/pgalloc.h>
11#include <asm/tlbflush.h>
12#include <asm/paravirt.h>
Dave Hansenfe3d1972014-11-14 07:18:29 -080013#include <asm/mpx.h>
Jeremy Fitzhardingec3c2fee2008-06-25 00:19:07 -040014#ifndef CONFIG_PARAVIRT
Jeremy Fitzhardingec3c2fee2008-06-25 00:19:07 -040015static inline void paravirt_activate_mm(struct mm_struct *prev,
16 struct mm_struct *next)
17{
18}
19#endif /* !CONFIG_PARAVIRT */
20
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070021#ifdef CONFIG_PERF_EVENTS
Andy Lutomirskia6673422014-10-24 15:58:13 -070022extern struct static_key rdpmc_always_available;
23
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070024static inline void load_mm_cr4(struct mm_struct *mm)
25{
Peter Zijlstraa8335812015-07-09 19:23:38 +020026 if (static_key_false(&rdpmc_always_available) ||
Andy Lutomirskia6673422014-10-24 15:58:13 -070027 atomic_read(&mm->context.perf_rdpmc_allowed))
Andy Lutomirski7911d3f2014-10-24 15:58:12 -070028 cr4_set_bits(X86_CR4_PCE);
29 else
30 cr4_clear_bits(X86_CR4_PCE);
31}
32#else
33static inline void load_mm_cr4(struct mm_struct *mm) {}
34#endif
35
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -070036#ifdef CONFIG_MODIFY_LDT_SYSCALL
Jeremy Fitzhardingec3c2fee2008-06-25 00:19:07 -040037/*
Andy Lutomirski37868fe2015-07-30 14:31:32 -070038 * ldt_structs can be allocated, used, and freed, but they are never
39 * modified while live.
40 */
41struct ldt_struct {
42 /*
43 * Xen requires page-aligned LDTs with special permissions. This is
44 * needed to prevent us from installing evil descriptors such as
45 * call gates. On native, we could merge the ldt_struct and LDT
46 * allocations, but it's not worth trying to optimize.
47 */
48 struct desc_struct *entries;
49 int size;
50};
51
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -070052/*
53 * Used for LDT copy/destruction.
54 */
55int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
56void destroy_context(struct mm_struct *mm);
57#else /* CONFIG_MODIFY_LDT_SYSCALL */
58static inline int init_new_context(struct task_struct *tsk,
59 struct mm_struct *mm)
60{
61 return 0;
62}
63static inline void destroy_context(struct mm_struct *mm) {}
64#endif
65
Andy Lutomirski37868fe2015-07-30 14:31:32 -070066static inline void load_mm_ldt(struct mm_struct *mm)
67{
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -070068#ifdef CONFIG_MODIFY_LDT_SYSCALL
Andy Lutomirski37868fe2015-07-30 14:31:32 -070069 struct ldt_struct *ldt;
70
71 /* lockless_dereference synchronizes with smp_store_release */
72 ldt = lockless_dereference(mm->context.ldt);
73
74 /*
75 * Any change to mm->context.ldt is followed by an IPI to all
76 * CPUs with the mm active. The LDT will not be freed until
77 * after the IPI is handled by all such CPUs. This means that,
78 * if the ldt_struct changes before we return, the values we see
79 * will be safe, and the new values will be loaded before we run
80 * any user code.
81 *
82 * NB: don't try to convert this to use RCU without extreme care.
83 * We would still need IRQs off, because we don't want to change
84 * the local LDT after an IPI loaded a newer value than the one
85 * that we can see.
86 */
87
88 if (unlikely(ldt))
89 set_ldt(ldt->entries, ldt->size);
90 else
91 clear_LDT();
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -070092#else
93 clear_LDT();
94#endif
Andy Lutomirski37868fe2015-07-30 14:31:32 -070095
96 DEBUG_LOCKS_WARN_ON(preemptible());
97}
98
Brian Gerst6826c8f2009-01-21 17:26:06 +090099static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
100{
101#ifdef CONFIG_SMP
Alex Shic6ae41e2012-05-11 15:35:27 +0800102 if (this_cpu_read(cpu_tlbstate.state) == TLBSTATE_OK)
103 this_cpu_write(cpu_tlbstate.state, TLBSTATE_LAZY);
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200104#endif
Brian Gerst6826c8f2009-01-21 17:26:06 +0900105}
106
107static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
108 struct task_struct *tsk)
109{
110 unsigned cpu = smp_processor_id();
111
112 if (likely(prev != next)) {
Brian Gerst6826c8f2009-01-21 17:26:06 +0900113#ifdef CONFIG_SMP
Alex Shic6ae41e2012-05-11 15:35:27 +0800114 this_cpu_write(cpu_tlbstate.state, TLBSTATE_OK);
115 this_cpu_write(cpu_tlbstate.active_mm, next);
Brian Gerst6826c8f2009-01-21 17:26:06 +0900116#endif
Rusty Russell78f1c4d2009-09-24 09:34:51 -0600117 cpumask_set_cpu(cpu, mm_cpumask(next));
Brian Gerst6826c8f2009-01-21 17:26:06 +0900118
Andy Lutomirski71b3c122016-01-06 12:21:01 -0800119 /*
120 * Re-load page tables.
121 *
122 * This logic has an ordering constraint:
123 *
124 * CPU 0: Write to a PTE for 'next'
125 * CPU 0: load bit 1 in mm_cpumask. if nonzero, send IPI.
126 * CPU 1: set bit 1 in next's mm_cpumask
127 * CPU 1: load from the PTE that CPU 0 writes (implicit)
128 *
129 * We need to prevent an outcome in which CPU 1 observes
130 * the new PTE value and CPU 0 observes bit 1 clear in
131 * mm_cpumask. (If that occurs, then the IPI will never
132 * be sent, and CPU 0's TLB will contain a stale entry.)
133 *
134 * The bad outcome can occur if either CPU's load is
135 * reordered before that CPU's store, so both CPUs much
136 * execute full barriers to prevent this from happening.
137 *
138 * Thus, switch_mm needs a full barrier between the
139 * store to mm_cpumask and any operation that could load
140 * from next->pgd. This barrier synchronizes with
141 * remote TLB flushers. Fortunately, load_cr3 is
142 * serializing and thus acts as a full barrier.
143 *
144 */
Brian Gerst6826c8f2009-01-21 17:26:06 +0900145 load_cr3(next->pgd);
Andy Lutomirski71b3c122016-01-06 12:21:01 -0800146
Dave Hansend17d8f92014-07-31 08:40:59 -0700147 trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH, TLB_FLUSH_ALL);
Brian Gerst6826c8f2009-01-21 17:26:06 +0900148
Rik van Riel8f898fb2013-07-31 22:14:21 -0400149 /* Stop flush ipis for the previous mm */
Suresh Siddha831d52bc12011-02-03 12:20:04 -0800150 cpumask_clear_cpu(cpu, mm_cpumask(prev));
151
Andy Lutomirski7911d3f2014-10-24 15:58:12 -0700152 /* Load per-mm CR4 state */
153 load_mm_cr4(next);
154
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -0700155#ifdef CONFIG_MODIFY_LDT_SYSCALL
Andy Lutomirskic4a7bba2014-10-06 12:36:47 -0700156 /*
157 * Load the LDT, if the LDT is different.
158 *
Andy Lutomirski22c4bd92014-10-24 15:58:09 -0700159 * It's possible that prev->context.ldt doesn't match
160 * the LDT register. This can happen if leave_mm(prev)
161 * was called and then modify_ldt changed
162 * prev->context.ldt but suppressed an IPI to this CPU.
163 * In this case, prev->context.ldt != NULL, because we
Andy Lutomirski37868fe2015-07-30 14:31:32 -0700164 * never set context.ldt to NULL while the mm still
165 * exists. That means that next->context.ldt !=
166 * prev->context.ldt, because mms never share an LDT.
Andy Lutomirskic4a7bba2014-10-06 12:36:47 -0700167 */
Brian Gerst6826c8f2009-01-21 17:26:06 +0900168 if (unlikely(prev->context.ldt != next->context.ldt))
Andy Lutomirski37868fe2015-07-30 14:31:32 -0700169 load_mm_ldt(next);
Andy Lutomirskia5b9e5a2015-07-30 14:31:34 -0700170#endif
Brian Gerst6826c8f2009-01-21 17:26:06 +0900171 }
172#ifdef CONFIG_SMP
Rik van Riel8f898fb2013-07-31 22:14:21 -0400173 else {
Alex Shic6ae41e2012-05-11 15:35:27 +0800174 this_cpu_write(cpu_tlbstate.state, TLBSTATE_OK);
175 BUG_ON(this_cpu_read(cpu_tlbstate.active_mm) != next);
Brian Gerst6826c8f2009-01-21 17:26:06 +0900176
Rik van Riel8f898fb2013-07-31 22:14:21 -0400177 if (!cpumask_test_cpu(cpu, mm_cpumask(next))) {
178 /*
179 * On established mms, the mm_cpumask is only changed
180 * from irq context, from ptep_clear_flush() while in
181 * lazy tlb mode, and here. Irqs are blocked during
182 * schedule, protecting us from simultaneous changes.
183 */
184 cpumask_set_cpu(cpu, mm_cpumask(next));
Andy Lutomirski71b3c122016-01-06 12:21:01 -0800185
Rik van Riel8f898fb2013-07-31 22:14:21 -0400186 /*
187 * We were in lazy tlb mode and leave_mm disabled
Brian Gerst6826c8f2009-01-21 17:26:06 +0900188 * tlb flush IPI delivery. We must reload CR3
189 * to make sure to use no freed page tables.
Andy Lutomirski71b3c122016-01-06 12:21:01 -0800190 *
191 * As above, this is a barrier that forces
192 * TLB repopulation to be ordered after the
193 * store to mm_cpumask.
Brian Gerst6826c8f2009-01-21 17:26:06 +0900194 */
195 load_cr3(next->pgd);
Dave Hansend17d8f92014-07-31 08:40:59 -0700196 trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH, TLB_FLUSH_ALL);
Andy Lutomirski7911d3f2014-10-24 15:58:12 -0700197 load_mm_cr4(next);
Andy Lutomirski37868fe2015-07-30 14:31:32 -0700198 load_mm_ldt(next);
Brian Gerst6826c8f2009-01-21 17:26:06 +0900199 }
200 }
201#endif
202}
Jeremy Fitzhardingec3c2fee2008-06-25 00:19:07 -0400203
204#define activate_mm(prev, next) \
205do { \
206 paravirt_activate_mm((prev), (next)); \
207 switch_mm((prev), (next), NULL); \
208} while (0);
209
Brian Gerst6826c8f2009-01-21 17:26:06 +0900210#ifdef CONFIG_X86_32
211#define deactivate_mm(tsk, mm) \
212do { \
Tejun Heoccbeed32009-02-09 22:17:40 +0900213 lazy_load_gs(0); \
Brian Gerst6826c8f2009-01-21 17:26:06 +0900214} while (0)
215#else
216#define deactivate_mm(tsk, mm) \
217do { \
218 load_gs_index(0); \
219 loadsegment(fs, 0); \
220} while (0)
221#endif
Jeremy Fitzhardingec3c2fee2008-06-25 00:19:07 -0400222
Dave Hansena1ea1c02014-11-18 10:23:49 -0800223static inline void arch_dup_mmap(struct mm_struct *oldmm,
224 struct mm_struct *mm)
225{
226 paravirt_arch_dup_mmap(oldmm, mm);
227}
228
229static inline void arch_exit_mmap(struct mm_struct *mm)
230{
231 paravirt_arch_exit_mmap(mm);
232}
233
Dave Hansenb0e9b092015-06-07 11:37:04 -0700234#ifdef CONFIG_X86_64
235static inline bool is_64bit_mm(struct mm_struct *mm)
236{
237 return !config_enabled(CONFIG_IA32_EMULATION) ||
238 !(mm->context.ia32_compat == TIF_IA32);
239}
240#else
241static inline bool is_64bit_mm(struct mm_struct *mm)
242{
243 return false;
244}
245#endif
246
Dave Hansenfe3d1972014-11-14 07:18:29 -0800247static inline void arch_bprm_mm_init(struct mm_struct *mm,
248 struct vm_area_struct *vma)
249{
250 mpx_mm_init(mm);
251}
252
Dave Hansen1de4fa12014-11-14 07:18:31 -0800253static inline void arch_unmap(struct mm_struct *mm, struct vm_area_struct *vma,
254 unsigned long start, unsigned long end)
255{
Dave Hansenc9222282015-01-08 14:30:21 -0800256 /*
257 * mpx_notify_unmap() goes and reads a rarely-hot
258 * cacheline in the mm_struct. That can be expensive
259 * enough to be seen in profiles.
260 *
261 * The mpx_notify_unmap() call and its contents have been
262 * observed to affect munmap() performance on hardware
263 * where MPX is not present.
264 *
265 * The unlikely() optimizes for the fast case: no MPX
266 * in the CPU, or no MPX use in the process. Even if
267 * we get this wrong (in the unlikely event that MPX
268 * is widely enabled on some system) the overhead of
269 * MPX itself (reading bounds tables) is expected to
270 * overwhelm the overhead of getting this unlikely()
271 * consistently wrong.
272 */
273 if (unlikely(cpu_feature_enabled(X86_FEATURE_MPX)))
274 mpx_notify_unmap(mm, vma, start, end);
Dave Hansen1de4fa12014-11-14 07:18:31 -0800275}
276
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700277#endif /* _ASM_X86_MMU_CONTEXT_H */