blob: 9ed4fd432467ee45a5310cd152fbba4399cbf722 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 */
Alexey Dobriyan4af3c9c2007-10-16 23:29:23 -07008#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mm.h>
10#include <linux/swap.h>
11#include <linux/file.h>
12#include <linux/mman.h>
13#include <linux/pagemap.h>
14#include <linux/swapops.h>
15#include <linux/rmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/syscalls.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070017#include <linux/mmu_notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <asm/mmu_context.h>
20#include <asm/cacheflush.h>
21#include <asm/tlbflush.h>
22
Rik van Rielba470de2008-10-18 20:26:50 -070023#include "internal.h"
24
Nick Piggind0217ac2007-07-19 01:47:03 -070025static void zap_pte(struct mm_struct *mm, struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 unsigned long addr, pte_t *ptep)
27{
28 pte_t pte = *ptep;
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 if (pte_present(pte)) {
Nick Piggind0217ac2007-07-19 01:47:03 -070031 struct page *page;
32
Linus Torvalds6aab3412005-11-28 14:34:23 -080033 flush_cache_page(vma, addr, pte_pfn(pte));
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 pte = ptep_clear_flush(vma, addr, ptep);
Linus Torvalds6aab3412005-11-28 14:34:23 -080035 page = vm_normal_page(vma, addr, pte);
36 if (page) {
37 if (pte_dirty(pte))
38 set_page_dirty(page);
Hugh Dickinsedc315f2009-01-06 14:40:11 -080039 page_remove_rmap(page);
Linus Torvalds6aab3412005-11-28 14:34:23 -080040 page_cache_release(page);
Nick Piggind0217ac2007-07-19 01:47:03 -070041 update_hiwater_rss(mm);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -080042 dec_mm_counter(mm, MM_FILEPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 }
44 } else {
45 if (!pte_file(pte))
46 free_swap_and_cache(pte_to_swp_entry(pte));
Zachary Amsden9888a1c2006-09-30 23:29:31 -070047 pte_clear_not_present_full(mm, addr, ptep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 }
49}
50
51/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 * Install a file pte to a given virtual memory address, release any
53 * previously existing mapping.
54 */
Nick Piggind0217ac2007-07-19 01:47:03 -070055static int install_file_pte(struct mm_struct *mm, struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 unsigned long addr, unsigned long pgoff, pgprot_t prot)
57{
58 int err = -ENOMEM;
59 pte_t *pte;
Hugh Dickinsc74df322005-10-29 18:16:23 -070060 spinlock_t *ptl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvaldsc9cfcdd2005-11-29 14:03:14 -080062 pte = get_locked_pte(mm, addr, &ptl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 if (!pte)
Hugh Dickinsc74df322005-10-29 18:16:23 -070064 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Nick Piggind0217ac2007-07-19 01:47:03 -070066 if (!pte_none(*pte))
67 zap_pte(mm, vma, addr, pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 set_pte_at(mm, addr, pte, pgoff_to_pte(pgoff));
Hugh Dickins668e0d82006-06-23 02:03:45 -070070 /*
71 * We don't need to run update_mmu_cache() here because the "file pte"
72 * being installed by install_file_pte() is not a real pte - it's a
73 * non-present entry (like a swap entry), noting what file offset should
74 * be mapped there when there's a fault (in a non-linear vma where
75 * that's not obvious).
76 */
Hugh Dickinsc74df322005-10-29 18:16:23 -070077 pte_unmap_unlock(pte, ptl);
78 err = 0;
79out:
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return err;
81}
82
Nick Piggin54cb8822007-07-19 01:46:59 -070083static int populate_range(struct mm_struct *mm, struct vm_area_struct *vma,
84 unsigned long addr, unsigned long size, pgoff_t pgoff)
85{
86 int err;
87
88 do {
89 err = install_file_pte(mm, vma, addr, pgoff, vma->vm_page_prot);
90 if (err)
91 return err;
92
93 size -= PAGE_SIZE;
94 addr += PAGE_SIZE;
95 pgoff++;
96 } while (size);
97
98 return 0;
99
100}
101
Randy Dunlap8d634942007-10-16 23:31:29 -0700102/**
103 * sys_remap_file_pages - remap arbitrary pages of an existing VM_SHARED vma
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * @start: start of the remapped virtual memory range
105 * @size: size of the remapped virtual memory range
Randy Dunlap8d634942007-10-16 23:31:29 -0700106 * @prot: new protection bits of the range (see NOTE)
107 * @pgoff: to-be-mapped page of the backing store file
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * @flags: 0 or MAP_NONBLOCKED - the later will cause no IO.
109 *
Randy Dunlap8d634942007-10-16 23:31:29 -0700110 * sys_remap_file_pages remaps arbitrary pages of an existing VM_SHARED vma
111 * (shared backing store file).
112 *
113 * This syscall works purely via pagetables, so it's the most efficient
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * way to map the same (large) file into a given virtual window. Unlike
115 * mmap()/mremap() it does not create any new vmas. The new mappings are
116 * also safe across swapout.
117 *
Randy Dunlap76824862008-03-19 17:00:40 -0700118 * NOTE: the @prot parameter right now is ignored (but must be zero),
Randy Dunlap8d634942007-10-16 23:31:29 -0700119 * and the vma's default protection is used. Arbitrary protections
120 * might be implemented in the future.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 */
Heiko Carstens6a6160a2009-01-14 14:14:15 +0100122SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
123 unsigned long, prot, unsigned long, pgoff, unsigned long, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 struct mm_struct *mm = current->mm;
126 struct address_space *mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct vm_area_struct *vma;
128 int err = -EINVAL;
129 int has_write_lock = 0;
130
Randy Dunlap8d634942007-10-16 23:31:29 -0700131 if (prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return err;
133 /*
134 * Sanitize the syscall parameters:
135 */
136 start = start & PAGE_MASK;
137 size = size & PAGE_MASK;
138
139 /* Does the address range wrap, or is the span zero-sized? */
140 if (start + size <= start)
141 return err;
142
Larry Woodman5ec10552010-09-24 12:04:48 -0400143 /* Does pgoff wrap? */
144 if (pgoff + (size >> PAGE_SHIFT) < pgoff)
145 return err;
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 /* Can we represent this offset inside this architecture's pte's? */
148#if PTE_FILE_MAX_BITS < BITS_PER_LONG
149 if (pgoff + (size >> PAGE_SHIFT) >= (1UL << PTE_FILE_MAX_BITS))
150 return err;
151#endif
152
153 /* We need down_write() to change vma->vm_flags. */
154 down_read(&mm->mmap_sem);
155 retry:
156 vma = find_vma(mm, start);
157
158 /*
159 * Make sure the vma is shared, that it supports prefaulting,
160 * and that the remapped range is valid and fully within
161 * the single existing vma. vm_private_data is used as a
Hugh Dickins101d2be2005-11-21 21:32:16 -0800162 * swapout cursor in a VM_NONLINEAR vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 */
Nick Piggin54cb8822007-07-19 01:46:59 -0700164 if (!vma || !(vma->vm_flags & VM_SHARED))
165 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Nick Piggin54cb8822007-07-19 01:46:59 -0700167 if (vma->vm_private_data && !(vma->vm_flags & VM_NONLINEAR))
168 goto out;
169
Yan Zhengdd204d62007-10-08 10:05:48 -0700170 if (!(vma->vm_flags & VM_CAN_NONLINEAR))
Nick Piggin54cb8822007-07-19 01:46:59 -0700171 goto out;
172
Linus Torvaldse92b05d2010-09-24 14:13:57 -0700173 if (start < vma->vm_start || start + size > vma->vm_end)
Nick Piggin54cb8822007-07-19 01:46:59 -0700174 goto out;
175
176 /* Must set VM_NONLINEAR before any pages are populated. */
177 if (!(vma->vm_flags & VM_NONLINEAR)) {
178 /* Don't need a nonlinear mapping, exit success */
179 if (pgoff == linear_page_index(vma, start)) {
180 err = 0;
181 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
Nick Piggin54cb8822007-07-19 01:46:59 -0700184 if (!has_write_lock) {
185 up_read(&mm->mmap_sem);
186 down_write(&mm->mmap_sem);
187 has_write_lock = 1;
188 goto retry;
189 }
190 mapping = vma->vm_file->f_mapping;
Miklos Szeredi3ee6daf2007-07-19 01:47:24 -0700191 /*
192 * page_mkclean doesn't work on nonlinear vmas, so if
193 * dirty pages need to be accounted, emulate with linear
194 * vmas.
195 */
196 if (mapping_cap_account_dirty(mapping)) {
197 unsigned long addr;
Oleg Nesterov8a459e42008-02-04 22:27:18 -0800198 struct file *file = vma->vm_file;
Miklos Szeredi3ee6daf2007-07-19 01:47:24 -0700199
200 flags &= MAP_NONBLOCK;
Oleg Nesterov8a459e42008-02-04 22:27:18 -0800201 get_file(file);
202 addr = mmap_region(file, start, size,
Mel Gorman5a6fe122009-02-10 14:02:27 +0000203 flags, vma->vm_flags, pgoff);
Oleg Nesterov8a459e42008-02-04 22:27:18 -0800204 fput(file);
Miklos Szeredi3ee6daf2007-07-19 01:47:24 -0700205 if (IS_ERR_VALUE(addr)) {
206 err = addr;
207 } else {
208 BUG_ON(addr != start);
209 err = 0;
210 }
211 goto out;
212 }
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700213 mutex_lock(&mapping->i_mmap_mutex);
Nick Piggin54cb8822007-07-19 01:46:59 -0700214 flush_dcache_mmap_lock(mapping);
215 vma->vm_flags |= VM_NONLINEAR;
216 vma_prio_tree_remove(vma, &mapping->i_mmap);
217 vma_nonlinear_insert(vma, &mapping->i_mmap_nonlinear);
218 flush_dcache_mmap_unlock(mapping);
Peter Zijlstra3d48ae42011-05-24 17:12:06 -0700219 mutex_unlock(&mapping->i_mmap_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
Nick Piggin54cb8822007-07-19 01:46:59 -0700221
Rik van Rielba470de2008-10-18 20:26:50 -0700222 if (vma->vm_flags & VM_LOCKED) {
223 /*
224 * drop PG_Mlocked flag for over-mapped range
225 */
KOSAKI Motohiroca16d142011-05-26 19:16:19 +0900226 vm_flags_t saved_flags = vma->vm_flags;
Rik van Rielba470de2008-10-18 20:26:50 -0700227 munlock_vma_pages_range(vma, start, start + size);
228 vma->vm_flags = saved_flags;
229 }
230
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700231 mmu_notifier_invalidate_range_start(mm, start, start + size);
Nick Piggind0217ac2007-07-19 01:47:03 -0700232 err = populate_range(mm, vma, start, size, pgoff);
Andrea Arcangelicddb8a52008-07-28 15:46:29 -0700233 mmu_notifier_invalidate_range_end(mm, start, start + size);
Nick Piggind0217ac2007-07-19 01:47:03 -0700234 if (!err && !(flags & MAP_NONBLOCK)) {
Rik van Rielba470de2008-10-18 20:26:50 -0700235 if (vma->vm_flags & VM_LOCKED) {
236 /*
237 * might be mapping previously unmapped range of file
238 */
239 mlock_vma_pages_range(vma, start, start + size);
240 } else {
241 if (unlikely(has_write_lock)) {
242 downgrade_write(&mm->mmap_sem);
243 has_write_lock = 0;
244 }
245 make_pages_present(start, start+size);
Nick Piggin54cb8822007-07-19 01:46:59 -0700246 }
Nick Piggind0217ac2007-07-19 01:47:03 -0700247 }
Nick Piggin54cb8822007-07-19 01:46:59 -0700248
249 /*
250 * We can't clear VM_NONLINEAR because we'd have to do
251 * it after ->populate completes, and that would prevent
252 * downgrading the lock. (Locks can't be upgraded).
253 */
254
255out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (likely(!has_write_lock))
257 up_read(&mm->mmap_sem);
258 else
259 up_write(&mm->mmap_sem);
260
261 return err;
262}