aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Lutomirski <luto@kernel.org>2017-06-29 11:53:13 -0400
committerIngo Molnar <mingo@kernel.org>2017-06-30 04:12:35 -0400
commitbc0d5a89fbe3c83ac45438d7ba88309f4713615d (patch)
tree5c130627575ae6a34521daec569e87dec95b8eb9
parenta24261d70e00e4ce03cf45bbf18398f52a7b9229 (diff)
x86/mm: Don't reenter flush_tlb_func_common()
It was historically possible to have two concurrent TLB flushes targetting the same CPU: one initiated locally and one initiated remotely. This can now cause an OOPS in leave_mm() at arch/x86/mm/tlb.c:47: if (this_cpu_read(cpu_tlbstate.state) == TLBSTATE_OK) BUG(); with this call trace: flush_tlb_func_local arch/x86/mm/tlb.c:239 [inline] flush_tlb_mm_range+0x26d/0x370 arch/x86/mm/tlb.c:317 Without reentrancy, this OOPS is impossible: leave_mm() is only called if we're not in TLBSTATE_OK, but then we're unexpectedly in TLBSTATE_OK in leave_mm(). This can be caused by flush_tlb_func_remote() happening between the two checks and calling leave_mm(), resulting in two consecutive leave_mm() calls on the same CPU with no intervening switch_mm() calls. We never saw this OOPS before because the old leave_mm() implementation didn't put us back in TLBSTATE_OK, so the assertion didn't fire. Nadav noticed the reentrancy issue in a different context, but neither of us realized that it caused a problem yet. Reported-by: Levin, Alexander (Sasha Levin) <alexander.levin@verizon.com> Signed-off-by: Andy Lutomirski <luto@kernel.org> Reviewed-by: Nadav Amit <nadav.amit@gmail.com> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Arjan van de Ven <arjan@linux.intel.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Dave Hansen <dave.hansen@intel.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mel Gorman <mgorman@suse.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Rik van Riel <riel@redhat.com> Cc: linux-mm@kvack.org Fixes: 3d28ebceaffa ("x86/mm: Rework lazy TLB to track the actual loaded mm") Link: http://lkml.kernel.org/r/855acf733268d521c9f2e191faee2dcc23a29729.1498751203.git.luto@kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r--arch/x86/mm/tlb.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/arch/x86/mm/tlb.c b/arch/x86/mm/tlb.c
index b2485d69f7c2..1cc47838d1e8 100644
--- a/arch/x86/mm/tlb.c
+++ b/arch/x86/mm/tlb.c
@@ -192,6 +192,9 @@ void switch_mm_irqs_off(struct mm_struct *prev, struct mm_struct *next,
192static void flush_tlb_func_common(const struct flush_tlb_info *f, 192static void flush_tlb_func_common(const struct flush_tlb_info *f,
193 bool local, enum tlb_flush_reason reason) 193 bool local, enum tlb_flush_reason reason)
194{ 194{
195 /* This code cannot presently handle being reentered. */
196 VM_WARN_ON(!irqs_disabled());
197
195 if (this_cpu_read(cpu_tlbstate.state) != TLBSTATE_OK) { 198 if (this_cpu_read(cpu_tlbstate.state) != TLBSTATE_OK) {
196 leave_mm(smp_processor_id()); 199 leave_mm(smp_processor_id());
197 return; 200 return;
@@ -297,8 +300,13 @@ void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
297 info.end = TLB_FLUSH_ALL; 300 info.end = TLB_FLUSH_ALL;
298 } 301 }
299 302
300 if (mm == this_cpu_read(cpu_tlbstate.loaded_mm)) 303 if (mm == this_cpu_read(cpu_tlbstate.loaded_mm)) {
304 VM_WARN_ON(irqs_disabled());
305 local_irq_disable();
301 flush_tlb_func_local(&info, TLB_LOCAL_MM_SHOOTDOWN); 306 flush_tlb_func_local(&info, TLB_LOCAL_MM_SHOOTDOWN);
307 local_irq_enable();
308 }
309
302 if (cpumask_any_but(mm_cpumask(mm), cpu) < nr_cpu_ids) 310 if (cpumask_any_but(mm_cpumask(mm), cpu) < nr_cpu_ids)
303 flush_tlb_others(mm_cpumask(mm), &info); 311 flush_tlb_others(mm_cpumask(mm), &info);
304 put_cpu(); 312 put_cpu();
@@ -354,8 +362,13 @@ void arch_tlbbatch_flush(struct arch_tlbflush_unmap_batch *batch)
354 362
355 int cpu = get_cpu(); 363 int cpu = get_cpu();
356 364
357 if (cpumask_test_cpu(cpu, &batch->cpumask)) 365 if (cpumask_test_cpu(cpu, &batch->cpumask)) {
366 VM_WARN_ON(irqs_disabled());
367 local_irq_disable();
358 flush_tlb_func_local(&info, TLB_LOCAL_SHOOTDOWN); 368 flush_tlb_func_local(&info, TLB_LOCAL_SHOOTDOWN);
369 local_irq_enable();
370 }
371
359 if (cpumask_any_but(&batch->cpumask, cpu) < nr_cpu_ids) 372 if (cpumask_any_but(&batch->cpumask, cpu) < nr_cpu_ids)
360 flush_tlb_others(&batch->cpumask, &info); 373 flush_tlb_others(&batch->cpumask, &info);
361 cpumask_clear(&batch->cpumask); 374 cpumask_clear(&batch->cpumask);