blob: 0d105aeff82fe258f06eaacbb8205ade160436cb [file] [log] [blame]
Carsten Otteceffc072005-06-23 22:05:25 -07001/*
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 Gortmakerb95f1b312011-10-16 02:01:52 -040013#include <linux/export.h>
Carsten Otteceffc072005-06-23 22:05:25 -070014#include <linux/uio.h>
15#include <linux/rmap.h>
Andrea Arcangelicddb8a52008-07-28 15:46:29 -070016#include <linux/mmu_notifier.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040017#include <linux/sched.h>
Nick Piggin538f8ea62008-08-20 14:09:20 -070018#include <linux/seqlock.h>
19#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/gfp.h>
Carsten Otteceffc072005-06-23 22:05:25 -070021#include <asm/tlbflush.h>
Nick Piggin70688e42008-04-28 02:13:02 -070022#include <asm/io.h>
Carsten Otteceffc072005-06-23 22:05:25 -070023
24/*
Carsten Ottea76c0b92007-03-29 01:20:39 -070025 * We do use our own empty page to avoid interference with other users
26 * of ZERO_PAGE(), such as /dev/zero
27 */
Nick Piggin538f8ea62008-08-20 14:09:20 -070028static DEFINE_MUTEX(xip_sparse_mutex);
John Stultz1ca7d672013-10-07 15:51:59 -070029static seqcount_t xip_sparse_seq = SEQCNT_ZERO(xip_sparse_seq);
Carsten Ottea76c0b92007-03-29 01:20:39 -070030static struct page *__xip_sparse_page;
31
Nick Piggin538f8ea62008-08-20 14:09:20 -070032/* called under xip_sparse_mutex */
Carsten Ottea76c0b92007-03-29 01:20:39 -070033static struct page *xip_sparse_page(void)
34{
35 if (!__xip_sparse_page) {
Akinobu Mitac51b1a12008-01-08 15:32:57 -080036 struct page *page = alloc_page(GFP_HIGHUSER | __GFP_ZERO);
37
Nick Piggin538f8ea62008-08-20 14:09:20 -070038 if (page)
39 __xip_sparse_page = page;
Carsten Ottea76c0b92007-03-29 01:20:39 -070040 }
41 return __xip_sparse_page;
42}
43
44/*
Carsten Otteceffc072005-06-23 22:05:25 -070045 * This is a file read routine for execute in place files, and uses
Nick Piggin70688e42008-04-28 02:13:02 -070046 * the mapping->a_ops->get_xip_mem() function for the actual low-level
Carsten Otteceffc072005-06-23 22:05:25 -070047 * stuff.
48 *
49 * Note the struct file* is not used at all. It may be NULL.
50 */
Nick Piggin70688e42008-04-28 02:13:02 -070051static ssize_t
Carsten Otteceffc072005-06-23 22:05:25 -070052do_xip_mapping_read(struct address_space *mapping,
53 struct file_ra_state *_ra,
54 struct file *filp,
Nick Piggin70688e42008-04-28 02:13:02 -070055 char __user *buf,
56 size_t len,
57 loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -070058{
59 struct inode *inode = mapping->host;
Jan Kara2004dc82008-02-08 04:20:11 -080060 pgoff_t index, end_index;
61 unsigned long offset;
Nick Piggin70688e42008-04-28 02:13:02 -070062 loff_t isize, pos;
63 size_t copied = 0, error = 0;
Carsten Otteceffc072005-06-23 22:05:25 -070064
Nick Piggin70688e42008-04-28 02:13:02 -070065 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -070066
Nick Piggin70688e42008-04-28 02:13:02 -070067 pos = *ppos;
68 index = pos >> PAGE_CACHE_SHIFT;
69 offset = pos & ~PAGE_CACHE_MASK;
Carsten Otteceffc072005-06-23 22:05:25 -070070
71 isize = i_size_read(inode);
72 if (!isize)
73 goto out;
74
75 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Nick Piggin70688e42008-04-28 02:13:02 -070076 do {
77 unsigned long nr, left;
78 void *xip_mem;
79 unsigned long xip_pfn;
80 int zero = 0;
Carsten Otteceffc072005-06-23 22:05:25 -070081
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 Schwidefsky58984ce2009-04-02 16:56:42 -070093 if (nr > len - copied)
94 nr = len - copied;
Carsten Otteceffc072005-06-23 22:05:25 -070095
Nick Piggin70688e42008-04-28 02:13:02 -070096 error = mapping->a_ops->get_xip_mem(mapping, index, 0,
97 &xip_mem, &xip_pfn);
98 if (unlikely(error)) {
99 if (error == -ENODATA) {
Carsten Otteceffc072005-06-23 22:05:25 -0700100 /* sparse */
Nick Piggin70688e42008-04-28 02:13:02 -0700101 zero = 1;
102 } else
Carsten Otteceffc072005-06-23 22:05:25 -0700103 goto out;
Carsten Otteafa597b2005-07-15 03:56:30 -0700104 }
Carsten Otteceffc072005-06-23 22:05:25 -0700105
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 Piggin70688e42008-04-28 02:13:02 -0700111 /* address based flush */ ;
Carsten Otteceffc072005-06-23 22:05:25 -0700112
113 /*
Nick Piggin70688e42008-04-28 02:13:02 -0700114 * Ok, we have the mem, so now we can copy it to user space...
Carsten Otteceffc072005-06-23 22:05:25 -0700115 *
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 Piggin70688e42008-04-28 02:13:02 -0700122 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 Otteceffc072005-06-23 22:05:25 -0700134 index += offset >> PAGE_CACHE_SHIFT;
135 offset &= ~PAGE_CACHE_MASK;
Nick Piggin70688e42008-04-28 02:13:02 -0700136 } while (copied < len);
Carsten Otteceffc072005-06-23 22:05:25 -0700137
138out:
Nick Piggin70688e42008-04-28 02:13:02 -0700139 *ppos = pos + copied;
Carsten Otteceffc072005-06-23 22:05:25 -0700140 if (filp)
141 file_accessed(filp);
Nick Piggin70688e42008-04-28 02:13:02 -0700142
143 return (copied ? copied : error);
Carsten Otteceffc072005-06-23 22:05:25 -0700144}
145
Carsten Otteceffc072005-06-23 22:05:25 -0700146ssize_t
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700147xip_file_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700148{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700149 if (!access_ok(VERIFY_WRITE, buf, len))
150 return -EFAULT;
151
Nick Piggin70688e42008-04-28 02:13:02 -0700152 return do_xip_mapping_read(filp->f_mapping, &filp->f_ra, filp,
153 buf, len, ppos);
Carsten Otteceffc072005-06-23 22:05:25 -0700154}
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700155EXPORT_SYMBOL_GPL(xip_file_read);
Carsten Otteceffc072005-06-23 22:05:25 -0700156
Carsten Otteceffc072005-06-23 22:05:25 -0700157/*
Davidlohr Bueso874bfca2014-12-12 16:54:33 -0800158 * __xip_unmap is invoked from xip_unmap and xip_write
Carsten Otteceffc072005-06-23 22:05:25 -0700159 *
160 * This function walks all vmas of the address_space and unmaps the
Carsten Ottea76c0b92007-03-29 01:20:39 -0700161 * __xip_sparse_page when found at pgoff.
Carsten Otteceffc072005-06-23 22:05:25 -0700162 */
Davidlohr Bueso874bfca2014-12-12 16:54:33 -0800163static void __xip_unmap(struct address_space * mapping, unsigned long pgoff)
Carsten Otteceffc072005-06-23 22:05:25 -0700164{
165 struct vm_area_struct *vma;
Hugh Dickins67b02f12005-10-29 18:16:31 -0700166 struct page *page;
Nick Piggin538f8ea62008-08-20 14:09:20 -0700167 unsigned count;
168 int locked = 0;
169
170 count = read_seqcount_begin(&xip_sparse_seq);
Carsten Otteceffc072005-06-23 22:05:25 -0700171
Carsten Ottea76c0b92007-03-29 01:20:39 -0700172 page = __xip_sparse_page;
173 if (!page)
174 return;
175
Nick Piggin538f8ea62008-08-20 14:09:20 -0700176retry:
Davidlohr Bueso874bfca2014-12-12 16:54:33 -0800177 i_mmap_lock_read(mapping);
Michel Lespinasse6b2dbba2012-10-08 16:31:25 -0700178 vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) {
Davidlohr Bueso874bfca2014-12-12 16:54:33 -0800179 pte_t *pte, pteval;
180 spinlock_t *ptl;
181 struct mm_struct *mm = vma->vm_mm;
182 unsigned long address = vma->vm_start +
Carsten Otteceffc072005-06-23 22:05:25 -0700183 ((pgoff - vma->vm_pgoff) << PAGE_SHIFT);
Davidlohr Bueso874bfca2014-12-12 16:54:33 -0800184
Carsten Otteceffc072005-06-23 22:05:25 -0700185 BUG_ON(address < vma->vm_start || address >= vma->vm_end);
Nick Piggin479db0b2008-08-20 14:09:18 -0700186 pte = page_check_address(page, mm, address, &ptl, 1);
Hugh Dickinsc0718802005-10-29 18:16:31 -0700187 if (pte) {
Carsten Otteceffc072005-06-23 22:05:25 -0700188 /* Nuke the page table entry. */
Geert Uytterhoeven082ff0a2005-07-12 13:58:18 -0700189 flush_cache_page(vma, address, pte_pfn(*pte));
Sagi Grimberg2ec74c32012-10-08 16:33:33 -0700190 pteval = ptep_clear_flush(vma, address, pte);
Hugh Dickinsedc315f2009-01-06 14:40:11 -0800191 page_remove_rmap(page);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800192 dec_mm_counter(mm, MM_FILEPAGES);
Carsten Otteceffc072005-06-23 22:05:25 -0700193 BUG_ON(pte_dirty(pteval));
Hugh Dickinsc0718802005-10-29 18:16:31 -0700194 pte_unmap_unlock(pte, ptl);
Sagi Grimberg2ec74c32012-10-08 16:33:33 -0700195 /* must invalidate_page _before_ freeing the page */
196 mmu_notifier_invalidate_page(mm, address);
Nick Pigginb5810032005-10-29 18:16:12 -0700197 page_cache_release(page);
Carsten Otteceffc072005-06-23 22:05:25 -0700198 }
199 }
Davidlohr Bueso874bfca2014-12-12 16:54:33 -0800200 i_mmap_unlock_read(mapping);
Nick Piggin538f8ea62008-08-20 14:09:20 -0700201
202 if (locked) {
203 mutex_unlock(&xip_sparse_mutex);
204 } else if (read_seqcount_retry(&xip_sparse_seq, count)) {
205 mutex_lock(&xip_sparse_mutex);
206 locked = 1;
207 goto retry;
208 }
Carsten Otteceffc072005-06-23 22:05:25 -0700209}
210
211/*
Nick Piggin54cb8822007-07-19 01:46:59 -0700212 * xip_fault() is invoked via the vma operations vector for a
Carsten Otteceffc072005-06-23 22:05:25 -0700213 * mapped memory region to read in file data during a page fault.
214 *
Nick Piggin54cb8822007-07-19 01:46:59 -0700215 * This function is derived from filemap_fault, but used for execute in place
Carsten Otteceffc072005-06-23 22:05:25 -0700216 */
Nick Piggin70688e42008-04-28 02:13:02 -0700217static int xip_file_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Carsten Otteceffc072005-06-23 22:05:25 -0700218{
Nick Piggin70688e42008-04-28 02:13:02 -0700219 struct file *file = vma->vm_file;
Carsten Otteceffc072005-06-23 22:05:25 -0700220 struct address_space *mapping = file->f_mapping;
221 struct inode *inode = mapping->host;
Nick Piggin54cb8822007-07-19 01:46:59 -0700222 pgoff_t size;
Nick Piggin70688e42008-04-28 02:13:02 -0700223 void *xip_mem;
224 unsigned long xip_pfn;
225 struct page *page;
226 int error;
Carsten Otteceffc072005-06-23 22:05:25 -0700227
Nick Piggin54cb8822007-07-19 01:46:59 -0700228 /* XXX: are VM_FAULT_ codes OK? */
Nick Piggin538f8ea62008-08-20 14:09:20 -0700229again:
Carsten Otteceffc072005-06-23 22:05:25 -0700230 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Nick Piggind0217ac2007-07-19 01:47:03 -0700231 if (vmf->pgoff >= size)
232 return VM_FAULT_SIGBUS;
Carsten Otteceffc072005-06-23 22:05:25 -0700233
Nick Piggin70688e42008-04-28 02:13:02 -0700234 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 0,
235 &xip_mem, &xip_pfn);
236 if (likely(!error))
237 goto found;
238 if (error != -ENODATA)
Nick Piggind0217ac2007-07-19 01:47:03 -0700239 return VM_FAULT_OOM;
Carsten Otteceffc072005-06-23 22:05:25 -0700240
241 /* sparse block */
Nick Piggin70688e42008-04-28 02:13:02 -0700242 if ((vma->vm_flags & (VM_WRITE | VM_MAYWRITE)) &&
243 (vma->vm_flags & (VM_SHARED | VM_MAYSHARE)) &&
Carsten Otteceffc072005-06-23 22:05:25 -0700244 (!(mapping->host->i_sb->s_flags & MS_RDONLY))) {
Nick Piggin70688e42008-04-28 02:13:02 -0700245 int err;
246
Carsten Otteceffc072005-06-23 22:05:25 -0700247 /* maybe shared writable, allocate new block */
Nick Piggin14bac5a2008-08-20 14:09:20 -0700248 mutex_lock(&xip_sparse_mutex);
Nick Piggin70688e42008-04-28 02:13:02 -0700249 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 1,
250 &xip_mem, &xip_pfn);
Nick Piggin14bac5a2008-08-20 14:09:20 -0700251 mutex_unlock(&xip_sparse_mutex);
Nick Piggin70688e42008-04-28 02:13:02 -0700252 if (error)
Nick Piggind0217ac2007-07-19 01:47:03 -0700253 return VM_FAULT_SIGBUS;
Nick Piggin70688e42008-04-28 02:13:02 -0700254 /* unmap sparse mappings at pgoff from all other vmas */
Nick Piggind0217ac2007-07-19 01:47:03 -0700255 __xip_unmap(mapping, vmf->pgoff);
Nick Piggin70688e42008-04-28 02:13:02 -0700256
257found:
258 err = vm_insert_mixed(vma, (unsigned long)vmf->virtual_address,
259 xip_pfn);
260 if (err == -ENOMEM)
261 return VM_FAULT_OOM;
Carsten Otte99f02ef2012-02-03 15:37:14 -0800262 /*
263 * err == -EBUSY is fine, we've raced against another thread
264 * that faulted-in the same page
265 */
266 if (err != -EBUSY)
267 BUG_ON(err);
Nick Piggin70688e42008-04-28 02:13:02 -0700268 return VM_FAULT_NOPAGE;
Carsten Otteceffc072005-06-23 22:05:25 -0700269 } else {
Nick Piggin538f8ea62008-08-20 14:09:20 -0700270 int err, ret = VM_FAULT_OOM;
271
272 mutex_lock(&xip_sparse_mutex);
273 write_seqcount_begin(&xip_sparse_seq);
274 error = mapping->a_ops->get_xip_mem(mapping, vmf->pgoff, 0,
275 &xip_mem, &xip_pfn);
276 if (unlikely(!error)) {
277 write_seqcount_end(&xip_sparse_seq);
278 mutex_unlock(&xip_sparse_mutex);
279 goto again;
280 }
281 if (error != -ENODATA)
282 goto out;
Carsten Ottea76c0b92007-03-29 01:20:39 -0700283 /* not shared and writable, use xip_sparse_page() */
284 page = xip_sparse_page();
Nick Piggind0217ac2007-07-19 01:47:03 -0700285 if (!page)
Nick Piggin538f8ea62008-08-20 14:09:20 -0700286 goto out;
287 err = vm_insert_page(vma, (unsigned long)vmf->virtual_address,
288 page);
289 if (err == -ENOMEM)
290 goto out;
Carsten Otteceffc072005-06-23 22:05:25 -0700291
Nick Piggin538f8ea62008-08-20 14:09:20 -0700292 ret = VM_FAULT_NOPAGE;
293out:
294 write_seqcount_end(&xip_sparse_seq);
295 mutex_unlock(&xip_sparse_mutex);
296
297 return ret;
Nick Piggin70688e42008-04-28 02:13:02 -0700298 }
Carsten Otteceffc072005-06-23 22:05:25 -0700299}
300
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400301static const struct vm_operations_struct xip_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700302 .fault = xip_file_fault,
Jan Kara4fcf1c62012-06-12 16:20:29 +0200303 .page_mkwrite = filemap_page_mkwrite,
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -0700304 .remap_pages = generic_file_remap_pages,
Carsten Otteceffc072005-06-23 22:05:25 -0700305};
306
307int xip_file_mmap(struct file * file, struct vm_area_struct * vma)
308{
Nick Piggin70688e42008-04-28 02:13:02 -0700309 BUG_ON(!file->f_mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700310
311 file_accessed(file);
312 vma->vm_ops = &xip_file_vm_ops;
Konstantin Khlebnikov0b173bc2012-10-08 16:28:46 -0700313 vma->vm_flags |= VM_MIXEDMAP;
Carsten Otteceffc072005-06-23 22:05:25 -0700314 return 0;
315}
316EXPORT_SYMBOL_GPL(xip_file_mmap);
317
318static ssize_t
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700319__xip_file_write(struct file *filp, const char __user *buf,
320 size_t count, loff_t pos, loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700321{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700322 struct address_space * mapping = filp->f_mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700323 const struct address_space_operations *a_ops = mapping->a_ops;
Carsten Otteceffc072005-06-23 22:05:25 -0700324 struct inode *inode = mapping->host;
325 long status = 0;
Carsten Otteceffc072005-06-23 22:05:25 -0700326 size_t bytes;
Carsten Otteceffc072005-06-23 22:05:25 -0700327 ssize_t written = 0;
328
Nick Piggin70688e42008-04-28 02:13:02 -0700329 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700330
Carsten Otteceffc072005-06-23 22:05:25 -0700331 do {
332 unsigned long index;
333 unsigned long offset;
334 size_t copied;
Nick Piggin70688e42008-04-28 02:13:02 -0700335 void *xip_mem;
336 unsigned long xip_pfn;
Carsten Otteceffc072005-06-23 22:05:25 -0700337
338 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
339 index = pos >> PAGE_CACHE_SHIFT;
340 bytes = PAGE_CACHE_SIZE - offset;
341 if (bytes > count)
342 bytes = count;
343
Nick Piggin70688e42008-04-28 02:13:02 -0700344 status = a_ops->get_xip_mem(mapping, index, 0,
345 &xip_mem, &xip_pfn);
346 if (status == -ENODATA) {
Carsten Otteceffc072005-06-23 22:05:25 -0700347 /* we allocate a new page unmap it */
Nick Piggin14bac5a2008-08-20 14:09:20 -0700348 mutex_lock(&xip_sparse_mutex);
Nick Piggin70688e42008-04-28 02:13:02 -0700349 status = a_ops->get_xip_mem(mapping, index, 1,
350 &xip_mem, &xip_pfn);
Nick Piggin14bac5a2008-08-20 14:09:20 -0700351 mutex_unlock(&xip_sparse_mutex);
Nick Piggin70688e42008-04-28 02:13:02 -0700352 if (!status)
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700353 /* unmap page at pgoff from all other vmas */
354 __xip_unmap(mapping, index);
Carsten Otteceffc072005-06-23 22:05:25 -0700355 }
356
Nick Piggin70688e42008-04-28 02:13:02 -0700357 if (status)
Carsten Otteceffc072005-06-23 22:05:25 -0700358 break;
Carsten Otteceffc072005-06-23 22:05:25 -0700359
Nick Piggin4a9e5ef2007-10-16 01:24:58 -0700360 copied = bytes -
Nick Piggin70688e42008-04-28 02:13:02 -0700361 __copy_from_user_nocache(xip_mem + offset, buf, bytes);
Nick Piggin4a9e5ef2007-10-16 01:24:58 -0700362
Carsten Otteceffc072005-06-23 22:05:25 -0700363 if (likely(copied > 0)) {
364 status = copied;
365
366 if (status >= 0) {
367 written += status;
368 count -= status;
369 pos += status;
370 buf += status;
Carsten Otteceffc072005-06-23 22:05:25 -0700371 }
372 }
373 if (unlikely(copied != bytes))
374 if (status >= 0)
375 status = -EFAULT;
376 if (status < 0)
377 break;
378 } while (count);
379 *ppos = pos;
380 /*
381 * No need to use i_size_read() here, the i_size
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800382 * cannot change under us because we hold i_mutex.
Carsten Otteceffc072005-06-23 22:05:25 -0700383 */
384 if (pos > inode->i_size) {
385 i_size_write(inode, pos);
386 mark_inode_dirty(inode);
387 }
388
389 return written ? written : status;
390}
391
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700392ssize_t
393xip_file_write(struct file *filp, const char __user *buf, size_t len,
394 loff_t *ppos)
Carsten Otteceffc072005-06-23 22:05:25 -0700395{
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700396 struct address_space *mapping = filp->f_mapping;
397 struct inode *inode = mapping->host;
398 size_t count;
399 loff_t pos;
400 ssize_t ret;
Carsten Otteceffc072005-06-23 22:05:25 -0700401
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800402 mutex_lock(&inode->i_mutex);
Carsten Otteceffc072005-06-23 22:05:25 -0700403
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700404 if (!access_ok(VERIFY_READ, buf, len)) {
405 ret=-EFAULT;
406 goto out_up;
Carsten Otteceffc072005-06-23 22:05:25 -0700407 }
408
Carsten Otteceffc072005-06-23 22:05:25 -0700409 pos = *ppos;
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700410 count = len;
Carsten Otteceffc072005-06-23 22:05:25 -0700411
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700412 /* We can write back this queue in page reclaim */
413 current->backing_dev_info = mapping->backing_dev_info;
Carsten Otteceffc072005-06-23 22:05:25 -0700414
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700415 ret = generic_write_checks(filp, &pos, &count, S_ISBLK(inode->i_mode));
416 if (ret)
417 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700418 if (count == 0)
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700419 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700420
Miklos Szeredi2f1936b2008-06-24 16:50:14 +0200421 ret = file_remove_suid(filp);
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700422 if (ret)
423 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700424
Josef Bacikc3b2da32012-03-26 09:59:21 -0400425 ret = file_update_time(filp);
426 if (ret)
427 goto out_backing;
Carsten Otteceffc072005-06-23 22:05:25 -0700428
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700429 ret = __xip_file_write (filp, buf, count, pos, ppos);
Carsten Otteceffc072005-06-23 22:05:25 -0700430
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700431 out_backing:
432 current->backing_dev_info = NULL;
433 out_up:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800434 mutex_unlock(&inode->i_mutex);
Carsten Otteceffc072005-06-23 22:05:25 -0700435 return ret;
436}
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700437EXPORT_SYMBOL_GPL(xip_file_write);
Carsten Otteceffc072005-06-23 22:05:25 -0700438
439/*
440 * truncate a page used for execute in place
Nick Piggin70688e42008-04-28 02:13:02 -0700441 * functionality is analog to block_truncate_page but does use get_xip_mem
Carsten Otteceffc072005-06-23 22:05:25 -0700442 * to get the page instead of page cache
443 */
444int
445xip_truncate_page(struct address_space *mapping, loff_t from)
446{
447 pgoff_t index = from >> PAGE_CACHE_SHIFT;
448 unsigned offset = from & (PAGE_CACHE_SIZE-1);
449 unsigned blocksize;
450 unsigned length;
Nick Piggin70688e42008-04-28 02:13:02 -0700451 void *xip_mem;
452 unsigned long xip_pfn;
453 int err;
Carsten Otteceffc072005-06-23 22:05:25 -0700454
Nick Piggin70688e42008-04-28 02:13:02 -0700455 BUG_ON(!mapping->a_ops->get_xip_mem);
Carsten Otteceffc072005-06-23 22:05:25 -0700456
457 blocksize = 1 << mapping->host->i_blkbits;
458 length = offset & (blocksize - 1);
459
460 /* Block boundary? Nothing to do */
461 if (!length)
462 return 0;
463
464 length = blocksize - length;
465
Nick Piggin70688e42008-04-28 02:13:02 -0700466 err = mapping->a_ops->get_xip_mem(mapping, index, 0,
467 &xip_mem, &xip_pfn);
468 if (unlikely(err)) {
469 if (err == -ENODATA)
Carsten Otteceffc072005-06-23 22:05:25 -0700470 /* Hole? No need to truncate */
471 return 0;
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700472 else
Nick Piggin70688e42008-04-28 02:13:02 -0700473 return err;
Carsten Otteafa597b2005-07-15 03:56:30 -0700474 }
Nick Piggin70688e42008-04-28 02:13:02 -0700475 memset(xip_mem + offset, 0, length);
Carsten Otteeb6fe0c2005-06-23 22:05:28 -0700476 return 0;
Carsten Otteceffc072005-06-23 22:05:25 -0700477}
478EXPORT_SYMBOL_GPL(xip_truncate_page);