2 * linux/mm/filemap_xip.c
4 * Copyright (C) 2005 IBM Corporation
5 * Author: Carsten Otte <cotte@de.ibm.com>
7 * derived from linux/mm/filemap.c - Copyright (C) Linus Torvalds
12 #include <linux/pagemap.h>
13 #include <linux/module.h>
14 #include <linux/uio.h>
15 #include <linux/rmap.h>
16 #include <asm/tlbflush.h>
20 * This is a file read routine for execute in place files, and uses
21 * the mapping->a_ops->get_xip_page() function for the actual low-level
24 * Note the struct file* is not used at all. It may be NULL.
27 do_xip_mapping_read(struct address_space *mapping,
28 struct file_ra_state *_ra,
31 read_descriptor_t *desc,
34 struct inode *inode = mapping->host;
35 unsigned long index, end_index, offset;
38 BUG_ON(!mapping->a_ops->get_xip_page);
40 index = *ppos >> PAGE_CACHE_SHIFT;
41 offset = *ppos & ~PAGE_CACHE_MASK;
43 isize = i_size_read(inode);
47 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
50 unsigned long nr, ret;
52 /* nr is the maximum number of bytes to copy from this page */
54 if (index >= end_index) {
55 if (index > end_index)
57 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
64 page = mapping->a_ops->get_xip_page(mapping,
65 index*(PAGE_SIZE/512), 0);
68 if (unlikely(IS_ERR(page))) {
69 if (PTR_ERR(page) == -ENODATA) {
71 page = virt_to_page(empty_zero_page);
73 desc->error = PTR_ERR(page);
77 BUG_ON(!PageUptodate(page));
79 /* If users can be writing to this page using arbitrary
80 * virtual addresses, take care about potential aliasing
81 * before reading the page on the kernel side.
83 if (mapping_writably_mapped(mapping))
84 flush_dcache_page(page);
87 * Ok, we have the page, and it's up-to-date, so
88 * now we can copy it to user space...
90 * The actor routine returns how many bytes were actually used..
91 * NOTE! This may not be the same as how much of a user buffer
92 * we filled up (we may be padding etc), so we can only update
93 * "pos" here (the actor routine has to update the user buffer
94 * pointers and the remaining count).
96 ret = actor(desc, page, offset, nr);
98 index += offset >> PAGE_CACHE_SHIFT;
99 offset &= ~PAGE_CACHE_MASK;
101 if (ret == nr && desc->count)
106 /* Did not get the page. Report it */
112 *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
118 xip_file_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
120 read_descriptor_t desc;
122 if (!access_ok(VERIFY_WRITE, buf, len))
130 do_xip_mapping_read(filp->f_mapping, &filp->f_ra, filp,
131 ppos, &desc, file_read_actor);
138 EXPORT_SYMBOL_GPL(xip_file_read);
141 xip_file_sendfile(struct file *in_file, loff_t *ppos,
142 size_t count, read_actor_t actor, void *target)
144 read_descriptor_t desc;
151 desc.arg.data = target;
154 do_xip_mapping_read(in_file->f_mapping, &in_file->f_ra, in_file,
160 EXPORT_SYMBOL_GPL(xip_file_sendfile);
163 * __xip_unmap is invoked from xip_unmap and
166 * This function walks all vmas of the address_space and unmaps the
167 * empty_zero_page when found at pgoff. Should it go in rmap.c?
170 __xip_unmap (struct address_space * mapping,
173 struct vm_area_struct *vma;
174 struct mm_struct *mm;
175 struct prio_tree_iter iter;
176 unsigned long address;
180 spin_lock(&mapping->i_mmap_lock);
181 vma_prio_tree_foreach(vma, &iter, &mapping->i_mmap, pgoff, pgoff) {
183 address = vma->vm_start +
184 ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
185 BUG_ON(address < vma->vm_start || address >= vma->vm_end);
187 * We need the page_table_lock to protect us from page faults,
188 * munmap, fork, etc...
190 pte = page_check_address(virt_to_page(empty_zero_page), mm,
193 /* Nuke the page table entry. */
194 flush_cache_page(vma, address, pte_pfn(*pte));
195 pteval = ptep_clear_flush(vma, address, pte);
196 BUG_ON(pte_dirty(pteval));
198 spin_unlock(&mm->page_table_lock);
201 spin_unlock(&mapping->i_mmap_lock);
205 * xip_nopage() is invoked via the vma operations vector for a
206 * mapped memory region to read in file data during a page fault.
208 * This function is derived from filemap_nopage, but used for execute in place
211 xip_file_nopage(struct vm_area_struct * area,
212 unsigned long address,
215 struct file *file = area->vm_file;
216 struct address_space *mapping = file->f_mapping;
217 struct inode *inode = mapping->host;
219 unsigned long size, pgoff, endoff;
221 pgoff = ((address - area->vm_start) >> PAGE_CACHE_SHIFT)
223 endoff = ((area->vm_end - area->vm_start) >> PAGE_CACHE_SHIFT)
226 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
231 page = mapping->a_ops->get_xip_page(mapping, pgoff*(PAGE_SIZE/512), 0);
233 BUG_ON(!PageUptodate(page));
236 if (PTR_ERR(page) != -ENODATA)
240 if ((area->vm_flags & (VM_WRITE | VM_MAYWRITE)) &&
241 (area->vm_flags & (VM_SHARED| VM_MAYSHARE)) &&
242 (!(mapping->host->i_sb->s_flags & MS_RDONLY))) {
243 /* maybe shared writable, allocate new block */
244 page = mapping->a_ops->get_xip_page (mapping,
245 pgoff*(PAGE_SIZE/512), 1);
248 BUG_ON(!PageUptodate(page));
249 /* unmap page at pgoff from all other vmas */
250 __xip_unmap(mapping, pgoff);
252 /* not shared and writable, use empty_zero_page */
253 page = virt_to_page(empty_zero_page);
259 static struct vm_operations_struct xip_file_vm_ops = {
260 .nopage = xip_file_nopage,
263 int xip_file_mmap(struct file * file, struct vm_area_struct * vma)
265 BUG_ON(!file->f_mapping->a_ops->get_xip_page);
268 vma->vm_ops = &xip_file_vm_ops;
271 EXPORT_SYMBOL_GPL(xip_file_mmap);
274 __xip_file_write(struct file *filp, const char __user *buf,
275 size_t count, loff_t pos, loff_t *ppos)
277 struct address_space * mapping = filp->f_mapping;
278 struct address_space_operations *a_ops = mapping->a_ops;
279 struct inode *inode = mapping->host;
285 BUG_ON(!mapping->a_ops->get_xip_page);
289 unsigned long offset;
292 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
293 index = pos >> PAGE_CACHE_SHIFT;
294 bytes = PAGE_CACHE_SIZE - offset;
299 * Bring in the user page that we will copy from _first_.
300 * Otherwise there's a nasty deadlock on copying from the
301 * same page as we're writing to, without it being marked
304 fault_in_pages_readable(buf, bytes);
306 page = a_ops->get_xip_page(mapping,
307 index*(PAGE_SIZE/512), 0);
308 if (IS_ERR(page) && (PTR_ERR(page) == -ENODATA)) {
309 /* we allocate a new page unmap it */
310 page = a_ops->get_xip_page(mapping,
311 index*(PAGE_SIZE/512), 1);
313 /* unmap page at pgoff from all other vmas */
314 __xip_unmap(mapping, index);
318 status = PTR_ERR(page);
322 BUG_ON(!PageUptodate(page));
324 copied = filemap_copy_from_user(page, offset, buf, bytes);
325 flush_dcache_page(page);
326 if (likely(copied > 0)) {
336 if (unlikely(copied != bytes))
344 * No need to use i_size_read() here, the i_size
345 * cannot change under us because we hold i_sem.
347 if (pos > inode->i_size) {
348 i_size_write(inode, pos);
349 mark_inode_dirty(inode);
352 return written ? written : status;
356 xip_file_write(struct file *filp, const char __user *buf, size_t len,
359 struct address_space *mapping = filp->f_mapping;
360 struct inode *inode = mapping->host;
367 if (!access_ok(VERIFY_READ, buf, len)) {
375 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
377 /* We can write back this queue in page reclaim */
378 current->backing_dev_info = mapping->backing_dev_info;
380 ret = generic_write_checks(filp, &pos, &count, S_ISBLK(inode->i_mode));
386 ret = remove_suid(filp->f_dentry);
390 inode_update_time(inode, 1);
392 ret = __xip_file_write (filp, buf, count, pos, ppos);
395 current->backing_dev_info = NULL;
400 EXPORT_SYMBOL_GPL(xip_file_write);
403 * truncate a page used for execute in place
404 * functionality is analog to block_truncate_page but does use get_xip_page
405 * to get the page instead of page cache
408 xip_truncate_page(struct address_space *mapping, loff_t from)
410 pgoff_t index = from >> PAGE_CACHE_SHIFT;
411 unsigned offset = from & (PAGE_CACHE_SIZE-1);
417 BUG_ON(!mapping->a_ops->get_xip_page);
419 blocksize = 1 << mapping->host->i_blkbits;
420 length = offset & (blocksize - 1);
422 /* Block boundary? Nothing to do */
426 length = blocksize - length;
428 page = mapping->a_ops->get_xip_page(mapping,
429 index*(PAGE_SIZE/512), 0);
432 if (unlikely(IS_ERR(page))) {
433 if (PTR_ERR(page) == -ENODATA)
434 /* Hole? No need to truncate */
437 return PTR_ERR(page);
439 BUG_ON(!PageUptodate(page));
440 kaddr = kmap_atomic(page, KM_USER0);
441 memset(kaddr + offset, 0, length);
442 kunmap_atomic(kaddr, KM_USER0);
444 flush_dcache_page(page);
447 EXPORT_SYMBOL_GPL(xip_truncate_page);