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/swap.h>
18 #include <linux/netfs.h>
21 static int afs_file_mmap(struct file *file, struct vm_area_struct *vma);
22 static int afs_symlink_read_folio(struct file *file, struct folio *folio);
23 static void afs_invalidate_folio(struct folio *folio, size_t offset,
25 static bool afs_release_folio(struct folio *folio, gfp_t gfp_flags);
27 static ssize_t afs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter);
28 static void afs_vm_open(struct vm_area_struct *area);
29 static void afs_vm_close(struct vm_area_struct *area);
30 static vm_fault_t afs_vm_map_pages(struct vm_fault *vmf, pgoff_t start_pgoff, pgoff_t end_pgoff);
32 const struct file_operations afs_file_operations = {
34 .release = afs_release,
35 .llseek = generic_file_llseek,
36 .read_iter = afs_file_read_iter,
37 .write_iter = afs_file_write,
38 .mmap = afs_file_mmap,
39 .splice_read = generic_file_splice_read,
40 .splice_write = iter_file_splice_write,
46 const struct inode_operations afs_file_inode_operations = {
47 .getattr = afs_getattr,
48 .setattr = afs_setattr,
49 .permission = afs_permission,
52 const struct address_space_operations afs_file_aops = {
53 .read_folio = netfs_read_folio,
54 .readahead = netfs_readahead,
55 .dirty_folio = afs_dirty_folio,
56 .launder_folio = afs_launder_folio,
57 .release_folio = afs_release_folio,
58 .invalidate_folio = afs_invalidate_folio,
59 .write_begin = afs_write_begin,
60 .write_end = afs_write_end,
61 .writepages = afs_writepages,
62 .migrate_folio = filemap_migrate_folio,
65 const struct address_space_operations afs_symlink_aops = {
66 .read_folio = afs_symlink_read_folio,
67 .release_folio = afs_release_folio,
68 .invalidate_folio = afs_invalidate_folio,
69 .migrate_folio = filemap_migrate_folio,
72 static const struct vm_operations_struct afs_vm_ops = {
74 .close = afs_vm_close,
75 .fault = filemap_fault,
76 .map_pages = afs_vm_map_pages,
77 .page_mkwrite = afs_page_mkwrite,
81 * Discard a pin on a writeback key.
83 void afs_put_wb_key(struct afs_wb_key *wbk)
85 if (wbk && refcount_dec_and_test(&wbk->usage)) {
92 * Cache key for writeback.
94 int afs_cache_wb_key(struct afs_vnode *vnode, struct afs_file *af)
96 struct afs_wb_key *wbk, *p;
98 wbk = kzalloc(sizeof(struct afs_wb_key), GFP_KERNEL);
101 refcount_set(&wbk->usage, 2);
104 spin_lock(&vnode->wb_lock);
105 list_for_each_entry(p, &vnode->wb_keys, vnode_link) {
106 if (p->key == wbk->key)
111 list_add_tail(&wbk->vnode_link, &vnode->wb_keys);
112 spin_unlock(&vnode->wb_lock);
117 refcount_inc(&p->usage);
118 spin_unlock(&vnode->wb_lock);
125 * open an AFS file or directory and attach a key to it
127 int afs_open(struct inode *inode, struct file *file)
129 struct afs_vnode *vnode = AFS_FS_I(inode);
134 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
136 key = afs_request_key(vnode->volume->cell);
142 af = kzalloc(sizeof(*af), GFP_KERNEL);
149 ret = afs_validate(vnode, key);
153 if (file->f_mode & FMODE_WRITE) {
154 ret = afs_cache_wb_key(vnode, af);
159 if (file->f_flags & O_TRUNC)
160 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
162 fscache_use_cookie(afs_vnode_cache(vnode), file->f_mode & FMODE_WRITE);
164 file->private_data = af;
173 _leave(" = %d", ret);
178 * release an AFS file or directory and discard its key
180 int afs_release(struct inode *inode, struct file *file)
182 struct afs_vnode_cache_aux aux;
183 struct afs_vnode *vnode = AFS_FS_I(inode);
184 struct afs_file *af = file->private_data;
188 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
190 if ((file->f_mode & FMODE_WRITE))
191 ret = vfs_fsync(file, 0);
193 file->private_data = NULL;
195 afs_put_wb_key(af->wb);
197 if ((file->f_mode & FMODE_WRITE)) {
198 i_size = i_size_read(&vnode->netfs.inode);
199 afs_set_cache_aux(vnode, &aux);
200 fscache_unuse_cookie(afs_vnode_cache(vnode), &aux, &i_size);
202 fscache_unuse_cookie(afs_vnode_cache(vnode), NULL, NULL);
207 afs_prune_wb_keys(vnode);
208 _leave(" = %d", ret);
213 * Allocate a new read record.
215 struct afs_read *afs_alloc_read(gfp_t gfp)
217 struct afs_read *req;
219 req = kzalloc(sizeof(struct afs_read), gfp);
221 refcount_set(&req->usage, 1);
227 * Dispose of a ref to a read record.
229 void afs_put_read(struct afs_read *req)
231 if (refcount_dec_and_test(&req->usage)) {
239 static void afs_fetch_data_notify(struct afs_operation *op)
241 struct afs_read *req = op->fetch.req;
242 struct netfs_io_subrequest *subreq = req->subreq;
243 int error = op->error;
245 if (error == -ECONNABORTED)
246 error = afs_abort_to_error(op->ac.abort_code);
250 __set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
251 netfs_subreq_terminated(subreq, error ?: req->actual_len, false);
253 } else if (req->done) {
258 static void afs_fetch_data_success(struct afs_operation *op)
260 struct afs_vnode *vnode = op->file[0].vnode;
262 _enter("op=%08x", op->debug_id);
263 afs_vnode_commit_status(op, &op->file[0]);
264 afs_stat_v(vnode, n_fetches);
265 atomic_long_add(op->fetch.req->actual_len, &op->net->n_fetch_bytes);
266 afs_fetch_data_notify(op);
269 static void afs_fetch_data_put(struct afs_operation *op)
271 op->fetch.req->error = op->error;
272 afs_put_read(op->fetch.req);
275 static const struct afs_operation_ops afs_fetch_data_operation = {
276 .issue_afs_rpc = afs_fs_fetch_data,
277 .issue_yfs_rpc = yfs_fs_fetch_data,
278 .success = afs_fetch_data_success,
279 .aborted = afs_check_for_remote_deletion,
280 .failed = afs_fetch_data_notify,
281 .put = afs_fetch_data_put,
285 * Fetch file data from the volume.
287 int afs_fetch_data(struct afs_vnode *vnode, struct afs_read *req)
289 struct afs_operation *op;
291 _enter("%s{%llx:%llu.%u},%x,,,",
296 key_serial(req->key));
298 op = afs_alloc_operation(req->key, vnode->volume);
301 netfs_subreq_terminated(req->subreq, PTR_ERR(op), false);
305 afs_op_set_vnode(op, 0, vnode);
307 op->fetch.req = afs_get_read(req);
308 op->ops = &afs_fetch_data_operation;
309 return afs_do_sync_operation(op);
312 static void afs_issue_read(struct netfs_io_subrequest *subreq)
314 struct afs_vnode *vnode = AFS_FS_I(subreq->rreq->inode);
315 struct afs_read *fsreq;
317 fsreq = afs_alloc_read(GFP_NOFS);
319 return netfs_subreq_terminated(subreq, -ENOMEM, false);
321 fsreq->subreq = subreq;
322 fsreq->pos = subreq->start + subreq->transferred;
323 fsreq->len = subreq->len - subreq->transferred;
324 fsreq->key = key_get(subreq->rreq->netfs_priv);
325 fsreq->vnode = vnode;
326 fsreq->iter = &fsreq->def_iter;
328 iov_iter_xarray(&fsreq->def_iter, ITER_DEST,
329 &fsreq->vnode->netfs.inode.i_mapping->i_pages,
330 fsreq->pos, fsreq->len);
332 afs_fetch_data(fsreq->vnode, fsreq);
336 static int afs_symlink_read_folio(struct file *file, struct folio *folio)
338 struct afs_vnode *vnode = AFS_FS_I(folio->mapping->host);
339 struct afs_read *fsreq;
342 fsreq = afs_alloc_read(GFP_NOFS);
346 fsreq->pos = folio_pos(folio);
347 fsreq->len = folio_size(folio);
348 fsreq->vnode = vnode;
349 fsreq->iter = &fsreq->def_iter;
350 iov_iter_xarray(&fsreq->def_iter, ITER_DEST, &folio->mapping->i_pages,
351 fsreq->pos, fsreq->len);
353 ret = afs_fetch_data(fsreq->vnode, fsreq);
355 folio_mark_uptodate(folio);
360 static int afs_init_request(struct netfs_io_request *rreq, struct file *file)
362 rreq->netfs_priv = key_get(afs_file_key(file));
366 static int afs_begin_cache_operation(struct netfs_io_request *rreq)
368 #ifdef CONFIG_AFS_FSCACHE
369 struct afs_vnode *vnode = AFS_FS_I(rreq->inode);
371 return fscache_begin_read_operation(&rreq->cache_resources,
372 afs_vnode_cache(vnode));
378 static int afs_check_write_begin(struct file *file, loff_t pos, unsigned len,
379 struct folio **foliop, void **_fsdata)
381 struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
383 return test_bit(AFS_VNODE_DELETED, &vnode->flags) ? -ESTALE : 0;
386 static void afs_free_request(struct netfs_io_request *rreq)
388 key_put(rreq->netfs_priv);
391 const struct netfs_request_ops afs_req_ops = {
392 .init_request = afs_init_request,
393 .free_request = afs_free_request,
394 .begin_cache_operation = afs_begin_cache_operation,
395 .check_write_begin = afs_check_write_begin,
396 .issue_read = afs_issue_read,
399 int afs_write_inode(struct inode *inode, struct writeback_control *wbc)
401 fscache_unpin_writeback(wbc, afs_vnode_cache(AFS_FS_I(inode)));
406 * Adjust the dirty region of the page on truncation or full invalidation,
407 * getting rid of the markers altogether if the region is entirely invalidated.
409 static void afs_invalidate_dirty(struct folio *folio, size_t offset,
412 struct afs_vnode *vnode = AFS_FS_I(folio_inode(folio));
414 unsigned int f, t, end = offset + length;
416 priv = (unsigned long)folio_get_private(folio);
418 /* we clean up only if the entire page is being invalidated */
419 if (offset == 0 && length == folio_size(folio))
420 goto full_invalidate;
422 /* If the page was dirtied by page_mkwrite(), the PTE stays writable
423 * and we don't get another notification to tell us to expand it
426 if (afs_is_folio_dirty_mmapped(priv))
429 /* We may need to shorten the dirty region */
430 f = afs_folio_dirty_from(folio, priv);
431 t = afs_folio_dirty_to(folio, priv);
433 if (t <= offset || f >= end)
434 return; /* Doesn't overlap */
436 if (f < offset && t > end)
437 return; /* Splits the dirty region - just absorb it */
439 if (f >= offset && t <= end)
449 priv = afs_folio_dirty(folio, f, t);
450 folio_change_private(folio, (void *)priv);
451 trace_afs_folio_dirty(vnode, tracepoint_string("trunc"), folio);
455 trace_afs_folio_dirty(vnode, tracepoint_string("undirty"), folio);
456 folio_clear_dirty_for_io(folio);
458 trace_afs_folio_dirty(vnode, tracepoint_string("inval"), folio);
459 folio_detach_private(folio);
463 * invalidate part or all of a page
464 * - release a page and clean up its private data if offset is 0 (indicating
467 static void afs_invalidate_folio(struct folio *folio, size_t offset,
470 _enter("{%lu},%zu,%zu", folio->index, offset, length);
472 BUG_ON(!folio_test_locked(folio));
474 if (folio_get_private(folio))
475 afs_invalidate_dirty(folio, offset, length);
477 folio_wait_fscache(folio);
482 * release a page and clean up its private state if it's not busy
483 * - return true if the page can now be released, false if not
485 static bool afs_release_folio(struct folio *folio, gfp_t gfp)
487 struct afs_vnode *vnode = AFS_FS_I(folio_inode(folio));
489 _enter("{{%llx:%llu}[%lu],%lx},%x",
490 vnode->fid.vid, vnode->fid.vnode, folio_index(folio), folio->flags,
493 /* deny if folio is being written to the cache and the caller hasn't
495 #ifdef CONFIG_AFS_FSCACHE
496 if (folio_test_fscache(folio)) {
497 if (current_is_kswapd() || !(gfp & __GFP_FS))
499 folio_wait_fscache(folio);
501 fscache_note_page_release(afs_vnode_cache(vnode));
504 if (folio_test_private(folio)) {
505 trace_afs_folio_dirty(vnode, tracepoint_string("rel"), folio);
506 folio_detach_private(folio);
509 /* Indicate that the folio can be released */
514 static void afs_add_open_mmap(struct afs_vnode *vnode)
516 if (atomic_inc_return(&vnode->cb_nr_mmap) == 1) {
517 down_write(&vnode->volume->cell->fs_open_mmaps_lock);
519 if (list_empty(&vnode->cb_mmap_link))
520 list_add_tail(&vnode->cb_mmap_link,
521 &vnode->volume->cell->fs_open_mmaps);
523 up_write(&vnode->volume->cell->fs_open_mmaps_lock);
527 static void afs_drop_open_mmap(struct afs_vnode *vnode)
529 if (!atomic_dec_and_test(&vnode->cb_nr_mmap))
532 down_write(&vnode->volume->cell->fs_open_mmaps_lock);
534 if (atomic_read(&vnode->cb_nr_mmap) == 0)
535 list_del_init(&vnode->cb_mmap_link);
537 up_write(&vnode->volume->cell->fs_open_mmaps_lock);
538 flush_work(&vnode->cb_work);
542 * Handle setting up a memory mapping on an AFS file.
544 static int afs_file_mmap(struct file *file, struct vm_area_struct *vma)
546 struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
549 afs_add_open_mmap(vnode);
551 ret = generic_file_mmap(file, vma);
553 vma->vm_ops = &afs_vm_ops;
555 afs_drop_open_mmap(vnode);
559 static void afs_vm_open(struct vm_area_struct *vma)
561 afs_add_open_mmap(AFS_FS_I(file_inode(vma->vm_file)));
564 static void afs_vm_close(struct vm_area_struct *vma)
566 afs_drop_open_mmap(AFS_FS_I(file_inode(vma->vm_file)));
569 static vm_fault_t afs_vm_map_pages(struct vm_fault *vmf, pgoff_t start_pgoff, pgoff_t end_pgoff)
571 struct afs_vnode *vnode = AFS_FS_I(file_inode(vmf->vma->vm_file));
573 if (afs_pagecache_valid(vnode))
574 return filemap_map_pages(vmf, start_pgoff, end_pgoff);
578 static ssize_t afs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
580 struct afs_vnode *vnode = AFS_FS_I(file_inode(iocb->ki_filp));
581 struct afs_file *af = iocb->ki_filp->private_data;
584 ret = afs_validate(vnode, af->key);
588 return generic_file_read_iter(iocb, iter);