]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/9p/vfs_addr.c
netfs: Provide invalidate_folio and release_folio calls
[thirdparty/linux.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
bc899ee1 85const struct netfs_request_ops v9fs_req_ops = {
6a19114b 86 .init_request = v9fs_init_request,
40a81101 87 .free_request = v9fs_free_request,
f18a3785 88 .issue_read = v9fs_issue_read,
eb497943
DH
89};
90
4eb31178 91#ifdef CONFIG_9P_FSCACHE
93c84614
DH
92static void v9fs_write_to_cache_done(void *priv, ssize_t transferred_or_error,
93 bool was_async)
94{
95 struct v9fs_inode *v9inode = priv;
96 __le32 version;
97
98 if (IS_ERR_VALUE(transferred_or_error) &&
99 transferred_or_error != -ENOBUFS) {
100 version = cpu_to_le32(v9inode->qid.version);
101 fscache_invalidate(v9fs_inode_cookie(v9inode), &version,
874c8ca1 102 i_size_read(&v9inode->netfs.inode), 0);
93c84614
DH
103 }
104}
4eb31178 105#endif
93c84614 106
78525c74 107static int v9fs_vfs_write_folio_locked(struct folio *folio)
7263cebe 108{
78525c74 109 struct inode *inode = folio_inode(folio);
78525c74
DH
110 loff_t start = folio_pos(folio);
111 loff_t i_size = i_size_read(inode);
371098c6 112 struct iov_iter from;
78525c74 113 size_t len = folio_size(folio);
1543b4c5 114 struct p9_fid *writeback_fid;
78525c74 115 int err;
4eb31178
EVH
116 struct v9fs_inode __maybe_unused *v9inode = V9FS_I(inode);
117 struct fscache_cookie __maybe_unused *cookie = v9fs_inode_cookie(v9inode);
78525c74
DH
118
119 if (start >= i_size)
120 return 0; /* Simultaneous truncation occurred */
7263cebe 121
78525c74 122 len = min_t(loff_t, i_size - start, len);
7263cebe 123
de4eda9d 124 iov_iter_xarray(&from, ITER_SOURCE, &folio_mapping(folio)->i_pages, start, len);
7263cebe 125
1543b4c5
EVH
126 writeback_fid = v9fs_fid_find_inode(inode, true, INVALID_UID, true);
127 if (!writeback_fid) {
128 WARN_ONCE(1, "folio expected an open fid inode->i_private=%p\n",
129 inode->i_private);
130 return -EINVAL;
131 }
7263cebe 132
93c84614 133 folio_wait_fscache(folio);
78525c74 134 folio_start_writeback(folio);
371098c6 135
1543b4c5 136 p9_client_write(writeback_fid, start, &from, &err);
7263cebe 137
4eb31178 138#ifdef CONFIG_9P_FSCACHE
93c84614 139 if (err == 0 &&
4eb31178
EVH
140 fscache_cookie_enabled(cookie) &&
141 test_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags)) {
93c84614
DH
142 folio_start_fscache(folio);
143 fscache_write_to_cache(v9fs_inode_cookie(v9inode),
4eb31178
EVH
144 folio_mapping(folio), start, len, i_size,
145 v9fs_write_to_cache_done, v9inode,
146 true);
93c84614 147 }
4eb31178 148#endif
93c84614 149
78525c74 150 folio_end_writeback(folio);
1543b4c5
EVH
151 p9_fid_put(writeback_fid);
152
371098c6 153 return err;
7263cebe
AK
154}
155
156static int v9fs_vfs_writepage(struct page *page, struct writeback_control *wbc)
157{
78525c74 158 struct folio *folio = page_folio(page);
7263cebe
AK
159 int retval;
160
78525c74 161 p9_debug(P9_DEBUG_VFS, "folio %p\n", folio);
fb89b45c 162
78525c74 163 retval = v9fs_vfs_write_folio_locked(folio);
7263cebe
AK
164 if (retval < 0) {
165 if (retval == -EAGAIN) {
78525c74 166 folio_redirty_for_writepage(wbc, folio);
7263cebe
AK
167 retval = 0;
168 } else {
78525c74 169 mapping_set_error(folio_mapping(folio), retval);
7263cebe
AK
170 }
171 } else
172 retval = 0;
173
78525c74 174 folio_unlock(folio);
7263cebe
AK
175 return retval;
176}
177
76dba927 178static int v9fs_launder_folio(struct folio *folio)
60e78d2c 179{
7263cebe 180 int retval;
7263cebe 181
78525c74
DH
182 if (folio_clear_dirty_for_io(folio)) {
183 retval = v9fs_vfs_write_folio_locked(folio);
7263cebe
AK
184 if (retval)
185 return retval;
186 }
78525c74 187 folio_wait_fscache(folio);
60e78d2c
AK
188 return 0;
189}
190
3e24ad2f 191/**
192 * v9fs_direct_IO - 9P address space operation for direct I/O
3e24ad2f 193 * @iocb: target I/O control block
bc868036 194 * @iter: The data/buffer to use
3e24ad2f 195 *
196 * The presence of v9fs_direct_IO() in the address space ops vector
197 * allowes open() O_DIRECT flags which would have failed otherwise.
198 *
199 * In the non-cached mode, we shunt off direct read and write requests before
200 * the VFS gets them, so this method should never be called.
201 *
202 * Direct IO is not 'yet' supported in the cached mode. Hence when
203 * this routine is called through generic_file_aio_read(), the read/write fails
204 * with an error.
205 *
206 */
e959b549 207static ssize_t
c8b8e32d 208v9fs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
3e24ad2f 209{
9565a544 210 struct file *file = iocb->ki_filp;
c8b8e32d 211 loff_t pos = iocb->ki_pos;
42b1ab97
AV
212 ssize_t n;
213 int err = 0;
6e195b0f 214
6f673763 215 if (iov_iter_rw(iter) == WRITE) {
42b1ab97
AV
216 n = p9_client_write(file->private_data, pos, iter, &err);
217 if (n) {
9565a544
AV
218 struct inode *inode = file_inode(file);
219 loff_t i_size = i_size_read(inode);
6e195b0f 220
42b1ab97
AV
221 if (pos + n > i_size)
222 inode_add_bytes(inode, pos + n - i_size);
9565a544 223 }
42b1ab97
AV
224 } else {
225 n = p9_client_read(file->private_data, pos, iter, &err);
9565a544 226 }
42b1ab97 227 return n ? n : err;
3e24ad2f 228}
7263cebe
AK
229
230static int v9fs_write_begin(struct file *filp, struct address_space *mapping,
9d6b0cd7 231 loff_t pos, unsigned int len,
78525c74 232 struct page **subpagep, void **fsdata)
7263cebe 233{
eb497943 234 int retval;
78525c74 235 struct folio *folio;
eb497943 236 struct v9fs_inode *v9inode = V9FS_I(mapping->host);
fb89b45c
DM
237
238 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
239
eb497943
DH
240 /* Prefetch area to be written into the cache if we're caching this
241 * file. We need to do this before we get a lock on the page in case
242 * there's more than one writer competing for the same cache block.
243 */
e81fb419 244 retval = netfs_write_begin(&v9inode->netfs, filp, mapping, pos, len, &folio, fsdata);
eb497943
DH
245 if (retval < 0)
246 return retval;
7263cebe 247
78525c74 248 *subpagep = &folio->page;
7263cebe
AK
249 return retval;
250}
251
252static int v9fs_write_end(struct file *filp, struct address_space *mapping,
6e195b0f 253 loff_t pos, unsigned int len, unsigned int copied,
78525c74 254 struct page *subpage, void *fsdata)
7263cebe
AK
255{
256 loff_t last_pos = pos + copied;
78525c74
DH
257 struct folio *folio = page_folio(subpage);
258 struct inode *inode = mapping->host;
7263cebe 259
fb89b45c
DM
260 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
261
78525c74 262 if (!folio_test_uptodate(folio)) {
56ae414e
AL
263 if (unlikely(copied < len)) {
264 copied = 0;
265 goto out;
56ae414e 266 }
eb497943 267
78525c74 268 folio_mark_uptodate(folio);
7263cebe 269 }
eb497943 270
7263cebe
AK
271 /*
272 * No need to use i_size_read() here, the i_size
273 * cannot change under us because we hold the i_mutex.
274 */
275 if (last_pos > inode->i_size) {
276 inode_add_bytes(inode, last_pos - inode->i_size);
277 i_size_write(inode, last_pos);
4eb31178
EVH
278#ifdef CONFIG_9P_FSCACHE
279 fscache_update_cookie(v9fs_inode_cookie(V9FS_I(inode)), NULL,
280 &last_pos);
281#endif
7263cebe 282 }
78525c74 283 folio_mark_dirty(folio);
77469c3f 284out:
78525c74
DH
285 folio_unlock(folio);
286 folio_put(folio);
7263cebe
AK
287
288 return copied;
289}
290
f5e54d6e 291const struct address_space_operations v9fs_addr_operations = {
c9c4ff12
DH
292 .read_folio = netfs_read_folio,
293 .readahead = netfs_readahead,
294 .dirty_folio = netfs_dirty_folio,
295 .writepage = v9fs_vfs_writepage,
296 .write_begin = v9fs_write_begin,
297 .write_end = v9fs_write_end,
c1ec4d7c
DH
298 .release_folio = netfs_release_folio,
299 .invalidate_folio = netfs_invalidate_folio,
c9c4ff12
DH
300 .launder_folio = v9fs_launder_folio,
301 .direct_IO = v9fs_direct_IO,
147b31cf 302};