1 // SPDX-License-Identifier: GPL-2.0-only
3 * This file contians vfs address (mmap) ops for 9P2000.
5 * Copyright (C) 2005 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
9 #include <linux/module.h>
10 #include <linux/errno.h>
12 #include <linux/file.h>
13 #include <linux/stat.h>
14 #include <linux/string.h>
15 #include <linux/inet.h>
16 #include <linux/pagemap.h>
17 #include <linux/sched.h>
18 #include <linux/swap.h>
19 #include <linux/uio.h>
20 #include <linux/netfs.h>
21 #include <net/9p/9p.h>
22 #include <net/9p/client.h>
30 * v9fs_issue_read - Issue a read from 9P
31 * @subreq: The read to make
33 static void v9fs_issue_read(struct netfs_io_subrequest *subreq)
35 struct netfs_io_request *rreq = subreq->rreq;
36 struct p9_fid *fid = rreq->netfs_priv;
38 loff_t pos = subreq->start + subreq->transferred;
39 size_t len = subreq->len - subreq->transferred;
42 iov_iter_xarray(&to, ITER_DEST, &rreq->mapping->i_pages, pos, len);
44 total = p9_client_read(fid, pos, &to, &err);
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);
50 netfs_subreq_terminated(subreq, err ?: total, false);
54 * v9fs_init_request - Initialise a read request
55 * @rreq: The read request
56 * @file: The file being read from
58 static int v9fs_init_request(struct netfs_io_request *rreq, struct file *file)
60 struct inode *inode = file_inode(file);
61 struct v9fs_inode *v9inode = V9FS_I(inode);
62 struct p9_fid *fid = file->private_data;
66 /* we might need to read from a fid that was opened write-only
67 * for read-modify-write of page cache, use the writeback fid
69 if (rreq->origin == NETFS_READ_FOR_WRITE &&
70 (fid->mode & O_ACCMODE) == O_WRONLY) {
71 fid = v9inode->writeback_fid;
76 rreq->netfs_priv = fid;
81 * v9fs_free_request - Cleanup request initialized by v9fs_init_rreq
82 * @rreq: The I/O request to clean up
84 static void v9fs_free_request(struct netfs_io_request *rreq)
86 struct p9_fid *fid = rreq->netfs_priv;
92 * v9fs_begin_cache_operation - Begin a cache operation for a read
93 * @rreq: The read request
95 static int v9fs_begin_cache_operation(struct netfs_io_request *rreq)
97 #ifdef CONFIG_9P_FSCACHE
98 struct fscache_cookie *cookie = v9fs_inode_cookie(V9FS_I(rreq->inode));
100 return fscache_begin_read_operation(&rreq->cache_resources, cookie);
106 const struct netfs_request_ops v9fs_req_ops = {
107 .init_request = v9fs_init_request,
108 .free_request = v9fs_free_request,
109 .begin_cache_operation = v9fs_begin_cache_operation,
110 .issue_read = v9fs_issue_read,
114 * v9fs_release_folio - release the private state associated with a folio
115 * @folio: The folio to be released
116 * @gfp: The caller's allocation restrictions
118 * Returns true if the page can be released, false otherwise.
121 static bool v9fs_release_folio(struct folio *folio, gfp_t gfp)
123 struct inode *inode = folio_inode(folio);
125 if (folio_test_private(folio))
127 #ifdef CONFIG_9P_FSCACHE
128 if (folio_test_fscache(folio)) {
129 if (current_is_kswapd() || !(gfp & __GFP_FS))
131 folio_wait_fscache(folio);
134 fscache_note_page_release(v9fs_inode_cookie(V9FS_I(inode)));
138 static void v9fs_invalidate_folio(struct folio *folio, size_t offset,
141 folio_wait_fscache(folio);
144 static void v9fs_write_to_cache_done(void *priv, ssize_t transferred_or_error,
147 struct v9fs_inode *v9inode = priv;
150 if (IS_ERR_VALUE(transferred_or_error) &&
151 transferred_or_error != -ENOBUFS) {
152 version = cpu_to_le32(v9inode->qid.version);
153 fscache_invalidate(v9fs_inode_cookie(v9inode), &version,
154 i_size_read(&v9inode->netfs.inode), 0);
158 static int v9fs_vfs_write_folio_locked(struct folio *folio)
160 struct inode *inode = folio_inode(folio);
161 struct v9fs_inode *v9inode = V9FS_I(inode);
162 struct fscache_cookie *cookie = v9fs_inode_cookie(v9inode);
163 loff_t start = folio_pos(folio);
164 loff_t i_size = i_size_read(inode);
165 struct iov_iter from;
166 size_t len = folio_size(folio);
170 return 0; /* Simultaneous truncation occurred */
172 len = min_t(loff_t, i_size - start, len);
174 iov_iter_xarray(&from, ITER_SOURCE, &folio_mapping(folio)->i_pages, start, len);
176 /* We should have writeback_fid always set */
177 BUG_ON(!v9inode->writeback_fid);
179 folio_wait_fscache(folio);
180 folio_start_writeback(folio);
182 p9_client_write(v9inode->writeback_fid, start, &from, &err);
185 fscache_cookie_enabled(cookie) &&
186 test_bit(FSCACHE_COOKIE_IS_CACHING, &cookie->flags)) {
187 folio_start_fscache(folio);
188 fscache_write_to_cache(v9fs_inode_cookie(v9inode),
189 folio_mapping(folio), start, len, i_size,
190 v9fs_write_to_cache_done, v9inode,
194 folio_end_writeback(folio);
198 static int v9fs_vfs_writepage(struct page *page, struct writeback_control *wbc)
200 struct folio *folio = page_folio(page);
203 p9_debug(P9_DEBUG_VFS, "folio %p\n", folio);
205 retval = v9fs_vfs_write_folio_locked(folio);
207 if (retval == -EAGAIN) {
208 folio_redirty_for_writepage(wbc, folio);
211 mapping_set_error(folio_mapping(folio), retval);
220 static int v9fs_launder_folio(struct folio *folio)
224 if (folio_clear_dirty_for_io(folio)) {
225 retval = v9fs_vfs_write_folio_locked(folio);
229 folio_wait_fscache(folio);
234 * v9fs_direct_IO - 9P address space operation for direct I/O
235 * @iocb: target I/O control block
236 * @iter: The data/buffer to use
238 * The presence of v9fs_direct_IO() in the address space ops vector
239 * allowes open() O_DIRECT flags which would have failed otherwise.
241 * In the non-cached mode, we shunt off direct read and write requests before
242 * the VFS gets them, so this method should never be called.
244 * Direct IO is not 'yet' supported in the cached mode. Hence when
245 * this routine is called through generic_file_aio_read(), the read/write fails
250 v9fs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
252 struct file *file = iocb->ki_filp;
253 loff_t pos = iocb->ki_pos;
257 if (iov_iter_rw(iter) == WRITE) {
258 n = p9_client_write(file->private_data, pos, iter, &err);
260 struct inode *inode = file_inode(file);
261 loff_t i_size = i_size_read(inode);
263 if (pos + n > i_size)
264 inode_add_bytes(inode, pos + n - i_size);
267 n = p9_client_read(file->private_data, pos, iter, &err);
272 static int v9fs_write_begin(struct file *filp, struct address_space *mapping,
273 loff_t pos, unsigned int len,
274 struct page **subpagep, void **fsdata)
278 struct v9fs_inode *v9inode = V9FS_I(mapping->host);
280 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
282 /* Prefetch area to be written into the cache if we're caching this
283 * file. We need to do this before we get a lock on the page in case
284 * there's more than one writer competing for the same cache block.
286 retval = netfs_write_begin(&v9inode->netfs, filp, mapping, pos, len, &folio, fsdata);
290 *subpagep = &folio->page;
294 static int v9fs_write_end(struct file *filp, struct address_space *mapping,
295 loff_t pos, unsigned int len, unsigned int copied,
296 struct page *subpage, void *fsdata)
298 loff_t last_pos = pos + copied;
299 struct folio *folio = page_folio(subpage);
300 struct inode *inode = mapping->host;
301 struct v9fs_inode *v9inode = V9FS_I(inode);
303 p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);
305 if (!folio_test_uptodate(folio)) {
306 if (unlikely(copied < len)) {
311 folio_mark_uptodate(folio);
315 * No need to use i_size_read() here, the i_size
316 * cannot change under us because we hold the i_mutex.
318 if (last_pos > inode->i_size) {
319 inode_add_bytes(inode, last_pos - inode->i_size);
320 i_size_write(inode, last_pos);
321 fscache_update_cookie(v9fs_inode_cookie(v9inode), NULL, &last_pos);
323 folio_mark_dirty(folio);
331 #ifdef CONFIG_9P_FSCACHE
333 * Mark a page as having been made dirty and thus needing writeback. We also
334 * need to pin the cache object to write back to.
336 static bool v9fs_dirty_folio(struct address_space *mapping, struct folio *folio)
338 struct v9fs_inode *v9inode = V9FS_I(mapping->host);
340 return fscache_dirty_folio(mapping, folio, v9fs_inode_cookie(v9inode));
343 #define v9fs_dirty_folio filemap_dirty_folio
346 const struct address_space_operations v9fs_addr_operations = {
347 .read_folio = netfs_read_folio,
348 .readahead = netfs_readahead,
349 .dirty_folio = v9fs_dirty_folio,
350 .writepage = v9fs_vfs_writepage,
351 .write_begin = v9fs_write_begin,
352 .write_end = v9fs_write_end,
353 .release_folio = v9fs_release_folio,
354 .invalidate_folio = v9fs_invalidate_folio,
355 .launder_folio = v9fs_launder_folio,
356 .direct_IO = v9fs_direct_IO,