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