blob: 70bebee7bea2ffafada63b83548d89f8f0fb752c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/rmap.c - physical to virtual reverse mappings
3 *
4 * Copyright 2001, Rik van Riel <riel@conectiva.com.br>
5 * Released under the General Public License (GPL).
6 *
7 * Simple, low overhead reverse mapping scheme.
8 * Please try to keep this thing as modular as possible.
9 *
10 * Provides methods for unmapping each kind of mapped page:
11 * the anon methods track anonymous pages, and
12 * the file methods track pages belonging to an inode.
13 *
14 * Original design by Rik van Riel <riel@conectiva.com.br> 2001
15 * File methods by Dave McCracken <dmccr@us.ibm.com> 2003, 2004
16 * Anonymous methods by Andrea Arcangeli <andrea@suse.de> 2004
Hugh Dickins98f32602009-05-21 20:33:58 +010017 * Contributions by Hugh Dickins 2003, 2004
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
19
20/*
21 * Lock ordering in mm:
22 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080023 * inode->i_mutex (while writing or truncating, not reading or faulting)
Nick Piggin82591e62006-10-19 23:29:10 -070024 * mm->mmap_sem
25 * page->flags PG_locked (lock_page)
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -080026 * hugetlbfs_i_mmap_rwsem_key (in huge_pmd_share)
27 * mapping->i_mmap_rwsem
28 * anon_vma->rwsem
29 * mm->page_table_lock or pte_lock
Mel Gormana52633d2016-07-28 15:45:28 -070030 * zone_lru_lock (in mark_page_accessed, isolate_lru_page)
Kirill A. Shutemov88f306b2016-01-15 16:57:31 -080031 * swap_lock (in swap_duplicate, swap_info_get)
32 * mmlist_lock (in mmput, drain_mmlist and others)
33 * mapping->private_lock (in __set_page_dirty_buffers)
34 * mem_cgroup_{begin,end}_page_stat (memcg->move_lock)
35 * mapping->tree_lock (widely used)
36 * inode->i_lock (in set_page_dirty's __mark_inode_dirty)
37 * bdi.wb->list_lock (in set_page_dirty's __mark_inode_dirty)
38 * sb_lock (within inode_lock in fs/fs-writeback.c)
39 * mapping->tree_lock (widely used, in set_page_dirty,
40 * in arch-dependent flush_dcache_mmap_lock,
41 * within bdi.wb->list_lock in __sync_single_inode)
Andi Kleen6a460792009-09-16 11:50:15 +020042 *
Ingo Molnar5a505082012-12-02 19:56:46 +000043 * anon_vma->rwsem,mapping->i_mutex (memory_failure, collect_procs_anon)
Peter Zijlstra9b679322011-06-27 16:18:09 -070044 * ->tasklist_lock
Andi Kleen6a460792009-09-16 11:50:15 +020045 * pte map lock
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 */
47
48#include <linux/mm.h>
49#include <linux/pagemap.h>
50#include <linux/swap.h>
51#include <linux/swapops.h>
52#include <linux/slab.h>
53#include <linux/init.h>
Hugh Dickins5ad64682009-12-14 17:59:24 -080054#include <linux/ksm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/rmap.h>
56#include <linux/rcupdate.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040057#include <linux/export.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080058#include <linux/memcontrol.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070059#include <linux/mmu_notifier.h>
KOSAKI Motohiro64cdd542009-01-06 14:39:16 -080060#include <linux/migrate.h>
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +090061#include <linux/hugetlb.h>
Jan Karaef5d4372012-10-25 13:37:31 -070062#include <linux/backing-dev.h>
Vladimir Davydov33c3fc72015-09-09 15:35:45 -070063#include <linux/page_idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#include <asm/tlbflush.h>
66
Mel Gorman72b252a2015-09-04 15:47:32 -070067#include <trace/events/tlb.h>
68
Nick Pigginb291f002008-10-18 20:26:44 -070069#include "internal.h"
70
Adrian Bunkfdd2e5f2008-10-18 20:28:38 -070071static struct kmem_cache *anon_vma_cachep;
Rik van Riel5beb4932010-03-05 13:42:07 -080072static struct kmem_cache *anon_vma_chain_cachep;
Adrian Bunkfdd2e5f2008-10-18 20:28:38 -070073
74static inline struct anon_vma *anon_vma_alloc(void)
75{
Peter Zijlstra01d8b202011-03-22 16:32:49 -070076 struct anon_vma *anon_vma;
77
78 anon_vma = kmem_cache_alloc(anon_vma_cachep, GFP_KERNEL);
79 if (anon_vma) {
80 atomic_set(&anon_vma->refcount, 1);
Jann Hornc24ca0f2022-08-31 19:06:00 +020081 anon_vma->num_children = 0;
82 anon_vma->num_active_vmas = 0;
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -080083 anon_vma->parent = anon_vma;
Peter Zijlstra01d8b202011-03-22 16:32:49 -070084 /*
85 * Initialise the anon_vma root to point to itself. If called
86 * from fork, the root will be reset to the parents anon_vma.
87 */
88 anon_vma->root = anon_vma;
89 }
90
91 return anon_vma;
Adrian Bunkfdd2e5f2008-10-18 20:28:38 -070092}
93
Peter Zijlstra01d8b202011-03-22 16:32:49 -070094static inline void anon_vma_free(struct anon_vma *anon_vma)
Adrian Bunkfdd2e5f2008-10-18 20:28:38 -070095{
Peter Zijlstra01d8b202011-03-22 16:32:49 -070096 VM_BUG_ON(atomic_read(&anon_vma->refcount));
Peter Zijlstra88c22082011-05-24 17:12:13 -070097
98 /*
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +000099 * Synchronize against page_lock_anon_vma_read() such that
Peter Zijlstra88c22082011-05-24 17:12:13 -0700100 * we can safely hold the lock without the anon_vma getting
101 * freed.
102 *
103 * Relies on the full mb implied by the atomic_dec_and_test() from
104 * put_anon_vma() against the acquire barrier implied by
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000105 * down_read_trylock() from page_lock_anon_vma_read(). This orders:
Peter Zijlstra88c22082011-05-24 17:12:13 -0700106 *
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000107 * page_lock_anon_vma_read() VS put_anon_vma()
108 * down_read_trylock() atomic_dec_and_test()
Peter Zijlstra88c22082011-05-24 17:12:13 -0700109 * LOCK MB
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000110 * atomic_read() rwsem_is_locked()
Peter Zijlstra88c22082011-05-24 17:12:13 -0700111 *
112 * LOCK should suffice since the actual taking of the lock must
113 * happen _before_ what follows.
114 */
Hugh Dickins7f39dda2014-06-04 16:05:33 -0700115 might_sleep();
Ingo Molnar5a505082012-12-02 19:56:46 +0000116 if (rwsem_is_locked(&anon_vma->root->rwsem)) {
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000117 anon_vma_lock_write(anon_vma);
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -0800118 anon_vma_unlock_write(anon_vma);
Peter Zijlstra88c22082011-05-24 17:12:13 -0700119 }
120
Adrian Bunkfdd2e5f2008-10-18 20:28:38 -0700121 kmem_cache_free(anon_vma_cachep, anon_vma);
122}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Linus Torvaldsdd347392011-06-17 19:05:36 -0700124static inline struct anon_vma_chain *anon_vma_chain_alloc(gfp_t gfp)
Rik van Riel5beb4932010-03-05 13:42:07 -0800125{
Linus Torvaldsdd347392011-06-17 19:05:36 -0700126 return kmem_cache_alloc(anon_vma_chain_cachep, gfp);
Rik van Riel5beb4932010-03-05 13:42:07 -0800127}
128
Namhyung Kime574b5f2010-10-26 14:22:02 -0700129static void anon_vma_chain_free(struct anon_vma_chain *anon_vma_chain)
Rik van Riel5beb4932010-03-05 13:42:07 -0800130{
131 kmem_cache_free(anon_vma_chain_cachep, anon_vma_chain);
132}
133
Kautuk Consul6583a842012-03-21 16:34:01 -0700134static void anon_vma_chain_link(struct vm_area_struct *vma,
135 struct anon_vma_chain *avc,
136 struct anon_vma *anon_vma)
137{
138 avc->vma = vma;
139 avc->anon_vma = anon_vma;
140 list_add(&avc->same_vma, &vma->anon_vma_chain);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700141 anon_vma_interval_tree_insert(avc, &anon_vma->rb_root);
Kautuk Consul6583a842012-03-21 16:34:01 -0700142}
143
Linus Torvaldsd9d332e2008-10-19 10:32:20 -0700144/**
145 * anon_vma_prepare - attach an anon_vma to a memory region
146 * @vma: the memory region in question
147 *
148 * This makes sure the memory mapping described by 'vma' has
149 * an 'anon_vma' attached to it, so that we can associate the
150 * anonymous pages mapped into it with that anon_vma.
151 *
152 * The common case will be that we already have one, but if
Figo.zhang23a07902010-12-27 15:14:06 +0100153 * not we either need to find an adjacent mapping that we
Linus Torvaldsd9d332e2008-10-19 10:32:20 -0700154 * can re-use the anon_vma from (very common when the only
155 * reason for splitting a vma has been mprotect()), or we
156 * allocate a new one.
157 *
158 * Anon-vma allocations are very subtle, because we may have
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000159 * optimistically looked up an anon_vma in page_lock_anon_vma_read()
Linus Torvaldsd9d332e2008-10-19 10:32:20 -0700160 * and that may actually touch the spinlock even in the newly
161 * allocated vma (it depends on RCU to make sure that the
162 * anon_vma isn't actually destroyed).
163 *
164 * As a result, we need to do proper anon_vma locking even
165 * for the new allocation. At the same time, we do not want
166 * to do any locking for the common case of already having
167 * an anon_vma.
168 *
169 * This must be called with the mmap_sem held for reading.
170 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171int anon_vma_prepare(struct vm_area_struct *vma)
172{
173 struct anon_vma *anon_vma = vma->anon_vma;
Rik van Riel5beb4932010-03-05 13:42:07 -0800174 struct anon_vma_chain *avc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 might_sleep();
177 if (unlikely(!anon_vma)) {
178 struct mm_struct *mm = vma->vm_mm;
Linus Torvaldsd9d332e2008-10-19 10:32:20 -0700179 struct anon_vma *allocated;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Linus Torvaldsdd347392011-06-17 19:05:36 -0700181 avc = anon_vma_chain_alloc(GFP_KERNEL);
Rik van Riel5beb4932010-03-05 13:42:07 -0800182 if (!avc)
183 goto out_enomem;
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 anon_vma = find_mergeable_anon_vma(vma);
Linus Torvaldsd9d332e2008-10-19 10:32:20 -0700186 allocated = NULL;
187 if (!anon_vma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 anon_vma = anon_vma_alloc();
189 if (unlikely(!anon_vma))
Rik van Riel5beb4932010-03-05 13:42:07 -0800190 goto out_enomem_free_avc;
Jann Hornc24ca0f2022-08-31 19:06:00 +0200191 anon_vma->num_children++; /* self-parent link for new root */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 allocated = anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000195 anon_vma_lock_write(anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 /* page_table_lock to protect against threads */
197 spin_lock(&mm->page_table_lock);
198 if (likely(!vma->anon_vma)) {
199 vma->anon_vma = anon_vma;
Kautuk Consul6583a842012-03-21 16:34:01 -0700200 anon_vma_chain_link(vma, avc, anon_vma);
Jann Hornc24ca0f2022-08-31 19:06:00 +0200201 anon_vma->num_active_vmas++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 allocated = NULL;
Oleg Nesterov31f2b0e2010-04-23 13:18:01 -0400203 avc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205 spin_unlock(&mm->page_table_lock);
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -0800206 anon_vma_unlock_write(anon_vma);
Oleg Nesterov31f2b0e2010-04-23 13:18:01 -0400207
208 if (unlikely(allocated))
Peter Zijlstra01d8b202011-03-22 16:32:49 -0700209 put_anon_vma(allocated);
Oleg Nesterov31f2b0e2010-04-23 13:18:01 -0400210 if (unlikely(avc))
Rik van Riel5beb4932010-03-05 13:42:07 -0800211 anon_vma_chain_free(avc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213 return 0;
Rik van Riel5beb4932010-03-05 13:42:07 -0800214
215 out_enomem_free_avc:
216 anon_vma_chain_free(avc);
217 out_enomem:
218 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700221/*
222 * This is a useful helper function for locking the anon_vma root as
223 * we traverse the vma->anon_vma_chain, looping over anon_vma's that
224 * have the same vma.
225 *
226 * Such anon_vma's should have the same root, so you'd expect to see
227 * just a single mutex_lock for the whole traversal.
228 */
229static inline struct anon_vma *lock_anon_vma_root(struct anon_vma *root, struct anon_vma *anon_vma)
230{
231 struct anon_vma *new_root = anon_vma->root;
232 if (new_root != root) {
233 if (WARN_ON_ONCE(root))
Ingo Molnar5a505082012-12-02 19:56:46 +0000234 up_write(&root->rwsem);
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700235 root = new_root;
Ingo Molnar5a505082012-12-02 19:56:46 +0000236 down_write(&root->rwsem);
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700237 }
238 return root;
239}
240
241static inline void unlock_anon_vma_root(struct anon_vma *root)
242{
243 if (root)
Ingo Molnar5a505082012-12-02 19:56:46 +0000244 up_write(&root->rwsem);
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700245}
246
Rik van Riel5beb4932010-03-05 13:42:07 -0800247/*
248 * Attach the anon_vmas from src to dst.
249 * Returns 0 on success, -ENOMEM on failure.
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800250 *
251 * If dst->anon_vma is NULL this function tries to find and reuse existing
252 * anon_vma which has no vmas and only one child anon_vma. This prevents
253 * degradation of anon_vma hierarchy to endless linear chain in case of
254 * constantly forking task. On the other hand, an anon_vma with more than one
255 * child isn't reused even if there was no alive vma, thus rmap walker has a
256 * good chance of avoiding scanning the whole hierarchy when it searches where
257 * page is mapped.
Rik van Riel5beb4932010-03-05 13:42:07 -0800258 */
259int anon_vma_clone(struct vm_area_struct *dst, struct vm_area_struct *src)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Rik van Riel5beb4932010-03-05 13:42:07 -0800261 struct anon_vma_chain *avc, *pavc;
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700262 struct anon_vma *root = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Linus Torvalds646d87b2010-04-11 17:15:03 -0700264 list_for_each_entry_reverse(pavc, &src->anon_vma_chain, same_vma) {
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700265 struct anon_vma *anon_vma;
266
Linus Torvaldsdd347392011-06-17 19:05:36 -0700267 avc = anon_vma_chain_alloc(GFP_NOWAIT | __GFP_NOWARN);
268 if (unlikely(!avc)) {
269 unlock_anon_vma_root(root);
270 root = NULL;
271 avc = anon_vma_chain_alloc(GFP_KERNEL);
272 if (!avc)
273 goto enomem_failure;
274 }
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700275 anon_vma = pavc->anon_vma;
276 root = lock_anon_vma_root(root, anon_vma);
277 anon_vma_chain_link(dst, avc, anon_vma);
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800278
279 /*
Jann Hornc24ca0f2022-08-31 19:06:00 +0200280 * Reuse existing anon_vma if it has no vma and only one
281 * anon_vma child.
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800282 *
Jann Hornc24ca0f2022-08-31 19:06:00 +0200283 * Root anon_vma is never reused:
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800284 * it has self-parent reference and at least one child.
285 */
Jann Hornc24ca0f2022-08-31 19:06:00 +0200286 if (!dst->anon_vma &&
287 anon_vma->num_children < 2 &&
288 anon_vma->num_active_vmas == 0)
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800289 dst->anon_vma = anon_vma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800291 if (dst->anon_vma)
Jann Hornc24ca0f2022-08-31 19:06:00 +0200292 dst->anon_vma->num_active_vmas++;
Linus Torvaldsbb4aa392011-06-16 20:44:51 -0700293 unlock_anon_vma_root(root);
Rik van Riel5beb4932010-03-05 13:42:07 -0800294 return 0;
295
296 enomem_failure:
Leon Yu3fe89b32015-03-25 15:55:11 -0700297 /*
298 * dst->anon_vma is dropped here otherwise its degree can be incorrectly
299 * decremented in unlink_anon_vmas().
300 * We can safely do this because callers of anon_vma_clone() don't care
301 * about dst->anon_vma if anon_vma_clone() failed.
302 */
303 dst->anon_vma = NULL;
Rik van Riel5beb4932010-03-05 13:42:07 -0800304 unlink_anon_vmas(dst);
305 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Rik van Riel5beb4932010-03-05 13:42:07 -0800308/*
309 * Attach vma to its own anon_vma, as well as to the anon_vmas that
310 * the corresponding VMA in the parent process is attached to.
311 * Returns 0 on success, non-zero on failure.
312 */
313int anon_vma_fork(struct vm_area_struct *vma, struct vm_area_struct *pvma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Rik van Riel5beb4932010-03-05 13:42:07 -0800315 struct anon_vma_chain *avc;
316 struct anon_vma *anon_vma;
Daniel Forrestc4ea95d2014-12-02 15:59:42 -0800317 int error;
Rik van Riel5beb4932010-03-05 13:42:07 -0800318
319 /* Don't bother if the parent process has no anon_vma here. */
320 if (!pvma->anon_vma)
321 return 0;
322
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800323 /* Drop inherited anon_vma, we'll reuse existing or allocate new. */
324 vma->anon_vma = NULL;
325
Rik van Riel5beb4932010-03-05 13:42:07 -0800326 /*
327 * First, attach the new VMA to the parent VMA's anon_vmas,
328 * so rmap can find non-COWed pages in child processes.
329 */
Daniel Forrestc4ea95d2014-12-02 15:59:42 -0800330 error = anon_vma_clone(vma, pvma);
331 if (error)
332 return error;
Rik van Riel5beb4932010-03-05 13:42:07 -0800333
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800334 /* An existing anon_vma has been reused, all done then. */
335 if (vma->anon_vma)
336 return 0;
337
Rik van Riel5beb4932010-03-05 13:42:07 -0800338 /* Then add our own anon_vma. */
339 anon_vma = anon_vma_alloc();
340 if (!anon_vma)
341 goto out_error;
Jann Hornc24ca0f2022-08-31 19:06:00 +0200342 anon_vma->num_active_vmas++;
Linus Torvaldsdd347392011-06-17 19:05:36 -0700343 avc = anon_vma_chain_alloc(GFP_KERNEL);
Rik van Riel5beb4932010-03-05 13:42:07 -0800344 if (!avc)
345 goto out_error_free_anon_vma;
Rik van Riel5c341ee2010-08-09 17:18:39 -0700346
347 /*
348 * The root anon_vma's spinlock is the lock actually used when we
349 * lock any of the anon_vmas in this anon_vma tree.
350 */
351 anon_vma->root = pvma->anon_vma->root;
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800352 anon_vma->parent = pvma->anon_vma;
Rik van Riel76545062010-08-09 17:18:41 -0700353 /*
Peter Zijlstra01d8b202011-03-22 16:32:49 -0700354 * With refcounts, an anon_vma can stay around longer than the
355 * process it belongs to. The root anon_vma needs to be pinned until
356 * this anon_vma is freed, because the lock lives in the root.
Rik van Riel76545062010-08-09 17:18:41 -0700357 */
358 get_anon_vma(anon_vma->root);
Rik van Riel5beb4932010-03-05 13:42:07 -0800359 /* Mark this anon_vma as the one where our new (COWed) pages go. */
360 vma->anon_vma = anon_vma;
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000361 anon_vma_lock_write(anon_vma);
Rik van Riel5c341ee2010-08-09 17:18:39 -0700362 anon_vma_chain_link(vma, avc, anon_vma);
Jann Hornc24ca0f2022-08-31 19:06:00 +0200363 anon_vma->parent->num_children++;
Konstantin Khlebnikov08b52702013-02-22 16:34:40 -0800364 anon_vma_unlock_write(anon_vma);
Rik van Riel5beb4932010-03-05 13:42:07 -0800365
366 return 0;
367
368 out_error_free_anon_vma:
Peter Zijlstra01d8b202011-03-22 16:32:49 -0700369 put_anon_vma(anon_vma);
Rik van Riel5beb4932010-03-05 13:42:07 -0800370 out_error:
Rik van Riel4946d542010-04-05 12:13:33 -0400371 unlink_anon_vmas(vma);
Rik van Riel5beb4932010-03-05 13:42:07 -0800372 return -ENOMEM;
373}
374
Rik van Riel5beb4932010-03-05 13:42:07 -0800375void unlink_anon_vmas(struct vm_area_struct *vma)
376{
377 struct anon_vma_chain *avc, *next;
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200378 struct anon_vma *root = NULL;
Rik van Riel5beb4932010-03-05 13:42:07 -0800379
Rik van Riel5c341ee2010-08-09 17:18:39 -0700380 /*
381 * Unlink each anon_vma chained to the VMA. This list is ordered
382 * from newest to oldest, ensuring the root anon_vma gets freed last.
383 */
Rik van Riel5beb4932010-03-05 13:42:07 -0800384 list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) {
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200385 struct anon_vma *anon_vma = avc->anon_vma;
386
387 root = lock_anon_vma_root(root, anon_vma);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700388 anon_vma_interval_tree_remove(avc, &anon_vma->rb_root);
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200389
390 /*
391 * Leave empty anon_vmas on the list - we'll need
392 * to free them outside the lock.
393 */
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800394 if (RB_EMPTY_ROOT(&anon_vma->rb_root)) {
Jann Hornc24ca0f2022-08-31 19:06:00 +0200395 anon_vma->parent->num_children--;
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200396 continue;
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800397 }
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200398
399 list_del(&avc->same_vma);
400 anon_vma_chain_free(avc);
401 }
Konstantin Khlebnikov7a3ef202015-01-08 14:32:15 -0800402 if (vma->anon_vma)
Jann Hornc24ca0f2022-08-31 19:06:00 +0200403 vma->anon_vma->num_active_vmas--;
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200404 unlock_anon_vma_root(root);
405
406 /*
407 * Iterate the list once more, it now only contains empty and unlinked
408 * anon_vmas, destroy them. Could not do before due to __put_anon_vma()
Ingo Molnar5a505082012-12-02 19:56:46 +0000409 * needing to write-acquire the anon_vma->root->rwsem.
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200410 */
411 list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) {
412 struct anon_vma *anon_vma = avc->anon_vma;
413
Jann Hornc24ca0f2022-08-31 19:06:00 +0200414 VM_WARN_ON(anon_vma->num_children);
415 VM_WARN_ON(anon_vma->num_active_vmas);
Peter Zijlstraeee2acb2011-06-17 13:54:23 +0200416 put_anon_vma(anon_vma);
417
Rik van Riel5beb4932010-03-05 13:42:07 -0800418 list_del(&avc->same_vma);
419 anon_vma_chain_free(avc);
420 }
421}
422
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700423static void anon_vma_ctor(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Christoph Lametera35afb82007-05-16 22:10:57 -0700425 struct anon_vma *anon_vma = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Ingo Molnar5a505082012-12-02 19:56:46 +0000427 init_rwsem(&anon_vma->rwsem);
Peter Zijlstra83813262011-03-22 16:32:48 -0700428 atomic_set(&anon_vma->refcount, 0);
Michel Lespinassebf181b92012-10-08 16:31:39 -0700429 anon_vma->rb_root = RB_ROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
432void __init anon_vma_init(void)
433{
434 anon_vma_cachep = kmem_cache_create("anon_vma", sizeof(struct anon_vma),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800435 0, SLAB_DESTROY_BY_RCU|SLAB_PANIC|SLAB_ACCOUNT,
436 anon_vma_ctor);
437 anon_vma_chain_cachep = KMEM_CACHE(anon_vma_chain,
438 SLAB_PANIC|SLAB_ACCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
441/*
Peter Zijlstra6111e4c2011-05-24 17:12:08 -0700442 * Getting a lock on a stable anon_vma from a page off the LRU is tricky!
443 *
444 * Since there is no serialization what so ever against page_remove_rmap()
445 * the best this function can do is return a locked anon_vma that might
446 * have been relevant to this page.
447 *
448 * The page might have been remapped to a different anon_vma or the anon_vma
449 * returned may already be freed (and even reused).
450 *
Peter Zijlstrabc658c92011-05-29 10:33:44 +0200451 * In case it was remapped to a different anon_vma, the new anon_vma will be a
452 * child of the old anon_vma, and the anon_vma lifetime rules will therefore
453 * ensure that any anon_vma obtained from the page will still be valid for as
454 * long as we observe page_mapped() [ hence all those page_mapped() tests ].
455 *
Peter Zijlstra6111e4c2011-05-24 17:12:08 -0700456 * All users of this function must be very careful when walking the anon_vma
457 * chain and verify that the page in question is indeed mapped in it
458 * [ something equivalent to page_mapped_in_vma() ].
459 *
460 * Since anon_vma's slab is DESTROY_BY_RCU and we know from page_remove_rmap()
461 * that the anon_vma pointer from page->mapping is valid if there is a
462 * mapcount, we can dereference the anon_vma after observing those.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 */
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700464struct anon_vma *page_get_anon_vma(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700466 struct anon_vma *anon_vma = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 unsigned long anon_mapping;
468
469 rcu_read_lock();
Jason Low4db0c3c2015-04-15 16:14:08 -0700470 anon_mapping = (unsigned long)READ_ONCE(page->mapping);
Hugh Dickins3ca7b3c2009-12-14 17:58:57 -0800471 if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 goto out;
473 if (!page_mapped(page))
474 goto out;
475
476 anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700477 if (!atomic_inc_not_zero(&anon_vma->refcount)) {
478 anon_vma = NULL;
479 goto out;
480 }
Hugh Dickinsf18194272010-08-25 23:12:54 -0700481
482 /*
483 * If this page is still mapped, then its anon_vma cannot have been
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700484 * freed. But if it has been unmapped, we have no security against the
485 * anon_vma structure being freed and reused (for another anon_vma:
486 * SLAB_DESTROY_BY_RCU guarantees that - so the atomic_inc_not_zero()
487 * above cannot corrupt).
Hugh Dickinsf18194272010-08-25 23:12:54 -0700488 */
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700489 if (!page_mapped(page)) {
Hugh Dickins7f39dda2014-06-04 16:05:33 -0700490 rcu_read_unlock();
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700491 put_anon_vma(anon_vma);
Hugh Dickins7f39dda2014-06-04 16:05:33 -0700492 return NULL;
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494out:
495 rcu_read_unlock();
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700496
497 return anon_vma;
498}
499
Peter Zijlstra88c22082011-05-24 17:12:13 -0700500/*
501 * Similar to page_get_anon_vma() except it locks the anon_vma.
502 *
503 * Its a little more complex as it tries to keep the fast path to a single
504 * atomic op -- the trylock. If we fail the trylock, we fall back to getting a
505 * reference like with page_get_anon_vma() and then block on the mutex.
506 */
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000507struct anon_vma *page_lock_anon_vma_read(struct page *page)
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700508{
Peter Zijlstra88c22082011-05-24 17:12:13 -0700509 struct anon_vma *anon_vma = NULL;
Hugh Dickinseee0f252011-05-28 13:20:21 -0700510 struct anon_vma *root_anon_vma;
Peter Zijlstra88c22082011-05-24 17:12:13 -0700511 unsigned long anon_mapping;
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700512
Peter Zijlstra88c22082011-05-24 17:12:13 -0700513 rcu_read_lock();
Jason Low4db0c3c2015-04-15 16:14:08 -0700514 anon_mapping = (unsigned long)READ_ONCE(page->mapping);
Peter Zijlstra88c22082011-05-24 17:12:13 -0700515 if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
516 goto out;
517 if (!page_mapped(page))
518 goto out;
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700519
Peter Zijlstra88c22082011-05-24 17:12:13 -0700520 anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
Jason Low4db0c3c2015-04-15 16:14:08 -0700521 root_anon_vma = READ_ONCE(anon_vma->root);
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000522 if (down_read_trylock(&root_anon_vma->rwsem)) {
Peter Zijlstra88c22082011-05-24 17:12:13 -0700523 /*
Hugh Dickinseee0f252011-05-28 13:20:21 -0700524 * If the page is still mapped, then this anon_vma is still
525 * its anon_vma, and holding the mutex ensures that it will
Peter Zijlstrabc658c92011-05-29 10:33:44 +0200526 * not go away, see anon_vma_free().
Peter Zijlstra88c22082011-05-24 17:12:13 -0700527 */
Hugh Dickinseee0f252011-05-28 13:20:21 -0700528 if (!page_mapped(page)) {
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000529 up_read(&root_anon_vma->rwsem);
Peter Zijlstra88c22082011-05-24 17:12:13 -0700530 anon_vma = NULL;
531 }
532 goto out;
533 }
534
535 /* trylock failed, we got to sleep */
536 if (!atomic_inc_not_zero(&anon_vma->refcount)) {
537 anon_vma = NULL;
538 goto out;
539 }
540
541 if (!page_mapped(page)) {
Hugh Dickins7f39dda2014-06-04 16:05:33 -0700542 rcu_read_unlock();
Peter Zijlstra88c22082011-05-24 17:12:13 -0700543 put_anon_vma(anon_vma);
Hugh Dickins7f39dda2014-06-04 16:05:33 -0700544 return NULL;
Peter Zijlstra88c22082011-05-24 17:12:13 -0700545 }
546
547 /* we pinned the anon_vma, its safe to sleep */
548 rcu_read_unlock();
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000549 anon_vma_lock_read(anon_vma);
Peter Zijlstra88c22082011-05-24 17:12:13 -0700550
551 if (atomic_dec_and_test(&anon_vma->refcount)) {
552 /*
553 * Oops, we held the last refcount, release the lock
554 * and bail -- can't simply use put_anon_vma() because
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000555 * we'll deadlock on the anon_vma_lock_write() recursion.
Peter Zijlstra88c22082011-05-24 17:12:13 -0700556 */
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000557 anon_vma_unlock_read(anon_vma);
Peter Zijlstra88c22082011-05-24 17:12:13 -0700558 __put_anon_vma(anon_vma);
559 anon_vma = NULL;
560 }
561
562 return anon_vma;
563
564out:
565 rcu_read_unlock();
Peter Zijlstra746b18d2011-05-24 17:12:10 -0700566 return anon_vma;
Oleg Nesterov34bbd702007-02-28 20:13:49 -0800567}
568
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000569void page_unlock_anon_vma_read(struct anon_vma *anon_vma)
Oleg Nesterov34bbd702007-02-28 20:13:49 -0800570{
Ingo Molnar4fc3f1d2012-12-02 19:56:50 +0000571 anon_vma_unlock_read(anon_vma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
Mel Gorman72b252a2015-09-04 15:47:32 -0700574#ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
Mel Gorman72b252a2015-09-04 15:47:32 -0700575/*
576 * Flush TLB entries for recently unmapped pages from remote CPUs. It is
577 * important if a PTE was dirty when it was unmapped that it's flushed
578 * before any IO is initiated on the page to prevent lost writes. Similarly,
579 * it must be flushed before freeing to prevent data leakage.
580 */
581void try_to_unmap_flush(void)
582{
583 struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
584 int cpu;
585
586 if (!tlb_ubc->flush_required)
587 return;
588
589 cpu = get_cpu();
590
Nadav Amit858eaaa72016-04-01 14:31:26 -0700591 if (cpumask_test_cpu(cpu, &tlb_ubc->cpumask)) {
592 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
593 local_flush_tlb();
594 trace_tlb_flush(TLB_LOCAL_SHOOTDOWN, TLB_FLUSH_ALL);
Mel Gorman72b252a2015-09-04 15:47:32 -0700595 }
Nadav Amit858eaaa72016-04-01 14:31:26 -0700596
597 if (cpumask_any_but(&tlb_ubc->cpumask, cpu) < nr_cpu_ids)
598 flush_tlb_others(&tlb_ubc->cpumask, NULL, 0, TLB_FLUSH_ALL);
Mel Gorman72b252a2015-09-04 15:47:32 -0700599 cpumask_clear(&tlb_ubc->cpumask);
600 tlb_ubc->flush_required = false;
Mel Gormand950c942015-09-04 15:47:35 -0700601 tlb_ubc->writable = false;
Mel Gorman72b252a2015-09-04 15:47:32 -0700602 put_cpu();
603}
604
Mel Gormand950c942015-09-04 15:47:35 -0700605/* Flush iff there are potentially writable TLB entries that can race with IO */
606void try_to_unmap_flush_dirty(void)
607{
608 struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
609
610 if (tlb_ubc->writable)
611 try_to_unmap_flush();
612}
613
Mel Gorman72b252a2015-09-04 15:47:32 -0700614static void set_tlb_ubc_flush_pending(struct mm_struct *mm,
Mel Gormand950c942015-09-04 15:47:35 -0700615 struct page *page, bool writable)
Mel Gorman72b252a2015-09-04 15:47:32 -0700616{
617 struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
618
619 cpumask_or(&tlb_ubc->cpumask, &tlb_ubc->cpumask, mm_cpumask(mm));
620 tlb_ubc->flush_required = true;
Mel Gormand950c942015-09-04 15:47:35 -0700621
622 /*
Mel Gorman5a1eef72017-08-02 13:31:52 -0700623 * Ensure compiler does not re-order the setting of tlb_flush_batched
624 * before the PTE is cleared.
625 */
626 barrier();
627 mm->tlb_flush_batched = true;
628
629 /*
Mel Gormand950c942015-09-04 15:47:35 -0700630 * If the PTE was dirty then it's best to assume it's writable. The
631 * caller must use try_to_unmap_flush_dirty() or try_to_unmap_flush()
632 * before the page is queued for IO.
633 */
634 if (writable)
635 tlb_ubc->writable = true;
Mel Gorman72b252a2015-09-04 15:47:32 -0700636}
637
638/*
639 * Returns true if the TLB flush should be deferred to the end of a batch of
640 * unmap operations to reduce IPIs.
641 */
642static bool should_defer_flush(struct mm_struct *mm, enum ttu_flags flags)
643{
644 bool should_defer = false;
645
646 if (!(flags & TTU_BATCH_FLUSH))
647 return false;
648
649 /* If remote CPUs need to be flushed then defer batch the flush */
650 if (cpumask_any_but(mm_cpumask(mm), get_cpu()) < nr_cpu_ids)
651 should_defer = true;
652 put_cpu();
653
654 return should_defer;
655}
Mel Gorman5a1eef72017-08-02 13:31:52 -0700656
657/*
658 * Reclaim unmaps pages under the PTL but do not flush the TLB prior to
659 * releasing the PTL if TLB flushes are batched. It's possible for a parallel
660 * operation such as mprotect or munmap to race between reclaim unmapping
661 * the page and flushing the page. If this race occurs, it potentially allows
662 * access to data via a stale TLB entry. Tracking all mm's that have TLB
663 * batching in flight would be expensive during reclaim so instead track
664 * whether TLB batching occurred in the past and if so then do a flush here
665 * if required. This will cost one additional flush per reclaim cycle paid
666 * by the first operation at risk such as mprotect and mumap.
667 *
668 * This must be called under the PTL so that an access to tlb_flush_batched
669 * that is potentially a "reclaim vs mprotect/munmap/etc" race will synchronise
670 * via the PTL.
671 */
672void flush_tlb_batched_pending(struct mm_struct *mm)
673{
674 if (mm->tlb_flush_batched) {
675 flush_tlb_mm(mm);
676
677 /*
678 * Do not allow the compiler to re-order the clearing of
679 * tlb_flush_batched before the tlb is flushed.
680 */
681 barrier();
682 mm->tlb_flush_batched = false;
683 }
684}
Mel Gorman72b252a2015-09-04 15:47:32 -0700685#else
686static void set_tlb_ubc_flush_pending(struct mm_struct *mm,
Mel Gormand950c942015-09-04 15:47:35 -0700687 struct page *page, bool writable)
Mel Gorman72b252a2015-09-04 15:47:32 -0700688{
689}
690
691static bool should_defer_flush(struct mm_struct *mm, enum ttu_flags flags)
692{
693 return false;
694}
695#endif /* CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH */
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697/*
Huang Shijiebf89c8c2009-10-01 15:44:04 -0700698 * At what user virtual address is page expected in vma?
Naoya Horiguchiab941e02010-05-11 14:06:55 -0700699 * Caller should check the page is actually part of the vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
701unsigned long page_address_in_vma(struct page *page, struct vm_area_struct *vma)
702{
Michel Lespinasse86c2ad12012-10-08 16:31:42 -0700703 unsigned long address;
Andrea Arcangeli21d0d442010-08-09 17:19:10 -0700704 if (PageAnon(page)) {
Hugh Dickins4829b902010-10-02 17:46:06 -0700705 struct anon_vma *page__anon_vma = page_anon_vma(page);
706 /*
707 * Note: swapoff's unuse_vma() is more efficient with this
708 * check, and needs it to match anon_vma when KSM is active.
709 */
710 if (!vma->anon_vma || !page__anon_vma ||
711 vma->anon_vma->root != page__anon_vma->root)
Andrea Arcangeli21d0d442010-08-09 17:19:10 -0700712 return -EFAULT;
Kirill A. Shutemov27ba0642015-02-10 14:09:59 -0800713 } else if (page->mapping) {
714 if (!vma->vm_file || vma->vm_file->f_mapping != page->mapping)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return -EFAULT;
716 } else
717 return -EFAULT;
Michel Lespinasse86c2ad12012-10-08 16:31:42 -0700718 address = __vma_address(page, vma);
719 if (unlikely(address < vma->vm_start || address >= vma->vm_end))
720 return -EFAULT;
721 return address;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Bob Liu62190492012-12-11 16:00:37 -0800724pmd_t *mm_find_pmd(struct mm_struct *mm, unsigned long address)
725{
726 pgd_t *pgd;
727 pud_t *pud;
728 pmd_t *pmd = NULL;
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -0700729 pmd_t pmde;
Bob Liu62190492012-12-11 16:00:37 -0800730
731 pgd = pgd_offset(mm, address);
732 if (!pgd_present(*pgd))
733 goto out;
734
735 pud = pud_offset(pgd, address);
736 if (!pud_present(*pud))
737 goto out;
738
739 pmd = pmd_offset(pud, address);
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -0700740 /*
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -0700741 * Some THP functions use the sequence pmdp_huge_clear_flush(), set_pmd_at()
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -0700742 * without holding anon_vma lock for write. So when looking for a
743 * genuine pmde (in which to find pte), test present and !THP together.
744 */
Christian Borntraegere37c6982014-12-07 21:41:33 +0100745 pmde = *pmd;
746 barrier();
Hugh Dickinsf72e7dc2014-06-23 13:22:05 -0700747 if (!pmd_present(pmde) || pmd_trans_huge(pmde))
Bob Liu62190492012-12-11 16:00:37 -0800748 pmd = NULL;
749out:
750 return pmd;
751}
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753/*
Nikita Danilov81b40822005-05-01 08:58:36 -0700754 * Check that @page is mapped at @address into @mm.
755 *
Nick Piggin479db0b2008-08-20 14:09:18 -0700756 * If @sync is false, page_check_address may perform a racy check to avoid
757 * the page table lock when the pte is not present (helpful when reclaiming
758 * highly shared pages).
759 *
Hugh Dickinsb8072f02005-10-29 18:16:41 -0700760 * On success returns with pte mapped and locked.
Nikita Danilov81b40822005-05-01 08:58:36 -0700761 */
Namhyung Kime9a81a82010-10-26 14:22:01 -0700762pte_t *__page_check_address(struct page *page, struct mm_struct *mm,
Nick Piggin479db0b2008-08-20 14:09:18 -0700763 unsigned long address, spinlock_t **ptlp, int sync)
Nikita Danilov81b40822005-05-01 08:58:36 -0700764{
Nikita Danilov81b40822005-05-01 08:58:36 -0700765 pmd_t *pmd;
766 pte_t *pte;
Hugh Dickinsc0718802005-10-29 18:16:31 -0700767 spinlock_t *ptl;
Nikita Danilov81b40822005-05-01 08:58:36 -0700768
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900769 if (unlikely(PageHuge(page))) {
Jianguo Wu98398c32013-12-18 17:08:59 -0800770 /* when pud is not present, pte will be NULL */
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900771 pte = huge_pte_offset(mm, address);
Jianguo Wu98398c32013-12-18 17:08:59 -0800772 if (!pte)
773 return NULL;
774
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800775 ptl = huge_pte_lockptr(page_hstate(page), mm, pte);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900776 goto check;
777 }
778
Bob Liu62190492012-12-11 16:00:37 -0800779 pmd = mm_find_pmd(mm, address);
780 if (!pmd)
Hugh Dickinsc0718802005-10-29 18:16:31 -0700781 return NULL;
782
Hugh Dickinsc0718802005-10-29 18:16:31 -0700783 pte = pte_offset_map(pmd, address);
784 /* Make a quick check before getting the lock */
Nick Piggin479db0b2008-08-20 14:09:18 -0700785 if (!sync && !pte_present(*pte)) {
Hugh Dickinsc0718802005-10-29 18:16:31 -0700786 pte_unmap(pte);
787 return NULL;
Nikita Danilov81b40822005-05-01 08:58:36 -0700788 }
Hugh Dickinsc0718802005-10-29 18:16:31 -0700789
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700790 ptl = pte_lockptr(mm, pmd);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +0900791check:
Hugh Dickinsc0718802005-10-29 18:16:31 -0700792 spin_lock(ptl);
793 if (pte_present(*pte) && page_to_pfn(page) == pte_pfn(*pte)) {
794 *ptlp = ptl;
795 return pte;
796 }
797 pte_unmap_unlock(pte, ptl);
798 return NULL;
Nikita Danilov81b40822005-05-01 08:58:36 -0700799}
800
Nick Pigginb291f002008-10-18 20:26:44 -0700801/**
802 * page_mapped_in_vma - check whether a page is really mapped in a VMA
803 * @page: the page to test
804 * @vma: the VMA to test
805 *
806 * Returns 1 if the page is mapped into the page tables of the VMA, 0
807 * if the page is not mapped into the page tables of this VMA. Only
808 * valid for normal file or anonymous VMAs.
809 */
Andi Kleen6a460792009-09-16 11:50:15 +0200810int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma)
Nick Pigginb291f002008-10-18 20:26:44 -0700811{
812 unsigned long address;
813 pte_t *pte;
814 spinlock_t *ptl;
815
Michel Lespinasse86c2ad12012-10-08 16:31:42 -0700816 address = __vma_address(page, vma);
817 if (unlikely(address < vma->vm_start || address >= vma->vm_end))
Nick Pigginb291f002008-10-18 20:26:44 -0700818 return 0;
819 pte = page_check_address(page, vma->vm_mm, address, &ptl, 1);
820 if (!pte) /* the page is not in this mm */
821 return 0;
822 pte_unmap_unlock(pte, ptl);
823
824 return 1;
825}
826
Vladimir Davydov8749cfe2016-01-15 16:54:45 -0800827#ifdef CONFIG_TRANSPARENT_HUGEPAGE
828/*
829 * Check that @page is mapped at @address into @mm. In contrast to
830 * page_check_address(), this function can handle transparent huge pages.
831 *
832 * On success returns true with pte mapped and locked. For PMD-mapped
833 * transparent huge pages *@ptep is set to NULL.
834 */
835bool page_check_address_transhuge(struct page *page, struct mm_struct *mm,
836 unsigned long address, pmd_t **pmdp,
837 pte_t **ptep, spinlock_t **ptlp)
838{
839 pgd_t *pgd;
840 pud_t *pud;
841 pmd_t *pmd;
842 pte_t *pte;
843 spinlock_t *ptl;
844
845 if (unlikely(PageHuge(page))) {
846 /* when pud is not present, pte will be NULL */
847 pte = huge_pte_offset(mm, address);
848 if (!pte)
849 return false;
850
851 ptl = huge_pte_lockptr(page_hstate(page), mm, pte);
852 pmd = NULL;
853 goto check_pte;
854 }
855
856 pgd = pgd_offset(mm, address);
857 if (!pgd_present(*pgd))
858 return false;
859 pud = pud_offset(pgd, address);
860 if (!pud_present(*pud))
861 return false;
862 pmd = pmd_offset(pud, address);
863
864 if (pmd_trans_huge(*pmd)) {
865 ptl = pmd_lock(mm, pmd);
866 if (!pmd_present(*pmd))
867 goto unlock_pmd;
868 if (unlikely(!pmd_trans_huge(*pmd))) {
869 spin_unlock(ptl);
870 goto map_pte;
871 }
872
873 if (pmd_page(*pmd) != page)
874 goto unlock_pmd;
875
876 pte = NULL;
877 goto found;
878unlock_pmd:
879 spin_unlock(ptl);
880 return false;
881 } else {
882 pmd_t pmde = *pmd;
883
884 barrier();
885 if (!pmd_present(pmde) || pmd_trans_huge(pmde))
886 return false;
887 }
888map_pte:
889 pte = pte_offset_map(pmd, address);
890 if (!pte_present(*pte)) {
891 pte_unmap(pte);
892 return false;
893 }
894
895 ptl = pte_lockptr(mm, pmd);
896check_pte:
897 spin_lock(ptl);
898
899 if (!pte_present(*pte)) {
900 pte_unmap_unlock(pte, ptl);
901 return false;
902 }
903
904 /* THP can be referenced by any subpage */
905 if (pte_pfn(*pte) - page_to_pfn(page) >= hpage_nr_pages(page)) {
906 pte_unmap_unlock(pte, ptl);
907 return false;
908 }
909found:
910 *ptep = pte;
911 *pmdp = pmd;
912 *ptlp = ptl;
913 return true;
914}
915#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
916
Joonsoo Kim9f326242014-01-21 15:49:53 -0800917struct page_referenced_arg {
918 int mapcount;
919 int referenced;
920 unsigned long vm_flags;
921 struct mem_cgroup *memcg;
922};
Nikita Danilov81b40822005-05-01 08:58:36 -0700923/*
Joonsoo Kim9f326242014-01-21 15:49:53 -0800924 * arg: page_referenced_arg will be passed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 */
Kirill A. Shutemovac769502014-06-04 16:08:17 -0700926static int page_referenced_one(struct page *page, struct vm_area_struct *vma,
Joonsoo Kim9f326242014-01-21 15:49:53 -0800927 unsigned long address, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct mm_struct *mm = vma->vm_mm;
Joonsoo Kim9f326242014-01-21 15:49:53 -0800930 struct page_referenced_arg *pra = arg;
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800931 pmd_t *pmd;
932 pte_t *pte;
Vladimir Davydov8749cfe2016-01-15 16:54:45 -0800933 spinlock_t *ptl;
934 int referenced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Vladimir Davydov8749cfe2016-01-15 16:54:45 -0800936 if (!page_check_address_transhuge(page, mm, address, &pmd, &pte, &ptl))
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800937 return SWAP_AGAIN;
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800938
939 if (vma->vm_flags & VM_LOCKED) {
Vladimir Davydov8749cfe2016-01-15 16:54:45 -0800940 if (pte)
941 pte_unmap(pte);
942 spin_unlock(ptl);
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800943 pra->vm_flags |= VM_LOCKED;
944 return SWAP_FAIL; /* To break the loop */
945 }
946
Vladimir Davydov8749cfe2016-01-15 16:54:45 -0800947 if (pte) {
948 if (ptep_clear_flush_young_notify(vma, address, pte)) {
949 /*
950 * Don't treat a reference through a sequentially read
951 * mapping as such. If the page has been used in
952 * another mapping, we will catch it; if this other
953 * mapping is already gone, the unmap path will have
954 * set PG_referenced or activated the page.
955 */
956 if (likely(!(vma->vm_flags & VM_SEQ_READ)))
957 referenced++;
958 }
959 pte_unmap(pte);
960 } else if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE)) {
961 if (pmdp_clear_flush_young_notify(vma, address, pmd))
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800962 referenced++;
Vladimir Davydov8749cfe2016-01-15 16:54:45 -0800963 } else {
964 /* unexpected pmd-mapped page? */
965 WARN_ON_ONCE(1);
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800966 }
Vladimir Davydov8749cfe2016-01-15 16:54:45 -0800967 spin_unlock(ptl);
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -0800968
Vladimir Davydov33c3fc72015-09-09 15:35:45 -0700969 if (referenced)
970 clear_page_idle(page);
971 if (test_and_clear_page_young(page))
972 referenced++;
973
Joonsoo Kim9f326242014-01-21 15:49:53 -0800974 if (referenced) {
975 pra->referenced++;
976 pra->vm_flags |= vma->vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
Oleg Nesterov34bbd702007-02-28 20:13:49 -0800978
Joonsoo Kim9f326242014-01-21 15:49:53 -0800979 pra->mapcount--;
980 if (!pra->mapcount)
981 return SWAP_SUCCESS; /* To break the loop */
982
983 return SWAP_AGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
Joonsoo Kim9f326242014-01-21 15:49:53 -0800986static bool invalid_page_referenced_vma(struct vm_area_struct *vma, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Joonsoo Kim9f326242014-01-21 15:49:53 -0800988 struct page_referenced_arg *pra = arg;
989 struct mem_cgroup *memcg = pra->memcg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Joonsoo Kim9f326242014-01-21 15:49:53 -0800991 if (!mm_match_cgroup(vma->vm_mm, memcg))
992 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Joonsoo Kim9f326242014-01-21 15:49:53 -0800994 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997/**
998 * page_referenced - test if the page was referenced
999 * @page: the page to test
1000 * @is_locked: caller holds lock on the page
Johannes Weiner72835c82012-01-12 17:18:32 -08001001 * @memcg: target memory cgroup
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001002 * @vm_flags: collect encountered vma->vm_flags who actually referenced the page
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 *
1004 * Quick test_and_clear_referenced for all mappings to a page,
1005 * returns the number of ptes which referenced the page.
1006 */
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001007int page_referenced(struct page *page,
1008 int is_locked,
Johannes Weiner72835c82012-01-12 17:18:32 -08001009 struct mem_cgroup *memcg,
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001010 unsigned long *vm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Joonsoo Kim9f326242014-01-21 15:49:53 -08001012 int ret;
Hugh Dickins5ad64682009-12-14 17:59:24 -08001013 int we_locked = 0;
Joonsoo Kim9f326242014-01-21 15:49:53 -08001014 struct page_referenced_arg pra = {
Kirill A. Shutemovb20ce5e2016-01-15 16:54:37 -08001015 .mapcount = total_mapcount(page),
Joonsoo Kim9f326242014-01-21 15:49:53 -08001016 .memcg = memcg,
1017 };
1018 struct rmap_walk_control rwc = {
1019 .rmap_one = page_referenced_one,
1020 .arg = (void *)&pra,
1021 .anon_lock = page_lock_anon_vma_read,
1022 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001024 *vm_flags = 0;
Joonsoo Kim9f326242014-01-21 15:49:53 -08001025 if (!page_mapped(page))
1026 return 0;
1027
1028 if (!page_rmapping(page))
1029 return 0;
1030
1031 if (!is_locked && (!PageAnon(page) || PageKsm(page))) {
1032 we_locked = trylock_page(page);
1033 if (!we_locked)
1034 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
Joonsoo Kim9f326242014-01-21 15:49:53 -08001036
1037 /*
1038 * If we are reclaiming on behalf of a cgroup, skip
1039 * counting on behalf of references from different
1040 * cgroups
1041 */
1042 if (memcg) {
1043 rwc.invalid_vma = invalid_page_referenced_vma;
1044 }
1045
1046 ret = rmap_walk(page, &rwc);
1047 *vm_flags = pra.vm_flags;
1048
1049 if (we_locked)
1050 unlock_page(page);
1051
1052 return pra.referenced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
Hugh Dickins1cb17292009-12-14 17:59:01 -08001055static int page_mkclean_one(struct page *page, struct vm_area_struct *vma,
Joonsoo Kim9853a402014-01-21 15:49:55 -08001056 unsigned long address, void *arg)
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001057{
1058 struct mm_struct *mm = vma->vm_mm;
Peter Zijlstrac2fda5f2006-12-22 14:25:52 +01001059 pte_t *pte;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001060 spinlock_t *ptl;
1061 int ret = 0;
Joonsoo Kim9853a402014-01-21 15:49:55 -08001062 int *cleaned = arg;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001063
Nick Piggin479db0b2008-08-20 14:09:18 -07001064 pte = page_check_address(page, mm, address, &ptl, 1);
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001065 if (!pte)
1066 goto out;
1067
Peter Zijlstrac2fda5f2006-12-22 14:25:52 +01001068 if (pte_dirty(*pte) || pte_write(*pte)) {
1069 pte_t entry;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001070
Peter Zijlstrac2fda5f2006-12-22 14:25:52 +01001071 flush_cache_page(vma, address, pte_pfn(*pte));
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001072 entry = ptep_clear_flush(vma, address, pte);
Peter Zijlstrac2fda5f2006-12-22 14:25:52 +01001073 entry = pte_wrprotect(entry);
1074 entry = pte_mkclean(entry);
Al Virod6e88e62006-12-29 16:48:35 -08001075 set_pte_at(mm, address, pte, entry);
Peter Zijlstrac2fda5f2006-12-22 14:25:52 +01001076 ret = 1;
1077 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001078
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001079 pte_unmap_unlock(pte, ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001080
Joonsoo Kim9853a402014-01-21 15:49:55 -08001081 if (ret) {
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001082 mmu_notifier_invalidate_page(mm, address);
Joonsoo Kim9853a402014-01-21 15:49:55 -08001083 (*cleaned)++;
1084 }
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001085out:
Joonsoo Kim9853a402014-01-21 15:49:55 -08001086 return SWAP_AGAIN;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001087}
1088
Joonsoo Kim9853a402014-01-21 15:49:55 -08001089static bool invalid_mkclean_vma(struct vm_area_struct *vma, void *arg)
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001090{
Joonsoo Kim9853a402014-01-21 15:49:55 -08001091 if (vma->vm_flags & VM_SHARED)
Fengguang Wu871beb82014-01-23 15:53:41 -08001092 return false;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001093
Fengguang Wu871beb82014-01-23 15:53:41 -08001094 return true;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001095}
1096
1097int page_mkclean(struct page *page)
1098{
Joonsoo Kim9853a402014-01-21 15:49:55 -08001099 int cleaned = 0;
1100 struct address_space *mapping;
1101 struct rmap_walk_control rwc = {
1102 .arg = (void *)&cleaned,
1103 .rmap_one = page_mkclean_one,
1104 .invalid_vma = invalid_mkclean_vma,
1105 };
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001106
1107 BUG_ON(!PageLocked(page));
1108
Joonsoo Kim9853a402014-01-21 15:49:55 -08001109 if (!page_mapped(page))
1110 return 0;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001111
Joonsoo Kim9853a402014-01-21 15:49:55 -08001112 mapping = page_mapping(page);
1113 if (!mapping)
1114 return 0;
1115
1116 rmap_walk(page, &rwc);
1117
1118 return cleaned;
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001119}
Jaya Kumar60b59be2007-05-08 00:37:37 -07001120EXPORT_SYMBOL_GPL(page_mkclean);
Peter Zijlstrad08b3852006-09-25 23:30:57 -07001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122/**
Rik van Rielc44b6742010-03-05 13:42:09 -08001123 * page_move_anon_rmap - move a page to our anon_vma
1124 * @page: the page to move to our anon_vma
1125 * @vma: the vma the page belongs to
Rik van Rielc44b6742010-03-05 13:42:09 -08001126 *
1127 * When a page belongs exclusively to one process after a COW event,
1128 * that page can be moved into the anon_vma that belongs to just that
1129 * process, so the rmap code will not search the parent or sibling
1130 * processes.
1131 */
Hugh Dickins5a499732016-07-14 12:07:38 -07001132void page_move_anon_rmap(struct page *page, struct vm_area_struct *vma)
Rik van Rielc44b6742010-03-05 13:42:09 -08001133{
1134 struct anon_vma *anon_vma = vma->anon_vma;
1135
Hugh Dickins5a499732016-07-14 12:07:38 -07001136 page = compound_head(page);
1137
Sasha Levin309381fea2014-01-23 15:52:54 -08001138 VM_BUG_ON_PAGE(!PageLocked(page), page);
Sasha Levin81d1b092014-10-09 15:28:10 -07001139 VM_BUG_ON_VMA(!anon_vma, vma);
Rik van Rielc44b6742010-03-05 13:42:09 -08001140
1141 anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
Vladimir Davydov414e2fb2015-06-24 16:56:56 -07001142 /*
1143 * Ensure that anon_vma and the PAGE_MAPPING_ANON bit are written
1144 * simultaneously, so a concurrent reader (eg page_referenced()'s
1145 * PageAnon()) will not see one without the other.
1146 */
1147 WRITE_ONCE(page->mapping, (struct address_space *) anon_vma);
Rik van Rielc44b6742010-03-05 13:42:09 -08001148}
1149
1150/**
Andi Kleen4e1c1972010-09-22 12:43:56 +02001151 * __page_set_anon_rmap - set up new anonymous rmap
1152 * @page: Page to add to rmap
1153 * @vma: VM area to add page to.
1154 * @address: User virtual address of the mapping
Rik van Riele8a03fe2010-04-14 17:59:28 -04001155 * @exclusive: the page is exclusively owned by the current process
Nick Piggin9617d952006-01-06 00:11:12 -08001156 */
1157static void __page_set_anon_rmap(struct page *page,
Rik van Riele8a03fe2010-04-14 17:59:28 -04001158 struct vm_area_struct *vma, unsigned long address, int exclusive)
Nick Piggin9617d952006-01-06 00:11:12 -08001159{
Rik van Riele8a03fe2010-04-14 17:59:28 -04001160 struct anon_vma *anon_vma = vma->anon_vma;
Nick Piggin9617d952006-01-06 00:11:12 -08001161
Rik van Riele8a03fe2010-04-14 17:59:28 -04001162 BUG_ON(!anon_vma);
Linus Torvaldsea900022010-04-12 12:44:29 -07001163
Andi Kleen4e1c1972010-09-22 12:43:56 +02001164 if (PageAnon(page))
1165 return;
1166
Linus Torvaldsea900022010-04-12 12:44:29 -07001167 /*
Rik van Riele8a03fe2010-04-14 17:59:28 -04001168 * If the page isn't exclusively mapped into this vma,
1169 * we must use the _oldest_ possible anon_vma for the
1170 * page mapping!
Linus Torvaldsea900022010-04-12 12:44:29 -07001171 */
Andi Kleen4e1c1972010-09-22 12:43:56 +02001172 if (!exclusive)
Andrea Arcangeli288468c2010-08-09 17:19:09 -07001173 anon_vma = anon_vma->root;
Linus Torvaldsea900022010-04-12 12:44:29 -07001174
Nick Piggin9617d952006-01-06 00:11:12 -08001175 anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
1176 page->mapping = (struct address_space *) anon_vma;
Nick Piggin9617d952006-01-06 00:11:12 -08001177 page->index = linear_page_index(vma, address);
Nick Piggin9617d952006-01-06 00:11:12 -08001178}
1179
1180/**
Randy Dunlap43d8eac2008-03-19 17:00:43 -07001181 * __page_check_anon_rmap - sanity check anonymous rmap addition
Nick Pigginc97a9e12007-05-16 22:11:21 -07001182 * @page: the page to add the mapping to
1183 * @vma: the vm area in which the mapping is added
1184 * @address: the user virtual address mapped
1185 */
1186static void __page_check_anon_rmap(struct page *page,
1187 struct vm_area_struct *vma, unsigned long address)
1188{
1189#ifdef CONFIG_DEBUG_VM
1190 /*
1191 * The page's anon-rmap details (mapping and index) are guaranteed to
1192 * be set up correctly at this point.
1193 *
1194 * We have exclusion against page_add_anon_rmap because the caller
1195 * always holds the page locked, except if called from page_dup_rmap,
1196 * in which case the page is already known to be setup.
1197 *
1198 * We have exclusion against page_add_new_anon_rmap because those pages
1199 * are initially only visible via the pagetables, and the pte is locked
1200 * over the call to page_add_new_anon_rmap.
1201 */
Andrea Arcangeli44ab57a2010-08-09 17:19:10 -07001202 BUG_ON(page_anon_vma(page)->root != vma->anon_vma->root);
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001203 BUG_ON(page_to_pgoff(page) != linear_page_index(vma, address));
Nick Pigginc97a9e12007-05-16 22:11:21 -07001204#endif
1205}
1206
1207/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 * page_add_anon_rmap - add pte mapping to an anonymous page
1209 * @page: the page to add the mapping to
1210 * @vma: the vm area in which the mapping is added
1211 * @address: the user virtual address mapped
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001212 * @compound: charge the page as compound or small page
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 *
Hugh Dickins5ad64682009-12-14 17:59:24 -08001214 * The caller needs to hold the pte lock, and the page must be locked in
Hugh Dickins80e148222009-12-14 17:59:29 -08001215 * the anon_vma case: to serialize mapping,index checking after setting,
1216 * and to ensure that PageAnon is not being upgraded racily to PageKsm
1217 * (but PageKsm is never downgraded to PageAnon).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
1219void page_add_anon_rmap(struct page *page,
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001220 struct vm_area_struct *vma, unsigned long address, bool compound)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001222 do_page_add_anon_rmap(page, vma, address, compound ? RMAP_COMPOUND : 0);
Rik van Rielad8c2ee2010-08-09 17:19:48 -07001223}
1224
1225/*
1226 * Special version of the above for do_swap_page, which often runs
1227 * into pages that are exclusively owned by the current process.
1228 * Everybody else should continue to use page_add_anon_rmap above.
1229 */
1230void do_page_add_anon_rmap(struct page *page,
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001231 struct vm_area_struct *vma, unsigned long address, int flags)
Rik van Rielad8c2ee2010-08-09 17:19:48 -07001232{
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001233 bool compound = flags & RMAP_COMPOUND;
1234 bool first;
1235
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08001236 if (compound) {
1237 atomic_t *mapcount;
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001238 VM_BUG_ON_PAGE(!PageLocked(page), page);
Kirill A. Shutemove9b61f12016-01-15 16:54:10 -08001239 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
1240 mapcount = compound_mapcount_ptr(page);
1241 first = atomic_inc_and_test(mapcount);
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001242 } else {
1243 first = atomic_inc_and_test(&page->_mapcount);
1244 }
1245
Andrea Arcangeli79134172011-01-13 15:46:58 -08001246 if (first) {
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001247 int nr = compound ? hpage_nr_pages(page) : 1;
Jianyu Zhanbea04b02014-06-04 16:09:51 -07001248 /*
1249 * We use the irq-unsafe __{inc|mod}_zone_page_stat because
1250 * these counters are not modified in interrupt context, and
1251 * pte lock(a spinlock) is held, which implies preemption
1252 * disabled.
1253 */
Kirill A. Shutemov65c45372016-07-26 15:26:10 -07001254 if (compound)
Mel Gorman11fb9982016-07-28 15:46:20 -07001255 __inc_node_page_state(page, NR_ANON_THPS);
Mel Gorman4b9d0fa2016-07-28 15:46:17 -07001256 __mod_node_page_state(page_pgdat(page), NR_ANON_MAPPED, nr);
Andrea Arcangeli79134172011-01-13 15:46:58 -08001257 }
Hugh Dickins5ad64682009-12-14 17:59:24 -08001258 if (unlikely(PageKsm(page)))
1259 return;
1260
Sasha Levin309381fea2014-01-23 15:52:54 -08001261 VM_BUG_ON_PAGE(!PageLocked(page), page);
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001262
Hugh Dickins5dbe0af2011-05-28 13:17:04 -07001263 /* address might be in next vma when migration races vma_adjust */
Hugh Dickins5ad64682009-12-14 17:59:24 -08001264 if (first)
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001265 __page_set_anon_rmap(page, vma, address,
1266 flags & RMAP_EXCLUSIVE);
KAMEZAWA Hiroyuki69029cd2008-07-25 01:47:14 -07001267 else
Nick Pigginc97a9e12007-05-16 22:11:21 -07001268 __page_check_anon_rmap(page, vma, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Randy Dunlap43d8eac2008-03-19 17:00:43 -07001271/**
Laurent Dufour2ca84722018-04-17 16:33:22 +02001272 * __page_add_new_anon_rmap - add pte mapping to a new anonymous page
Nick Piggin9617d952006-01-06 00:11:12 -08001273 * @page: the page to add the mapping to
1274 * @vma: the vm area in which the mapping is added
1275 * @address: the user virtual address mapped
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001276 * @compound: charge the page as compound or small page
Nick Piggin9617d952006-01-06 00:11:12 -08001277 *
1278 * Same as page_add_anon_rmap but must only be called on *new* pages.
1279 * This means the inc-and-test can be bypassed.
Nick Pigginc97a9e12007-05-16 22:11:21 -07001280 * Page does not have to be locked.
Nick Piggin9617d952006-01-06 00:11:12 -08001281 */
Laurent Dufour2ca84722018-04-17 16:33:22 +02001282void __page_add_new_anon_rmap(struct page *page,
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001283 struct vm_area_struct *vma, unsigned long address, bool compound)
Nick Piggin9617d952006-01-06 00:11:12 -08001284{
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001285 int nr = compound ? hpage_nr_pages(page) : 1;
1286
Hugh Dickinsfa9949d2016-05-19 17:12:41 -07001287 __SetPageSwapBacked(page);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001288 if (compound) {
1289 VM_BUG_ON_PAGE(!PageTransHuge(page), page);
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001290 /* increment count (starts at -1) */
1291 atomic_set(compound_mapcount_ptr(page), 0);
Mel Gorman11fb9982016-07-28 15:46:20 -07001292 __inc_node_page_state(page, NR_ANON_THPS);
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001293 } else {
1294 /* Anon THP always mapped first with PMD */
1295 VM_BUG_ON_PAGE(PageTransCompound(page), page);
1296 /* increment count (starts at -1) */
1297 atomic_set(&page->_mapcount, 0);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001298 }
Mel Gorman4b9d0fa2016-07-28 15:46:17 -07001299 __mod_node_page_state(page_pgdat(page), NR_ANON_MAPPED, nr);
Rik van Riele8a03fe2010-04-14 17:59:28 -04001300 __page_set_anon_rmap(page, vma, address, 1);
Nick Piggin9617d952006-01-06 00:11:12 -08001301}
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303/**
1304 * page_add_file_rmap - add pte mapping to a file page
1305 * @page: the page to add the mapping to
1306 *
Hugh Dickinsb8072f02005-10-29 18:16:41 -07001307 * The caller needs to hold the pte lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 */
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001309void page_add_file_rmap(struct page *page, bool compound)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001311 int i, nr = 1;
1312
1313 VM_BUG_ON_PAGE(compound && !PageTransHuge(page), page);
Johannes Weiner62cccb82016-03-15 14:57:22 -07001314 lock_page_memcg(page);
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001315 if (compound && PageTransHuge(page)) {
1316 for (i = 0, nr = 0; i < HPAGE_PMD_NR; i++) {
1317 if (atomic_inc_and_test(&page[i]._mapcount))
1318 nr++;
1319 }
1320 if (!atomic_inc_and_test(compound_mapcount_ptr(page)))
1321 goto out;
Kirill A. Shutemov65c45372016-07-26 15:26:10 -07001322 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Mel Gorman11fb9982016-07-28 15:46:20 -07001323 __inc_node_page_state(page, NR_SHMEM_PMDMAPPED);
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001324 } else {
Kirill A. Shutemovc8efc392016-08-10 16:27:52 -07001325 if (PageTransCompound(page) && page_mapping(page)) {
1326 VM_WARN_ON_ONCE(!PageLocked(page));
1327
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07001328 SetPageDoubleMap(compound_head(page));
1329 if (PageMlocked(page))
1330 clear_page_mlock(compound_head(page));
1331 }
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001332 if (!atomic_inc_and_test(&page->_mapcount))
1333 goto out;
Balbir Singhd69b0422009-06-17 16:26:34 -07001334 }
Mel Gorman50658e22016-07-28 15:46:14 -07001335 __mod_node_page_state(page_pgdat(page), NR_FILE_MAPPED, nr);
Johannes Weinerb5707922017-03-31 15:11:50 -07001336 mem_cgroup_update_page_stat(page, MEM_CGROUP_STAT_FILE_MAPPED, nr);
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001337out:
Johannes Weiner62cccb82016-03-15 14:57:22 -07001338 unlock_page_memcg(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001341static void page_remove_file_rmap(struct page *page, bool compound)
Johannes Weiner8186eb62014-10-29 14:50:51 -07001342{
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001343 int i, nr = 1;
1344
Steve Capper57dea932016-08-10 16:27:55 -07001345 VM_BUG_ON_PAGE(compound && !PageHead(page), page);
Johannes Weiner62cccb82016-03-15 14:57:22 -07001346 lock_page_memcg(page);
Johannes Weiner8186eb62014-10-29 14:50:51 -07001347
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001348 /* Hugepages are not counted in NR_FILE_MAPPED for now. */
1349 if (unlikely(PageHuge(page))) {
1350 /* hugetlb pages are always mapped with pmds */
1351 atomic_dec(compound_mapcount_ptr(page));
1352 goto out;
1353 }
1354
Johannes Weiner8186eb62014-10-29 14:50:51 -07001355 /* page still mapped by someone else? */
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001356 if (compound && PageTransHuge(page)) {
1357 for (i = 0, nr = 0; i < HPAGE_PMD_NR; i++) {
1358 if (atomic_add_negative(-1, &page[i]._mapcount))
1359 nr++;
1360 }
1361 if (!atomic_add_negative(-1, compound_mapcount_ptr(page)))
1362 goto out;
Kirill A. Shutemov65c45372016-07-26 15:26:10 -07001363 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Mel Gorman11fb9982016-07-28 15:46:20 -07001364 __dec_node_page_state(page, NR_SHMEM_PMDMAPPED);
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001365 } else {
1366 if (!atomic_add_negative(-1, &page->_mapcount))
1367 goto out;
1368 }
Johannes Weiner8186eb62014-10-29 14:50:51 -07001369
Johannes Weiner8186eb62014-10-29 14:50:51 -07001370 /*
Mel Gorman50658e22016-07-28 15:46:14 -07001371 * We use the irq-unsafe __{inc|mod}_zone_page_state because
Johannes Weiner8186eb62014-10-29 14:50:51 -07001372 * these counters are not modified in interrupt context, and
1373 * pte lock(a spinlock) is held, which implies preemption disabled.
1374 */
Mel Gorman50658e22016-07-28 15:46:14 -07001375 __mod_node_page_state(page_pgdat(page), NR_FILE_MAPPED, -nr);
Johannes Weinerb5707922017-03-31 15:11:50 -07001376 mem_cgroup_update_page_stat(page, MEM_CGROUP_STAT_FILE_MAPPED, -nr);
Johannes Weiner8186eb62014-10-29 14:50:51 -07001377
1378 if (unlikely(PageMlocked(page)))
1379 clear_page_mlock(page);
1380out:
Johannes Weiner62cccb82016-03-15 14:57:22 -07001381 unlock_page_memcg(page);
Johannes Weiner8186eb62014-10-29 14:50:51 -07001382}
1383
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001384static void page_remove_anon_compound_rmap(struct page *page)
1385{
1386 int i, nr;
1387
1388 if (!atomic_add_negative(-1, compound_mapcount_ptr(page)))
1389 return;
1390
1391 /* Hugepages are not counted in NR_ANON_PAGES for now. */
1392 if (unlikely(PageHuge(page)))
1393 return;
1394
1395 if (!IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE))
1396 return;
1397
Mel Gorman11fb9982016-07-28 15:46:20 -07001398 __dec_node_page_state(page, NR_ANON_THPS);
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001399
1400 if (TestClearPageDoubleMap(page)) {
1401 /*
1402 * Subpages can be mapped with PTEs too. Check how many of
1403 * themi are still mapped.
1404 */
1405 for (i = 0, nr = 0; i < HPAGE_PMD_NR; i++) {
1406 if (atomic_add_negative(-1, &page[i]._mapcount))
1407 nr++;
1408 }
1409 } else {
1410 nr = HPAGE_PMD_NR;
1411 }
1412
Kirill A. Shutemove90309c2016-01-15 16:54:33 -08001413 if (unlikely(PageMlocked(page)))
1414 clear_page_mlock(page);
1415
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08001416 if (nr) {
Mel Gorman4b9d0fa2016-07-28 15:46:17 -07001417 __mod_node_page_state(page_pgdat(page), NR_ANON_MAPPED, -nr);
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08001418 deferred_split_huge_page(page);
1419 }
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001420}
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422/**
1423 * page_remove_rmap - take down pte mapping from a page
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001424 * @page: page to remove mapping from
1425 * @compound: uncharge the page as compound or small page
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 *
Hugh Dickinsb8072f02005-10-29 18:16:41 -07001427 * The caller needs to hold the pte lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 */
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001429void page_remove_rmap(struct page *page, bool compound)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Kirill A. Shutemovdd78fed2016-07-26 15:25:26 -07001431 if (!PageAnon(page))
1432 return page_remove_file_rmap(page, compound);
KAMEZAWA Hiroyuki89c06bd2012-03-21 16:34:25 -07001433
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08001434 if (compound)
1435 return page_remove_anon_compound_rmap(page);
1436
KOSAKI Motohirob904dcf2009-09-21 17:01:28 -07001437 /* page still mapped by someone else? */
1438 if (!atomic_add_negative(-1, &page->_mapcount))
Johannes Weiner8186eb62014-10-29 14:50:51 -07001439 return;
1440
KOSAKI Motohirob904dcf2009-09-21 17:01:28 -07001441 /*
Jianyu Zhanbea04b02014-06-04 16:09:51 -07001442 * We use the irq-unsafe __{inc|mod}_zone_page_stat because
1443 * these counters are not modified in interrupt context, and
Jianyu Zhanbea04b02014-06-04 16:09:51 -07001444 * pte lock(a spinlock) is held, which implies preemption disabled.
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09001445 */
Mel Gorman4b9d0fa2016-07-28 15:46:17 -07001446 __dec_node_page_state(page, NR_ANON_MAPPED);
Johannes Weiner8186eb62014-10-29 14:50:51 -07001447
Hugh Dickinse6c509f2012-10-08 16:33:19 -07001448 if (unlikely(PageMlocked(page)))
1449 clear_page_mlock(page);
Johannes Weiner8186eb62014-10-29 14:50:51 -07001450
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08001451 if (PageTransCompound(page))
1452 deferred_split_huge_page(compound_head(page));
1453
KOSAKI Motohirob904dcf2009-09-21 17:01:28 -07001454 /*
1455 * It would be tidy to reset the PageAnon mapping here,
1456 * but that might overwrite a racing page_add_anon_rmap
1457 * which increments mapcount after us but sets mapping
1458 * before us: so leave the reset to free_hot_cold_page,
1459 * and remember that it's only reliable while mapped.
1460 * Leaving it set also helps swapoff to reinstate ptes
1461 * faster for those pages still in swapcache.
1462 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463}
1464
Minchan Kim854e9ed2016-01-15 16:54:53 -08001465struct rmap_private {
1466 enum ttu_flags flags;
1467 int lazyfreed;
1468};
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/*
Joonsoo Kim52629502014-01-21 15:49:50 -08001471 * @arg: enum ttu_flags will be passed to this argument
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 */
Kirill A. Shutemovac769502014-06-04 16:08:17 -07001473static int try_to_unmap_one(struct page *page, struct vm_area_struct *vma,
Joonsoo Kim52629502014-01-21 15:49:50 -08001474 unsigned long address, void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
1476 struct mm_struct *mm = vma->vm_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 pte_t *pte;
1478 pte_t pteval;
Hugh Dickinsc0718802005-10-29 18:16:31 -07001479 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 int ret = SWAP_AGAIN;
Mike Kravetz9c34ad02018-10-05 15:51:29 -07001481 unsigned long sh_address;
1482 bool pmd_sharing_possible = false;
1483 unsigned long spmd_start, spmd_end;
Minchan Kim854e9ed2016-01-15 16:54:53 -08001484 struct rmap_private *rp = arg;
1485 enum ttu_flags flags = rp->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
Hugh Dickinsb87537d9e2015-11-05 18:49:33 -08001487 /* munlock has nothing to gain from examining un-locked vmas */
1488 if ((flags & TTU_MUNLOCK) && !(vma->vm_flags & VM_LOCKED))
1489 goto out;
1490
Kirill A. Shutemovfec89c12016-03-17 14:20:10 -07001491 if (flags & TTU_SPLIT_HUGE_PMD) {
1492 split_huge_pmd_address(vma, address,
1493 flags & TTU_MIGRATION, page);
1494 /* check if we have anything to do after split */
1495 if (page_mapcount(page) == 0)
1496 goto out;
1497 }
1498
Mike Kravetz9c34ad02018-10-05 15:51:29 -07001499 /*
1500 * Only use the range_start/end mmu notifiers if huge pmd sharing
1501 * is possible. In the normal case, mmu_notifier_invalidate_page
1502 * is sufficient as we only unmap a page. However, if we unshare
1503 * a pmd, we will unmap a PUD_SIZE range.
1504 */
1505 if (PageHuge(page)) {
1506 spmd_start = address;
1507 spmd_end = spmd_start + vma_mmu_pagesize(vma);
1508
1509 /*
1510 * Check if pmd sharing is possible. If possible, we could
1511 * unmap a PUD_SIZE range. spmd_start/spmd_end will be
1512 * modified if sharing is possible.
1513 */
1514 adjust_range_if_pmd_sharing_possible(vma, &spmd_start,
1515 &spmd_end);
1516 if (spmd_end - spmd_start != vma_mmu_pagesize(vma)) {
1517 sh_address = address;
1518
1519 pmd_sharing_possible = true;
1520 mmu_notifier_invalidate_range_start(vma->vm_mm,
1521 spmd_start, spmd_end);
1522 }
1523 }
1524
Naoya Horiguchi55bda432016-07-14 12:07:35 -07001525 pte = page_check_address(page, mm, address, &ptl,
1526 PageTransCompound(page));
Hugh Dickinsc0718802005-10-29 18:16:31 -07001527 if (!pte)
Nikita Danilov81b40822005-05-01 08:58:36 -07001528 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 /*
1531 * If the page is mlock()d, we cannot swap it out.
1532 * If it's recently referenced (perhaps page_referenced
1533 * skipped over this mm) then we should reactivate it.
1534 */
Andi Kleen14fa31b2009-09-16 11:50:10 +02001535 if (!(flags & TTU_IGNORE_MLOCK)) {
Hugh Dickinsb87537d9e2015-11-05 18:49:33 -08001536 if (vma->vm_flags & VM_LOCKED) {
Kirill A. Shutemov9a73f612016-07-26 15:25:53 -07001537 /* PTE-mapped THP are never mlocked */
1538 if (!PageTransCompound(page)) {
1539 /*
1540 * Holding pte lock, we do *not* need
1541 * mmap_sem here
1542 */
1543 mlock_vma_page(page);
1544 }
Hugh Dickinsb87537d9e2015-11-05 18:49:33 -08001545 ret = SWAP_MLOCK;
1546 goto out_unmap;
1547 }
Konstantin Khlebnikovdaa5ba72014-06-04 16:10:52 -07001548 if (flags & TTU_MUNLOCK)
Hugh Dickins53f79ac2009-12-14 17:58:58 -08001549 goto out_unmap;
Andi Kleen14fa31b2009-09-16 11:50:10 +02001550 }
1551 if (!(flags & TTU_IGNORE_ACCESS)) {
Nick Pigginb291f002008-10-18 20:26:44 -07001552 if (ptep_clear_flush_young_notify(vma, address, pte)) {
1553 ret = SWAP_FAIL;
1554 goto out_unmap;
1555 }
1556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Mike Kravetz9c34ad02018-10-05 15:51:29 -07001558 /*
1559 * Call huge_pmd_unshare to potentially unshare a huge pmd. Pass
1560 * sh_address as it will be modified if unsharing is successful.
1561 */
1562 if (PageHuge(page) && huge_pmd_unshare(mm, &sh_address, pte)) {
1563 /*
1564 * huge_pmd_unshare unmapped an entire PMD page. There is
1565 * no way of knowing exactly which PMDs may be cached for
1566 * this mm, so flush them all. spmd_start/spmd_end cover
1567 * this PUD_SIZE range.
1568 */
1569 flush_cache_range(vma, spmd_start, spmd_end);
1570 flush_tlb_range(vma, spmd_start, spmd_end);
1571
1572 /*
1573 * The ref count of the PMD page was dropped which is part
1574 * of the way map counting is done for shared PMDs. When
1575 * there is no other sharing, huge_pmd_unshare returns false
1576 * and we will unmap the actual page and drop map count
1577 * to zero.
1578 */
1579 goto out_unmap;
1580 }
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /* Nuke the page table entry. */
1583 flush_cache_page(vma, address, page_to_pfn(page));
Mel Gorman72b252a2015-09-04 15:47:32 -07001584 if (should_defer_flush(mm, flags)) {
1585 /*
1586 * We clear the PTE but do not flush so potentially a remote
1587 * CPU could still be writing to the page. If the entry was
1588 * previously clean then the architecture must guarantee that
1589 * a clear->dirty transition on a cached TLB entry is written
1590 * through and traps if the PTE is unmapped.
1591 */
1592 pteval = ptep_get_and_clear(mm, address, pte);
1593
Mel Gormand950c942015-09-04 15:47:35 -07001594 set_tlb_ubc_flush_pending(mm, page, pte_dirty(pteval));
Mel Gorman72b252a2015-09-04 15:47:32 -07001595 } else {
1596 pteval = ptep_clear_flush(vma, address, pte);
1597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 /* Move the dirty bit to the physical page now the pte is gone. */
1600 if (pte_dirty(pteval))
1601 set_page_dirty(page);
1602
Hugh Dickins365e9c872005-10-29 18:16:18 -07001603 /* Update high watermark before we lower rss */
1604 update_hiwater_rss(mm);
1605
Andi Kleen888b9f72009-09-16 11:50:11 +02001606 if (PageHWPoison(page) && !(flags & TTU_IGNORE_HWPOISON)) {
Naoya Horiguchi5d317b22015-11-05 18:47:14 -08001607 if (PageHuge(page)) {
1608 hugetlb_count_sub(1 << compound_order(page), mm);
1609 } else {
Jerome Marchandeca56ff2016-01-14 15:19:26 -08001610 dec_mm_counter(mm, mm_counter(page));
Naoya Horiguchi5f24ae52012-12-12 13:52:30 -08001611 }
Andi Kleen888b9f72009-09-16 11:50:11 +02001612 set_pte_at(mm, address, pte,
Naoya Horiguchi5f24ae52012-12-12 13:52:30 -08001613 swp_entry_to_pte(make_hwpoison_entry(page)));
Konstantin Weitz45961722013-04-17 13:59:32 +02001614 } else if (pte_unused(pteval)) {
1615 /*
1616 * The guest indicated that the page content is of no
1617 * interest anymore. Simply discard the pte, vmscan
1618 * will take care of the rest.
1619 */
Jerome Marchandeca56ff2016-01-14 15:19:26 -08001620 dec_mm_counter(mm, mm_counter(page));
Hugh Dickins470f119f2015-11-05 18:49:59 -08001621 } else if (IS_ENABLED(CONFIG_MIGRATION) && (flags & TTU_MIGRATION)) {
1622 swp_entry_t entry;
Cyrill Gorcunov179ef712013-08-13 16:00:49 -07001623 pte_t swp_pte;
Hugh Dickins470f119f2015-11-05 18:49:59 -08001624 /*
1625 * Store the pfn of the page in a special migration
1626 * pte. do_swap_page() will wait until the migration
1627 * pte is removed and then restart fault handling.
1628 */
1629 entry = make_migration_entry(page, pte_write(pteval));
Cyrill Gorcunov179ef712013-08-13 16:00:49 -07001630 swp_pte = swp_entry_to_pte(entry);
1631 if (pte_soft_dirty(pteval))
1632 swp_pte = pte_swp_mksoft_dirty(swp_pte);
1633 set_pte_at(mm, address, pte, swp_pte);
Hugh Dickins470f119f2015-11-05 18:49:59 -08001634 } else if (PageAnon(page)) {
1635 swp_entry_t entry = { .val = page_private(page) };
1636 pte_t swp_pte;
1637 /*
1638 * Store the swap location in the pte.
1639 * See handle_pte_fault() ...
1640 */
1641 VM_BUG_ON_PAGE(!PageSwapCache(page), page);
Minchan Kim854e9ed2016-01-15 16:54:53 -08001642
Mauricio Faria de Oliveirabe8173b2022-04-07 16:14:32 -03001643 if (flags & TTU_LZFREE) {
1644 int ref_count, map_count;
1645
1646 /*
1647 * Synchronize with gup_pte_range():
1648 * - clear PTE; barrier; read refcount
1649 * - inc refcount; barrier; read PTE
1650 */
1651 smp_mb();
1652
1653 ref_count = page_ref_count(page);
1654 map_count = page_mapcount(page);
1655
1656 /*
1657 * Order reads for page refcount and dirty flag
1658 * (see comments in __remove_mapping()).
1659 */
1660 smp_rmb();
1661
1662 /*
1663 * The only page refs must be one from isolation
1664 * plus the rmap(s) (dropped by discard:).
1665 */
1666 if (ref_count == 1 + map_count &&
1667 !PageDirty(page)) {
1668 /* It's a freeable page by MADV_FREE */
1669 dec_mm_counter(mm, MM_ANONPAGES);
1670 rp->lazyfreed++;
1671 goto discard;
1672 }
Minchan Kim854e9ed2016-01-15 16:54:53 -08001673 }
1674
Hugh Dickins470f119f2015-11-05 18:49:59 -08001675 if (swap_duplicate(entry) < 0) {
1676 set_pte_at(mm, address, pte, pteval);
1677 ret = SWAP_FAIL;
1678 goto out_unmap;
1679 }
1680 if (list_empty(&mm->mmlist)) {
1681 spin_lock(&mmlist_lock);
1682 if (list_empty(&mm->mmlist))
1683 list_add(&mm->mmlist, &init_mm.mmlist);
1684 spin_unlock(&mmlist_lock);
1685 }
1686 dec_mm_counter(mm, MM_ANONPAGES);
1687 inc_mm_counter(mm, MM_SWAPENTS);
1688 swp_pte = swp_entry_to_pte(entry);
1689 if (pte_soft_dirty(pteval))
1690 swp_pte = pte_swp_mksoft_dirty(swp_pte);
1691 set_pte_at(mm, address, pte, swp_pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -07001692 } else
Jerome Marchandeca56ff2016-01-14 15:19:26 -08001693 dec_mm_counter(mm, mm_counter_file(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Minchan Kim854e9ed2016-01-15 16:54:53 -08001695discard:
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001696 page_remove_rmap(page, PageHuge(page));
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001697 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699out_unmap:
Hugh Dickinsc0718802005-10-29 18:16:31 -07001700 pte_unmap_unlock(pte, ptl);
Hugh Dickinsb87537d9e2015-11-05 18:49:33 -08001701 if (ret != SWAP_FAIL && ret != SWAP_MLOCK && !(flags & TTU_MUNLOCK))
Sagi Grimberg2ec74c32012-10-08 16:33:33 -07001702 mmu_notifier_invalidate_page(mm, address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703out:
Mike Kravetz9c34ad02018-10-05 15:51:29 -07001704 if (pmd_sharing_possible)
1705 mmu_notifier_invalidate_range_end(vma->vm_mm,
1706 spmd_start, spmd_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return ret;
1708}
1709
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001710bool is_vma_temporary_stack(struct vm_area_struct *vma)
Mel Gormana8bef8ff2010-05-24 14:32:24 -07001711{
1712 int maybe_stack = vma->vm_flags & (VM_GROWSDOWN | VM_GROWSUP);
1713
1714 if (!maybe_stack)
1715 return false;
1716
1717 if ((vma->vm_flags & VM_STACK_INCOMPLETE_SETUP) ==
1718 VM_STACK_INCOMPLETE_SETUP)
1719 return true;
1720
1721 return false;
1722}
1723
Joonsoo Kim52629502014-01-21 15:49:50 -08001724static bool invalid_migration_vma(struct vm_area_struct *vma, void *arg)
1725{
1726 return is_vma_temporary_stack(vma);
1727}
1728
Kirill A. Shutemov2a52bcb2016-03-17 14:20:04 -07001729static int page_mapcount_is_zero(struct page *page)
Joonsoo Kim52629502014-01-21 15:49:50 -08001730{
Kirill A. Shutemov2a52bcb2016-03-17 14:20:04 -07001731 return !page_mapcount(page);
1732}
Joonsoo Kim52629502014-01-21 15:49:50 -08001733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734/**
1735 * try_to_unmap - try to remove all page table mappings to a page
1736 * @page: the page to get unmapped
Andi Kleen14fa31b2009-09-16 11:50:10 +02001737 * @flags: action and flags
Minchan Kimcd256bf2013-05-09 16:21:27 +09001738 * @vma : target vma for reclaim
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 *
1740 * Tries to remove all the page table entries which are mapping this
1741 * page, used in the pageout path. Caller must hold the page lock.
Minchan Kimcd256bf2013-05-09 16:21:27 +09001742 * If @vma is not NULL, this function try to remove @page from only @vma
1743 * without peeking all mapped vma for @page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * Return values are:
1745 *
1746 * SWAP_SUCCESS - we succeeded in removing all mappings
1747 * SWAP_AGAIN - we missed a mapping, try again later
1748 * SWAP_FAIL - the page is unswappable
Nick Pigginb291f002008-10-18 20:26:44 -07001749 * SWAP_MLOCK - page is mlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 */
Minchan Kimcd256bf2013-05-09 16:21:27 +09001751int try_to_unmap(struct page *page, enum ttu_flags flags,
1752 struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
1754 int ret;
Minchan Kim854e9ed2016-01-15 16:54:53 -08001755 struct rmap_private rp = {
1756 .flags = flags,
1757 .lazyfreed = 0,
1758 };
1759
Joonsoo Kim52629502014-01-21 15:49:50 -08001760 struct rmap_walk_control rwc = {
1761 .rmap_one = try_to_unmap_one,
Minchan Kim854e9ed2016-01-15 16:54:53 -08001762 .arg = &rp,
Kirill A. Shutemov2a52bcb2016-03-17 14:20:04 -07001763 .done = page_mapcount_is_zero,
Joonsoo Kim52629502014-01-21 15:49:50 -08001764 .anon_lock = page_lock_anon_vma_read,
Minchan Kimcd256bf2013-05-09 16:21:27 +09001765 .target_vma = vma,
Joonsoo Kim52629502014-01-21 15:49:50 -08001766 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Joonsoo Kim52629502014-01-21 15:49:50 -08001768 /*
1769 * During exec, a temporary VMA is setup and later moved.
1770 * The VMA is moved under the anon_vma lock but not the
1771 * page tables leading to a race where migration cannot
1772 * find the migration ptes. Rather than increasing the
1773 * locking requirements of exec(), migration skips
1774 * temporary VMAs until after exec() completes.
1775 */
Konstantin Khlebnikovdaa5ba72014-06-04 16:10:52 -07001776 if ((flags & TTU_MIGRATION) && !PageKsm(page) && PageAnon(page))
Joonsoo Kim52629502014-01-21 15:49:50 -08001777 rwc.invalid_vma = invalid_migration_vma;
1778
Kirill A. Shutemov2a52bcb2016-03-17 14:20:04 -07001779 if (flags & TTU_RMAP_LOCKED)
1780 ret = rmap_walk_locked(page, &rwc);
1781 else
1782 ret = rmap_walk(page, &rwc);
Joonsoo Kim52629502014-01-21 15:49:50 -08001783
Kirill A. Shutemov2a52bcb2016-03-17 14:20:04 -07001784 if (ret != SWAP_MLOCK && !page_mapcount(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 ret = SWAP_SUCCESS;
Minchan Kim854e9ed2016-01-15 16:54:53 -08001786 if (rp.lazyfreed && !PageDirty(page))
1787 ret = SWAP_LZFREE;
1788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 return ret;
1790}
Nikita Danilov81b40822005-05-01 08:58:36 -07001791
Kirill A. Shutemov2a52bcb2016-03-17 14:20:04 -07001792static int page_not_mapped(struct page *page)
1793{
1794 return !page_mapped(page);
1795};
1796
Nick Pigginb291f002008-10-18 20:26:44 -07001797/**
1798 * try_to_munlock - try to munlock a page
1799 * @page: the page to be munlocked
1800 *
1801 * Called from munlock code. Checks all of the VMAs mapping the page
1802 * to make sure nobody else has this page mlocked. The page will be
1803 * returned with PG_mlocked cleared if no other vmas have it mlocked.
1804 *
1805 * Return values are:
1806 *
Hugh Dickins53f79ac2009-12-14 17:58:58 -08001807 * SWAP_AGAIN - no vma is holding page mlocked, or,
Nick Pigginb291f002008-10-18 20:26:44 -07001808 * SWAP_AGAIN - page mapped in mlocked vma -- couldn't acquire mmap sem
Hugh Dickins5ad64682009-12-14 17:59:24 -08001809 * SWAP_FAIL - page cannot be located at present
Nick Pigginb291f002008-10-18 20:26:44 -07001810 * SWAP_MLOCK - page is now mlocked.
1811 */
1812int try_to_munlock(struct page *page)
1813{
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001814 int ret;
Minchan Kim854e9ed2016-01-15 16:54:53 -08001815 struct rmap_private rp = {
1816 .flags = TTU_MUNLOCK,
1817 .lazyfreed = 0,
1818 };
1819
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001820 struct rmap_walk_control rwc = {
1821 .rmap_one = try_to_unmap_one,
Minchan Kim854e9ed2016-01-15 16:54:53 -08001822 .arg = &rp,
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001823 .done = page_not_mapped,
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001824 .anon_lock = page_lock_anon_vma_read,
Minchan Kimcd256bf2013-05-09 16:21:27 +09001825 .target_vma = NULL,
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001826
1827 };
1828
Sasha Levin309381fea2014-01-23 15:52:54 -08001829 VM_BUG_ON_PAGE(!PageLocked(page) || PageLRU(page), page);
Nick Pigginb291f002008-10-18 20:26:44 -07001830
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001831 ret = rmap_walk(page, &rwc);
1832 return ret;
Nick Pigginb291f002008-10-18 20:26:44 -07001833}
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001834
Peter Zijlstra01d8b202011-03-22 16:32:49 -07001835void __put_anon_vma(struct anon_vma *anon_vma)
Rik van Riel76545062010-08-09 17:18:41 -07001836{
Peter Zijlstra01d8b202011-03-22 16:32:49 -07001837 struct anon_vma *root = anon_vma->root;
Rik van Riel76545062010-08-09 17:18:41 -07001838
Andrey Ryabinin624483f2014-06-06 19:09:30 +04001839 anon_vma_free(anon_vma);
Peter Zijlstra01d8b202011-03-22 16:32:49 -07001840 if (root != anon_vma && atomic_dec_and_test(&root->refcount))
1841 anon_vma_free(root);
Rik van Riel76545062010-08-09 17:18:41 -07001842}
Rik van Riel76545062010-08-09 17:18:41 -07001843
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001844static struct anon_vma *rmap_walk_anon_lock(struct page *page,
1845 struct rmap_walk_control *rwc)
Joonsoo Kimfaecd8d2014-01-21 15:49:46 -08001846{
1847 struct anon_vma *anon_vma;
1848
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001849 if (rwc->anon_lock)
1850 return rwc->anon_lock(page);
1851
Joonsoo Kimfaecd8d2014-01-21 15:49:46 -08001852 /*
1853 * Note: remove_migration_ptes() cannot use page_lock_anon_vma_read()
1854 * because that depends on page_mapped(); but not all its usages
1855 * are holding mmap_sem. Users without mmap_sem are required to
1856 * take a reference count to prevent the anon_vma disappearing
1857 */
1858 anon_vma = page_anon_vma(page);
1859 if (!anon_vma)
1860 return NULL;
1861
1862 anon_vma_lock_read(anon_vma);
1863 return anon_vma;
1864}
1865
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001866/*
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001867 * rmap_walk_anon - do something to anonymous page using the object-based
1868 * rmap method
1869 * @page: the page to be handled
1870 * @rwc: control variable according to each walk type
1871 *
1872 * Find all the mappings of a page using the mapping pointer and the vma chains
1873 * contained in the anon_vma struct it points to.
1874 *
1875 * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
1876 * where the page was found will be held for write. So, we won't recheck
1877 * vm_flags for that VMA. That should be OK, because that vma shouldn't be
1878 * LOCKED.
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001879 */
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001880static int rmap_walk_anon(struct page *page, struct rmap_walk_control *rwc,
1881 bool locked)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001882{
1883 struct anon_vma *anon_vma;
Davidlohr Buesob258d862014-12-12 16:55:04 -08001884 pgoff_t pgoff;
Rik van Riel5beb4932010-03-05 13:42:07 -08001885 struct anon_vma_chain *avc;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001886 int ret = SWAP_AGAIN;
1887
Minchan Kimcd256bf2013-05-09 16:21:27 +09001888 if (rwc->target_vma) {
1889 unsigned long address = vma_address(page, rwc->target_vma);
1890 return rwc->rmap_one(page, rwc->target_vma, address, rwc->arg);
1891 }
1892
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001893 if (locked) {
1894 anon_vma = page_anon_vma(page);
1895 /* anon_vma disappear under us? */
1896 VM_BUG_ON_PAGE(!anon_vma, page);
1897 } else {
1898 anon_vma = rmap_walk_anon_lock(page, rwc);
1899 }
Minchan Kimcd256bf2013-05-09 16:21:27 +09001900
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001901 if (!anon_vma)
1902 return ret;
Joonsoo Kimfaecd8d2014-01-21 15:49:46 -08001903
Davidlohr Buesob258d862014-12-12 16:55:04 -08001904 pgoff = page_to_pgoff(page);
Michel Lespinassebf181b92012-10-08 16:31:39 -07001905 anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) {
Rik van Riel5beb4932010-03-05 13:42:07 -08001906 struct vm_area_struct *vma = avc->vma;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001907 unsigned long address = vma_address(page, vma);
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001908
Andrea Arcangeliad126952015-11-05 18:49:07 -08001909 cond_resched();
1910
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001911 if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
1912 continue;
1913
Joonsoo Kim051ac832014-01-21 15:49:48 -08001914 ret = rwc->rmap_one(page, vma, address, rwc->arg);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001915 if (ret != SWAP_AGAIN)
1916 break;
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001917 if (rwc->done && rwc->done(page))
1918 break;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001919 }
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001920
1921 if (!locked)
1922 anon_vma_unlock_read(anon_vma);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001923 return ret;
1924}
1925
Joonsoo Kime8351ac2014-01-21 15:49:52 -08001926/*
1927 * rmap_walk_file - do something to file page using the object-based rmap method
1928 * @page: the page to be handled
1929 * @rwc: control variable according to each walk type
1930 *
1931 * Find all the mappings of a page using the mapping pointer and the vma chains
1932 * contained in the address_space struct it points to.
1933 *
1934 * When called from try_to_munlock(), the mmap_sem of the mm containing the vma
1935 * where the page was found will be held for write. So, we won't recheck
1936 * vm_flags for that VMA. That should be OK, because that vma shouldn't be
1937 * LOCKED.
1938 */
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001939static int rmap_walk_file(struct page *page, struct rmap_walk_control *rwc,
1940 bool locked)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001941{
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001942 struct address_space *mapping = page_mapping(page);
Davidlohr Buesob258d862014-12-12 16:55:04 -08001943 pgoff_t pgoff;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001944 struct vm_area_struct *vma;
Minchan Kimcd256bf2013-05-09 16:21:27 +09001945 unsigned long address;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001946 int ret = SWAP_AGAIN;
1947
Joonsoo Kim9f326242014-01-21 15:49:53 -08001948 /*
1949 * The page lock not only makes sure that page->mapping cannot
1950 * suddenly be NULLified by truncation, it makes sure that the
1951 * structure at mapping cannot be freed and reused yet,
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -08001952 * so we can safely take mapping->i_mmap_rwsem.
Joonsoo Kim9f326242014-01-21 15:49:53 -08001953 */
Sasha Levin81d1b092014-10-09 15:28:10 -07001954 VM_BUG_ON_PAGE(!PageLocked(page), page);
Joonsoo Kim9f326242014-01-21 15:49:53 -08001955
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001956 if (!mapping)
1957 return ret;
Davidlohr Bueso3dec0ba2014-12-12 16:54:27 -08001958
Davidlohr Buesob258d862014-12-12 16:55:04 -08001959 pgoff = page_to_pgoff(page);
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001960 if (!locked)
1961 i_mmap_lock_read(mapping);
Minchan Kimcd256bf2013-05-09 16:21:27 +09001962
1963 if (rwc->target_vma) {
1964 address = vma_address(page, rwc->target_vma);
1965 ret = rwc->rmap_one(page, rwc->target_vma, address, rwc->arg);
1966 goto done;
1967 }
1968
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -07001969 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001970 unsigned long address = vma_address(page, vma);
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001971
Andrea Arcangeliad126952015-11-05 18:49:07 -08001972 cond_resched();
1973
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001974 if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
1975 continue;
1976
Joonsoo Kim051ac832014-01-21 15:49:48 -08001977 ret = rwc->rmap_one(page, vma, address, rwc->arg);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001978 if (ret != SWAP_AGAIN)
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001979 goto done;
1980 if (rwc->done && rwc->done(page))
1981 goto done;
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001982 }
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001983
Joonsoo Kim0dd1c7b2014-01-21 15:49:49 -08001984done:
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001985 if (!locked)
1986 i_mmap_unlock_read(mapping);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001987 return ret;
1988}
1989
Joonsoo Kim051ac832014-01-21 15:49:48 -08001990int rmap_walk(struct page *page, struct rmap_walk_control *rwc)
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001991{
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001992 if (unlikely(PageKsm(page)))
Joonsoo Kim051ac832014-01-21 15:49:48 -08001993 return rmap_walk_ksm(page, rwc);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001994 else if (PageAnon(page))
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001995 return rmap_walk_anon(page, rwc, false);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08001996 else
Kirill A. Shutemovb9773192016-03-17 14:20:01 -07001997 return rmap_walk_file(page, rwc, false);
1998}
1999
2000/* Like rmap_walk, but caller holds relevant rmap lock */
2001int rmap_walk_locked(struct page *page, struct rmap_walk_control *rwc)
2002{
2003 /* no ksm support for now */
2004 VM_BUG_ON_PAGE(PageKsm(page), page);
2005 if (PageAnon(page))
2006 return rmap_walk_anon(page, rwc, true);
2007 else
2008 return rmap_walk_file(page, rwc, true);
Hugh Dickinse9995ef2009-12-14 17:59:31 -08002009}
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09002010
Naoya Horiguchie3390f62010-06-15 13:18:13 +09002011#ifdef CONFIG_HUGETLB_PAGE
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09002012/*
2013 * The following three functions are for anonymous (private mapped) hugepages.
2014 * Unlike common anonymous pages, anonymous hugepages have no accounting code
2015 * and no lru code, because we handle hugepages differently from common pages.
2016 */
2017static void __hugepage_set_anon_rmap(struct page *page,
2018 struct vm_area_struct *vma, unsigned long address, int exclusive)
2019{
2020 struct anon_vma *anon_vma = vma->anon_vma;
Naoya Horiguchi433abed2010-09-10 13:23:03 +09002021
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09002022 BUG_ON(!anon_vma);
Naoya Horiguchi433abed2010-09-10 13:23:03 +09002023
2024 if (PageAnon(page))
2025 return;
2026 if (!exclusive)
2027 anon_vma = anon_vma->root;
2028
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09002029 anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
2030 page->mapping = (struct address_space *) anon_vma;
2031 page->index = linear_page_index(vma, address);
2032}
2033
2034void hugepage_add_anon_rmap(struct page *page,
2035 struct vm_area_struct *vma, unsigned long address)
2036{
2037 struct anon_vma *anon_vma = vma->anon_vma;
2038 int first;
Naoya Horiguchia850ea32010-09-10 13:23:06 +09002039
2040 BUG_ON(!PageLocked(page));
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09002041 BUG_ON(!anon_vma);
Hugh Dickins5dbe0af2011-05-28 13:17:04 -07002042 /* address might be in next vma when migration races vma_adjust */
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08002043 first = atomic_inc_and_test(compound_mapcount_ptr(page));
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09002044 if (first)
2045 __hugepage_set_anon_rmap(page, vma, address, 0);
2046}
2047
2048void hugepage_add_new_anon_rmap(struct page *page,
2049 struct vm_area_struct *vma, unsigned long address)
2050{
2051 BUG_ON(address < vma->vm_start || address >= vma->vm_end);
Kirill A. Shutemov53f92632016-01-15 16:53:42 -08002052 atomic_set(compound_mapcount_ptr(page), 0);
Naoya Horiguchi0fe6e202010-05-28 09:29:16 +09002053 __hugepage_set_anon_rmap(page, vma, address, 1);
2054}
Naoya Horiguchie3390f62010-06-15 13:18:13 +09002055#endif /* CONFIG_HUGETLB_PAGE */