blob: 8d1ca2de4080a2f8e519a5b2ce672bffecf2e252 [file] [log] [blame]
Andrea Arcangelicddb8a52008-07-28 15:46:29 -07001/*
2 * linux/mm/mmu_notifier.c
3 *
4 * Copyright (C) 2008 Qumranet, Inc.
5 * Copyright (C) 2008 SGI
6 * Christoph Lameter <clameter@sgi.com>
7 *
8 * This work is licensed under the terms of the GNU GPL, version 2. See
9 * the COPYING file in the top-level directory.
10 */
11
12#include <linux/rculist.h>
13#include <linux/mmu_notifier.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040014#include <linux/export.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070015#include <linux/mm.h>
16#include <linux/err.h>
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070017#include <linux/srcu.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070018#include <linux/rcupdate.h>
19#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070021
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070022/* global SRCU for all MMs */
Andrea Arcangelia02f4a22012-10-08 16:31:52 -070023static struct srcu_struct srcu;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070024
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070025/*
26 * This function can't run concurrently against mmu_notifier_register
27 * because mm->mm_users > 0 during mmu_notifier_register and exit_mmap
28 * runs with mm_users == 0. Other tasks may still invoke mmu notifiers
29 * in parallel despite there being no task using this mm any more,
30 * through the vmas outside of the exit_mmap context, such as with
31 * vmtruncate. This serializes against mmu_notifier_unregister with
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070032 * the mmu_notifier_mm->lock in addition to SRCU and it serializes
33 * against the other mmu notifiers with SRCU. struct mmu_notifier_mm
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070034 * can't go away from under us as exit_mmap holds an mm_count pin
35 * itself.
36 */
37void __mmu_notifier_release(struct mm_struct *mm)
38{
39 struct mmu_notifier *mn;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070040 int id;
Xiao Guangrongb6f529d2012-07-31 16:45:52 -070041
42 /*
Robin Holt3eb048e2013-02-22 16:35:34 -080043 * srcu_read_lock() here will block synchronize_srcu() in
44 * mmu_notifier_unregister() until all registered
45 * ->release() callouts this function makes have
46 * returned.
Xiao Guangrongb6f529d2012-07-31 16:45:52 -070047 */
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070048 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070049 spin_lock(&mm->mmu_notifier_mm->lock);
50 while (unlikely(!hlist_empty(&mm->mmu_notifier_mm->list))) {
51 mn = hlist_entry(mm->mmu_notifier_mm->list.first,
52 struct mmu_notifier,
53 hlist);
Robin Holt3eb048e2013-02-22 16:35:34 -080054
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070055 /*
Robin Holt3eb048e2013-02-22 16:35:34 -080056 * Unlink. This will prevent mmu_notifier_unregister()
57 * from also making the ->release() callout.
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070058 */
59 hlist_del_init_rcu(&mn->hlist);
Robin Holt3eb048e2013-02-22 16:35:34 -080060 spin_unlock(&mm->mmu_notifier_mm->lock);
61
62 /*
63 * Clear sptes. (see 'release' description in mmu_notifier.h)
64 */
65 if (mn->ops->release)
66 mn->ops->release(mn, mm);
67
68 spin_lock(&mm->mmu_notifier_mm->lock);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070069 }
70 spin_unlock(&mm->mmu_notifier_mm->lock);
71
72 /*
Robin Holt3eb048e2013-02-22 16:35:34 -080073 * All callouts to ->release() which we have done are complete.
74 * Allow synchronize_srcu() in mmu_notifier_unregister() to complete
75 */
76 srcu_read_unlock(&srcu, id);
77
78 /*
79 * mmu_notifier_unregister() may have unlinked a notifier and may
80 * still be calling out to it. Additionally, other notifiers
81 * may have been active via vmtruncate() et. al. Block here
82 * to ensure that all notifier callouts for this mm have been
83 * completed and the sptes are really cleaned up before returning
84 * to exit_mmap().
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070085 */
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070086 synchronize_srcu(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070087}
88
89/*
90 * If no young bitflag is supported by the hardware, ->clear_flush_young can
91 * unmap the address and return 1 or 0 depending if the mapping previously
92 * existed or not.
93 */
94int __mmu_notifier_clear_flush_young(struct mm_struct *mm,
95 unsigned long address)
96{
97 struct mmu_notifier *mn;
98 struct hlist_node *n;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -070099 int young = 0, id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700100
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700101 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700102 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
103 if (mn->ops->clear_flush_young)
104 young |= mn->ops->clear_flush_young(mn, mm, address);
105 }
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700106 srcu_read_unlock(&srcu, id);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700107
108 return young;
109}
110
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800111int __mmu_notifier_test_young(struct mm_struct *mm,
112 unsigned long address)
113{
114 struct mmu_notifier *mn;
115 struct hlist_node *n;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700116 int young = 0, id;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800117
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700118 id = srcu_read_lock(&srcu);
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800119 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
120 if (mn->ops->test_young) {
121 young = mn->ops->test_young(mn, mm, address);
122 if (young)
123 break;
124 }
125 }
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700126 srcu_read_unlock(&srcu, id);
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800127
128 return young;
129}
130
Izik Eidus828502d2009-09-21 17:01:51 -0700131void __mmu_notifier_change_pte(struct mm_struct *mm, unsigned long address,
132 pte_t pte)
133{
134 struct mmu_notifier *mn;
135 struct hlist_node *n;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700136 int id;
Izik Eidus828502d2009-09-21 17:01:51 -0700137
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700138 id = srcu_read_lock(&srcu);
Izik Eidus828502d2009-09-21 17:01:51 -0700139 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
140 if (mn->ops->change_pte)
141 mn->ops->change_pte(mn, mm, address, pte);
142 /*
143 * Some drivers don't have change_pte,
144 * so we must call invalidate_page in that case.
145 */
146 else if (mn->ops->invalidate_page)
147 mn->ops->invalidate_page(mn, mm, address);
148 }
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700149 srcu_read_unlock(&srcu, id);
Izik Eidus828502d2009-09-21 17:01:51 -0700150}
151
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700152void __mmu_notifier_invalidate_page(struct mm_struct *mm,
153 unsigned long address)
154{
155 struct mmu_notifier *mn;
156 struct hlist_node *n;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700157 int id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700158
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700159 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700160 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
161 if (mn->ops->invalidate_page)
162 mn->ops->invalidate_page(mn, mm, address);
163 }
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700164 srcu_read_unlock(&srcu, id);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700165}
166
167void __mmu_notifier_invalidate_range_start(struct mm_struct *mm,
168 unsigned long start, unsigned long end)
169{
170 struct mmu_notifier *mn;
171 struct hlist_node *n;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700172 int id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700173
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700174 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700175 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
176 if (mn->ops->invalidate_range_start)
177 mn->ops->invalidate_range_start(mn, mm, start, end);
178 }
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700179 srcu_read_unlock(&srcu, id);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700180}
181
182void __mmu_notifier_invalidate_range_end(struct mm_struct *mm,
183 unsigned long start, unsigned long end)
184{
185 struct mmu_notifier *mn;
186 struct hlist_node *n;
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700187 int id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700188
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700189 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700190 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
191 if (mn->ops->invalidate_range_end)
192 mn->ops->invalidate_range_end(mn, mm, start, end);
193 }
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700194 srcu_read_unlock(&srcu, id);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700195}
196
197static int do_mmu_notifier_register(struct mmu_notifier *mn,
198 struct mm_struct *mm,
199 int take_mmap_sem)
200{
201 struct mmu_notifier_mm *mmu_notifier_mm;
202 int ret;
203
204 BUG_ON(atomic_read(&mm->mm_users) <= 0);
205
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700206 /*
207 * Verify that mmu_notifier_init() already run and the global srcu is
208 * initialized.
209 */
210 BUG_ON(!srcu.per_cpu_ref);
211
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700212 ret = -ENOMEM;
213 mmu_notifier_mm = kmalloc(sizeof(struct mmu_notifier_mm), GFP_KERNEL);
214 if (unlikely(!mmu_notifier_mm))
215 goto out;
216
217 if (take_mmap_sem)
218 down_write(&mm->mmap_sem);
219 ret = mm_take_all_locks(mm);
220 if (unlikely(ret))
221 goto out_cleanup;
222
223 if (!mm_has_notifiers(mm)) {
224 INIT_HLIST_HEAD(&mmu_notifier_mm->list);
225 spin_lock_init(&mmu_notifier_mm->lock);
226 mm->mmu_notifier_mm = mmu_notifier_mm;
227 mmu_notifier_mm = NULL;
228 }
229 atomic_inc(&mm->mm_count);
230
231 /*
232 * Serialize the update against mmu_notifier_unregister. A
233 * side note: mmu_notifier_release can't run concurrently with
234 * us because we hold the mm_users pin (either implicitly as
235 * current->mm or explicitly with get_task_mm() or similar).
236 * We can't race against any other mmu notifier method either
237 * thanks to mm_take_all_locks().
238 */
239 spin_lock(&mm->mmu_notifier_mm->lock);
240 hlist_add_head(&mn->hlist, &mm->mmu_notifier_mm->list);
241 spin_unlock(&mm->mmu_notifier_mm->lock);
242
243 mm_drop_all_locks(mm);
244out_cleanup:
245 if (take_mmap_sem)
246 up_write(&mm->mmap_sem);
247 /* kfree() does nothing if mmu_notifier_mm is NULL */
248 kfree(mmu_notifier_mm);
249out:
250 BUG_ON(atomic_read(&mm->mm_users) <= 0);
251 return ret;
252}
253
254/*
255 * Must not hold mmap_sem nor any other VM related lock when calling
256 * this registration function. Must also ensure mm_users can't go down
257 * to zero while this runs to avoid races with mmu_notifier_release,
258 * so mm has to be current->mm or the mm should be pinned safely such
259 * as with get_task_mm(). If the mm is not current->mm, the mm_users
260 * pin should be released by calling mmput after mmu_notifier_register
261 * returns. mmu_notifier_unregister must be always called to
262 * unregister the notifier. mm_count is automatically pinned to allow
263 * mmu_notifier_unregister to safely run at any time later, before or
264 * after exit_mmap. ->release will always be called before exit_mmap
265 * frees the pages.
266 */
267int mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm)
268{
269 return do_mmu_notifier_register(mn, mm, 1);
270}
271EXPORT_SYMBOL_GPL(mmu_notifier_register);
272
273/*
274 * Same as mmu_notifier_register but here the caller must hold the
275 * mmap_sem in write mode.
276 */
277int __mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm)
278{
279 return do_mmu_notifier_register(mn, mm, 0);
280}
281EXPORT_SYMBOL_GPL(__mmu_notifier_register);
282
283/* this is called after the last mmu_notifier_unregister() returned */
284void __mmu_notifier_mm_destroy(struct mm_struct *mm)
285{
286 BUG_ON(!hlist_empty(&mm->mmu_notifier_mm->list));
287 kfree(mm->mmu_notifier_mm);
288 mm->mmu_notifier_mm = LIST_POISON1; /* debug */
289}
290
291/*
292 * This releases the mm_count pin automatically and frees the mm
293 * structure if it was the last user of it. It serializes against
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700294 * running mmu notifiers with SRCU and against mmu_notifier_unregister
295 * with the unregister lock + SRCU. All sptes must be dropped before
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700296 * calling mmu_notifier_unregister. ->release or any other notifier
297 * method may be invoked concurrently with mmu_notifier_unregister,
298 * and only after mmu_notifier_unregister returned we're guaranteed
299 * that ->release or any other method can't run anymore.
300 */
301void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
302{
303 BUG_ON(atomic_read(&mm->mm_count) <= 0);
304
Robin Holt3eb048e2013-02-22 16:35:34 -0800305 spin_lock(&mm->mmu_notifier_mm->lock);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700306 if (!hlist_unhashed(&mn->hlist)) {
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700307 int id;
Xiao Guangrongb6f529d2012-07-31 16:45:52 -0700308
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700309 /*
Robin Holt3eb048e2013-02-22 16:35:34 -0800310 * Ensure we synchronize up with __mmu_notifier_release().
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700311 */
Robin Holt3eb048e2013-02-22 16:35:34 -0800312 id = srcu_read_lock(&srcu);
Xiao Guangrongb6f529d2012-07-31 16:45:52 -0700313
Xiao Guangrongb6f529d2012-07-31 16:45:52 -0700314 hlist_del_rcu(&mn->hlist);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700315 spin_unlock(&mm->mmu_notifier_mm->lock);
Robin Holt3eb048e2013-02-22 16:35:34 -0800316
317 if (mn->ops->release)
318 mn->ops->release(mn, mm);
319
320 /*
321 * Allow __mmu_notifier_release() to complete.
322 */
323 srcu_read_unlock(&srcu, id);
324 } else
325 spin_unlock(&mm->mmu_notifier_mm->lock);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700326
327 /*
Robin Holt3eb048e2013-02-22 16:35:34 -0800328 * Wait for any running method to finish, including ->release() if it
329 * was run by __mmu_notifier_release() instead of us.
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700330 */
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700331 synchronize_srcu(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700332
333 BUG_ON(atomic_read(&mm->mm_count) <= 0);
334
335 mmdrop(mm);
336}
337EXPORT_SYMBOL_GPL(mmu_notifier_unregister);
Sagi Grimbergebd4aa52012-10-08 16:29:24 -0700338
339static int __init mmu_notifier_init(void)
340{
341 return init_srcu_struct(&srcu);
342}
343
344module_init(mmu_notifier_init);