2 * linux/fs/9p/vfs_addr.c
4 * This file contians vfs address (mmap) ops for 9P2000.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
26 #include <linux/module.h>
27 #include <linux/errno.h>
29 #include <linux/file.h>
30 #include <linux/stat.h>
31 #include <linux/string.h>
32 #include <linux/inet.h>
33 #include <linux/pagemap.h>
34 #include <linux/idr.h>
35 #include <linux/sched.h>
36 #include <linux/uio.h>
37 #include <linux/bvec.h>
38 #include <net/9p/9p.h>
39 #include <net/9p/client.h>
47 * v9fs_fid_readpage - read an entire page in from 9P
49 * @fid: fid being read
50 * @page: structure to page
53 static int v9fs_fid_readpage(struct p9_fid *fid, struct page *page)
55 struct inode *inode = page->mapping->host;
56 struct bio_vec bvec = {.bv_page = page, .bv_len = PAGE_SIZE};
60 p9_debug(P9_DEBUG_VFS, "\n");
62 BUG_ON(!PageLocked(page));
64 retval = v9fs_readpage_from_fscache(inode, page);
68 iov_iter_bvec(&to, ITER_BVEC | READ, &bvec, 1, PAGE_SIZE);
70 retval = p9_client_read(fid, page_offset(page), &to, &err);
72 v9fs_uncache_page(inode, page);
77 zero_user(page, retval, PAGE_SIZE - retval);
78 flush_dcache_page(page);
79 SetPageUptodate(page);
81 v9fs_readpage_to_fscache(inode, page);
90 * v9fs_vfs_readpage - read an entire page in from 9P
92 * @filp: file being read
93 * @page: structure to page
97 static int v9fs_vfs_readpage(struct file *filp, struct page *page)
99 return v9fs_fid_readpage(filp->private_data, page);
103 * v9fs_vfs_readpages - read a set of pages from 9P
105 * @filp: file being read
106 * @mapping: the address space
107 * @pages: list of pages to read
108 * @nr_pages: count of pages to read
112 static int v9fs_vfs_readpages(struct file *filp, struct address_space *mapping,
113 struct list_head *pages, unsigned nr_pages)
118 inode = mapping->host;
119 p9_debug(P9_DEBUG_VFS, "inode: %p file: %p\n", inode, filp);
121 ret = v9fs_readpages_from_fscache(inode, mapping, pages, &nr_pages);
125 ret = read_cache_pages(mapping, pages, (void *)v9fs_vfs_readpage, filp);
126 p9_debug(P9_DEBUG_VFS, " = %d\n", ret);
131 * v9fs_release_page - release the private state associated with a page
133 * Returns 1 if the page can be released, false otherwise.
136 static int v9fs_release_page(struct page *page, gfp_t gfp)
138 if (PagePrivate(page))
140 return v9fs_fscache_release_page(page, gfp);
144 * v9fs_invalidate_page - Invalidate a page completely or partially
146 * @page: structure to page
147 * @offset: offset in the page
150 static void v9fs_invalidate_page(struct page *page, unsigned int offset,
154 * If called with zero offset, we should release
155 * the private state assocated with the page
157 if (offset == 0 && length == PAGE_SIZE)
158 v9fs_fscache_invalidate_page(page);
161 static int v9fs_vfs_writepage_locked(struct page *page)
163 struct inode *inode = page->mapping->host;
164 struct v9fs_inode *v9inode = V9FS_I(inode);
165 loff_t size = i_size_read(inode);
166 struct iov_iter from;
170 if (page->index == size >> PAGE_SHIFT)
171 len = size & ~PAGE_MASK;
178 iov_iter_bvec(&from, ITER_BVEC | WRITE, &bvec, 1, len);
180 /* We should have writeback_fid always set */
181 BUG_ON(!v9inode->writeback_fid);
183 set_page_writeback(page);
185 p9_client_write(v9inode->writeback_fid, page_offset(page), &from, &err);
187 end_page_writeback(page);
191 static int v9fs_vfs_writepage(struct page *page, struct writeback_control *wbc)
195 p9_debug(P9_DEBUG_VFS, "page %p\n", page);
197 retval = v9fs_vfs_writepage_locked(page);
199 if (retval == -EAGAIN) {
200 redirty_page_for_writepage(wbc, page);
204 mapping_set_error(page->mapping, retval);
214 * v9fs_launder_page - Writeback a dirty page
215 * Returns 0 on success.
218 static int v9fs_launder_page(struct page *page)
221 struct inode *inode = page->mapping->host;
223 v9fs_fscache_wait_on_page_write(inode, page);
224 if (clear_page_dirty_for_io(page)) {
225 retval = v9fs_vfs_writepage_locked(page);
233 * v9fs_direct_IO - 9P address space operation for direct I/O
234 * @iocb: target I/O control block
236 * The presence of v9fs_direct_IO() in the address space ops vector
237 * allowes open() O_DIRECT flags which would have failed otherwise.
239 * In the non-cached mode, we shunt off direct read and write requests before
240 * the VFS gets them, so this method should never be called.
242 * Direct IO is not 'yet' supported in the cached mode. Hence when
243 * this routine is called through generic_file_aio_read(), the read/write fails
248 v9fs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
250 struct file *file = iocb->ki_filp;
251 loff_t pos = iocb->ki_pos;
254 if (iov_iter_rw(iter) == WRITE) {
255 n = p9_client_write(file->private_data, pos, iter, &err);
257 struct inode *inode = file_inode(file);
258 loff_t i_size = i_size_read(inode);
259 if (pos + n > i_size)
260 inode_add_bytes(inode, pos + n - i_size);
263 n = p9_client_read(file->private_data, pos, iter, &err);
268 static int v9fs_write_begin(struct file *filp, struct address_space *mapping,
269 loff_t pos, unsigned len, unsigned flags,
270 struct page **pagep, void **fsdata)
274 struct v9fs_inode *v9inode;
275 pgoff_t index = pos >> PAGE_SHIFT;
276 struct inode *inode = mapping->host;
279 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
281 v9inode = V9FS_I(inode);
283 page = grab_cache_page_write_begin(mapping, index, flags);
288 BUG_ON(!v9inode->writeback_fid);
289 if (PageUptodate(page))
292 if (len == PAGE_SIZE)
295 retval = v9fs_fid_readpage(v9inode->writeback_fid, page);
304 static int v9fs_write_end(struct file *filp, struct address_space *mapping,
305 loff_t pos, unsigned len, unsigned copied,
306 struct page *page, void *fsdata)
308 loff_t last_pos = pos + copied;
309 struct inode *inode = page->mapping->host;
311 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
313 if (!PageUptodate(page)) {
314 if (unlikely(copied < len)) {
317 } else if (len == PAGE_SIZE) {
318 SetPageUptodate(page);
322 * No need to use i_size_read() here, the i_size
323 * cannot change under us because we hold the i_mutex.
325 if (last_pos > inode->i_size) {
326 inode_add_bytes(inode, last_pos - inode->i_size);
327 i_size_write(inode, last_pos);
329 set_page_dirty(page);
338 const struct address_space_operations v9fs_addr_operations = {
339 .readpage = v9fs_vfs_readpage,
340 .readpages = v9fs_vfs_readpages,
341 .set_page_dirty = __set_page_dirty_nobuffers,
342 .writepage = v9fs_vfs_writepage,
343 .write_begin = v9fs_write_begin,
344 .write_end = v9fs_write_end,
345 .releasepage = v9fs_release_page,
346 .invalidatepage = v9fs_invalidate_page,
347 .launder_page = v9fs_launder_page,
348 .direct_IO = v9fs_direct_IO,