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