Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Dickins | 98f3260 | 2009-05-21 20:33:58 +0100 | [diff] [blame] | 17 | * Contributions by Hugh Dickins 2003, 2004 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | /* |
| 21 | * Lock ordering in mm: |
| 22 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 23 | * inode->i_mutex (while writing or truncating, not reading or faulting) |
Nick Piggin | 82591e6 | 2006-10-19 23:29:10 -0700 | [diff] [blame] | 24 | * mm->mmap_sem |
| 25 | * page->flags PG_locked (lock_page) |
Kirill A. Shutemov | 88f306b | 2016-01-15 16:57:31 -0800 | [diff] [blame] | 26 | * 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 Gorman | a52633d | 2016-07-28 15:45:28 -0700 | [diff] [blame] | 30 | * zone_lru_lock (in mark_page_accessed, isolate_lru_page) |
Kirill A. Shutemov | 88f306b | 2016-01-15 16:57:31 -0800 | [diff] [blame] | 31 | * 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 Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 42 | * |
Ingo Molnar | 5a50508 | 2012-12-02 19:56:46 +0000 | [diff] [blame] | 43 | * anon_vma->rwsem,mapping->i_mutex (memory_failure, collect_procs_anon) |
Peter Zijlstra | 9b67932 | 2011-06-27 16:18:09 -0700 | [diff] [blame] | 44 | * ->tasklist_lock |
Andi Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 45 | * pte map lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | */ |
| 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 Dickins | 5ad6468 | 2009-12-14 17:59:24 -0800 | [diff] [blame] | 54 | #include <linux/ksm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #include <linux/rmap.h> |
| 56 | #include <linux/rcupdate.h> |
Paul Gortmaker | b95f1b31 | 2011-10-16 02:01:52 -0400 | [diff] [blame] | 57 | #include <linux/export.h> |
Balbir Singh | 8a9f3cc | 2008-02-07 00:13:53 -0800 | [diff] [blame] | 58 | #include <linux/memcontrol.h> |
Andrea Arcangeli | cddb8a5 | 2008-07-28 15:46:29 -0700 | [diff] [blame] | 59 | #include <linux/mmu_notifier.h> |
KOSAKI Motohiro | 64cdd54 | 2009-01-06 14:39:16 -0800 | [diff] [blame] | 60 | #include <linux/migrate.h> |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 61 | #include <linux/hugetlb.h> |
Jan Kara | ef5d437 | 2012-10-25 13:37:31 -0700 | [diff] [blame] | 62 | #include <linux/backing-dev.h> |
Vladimir Davydov | 33c3fc7 | 2015-09-09 15:35:45 -0700 | [diff] [blame] | 63 | #include <linux/page_idle.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | #include <asm/tlbflush.h> |
| 66 | |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 67 | #include <trace/events/tlb.h> |
| 68 | |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 69 | #include "internal.h" |
| 70 | |
Adrian Bunk | fdd2e5f | 2008-10-18 20:28:38 -0700 | [diff] [blame] | 71 | static struct kmem_cache *anon_vma_cachep; |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 72 | static struct kmem_cache *anon_vma_chain_cachep; |
Adrian Bunk | fdd2e5f | 2008-10-18 20:28:38 -0700 | [diff] [blame] | 73 | |
| 74 | static inline struct anon_vma *anon_vma_alloc(void) |
| 75 | { |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 76 | 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 Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 81 | anon_vma->num_children = 0; |
| 82 | anon_vma->num_active_vmas = 0; |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 83 | anon_vma->parent = anon_vma; |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 84 | /* |
| 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 Bunk | fdd2e5f | 2008-10-18 20:28:38 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 94 | static inline void anon_vma_free(struct anon_vma *anon_vma) |
Adrian Bunk | fdd2e5f | 2008-10-18 20:28:38 -0700 | [diff] [blame] | 95 | { |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 96 | VM_BUG_ON(atomic_read(&anon_vma->refcount)); |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 97 | |
| 98 | /* |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 99 | * Synchronize against page_lock_anon_vma_read() such that |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 100 | * 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 Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 105 | * down_read_trylock() from page_lock_anon_vma_read(). This orders: |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 106 | * |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 107 | * page_lock_anon_vma_read() VS put_anon_vma() |
| 108 | * down_read_trylock() atomic_dec_and_test() |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 109 | * LOCK MB |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 110 | * atomic_read() rwsem_is_locked() |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 111 | * |
| 112 | * LOCK should suffice since the actual taking of the lock must |
| 113 | * happen _before_ what follows. |
| 114 | */ |
Hugh Dickins | 7f39dda | 2014-06-04 16:05:33 -0700 | [diff] [blame] | 115 | might_sleep(); |
Ingo Molnar | 5a50508 | 2012-12-02 19:56:46 +0000 | [diff] [blame] | 116 | if (rwsem_is_locked(&anon_vma->root->rwsem)) { |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 117 | anon_vma_lock_write(anon_vma); |
Konstantin Khlebnikov | 08b5270 | 2013-02-22 16:34:40 -0800 | [diff] [blame] | 118 | anon_vma_unlock_write(anon_vma); |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Adrian Bunk | fdd2e5f | 2008-10-18 20:28:38 -0700 | [diff] [blame] | 121 | kmem_cache_free(anon_vma_cachep, anon_vma); |
| 122 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Linus Torvalds | dd34739 | 2011-06-17 19:05:36 -0700 | [diff] [blame] | 124 | static inline struct anon_vma_chain *anon_vma_chain_alloc(gfp_t gfp) |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 125 | { |
Linus Torvalds | dd34739 | 2011-06-17 19:05:36 -0700 | [diff] [blame] | 126 | return kmem_cache_alloc(anon_vma_chain_cachep, gfp); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 127 | } |
| 128 | |
Namhyung Kim | e574b5f | 2010-10-26 14:22:02 -0700 | [diff] [blame] | 129 | static void anon_vma_chain_free(struct anon_vma_chain *anon_vma_chain) |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 130 | { |
| 131 | kmem_cache_free(anon_vma_chain_cachep, anon_vma_chain); |
| 132 | } |
| 133 | |
Kautuk Consul | 6583a84 | 2012-03-21 16:34:01 -0700 | [diff] [blame] | 134 | static 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 Lespinasse | bf181b9 | 2012-10-08 16:31:39 -0700 | [diff] [blame] | 141 | anon_vma_interval_tree_insert(avc, &anon_vma->rb_root); |
Kautuk Consul | 6583a84 | 2012-03-21 16:34:01 -0700 | [diff] [blame] | 142 | } |
| 143 | |
Linus Torvalds | d9d332e | 2008-10-19 10:32:20 -0700 | [diff] [blame] | 144 | /** |
| 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.zhang | 23a0790 | 2010-12-27 15:14:06 +0100 | [diff] [blame] | 153 | * not we either need to find an adjacent mapping that we |
Linus Torvalds | d9d332e | 2008-10-19 10:32:20 -0700 | [diff] [blame] | 154 | * 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 Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 159 | * optimistically looked up an anon_vma in page_lock_anon_vma_read() |
Linus Torvalds | d9d332e | 2008-10-19 10:32:20 -0700 | [diff] [blame] | 160 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | int anon_vma_prepare(struct vm_area_struct *vma) |
| 172 | { |
| 173 | struct anon_vma *anon_vma = vma->anon_vma; |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 174 | struct anon_vma_chain *avc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | might_sleep(); |
| 177 | if (unlikely(!anon_vma)) { |
| 178 | struct mm_struct *mm = vma->vm_mm; |
Linus Torvalds | d9d332e | 2008-10-19 10:32:20 -0700 | [diff] [blame] | 179 | struct anon_vma *allocated; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Linus Torvalds | dd34739 | 2011-06-17 19:05:36 -0700 | [diff] [blame] | 181 | avc = anon_vma_chain_alloc(GFP_KERNEL); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 182 | if (!avc) |
| 183 | goto out_enomem; |
| 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | anon_vma = find_mergeable_anon_vma(vma); |
Linus Torvalds | d9d332e | 2008-10-19 10:32:20 -0700 | [diff] [blame] | 186 | allocated = NULL; |
| 187 | if (!anon_vma) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | anon_vma = anon_vma_alloc(); |
| 189 | if (unlikely(!anon_vma)) |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 190 | goto out_enomem_free_avc; |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 191 | anon_vma->num_children++; /* self-parent link for new root */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | allocated = anon_vma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 195 | anon_vma_lock_write(anon_vma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | /* 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 Consul | 6583a84 | 2012-03-21 16:34:01 -0700 | [diff] [blame] | 200 | anon_vma_chain_link(vma, avc, anon_vma); |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 201 | anon_vma->num_active_vmas++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | allocated = NULL; |
Oleg Nesterov | 31f2b0e | 2010-04-23 13:18:01 -0400 | [diff] [blame] | 203 | avc = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } |
| 205 | spin_unlock(&mm->page_table_lock); |
Konstantin Khlebnikov | 08b5270 | 2013-02-22 16:34:40 -0800 | [diff] [blame] | 206 | anon_vma_unlock_write(anon_vma); |
Oleg Nesterov | 31f2b0e | 2010-04-23 13:18:01 -0400 | [diff] [blame] | 207 | |
| 208 | if (unlikely(allocated)) |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 209 | put_anon_vma(allocated); |
Oleg Nesterov | 31f2b0e | 2010-04-23 13:18:01 -0400 | [diff] [blame] | 210 | if (unlikely(avc)) |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 211 | anon_vma_chain_free(avc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | } |
| 213 | return 0; |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 214 | |
| 215 | out_enomem_free_avc: |
| 216 | anon_vma_chain_free(avc); |
| 217 | out_enomem: |
| 218 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Linus Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 221 | /* |
| 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 | */ |
| 229 | static 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 Molnar | 5a50508 | 2012-12-02 19:56:46 +0000 | [diff] [blame] | 234 | up_write(&root->rwsem); |
Linus Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 235 | root = new_root; |
Ingo Molnar | 5a50508 | 2012-12-02 19:56:46 +0000 | [diff] [blame] | 236 | down_write(&root->rwsem); |
Linus Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 237 | } |
| 238 | return root; |
| 239 | } |
| 240 | |
| 241 | static inline void unlock_anon_vma_root(struct anon_vma *root) |
| 242 | { |
| 243 | if (root) |
Ingo Molnar | 5a50508 | 2012-12-02 19:56:46 +0000 | [diff] [blame] | 244 | up_write(&root->rwsem); |
Linus Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 247 | /* |
| 248 | * Attach the anon_vmas from src to dst. |
| 249 | * Returns 0 on success, -ENOMEM on failure. |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 250 | * |
| 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 Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 258 | */ |
| 259 | int anon_vma_clone(struct vm_area_struct *dst, struct vm_area_struct *src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | { |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 261 | struct anon_vma_chain *avc, *pavc; |
Linus Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 262 | struct anon_vma *root = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
Linus Torvalds | 646d87b | 2010-04-11 17:15:03 -0700 | [diff] [blame] | 264 | list_for_each_entry_reverse(pavc, &src->anon_vma_chain, same_vma) { |
Linus Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 265 | struct anon_vma *anon_vma; |
| 266 | |
Linus Torvalds | dd34739 | 2011-06-17 19:05:36 -0700 | [diff] [blame] | 267 | 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 Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 275 | anon_vma = pavc->anon_vma; |
| 276 | root = lock_anon_vma_root(root, anon_vma); |
| 277 | anon_vma_chain_link(dst, avc, anon_vma); |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 278 | |
| 279 | /* |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 280 | * Reuse existing anon_vma if it has no vma and only one |
| 281 | * anon_vma child. |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 282 | * |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 283 | * Root anon_vma is never reused: |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 284 | * it has self-parent reference and at least one child. |
| 285 | */ |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 286 | if (!dst->anon_vma && |
| 287 | anon_vma->num_children < 2 && |
| 288 | anon_vma->num_active_vmas == 0) |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 289 | dst->anon_vma = anon_vma; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 291 | if (dst->anon_vma) |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 292 | dst->anon_vma->num_active_vmas++; |
Linus Torvalds | bb4aa39 | 2011-06-16 20:44:51 -0700 | [diff] [blame] | 293 | unlock_anon_vma_root(root); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 294 | return 0; |
| 295 | |
| 296 | enomem_failure: |
Leon Yu | 3fe89b3 | 2015-03-25 15:55:11 -0700 | [diff] [blame] | 297 | /* |
| 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 Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 304 | unlink_anon_vmas(dst); |
| 305 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } |
| 307 | |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 308 | /* |
| 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 | */ |
| 313 | int anon_vma_fork(struct vm_area_struct *vma, struct vm_area_struct *pvma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | { |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 315 | struct anon_vma_chain *avc; |
| 316 | struct anon_vma *anon_vma; |
Daniel Forrest | c4ea95d | 2014-12-02 15:59:42 -0800 | [diff] [blame] | 317 | int error; |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 318 | |
| 319 | /* Don't bother if the parent process has no anon_vma here. */ |
| 320 | if (!pvma->anon_vma) |
| 321 | return 0; |
| 322 | |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 323 | /* Drop inherited anon_vma, we'll reuse existing or allocate new. */ |
| 324 | vma->anon_vma = NULL; |
| 325 | |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 326 | /* |
| 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 Forrest | c4ea95d | 2014-12-02 15:59:42 -0800 | [diff] [blame] | 330 | error = anon_vma_clone(vma, pvma); |
| 331 | if (error) |
| 332 | return error; |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 333 | |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 334 | /* An existing anon_vma has been reused, all done then. */ |
| 335 | if (vma->anon_vma) |
| 336 | return 0; |
| 337 | |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 338 | /* Then add our own anon_vma. */ |
| 339 | anon_vma = anon_vma_alloc(); |
| 340 | if (!anon_vma) |
| 341 | goto out_error; |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 342 | anon_vma->num_active_vmas++; |
Linus Torvalds | dd34739 | 2011-06-17 19:05:36 -0700 | [diff] [blame] | 343 | avc = anon_vma_chain_alloc(GFP_KERNEL); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 344 | if (!avc) |
| 345 | goto out_error_free_anon_vma; |
Rik van Riel | 5c341ee | 2010-08-09 17:18:39 -0700 | [diff] [blame] | 346 | |
| 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 Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 352 | anon_vma->parent = pvma->anon_vma; |
Rik van Riel | 7654506 | 2010-08-09 17:18:41 -0700 | [diff] [blame] | 353 | /* |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 354 | * 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 Riel | 7654506 | 2010-08-09 17:18:41 -0700 | [diff] [blame] | 357 | */ |
| 358 | get_anon_vma(anon_vma->root); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 359 | /* Mark this anon_vma as the one where our new (COWed) pages go. */ |
| 360 | vma->anon_vma = anon_vma; |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 361 | anon_vma_lock_write(anon_vma); |
Rik van Riel | 5c341ee | 2010-08-09 17:18:39 -0700 | [diff] [blame] | 362 | anon_vma_chain_link(vma, avc, anon_vma); |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 363 | anon_vma->parent->num_children++; |
Konstantin Khlebnikov | 08b5270 | 2013-02-22 16:34:40 -0800 | [diff] [blame] | 364 | anon_vma_unlock_write(anon_vma); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 365 | |
| 366 | return 0; |
| 367 | |
| 368 | out_error_free_anon_vma: |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 369 | put_anon_vma(anon_vma); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 370 | out_error: |
Rik van Riel | 4946d54 | 2010-04-05 12:13:33 -0400 | [diff] [blame] | 371 | unlink_anon_vmas(vma); |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 372 | return -ENOMEM; |
| 373 | } |
| 374 | |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 375 | void unlink_anon_vmas(struct vm_area_struct *vma) |
| 376 | { |
| 377 | struct anon_vma_chain *avc, *next; |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 378 | struct anon_vma *root = NULL; |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 379 | |
Rik van Riel | 5c341ee | 2010-08-09 17:18:39 -0700 | [diff] [blame] | 380 | /* |
| 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 Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 384 | list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) { |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 385 | struct anon_vma *anon_vma = avc->anon_vma; |
| 386 | |
| 387 | root = lock_anon_vma_root(root, anon_vma); |
Michel Lespinasse | bf181b9 | 2012-10-08 16:31:39 -0700 | [diff] [blame] | 388 | anon_vma_interval_tree_remove(avc, &anon_vma->rb_root); |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 389 | |
| 390 | /* |
| 391 | * Leave empty anon_vmas on the list - we'll need |
| 392 | * to free them outside the lock. |
| 393 | */ |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 394 | if (RB_EMPTY_ROOT(&anon_vma->rb_root)) { |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 395 | anon_vma->parent->num_children--; |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 396 | continue; |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 397 | } |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 398 | |
| 399 | list_del(&avc->same_vma); |
| 400 | anon_vma_chain_free(avc); |
| 401 | } |
Konstantin Khlebnikov | 7a3ef20 | 2015-01-08 14:32:15 -0800 | [diff] [blame] | 402 | if (vma->anon_vma) |
Jann Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 403 | vma->anon_vma->num_active_vmas--; |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 404 | 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 Molnar | 5a50508 | 2012-12-02 19:56:46 +0000 | [diff] [blame] | 409 | * needing to write-acquire the anon_vma->root->rwsem. |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 410 | */ |
| 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 Horn | c24ca0f | 2022-08-31 19:06:00 +0200 | [diff] [blame] | 414 | VM_WARN_ON(anon_vma->num_children); |
| 415 | VM_WARN_ON(anon_vma->num_active_vmas); |
Peter Zijlstra | eee2acb | 2011-06-17 13:54:23 +0200 | [diff] [blame] | 416 | put_anon_vma(anon_vma); |
| 417 | |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 418 | list_del(&avc->same_vma); |
| 419 | anon_vma_chain_free(avc); |
| 420 | } |
| 421 | } |
| 422 | |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 423 | static void anon_vma_ctor(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 425 | struct anon_vma *anon_vma = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Ingo Molnar | 5a50508 | 2012-12-02 19:56:46 +0000 | [diff] [blame] | 427 | init_rwsem(&anon_vma->rwsem); |
Peter Zijlstra | 8381326 | 2011-03-22 16:32:48 -0700 | [diff] [blame] | 428 | atomic_set(&anon_vma->refcount, 0); |
Michel Lespinasse | bf181b9 | 2012-10-08 16:31:39 -0700 | [diff] [blame] | 429 | anon_vma->rb_root = RB_ROOT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | void __init anon_vma_init(void) |
| 433 | { |
| 434 | anon_vma_cachep = kmem_cache_create("anon_vma", sizeof(struct anon_vma), |
Vladimir Davydov | 5d09705 | 2016-01-14 15:18:21 -0800 | [diff] [blame] | 435 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | /* |
Peter Zijlstra | 6111e4c | 2011-05-24 17:12:08 -0700 | [diff] [blame] | 442 | * 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 Zijlstra | bc658c9 | 2011-05-29 10:33:44 +0200 | [diff] [blame] | 451 | * 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 Zijlstra | 6111e4c | 2011-05-24 17:12:08 -0700 | [diff] [blame] | 456 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | */ |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 464 | struct anon_vma *page_get_anon_vma(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 466 | struct anon_vma *anon_vma = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | unsigned long anon_mapping; |
| 468 | |
| 469 | rcu_read_lock(); |
Jason Low | 4db0c3c | 2015-04-15 16:14:08 -0700 | [diff] [blame] | 470 | anon_mapping = (unsigned long)READ_ONCE(page->mapping); |
Hugh Dickins | 3ca7b3c | 2009-12-14 17:58:57 -0800 | [diff] [blame] | 471 | if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | goto out; |
| 473 | if (!page_mapped(page)) |
| 474 | goto out; |
| 475 | |
| 476 | anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON); |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 477 | if (!atomic_inc_not_zero(&anon_vma->refcount)) { |
| 478 | anon_vma = NULL; |
| 479 | goto out; |
| 480 | } |
Hugh Dickins | f1819427 | 2010-08-25 23:12:54 -0700 | [diff] [blame] | 481 | |
| 482 | /* |
| 483 | * If this page is still mapped, then its anon_vma cannot have been |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 484 | * 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 Dickins | f1819427 | 2010-08-25 23:12:54 -0700 | [diff] [blame] | 488 | */ |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 489 | if (!page_mapped(page)) { |
Hugh Dickins | 7f39dda | 2014-06-04 16:05:33 -0700 | [diff] [blame] | 490 | rcu_read_unlock(); |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 491 | put_anon_vma(anon_vma); |
Hugh Dickins | 7f39dda | 2014-06-04 16:05:33 -0700 | [diff] [blame] | 492 | return NULL; |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 493 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | out: |
| 495 | rcu_read_unlock(); |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 496 | |
| 497 | return anon_vma; |
| 498 | } |
| 499 | |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 500 | /* |
| 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 Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 507 | struct anon_vma *page_lock_anon_vma_read(struct page *page) |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 508 | { |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 509 | struct anon_vma *anon_vma = NULL; |
Hugh Dickins | eee0f25 | 2011-05-28 13:20:21 -0700 | [diff] [blame] | 510 | struct anon_vma *root_anon_vma; |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 511 | unsigned long anon_mapping; |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 512 | |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 513 | rcu_read_lock(); |
Jason Low | 4db0c3c | 2015-04-15 16:14:08 -0700 | [diff] [blame] | 514 | anon_mapping = (unsigned long)READ_ONCE(page->mapping); |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 515 | if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON) |
| 516 | goto out; |
| 517 | if (!page_mapped(page)) |
| 518 | goto out; |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 519 | |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 520 | anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON); |
Jason Low | 4db0c3c | 2015-04-15 16:14:08 -0700 | [diff] [blame] | 521 | root_anon_vma = READ_ONCE(anon_vma->root); |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 522 | if (down_read_trylock(&root_anon_vma->rwsem)) { |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 523 | /* |
Hugh Dickins | eee0f25 | 2011-05-28 13:20:21 -0700 | [diff] [blame] | 524 | * 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 Zijlstra | bc658c9 | 2011-05-29 10:33:44 +0200 | [diff] [blame] | 526 | * not go away, see anon_vma_free(). |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 527 | */ |
Hugh Dickins | eee0f25 | 2011-05-28 13:20:21 -0700 | [diff] [blame] | 528 | if (!page_mapped(page)) { |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 529 | up_read(&root_anon_vma->rwsem); |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 530 | 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 Dickins | 7f39dda | 2014-06-04 16:05:33 -0700 | [diff] [blame] | 542 | rcu_read_unlock(); |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 543 | put_anon_vma(anon_vma); |
Hugh Dickins | 7f39dda | 2014-06-04 16:05:33 -0700 | [diff] [blame] | 544 | return NULL; |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | /* we pinned the anon_vma, its safe to sleep */ |
| 548 | rcu_read_unlock(); |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 549 | anon_vma_lock_read(anon_vma); |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 550 | |
| 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 Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 555 | * we'll deadlock on the anon_vma_lock_write() recursion. |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 556 | */ |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 557 | anon_vma_unlock_read(anon_vma); |
Peter Zijlstra | 88c2208 | 2011-05-24 17:12:13 -0700 | [diff] [blame] | 558 | __put_anon_vma(anon_vma); |
| 559 | anon_vma = NULL; |
| 560 | } |
| 561 | |
| 562 | return anon_vma; |
| 563 | |
| 564 | out: |
| 565 | rcu_read_unlock(); |
Peter Zijlstra | 746b18d | 2011-05-24 17:12:10 -0700 | [diff] [blame] | 566 | return anon_vma; |
Oleg Nesterov | 34bbd70 | 2007-02-28 20:13:49 -0800 | [diff] [blame] | 567 | } |
| 568 | |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 569 | void page_unlock_anon_vma_read(struct anon_vma *anon_vma) |
Oleg Nesterov | 34bbd70 | 2007-02-28 20:13:49 -0800 | [diff] [blame] | 570 | { |
Ingo Molnar | 4fc3f1d | 2012-12-02 19:56:50 +0000 | [diff] [blame] | 571 | anon_vma_unlock_read(anon_vma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | } |
| 573 | |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 574 | #ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 575 | /* |
| 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 | */ |
| 581 | void try_to_unmap_flush(void) |
| 582 | { |
| 583 | struct tlbflush_unmap_batch *tlb_ubc = ¤t->tlb_ubc; |
| 584 | int cpu; |
| 585 | |
| 586 | if (!tlb_ubc->flush_required) |
| 587 | return; |
| 588 | |
| 589 | cpu = get_cpu(); |
| 590 | |
Nadav Amit | 858eaaa7 | 2016-04-01 14:31:26 -0700 | [diff] [blame] | 591 | 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 Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 595 | } |
Nadav Amit | 858eaaa7 | 2016-04-01 14:31:26 -0700 | [diff] [blame] | 596 | |
| 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 Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 599 | cpumask_clear(&tlb_ubc->cpumask); |
| 600 | tlb_ubc->flush_required = false; |
Mel Gorman | d950c94 | 2015-09-04 15:47:35 -0700 | [diff] [blame] | 601 | tlb_ubc->writable = false; |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 602 | put_cpu(); |
| 603 | } |
| 604 | |
Mel Gorman | d950c94 | 2015-09-04 15:47:35 -0700 | [diff] [blame] | 605 | /* Flush iff there are potentially writable TLB entries that can race with IO */ |
| 606 | void try_to_unmap_flush_dirty(void) |
| 607 | { |
| 608 | struct tlbflush_unmap_batch *tlb_ubc = ¤t->tlb_ubc; |
| 609 | |
| 610 | if (tlb_ubc->writable) |
| 611 | try_to_unmap_flush(); |
| 612 | } |
| 613 | |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 614 | static void set_tlb_ubc_flush_pending(struct mm_struct *mm, |
Mel Gorman | d950c94 | 2015-09-04 15:47:35 -0700 | [diff] [blame] | 615 | struct page *page, bool writable) |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 616 | { |
| 617 | struct tlbflush_unmap_batch *tlb_ubc = ¤t->tlb_ubc; |
| 618 | |
| 619 | cpumask_or(&tlb_ubc->cpumask, &tlb_ubc->cpumask, mm_cpumask(mm)); |
| 620 | tlb_ubc->flush_required = true; |
Mel Gorman | d950c94 | 2015-09-04 15:47:35 -0700 | [diff] [blame] | 621 | |
| 622 | /* |
Mel Gorman | 5a1eef7 | 2017-08-02 13:31:52 -0700 | [diff] [blame] | 623 | * 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 Gorman | d950c94 | 2015-09-04 15:47:35 -0700 | [diff] [blame] | 630 | * 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 Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 636 | } |
| 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 | */ |
| 642 | static 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 Gorman | 5a1eef7 | 2017-08-02 13:31:52 -0700 | [diff] [blame] | 656 | |
| 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 | */ |
| 672 | void 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 Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 685 | #else |
| 686 | static void set_tlb_ubc_flush_pending(struct mm_struct *mm, |
Mel Gorman | d950c94 | 2015-09-04 15:47:35 -0700 | [diff] [blame] | 687 | struct page *page, bool writable) |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 688 | { |
| 689 | } |
| 690 | |
| 691 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | /* |
Huang Shijie | bf89c8c | 2009-10-01 15:44:04 -0700 | [diff] [blame] | 698 | * At what user virtual address is page expected in vma? |
Naoya Horiguchi | ab941e0 | 2010-05-11 14:06:55 -0700 | [diff] [blame] | 699 | * Caller should check the page is actually part of the vma. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | */ |
| 701 | unsigned long page_address_in_vma(struct page *page, struct vm_area_struct *vma) |
| 702 | { |
Michel Lespinasse | 86c2ad1 | 2012-10-08 16:31:42 -0700 | [diff] [blame] | 703 | unsigned long address; |
Andrea Arcangeli | 21d0d44 | 2010-08-09 17:19:10 -0700 | [diff] [blame] | 704 | if (PageAnon(page)) { |
Hugh Dickins | 4829b90 | 2010-10-02 17:46:06 -0700 | [diff] [blame] | 705 | 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 Arcangeli | 21d0d44 | 2010-08-09 17:19:10 -0700 | [diff] [blame] | 712 | return -EFAULT; |
Kirill A. Shutemov | 27ba064 | 2015-02-10 14:09:59 -0800 | [diff] [blame] | 713 | } else if (page->mapping) { |
| 714 | if (!vma->vm_file || vma->vm_file->f_mapping != page->mapping) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | return -EFAULT; |
| 716 | } else |
| 717 | return -EFAULT; |
Michel Lespinasse | 86c2ad1 | 2012-10-08 16:31:42 -0700 | [diff] [blame] | 718 | address = __vma_address(page, vma); |
| 719 | if (unlikely(address < vma->vm_start || address >= vma->vm_end)) |
| 720 | return -EFAULT; |
| 721 | return address; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
| 723 | |
Bob Liu | 6219049 | 2012-12-11 16:00:37 -0800 | [diff] [blame] | 724 | pmd_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 Dickins | f72e7dc | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 729 | pmd_t pmde; |
Bob Liu | 6219049 | 2012-12-11 16:00:37 -0800 | [diff] [blame] | 730 | |
| 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 Dickins | f72e7dc | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 740 | /* |
Aneesh Kumar K.V | 8809aa2 | 2015-06-24 16:57:44 -0700 | [diff] [blame] | 741 | * Some THP functions use the sequence pmdp_huge_clear_flush(), set_pmd_at() |
Hugh Dickins | f72e7dc | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 742 | * 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 Borntraeger | e37c698 | 2014-12-07 21:41:33 +0100 | [diff] [blame] | 745 | pmde = *pmd; |
| 746 | barrier(); |
Hugh Dickins | f72e7dc | 2014-06-23 13:22:05 -0700 | [diff] [blame] | 747 | if (!pmd_present(pmde) || pmd_trans_huge(pmde)) |
Bob Liu | 6219049 | 2012-12-11 16:00:37 -0800 | [diff] [blame] | 748 | pmd = NULL; |
| 749 | out: |
| 750 | return pmd; |
| 751 | } |
| 752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | /* |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 754 | * Check that @page is mapped at @address into @mm. |
| 755 | * |
Nick Piggin | 479db0b | 2008-08-20 14:09:18 -0700 | [diff] [blame] | 756 | * 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 Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 760 | * On success returns with pte mapped and locked. |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 761 | */ |
Namhyung Kim | e9a81a8 | 2010-10-26 14:22:01 -0700 | [diff] [blame] | 762 | pte_t *__page_check_address(struct page *page, struct mm_struct *mm, |
Nick Piggin | 479db0b | 2008-08-20 14:09:18 -0700 | [diff] [blame] | 763 | unsigned long address, spinlock_t **ptlp, int sync) |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 764 | { |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 765 | pmd_t *pmd; |
| 766 | pte_t *pte; |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 767 | spinlock_t *ptl; |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 768 | |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 769 | if (unlikely(PageHuge(page))) { |
Jianguo Wu | 98398c3 | 2013-12-18 17:08:59 -0800 | [diff] [blame] | 770 | /* when pud is not present, pte will be NULL */ |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 771 | pte = huge_pte_offset(mm, address); |
Jianguo Wu | 98398c3 | 2013-12-18 17:08:59 -0800 | [diff] [blame] | 772 | if (!pte) |
| 773 | return NULL; |
| 774 | |
Kirill A. Shutemov | cb900f4 | 2013-11-14 14:31:02 -0800 | [diff] [blame] | 775 | ptl = huge_pte_lockptr(page_hstate(page), mm, pte); |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 776 | goto check; |
| 777 | } |
| 778 | |
Bob Liu | 6219049 | 2012-12-11 16:00:37 -0800 | [diff] [blame] | 779 | pmd = mm_find_pmd(mm, address); |
| 780 | if (!pmd) |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 781 | return NULL; |
| 782 | |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 783 | pte = pte_offset_map(pmd, address); |
| 784 | /* Make a quick check before getting the lock */ |
Nick Piggin | 479db0b | 2008-08-20 14:09:18 -0700 | [diff] [blame] | 785 | if (!sync && !pte_present(*pte)) { |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 786 | pte_unmap(pte); |
| 787 | return NULL; |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 788 | } |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 789 | |
Hugh Dickins | 4c21e2f | 2005-10-29 18:16:40 -0700 | [diff] [blame] | 790 | ptl = pte_lockptr(mm, pmd); |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 791 | check: |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 792 | 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 Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 799 | } |
| 800 | |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 801 | /** |
| 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 Kleen | 6a46079 | 2009-09-16 11:50:15 +0200 | [diff] [blame] | 810 | int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma) |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 811 | { |
| 812 | unsigned long address; |
| 813 | pte_t *pte; |
| 814 | spinlock_t *ptl; |
| 815 | |
Michel Lespinasse | 86c2ad1 | 2012-10-08 16:31:42 -0700 | [diff] [blame] | 816 | address = __vma_address(page, vma); |
| 817 | if (unlikely(address < vma->vm_start || address >= vma->vm_end)) |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 818 | 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 Davydov | 8749cfe | 2016-01-15 16:54:45 -0800 | [diff] [blame] | 827 | #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 | */ |
| 835 | bool 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; |
| 878 | unlock_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 | } |
| 888 | map_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); |
| 896 | check_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 | } |
| 909 | found: |
| 910 | *ptep = pte; |
| 911 | *pmdp = pmd; |
| 912 | *ptlp = ptl; |
| 913 | return true; |
| 914 | } |
| 915 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ |
| 916 | |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 917 | struct page_referenced_arg { |
| 918 | int mapcount; |
| 919 | int referenced; |
| 920 | unsigned long vm_flags; |
| 921 | struct mem_cgroup *memcg; |
| 922 | }; |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 923 | /* |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 924 | * arg: page_referenced_arg will be passed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | */ |
Kirill A. Shutemov | ac76950 | 2014-06-04 16:08:17 -0700 | [diff] [blame] | 926 | static int page_referenced_one(struct page *page, struct vm_area_struct *vma, |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 927 | unsigned long address, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
| 929 | struct mm_struct *mm = vma->vm_mm; |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 930 | struct page_referenced_arg *pra = arg; |
Kirill A. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 931 | pmd_t *pmd; |
| 932 | pte_t *pte; |
Vladimir Davydov | 8749cfe | 2016-01-15 16:54:45 -0800 | [diff] [blame] | 933 | spinlock_t *ptl; |
| 934 | int referenced = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | |
Vladimir Davydov | 8749cfe | 2016-01-15 16:54:45 -0800 | [diff] [blame] | 936 | if (!page_check_address_transhuge(page, mm, address, &pmd, &pte, &ptl)) |
Kirill A. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 937 | return SWAP_AGAIN; |
Kirill A. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 938 | |
| 939 | if (vma->vm_flags & VM_LOCKED) { |
Vladimir Davydov | 8749cfe | 2016-01-15 16:54:45 -0800 | [diff] [blame] | 940 | if (pte) |
| 941 | pte_unmap(pte); |
| 942 | spin_unlock(ptl); |
Kirill A. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 943 | pra->vm_flags |= VM_LOCKED; |
| 944 | return SWAP_FAIL; /* To break the loop */ |
| 945 | } |
| 946 | |
Vladimir Davydov | 8749cfe | 2016-01-15 16:54:45 -0800 | [diff] [blame] | 947 | 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. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 962 | referenced++; |
Vladimir Davydov | 8749cfe | 2016-01-15 16:54:45 -0800 | [diff] [blame] | 963 | } else { |
| 964 | /* unexpected pmd-mapped page? */ |
| 965 | WARN_ON_ONCE(1); |
Kirill A. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 966 | } |
Vladimir Davydov | 8749cfe | 2016-01-15 16:54:45 -0800 | [diff] [blame] | 967 | spin_unlock(ptl); |
Kirill A. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 968 | |
Vladimir Davydov | 33c3fc7 | 2015-09-09 15:35:45 -0700 | [diff] [blame] | 969 | if (referenced) |
| 970 | clear_page_idle(page); |
| 971 | if (test_and_clear_page_young(page)) |
| 972 | referenced++; |
| 973 | |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 974 | if (referenced) { |
| 975 | pra->referenced++; |
| 976 | pra->vm_flags |= vma->vm_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | } |
Oleg Nesterov | 34bbd70 | 2007-02-28 20:13:49 -0800 | [diff] [blame] | 978 | |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 979 | pra->mapcount--; |
| 980 | if (!pra->mapcount) |
| 981 | return SWAP_SUCCESS; /* To break the loop */ |
| 982 | |
| 983 | return SWAP_AGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | } |
| 985 | |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 986 | static bool invalid_page_referenced_vma(struct vm_area_struct *vma, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | { |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 988 | struct page_referenced_arg *pra = arg; |
| 989 | struct mem_cgroup *memcg = pra->memcg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 991 | if (!mm_match_cgroup(vma->vm_mm, memcg)) |
| 992 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 994 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | } |
| 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 Weiner | 72835c8 | 2012-01-12 17:18:32 -0800 | [diff] [blame] | 1001 | * @memcg: target memory cgroup |
Wu Fengguang | 6fe6b7e | 2009-06-16 15:33:05 -0700 | [diff] [blame] | 1002 | * @vm_flags: collect encountered vma->vm_flags who actually referenced the page |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | * |
| 1004 | * Quick test_and_clear_referenced for all mappings to a page, |
| 1005 | * returns the number of ptes which referenced the page. |
| 1006 | */ |
Wu Fengguang | 6fe6b7e | 2009-06-16 15:33:05 -0700 | [diff] [blame] | 1007 | int page_referenced(struct page *page, |
| 1008 | int is_locked, |
Johannes Weiner | 72835c8 | 2012-01-12 17:18:32 -0800 | [diff] [blame] | 1009 | struct mem_cgroup *memcg, |
Wu Fengguang | 6fe6b7e | 2009-06-16 15:33:05 -0700 | [diff] [blame] | 1010 | unsigned long *vm_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | { |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1012 | int ret; |
Hugh Dickins | 5ad6468 | 2009-12-14 17:59:24 -0800 | [diff] [blame] | 1013 | int we_locked = 0; |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1014 | struct page_referenced_arg pra = { |
Kirill A. Shutemov | b20ce5e | 2016-01-15 16:54:37 -0800 | [diff] [blame] | 1015 | .mapcount = total_mapcount(page), |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1016 | .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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | |
Wu Fengguang | 6fe6b7e | 2009-06-16 15:33:05 -0700 | [diff] [blame] | 1024 | *vm_flags = 0; |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1025 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | } |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1036 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | } |
| 1054 | |
Hugh Dickins | 1cb1729 | 2009-12-14 17:59:01 -0800 | [diff] [blame] | 1055 | static int page_mkclean_one(struct page *page, struct vm_area_struct *vma, |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1056 | unsigned long address, void *arg) |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1057 | { |
| 1058 | struct mm_struct *mm = vma->vm_mm; |
Peter Zijlstra | c2fda5f | 2006-12-22 14:25:52 +0100 | [diff] [blame] | 1059 | pte_t *pte; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1060 | spinlock_t *ptl; |
| 1061 | int ret = 0; |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1062 | int *cleaned = arg; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1063 | |
Nick Piggin | 479db0b | 2008-08-20 14:09:18 -0700 | [diff] [blame] | 1064 | pte = page_check_address(page, mm, address, &ptl, 1); |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1065 | if (!pte) |
| 1066 | goto out; |
| 1067 | |
Peter Zijlstra | c2fda5f | 2006-12-22 14:25:52 +0100 | [diff] [blame] | 1068 | if (pte_dirty(*pte) || pte_write(*pte)) { |
| 1069 | pte_t entry; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1070 | |
Peter Zijlstra | c2fda5f | 2006-12-22 14:25:52 +0100 | [diff] [blame] | 1071 | flush_cache_page(vma, address, pte_pfn(*pte)); |
Sagi Grimberg | 2ec74c3 | 2012-10-08 16:33:33 -0700 | [diff] [blame] | 1072 | entry = ptep_clear_flush(vma, address, pte); |
Peter Zijlstra | c2fda5f | 2006-12-22 14:25:52 +0100 | [diff] [blame] | 1073 | entry = pte_wrprotect(entry); |
| 1074 | entry = pte_mkclean(entry); |
Al Viro | d6e88e6 | 2006-12-29 16:48:35 -0800 | [diff] [blame] | 1075 | set_pte_at(mm, address, pte, entry); |
Peter Zijlstra | c2fda5f | 2006-12-22 14:25:52 +0100 | [diff] [blame] | 1076 | ret = 1; |
| 1077 | } |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1078 | |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1079 | pte_unmap_unlock(pte, ptl); |
Sagi Grimberg | 2ec74c3 | 2012-10-08 16:33:33 -0700 | [diff] [blame] | 1080 | |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1081 | if (ret) { |
Sagi Grimberg | 2ec74c3 | 2012-10-08 16:33:33 -0700 | [diff] [blame] | 1082 | mmu_notifier_invalidate_page(mm, address); |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1083 | (*cleaned)++; |
| 1084 | } |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1085 | out: |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1086 | return SWAP_AGAIN; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1089 | static bool invalid_mkclean_vma(struct vm_area_struct *vma, void *arg) |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1090 | { |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1091 | if (vma->vm_flags & VM_SHARED) |
Fengguang Wu | 871beb8 | 2014-01-23 15:53:41 -0800 | [diff] [blame] | 1092 | return false; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1093 | |
Fengguang Wu | 871beb8 | 2014-01-23 15:53:41 -0800 | [diff] [blame] | 1094 | return true; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1095 | } |
| 1096 | |
| 1097 | int page_mkclean(struct page *page) |
| 1098 | { |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1099 | 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 Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1106 | |
| 1107 | BUG_ON(!PageLocked(page)); |
| 1108 | |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1109 | if (!page_mapped(page)) |
| 1110 | return 0; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1111 | |
Joonsoo Kim | 9853a40 | 2014-01-21 15:49:55 -0800 | [diff] [blame] | 1112 | mapping = page_mapping(page); |
| 1113 | if (!mapping) |
| 1114 | return 0; |
| 1115 | |
| 1116 | rmap_walk(page, &rwc); |
| 1117 | |
| 1118 | return cleaned; |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1119 | } |
Jaya Kumar | 60b59be | 2007-05-08 00:37:37 -0700 | [diff] [blame] | 1120 | EXPORT_SYMBOL_GPL(page_mkclean); |
Peter Zijlstra | d08b385 | 2006-09-25 23:30:57 -0700 | [diff] [blame] | 1121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1122 | /** |
Rik van Riel | c44b674 | 2010-03-05 13:42:09 -0800 | [diff] [blame] | 1123 | * 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 Riel | c44b674 | 2010-03-05 13:42:09 -0800 | [diff] [blame] | 1126 | * |
| 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 Dickins | 5a49973 | 2016-07-14 12:07:38 -0700 | [diff] [blame] | 1132 | void page_move_anon_rmap(struct page *page, struct vm_area_struct *vma) |
Rik van Riel | c44b674 | 2010-03-05 13:42:09 -0800 | [diff] [blame] | 1133 | { |
| 1134 | struct anon_vma *anon_vma = vma->anon_vma; |
| 1135 | |
Hugh Dickins | 5a49973 | 2016-07-14 12:07:38 -0700 | [diff] [blame] | 1136 | page = compound_head(page); |
| 1137 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 1138 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
Sasha Levin | 81d1b09 | 2014-10-09 15:28:10 -0700 | [diff] [blame] | 1139 | VM_BUG_ON_VMA(!anon_vma, vma); |
Rik van Riel | c44b674 | 2010-03-05 13:42:09 -0800 | [diff] [blame] | 1140 | |
| 1141 | anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON; |
Vladimir Davydov | 414e2fb | 2015-06-24 16:56:56 -0700 | [diff] [blame] | 1142 | /* |
| 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 Riel | c44b674 | 2010-03-05 13:42:09 -0800 | [diff] [blame] | 1148 | } |
| 1149 | |
| 1150 | /** |
Andi Kleen | 4e1c197 | 2010-09-22 12:43:56 +0200 | [diff] [blame] | 1151 | * __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 Riel | e8a03fe | 2010-04-14 17:59:28 -0400 | [diff] [blame] | 1155 | * @exclusive: the page is exclusively owned by the current process |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1156 | */ |
| 1157 | static void __page_set_anon_rmap(struct page *page, |
Rik van Riel | e8a03fe | 2010-04-14 17:59:28 -0400 | [diff] [blame] | 1158 | struct vm_area_struct *vma, unsigned long address, int exclusive) |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1159 | { |
Rik van Riel | e8a03fe | 2010-04-14 17:59:28 -0400 | [diff] [blame] | 1160 | struct anon_vma *anon_vma = vma->anon_vma; |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1161 | |
Rik van Riel | e8a03fe | 2010-04-14 17:59:28 -0400 | [diff] [blame] | 1162 | BUG_ON(!anon_vma); |
Linus Torvalds | ea90002 | 2010-04-12 12:44:29 -0700 | [diff] [blame] | 1163 | |
Andi Kleen | 4e1c197 | 2010-09-22 12:43:56 +0200 | [diff] [blame] | 1164 | if (PageAnon(page)) |
| 1165 | return; |
| 1166 | |
Linus Torvalds | ea90002 | 2010-04-12 12:44:29 -0700 | [diff] [blame] | 1167 | /* |
Rik van Riel | e8a03fe | 2010-04-14 17:59:28 -0400 | [diff] [blame] | 1168 | * 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 Torvalds | ea90002 | 2010-04-12 12:44:29 -0700 | [diff] [blame] | 1171 | */ |
Andi Kleen | 4e1c197 | 2010-09-22 12:43:56 +0200 | [diff] [blame] | 1172 | if (!exclusive) |
Andrea Arcangeli | 288468c | 2010-08-09 17:19:09 -0700 | [diff] [blame] | 1173 | anon_vma = anon_vma->root; |
Linus Torvalds | ea90002 | 2010-04-12 12:44:29 -0700 | [diff] [blame] | 1174 | |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1175 | anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON; |
| 1176 | page->mapping = (struct address_space *) anon_vma; |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1177 | page->index = linear_page_index(vma, address); |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1178 | } |
| 1179 | |
| 1180 | /** |
Randy Dunlap | 43d8eac | 2008-03-19 17:00:43 -0700 | [diff] [blame] | 1181 | * __page_check_anon_rmap - sanity check anonymous rmap addition |
Nick Piggin | c97a9e1 | 2007-05-16 22:11:21 -0700 | [diff] [blame] | 1182 | * @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 | */ |
| 1186 | static 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 Arcangeli | 44ab57a | 2010-08-09 17:19:10 -0700 | [diff] [blame] | 1202 | BUG_ON(page_anon_vma(page)->root != vma->anon_vma->root); |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1203 | BUG_ON(page_to_pgoff(page) != linear_page_index(vma, address)); |
Nick Piggin | c97a9e1 | 2007-05-16 22:11:21 -0700 | [diff] [blame] | 1204 | #endif |
| 1205 | } |
| 1206 | |
| 1207 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | * 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. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1212 | * @compound: charge the page as compound or small page |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | * |
Hugh Dickins | 5ad6468 | 2009-12-14 17:59:24 -0800 | [diff] [blame] | 1214 | * The caller needs to hold the pte lock, and the page must be locked in |
Hugh Dickins | 80e14822 | 2009-12-14 17:59:29 -0800 | [diff] [blame] | 1215 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | */ |
| 1219 | void page_add_anon_rmap(struct page *page, |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1220 | struct vm_area_struct *vma, unsigned long address, bool compound) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | { |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1222 | do_page_add_anon_rmap(page, vma, address, compound ? RMAP_COMPOUND : 0); |
Rik van Riel | ad8c2ee | 2010-08-09 17:19:48 -0700 | [diff] [blame] | 1223 | } |
| 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 | */ |
| 1230 | void do_page_add_anon_rmap(struct page *page, |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1231 | struct vm_area_struct *vma, unsigned long address, int flags) |
Rik van Riel | ad8c2ee | 2010-08-09 17:19:48 -0700 | [diff] [blame] | 1232 | { |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1233 | bool compound = flags & RMAP_COMPOUND; |
| 1234 | bool first; |
| 1235 | |
Kirill A. Shutemov | e9b61f1 | 2016-01-15 16:54:10 -0800 | [diff] [blame] | 1236 | if (compound) { |
| 1237 | atomic_t *mapcount; |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1238 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
Kirill A. Shutemov | e9b61f1 | 2016-01-15 16:54:10 -0800 | [diff] [blame] | 1239 | VM_BUG_ON_PAGE(!PageTransHuge(page), page); |
| 1240 | mapcount = compound_mapcount_ptr(page); |
| 1241 | first = atomic_inc_and_test(mapcount); |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1242 | } else { |
| 1243 | first = atomic_inc_and_test(&page->_mapcount); |
| 1244 | } |
| 1245 | |
Andrea Arcangeli | 7913417 | 2011-01-13 15:46:58 -0800 | [diff] [blame] | 1246 | if (first) { |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1247 | int nr = compound ? hpage_nr_pages(page) : 1; |
Jianyu Zhan | bea04b0 | 2014-06-04 16:09:51 -0700 | [diff] [blame] | 1248 | /* |
| 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. Shutemov | 65c4537 | 2016-07-26 15:26:10 -0700 | [diff] [blame] | 1254 | if (compound) |
Mel Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 1255 | __inc_node_page_state(page, NR_ANON_THPS); |
Mel Gorman | 4b9d0fa | 2016-07-28 15:46:17 -0700 | [diff] [blame] | 1256 | __mod_node_page_state(page_pgdat(page), NR_ANON_MAPPED, nr); |
Andrea Arcangeli | 7913417 | 2011-01-13 15:46:58 -0800 | [diff] [blame] | 1257 | } |
Hugh Dickins | 5ad6468 | 2009-12-14 17:59:24 -0800 | [diff] [blame] | 1258 | if (unlikely(PageKsm(page))) |
| 1259 | return; |
| 1260 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 1261 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1262 | |
Hugh Dickins | 5dbe0af | 2011-05-28 13:17:04 -0700 | [diff] [blame] | 1263 | /* address might be in next vma when migration races vma_adjust */ |
Hugh Dickins | 5ad6468 | 2009-12-14 17:59:24 -0800 | [diff] [blame] | 1264 | if (first) |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1265 | __page_set_anon_rmap(page, vma, address, |
| 1266 | flags & RMAP_EXCLUSIVE); |
KAMEZAWA Hiroyuki | 69029cd | 2008-07-25 01:47:14 -0700 | [diff] [blame] | 1267 | else |
Nick Piggin | c97a9e1 | 2007-05-16 22:11:21 -0700 | [diff] [blame] | 1268 | __page_check_anon_rmap(page, vma, address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | } |
| 1270 | |
Randy Dunlap | 43d8eac | 2008-03-19 17:00:43 -0700 | [diff] [blame] | 1271 | /** |
Laurent Dufour | 2ca8472 | 2018-04-17 16:33:22 +0200 | [diff] [blame] | 1272 | * __page_add_new_anon_rmap - add pte mapping to a new anonymous page |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1273 | * @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. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1276 | * @compound: charge the page as compound or small page |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1277 | * |
| 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 Piggin | c97a9e1 | 2007-05-16 22:11:21 -0700 | [diff] [blame] | 1280 | * Page does not have to be locked. |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1281 | */ |
Laurent Dufour | 2ca8472 | 2018-04-17 16:33:22 +0200 | [diff] [blame] | 1282 | void __page_add_new_anon_rmap(struct page *page, |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1283 | struct vm_area_struct *vma, unsigned long address, bool compound) |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1284 | { |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1285 | int nr = compound ? hpage_nr_pages(page) : 1; |
| 1286 | |
Hugh Dickins | fa9949d | 2016-05-19 17:12:41 -0700 | [diff] [blame] | 1287 | __SetPageSwapBacked(page); |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1288 | if (compound) { |
| 1289 | VM_BUG_ON_PAGE(!PageTransHuge(page), page); |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1290 | /* increment count (starts at -1) */ |
| 1291 | atomic_set(compound_mapcount_ptr(page), 0); |
Mel Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 1292 | __inc_node_page_state(page, NR_ANON_THPS); |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1293 | } 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. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1298 | } |
Mel Gorman | 4b9d0fa | 2016-07-28 15:46:17 -0700 | [diff] [blame] | 1299 | __mod_node_page_state(page_pgdat(page), NR_ANON_MAPPED, nr); |
Rik van Riel | e8a03fe | 2010-04-14 17:59:28 -0400 | [diff] [blame] | 1300 | __page_set_anon_rmap(page, vma, address, 1); |
Nick Piggin | 9617d95 | 2006-01-06 00:11:12 -0800 | [diff] [blame] | 1301 | } |
| 1302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | /** |
| 1304 | * page_add_file_rmap - add pte mapping to a file page |
| 1305 | * @page: the page to add the mapping to |
| 1306 | * |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 1307 | * The caller needs to hold the pte lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | */ |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1309 | void page_add_file_rmap(struct page *page, bool compound) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | { |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1311 | int i, nr = 1; |
| 1312 | |
| 1313 | VM_BUG_ON_PAGE(compound && !PageTransHuge(page), page); |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 1314 | lock_page_memcg(page); |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1315 | 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. Shutemov | 65c4537 | 2016-07-26 15:26:10 -0700 | [diff] [blame] | 1322 | VM_BUG_ON_PAGE(!PageSwapBacked(page), page); |
Mel Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 1323 | __inc_node_page_state(page, NR_SHMEM_PMDMAPPED); |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1324 | } else { |
Kirill A. Shutemov | c8efc39 | 2016-08-10 16:27:52 -0700 | [diff] [blame] | 1325 | if (PageTransCompound(page) && page_mapping(page)) { |
| 1326 | VM_WARN_ON_ONCE(!PageLocked(page)); |
| 1327 | |
Kirill A. Shutemov | 9a73f61 | 2016-07-26 15:25:53 -0700 | [diff] [blame] | 1328 | SetPageDoubleMap(compound_head(page)); |
| 1329 | if (PageMlocked(page)) |
| 1330 | clear_page_mlock(compound_head(page)); |
| 1331 | } |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1332 | if (!atomic_inc_and_test(&page->_mapcount)) |
| 1333 | goto out; |
Balbir Singh | d69b042 | 2009-06-17 16:26:34 -0700 | [diff] [blame] | 1334 | } |
Mel Gorman | 50658e2 | 2016-07-28 15:46:14 -0700 | [diff] [blame] | 1335 | __mod_node_page_state(page_pgdat(page), NR_FILE_MAPPED, nr); |
Johannes Weiner | b570792 | 2017-03-31 15:11:50 -0700 | [diff] [blame] | 1336 | mem_cgroup_update_page_stat(page, MEM_CGROUP_STAT_FILE_MAPPED, nr); |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1337 | out: |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 1338 | unlock_page_memcg(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | } |
| 1340 | |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1341 | static void page_remove_file_rmap(struct page *page, bool compound) |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1342 | { |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1343 | int i, nr = 1; |
| 1344 | |
Steve Capper | 57dea93 | 2016-08-10 16:27:55 -0700 | [diff] [blame] | 1345 | VM_BUG_ON_PAGE(compound && !PageHead(page), page); |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 1346 | lock_page_memcg(page); |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1347 | |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1348 | /* 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 Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1355 | /* page still mapped by someone else? */ |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1356 | 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. Shutemov | 65c4537 | 2016-07-26 15:26:10 -0700 | [diff] [blame] | 1363 | VM_BUG_ON_PAGE(!PageSwapBacked(page), page); |
Mel Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 1364 | __dec_node_page_state(page, NR_SHMEM_PMDMAPPED); |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1365 | } else { |
| 1366 | if (!atomic_add_negative(-1, &page->_mapcount)) |
| 1367 | goto out; |
| 1368 | } |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1369 | |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1370 | /* |
Mel Gorman | 50658e2 | 2016-07-28 15:46:14 -0700 | [diff] [blame] | 1371 | * We use the irq-unsafe __{inc|mod}_zone_page_state because |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1372 | * these counters are not modified in interrupt context, and |
| 1373 | * pte lock(a spinlock) is held, which implies preemption disabled. |
| 1374 | */ |
Mel Gorman | 50658e2 | 2016-07-28 15:46:14 -0700 | [diff] [blame] | 1375 | __mod_node_page_state(page_pgdat(page), NR_FILE_MAPPED, -nr); |
Johannes Weiner | b570792 | 2017-03-31 15:11:50 -0700 | [diff] [blame] | 1376 | mem_cgroup_update_page_stat(page, MEM_CGROUP_STAT_FILE_MAPPED, -nr); |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1377 | |
| 1378 | if (unlikely(PageMlocked(page))) |
| 1379 | clear_page_mlock(page); |
| 1380 | out: |
Johannes Weiner | 62cccb8 | 2016-03-15 14:57:22 -0700 | [diff] [blame] | 1381 | unlock_page_memcg(page); |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1384 | static 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 Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 1398 | __dec_node_page_state(page, NR_ANON_THPS); |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1399 | |
| 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. Shutemov | e90309c | 2016-01-15 16:54:33 -0800 | [diff] [blame] | 1413 | if (unlikely(PageMlocked(page))) |
| 1414 | clear_page_mlock(page); |
| 1415 | |
Kirill A. Shutemov | 9a98225 | 2016-01-15 16:54:17 -0800 | [diff] [blame] | 1416 | if (nr) { |
Mel Gorman | 4b9d0fa | 2016-07-28 15:46:17 -0700 | [diff] [blame] | 1417 | __mod_node_page_state(page_pgdat(page), NR_ANON_MAPPED, -nr); |
Kirill A. Shutemov | 9a98225 | 2016-01-15 16:54:17 -0800 | [diff] [blame] | 1418 | deferred_split_huge_page(page); |
| 1419 | } |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1420 | } |
| 1421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1422 | /** |
| 1423 | * page_remove_rmap - take down pte mapping from a page |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1424 | * @page: page to remove mapping from |
| 1425 | * @compound: uncharge the page as compound or small page |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | * |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 1427 | * The caller needs to hold the pte lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | */ |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1429 | void page_remove_rmap(struct page *page, bool compound) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | { |
Kirill A. Shutemov | dd78fed | 2016-07-26 15:25:26 -0700 | [diff] [blame] | 1431 | if (!PageAnon(page)) |
| 1432 | return page_remove_file_rmap(page, compound); |
KAMEZAWA Hiroyuki | 89c06bd | 2012-03-21 16:34:25 -0700 | [diff] [blame] | 1433 | |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 1434 | if (compound) |
| 1435 | return page_remove_anon_compound_rmap(page); |
| 1436 | |
KOSAKI Motohiro | b904dcf | 2009-09-21 17:01:28 -0700 | [diff] [blame] | 1437 | /* page still mapped by someone else? */ |
| 1438 | if (!atomic_add_negative(-1, &page->_mapcount)) |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1439 | return; |
| 1440 | |
KOSAKI Motohiro | b904dcf | 2009-09-21 17:01:28 -0700 | [diff] [blame] | 1441 | /* |
Jianyu Zhan | bea04b0 | 2014-06-04 16:09:51 -0700 | [diff] [blame] | 1442 | * We use the irq-unsafe __{inc|mod}_zone_page_stat because |
| 1443 | * these counters are not modified in interrupt context, and |
Jianyu Zhan | bea04b0 | 2014-06-04 16:09:51 -0700 | [diff] [blame] | 1444 | * pte lock(a spinlock) is held, which implies preemption disabled. |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 1445 | */ |
Mel Gorman | 4b9d0fa | 2016-07-28 15:46:17 -0700 | [diff] [blame] | 1446 | __dec_node_page_state(page, NR_ANON_MAPPED); |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1447 | |
Hugh Dickins | e6c509f | 2012-10-08 16:33:19 -0700 | [diff] [blame] | 1448 | if (unlikely(PageMlocked(page))) |
| 1449 | clear_page_mlock(page); |
Johannes Weiner | 8186eb6 | 2014-10-29 14:50:51 -0700 | [diff] [blame] | 1450 | |
Kirill A. Shutemov | 9a98225 | 2016-01-15 16:54:17 -0800 | [diff] [blame] | 1451 | if (PageTransCompound(page)) |
| 1452 | deferred_split_huge_page(compound_head(page)); |
| 1453 | |
KOSAKI Motohiro | b904dcf | 2009-09-21 17:01:28 -0700 | [diff] [blame] | 1454 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | } |
| 1464 | |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1465 | struct rmap_private { |
| 1466 | enum ttu_flags flags; |
| 1467 | int lazyfreed; |
| 1468 | }; |
| 1469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | /* |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1471 | * @arg: enum ttu_flags will be passed to this argument |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | */ |
Kirill A. Shutemov | ac76950 | 2014-06-04 16:08:17 -0700 | [diff] [blame] | 1473 | static int try_to_unmap_one(struct page *page, struct vm_area_struct *vma, |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1474 | unsigned long address, void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1475 | { |
| 1476 | struct mm_struct *mm = vma->vm_mm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1477 | pte_t *pte; |
| 1478 | pte_t pteval; |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 1479 | spinlock_t *ptl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | int ret = SWAP_AGAIN; |
Mike Kravetz | 9c34ad0 | 2018-10-05 15:51:29 -0700 | [diff] [blame] | 1481 | unsigned long sh_address; |
| 1482 | bool pmd_sharing_possible = false; |
| 1483 | unsigned long spmd_start, spmd_end; |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1484 | struct rmap_private *rp = arg; |
| 1485 | enum ttu_flags flags = rp->flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | |
Hugh Dickins | b87537d9e | 2015-11-05 18:49:33 -0800 | [diff] [blame] | 1487 | /* 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. Shutemov | fec89c1 | 2016-03-17 14:20:10 -0700 | [diff] [blame] | 1491 | 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 Kravetz | 9c34ad0 | 2018-10-05 15:51:29 -0700 | [diff] [blame] | 1499 | /* |
| 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 Horiguchi | 55bda43 | 2016-07-14 12:07:35 -0700 | [diff] [blame] | 1525 | pte = page_check_address(page, mm, address, &ptl, |
| 1526 | PageTransCompound(page)); |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 1527 | if (!pte) |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 1528 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1529 | |
| 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 Kleen | 14fa31b | 2009-09-16 11:50:10 +0200 | [diff] [blame] | 1535 | if (!(flags & TTU_IGNORE_MLOCK)) { |
Hugh Dickins | b87537d9e | 2015-11-05 18:49:33 -0800 | [diff] [blame] | 1536 | if (vma->vm_flags & VM_LOCKED) { |
Kirill A. Shutemov | 9a73f61 | 2016-07-26 15:25:53 -0700 | [diff] [blame] | 1537 | /* 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 Dickins | b87537d9e | 2015-11-05 18:49:33 -0800 | [diff] [blame] | 1545 | ret = SWAP_MLOCK; |
| 1546 | goto out_unmap; |
| 1547 | } |
Konstantin Khlebnikov | daa5ba7 | 2014-06-04 16:10:52 -0700 | [diff] [blame] | 1548 | if (flags & TTU_MUNLOCK) |
Hugh Dickins | 53f79ac | 2009-12-14 17:58:58 -0800 | [diff] [blame] | 1549 | goto out_unmap; |
Andi Kleen | 14fa31b | 2009-09-16 11:50:10 +0200 | [diff] [blame] | 1550 | } |
| 1551 | if (!(flags & TTU_IGNORE_ACCESS)) { |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 1552 | if (ptep_clear_flush_young_notify(vma, address, pte)) { |
| 1553 | ret = SWAP_FAIL; |
| 1554 | goto out_unmap; |
| 1555 | } |
| 1556 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | |
Mike Kravetz | 9c34ad0 | 2018-10-05 15:51:29 -0700 | [diff] [blame] | 1558 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | /* Nuke the page table entry. */ |
| 1583 | flush_cache_page(vma, address, page_to_pfn(page)); |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 1584 | 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 Gorman | d950c94 | 2015-09-04 15:47:35 -0700 | [diff] [blame] | 1594 | set_tlb_ubc_flush_pending(mm, page, pte_dirty(pteval)); |
Mel Gorman | 72b252a | 2015-09-04 15:47:32 -0700 | [diff] [blame] | 1595 | } else { |
| 1596 | pteval = ptep_clear_flush(vma, address, pte); |
| 1597 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | |
| 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 Dickins | 365e9c87 | 2005-10-29 18:16:18 -0700 | [diff] [blame] | 1603 | /* Update high watermark before we lower rss */ |
| 1604 | update_hiwater_rss(mm); |
| 1605 | |
Andi Kleen | 888b9f7 | 2009-09-16 11:50:11 +0200 | [diff] [blame] | 1606 | if (PageHWPoison(page) && !(flags & TTU_IGNORE_HWPOISON)) { |
Naoya Horiguchi | 5d317b2 | 2015-11-05 18:47:14 -0800 | [diff] [blame] | 1607 | if (PageHuge(page)) { |
| 1608 | hugetlb_count_sub(1 << compound_order(page), mm); |
| 1609 | } else { |
Jerome Marchand | eca56ff | 2016-01-14 15:19:26 -0800 | [diff] [blame] | 1610 | dec_mm_counter(mm, mm_counter(page)); |
Naoya Horiguchi | 5f24ae5 | 2012-12-12 13:52:30 -0800 | [diff] [blame] | 1611 | } |
Andi Kleen | 888b9f7 | 2009-09-16 11:50:11 +0200 | [diff] [blame] | 1612 | set_pte_at(mm, address, pte, |
Naoya Horiguchi | 5f24ae5 | 2012-12-12 13:52:30 -0800 | [diff] [blame] | 1613 | swp_entry_to_pte(make_hwpoison_entry(page))); |
Konstantin Weitz | 4596172 | 2013-04-17 13:59:32 +0200 | [diff] [blame] | 1614 | } 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 Marchand | eca56ff | 2016-01-14 15:19:26 -0800 | [diff] [blame] | 1620 | dec_mm_counter(mm, mm_counter(page)); |
Hugh Dickins | 470f119f | 2015-11-05 18:49:59 -0800 | [diff] [blame] | 1621 | } else if (IS_ENABLED(CONFIG_MIGRATION) && (flags & TTU_MIGRATION)) { |
| 1622 | swp_entry_t entry; |
Cyrill Gorcunov | 179ef71 | 2013-08-13 16:00:49 -0700 | [diff] [blame] | 1623 | pte_t swp_pte; |
Hugh Dickins | 470f119f | 2015-11-05 18:49:59 -0800 | [diff] [blame] | 1624 | /* |
| 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 Gorcunov | 179ef71 | 2013-08-13 16:00:49 -0700 | [diff] [blame] | 1630 | 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 Dickins | 470f119f | 2015-11-05 18:49:59 -0800 | [diff] [blame] | 1634 | } 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 Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1642 | |
Mauricio Faria de Oliveira | be8173b | 2022-04-07 16:14:32 -0300 | [diff] [blame] | 1643 | 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 Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1673 | } |
| 1674 | |
Hugh Dickins | 470f119f | 2015-11-05 18:49:59 -0800 | [diff] [blame] | 1675 | 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 Lameter | 04e62a2 | 2006-06-23 02:03:38 -0700 | [diff] [blame] | 1692 | } else |
Jerome Marchand | eca56ff | 2016-01-14 15:19:26 -0800 | [diff] [blame] | 1693 | dec_mm_counter(mm, mm_counter_file(page)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1694 | |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1695 | discard: |
Kirill A. Shutemov | d281ee6 | 2016-01-15 16:52:16 -0800 | [diff] [blame] | 1696 | page_remove_rmap(page, PageHuge(page)); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1697 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | |
| 1699 | out_unmap: |
Hugh Dickins | c071880 | 2005-10-29 18:16:31 -0700 | [diff] [blame] | 1700 | pte_unmap_unlock(pte, ptl); |
Hugh Dickins | b87537d9e | 2015-11-05 18:49:33 -0800 | [diff] [blame] | 1701 | if (ret != SWAP_FAIL && ret != SWAP_MLOCK && !(flags & TTU_MUNLOCK)) |
Sagi Grimberg | 2ec74c3 | 2012-10-08 16:33:33 -0700 | [diff] [blame] | 1702 | mmu_notifier_invalidate_page(mm, address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | out: |
Mike Kravetz | 9c34ad0 | 2018-10-05 15:51:29 -0700 | [diff] [blame] | 1704 | if (pmd_sharing_possible) |
| 1705 | mmu_notifier_invalidate_range_end(vma->vm_mm, |
| 1706 | spmd_start, spmd_end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | return ret; |
| 1708 | } |
| 1709 | |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 1710 | bool is_vma_temporary_stack(struct vm_area_struct *vma) |
Mel Gorman | a8bef8ff | 2010-05-24 14:32:24 -0700 | [diff] [blame] | 1711 | { |
| 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 Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1724 | static bool invalid_migration_vma(struct vm_area_struct *vma, void *arg) |
| 1725 | { |
| 1726 | return is_vma_temporary_stack(vma); |
| 1727 | } |
| 1728 | |
Kirill A. Shutemov | 2a52bcb | 2016-03-17 14:20:04 -0700 | [diff] [blame] | 1729 | static int page_mapcount_is_zero(struct page *page) |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1730 | { |
Kirill A. Shutemov | 2a52bcb | 2016-03-17 14:20:04 -0700 | [diff] [blame] | 1731 | return !page_mapcount(page); |
| 1732 | } |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | /** |
| 1735 | * try_to_unmap - try to remove all page table mappings to a page |
| 1736 | * @page: the page to get unmapped |
Andi Kleen | 14fa31b | 2009-09-16 11:50:10 +0200 | [diff] [blame] | 1737 | * @flags: action and flags |
Minchan Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1738 | * @vma : target vma for reclaim |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | * |
| 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 Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1742 | * If @vma is not NULL, this function try to remove @page from only @vma |
| 1743 | * without peeking all mapped vma for @page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | * 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 Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 1749 | * SWAP_MLOCK - page is mlocked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | */ |
Minchan Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1751 | int try_to_unmap(struct page *page, enum ttu_flags flags, |
| 1752 | struct vm_area_struct *vma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | { |
| 1754 | int ret; |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1755 | struct rmap_private rp = { |
| 1756 | .flags = flags, |
| 1757 | .lazyfreed = 0, |
| 1758 | }; |
| 1759 | |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1760 | struct rmap_walk_control rwc = { |
| 1761 | .rmap_one = try_to_unmap_one, |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1762 | .arg = &rp, |
Kirill A. Shutemov | 2a52bcb | 2016-03-17 14:20:04 -0700 | [diff] [blame] | 1763 | .done = page_mapcount_is_zero, |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1764 | .anon_lock = page_lock_anon_vma_read, |
Minchan Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1765 | .target_vma = vma, |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1766 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1768 | /* |
| 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 Khlebnikov | daa5ba7 | 2014-06-04 16:10:52 -0700 | [diff] [blame] | 1776 | if ((flags & TTU_MIGRATION) && !PageKsm(page) && PageAnon(page)) |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1777 | rwc.invalid_vma = invalid_migration_vma; |
| 1778 | |
Kirill A. Shutemov | 2a52bcb | 2016-03-17 14:20:04 -0700 | [diff] [blame] | 1779 | if (flags & TTU_RMAP_LOCKED) |
| 1780 | ret = rmap_walk_locked(page, &rwc); |
| 1781 | else |
| 1782 | ret = rmap_walk(page, &rwc); |
Joonsoo Kim | 5262950 | 2014-01-21 15:49:50 -0800 | [diff] [blame] | 1783 | |
Kirill A. Shutemov | 2a52bcb | 2016-03-17 14:20:04 -0700 | [diff] [blame] | 1784 | if (ret != SWAP_MLOCK && !page_mapcount(page)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | ret = SWAP_SUCCESS; |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1786 | if (rp.lazyfreed && !PageDirty(page)) |
| 1787 | ret = SWAP_LZFREE; |
| 1788 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | return ret; |
| 1790 | } |
Nikita Danilov | 81b4082 | 2005-05-01 08:58:36 -0700 | [diff] [blame] | 1791 | |
Kirill A. Shutemov | 2a52bcb | 2016-03-17 14:20:04 -0700 | [diff] [blame] | 1792 | static int page_not_mapped(struct page *page) |
| 1793 | { |
| 1794 | return !page_mapped(page); |
| 1795 | }; |
| 1796 | |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 1797 | /** |
| 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 Dickins | 53f79ac | 2009-12-14 17:58:58 -0800 | [diff] [blame] | 1807 | * SWAP_AGAIN - no vma is holding page mlocked, or, |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 1808 | * SWAP_AGAIN - page mapped in mlocked vma -- couldn't acquire mmap sem |
Hugh Dickins | 5ad6468 | 2009-12-14 17:59:24 -0800 | [diff] [blame] | 1809 | * SWAP_FAIL - page cannot be located at present |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 1810 | * SWAP_MLOCK - page is now mlocked. |
| 1811 | */ |
| 1812 | int try_to_munlock(struct page *page) |
| 1813 | { |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1814 | int ret; |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1815 | struct rmap_private rp = { |
| 1816 | .flags = TTU_MUNLOCK, |
| 1817 | .lazyfreed = 0, |
| 1818 | }; |
| 1819 | |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1820 | struct rmap_walk_control rwc = { |
| 1821 | .rmap_one = try_to_unmap_one, |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 1822 | .arg = &rp, |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1823 | .done = page_not_mapped, |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1824 | .anon_lock = page_lock_anon_vma_read, |
Minchan Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1825 | .target_vma = NULL, |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1826 | |
| 1827 | }; |
| 1828 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 1829 | VM_BUG_ON_PAGE(!PageLocked(page) || PageLRU(page), page); |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 1830 | |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1831 | ret = rmap_walk(page, &rwc); |
| 1832 | return ret; |
Nick Piggin | b291f00 | 2008-10-18 20:26:44 -0700 | [diff] [blame] | 1833 | } |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1834 | |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 1835 | void __put_anon_vma(struct anon_vma *anon_vma) |
Rik van Riel | 7654506 | 2010-08-09 17:18:41 -0700 | [diff] [blame] | 1836 | { |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 1837 | struct anon_vma *root = anon_vma->root; |
Rik van Riel | 7654506 | 2010-08-09 17:18:41 -0700 | [diff] [blame] | 1838 | |
Andrey Ryabinin | 624483f | 2014-06-06 19:09:30 +0400 | [diff] [blame] | 1839 | anon_vma_free(anon_vma); |
Peter Zijlstra | 01d8b20 | 2011-03-22 16:32:49 -0700 | [diff] [blame] | 1840 | if (root != anon_vma && atomic_dec_and_test(&root->refcount)) |
| 1841 | anon_vma_free(root); |
Rik van Riel | 7654506 | 2010-08-09 17:18:41 -0700 | [diff] [blame] | 1842 | } |
Rik van Riel | 7654506 | 2010-08-09 17:18:41 -0700 | [diff] [blame] | 1843 | |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1844 | static struct anon_vma *rmap_walk_anon_lock(struct page *page, |
| 1845 | struct rmap_walk_control *rwc) |
Joonsoo Kim | faecd8d | 2014-01-21 15:49:46 -0800 | [diff] [blame] | 1846 | { |
| 1847 | struct anon_vma *anon_vma; |
| 1848 | |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1849 | if (rwc->anon_lock) |
| 1850 | return rwc->anon_lock(page); |
| 1851 | |
Joonsoo Kim | faecd8d | 2014-01-21 15:49:46 -0800 | [diff] [blame] | 1852 | /* |
| 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 Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1866 | /* |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1867 | * 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 Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1879 | */ |
Kirill A. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1880 | static int rmap_walk_anon(struct page *page, struct rmap_walk_control *rwc, |
| 1881 | bool locked) |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1882 | { |
| 1883 | struct anon_vma *anon_vma; |
Davidlohr Bueso | b258d86 | 2014-12-12 16:55:04 -0800 | [diff] [blame] | 1884 | pgoff_t pgoff; |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 1885 | struct anon_vma_chain *avc; |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1886 | int ret = SWAP_AGAIN; |
| 1887 | |
Minchan Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1888 | 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. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1893 | 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 Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1900 | |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1901 | if (!anon_vma) |
| 1902 | return ret; |
Joonsoo Kim | faecd8d | 2014-01-21 15:49:46 -0800 | [diff] [blame] | 1903 | |
Davidlohr Bueso | b258d86 | 2014-12-12 16:55:04 -0800 | [diff] [blame] | 1904 | pgoff = page_to_pgoff(page); |
Michel Lespinasse | bf181b9 | 2012-10-08 16:31:39 -0700 | [diff] [blame] | 1905 | anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root, pgoff, pgoff) { |
Rik van Riel | 5beb493 | 2010-03-05 13:42:07 -0800 | [diff] [blame] | 1906 | struct vm_area_struct *vma = avc->vma; |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1907 | unsigned long address = vma_address(page, vma); |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1908 | |
Andrea Arcangeli | ad12695 | 2015-11-05 18:49:07 -0800 | [diff] [blame] | 1909 | cond_resched(); |
| 1910 | |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1911 | if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg)) |
| 1912 | continue; |
| 1913 | |
Joonsoo Kim | 051ac83 | 2014-01-21 15:49:48 -0800 | [diff] [blame] | 1914 | ret = rwc->rmap_one(page, vma, address, rwc->arg); |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1915 | if (ret != SWAP_AGAIN) |
| 1916 | break; |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1917 | if (rwc->done && rwc->done(page)) |
| 1918 | break; |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1919 | } |
Kirill A. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1920 | |
| 1921 | if (!locked) |
| 1922 | anon_vma_unlock_read(anon_vma); |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1923 | return ret; |
| 1924 | } |
| 1925 | |
Joonsoo Kim | e8351ac | 2014-01-21 15:49:52 -0800 | [diff] [blame] | 1926 | /* |
| 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. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1939 | static int rmap_walk_file(struct page *page, struct rmap_walk_control *rwc, |
| 1940 | bool locked) |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1941 | { |
Kirill A. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1942 | struct address_space *mapping = page_mapping(page); |
Davidlohr Bueso | b258d86 | 2014-12-12 16:55:04 -0800 | [diff] [blame] | 1943 | pgoff_t pgoff; |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1944 | struct vm_area_struct *vma; |
Minchan Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1945 | unsigned long address; |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1946 | int ret = SWAP_AGAIN; |
| 1947 | |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1948 | /* |
| 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 Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 1952 | * so we can safely take mapping->i_mmap_rwsem. |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1953 | */ |
Sasha Levin | 81d1b09 | 2014-10-09 15:28:10 -0700 | [diff] [blame] | 1954 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
Joonsoo Kim | 9f32624 | 2014-01-21 15:49:53 -0800 | [diff] [blame] | 1955 | |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1956 | if (!mapping) |
| 1957 | return ret; |
Davidlohr Bueso | 3dec0ba | 2014-12-12 16:54:27 -0800 | [diff] [blame] | 1958 | |
Davidlohr Bueso | b258d86 | 2014-12-12 16:55:04 -0800 | [diff] [blame] | 1959 | pgoff = page_to_pgoff(page); |
Kirill A. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1960 | if (!locked) |
| 1961 | i_mmap_lock_read(mapping); |
Minchan Kim | cd256bf | 2013-05-09 16:21:27 +0900 | [diff] [blame] | 1962 | |
| 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 Lespinasse | 6b2dbba | 2012-10-08 16:31:25 -0700 | [diff] [blame] | 1969 | vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) { |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1970 | unsigned long address = vma_address(page, vma); |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1971 | |
Andrea Arcangeli | ad12695 | 2015-11-05 18:49:07 -0800 | [diff] [blame] | 1972 | cond_resched(); |
| 1973 | |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1974 | if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg)) |
| 1975 | continue; |
| 1976 | |
Joonsoo Kim | 051ac83 | 2014-01-21 15:49:48 -0800 | [diff] [blame] | 1977 | ret = rwc->rmap_one(page, vma, address, rwc->arg); |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1978 | if (ret != SWAP_AGAIN) |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1979 | goto done; |
| 1980 | if (rwc->done && rwc->done(page)) |
| 1981 | goto done; |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1982 | } |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1983 | |
Joonsoo Kim | 0dd1c7b | 2014-01-21 15:49:49 -0800 | [diff] [blame] | 1984 | done: |
Kirill A. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1985 | if (!locked) |
| 1986 | i_mmap_unlock_read(mapping); |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1987 | return ret; |
| 1988 | } |
| 1989 | |
Joonsoo Kim | 051ac83 | 2014-01-21 15:49:48 -0800 | [diff] [blame] | 1990 | int rmap_walk(struct page *page, struct rmap_walk_control *rwc) |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1991 | { |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1992 | if (unlikely(PageKsm(page))) |
Joonsoo Kim | 051ac83 | 2014-01-21 15:49:48 -0800 | [diff] [blame] | 1993 | return rmap_walk_ksm(page, rwc); |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1994 | else if (PageAnon(page)) |
Kirill A. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1995 | return rmap_walk_anon(page, rwc, false); |
Hugh Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 1996 | else |
Kirill A. Shutemov | b977319 | 2016-03-17 14:20:01 -0700 | [diff] [blame] | 1997 | return rmap_walk_file(page, rwc, false); |
| 1998 | } |
| 1999 | |
| 2000 | /* Like rmap_walk, but caller holds relevant rmap lock */ |
| 2001 | int 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 Dickins | e9995ef | 2009-12-14 17:59:31 -0800 | [diff] [blame] | 2009 | } |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 2010 | |
Naoya Horiguchi | e3390f6 | 2010-06-15 13:18:13 +0900 | [diff] [blame] | 2011 | #ifdef CONFIG_HUGETLB_PAGE |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 2012 | /* |
| 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 | */ |
| 2017 | static 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 Horiguchi | 433abed | 2010-09-10 13:23:03 +0900 | [diff] [blame] | 2021 | |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 2022 | BUG_ON(!anon_vma); |
Naoya Horiguchi | 433abed | 2010-09-10 13:23:03 +0900 | [diff] [blame] | 2023 | |
| 2024 | if (PageAnon(page)) |
| 2025 | return; |
| 2026 | if (!exclusive) |
| 2027 | anon_vma = anon_vma->root; |
| 2028 | |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 2029 | 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 | |
| 2034 | void 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 Horiguchi | a850ea3 | 2010-09-10 13:23:06 +0900 | [diff] [blame] | 2039 | |
| 2040 | BUG_ON(!PageLocked(page)); |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 2041 | BUG_ON(!anon_vma); |
Hugh Dickins | 5dbe0af | 2011-05-28 13:17:04 -0700 | [diff] [blame] | 2042 | /* address might be in next vma when migration races vma_adjust */ |
Kirill A. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 2043 | first = atomic_inc_and_test(compound_mapcount_ptr(page)); |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 2044 | if (first) |
| 2045 | __hugepage_set_anon_rmap(page, vma, address, 0); |
| 2046 | } |
| 2047 | |
| 2048 | void 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. Shutemov | 53f9263 | 2016-01-15 16:53:42 -0800 | [diff] [blame] | 2052 | atomic_set(compound_mapcount_ptr(page), 0); |
Naoya Horiguchi | 0fe6e20 | 2010-05-28 09:29:16 +0900 | [diff] [blame] | 2053 | __hugepage_set_anon_rmap(page, vma, address, 1); |
| 2054 | } |
Naoya Horiguchi | e3390f6 | 2010-06-15 13:18:13 +0900 | [diff] [blame] | 2055 | #endif /* CONFIG_HUGETLB_PAGE */ |