Thomas Gleixner | 1f32761 | 2019-05-28 09:57:16 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 2 | /* |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 3 | * This file contians vfs address (mmap) ops for 9P2000. |
| 4 | * |
| 5 | * Copyright (C) 2005 by Eric Van Hensbergen <ericvh@gmail.com> |
| 6 | * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/errno.h> |
| 11 | #include <linux/fs.h> |
| 12 | #include <linux/file.h> |
| 13 | #include <linux/stat.h> |
| 14 | #include <linux/string.h> |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 15 | #include <linux/inet.h> |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 16 | #include <linux/pagemap.h> |
| 17 | #include <linux/idr.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 18 | #include <linux/sched.h> |
Christoph Hellwig | e2e40f2 | 2015-02-22 08:58:50 -0800 | [diff] [blame] | 19 | #include <linux/uio.h> |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 20 | #include <linux/netfs.h> |
Latchesar Ionkov | bd238fb | 2007-07-10 17:57:28 -0500 | [diff] [blame] | 21 | #include <net/9p/9p.h> |
| 22 | #include <net/9p/client.h> |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 23 | |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 24 | #include "v9fs.h" |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 25 | #include "v9fs_vfs.h" |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 26 | #include "cache.h" |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 27 | #include "fid.h" |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 28 | |
| 29 | /** |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 30 | * v9fs_req_issue_op - Issue a read from 9P |
| 31 | * @subreq: The read to make |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 32 | */ |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 33 | static void v9fs_req_issue_op(struct netfs_read_subrequest *subreq) |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 34 | { |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 35 | struct netfs_read_request *rreq = subreq->rreq; |
| 36 | struct p9_fid *fid = rreq->netfs_priv; |
Al Viro | e1200fe6 | 2015-04-01 23:42:28 -0400 | [diff] [blame] | 37 | struct iov_iter to; |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 38 | loff_t pos = subreq->start + subreq->transferred; |
| 39 | size_t len = subreq->len - subreq->transferred; |
| 40 | int total, err; |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 41 | |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 42 | iov_iter_xarray(&to, READ, &rreq->mapping->i_pages, pos, len); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 43 | |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 44 | total = p9_client_read(fid, pos, &to, &err); |
| 45 | netfs_subreq_terminated(subreq, err ?: total, false); |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 46 | } |
| 47 | |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 48 | /** |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 49 | * v9fs_init_rreq - Initialise a read request |
| 50 | * @rreq: The read request |
| 51 | * @file: The file being read from |
| 52 | */ |
| 53 | static void v9fs_init_rreq(struct netfs_read_request *rreq, struct file *file) |
| 54 | { |
| 55 | struct p9_fid *fid = file->private_data; |
| 56 | |
| 57 | refcount_inc(&fid->count); |
| 58 | rreq->netfs_priv = fid; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * v9fs_req_cleanup - Cleanup request initialized by v9fs_init_rreq |
| 63 | * @mapping: unused mapping of request to cleanup |
| 64 | * @priv: private data to cleanup, a fid, guaranted non-null. |
| 65 | */ |
| 66 | static void v9fs_req_cleanup(struct address_space *mapping, void *priv) |
| 67 | { |
| 68 | struct p9_fid *fid = priv; |
| 69 | |
| 70 | p9_client_clunk(fid); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * v9fs_is_cache_enabled - Determine if caching is enabled for an inode |
| 75 | * @inode: The inode to check |
| 76 | */ |
| 77 | static bool v9fs_is_cache_enabled(struct inode *inode) |
| 78 | { |
| 79 | struct fscache_cookie *cookie = v9fs_inode_cookie(V9FS_I(inode)); |
| 80 | |
| 81 | return fscache_cookie_enabled(cookie) && !hlist_empty(&cookie->backing_objects); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * v9fs_begin_cache_operation - Begin a cache operation for a read |
| 86 | * @rreq: The read request |
| 87 | */ |
| 88 | static int v9fs_begin_cache_operation(struct netfs_read_request *rreq) |
| 89 | { |
| 90 | struct fscache_cookie *cookie = v9fs_inode_cookie(V9FS_I(rreq->inode)); |
| 91 | |
| 92 | return fscache_begin_read_operation(rreq, cookie); |
| 93 | } |
| 94 | |
| 95 | static const struct netfs_read_request_ops v9fs_req_ops = { |
| 96 | .init_rreq = v9fs_init_rreq, |
| 97 | .is_cache_enabled = v9fs_is_cache_enabled, |
| 98 | .begin_cache_operation = v9fs_begin_cache_operation, |
| 99 | .issue_op = v9fs_req_issue_op, |
| 100 | .cleanup = v9fs_req_cleanup, |
| 101 | }; |
| 102 | |
| 103 | /** |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 104 | * v9fs_vfs_readpage - read an entire page in from 9P |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 105 | * @file: file being read |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 106 | * @page: structure to page |
| 107 | * |
| 108 | */ |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 109 | static int v9fs_vfs_readpage(struct file *file, struct page *page) |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 110 | { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 111 | struct folio *folio = page_folio(page); |
| 112 | |
| 113 | return netfs_readpage(file, folio, &v9fs_req_ops, NULL); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | /** |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 117 | * v9fs_vfs_readahead - read a set of pages from 9P |
| 118 | * @ractl: The readahead parameters |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 119 | */ |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 120 | static void v9fs_vfs_readahead(struct readahead_control *ractl) |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 121 | { |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 122 | netfs_readahead(ractl, &v9fs_req_ops, NULL); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | /** |
| 126 | * v9fs_release_page - release the private state associated with a page |
David Howells | bc86803 | 2021-10-04 22:07:22 +0100 | [diff] [blame] | 127 | * @page: The page to be released |
| 128 | * @gfp: The caller's allocation restrictions |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 129 | * |
| 130 | * Returns 1 if the page can be released, false otherwise. |
| 131 | */ |
| 132 | |
| 133 | static int v9fs_release_page(struct page *page, gfp_t gfp) |
| 134 | { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 135 | struct folio *folio = page_folio(page); |
| 136 | |
| 137 | if (folio_test_private(folio)) |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 138 | return 0; |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 139 | #ifdef CONFIG_9P_FSCACHE |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 140 | if (folio_test_fscache(folio)) { |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 141 | if (!(gfp & __GFP_DIRECT_RECLAIM) || !(gfp & __GFP_FS)) |
| 142 | return 0; |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 143 | folio_wait_fscache(folio); |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 144 | } |
| 145 | #endif |
| 146 | return 1; |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 147 | } |
| 148 | |
| 149 | /** |
| 150 | * v9fs_invalidate_page - Invalidate a page completely or partially |
David Howells | bc86803 | 2021-10-04 22:07:22 +0100 | [diff] [blame] | 151 | * @page: The page to be invalidated |
| 152 | * @offset: offset of the invalidated region |
| 153 | * @length: length of the invalidated region |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 154 | */ |
| 155 | |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 156 | static void v9fs_invalidate_page(struct page *page, unsigned int offset, |
| 157 | unsigned int length) |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 158 | { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 159 | struct folio *folio = page_folio(page); |
| 160 | |
| 161 | folio_wait_fscache(folio); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 162 | } |
| 163 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 164 | static int v9fs_vfs_write_folio_locked(struct folio *folio) |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 165 | { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 166 | struct inode *inode = folio_inode(folio); |
Al Viro | 371098c | 2015-04-01 21:54:42 -0400 | [diff] [blame] | 167 | struct v9fs_inode *v9inode = V9FS_I(inode); |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 168 | loff_t start = folio_pos(folio); |
| 169 | loff_t i_size = i_size_read(inode); |
Al Viro | 371098c | 2015-04-01 21:54:42 -0400 | [diff] [blame] | 170 | struct iov_iter from; |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 171 | size_t len = folio_size(folio); |
| 172 | int err; |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 173 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 174 | if (start >= i_size) |
| 175 | return 0; /* Simultaneous truncation occurred */ |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 176 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 177 | len = min_t(loff_t, i_size - start, len); |
| 178 | |
| 179 | iov_iter_xarray(&from, WRITE, &folio_mapping(folio)->i_pages, start, len); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 180 | |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 181 | /* We should have writeback_fid always set */ |
| 182 | BUG_ON(!v9inode->writeback_fid); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 183 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 184 | folio_start_writeback(folio); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 185 | |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 186 | p9_client_write(v9inode->writeback_fid, start, &from, &err); |
Al Viro | 371098c | 2015-04-01 21:54:42 -0400 | [diff] [blame] | 187 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 188 | folio_end_writeback(folio); |
Al Viro | 371098c | 2015-04-01 21:54:42 -0400 | [diff] [blame] | 189 | return err; |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | static int v9fs_vfs_writepage(struct page *page, struct writeback_control *wbc) |
| 193 | { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 194 | struct folio *folio = page_folio(page); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 195 | int retval; |
| 196 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 197 | p9_debug(P9_DEBUG_VFS, "folio %p\n", folio); |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 198 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 199 | retval = v9fs_vfs_write_folio_locked(folio); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 200 | if (retval < 0) { |
| 201 | if (retval == -EAGAIN) { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 202 | folio_redirty_for_writepage(wbc, folio); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 203 | retval = 0; |
| 204 | } else { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 205 | mapping_set_error(folio_mapping(folio), retval); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 206 | } |
| 207 | } else |
| 208 | retval = 0; |
| 209 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 210 | folio_unlock(folio); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 211 | return retval; |
| 212 | } |
| 213 | |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 214 | /** |
| 215 | * v9fs_launder_page - Writeback a dirty page |
David Howells | bc86803 | 2021-10-04 22:07:22 +0100 | [diff] [blame] | 216 | * @page: The page to be cleaned up |
| 217 | * |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 218 | * Returns 0 on success. |
| 219 | */ |
| 220 | |
| 221 | static int v9fs_launder_page(struct page *page) |
| 222 | { |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 223 | struct folio *folio = page_folio(page); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 224 | int retval; |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 225 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 226 | if (folio_clear_dirty_for_io(folio)) { |
| 227 | retval = v9fs_vfs_write_folio_locked(folio); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 228 | if (retval) |
| 229 | return retval; |
| 230 | } |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 231 | folio_wait_fscache(folio); |
Abhishek Kulkarni | 60e78d2 | 2009-09-23 13:00:27 -0500 | [diff] [blame] | 232 | return 0; |
| 233 | } |
| 234 | |
jvrao | 3e24ad2 | 2010-08-24 15:43:28 +0000 | [diff] [blame] | 235 | /** |
| 236 | * v9fs_direct_IO - 9P address space operation for direct I/O |
jvrao | 3e24ad2 | 2010-08-24 15:43:28 +0000 | [diff] [blame] | 237 | * @iocb: target I/O control block |
David Howells | bc86803 | 2021-10-04 22:07:22 +0100 | [diff] [blame] | 238 | * @iter: The data/buffer to use |
jvrao | 3e24ad2 | 2010-08-24 15:43:28 +0000 | [diff] [blame] | 239 | * |
| 240 | * The presence of v9fs_direct_IO() in the address space ops vector |
| 241 | * allowes open() O_DIRECT flags which would have failed otherwise. |
| 242 | * |
| 243 | * In the non-cached mode, we shunt off direct read and write requests before |
| 244 | * the VFS gets them, so this method should never be called. |
| 245 | * |
| 246 | * Direct IO is not 'yet' supported in the cached mode. Hence when |
| 247 | * this routine is called through generic_file_aio_read(), the read/write fails |
| 248 | * with an error. |
| 249 | * |
| 250 | */ |
Aneesh Kumar K.V | e959b54 | 2011-02-28 17:04:04 +0530 | [diff] [blame] | 251 | static ssize_t |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 252 | v9fs_direct_IO(struct kiocb *iocb, struct iov_iter *iter) |
jvrao | 3e24ad2 | 2010-08-24 15:43:28 +0000 | [diff] [blame] | 253 | { |
Al Viro | 9565a54 | 2015-04-01 22:32:23 -0400 | [diff] [blame] | 254 | struct file *file = iocb->ki_filp; |
Christoph Hellwig | c8b8e32 | 2016-04-07 08:51:58 -0700 | [diff] [blame] | 255 | loff_t pos = iocb->ki_pos; |
Al Viro | 42b1ab9 | 2015-04-01 23:49:24 -0400 | [diff] [blame] | 256 | ssize_t n; |
| 257 | int err = 0; |
Dominique Martinet | 6e195b0 | 2021-11-02 22:16:43 +0900 | [diff] [blame] | 258 | |
Omar Sandoval | 6f67376 | 2015-03-16 04:33:52 -0700 | [diff] [blame] | 259 | if (iov_iter_rw(iter) == WRITE) { |
Al Viro | 42b1ab9 | 2015-04-01 23:49:24 -0400 | [diff] [blame] | 260 | n = p9_client_write(file->private_data, pos, iter, &err); |
| 261 | if (n) { |
Al Viro | 9565a54 | 2015-04-01 22:32:23 -0400 | [diff] [blame] | 262 | struct inode *inode = file_inode(file); |
| 263 | loff_t i_size = i_size_read(inode); |
Dominique Martinet | 6e195b0 | 2021-11-02 22:16:43 +0900 | [diff] [blame] | 264 | |
Al Viro | 42b1ab9 | 2015-04-01 23:49:24 -0400 | [diff] [blame] | 265 | if (pos + n > i_size) |
| 266 | inode_add_bytes(inode, pos + n - i_size); |
Al Viro | 9565a54 | 2015-04-01 22:32:23 -0400 | [diff] [blame] | 267 | } |
Al Viro | 42b1ab9 | 2015-04-01 23:49:24 -0400 | [diff] [blame] | 268 | } else { |
| 269 | n = p9_client_read(file->private_data, pos, iter, &err); |
Al Viro | 9565a54 | 2015-04-01 22:32:23 -0400 | [diff] [blame] | 270 | } |
Al Viro | 42b1ab9 | 2015-04-01 23:49:24 -0400 | [diff] [blame] | 271 | return n ? n : err; |
jvrao | 3e24ad2 | 2010-08-24 15:43:28 +0000 | [diff] [blame] | 272 | } |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 273 | |
| 274 | static int v9fs_write_begin(struct file *filp, struct address_space *mapping, |
Dominique Martinet | 6e195b0 | 2021-11-02 22:16:43 +0900 | [diff] [blame] | 275 | loff_t pos, unsigned int len, unsigned int flags, |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 276 | struct page **subpagep, void **fsdata) |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 277 | { |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 278 | int retval; |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 279 | struct folio *folio; |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 280 | struct v9fs_inode *v9inode = V9FS_I(mapping->host); |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 281 | |
| 282 | p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping); |
| 283 | |
Aneesh Kumar K.V | 6b39f6d | 2011-02-28 17:04:03 +0530 | [diff] [blame] | 284 | BUG_ON(!v9inode->writeback_fid); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 285 | |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 286 | /* Prefetch area to be written into the cache if we're caching this |
| 287 | * file. We need to do this before we get a lock on the page in case |
| 288 | * there's more than one writer competing for the same cache block. |
| 289 | */ |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 290 | retval = netfs_write_begin(filp, mapping, pos, len, flags, &folio, fsdata, |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 291 | &v9fs_req_ops, NULL); |
| 292 | if (retval < 0) |
| 293 | return retval; |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 294 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 295 | *subpagep = &folio->page; |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 296 | return retval; |
| 297 | } |
| 298 | |
| 299 | static int v9fs_write_end(struct file *filp, struct address_space *mapping, |
Dominique Martinet | 6e195b0 | 2021-11-02 22:16:43 +0900 | [diff] [blame] | 300 | loff_t pos, unsigned int len, unsigned int copied, |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 301 | struct page *subpage, void *fsdata) |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 302 | { |
| 303 | loff_t last_pos = pos + copied; |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 304 | struct folio *folio = page_folio(subpage); |
| 305 | struct inode *inode = mapping->host; |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 306 | |
Dominique Martinet | fb89b45 | 2014-01-10 13:44:09 +0100 | [diff] [blame] | 307 | p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping); |
| 308 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 309 | if (!folio_test_uptodate(folio)) { |
Alexander Levin | 56ae414 | 2017-04-10 18:46:51 +0000 | [diff] [blame] | 310 | if (unlikely(copied < len)) { |
| 311 | copied = 0; |
| 312 | goto out; |
Alexander Levin | 56ae414 | 2017-04-10 18:46:51 +0000 | [diff] [blame] | 313 | } |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 314 | |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 315 | folio_mark_uptodate(folio); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 316 | } |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 317 | |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 318 | /* |
| 319 | * No need to use i_size_read() here, the i_size |
| 320 | * cannot change under us because we hold the i_mutex. |
| 321 | */ |
| 322 | if (last_pos > inode->i_size) { |
| 323 | inode_add_bytes(inode, last_pos - inode->i_size); |
| 324 | i_size_write(inode, last_pos); |
| 325 | } |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 326 | folio_mark_dirty(folio); |
Al Viro | 77469c3 | 2016-08-29 20:56:35 -0400 | [diff] [blame] | 327 | out: |
David Howells | 78525c7 | 2021-08-11 09:49:13 +0100 | [diff] [blame] | 328 | folio_unlock(folio); |
| 329 | folio_put(folio); |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 330 | |
| 331 | return copied; |
| 332 | } |
| 333 | |
| 334 | |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 335 | const struct address_space_operations v9fs_addr_operations = { |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 336 | .readpage = v9fs_vfs_readpage, |
David Howells | eb49794 | 2021-11-02 08:29:55 +0000 | [diff] [blame] | 337 | .readahead = v9fs_vfs_readahead, |
Aneesh Kumar K.V | 7263ceb | 2011-02-28 17:03:58 +0530 | [diff] [blame] | 338 | .set_page_dirty = __set_page_dirty_nobuffers, |
| 339 | .writepage = v9fs_vfs_writepage, |
| 340 | .write_begin = v9fs_write_begin, |
| 341 | .write_end = v9fs_write_end, |
| 342 | .releasepage = v9fs_release_page, |
| 343 | .invalidatepage = v9fs_invalidate_page, |
| 344 | .launder_page = v9fs_launder_page, |
| 345 | .direct_IO = v9fs_direct_IO, |
Eric Van Hensbergen | 147b31c | 2006-01-18 17:43:02 -0800 | [diff] [blame] | 346 | }; |