mm/memory-failure: call shake_page() when error hits thp tail page
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / mm / fremap.c
CommitLineData
1da177e4
LT
1/*
2 * linux/mm/fremap.c
3 *
4 * Explicit pagetable population and nonlinear (random) mappings support.
5 *
6 * started by Ingo Molnar, Copyright (C) 2002, 2003
7 */
0b173bc4 8#include <linux/export.h>
4af3c9cc 9#include <linux/backing-dev.h>
1da177e4
LT
10#include <linux/mm.h>
11#include <linux/swap.h>
12#include <linux/file.h>
13#include <linux/mman.h>
14#include <linux/pagemap.h>
15#include <linux/swapops.h>
16#include <linux/rmap.h>
1da177e4 17#include <linux/syscalls.h>
cddb8a5c 18#include <linux/mmu_notifier.h>
1da177e4
LT
19
20#include <asm/mmu_context.h>
21#include <asm/cacheflush.h>
22#include <asm/tlbflush.h>
23
ba470de4
RR
24#include "internal.h"
25
d0217ac0 26static void zap_pte(struct mm_struct *mm, struct vm_area_struct *vma,
1da177e4
LT
27 unsigned long addr, pte_t *ptep)
28{
29 pte_t pte = *ptep;
30
1da177e4 31 if (pte_present(pte)) {
d0217ac0
NP
32 struct page *page;
33
6aab341e 34 flush_cache_page(vma, addr, pte_pfn(pte));
1da177e4 35 pte = ptep_clear_flush(vma, addr, ptep);
6aab341e
LT
36 page = vm_normal_page(vma, addr, pte);
37 if (page) {
38 if (pte_dirty(pte))
39 set_page_dirty(page);
edc315fd 40 page_remove_rmap(page);
6aab341e 41 page_cache_release(page);
d0217ac0 42 update_hiwater_rss(mm);
d559db08 43 dec_mm_counter(mm, MM_FILEPAGES);
1da177e4
LT
44 }
45 } else {
46 if (!pte_file(pte))
47 free_swap_and_cache(pte_to_swp_entry(pte));
9888a1ca 48 pte_clear_not_present_full(mm, addr, ptep, 0);
1da177e4
LT
49 }
50}
51
1da177e4
LT
52/*
53 * Install a file pte to a given virtual memory address, release any
54 * previously existing mapping.
55 */
d0217ac0 56static int install_file_pte(struct mm_struct *mm, struct vm_area_struct *vma,
1da177e4
LT
57 unsigned long addr, unsigned long pgoff, pgprot_t prot)
58{
59 int err = -ENOMEM;
60 pte_t *pte;
c74df32c 61 spinlock_t *ptl;
1da177e4 62
c9cfcddf 63 pte = get_locked_pte(mm, addr, &ptl);
1da177e4 64 if (!pte)
c74df32c 65 goto out;
1da177e4 66
d0217ac0
NP
67 if (!pte_none(*pte))
68 zap_pte(mm, vma, addr, pte);
1da177e4
LT
69
70 set_pte_at(mm, addr, pte, pgoff_to_pte(pgoff));
668e0d8f
HD
71 /*
72 * We don't need to run update_mmu_cache() here because the "file pte"
73 * being installed by install_file_pte() is not a real pte - it's a
74 * non-present entry (like a swap entry), noting what file offset should
75 * be mapped there when there's a fault (in a non-linear vma where
76 * that's not obvious).
77 */
c74df32c
HD
78 pte_unmap_unlock(pte, ptl);
79 err = 0;
80out:
1da177e4
LT
81 return err;
82}
83
0b173bc4
KK
84int generic_file_remap_pages(struct vm_area_struct *vma, unsigned long addr,
85 unsigned long size, pgoff_t pgoff)
54cb8821 86{
0b173bc4 87 struct mm_struct *mm = vma->vm_mm;
54cb8821
NP
88 int err;
89
90 do {
91 err = install_file_pte(mm, vma, addr, pgoff, vma->vm_page_prot);
92 if (err)
93 return err;
94
95 size -= PAGE_SIZE;
96 addr += PAGE_SIZE;
97 pgoff++;
98 } while (size);
99
0b173bc4 100 return 0;
54cb8821 101}
0b173bc4 102EXPORT_SYMBOL(generic_file_remap_pages);
54cb8821 103
8d63494f
RD
104/**
105 * sys_remap_file_pages - remap arbitrary pages of an existing VM_SHARED vma
1da177e4
LT
106 * @start: start of the remapped virtual memory range
107 * @size: size of the remapped virtual memory range
8d63494f
RD
108 * @prot: new protection bits of the range (see NOTE)
109 * @pgoff: to-be-mapped page of the backing store file
1da177e4
LT
110 * @flags: 0 or MAP_NONBLOCKED - the later will cause no IO.
111 *
8d63494f
RD
112 * sys_remap_file_pages remaps arbitrary pages of an existing VM_SHARED vma
113 * (shared backing store file).
114 *
115 * This syscall works purely via pagetables, so it's the most efficient
1da177e4
LT
116 * way to map the same (large) file into a given virtual window. Unlike
117 * mmap()/mremap() it does not create any new vmas. The new mappings are
118 * also safe across swapout.
119 *
7682486b 120 * NOTE: the @prot parameter right now is ignored (but must be zero),
8d63494f
RD
121 * and the vma's default protection is used. Arbitrary protections
122 * might be implemented in the future.
1da177e4 123 */
6a6160a7
HC
124SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
125 unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
1da177e4
LT
126{
127 struct mm_struct *mm = current->mm;
128 struct address_space *mapping;
1da177e4
LT
129 struct vm_area_struct *vma;
130 int err = -EINVAL;
131 int has_write_lock = 0;
a2362d24 132 vm_flags_t vm_flags = 0;
1da177e4 133
8d63494f 134 if (prot)
1da177e4
LT
135 return err;
136 /*
137 * Sanitize the syscall parameters:
138 */
139 start = start & PAGE_MASK;
140 size = size & PAGE_MASK;
141
142 /* Does the address range wrap, or is the span zero-sized? */
143 if (start + size <= start)
144 return err;
145
5ec1055a
LW
146 /* Does pgoff wrap? */
147 if (pgoff + (size >> PAGE_SHIFT) < pgoff)
148 return err;
149
1da177e4
LT
150 /* Can we represent this offset inside this architecture's pte's? */
151#if PTE_FILE_MAX_BITS < BITS_PER_LONG
152 if (pgoff + (size >> PAGE_SHIFT) >= (1UL << PTE_FILE_MAX_BITS))
153 return err;
154#endif
155
156 /* We need down_write() to change vma->vm_flags. */
157 down_read(&mm->mmap_sem);
158 retry:
159 vma = find_vma(mm, start);
160
161 /*
162 * Make sure the vma is shared, that it supports prefaulting,
163 * and that the remapped range is valid and fully within
940e7da5 164 * the single existing vma.
1da177e4 165 */
a2362d24 166 if (!vma || !(vma->vm_flags & VM_SHARED))
54cb8821
NP
167 goto out;
168
deb521c4 169 if (!vma->vm_ops || !vma->vm_ops->remap_pages)
54cb8821
NP
170 goto out;
171
e92b05de 172 if (start < vma->vm_start || start + size > vma->vm_end)
54cb8821
NP
173 goto out;
174
175 /* Must set VM_NONLINEAR before any pages are populated. */
176 if (!(vma->vm_flags & VM_NONLINEAR)) {
940e7da5
ML
177 /*
178 * vm_private_data is used as a swapout cursor
179 * in a VM_NONLINEAR vma.
180 */
181 if (vma->vm_private_data)
182 goto out;
183
54cb8821
NP
184 /* Don't need a nonlinear mapping, exit success */
185 if (pgoff == linear_page_index(vma, start)) {
186 err = 0;
187 goto out;
188 }
189
190 if (!has_write_lock) {
940e7da5 191get_write_lock:
54cb8821
NP
192 up_read(&mm->mmap_sem);
193 down_write(&mm->mmap_sem);
194 has_write_lock = 1;
195 goto retry;
196 }
197 mapping = vma->vm_file->f_mapping;
3ee6dafc
MS
198 /*
199 * page_mkclean doesn't work on nonlinear vmas, so if
200 * dirty pages need to be accounted, emulate with linear
201 * vmas.
202 */
203 if (mapping_cap_account_dirty(mapping)) {
204 unsigned long addr;
cb0942b8 205 struct file *file = get_file(vma->vm_file);
abdd4b8a
RR
206 /* mmap_region may free vma; grab the info now */
207 vm_flags = vma->vm_flags;
3ee6dafc 208
abdd4b8a 209 addr = mmap_region(file, start, size, vm_flags, pgoff);
8a459e44 210 fput(file);
3ee6dafc
MS
211 if (IS_ERR_VALUE(addr)) {
212 err = addr;
213 } else {
214 BUG_ON(addr != start);
215 err = 0;
216 }
abdd4b8a 217 goto out_freed;
3ee6dafc 218 }
3d48ae45 219 mutex_lock(&mapping->i_mmap_mutex);
54cb8821
NP
220 flush_dcache_mmap_lock(mapping);
221 vma->vm_flags |= VM_NONLINEAR;
6b2dbba8 222 vma_interval_tree_remove(vma, &mapping->i_mmap);
54cb8821
NP
223 vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
224 flush_dcache_mmap_unlock(mapping);
3d48ae45 225 mutex_unlock(&mapping->i_mmap_mutex);
54cb8821
NP
226 }
227
ba470de4
RR
228 if (vma->vm_flags & VM_LOCKED) {
229 /*
230 * drop PG_Mlocked flag for over-mapped range
231 */
940e7da5
ML
232 if (!has_write_lock)
233 goto get_write_lock;
a1ea9549 234 vm_flags = vma->vm_flags;
ba470de4 235 munlock_vma_pages_range(vma, start, start + size);
a1ea9549 236 vma->vm_flags = vm_flags;
ba470de4
RR
237 }
238
cddb8a5c 239 mmu_notifier_invalidate_range_start(mm, start, start + size);
0b173bc4 240 err = vma->vm_ops->remap_pages(vma, start, size, pgoff);
cddb8a5c 241 mmu_notifier_invalidate_range_end(mm, start, start + size);
1da177e4 242
54cb8821
NP
243 /*
244 * We can't clear VM_NONLINEAR because we'd have to do
245 * it after ->populate completes, and that would prevent
246 * downgrading the lock. (Locks can't be upgraded).
247 */
1da177e4 248
54cb8821 249out:
6d7825b1
AM
250 if (vma)
251 vm_flags = vma->vm_flags;
abdd4b8a 252out_freed:
1da177e4
LT
253 if (likely(!has_write_lock))
254 up_read(&mm->mmap_sem);
255 else
256 up_write(&mm->mmap_sem);
a1ea9549
ML
257 if (!err && ((vm_flags & VM_LOCKED) || !(flags & MAP_NONBLOCK)))
258 mm_populate(start, size);
1da177e4
LT
259
260 return err;
261}