1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* AFS filesystem file handling
4 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/init.h>
12 #include <linux/pagemap.h>
13 #include <linux/writeback.h>
14 #include <linux/gfp.h>
15 #include <linux/task_io_accounting_ops.h>
17 #include <linux/netfs.h>
20 static int afs_file_mmap(struct file *file, struct vm_area_struct *vma);
21 static int afs_readpage(struct file *file, struct page *page);
22 static void afs_invalidatepage(struct page *page, unsigned int offset,
24 static int afs_releasepage(struct page *page, gfp_t gfp_flags);
26 static void afs_readahead(struct readahead_control *ractl);
28 const struct file_operations afs_file_operations = {
30 .release = afs_release,
31 .llseek = generic_file_llseek,
32 .read_iter = generic_file_read_iter,
33 .write_iter = afs_file_write,
34 .mmap = afs_file_mmap,
35 .splice_read = generic_file_splice_read,
36 .splice_write = iter_file_splice_write,
42 const struct inode_operations afs_file_inode_operations = {
43 .getattr = afs_getattr,
44 .setattr = afs_setattr,
45 .permission = afs_permission,
48 const struct address_space_operations afs_fs_aops = {
49 .readpage = afs_readpage,
50 .readahead = afs_readahead,
51 .set_page_dirty = afs_set_page_dirty,
52 .launder_page = afs_launder_page,
53 .releasepage = afs_releasepage,
54 .invalidatepage = afs_invalidatepage,
55 .write_begin = afs_write_begin,
56 .write_end = afs_write_end,
57 .writepage = afs_writepage,
58 .writepages = afs_writepages,
61 static const struct vm_operations_struct afs_vm_ops = {
62 .fault = filemap_fault,
63 .map_pages = filemap_map_pages,
64 .page_mkwrite = afs_page_mkwrite,
68 * Discard a pin on a writeback key.
70 void afs_put_wb_key(struct afs_wb_key *wbk)
72 if (wbk && refcount_dec_and_test(&wbk->usage)) {
79 * Cache key for writeback.
81 int afs_cache_wb_key(struct afs_vnode *vnode, struct afs_file *af)
83 struct afs_wb_key *wbk, *p;
85 wbk = kzalloc(sizeof(struct afs_wb_key), GFP_KERNEL);
88 refcount_set(&wbk->usage, 2);
91 spin_lock(&vnode->wb_lock);
92 list_for_each_entry(p, &vnode->wb_keys, vnode_link) {
93 if (p->key == wbk->key)
98 list_add_tail(&wbk->vnode_link, &vnode->wb_keys);
99 spin_unlock(&vnode->wb_lock);
104 refcount_inc(&p->usage);
105 spin_unlock(&vnode->wb_lock);
112 * open an AFS file or directory and attach a key to it
114 int afs_open(struct inode *inode, struct file *file)
116 struct afs_vnode *vnode = AFS_FS_I(inode);
121 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
123 key = afs_request_key(vnode->volume->cell);
129 af = kzalloc(sizeof(*af), GFP_KERNEL);
136 ret = afs_validate(vnode, key);
140 if (file->f_mode & FMODE_WRITE) {
141 ret = afs_cache_wb_key(vnode, af);
146 if (file->f_flags & O_TRUNC)
147 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
149 file->private_data = af;
158 _leave(" = %d", ret);
163 * release an AFS file or directory and discard its key
165 int afs_release(struct inode *inode, struct file *file)
167 struct afs_vnode *vnode = AFS_FS_I(inode);
168 struct afs_file *af = file->private_data;
171 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
173 if ((file->f_mode & FMODE_WRITE))
174 ret = vfs_fsync(file, 0);
176 file->private_data = NULL;
178 afs_put_wb_key(af->wb);
181 afs_prune_wb_keys(vnode);
182 _leave(" = %d", ret);
187 * Allocate a new read record.
189 struct afs_read *afs_alloc_read(gfp_t gfp)
191 struct afs_read *req;
193 req = kzalloc(sizeof(struct afs_read), gfp);
195 refcount_set(&req->usage, 1);
201 * Dispose of a ref to a read record.
203 void afs_put_read(struct afs_read *req)
205 if (refcount_dec_and_test(&req->usage)) {
213 static void afs_fetch_data_notify(struct afs_operation *op)
215 struct afs_read *req = op->fetch.req;
216 struct netfs_read_subrequest *subreq = req->subreq;
217 int error = op->error;
219 if (error == -ECONNABORTED)
220 error = afs_abort_to_error(op->ac.abort_code);
224 __set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
225 netfs_subreq_terminated(subreq, error ?: req->actual_len, false);
227 } else if (req->done) {
232 static void afs_fetch_data_success(struct afs_operation *op)
234 struct afs_vnode *vnode = op->file[0].vnode;
236 _enter("op=%08x", op->debug_id);
237 afs_vnode_commit_status(op, &op->file[0]);
238 afs_stat_v(vnode, n_fetches);
239 atomic_long_add(op->fetch.req->actual_len, &op->net->n_fetch_bytes);
240 afs_fetch_data_notify(op);
243 static void afs_fetch_data_put(struct afs_operation *op)
245 op->fetch.req->error = op->error;
246 afs_put_read(op->fetch.req);
249 static const struct afs_operation_ops afs_fetch_data_operation = {
250 .issue_afs_rpc = afs_fs_fetch_data,
251 .issue_yfs_rpc = yfs_fs_fetch_data,
252 .success = afs_fetch_data_success,
253 .aborted = afs_check_for_remote_deletion,
254 .failed = afs_fetch_data_notify,
255 .put = afs_fetch_data_put,
259 * Fetch file data from the volume.
261 int afs_fetch_data(struct afs_vnode *vnode, struct afs_read *req)
263 struct afs_operation *op;
265 _enter("%s{%llx:%llu.%u},%x,,,",
270 key_serial(req->key));
272 op = afs_alloc_operation(req->key, vnode->volume);
275 netfs_subreq_terminated(req->subreq, PTR_ERR(op), false);
279 afs_op_set_vnode(op, 0, vnode);
281 op->fetch.req = afs_get_read(req);
282 op->ops = &afs_fetch_data_operation;
283 return afs_do_sync_operation(op);
286 static void afs_req_issue_op(struct netfs_read_subrequest *subreq)
288 struct afs_vnode *vnode = AFS_FS_I(subreq->rreq->inode);
289 struct afs_read *fsreq;
291 fsreq = afs_alloc_read(GFP_NOFS);
293 return netfs_subreq_terminated(subreq, -ENOMEM, false);
295 fsreq->subreq = subreq;
296 fsreq->pos = subreq->start + subreq->transferred;
297 fsreq->len = subreq->len - subreq->transferred;
298 fsreq->key = subreq->rreq->netfs_priv;
299 fsreq->vnode = vnode;
300 fsreq->iter = &fsreq->def_iter;
302 iov_iter_xarray(&fsreq->def_iter, READ,
303 &fsreq->vnode->vfs_inode.i_mapping->i_pages,
304 fsreq->pos, fsreq->len);
306 afs_fetch_data(fsreq->vnode, fsreq);
309 static int afs_symlink_readpage(struct page *page)
311 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
312 struct afs_read *fsreq;
315 fsreq = afs_alloc_read(GFP_NOFS);
319 fsreq->pos = page->index * PAGE_SIZE;
320 fsreq->len = PAGE_SIZE;
321 fsreq->vnode = vnode;
322 fsreq->iter = &fsreq->def_iter;
323 iov_iter_xarray(&fsreq->def_iter, READ, &page->mapping->i_pages,
324 fsreq->pos, fsreq->len);
326 ret = afs_fetch_data(fsreq->vnode, fsreq);
327 page_endio(page, false, ret);
331 static void afs_init_rreq(struct netfs_read_request *rreq, struct file *file)
333 rreq->netfs_priv = key_get(afs_file_key(file));
336 static bool afs_is_cache_enabled(struct inode *inode)
338 struct fscache_cookie *cookie = afs_vnode_cache(AFS_FS_I(inode));
340 return fscache_cookie_enabled(cookie) && !hlist_empty(&cookie->backing_objects);
343 static int afs_begin_cache_operation(struct netfs_read_request *rreq)
345 struct afs_vnode *vnode = AFS_FS_I(rreq->inode);
347 return fscache_begin_read_operation(rreq, afs_vnode_cache(vnode));
350 static int afs_check_write_begin(struct file *file, loff_t pos, unsigned len,
351 struct page *page, void **_fsdata)
353 struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
355 return test_bit(AFS_VNODE_DELETED, &vnode->flags) ? -ESTALE : 0;
358 static void afs_priv_cleanup(struct address_space *mapping, void *netfs_priv)
363 const struct netfs_read_request_ops afs_req_ops = {
364 .init_rreq = afs_init_rreq,
365 .is_cache_enabled = afs_is_cache_enabled,
366 .begin_cache_operation = afs_begin_cache_operation,
367 .check_write_begin = afs_check_write_begin,
368 .issue_op = afs_req_issue_op,
369 .cleanup = afs_priv_cleanup,
372 static int afs_readpage(struct file *file, struct page *page)
375 return afs_symlink_readpage(page);
377 return netfs_readpage(file, page, &afs_req_ops, NULL);
380 static void afs_readahead(struct readahead_control *ractl)
382 netfs_readahead(ractl, &afs_req_ops, NULL);
386 * Adjust the dirty region of the page on truncation or full invalidation,
387 * getting rid of the markers altogether if the region is entirely invalidated.
389 static void afs_invalidate_dirty(struct page *page, unsigned int offset,
392 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
394 unsigned int f, t, end = offset + length;
396 priv = page_private(page);
398 /* we clean up only if the entire page is being invalidated */
399 if (offset == 0 && length == thp_size(page))
400 goto full_invalidate;
402 /* If the page was dirtied by page_mkwrite(), the PTE stays writable
403 * and we don't get another notification to tell us to expand it
406 if (afs_is_page_dirty_mmapped(priv))
409 /* We may need to shorten the dirty region */
410 f = afs_page_dirty_from(page, priv);
411 t = afs_page_dirty_to(page, priv);
413 if (t <= offset || f >= end)
414 return; /* Doesn't overlap */
416 if (f < offset && t > end)
417 return; /* Splits the dirty region - just absorb it */
419 if (f >= offset && t <= end)
429 priv = afs_page_dirty(page, f, t);
430 set_page_private(page, priv);
431 trace_afs_page_dirty(vnode, tracepoint_string("trunc"), page);
435 trace_afs_page_dirty(vnode, tracepoint_string("undirty"), page);
436 clear_page_dirty_for_io(page);
438 trace_afs_page_dirty(vnode, tracepoint_string("inval"), page);
439 detach_page_private(page);
443 * invalidate part or all of a page
444 * - release a page and clean up its private data if offset is 0 (indicating
447 static void afs_invalidatepage(struct page *page, unsigned int offset,
450 _enter("{%lu},%u,%u", page->index, offset, length);
452 BUG_ON(!PageLocked(page));
454 if (PagePrivate(page))
455 afs_invalidate_dirty(page, offset, length);
457 wait_on_page_fscache(page);
462 * release a page and clean up its private state if it's not busy
463 * - return true if the page can now be released, false if not
465 static int afs_releasepage(struct page *page, gfp_t gfp_flags)
467 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
469 _enter("{{%llx:%llu}[%lu],%lx},%x",
470 vnode->fid.vid, vnode->fid.vnode, page->index, page->flags,
473 /* deny if page is being written to the cache and the caller hasn't
475 #ifdef CONFIG_AFS_FSCACHE
476 if (PageFsCache(page)) {
477 if (!(gfp_flags & __GFP_DIRECT_RECLAIM) || !(gfp_flags & __GFP_FS))
479 wait_on_page_fscache(page);
483 if (PagePrivate(page)) {
484 trace_afs_page_dirty(vnode, tracepoint_string("rel"), page);
485 detach_page_private(page);
488 /* indicate that the page can be released */
494 * Handle setting up a memory mapping on an AFS file.
496 static int afs_file_mmap(struct file *file, struct vm_area_struct *vma)
500 ret = generic_file_mmap(file, vma);
502 vma->vm_ops = &afs_vm_ops;