mm: replace vma prio_tree with an interval tree
[linux-2.6-block.git] / mm / filemap_xip.c
CommitLineData
ceffc078
CO
1/*
2 * linux/mm/filemap_xip.c
3 *
4 * Copyright (C) 2005 IBM Corporation
5 * Author: Carsten Otte <cotte@de.ibm.com>
6 *
7 * derived from linux/mm/filemap.c - Copyright (C) Linus Torvalds
8 *
9 */
10
11#include <linux/fs.h>
12#include <linux/pagemap.h>
b95f1b31 13#include <linux/export.h>
ceffc078
CO
14#include <linux/uio.h>
15#include <linux/rmap.h>
cddb8a5c 16#include <linux/mmu_notifier.h>
e8edc6e0 17#include <linux/sched.h>
538f8ea6
NP
18#include <linux/seqlock.h>
19#include <linux/mutex.h>
5a0e3ad6 20#include <linux/gfp.h>
ceffc078 21#include <asm/tlbflush.h>
70688e4d 22#include <asm/io.h>
ceffc078 23
a76c0b97
CO
24/*
25 * We do use our own empty page to avoid interference with other users
26 * of ZERO_PAGE(), such as /dev/zero
27 */
538f8ea6
NP
28static DEFINE_MUTEX(xip_sparse_mutex);
29static seqcount_t xip_sparse_seq = SEQCNT_ZERO;
a76c0b97
CO
30static struct page *__xip_sparse_page;
31
538f8ea6 32/* called under xip_sparse_mutex */
a76c0b97
CO
33static struct page *xip_sparse_page(void)
34{
35 if (!__xip_sparse_page) {
c51b1a16
AM
36 struct page *page = alloc_page(GFP_HIGHUSER | __GFP_ZERO);
37
538f8ea6
NP
38 if (page)
39 __xip_sparse_page = page;
a76c0b97
CO
40 }
41 return __xip_sparse_page;
42}
43
ceffc078
CO
44/*
45 * This is a file read routine for execute in place files, and uses
70688e4d 46 * the mapping->a_ops->get_xip_mem() function for the actual low-level
ceffc078
CO
47 * stuff.
48 *
49 * Note the struct file* is not used at all. It may be NULL.
50 */
70688e4d 51static ssize_t
ceffc078
CO
52do_xip_mapping_read(struct address_space *mapping,
53 struct file_ra_state *_ra,
54 struct file *filp,
70688e4d
NP
55 char __user *buf,
56 size_t len,
57 loff_t *ppos)
ceffc078
CO
58{
59 struct inode *inode = mapping->host;
2004dc8e
JK
60 pgoff_t index, end_index;
61 unsigned long offset;
70688e4d
NP
62 loff_t isize, pos;
63 size_t copied = 0, error = 0;
ceffc078 64
70688e4d 65 BUG_ON(!mapping->a_ops->get_xip_mem);
ceffc078 66
70688e4d
NP
67 pos = *ppos;
68 index = pos >> PAGE_CACHE_SHIFT;
69 offset = pos & ~PAGE_CACHE_MASK;
ceffc078
CO
70
71 isize = i_size_read(inode);
72 if (!isize)
73 goto out;
74
75 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
70688e4d
NP
76 do {
77 unsigned long nr, left;
78 void *xip_mem;
79 unsigned long xip_pfn;
80 int zero = 0;
ceffc078
CO
81
82 /* nr is the maximum number of bytes to copy from this page */
83 nr = PAGE_CACHE_SIZE;
84 if (index >= end_index) {
85 if (index > end_index)
86 goto out;
87 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
88 if (nr <= offset) {
89 goto out;
90 }
91 }
92 nr = nr - offset;
58984ce2
MS
93 if (nr > len - copied)
94 nr = len - copied;
ceffc078 95
70688e4d
NP
96 error = mapping->a_ops->get_xip_mem(mapping, index, 0,
97 &xip_mem, &xip_pfn);
98 if (unlikely(error)) {
99 if (error == -ENODATA) {
ceffc078 100 /* sparse */
70688e4d
NP
101 zero = 1;
102 } else
ceffc078 103 goto out;
afa597ba 104 }
ceffc078
CO
105
106 /* If users can be writing to this page using arbitrary
107 * virtual addresses, take care about potential aliasing
108 * before reading the page on the kernel side.
109 */
110 if (mapping_writably_mapped(mapping))
70688e4d 111 /* address based flush */ ;
ceffc078
CO
112
113 /*
70688e4d 114 * Ok, we have the mem, so now we can copy it to user space...
ceffc078
CO
115 *
116 * The actor routine returns how many bytes were actually used..
117 * NOTE! This may not be the same as how much of a user buffer
118 * we filled up (we may be padding etc), so we can only update
119 * "pos" here (the actor routine has to update the user buffer
120 * pointers and the remaining count).
121 */
70688e4d
NP
122 if (!zero)
123 left = __copy_to_user(buf+copied, xip_mem+offset, nr);
124 else
125 left = __clear_user(buf + copied, nr);
ceffc078 126
70688e4d
NP
127 if (left) {
128 error = -EFAULT;
129 goto out;
130 }
ceffc078 131
70688e4d
NP
132 copied += (nr - left);
133 offset += (nr - left);
134 index += offset >> PAGE_CACHE_SHIFT;
135 offset &= ~PAGE_CACHE_MASK;
136 } while (copied < len);
ceffc078
CO
137
138out:
70688e4d 139 *ppos = pos + copied;
ceffc078
CO
140 if (filp)
141 file_accessed(filp);
70688e4d
NP
142
143 return (copied ? copied : error);
ceffc078
CO
144}
145
ceffc078 146ssize_t
eb6fe0c3 147xip_file_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
ceffc078 148{
eb6fe0c3
CO
149 if (!access_ok(VERIFY_WRITE, buf, len))
150 return -EFAULT;
ceffc078 151
70688e4d
NP
152 return do_xip_mapping_read(filp->f_mapping, &filp->f_ra, filp,
153 buf, len, ppos);
ceffc078 154}
eb6fe0c3 155EXPORT_SYMBOL_GPL(xip_file_read);
ceffc078 156
ceffc078
CO
157/*
158 * __xip_unmap is invoked from xip_unmap and
159 * xip_write
160 *
161 * This function walks all vmas of the address_space and unmaps the
a76c0b97 162 * __xip_sparse_page when found at pgoff.
ceffc078
CO
163 */
164static void
165__xip_unmap (struct address_space * mapping,
166 unsigned long pgoff)
167{
168 struct vm_area_struct *vma;
169 struct mm_struct *mm;
ceffc078
CO
170 unsigned long address;
171 pte_t *pte;
172 pte_t pteval;
c0718806 173 spinlock_t *ptl;
67b02f11 174 struct page *page;
538f8ea6
NP
175 unsigned count;
176 int locked = 0;
177
178 count = read_seqcount_begin(&xip_sparse_seq);
ceffc078 179
a76c0b97
CO
180 page = __xip_sparse_page;
181 if (!page)
182 return;
183
538f8ea6 184retry:
3d48ae45 185 mutex_lock(&mapping->i_mmap_mutex);
6b2dbba8 186 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
ceffc078
CO
187 mm = vma->vm_mm;
188 address = vma->vm_start +
189 ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
190 BUG_ON(address < vma->vm_start || address >= vma->vm_end);
479db0bf 191 pte = page_check_address(page, mm, address, &ptl, 1);
c0718806 192 if (pte) {
ceffc078 193 /* Nuke the page table entry. */
082ff0a9 194 flush_cache_page(vma, address, pte_pfn(*pte));
cddb8a5c 195 pteval = ptep_clear_flush_notify(vma, address, pte);
edc315fd 196 page_remove_rmap(page);
d559db08 197 dec_mm_counter(mm, MM_FILEPAGES);
ceffc078 198 BUG_ON(pte_dirty(pteval));
c0718806 199 pte_unmap_unlock(pte, ptl);
b5810039 200 page_cache_release(page);
ceffc078
CO
201 }
202 }
3d48ae45 203 mutex_unlock(&mapping->i_mmap_mutex);
538f8ea6
NP
204
205 if (locked) {
206 mutex_unlock(&xip_sparse_mutex);
207 } else if (read_seqcount_retry(&xip_sparse_seq, count)) {
208 mutex_lock(&xip_sparse_mutex);
209 locked = 1;
210 goto retry;
211 }
ceffc078
CO
212}
213
214/*
54cb8821 215 * xip_fault() is invoked via the vma operations vector for a
ceffc078
CO
216 * mapped memory region to read in file data during a page fault.
217 *
54cb8821 218 * This function is derived from filemap_fault, but used for execute in place
ceffc078 219 */
70688e4d 220static int xip_file_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
ceffc078 221{
70688e4d 222 struct file *file = vma->vm_file;
ceffc078
CO
223 struct address_space *mapping = file->f_mapping;
224 struct inode *inode = mapping->host;
54cb8821 225 pgoff_t size;
70688e4d
NP
226 void *xip_mem;
227 unsigned long xip_pfn;
228 struct page *page;
229 int error;
ceffc078 230
54cb8821 231 /* XXX: are VM_FAULT_ codes OK? */
538f8ea6 232again:
ceffc078 233 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
d0217ac0
NP
234 if (vmf->pgoff >= size)
235 return VM_FAULT_SIGBUS;
ceffc078 236
70688e4d
NP
237 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 0,
238 &xip_mem, &xip_pfn);
239 if (likely(!error))
240 goto found;
241 if (error != -ENODATA)
d0217ac0 242 return VM_FAULT_OOM;
ceffc078
CO
243
244 /* sparse block */
70688e4d
NP
245 if ((vma->vm_flags & (VM_WRITE | VM_MAYWRITE)) &&
246 (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) &&
ceffc078 247 (!(mapping->host->i_sb->s_flags & MS_RDONLY))) {
70688e4d
NP
248 int err;
249
ceffc078 250 /* maybe shared writable, allocate new block */
14bac5ac 251 mutex_lock(&xip_sparse_mutex);
70688e4d
NP
252 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 1,
253 &xip_mem, &xip_pfn);
14bac5ac 254 mutex_unlock(&xip_sparse_mutex);
70688e4d 255 if (error)
d0217ac0 256 return VM_FAULT_SIGBUS;
70688e4d 257 /* unmap sparse mappings at pgoff from all other vmas */
d0217ac0 258 __xip_unmap(mapping, vmf->pgoff);
70688e4d
NP
259
260found:
261 err = vm_insert_mixed(vma, (unsigned long)vmf->virtual_address,
262 xip_pfn);
263 if (err == -ENOMEM)
264 return VM_FAULT_OOM;
99f02ef1
CO
265 /*
266 * err == -EBUSY is fine, we've raced against another thread
267 * that faulted-in the same page
268 */
269 if (err != -EBUSY)
270 BUG_ON(err);
70688e4d 271 return VM_FAULT_NOPAGE;
ceffc078 272 } else {
538f8ea6
NP
273 int err, ret = VM_FAULT_OOM;
274
275 mutex_lock(&xip_sparse_mutex);
276 write_seqcount_begin(&xip_sparse_seq);
277 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 0,
278 &xip_mem, &xip_pfn);
279 if (unlikely(!error)) {
280 write_seqcount_end(&xip_sparse_seq);
281 mutex_unlock(&xip_sparse_mutex);
282 goto again;
283 }
284 if (error != -ENODATA)
285 goto out;
a76c0b97
CO
286 /* not shared and writable, use xip_sparse_page() */
287 page = xip_sparse_page();
d0217ac0 288 if (!page)
538f8ea6
NP
289 goto out;
290 err = vm_insert_page(vma, (unsigned long)vmf->virtual_address,
291 page);
292 if (err == -ENOMEM)
293 goto out;
294
295 ret = VM_FAULT_NOPAGE;
296out:
297 write_seqcount_end(&xip_sparse_seq);
298 mutex_unlock(&xip_sparse_mutex);
ceffc078 299
538f8ea6 300 return ret;
70688e4d 301 }
ceffc078
CO
302}
303
f0f37e2f 304static const struct vm_operations_struct xip_file_vm_ops = {
54cb8821 305 .fault = xip_file_fault,
4fcf1c62 306 .page_mkwrite = filemap_page_mkwrite,
0b173bc4 307 .remap_pages = generic_file_remap_pages,
ceffc078
CO
308};
309
310int xip_file_mmap(struct file * file, struct vm_area_struct * vma)
311{
70688e4d 312 BUG_ON(!file->f_mapping->a_ops->get_xip_mem);
ceffc078
CO
313
314 file_accessed(file);
315 vma->vm_ops = &xip_file_vm_ops;
0b173bc4 316 vma->vm_flags |= VM_MIXEDMAP;
ceffc078
CO
317 return 0;
318}
319EXPORT_SYMBOL_GPL(xip_file_mmap);
320
321static ssize_t
eb6fe0c3
CO
322__xip_file_write(struct file *filp, const char __user *buf,
323 size_t count, loff_t pos, loff_t *ppos)
ceffc078 324{
eb6fe0c3 325 struct address_space * mapping = filp->f_mapping;
f5e54d6e 326 const struct address_space_operations *a_ops = mapping->a_ops;
ceffc078
CO
327 struct inode *inode = mapping->host;
328 long status = 0;
ceffc078 329 size_t bytes;
ceffc078
CO
330 ssize_t written = 0;
331
70688e4d 332 BUG_ON(!mapping->a_ops->get_xip_mem);
ceffc078 333
ceffc078
CO
334 do {
335 unsigned long index;
336 unsigned long offset;
337 size_t copied;
70688e4d
NP
338 void *xip_mem;
339 unsigned long xip_pfn;
ceffc078
CO
340
341 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
342 index = pos >> PAGE_CACHE_SHIFT;
343 bytes = PAGE_CACHE_SIZE - offset;
344 if (bytes > count)
345 bytes = count;
346
70688e4d
NP
347 status = a_ops->get_xip_mem(mapping, index, 0,
348 &xip_mem, &xip_pfn);
349 if (status == -ENODATA) {
ceffc078 350 /* we allocate a new page unmap it */
14bac5ac 351 mutex_lock(&xip_sparse_mutex);
70688e4d
NP
352 status = a_ops->get_xip_mem(mapping, index, 1,
353 &xip_mem, &xip_pfn);
14bac5ac 354 mutex_unlock(&xip_sparse_mutex);
70688e4d 355 if (!status)
eb6fe0c3
CO
356 /* unmap page at pgoff from all other vmas */
357 __xip_unmap(mapping, index);
ceffc078
CO
358 }
359
70688e4d 360 if (status)
ceffc078 361 break;
ceffc078 362
4a9e5ef1 363 copied = bytes -
70688e4d 364 __copy_from_user_nocache(xip_mem + offset, buf, bytes);
4a9e5ef1 365
ceffc078
CO
366 if (likely(copied > 0)) {
367 status = copied;
368
369 if (status >= 0) {
370 written += status;
371 count -= status;
372 pos += status;
373 buf += status;
ceffc078
CO
374 }
375 }
376 if (unlikely(copied != bytes))
377 if (status >= 0)
378 status = -EFAULT;
379 if (status < 0)
380 break;
381 } while (count);
382 *ppos = pos;
383 /*
384 * No need to use i_size_read() here, the i_size
1b1dcc1b 385 * cannot change under us because we hold i_mutex.
ceffc078
CO
386 */
387 if (pos > inode->i_size) {
388 i_size_write(inode, pos);
389 mark_inode_dirty(inode);
390 }
391
392 return written ? written : status;
393}
394
eb6fe0c3
CO
395ssize_t
396xip_file_write(struct file *filp, const char __user *buf, size_t len,
397 loff_t *ppos)
ceffc078 398{
eb6fe0c3
CO
399 struct address_space *mapping = filp->f_mapping;
400 struct inode *inode = mapping->host;
401 size_t count;
402 loff_t pos;
403 ssize_t ret;
ceffc078 404
14da9200
JK
405 sb_start_write(inode->i_sb);
406
1b1dcc1b 407 mutex_lock(&inode->i_mutex);
ceffc078 408
eb6fe0c3
CO
409 if (!access_ok(VERIFY_READ, buf, len)) {
410 ret=-EFAULT;
411 goto out_up;
ceffc078
CO
412 }
413
ceffc078 414 pos = *ppos;
eb6fe0c3 415 count = len;
ceffc078 416
eb6fe0c3
CO
417 /* We can write back this queue in page reclaim */
418 current->backing_dev_info = mapping->backing_dev_info;
ceffc078 419
eb6fe0c3
CO
420 ret = generic_write_checks(filp, &pos, &count, S_ISBLK(inode->i_mode));
421 if (ret)
422 goto out_backing;
ceffc078 423 if (count == 0)
eb6fe0c3 424 goto out_backing;
ceffc078 425
2f1936b8 426 ret = file_remove_suid(filp);
eb6fe0c3
CO
427 if (ret)
428 goto out_backing;
ceffc078 429
c3b2da31
JB
430 ret = file_update_time(filp);
431 if (ret)
432 goto out_backing;
ceffc078 433
eb6fe0c3 434 ret = __xip_file_write (filp, buf, count, pos, ppos);
ceffc078 435
eb6fe0c3
CO
436 out_backing:
437 current->backing_dev_info = NULL;
438 out_up:
1b1dcc1b 439 mutex_unlock(&inode->i_mutex);
14da9200 440 sb_end_write(inode->i_sb);
ceffc078
CO
441 return ret;
442}
eb6fe0c3 443EXPORT_SYMBOL_GPL(xip_file_write);
ceffc078
CO
444
445/*
446 * truncate a page used for execute in place
70688e4d 447 * functionality is analog to block_truncate_page but does use get_xip_mem
ceffc078
CO
448 * to get the page instead of page cache
449 */
450int
451xip_truncate_page(struct address_space *mapping, loff_t from)
452{
453 pgoff_t index = from >> PAGE_CACHE_SHIFT;
454 unsigned offset = from & (PAGE_CACHE_SIZE-1);
455 unsigned blocksize;
456 unsigned length;
70688e4d
NP
457 void *xip_mem;
458 unsigned long xip_pfn;
459 int err;
ceffc078 460
70688e4d 461 BUG_ON(!mapping->a_ops->get_xip_mem);
ceffc078
CO
462
463 blocksize = 1 << mapping->host->i_blkbits;
464 length = offset & (blocksize - 1);
465
466 /* Block boundary? Nothing to do */
467 if (!length)
468 return 0;
469
470 length = blocksize - length;
471
70688e4d
NP
472 err = mapping->a_ops->get_xip_mem(mapping, index, 0,
473 &xip_mem, &xip_pfn);
474 if (unlikely(err)) {
475 if (err == -ENODATA)
ceffc078
CO
476 /* Hole? No need to truncate */
477 return 0;
eb6fe0c3 478 else
70688e4d 479 return err;
afa597ba 480 }
70688e4d 481 memset(xip_mem + offset, 0, length);
eb6fe0c3 482 return 0;
ceffc078
CO
483}
484EXPORT_SYMBOL_GPL(xip_truncate_page);