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