blob: 1b9837419bf9cd11e1d452fa7624866975a38b6f [file] [log] [blame]
Peter Zijlstra196d9d82018-09-03 15:07:36 +01001#include <linux/gfp.h>
2#include <linux/highmem.h>
3#include <linux/kernel.h>
4#include <linux/mmdebug.h>
5#include <linux/mm_types.h>
6#include <linux/pagemap.h>
7#include <linux/rcupdate.h>
8#include <linux/smp.h>
9#include <linux/swap.h>
10
11#include <asm/pgalloc.h>
12#include <asm/tlb.h>
13
Peter Zijlstra580a5862020-02-03 17:37:08 -080014#ifndef CONFIG_MMU_GATHER_NO_GATHER
Martin Schwidefsky952a31c2018-09-18 14:51:50 +020015
Peter Zijlstra196d9d82018-09-03 15:07:36 +010016static bool tlb_next_batch(struct mmu_gather *tlb)
17{
18 struct mmu_gather_batch *batch;
19
20 batch = tlb->active;
21 if (batch->next) {
22 tlb->active = batch->next;
23 return true;
24 }
25
26 if (tlb->batch_count == MAX_GATHER_BATCH_COUNT)
27 return false;
28
29 batch = (void *)__get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0);
30 if (!batch)
31 return false;
32
33 tlb->batch_count++;
34 batch->next = NULL;
35 batch->nr = 0;
36 batch->max = MAX_GATHER_BATCH;
37
38 tlb->active->next = batch;
39 tlb->active = batch;
40
41 return true;
42}
43
Martin Schwidefsky952a31c2018-09-18 14:51:50 +020044static void tlb_batch_pages_flush(struct mmu_gather *tlb)
Peter Zijlstra196d9d82018-09-03 15:07:36 +010045{
46 struct mmu_gather_batch *batch;
47
Peter Zijlstra196d9d82018-09-03 15:07:36 +010048 for (batch = &tlb->local; batch && batch->nr; batch = batch->next) {
49 free_pages_and_swap_cache(batch->pages, batch->nr);
50 batch->nr = 0;
51 }
52 tlb->active = &tlb->local;
53}
54
Martin Schwidefsky952a31c2018-09-18 14:51:50 +020055static void tlb_batch_list_free(struct mmu_gather *tlb)
Peter Zijlstra196d9d82018-09-03 15:07:36 +010056{
57 struct mmu_gather_batch *batch, *next;
58
Peter Zijlstra196d9d82018-09-03 15:07:36 +010059 for (batch = tlb->local.next; batch; batch = next) {
60 next = batch->next;
61 free_pages((unsigned long)batch, 0);
62 }
63 tlb->local.next = NULL;
64}
65
Peter Zijlstra196d9d82018-09-03 15:07:36 +010066bool __tlb_remove_page_size(struct mmu_gather *tlb, struct page *page, int page_size)
67{
68 struct mmu_gather_batch *batch;
69
70 VM_BUG_ON(!tlb->end);
Peter Zijlstraed6a7932018-08-31 14:46:08 +020071
Peter Zijlstra3af4bd02020-02-03 17:37:05 -080072#ifdef CONFIG_MMU_GATHER_PAGE_SIZE
Peter Zijlstra196d9d82018-09-03 15:07:36 +010073 VM_WARN_ON(tlb->page_size != page_size);
Peter Zijlstraed6a7932018-08-31 14:46:08 +020074#endif
Peter Zijlstra196d9d82018-09-03 15:07:36 +010075
76 batch = tlb->active;
77 /*
78 * Add the page and check if we are full. If so
79 * force a flush.
80 */
81 batch->pages[batch->nr++] = page;
82 if (batch->nr == batch->max) {
83 if (!tlb_next_batch(tlb))
84 return true;
85 batch = tlb->active;
86 }
87 VM_BUG_ON_PAGE(batch->nr > batch->max, page);
88
89 return false;
90}
91
Peter Zijlstra580a5862020-02-03 17:37:08 -080092#endif /* MMU_GATHER_NO_GATHER */
Martin Schwidefsky952a31c2018-09-18 14:51:50 +020093
Peter Zijlstra0d6e24d2020-02-03 17:37:11 -080094#ifdef CONFIG_MMU_GATHER_TABLE_FREE
95
96static void __tlb_remove_table_free(struct mmu_table_batch *batch)
97{
98 int i;
99
100 for (i = 0; i < batch->nr; i++)
101 __tlb_remove_table(batch->tables[i]);
102
103 free_page((unsigned long)batch);
104}
105
Peter Zijlstraff2e6d722020-02-03 17:37:02 -0800106#ifdef CONFIG_MMU_GATHER_RCU_TABLE_FREE
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100107
108/*
Peter Zijlstra0d6e24d2020-02-03 17:37:11 -0800109 * Semi RCU freeing of the page directories.
110 *
111 * This is needed by some architectures to implement software pagetable walkers.
112 *
113 * gup_fast() and other software pagetable walkers do a lockless page-table
114 * walk and therefore needs some synchronization with the freeing of the page
115 * directories. The chosen means to accomplish that is by disabling IRQs over
116 * the walk.
117 *
118 * Architectures that use IPIs to flush TLBs will then automagically DTRT,
119 * since we unlink the page, flush TLBs, free the page. Since the disabling of
120 * IRQs delays the completion of the TLB flush we can never observe an already
121 * freed page.
122 *
123 * Architectures that do not have this (PPC) need to delay the freeing by some
124 * other means, this is that means.
125 *
126 * What we do is batch the freed directory pages (tables) and RCU free them.
127 * We use the sched RCU variant, as that guarantees that IRQ/preempt disabling
128 * holds off grace periods.
129 *
130 * However, in order to batch these pages we need to allocate storage, this
131 * allocation is deep inside the MM code and can thus easily fail on memory
132 * pressure. To guarantee progress we fall back to single table freeing, see
133 * the implementation of tlb_remove_table_one().
134 *
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100135 */
136
Peter Zijlstra0d6e24d2020-02-03 17:37:11 -0800137static void tlb_remove_table_smp_sync(void *arg)
138{
139 /* Simply deliver the interrupt */
140}
141
142static void tlb_remove_table_sync_one(void)
143{
144 /*
145 * This isn't an RCU grace period and hence the page-tables cannot be
146 * assumed to be actually RCU-freed.
147 *
148 * It is however sufficient for software page-table walkers that rely on
149 * IRQ disabling.
150 */
151 smp_call_function(tlb_remove_table_smp_sync, NULL, 1);
152}
153
154static void tlb_remove_table_rcu(struct rcu_head *head)
155{
156 __tlb_remove_table_free(container_of(head, struct mmu_table_batch, rcu));
157}
158
159static void tlb_remove_table_free(struct mmu_table_batch *batch)
160{
161 call_rcu(&batch->rcu, tlb_remove_table_rcu);
162}
163
164#else /* !CONFIG_MMU_GATHER_RCU_TABLE_FREE */
165
166static void tlb_remove_table_sync_one(void) { }
167
168static void tlb_remove_table_free(struct mmu_table_batch *batch)
169{
170 __tlb_remove_table_free(batch);
171}
172
173#endif /* CONFIG_MMU_GATHER_RCU_TABLE_FREE */
174
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100175/*
176 * If we want tlb_remove_table() to imply TLB invalidates.
177 */
178static inline void tlb_table_invalidate(struct mmu_gather *tlb)
179{
Peter Zijlstra0ed13252020-02-03 17:36:49 -0800180 if (tlb_needs_table_invalidate()) {
181 /*
182 * Invalidate page-table caches used by hardware walkers. Then
183 * we still need to RCU-sched wait while freeing the pages
184 * because software walkers can still be in-flight.
185 */
186 tlb_flush_mmu_tlbonly(tlb);
187 }
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100188}
189
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100190static void tlb_remove_table_one(void *table)
191{
Peter Zijlstra0d6e24d2020-02-03 17:37:11 -0800192 tlb_remove_table_sync_one();
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100193 __tlb_remove_table(table);
194}
195
Peter Zijlstra0a8caf22018-09-20 10:55:10 +0200196static void tlb_table_flush(struct mmu_gather *tlb)
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100197{
198 struct mmu_table_batch **batch = &tlb->batch;
199
200 if (*batch) {
201 tlb_table_invalidate(tlb);
Peter Zijlstra0d6e24d2020-02-03 17:37:11 -0800202 tlb_remove_table_free(*batch);
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100203 *batch = NULL;
204 }
205}
206
207void tlb_remove_table(struct mmu_gather *tlb, void *table)
208{
209 struct mmu_table_batch **batch = &tlb->batch;
210
211 if (*batch == NULL) {
212 *batch = (struct mmu_table_batch *)__get_free_page(GFP_NOWAIT | __GFP_NOWARN);
213 if (*batch == NULL) {
214 tlb_table_invalidate(tlb);
215 tlb_remove_table_one(table);
216 return;
217 }
218 (*batch)->nr = 0;
219 }
220
221 (*batch)->tables[(*batch)->nr++] = table;
222 if ((*batch)->nr == MAX_TABLE_BATCH)
223 tlb_table_flush(tlb);
224}
225
Peter Zijlstra0d6e24d2020-02-03 17:37:11 -0800226static inline void tlb_table_init(struct mmu_gather *tlb)
227{
228 tlb->batch = NULL;
229}
230
231#else /* !CONFIG_MMU_GATHER_TABLE_FREE */
232
233static inline void tlb_table_flush(struct mmu_gather *tlb) { }
234static inline void tlb_table_init(struct mmu_gather *tlb) { }
235
236#endif /* CONFIG_MMU_GATHER_TABLE_FREE */
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100237
Peter Zijlstra0a8caf22018-09-20 10:55:10 +0200238static void tlb_flush_mmu_free(struct mmu_gather *tlb)
239{
Peter Zijlstra0a8caf22018-09-20 10:55:10 +0200240 tlb_table_flush(tlb);
Peter Zijlstra580a5862020-02-03 17:37:08 -0800241#ifndef CONFIG_MMU_GATHER_NO_GATHER
Peter Zijlstra0a8caf22018-09-20 10:55:10 +0200242 tlb_batch_pages_flush(tlb);
243#endif
244}
245
246void tlb_flush_mmu(struct mmu_gather *tlb)
247{
248 tlb_flush_mmu_tlbonly(tlb);
249 tlb_flush_mmu_free(tlb);
250}
251
Will Deacond8b45052021-01-27 23:53:44 +0000252static void __tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm,
Will Deacona72afd82021-01-27 23:53:45 +0000253 bool fullmm)
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100254{
Peter Zijlstra1808d652018-09-20 10:50:11 +0200255 tlb->mm = mm;
Will Deacona72afd82021-01-27 23:53:45 +0000256 tlb->fullmm = fullmm;
Peter Zijlstra1808d652018-09-20 10:50:11 +0200257
Peter Zijlstra580a5862020-02-03 17:37:08 -0800258#ifndef CONFIG_MMU_GATHER_NO_GATHER
Peter Zijlstra1808d652018-09-20 10:50:11 +0200259 tlb->need_flush_all = 0;
260 tlb->local.next = NULL;
261 tlb->local.nr = 0;
262 tlb->local.max = ARRAY_SIZE(tlb->__pages);
263 tlb->active = &tlb->local;
264 tlb->batch_count = 0;
265#endif
266
Peter Zijlstra0d6e24d2020-02-03 17:37:11 -0800267 tlb_table_init(tlb);
Peter Zijlstra3af4bd02020-02-03 17:37:05 -0800268#ifdef CONFIG_MMU_GATHER_PAGE_SIZE
Peter Zijlstra1808d652018-09-20 10:50:11 +0200269 tlb->page_size = 0;
270#endif
271
272 __tlb_reset_range(tlb);
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100273 inc_tlb_flush_pending(tlb->mm);
274}
275
Randy Dunlap845be1c2021-04-16 15:45:54 -0700276/**
277 * tlb_gather_mmu - initialize an mmu_gather structure for page-table tear-down
278 * @tlb: the mmu_gather structure to initialize
279 * @mm: the mm_struct of the target address space
280 *
281 * Called to initialize an (on-stack) mmu_gather structure for page-table
282 * tear-down from @mm.
283 */
Will Deacona72afd82021-01-27 23:53:45 +0000284void tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm)
Will Deacond8b45052021-01-27 23:53:44 +0000285{
Will Deacona72afd82021-01-27 23:53:45 +0000286 __tlb_gather_mmu(tlb, mm, false);
Will Deacond8b45052021-01-27 23:53:44 +0000287}
288
Randy Dunlap845be1c2021-04-16 15:45:54 -0700289/**
290 * tlb_gather_mmu_fullmm - initialize an mmu_gather structure for page-table tear-down
291 * @tlb: the mmu_gather structure to initialize
292 * @mm: the mm_struct of the target address space
293 *
294 * In this case, @mm is without users and we're going to destroy the
295 * full address space (exit/execve).
296 *
297 * Called to initialize an (on-stack) mmu_gather structure for page-table
298 * tear-down from @mm.
299 */
Will Deacond8b45052021-01-27 23:53:44 +0000300void tlb_gather_mmu_fullmm(struct mmu_gather *tlb, struct mm_struct *mm)
301{
Will Deacona72afd82021-01-27 23:53:45 +0000302 __tlb_gather_mmu(tlb, mm, true);
Will Deacond8b45052021-01-27 23:53:44 +0000303}
304
Peter Zijlstra1808d652018-09-20 10:50:11 +0200305/**
306 * tlb_finish_mmu - finish an mmu_gather structure
307 * @tlb: the mmu_gather structure to finish
Peter Zijlstra1808d652018-09-20 10:50:11 +0200308 *
309 * Called at the end of the shootdown operation to free up any resources that
310 * were required.
311 */
Will Deaconae8eba82021-01-27 23:53:43 +0000312void tlb_finish_mmu(struct mmu_gather *tlb)
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100313{
314 /*
315 * If there are parallel threads are doing PTE changes on same range
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -0700316 * under non-exclusive lock (e.g., mmap_lock read-side) but defer TLB
Yang Shi7a30df42019-06-13 15:56:05 -0700317 * flush by batching, one thread may end up seeing inconsistent PTEs
318 * and result in having stale TLB entries. So flush TLB forcefully
319 * if we detect parallel PTE batching threads.
320 *
321 * However, some syscalls, e.g. munmap(), may free page tables, this
322 * needs force flush everything in the given range. Otherwise this
323 * may result in having stale TLB entries for some architectures,
324 * e.g. aarch64, that could specify flush what level TLB.
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100325 */
Peter Zijlstra1808d652018-09-20 10:50:11 +0200326 if (mm_tlb_flush_nested(tlb->mm)) {
Yang Shi7a30df42019-06-13 15:56:05 -0700327 /*
328 * The aarch64 yields better performance with fullmm by
329 * avoiding multiple CPUs spamming TLBI messages at the
330 * same time.
331 *
332 * On x86 non-fullmm doesn't yield significant difference
333 * against fullmm.
334 */
335 tlb->fullmm = 1;
Peter Zijlstra1808d652018-09-20 10:50:11 +0200336 __tlb_reset_range(tlb);
Yang Shi7a30df42019-06-13 15:56:05 -0700337 tlb->freed_tables = 1;
Peter Zijlstra1808d652018-09-20 10:50:11 +0200338 }
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100339
Peter Zijlstra1808d652018-09-20 10:50:11 +0200340 tlb_flush_mmu(tlb);
341
Peter Zijlstra580a5862020-02-03 17:37:08 -0800342#ifndef CONFIG_MMU_GATHER_NO_GATHER
Peter Zijlstra1808d652018-09-20 10:50:11 +0200343 tlb_batch_list_free(tlb);
344#endif
Peter Zijlstra196d9d82018-09-03 15:07:36 +0100345 dec_tlb_flush_pending(tlb->mm);
346}