blob: 130831718e95d736d0e4f8b73bf2e3b32d7f76de [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07002#ifndef _LINUX_MMU_NOTIFIER_H
3#define _LINUX_MMU_NOTIFIER_H
4
5#include <linux/list.h>
6#include <linux/spinlock.h>
7#include <linux/mm_types.h>
Sagi Grimberg21a92732012-10-08 16:29:24 -07008#include <linux/srcu.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07009
10struct mmu_notifier;
11struct mmu_notifier_ops;
12
13#ifdef CONFIG_MMU_NOTIFIER
14
15/*
16 * The mmu notifier_mm structure is allocated and installed in
17 * mm->mmu_notifier_mm inside the mm_take_all_locks() protected
18 * critical section and it's released only when mm_count reaches zero
19 * in mmdrop().
20 */
21struct mmu_notifier_mm {
22 /* all mmu notifiers registerd in this mm are queued in this list */
23 struct hlist_head list;
24 /* to serialize the list modifications and hlist_unhashed */
25 spinlock_t lock;
26};
27
28struct mmu_notifier_ops {
29 /*
30 * Called either by mmu_notifier_unregister or when the mm is
31 * being destroyed by exit_mmap, always before all pages are
32 * freed. This can run concurrently with other mmu notifier
33 * methods (the ones invoked outside the mm context) and it
34 * should tear down all secondary mmu mappings and freeze the
35 * secondary mmu. If this method isn't implemented you've to
36 * be sure that nothing could possibly write to the pages
37 * through the secondary mmu by the time the last thread with
38 * tsk->mm == mm exits.
39 *
40 * As side note: the pages freed after ->release returns could
41 * be immediately reallocated by the gart at an alias physical
42 * address with a different cache model, so if ->release isn't
43 * implemented because all _software_ driven memory accesses
44 * through the secondary mmu are terminated by the time the
45 * last thread of this mm quits, you've also to be sure that
46 * speculative _hardware_ operations can't allocate dirty
47 * cachelines in the cpu that could not be snooped and made
48 * coherent with the other read and write operations happening
49 * through the gart alias address, so leading to memory
50 * corruption.
51 */
52 void (*release)(struct mmu_notifier *mn,
53 struct mm_struct *mm);
54
55 /*
56 * clear_flush_young is called after the VM is
57 * test-and-clearing the young/accessed bitflag in the
58 * pte. This way the VM will provide proper aging to the
59 * accesses to the page through the secondary MMUs and not
60 * only to the ones through the Linux pte.
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -070061 * Start-end is necessary in case the secondary MMU is mapping the page
62 * at a smaller granularity than the primary MMU.
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070063 */
64 int (*clear_flush_young)(struct mmu_notifier *mn,
65 struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -070066 unsigned long start,
67 unsigned long end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070068
69 /*
Vladimir Davydov1d7715c2015-09-09 15:35:41 -070070 * clear_young is a lightweight version of clear_flush_young. Like the
71 * latter, it is supposed to test-and-clear the young/accessed bitflag
72 * in the secondary pte, but it may omit flushing the secondary tlb.
73 */
74 int (*clear_young)(struct mmu_notifier *mn,
75 struct mm_struct *mm,
76 unsigned long start,
77 unsigned long end);
78
79 /*
Andrea Arcangeli8ee53822011-01-13 15:47:10 -080080 * test_young is called to check the young/accessed bitflag in
81 * the secondary pte. This is used to know if the page is
82 * frequently used without actually clearing the flag or tearing
83 * down the secondary mapping on the page.
84 */
85 int (*test_young)(struct mmu_notifier *mn,
86 struct mm_struct *mm,
87 unsigned long address);
88
89 /*
Izik Eidus828502d2009-09-21 17:01:51 -070090 * change_pte is called in cases that pte mapping to page is changed:
91 * for example, when ksm remaps pte to point to a new shared page.
92 */
93 void (*change_pte)(struct mmu_notifier *mn,
94 struct mm_struct *mm,
95 unsigned long address,
96 pte_t pte);
97
98 /*
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070099 * invalidate_range_start() and invalidate_range_end() must be
100 * paired and are called only when the mmap_sem and/or the
Joerg Roedel0f0a3272014-11-13 13:46:09 +1100101 * locks protecting the reverse maps are held. If the subsystem
102 * can't guarantee that no additional references are taken to
103 * the pages in the range, it has to implement the
104 * invalidate_range() notifier to remove any references taken
105 * after invalidate_range_start().
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700106 *
107 * Invalidation of multiple concurrent ranges may be
108 * optionally permitted by the driver. Either way the
109 * establishment of sptes is forbidden in the range passed to
110 * invalidate_range_begin/end for the whole duration of the
111 * invalidate_range_begin/end critical section.
112 *
113 * invalidate_range_start() is called when all pages in the
114 * range are still mapped and have at least a refcount of one.
115 *
116 * invalidate_range_end() is called when all pages in the
117 * range have been unmapped and the pages have been freed by
118 * the VM.
119 *
120 * The VM will remove the page table entries and potentially
121 * the page between invalidate_range_start() and
122 * invalidate_range_end(). If the page must not be freed
123 * because of pending I/O or other circumstances then the
124 * invalidate_range_start() callback (or the initial mapping
125 * by the driver) must make sure that the refcount is kept
126 * elevated.
127 *
128 * If the driver increases the refcount when the pages are
129 * initially mapped into an address space then either
130 * invalidate_range_start() or invalidate_range_end() may
131 * decrease the refcount. If the refcount is decreased on
132 * invalidate_range_start() then the VM can free pages as page
133 * table entries are removed. If the refcount is only
134 * droppped on invalidate_range_end() then the driver itself
135 * will drop the last refcount but it must take care to flush
136 * any secondary tlb before doing the final free on the
137 * page. Pages will no longer be referenced by the linux
138 * address space but may still be referenced by sptes until
139 * the last refcount is dropped.
140 */
141 void (*invalidate_range_start)(struct mmu_notifier *mn,
142 struct mm_struct *mm,
143 unsigned long start, unsigned long end);
144 void (*invalidate_range_end)(struct mmu_notifier *mn,
145 struct mm_struct *mm,
146 unsigned long start, unsigned long end);
Joerg Roedel0f0a3272014-11-13 13:46:09 +1100147
148 /*
149 * invalidate_range() is either called between
150 * invalidate_range_start() and invalidate_range_end() when the
151 * VM has to free pages that where unmapped, but before the
152 * pages are actually freed, or outside of _start()/_end() when
153 * a (remote) TLB is necessary.
154 *
155 * If invalidate_range() is used to manage a non-CPU TLB with
156 * shared page-tables, it not necessary to implement the
157 * invalidate_range_start()/end() notifiers, as
158 * invalidate_range() alread catches the points in time when an
Jérôme Glisse0f108512017-11-15 17:34:07 -0800159 * external TLB range needs to be flushed. For more in depth
160 * discussion on this see Documentation/vm/mmu_notifier.txt
Joerg Roedel0f0a3272014-11-13 13:46:09 +1100161 *
162 * The invalidate_range() function is called under the ptl
163 * spin-lock and not allowed to sleep.
164 *
165 * Note that this function might be called with just a sub-range
166 * of what was passed to invalidate_range_start()/end(), if
167 * called between those functions.
168 */
169 void (*invalidate_range)(struct mmu_notifier *mn, struct mm_struct *mm,
170 unsigned long start, unsigned long end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700171};
172
173/*
174 * The notifier chains are protected by mmap_sem and/or the reverse map
175 * semaphores. Notifier chains are only changed when all reverse maps and
176 * the mmap_sem locks are taken.
177 *
178 * Therefore notifier chains can only be traversed when either
179 *
180 * 1. mmap_sem is held.
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800181 * 2. One of the reverse map locks is held (i_mmap_rwsem or anon_vma->rwsem).
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700182 * 3. No other concurrent thread can access the list (release)
183 */
184struct mmu_notifier {
185 struct hlist_node hlist;
186 const struct mmu_notifier_ops *ops;
187};
188
189static inline int mm_has_notifiers(struct mm_struct *mm)
190{
191 return unlikely(mm->mmu_notifier_mm);
192}
193
194extern int mmu_notifier_register(struct mmu_notifier *mn,
195 struct mm_struct *mm);
196extern int __mmu_notifier_register(struct mmu_notifier *mn,
197 struct mm_struct *mm);
198extern void mmu_notifier_unregister(struct mmu_notifier *mn,
199 struct mm_struct *mm);
Peter Zijlstrab9722162014-08-06 16:08:20 -0700200extern void mmu_notifier_unregister_no_release(struct mmu_notifier *mn,
201 struct mm_struct *mm);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700202extern void __mmu_notifier_mm_destroy(struct mm_struct *mm);
203extern void __mmu_notifier_release(struct mm_struct *mm);
204extern int __mmu_notifier_clear_flush_young(struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700205 unsigned long start,
206 unsigned long end);
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700207extern int __mmu_notifier_clear_young(struct mm_struct *mm,
208 unsigned long start,
209 unsigned long end);
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800210extern int __mmu_notifier_test_young(struct mm_struct *mm,
211 unsigned long address);
Izik Eidus828502d2009-09-21 17:01:51 -0700212extern void __mmu_notifier_change_pte(struct mm_struct *mm,
213 unsigned long address, pte_t pte);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700214extern void __mmu_notifier_invalidate_range_start(struct mm_struct *mm,
215 unsigned long start, unsigned long end);
216extern void __mmu_notifier_invalidate_range_end(struct mm_struct *mm,
217 unsigned long start, unsigned long end);
Joerg Roedel0f0a3272014-11-13 13:46:09 +1100218extern void __mmu_notifier_invalidate_range(struct mm_struct *mm,
219 unsigned long start, unsigned long end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700220
221static inline void mmu_notifier_release(struct mm_struct *mm)
222{
223 if (mm_has_notifiers(mm))
224 __mmu_notifier_release(mm);
225}
226
227static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700228 unsigned long start,
229 unsigned long end)
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700230{
231 if (mm_has_notifiers(mm))
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700232 return __mmu_notifier_clear_flush_young(mm, start, end);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700233 return 0;
234}
235
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700236static inline int mmu_notifier_clear_young(struct mm_struct *mm,
237 unsigned long start,
238 unsigned long end)
239{
240 if (mm_has_notifiers(mm))
241 return __mmu_notifier_clear_young(mm, start, end);
242 return 0;
243}
244
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800245static inline int mmu_notifier_test_young(struct mm_struct *mm,
246 unsigned long address)
247{
248 if (mm_has_notifiers(mm))
249 return __mmu_notifier_test_young(mm, address);
250 return 0;
251}
252
Izik Eidus828502d2009-09-21 17:01:51 -0700253static inline void mmu_notifier_change_pte(struct mm_struct *mm,
254 unsigned long address, pte_t pte)
255{
256 if (mm_has_notifiers(mm))
257 __mmu_notifier_change_pte(mm, address, pte);
258}
259
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700260static inline void mmu_notifier_invalidate_range_start(struct mm_struct *mm,
261 unsigned long start, unsigned long end)
262{
263 if (mm_has_notifiers(mm))
264 __mmu_notifier_invalidate_range_start(mm, start, end);
265}
266
267static inline void mmu_notifier_invalidate_range_end(struct mm_struct *mm,
268 unsigned long start, unsigned long end)
269{
270 if (mm_has_notifiers(mm))
271 __mmu_notifier_invalidate_range_end(mm, start, end);
272}
273
Joerg Roedel1897bdc2014-11-13 13:46:09 +1100274static inline void mmu_notifier_invalidate_range(struct mm_struct *mm,
275 unsigned long start, unsigned long end)
276{
Joerg Roedel0f0a3272014-11-13 13:46:09 +1100277 if (mm_has_notifiers(mm))
278 __mmu_notifier_invalidate_range(mm, start, end);
Joerg Roedel1897bdc2014-11-13 13:46:09 +1100279}
280
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700281static inline void mmu_notifier_mm_init(struct mm_struct *mm)
282{
283 mm->mmu_notifier_mm = NULL;
284}
285
286static inline void mmu_notifier_mm_destroy(struct mm_struct *mm)
287{
288 if (mm_has_notifiers(mm))
289 __mmu_notifier_mm_destroy(mm);
290}
291
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700292#define ptep_clear_flush_young_notify(__vma, __address, __ptep) \
293({ \
294 int __young; \
295 struct vm_area_struct *___vma = __vma; \
296 unsigned long ___address = __address; \
297 __young = ptep_clear_flush_young(___vma, ___address, __ptep); \
298 __young |= mmu_notifier_clear_flush_young(___vma->vm_mm, \
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700299 ___address, \
300 ___address + \
301 PAGE_SIZE); \
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700302 __young; \
303})
304
Andrea Arcangeli91a4ee22011-01-13 15:46:44 -0800305#define pmdp_clear_flush_young_notify(__vma, __address, __pmdp) \
306({ \
307 int __young; \
308 struct vm_area_struct *___vma = __vma; \
309 unsigned long ___address = __address; \
310 __young = pmdp_clear_flush_young(___vma, ___address, __pmdp); \
311 __young |= mmu_notifier_clear_flush_young(___vma->vm_mm, \
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700312 ___address, \
313 ___address + \
314 PMD_SIZE); \
Andrea Arcangeli91a4ee22011-01-13 15:46:44 -0800315 __young; \
316})
317
Vladimir Davydov1d7715c2015-09-09 15:35:41 -0700318#define ptep_clear_young_notify(__vma, __address, __ptep) \
319({ \
320 int __young; \
321 struct vm_area_struct *___vma = __vma; \
322 unsigned long ___address = __address; \
323 __young = ptep_test_and_clear_young(___vma, ___address, __ptep);\
324 __young |= mmu_notifier_clear_young(___vma->vm_mm, ___address, \
325 ___address + PAGE_SIZE); \
326 __young; \
327})
328
329#define pmdp_clear_young_notify(__vma, __address, __pmdp) \
330({ \
331 int __young; \
332 struct vm_area_struct *___vma = __vma; \
333 unsigned long ___address = __address; \
334 __young = pmdp_test_and_clear_young(___vma, ___address, __pmdp);\
335 __young |= mmu_notifier_clear_young(___vma->vm_mm, ___address, \
336 ___address + PMD_SIZE); \
337 __young; \
338})
339
Joerg Roedel34ee6452014-11-13 13:46:09 +1100340#define ptep_clear_flush_notify(__vma, __address, __ptep) \
341({ \
342 unsigned long ___addr = __address & PAGE_MASK; \
343 struct mm_struct *___mm = (__vma)->vm_mm; \
344 pte_t ___pte; \
345 \
346 ___pte = ptep_clear_flush(__vma, __address, __ptep); \
347 mmu_notifier_invalidate_range(___mm, ___addr, \
348 ___addr + PAGE_SIZE); \
349 \
350 ___pte; \
351})
352
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -0700353#define pmdp_huge_clear_flush_notify(__vma, __haddr, __pmd) \
Joerg Roedel34ee6452014-11-13 13:46:09 +1100354({ \
355 unsigned long ___haddr = __haddr & HPAGE_PMD_MASK; \
356 struct mm_struct *___mm = (__vma)->vm_mm; \
357 pmd_t ___pmd; \
358 \
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -0700359 ___pmd = pmdp_huge_clear_flush(__vma, __haddr, __pmd); \
Joerg Roedel34ee6452014-11-13 13:46:09 +1100360 mmu_notifier_invalidate_range(___mm, ___haddr, \
361 ___haddr + HPAGE_PMD_SIZE); \
362 \
363 ___pmd; \
364})
365
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800366#define pudp_huge_clear_flush_notify(__vma, __haddr, __pud) \
367({ \
368 unsigned long ___haddr = __haddr & HPAGE_PUD_MASK; \
369 struct mm_struct *___mm = (__vma)->vm_mm; \
370 pud_t ___pud; \
371 \
372 ___pud = pudp_huge_clear_flush(__vma, __haddr, __pud); \
373 mmu_notifier_invalidate_range(___mm, ___haddr, \
374 ___haddr + HPAGE_PUD_SIZE); \
375 \
376 ___pud; \
377})
378
Xiao Guangrong48af0d72012-10-08 16:29:23 -0700379/*
380 * set_pte_at_notify() sets the pte _after_ running the notifier.
381 * This is safe to start by updating the secondary MMUs, because the primary MMU
382 * pte invalidate must have already happened with a ptep_clear_flush() before
383 * set_pte_at_notify() has been invoked. Updating the secondary MMUs first is
384 * required when we change both the protection of the mapping from read-only to
385 * read-write and the pfn (like during copy on write page faults). Otherwise the
386 * old page would remain mapped readonly in the secondary MMUs after the new
387 * page is already writable by some CPU through the primary MMU.
388 */
Izik Eidus828502d2009-09-21 17:01:51 -0700389#define set_pte_at_notify(__mm, __address, __ptep, __pte) \
390({ \
391 struct mm_struct *___mm = __mm; \
392 unsigned long ___address = __address; \
393 pte_t ___pte = __pte; \
394 \
Izik Eidus828502d2009-09-21 17:01:51 -0700395 mmu_notifier_change_pte(___mm, ___address, ___pte); \
Xiao Guangrong48af0d72012-10-08 16:29:23 -0700396 set_pte_at(___mm, ___address, __ptep, ___pte); \
Izik Eidus828502d2009-09-21 17:01:51 -0700397})
398
Peter Zijlstrab9722162014-08-06 16:08:20 -0700399extern void mmu_notifier_call_srcu(struct rcu_head *rcu,
400 void (*func)(struct rcu_head *rcu));
401extern void mmu_notifier_synchronize(void);
402
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700403#else /* CONFIG_MMU_NOTIFIER */
404
Michal Hocko4d4bbd82017-10-03 16:14:50 -0700405static inline int mm_has_notifiers(struct mm_struct *mm)
406{
407 return 0;
408}
409
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700410static inline void mmu_notifier_release(struct mm_struct *mm)
411{
412}
413
414static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm,
Andres Lagar-Cavilla57128462014-09-22 14:54:42 -0700415 unsigned long start,
416 unsigned long end)
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700417{
418 return 0;
419}
420
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800421static inline int mmu_notifier_test_young(struct mm_struct *mm,
422 unsigned long address)
423{
424 return 0;
425}
426
Izik Eidus828502d2009-09-21 17:01:51 -0700427static inline void mmu_notifier_change_pte(struct mm_struct *mm,
428 unsigned long address, pte_t pte)
429{
430}
431
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700432static inline void mmu_notifier_invalidate_range_start(struct mm_struct *mm,
433 unsigned long start, unsigned long end)
434{
435}
436
437static inline void mmu_notifier_invalidate_range_end(struct mm_struct *mm,
438 unsigned long start, unsigned long end)
439{
440}
441
Joerg Roedel1897bdc2014-11-13 13:46:09 +1100442static inline void mmu_notifier_invalidate_range(struct mm_struct *mm,
443 unsigned long start, unsigned long end)
444{
445}
446
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700447static inline void mmu_notifier_mm_init(struct mm_struct *mm)
448{
449}
450
451static inline void mmu_notifier_mm_destroy(struct mm_struct *mm)
452{
453}
454
455#define ptep_clear_flush_young_notify ptep_clear_flush_young
Andrea Arcangeli91a4ee22011-01-13 15:46:44 -0800456#define pmdp_clear_flush_young_notify pmdp_clear_flush_young
Vladimir Davydov33c3fc72015-09-09 15:35:45 -0700457#define ptep_clear_young_notify ptep_test_and_clear_young
458#define pmdp_clear_young_notify pmdp_test_and_clear_young
Joerg Roedel34ee6452014-11-13 13:46:09 +1100459#define ptep_clear_flush_notify ptep_clear_flush
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -0700460#define pmdp_huge_clear_flush_notify pmdp_huge_clear_flush
Matthew Wilcoxa00cc7d2017-02-24 14:57:02 -0800461#define pudp_huge_clear_flush_notify pudp_huge_clear_flush
Izik Eidus828502d2009-09-21 17:01:51 -0700462#define set_pte_at_notify set_pte_at
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700463
464#endif /* CONFIG_MMU_NOTIFIER */
465
466#endif /* _LINUX_MMU_NOTIFIER_H */