Merge tag 'hyperv-fixes-signed-20231121' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / fs / 9p / vfs_addr.c
CommitLineData
1f327613 1// SPDX-License-Identifier: GPL-2.0-only
147b31cf 2/*
147b31cf
EVH
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>
147b31cf
EVH
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>
147b31cf 15#include <linux/pagemap.h>
e8edc6e0 16#include <linux/sched.h>
d7bdba1c 17#include <linux/swap.h>
e2e40f2c 18#include <linux/uio.h>
eb497943 19#include <linux/netfs.h>
bd238fb4
LI
20#include <net/9p/9p.h>
21#include <net/9p/client.h>
147b31cf 22
147b31cf 23#include "v9fs.h"
147b31cf 24#include "v9fs_vfs.h"
60e78d2c 25#include "cache.h"
7263cebe 26#include "fid.h"
147b31cf
EVH
27
28/**
f18a3785 29 * v9fs_issue_read - Issue a read from 9P
eb497943 30 * @subreq: The read to make
147b31cf 31 */
f18a3785 32static void v9fs_issue_read(struct netfs_io_subrequest *subreq)
147b31cf 33{
6a19114b 34 struct netfs_io_request *rreq = subreq->rreq;
eb497943 35 struct p9_fid *fid = rreq->netfs_priv;
e1200fe6 36 struct iov_iter to;
eb497943
DH
37 loff_t pos = subreq->start + subreq->transferred;
38 size_t len = subreq->len - subreq->transferred;
39 int total, err;
e03abc0c 40
de4eda9d 41 iov_iter_xarray(&to, ITER_DEST, &rreq->mapping->i_pages, pos, len);
60e78d2c 42
eb497943 43 total = p9_client_read(fid, pos, &to, &err);
19d1c326
DM
44
45 /* if we just extended the file size, any portion not in
46 * cache won't be on server and is zeroes */
47 __set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
48
eb497943
DH
49 netfs_subreq_terminated(subreq, err ?: total, false);
50}
60e78d2c 51
eb497943 52/**
6a19114b 53 * v9fs_init_request - Initialise a read request
eb497943
DH
54 * @rreq: The read request
55 * @file: The file being read from
56 */
2de16041 57static int v9fs_init_request(struct netfs_io_request *rreq, struct file *file)
eb497943
DH
58{
59 struct p9_fid *fid = file->private_data;
60e78d2c 60
b0017602
DM
61 BUG_ON(!fid);
62
63 /* we might need to read from a fid that was opened write-only
64 * for read-modify-write of page cache, use the writeback fid
65 * for that */
1543b4c5
EVH
66 WARN_ON(rreq->origin == NETFS_READ_FOR_WRITE &&
67 !(fid->mode & P9_ORDWR));
b0017602 68
b48dbb99 69 p9_fid_get(fid);
eb497943 70 rreq->netfs_priv = fid;
2de16041 71 return 0;
eb497943 72}
147b31cf 73
eb497943 74/**
40a81101
DH
75 * v9fs_free_request - Cleanup request initialized by v9fs_init_rreq
76 * @rreq: The I/O request to clean up
eb497943 77 */
40a81101 78static void v9fs_free_request(struct netfs_io_request *rreq)
eb497943 79{
40a81101 80 struct p9_fid *fid = rreq->netfs_priv;
147b31cf 81
b48dbb99 82 p9_fid_put(fid);
eb497943 83}
60e78d2c 84
eb497943
DH
85/**
86 * v9fs_begin_cache_operation - Begin a cache operation for a read
87 * @rreq: The read request
88 */
6a19114b 89static int v9fs_begin_cache_operation(struct netfs_io_request *rreq)
eb497943 90{
2cee6fbb 91#ifdef CONFIG_9P_FSCACHE
eb497943
DH
92 struct fscache_cookie *cookie = v9fs_inode_cookie(V9FS_I(rreq->inode));
93
24e42e32 94 return fscache_begin_read_operation(&rreq->cache_resources, cookie);
2cee6fbb
DH
95#else
96 return -ENOBUFS;
97#endif
147b31cf
EVH
98}
99
bc899ee1 100const struct netfs_request_ops v9fs_req_ops = {
6a19114b 101 .init_request = v9fs_init_request,
40a81101 102 .free_request = v9fs_free_request,
eb497943 103 .begin_cache_operation = v9fs_begin_cache_operation,
f18a3785 104 .issue_read = v9fs_issue_read,
eb497943
DH
105};
106
60e78d2c 107/**
a26d3411
MWO
108 * v9fs_release_folio - release the private state associated with a folio
109 * @folio: The folio to be released
bc868036 110 * @gfp: The caller's allocation restrictions
60e78d2c 111 *
a26d3411 112 * Returns true if the page can be released, false otherwise.
60e78d2c
AK
113 */
114
a26d3411 115static bool v9fs_release_folio(struct folio *folio, gfp_t gfp)
60e78d2c 116{
78525c74 117 if (folio_test_private(folio))
a26d3411 118 return false;
eb497943 119#ifdef CONFIG_9P_FSCACHE
78525c74 120 if (folio_test_fscache(folio)) {
d7bdba1c 121 if (current_is_kswapd() || !(gfp & __GFP_FS))
a26d3411 122 return false;
78525c74 123 folio_wait_fscache(folio);
eb497943 124 }
4eb31178 125 fscache_note_page_release(v9fs_inode_cookie(V9FS_I(folio_inode(folio))));
eb497943 126#endif
a26d3411 127 return true;
60e78d2c
AK
128}
129
040cdd4b
MWO
130static void v9fs_invalidate_folio(struct folio *folio, size_t offset,
131 size_t length)
60e78d2c 132{
78525c74 133 folio_wait_fscache(folio);
60e78d2c
AK
134}
135
4eb31178 136#ifdef CONFIG_9P_FSCACHE
93c84614
DH
137static void v9fs_write_to_cache_done(void *priv, ssize_t transferred_or_error,
138 bool was_async)
139{
140 struct v9fs_inode *v9inode = priv;
141 __le32 version;
142
143 if (IS_ERR_VALUE(transferred_or_error) &&
144 transferred_or_error != -ENOBUFS) {
145 version = cpu_to_le32(v9inode->qid.version);
146 fscache_invalidate(v9fs_inode_cookie(v9inode), &version,
874c8ca1 147 i_size_read(&v9inode->netfs.inode), 0);
93c84614
DH
148 }
149}
4eb31178 150#endif
93c84614 151
78525c74 152static int v9fs_vfs_write_folio_locked(struct folio *folio)
7263cebe 153{
78525c74 154 struct inode *inode = folio_inode(folio);
78525c74
DH
155 loff_t start = folio_pos(folio);
156 loff_t i_size = i_size_read(inode);
371098c6 157 struct iov_iter from;
78525c74 158 size_t len = folio_size(folio);
1543b4c5 159 struct p9_fid *writeback_fid;
78525c74 160 int err;
4eb31178
EVH
161 struct v9fs_inode __maybe_unused *v9inode = V9FS_I(inode);
162 struct fscache_cookie __maybe_unused *cookie = v9fs_inode_cookie(v9inode);
78525c74
DH
163
164 if (start >= i_size)
165 return 0; /* Simultaneous truncation occurred */
7263cebe 166
78525c74 167 len = min_t(loff_t, i_size - start, len);
7263cebe 168
de4eda9d 169 iov_iter_xarray(&from, ITER_SOURCE, &folio_mapping(folio)->i_pages, start, len);
7263cebe 170
1543b4c5
EVH
171 writeback_fid = v9fs_fid_find_inode(inode, true, INVALID_UID, true);
172 if (!writeback_fid) {
173 WARN_ONCE(1, "folio expected an open fid inode->i_private=%p\n",
174 inode->i_private);
175 return -EINVAL;
176 }
7263cebe 177
93c84614 178 folio_wait_fscache(folio);
78525c74 179 folio_start_writeback(folio);
371098c6 180
1543b4c5 181 p9_client_write(writeback_fid, start, &from, &err);
7263cebe 182
4eb31178 183#ifdef CONFIG_9P_FSCACHE
93c84614 184 if (err == 0 &&
4eb31178
EVH
185 fscache_cookie_enabled(cookie) &&
186 test_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags)) {
93c84614
DH
187 folio_start_fscache(folio);
188 fscache_write_to_cache(v9fs_inode_cookie(v9inode),
4eb31178
EVH
189 folio_mapping(folio), start, len, i_size,
190 v9fs_write_to_cache_done, v9inode,
191 true);
93c84614 192 }
4eb31178 193#endif
93c84614 194
78525c74 195 folio_end_writeback(folio);
1543b4c5
EVH
196 p9_fid_put(writeback_fid);
197
371098c6 198 return err;
7263cebe
AK
199}
200
201static int v9fs_vfs_writepage(struct page *page, struct writeback_control *wbc)
202{
78525c74 203 struct folio *folio = page_folio(page);
7263cebe
AK
204 int retval;
205
78525c74 206 p9_debug(P9_DEBUG_VFS, "folio %p\n", folio);
fb89b45c 207
78525c74 208 retval = v9fs_vfs_write_folio_locked(folio);
7263cebe
AK
209 if (retval < 0) {
210 if (retval == -EAGAIN) {
78525c74 211 folio_redirty_for_writepage(wbc, folio);
7263cebe
AK
212 retval = 0;
213 } else {
78525c74 214 mapping_set_error(folio_mapping(folio), retval);
7263cebe
AK
215 }
216 } else
217 retval = 0;
218
78525c74 219 folio_unlock(folio);
7263cebe
AK
220 return retval;
221}
222
76dba927 223static int v9fs_launder_folio(struct folio *folio)
60e78d2c 224{
7263cebe 225 int retval;
7263cebe 226
78525c74
DH
227 if (folio_clear_dirty_for_io(folio)) {
228 retval = v9fs_vfs_write_folio_locked(folio);
7263cebe
AK
229 if (retval)
230 return retval;
231 }
78525c74 232 folio_wait_fscache(folio);
60e78d2c
AK
233 return 0;
234}
235
3e24ad2f 236/**
237 * v9fs_direct_IO - 9P address space operation for direct I/O
3e24ad2f 238 * @iocb: target I/O control block
bc868036 239 * @iter: The data/buffer to use
3e24ad2f 240 *
241 * The presence of v9fs_direct_IO() in the address space ops vector
242 * allowes open() O_DIRECT flags which would have failed otherwise.
243 *
244 * In the non-cached mode, we shunt off direct read and write requests before
245 * the VFS gets them, so this method should never be called.
246 *
247 * Direct IO is not 'yet' supported in the cached mode. Hence when
248 * this routine is called through generic_file_aio_read(), the read/write fails
249 * with an error.
250 *
251 */
e959b549 252static ssize_t
c8b8e32d 253v9fs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
3e24ad2f 254{
9565a544 255 struct file *file = iocb->ki_filp;
c8b8e32d 256 loff_t pos = iocb->ki_pos;
42b1ab97
AV
257 ssize_t n;
258 int err = 0;
6e195b0f 259
6f673763 260 if (iov_iter_rw(iter) == WRITE) {
42b1ab97
AV
261 n = p9_client_write(file->private_data, pos, iter, &err);
262 if (n) {
9565a544
AV
263 struct inode *inode = file_inode(file);
264 loff_t i_size = i_size_read(inode);
6e195b0f 265
42b1ab97
AV
266 if (pos + n > i_size)
267 inode_add_bytes(inode, pos + n - i_size);
9565a544 268 }
42b1ab97
AV
269 } else {
270 n = p9_client_read(file->private_data, pos, iter, &err);
9565a544 271 }
42b1ab97 272 return n ? n : err;
3e24ad2f 273}
7263cebe
AK
274
275static int v9fs_write_begin(struct file *filp, struct address_space *mapping,
9d6b0cd7 276 loff_t pos, unsigned int len,
78525c74 277 struct page **subpagep, void **fsdata)
7263cebe 278{
eb497943 279 int retval;
78525c74 280 struct folio *folio;
eb497943 281 struct v9fs_inode *v9inode = V9FS_I(mapping->host);
fb89b45c
DM
282
283 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
284
eb497943
DH
285 /* Prefetch area to be written into the cache if we're caching this
286 * file. We need to do this before we get a lock on the page in case
287 * there's more than one writer competing for the same cache block.
288 */
e81fb419 289 retval = netfs_write_begin(&v9inode->netfs, filp, mapping, pos, len, &folio, fsdata);
eb497943
DH
290 if (retval < 0)
291 return retval;
7263cebe 292
78525c74 293 *subpagep = &folio->page;
7263cebe
AK
294 return retval;
295}
296
297static int v9fs_write_end(struct file *filp, struct address_space *mapping,
6e195b0f 298 loff_t pos, unsigned int len, unsigned int copied,
78525c74 299 struct page *subpage, void *fsdata)
7263cebe
AK
300{
301 loff_t last_pos = pos + copied;
78525c74
DH
302 struct folio *folio = page_folio(subpage);
303 struct inode *inode = mapping->host;
7263cebe 304
fb89b45c
DM
305 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
306
78525c74 307 if (!folio_test_uptodate(folio)) {
56ae414e
AL
308 if (unlikely(copied < len)) {
309 copied = 0;
310 goto out;
56ae414e 311 }
eb497943 312
78525c74 313 folio_mark_uptodate(folio);
7263cebe 314 }
eb497943 315
7263cebe
AK
316 /*
317 * No need to use i_size_read() here, the i_size
318 * cannot change under us because we hold the i_mutex.
319 */
320 if (last_pos > inode->i_size) {
321 inode_add_bytes(inode, last_pos - inode->i_size);
322 i_size_write(inode, last_pos);
4eb31178
EVH
323#ifdef CONFIG_9P_FSCACHE
324 fscache_update_cookie(v9fs_inode_cookie(V9FS_I(inode)), NULL,
325 &last_pos);
326#endif
7263cebe 327 }
78525c74 328 folio_mark_dirty(folio);
77469c3f 329out:
78525c74
DH
330 folio_unlock(folio);
331 folio_put(folio);
7263cebe
AK
332
333 return copied;
334}
335
93c84614
DH
336#ifdef CONFIG_9P_FSCACHE
337/*
338 * Mark a page as having been made dirty and thus needing writeback. We also
339 * need to pin the cache object to write back to.
340 */
8fb72b4a 341static bool v9fs_dirty_folio(struct address_space *mapping, struct folio *folio)
93c84614 342{
8fb72b4a 343 struct v9fs_inode *v9inode = V9FS_I(mapping->host);
93c84614 344
8fb72b4a 345 return fscache_dirty_folio(mapping, folio, v9fs_inode_cookie(v9inode));
93c84614
DH
346}
347#else
8fb72b4a 348#define v9fs_dirty_folio filemap_dirty_folio
93c84614 349#endif
7263cebe 350
f5e54d6e 351const struct address_space_operations v9fs_addr_operations = {
6c62371b 352 .read_folio = netfs_read_folio,
bc899ee1 353 .readahead = netfs_readahead,
8fb72b4a 354 .dirty_folio = v9fs_dirty_folio,
7263cebe
AK
355 .writepage = v9fs_vfs_writepage,
356 .write_begin = v9fs_write_begin,
357 .write_end = v9fs_write_end,
a26d3411 358 .release_folio = v9fs_release_folio,
040cdd4b 359 .invalidate_folio = v9fs_invalidate_folio,
76dba927 360 .launder_folio = v9fs_launder_folio,
7263cebe 361 .direct_IO = v9fs_direct_IO,
147b31cf 362};