blob: f5c3d968d8c6bedf2ddae4356bd2d402efce5f98 [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 Grimberg21a92732012-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 Grimberg21a92732012-10-08 16:29:24 -070022/* global SRCU for all MMs */
Andrea Arcangeli70400302012-10-08 16:31:52 -070023static struct srcu_struct srcu;
Sagi Grimberg21a92732012-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 Grimberg21a92732012-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 Grimberg21a92732012-10-08 16:29:24 -070040 int id;
Xiao Guangrong3ad3d902012-07-31 16:45:52 -070041
42 /*
Robin Holt751efd82013-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 Guangrong3ad3d902012-07-31 16:45:52 -070047 */
Sagi Grimberg21a92732012-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 Holt751efd82013-02-22 16:35:34 -080054
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070055 /*
Robin Holt751efd82013-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 Holt751efd82013-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 Holt751efd82013-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 Grimberg21a92732012-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 Grimberg21a92732012-10-08 16:29:24 -070099 int young = 0, id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700100
Sagi Grimberg21a92732012-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 Grimberg21a92732012-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 Grimberg21a92732012-10-08 16:29:24 -0700116 int young = 0, id;
Andrea Arcangeli8ee53822011-01-13 15:47:10 -0800117
Sagi Grimberg21a92732012-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 Grimberg21a92732012-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 Grimberg21a92732012-10-08 16:29:24 -0700136 int id;
Izik Eidus828502d2009-09-21 17:01:51 -0700137
Sagi Grimberg21a92732012-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);
Izik Eidus828502d2009-09-21 17:01:51 -0700142 }
Sagi Grimberg21a92732012-10-08 16:29:24 -0700143 srcu_read_unlock(&srcu, id);
Izik Eidus828502d2009-09-21 17:01:51 -0700144}
145
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700146void __mmu_notifier_invalidate_page(struct mm_struct *mm,
147 unsigned long address)
148{
149 struct mmu_notifier *mn;
150 struct hlist_node *n;
Sagi Grimberg21a92732012-10-08 16:29:24 -0700151 int id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700152
Sagi Grimberg21a92732012-10-08 16:29:24 -0700153 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700154 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
155 if (mn->ops->invalidate_page)
156 mn->ops->invalidate_page(mn, mm, address);
157 }
Sagi Grimberg21a92732012-10-08 16:29:24 -0700158 srcu_read_unlock(&srcu, id);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700159}
160
161void __mmu_notifier_invalidate_range_start(struct mm_struct *mm,
162 unsigned long start, unsigned long end)
163{
164 struct mmu_notifier *mn;
165 struct hlist_node *n;
Sagi Grimberg21a92732012-10-08 16:29:24 -0700166 int id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700167
Sagi Grimberg21a92732012-10-08 16:29:24 -0700168 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700169 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
170 if (mn->ops->invalidate_range_start)
171 mn->ops->invalidate_range_start(mn, mm, start, end);
172 }
Sagi Grimberg21a92732012-10-08 16:29:24 -0700173 srcu_read_unlock(&srcu, id);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700174}
175
176void __mmu_notifier_invalidate_range_end(struct mm_struct *mm,
177 unsigned long start, unsigned long end)
178{
179 struct mmu_notifier *mn;
180 struct hlist_node *n;
Sagi Grimberg21a92732012-10-08 16:29:24 -0700181 int id;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700182
Sagi Grimberg21a92732012-10-08 16:29:24 -0700183 id = srcu_read_lock(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700184 hlist_for_each_entry_rcu(mn, n, &mm->mmu_notifier_mm->list, hlist) {
185 if (mn->ops->invalidate_range_end)
186 mn->ops->invalidate_range_end(mn, mm, start, end);
187 }
Sagi Grimberg21a92732012-10-08 16:29:24 -0700188 srcu_read_unlock(&srcu, id);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700189}
190
191static int do_mmu_notifier_register(struct mmu_notifier *mn,
192 struct mm_struct *mm,
193 int take_mmap_sem)
194{
195 struct mmu_notifier_mm *mmu_notifier_mm;
196 int ret;
197
198 BUG_ON(atomic_read(&mm->mm_users) <= 0);
199
Sagi Grimberg21a92732012-10-08 16:29:24 -0700200 /*
Gavin Shan35cfa2b2012-10-25 13:38:01 -0700201 * Verify that mmu_notifier_init() already run and the global srcu is
202 * initialized.
203 */
Sagi Grimberg21a92732012-10-08 16:29:24 -0700204 BUG_ON(!srcu.per_cpu_ref);
205
Gavin Shan35cfa2b2012-10-25 13:38:01 -0700206 ret = -ENOMEM;
207 mmu_notifier_mm = kmalloc(sizeof(struct mmu_notifier_mm), GFP_KERNEL);
208 if (unlikely(!mmu_notifier_mm))
209 goto out;
210
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700211 if (take_mmap_sem)
212 down_write(&mm->mmap_sem);
213 ret = mm_take_all_locks(mm);
214 if (unlikely(ret))
Gavin Shan35cfa2b2012-10-25 13:38:01 -0700215 goto out_clean;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700216
217 if (!mm_has_notifiers(mm)) {
218 INIT_HLIST_HEAD(&mmu_notifier_mm->list);
219 spin_lock_init(&mmu_notifier_mm->lock);
Gavin Shane0f3c3f2012-10-08 16:29:26 -0700220
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700221 mm->mmu_notifier_mm = mmu_notifier_mm;
Gavin Shan35cfa2b2012-10-25 13:38:01 -0700222 mmu_notifier_mm = NULL;
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700223 }
224 atomic_inc(&mm->mm_count);
225
226 /*
227 * Serialize the update against mmu_notifier_unregister. A
228 * side note: mmu_notifier_release can't run concurrently with
229 * us because we hold the mm_users pin (either implicitly as
230 * current->mm or explicitly with get_task_mm() or similar).
231 * We can't race against any other mmu notifier method either
232 * thanks to mm_take_all_locks().
233 */
234 spin_lock(&mm->mmu_notifier_mm->lock);
235 hlist_add_head(&mn->hlist, &mm->mmu_notifier_mm->list);
236 spin_unlock(&mm->mmu_notifier_mm->lock);
237
238 mm_drop_all_locks(mm);
Gavin Shan35cfa2b2012-10-25 13:38:01 -0700239out_clean:
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700240 if (take_mmap_sem)
241 up_write(&mm->mmap_sem);
Gavin Shan35cfa2b2012-10-25 13:38:01 -0700242 kfree(mmu_notifier_mm);
243out:
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700244 BUG_ON(atomic_read(&mm->mm_users) <= 0);
245 return ret;
246}
247
248/*
249 * Must not hold mmap_sem nor any other VM related lock when calling
250 * this registration function. Must also ensure mm_users can't go down
251 * to zero while this runs to avoid races with mmu_notifier_release,
252 * so mm has to be current->mm or the mm should be pinned safely such
253 * as with get_task_mm(). If the mm is not current->mm, the mm_users
254 * pin should be released by calling mmput after mmu_notifier_register
255 * returns. mmu_notifier_unregister must be always called to
256 * unregister the notifier. mm_count is automatically pinned to allow
257 * mmu_notifier_unregister to safely run at any time later, before or
258 * after exit_mmap. ->release will always be called before exit_mmap
259 * frees the pages.
260 */
261int mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm)
262{
263 return do_mmu_notifier_register(mn, mm, 1);
264}
265EXPORT_SYMBOL_GPL(mmu_notifier_register);
266
267/*
268 * Same as mmu_notifier_register but here the caller must hold the
269 * mmap_sem in write mode.
270 */
271int __mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm)
272{
273 return do_mmu_notifier_register(mn, mm, 0);
274}
275EXPORT_SYMBOL_GPL(__mmu_notifier_register);
276
277/* this is called after the last mmu_notifier_unregister() returned */
278void __mmu_notifier_mm_destroy(struct mm_struct *mm)
279{
280 BUG_ON(!hlist_empty(&mm->mmu_notifier_mm->list));
281 kfree(mm->mmu_notifier_mm);
282 mm->mmu_notifier_mm = LIST_POISON1; /* debug */
283}
284
285/*
286 * This releases the mm_count pin automatically and frees the mm
287 * structure if it was the last user of it. It serializes against
Sagi Grimberg21a92732012-10-08 16:29:24 -0700288 * running mmu notifiers with SRCU and against mmu_notifier_unregister
289 * with the unregister lock + SRCU. All sptes must be dropped before
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700290 * calling mmu_notifier_unregister. ->release or any other notifier
291 * method may be invoked concurrently with mmu_notifier_unregister,
292 * and only after mmu_notifier_unregister returned we're guaranteed
293 * that ->release or any other method can't run anymore.
294 */
295void mmu_notifier_unregister(struct mmu_notifier *mn, struct mm_struct *mm)
296{
297 BUG_ON(atomic_read(&mm->mm_count) <= 0);
298
Robin Holt751efd82013-02-22 16:35:34 -0800299 spin_lock(&mm->mmu_notifier_mm->lock);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700300 if (!hlist_unhashed(&mn->hlist)) {
Sagi Grimberg21a92732012-10-08 16:29:24 -0700301 int id;
Xiao Guangrong3ad3d902012-07-31 16:45:52 -0700302
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700303 /*
Robin Holt751efd82013-02-22 16:35:34 -0800304 * Ensure we synchronize up with __mmu_notifier_release().
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700305 */
Robin Holt751efd82013-02-22 16:35:34 -0800306 id = srcu_read_lock(&srcu);
Xiao Guangrong3ad3d902012-07-31 16:45:52 -0700307
Xiao Guangrong3ad3d902012-07-31 16:45:52 -0700308 hlist_del_rcu(&mn->hlist);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700309 spin_unlock(&mm->mmu_notifier_mm->lock);
Robin Holt751efd82013-02-22 16:35:34 -0800310
311 if (mn->ops->release)
312 mn->ops->release(mn, mm);
313
314 /*
315 * Allow __mmu_notifier_release() to complete.
316 */
317 srcu_read_unlock(&srcu, id);
318 } else
319 spin_unlock(&mm->mmu_notifier_mm->lock);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700320
321 /*
Robin Holt751efd82013-02-22 16:35:34 -0800322 * Wait for any running method to finish, including ->release() if it
323 * was run by __mmu_notifier_release() instead of us.
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700324 */
Sagi Grimberg21a92732012-10-08 16:29:24 -0700325 synchronize_srcu(&srcu);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700326
327 BUG_ON(atomic_read(&mm->mm_count) <= 0);
328
329 mmdrop(mm);
330}
331EXPORT_SYMBOL_GPL(mmu_notifier_unregister);
Sagi Grimberg21a92732012-10-08 16:29:24 -0700332
333static int __init mmu_notifier_init(void)
334{
335 return init_srcu_struct(&srcu);
336}
337
338module_init(mmu_notifier_init);