smb: client: get rid of smb311_posix_query_path_info()
[linux-2.6-block.git] / fs / afs / file.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
08e0e7c8 2/* AFS filesystem file handling
1da177e4 3 *
08e0e7c8 4 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
1da177e4 5 * Written by David Howells (dhowells@redhat.com)
1da177e4
LT
6 */
7
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/init.h>
1da177e4
LT
11#include <linux/fs.h>
12#include <linux/pagemap.h>
31143d5d 13#include <linux/writeback.h>
5a0e3ad6 14#include <linux/gfp.h>
91b467e0 15#include <linux/task_io_accounting_ops.h>
f86196ea 16#include <linux/mm.h>
d7bdba1c 17#include <linux/swap.h>
5cbf0398 18#include <linux/netfs.h>
1da177e4
LT
19#include "internal.h"
20
1cf7a151 21static int afs_file_mmap(struct file *file, struct vm_area_struct *vma);
d7e0f539 22static int afs_symlink_read_folio(struct file *file, struct folio *folio);
fcf227da
MWO
23static void afs_invalidate_folio(struct folio *folio, size_t offset,
24 size_t length);
508cae68 25static bool afs_release_folio(struct folio *folio, gfp_t gfp_flags);
1da177e4 26
3978d816 27static ssize_t afs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter);
d96d96ee
DH
28static ssize_t afs_file_splice_read(struct file *in, loff_t *ppos,
29 struct pipe_inode_info *pipe,
30 size_t len, unsigned int flags);
6e0e99d5
DH
31static void afs_vm_open(struct vm_area_struct *area);
32static void afs_vm_close(struct vm_area_struct *area);
33static vm_fault_t afs_vm_map_pages(struct vm_fault *vmf, pgoff_t start_pgoff, pgoff_t end_pgoff);
9b3f26c9 34
00d3b7a4
DH
35const struct file_operations afs_file_operations = {
36 .open = afs_open,
37 .release = afs_release,
38 .llseek = generic_file_llseek,
3978d816 39 .read_iter = afs_file_read_iter,
50b5551d 40 .write_iter = afs_file_write,
1cf7a151 41 .mmap = afs_file_mmap,
d96d96ee 42 .splice_read = afs_file_splice_read,
06a17bbe 43 .splice_write = iter_file_splice_write,
31143d5d 44 .fsync = afs_fsync,
e8d6c554
DH
45 .lock = afs_lock,
46 .flock = afs_flock,
00d3b7a4
DH
47};
48
754661f1 49const struct inode_operations afs_file_inode_operations = {
416351f2 50 .getattr = afs_getattr,
31143d5d 51 .setattr = afs_setattr,
00d3b7a4 52 .permission = afs_permission,
1da177e4
LT
53};
54
75bd228d 55const struct address_space_operations afs_file_aops = {
6c62371b 56 .read_folio = netfs_read_folio,
bc899ee1 57 .readahead = netfs_readahead,
8fb72b4a 58 .dirty_folio = afs_dirty_folio,
a42442dd 59 .launder_folio = afs_launder_folio,
508cae68 60 .release_folio = afs_release_folio,
fcf227da 61 .invalidate_folio = afs_invalidate_folio,
15b4650e
NP
62 .write_begin = afs_write_begin,
63 .write_end = afs_write_end,
31143d5d 64 .writepages = afs_writepages,
a9eb558a 65 .migrate_folio = filemap_migrate_folio,
1da177e4
LT
66};
67
75bd228d 68const struct address_space_operations afs_symlink_aops = {
d7e0f539 69 .read_folio = afs_symlink_read_folio,
508cae68 70 .release_folio = afs_release_folio,
fcf227da 71 .invalidate_folio = afs_invalidate_folio,
a9eb558a 72 .migrate_folio = filemap_migrate_folio,
75bd228d
DH
73};
74
1cf7a151 75static const struct vm_operations_struct afs_vm_ops = {
6e0e99d5
DH
76 .open = afs_vm_open,
77 .close = afs_vm_close,
1cf7a151 78 .fault = filemap_fault,
6e0e99d5 79 .map_pages = afs_vm_map_pages,
1cf7a151
DH
80 .page_mkwrite = afs_page_mkwrite,
81};
82
4343d008
DH
83/*
84 * Discard a pin on a writeback key.
85 */
86void afs_put_wb_key(struct afs_wb_key *wbk)
87{
e49c7b2f 88 if (wbk && refcount_dec_and_test(&wbk->usage)) {
4343d008
DH
89 key_put(wbk->key);
90 kfree(wbk);
91 }
92}
93
94/*
95 * Cache key for writeback.
96 */
97int afs_cache_wb_key(struct afs_vnode *vnode, struct afs_file *af)
98{
99 struct afs_wb_key *wbk, *p;
100
101 wbk = kzalloc(sizeof(struct afs_wb_key), GFP_KERNEL);
102 if (!wbk)
103 return -ENOMEM;
104 refcount_set(&wbk->usage, 2);
105 wbk->key = af->key;
106
107 spin_lock(&vnode->wb_lock);
108 list_for_each_entry(p, &vnode->wb_keys, vnode_link) {
109 if (p->key == wbk->key)
110 goto found;
111 }
112
113 key_get(wbk->key);
114 list_add_tail(&wbk->vnode_link, &vnode->wb_keys);
115 spin_unlock(&vnode->wb_lock);
116 af->wb = wbk;
117 return 0;
118
119found:
120 refcount_inc(&p->usage);
121 spin_unlock(&vnode->wb_lock);
122 af->wb = p;
123 kfree(wbk);
124 return 0;
125}
126
00d3b7a4
DH
127/*
128 * open an AFS file or directory and attach a key to it
129 */
130int afs_open(struct inode *inode, struct file *file)
131{
132 struct afs_vnode *vnode = AFS_FS_I(inode);
215804a9 133 struct afs_file *af;
00d3b7a4 134 struct key *key;
260a9803 135 int ret;
00d3b7a4 136
3b6492df 137 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
00d3b7a4
DH
138
139 key = afs_request_key(vnode->volume->cell);
140 if (IS_ERR(key)) {
215804a9
DH
141 ret = PTR_ERR(key);
142 goto error;
00d3b7a4
DH
143 }
144
215804a9
DH
145 af = kzalloc(sizeof(*af), GFP_KERNEL);
146 if (!af) {
147 ret = -ENOMEM;
148 goto error_key;
260a9803 149 }
4343d008 150 af->key = key;
260a9803 151
215804a9
DH
152 ret = afs_validate(vnode, key);
153 if (ret < 0)
154 goto error_af;
155
4343d008
DH
156 if (file->f_mode & FMODE_WRITE) {
157 ret = afs_cache_wb_key(vnode, af);
158 if (ret < 0)
159 goto error_af;
160 }
5a813276
DH
161
162 if (file->f_flags & O_TRUNC)
163 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
523d27cd
DH
164
165 fscache_use_cookie(afs_vnode_cache(vnode), file->f_mode & FMODE_WRITE);
166
215804a9 167 file->private_data = af;
00d3b7a4
DH
168 _leave(" = 0");
169 return 0;
215804a9
DH
170
171error_af:
172 kfree(af);
173error_key:
174 key_put(key);
175error:
176 _leave(" = %d", ret);
177 return ret;
00d3b7a4
DH
178}
179
180/*
181 * release an AFS file or directory and discard its key
182 */
183int afs_release(struct inode *inode, struct file *file)
184{
523d27cd 185 struct afs_vnode_cache_aux aux;
00d3b7a4 186 struct afs_vnode *vnode = AFS_FS_I(inode);
215804a9 187 struct afs_file *af = file->private_data;
523d27cd 188 loff_t i_size;
a1b879ee 189 int ret = 0;
00d3b7a4 190
3b6492df 191 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
00d3b7a4 192
5a813276 193 if ((file->f_mode & FMODE_WRITE))
a1b879ee 194 ret = vfs_fsync(file, 0);
5a813276 195
215804a9 196 file->private_data = NULL;
4343d008
DH
197 if (af->wb)
198 afs_put_wb_key(af->wb);
523d27cd
DH
199
200 if ((file->f_mode & FMODE_WRITE)) {
874c8ca1 201 i_size = i_size_read(&vnode->netfs.inode);
523d27cd
DH
202 afs_set_cache_aux(vnode, &aux);
203 fscache_unuse_cookie(afs_vnode_cache(vnode), &aux, &i_size);
204 } else {
205 fscache_unuse_cookie(afs_vnode_cache(vnode), NULL, NULL);
206 }
207
215804a9
DH
208 key_put(af->key);
209 kfree(af);
4343d008 210 afs_prune_wb_keys(vnode);
a1b879ee
DH
211 _leave(" = %d", ret);
212 return ret;
00d3b7a4
DH
213}
214
c4508464 215/*
5cbf0398 216 * Allocate a new read record.
c4508464 217 */
5cbf0398 218struct afs_read *afs_alloc_read(gfp_t gfp)
c4508464 219{
5cbf0398 220 struct afs_read *req;
c4508464 221
5cbf0398
DH
222 req = kzalloc(sizeof(struct afs_read), gfp);
223 if (req)
224 refcount_set(&req->usage, 1);
c4508464 225
5cbf0398 226 return req;
c4508464
DH
227}
228
196ee9cd
DH
229/*
230 * Dispose of a ref to a read record.
231 */
232void afs_put_read(struct afs_read *req)
233{
f3ddee8d 234 if (refcount_dec_and_test(&req->usage)) {
c4508464
DH
235 if (req->cleanup)
236 req->cleanup(req);
c69bf479 237 key_put(req->key);
196ee9cd
DH
238 kfree(req);
239 }
240}
241
dc419184
DH
242static void afs_fetch_data_notify(struct afs_operation *op)
243{
244 struct afs_read *req = op->fetch.req;
6a19114b 245 struct netfs_io_subrequest *subreq = req->subreq;
2de5599f 246 int error = afs_op_error(op);
dc419184 247
dc419184 248 req->error = error;
5cbf0398
DH
249 if (subreq) {
250 __set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
251 netfs_subreq_terminated(subreq, error ?: req->actual_len, false);
252 req->subreq = NULL;
253 } else if (req->done) {
dc419184 254 req->done(req);
5cbf0398 255 }
dc419184
DH
256}
257
e49c7b2f
DH
258static void afs_fetch_data_success(struct afs_operation *op)
259{
260 struct afs_vnode *vnode = op->file[0].vnode;
261
262 _enter("op=%08x", op->debug_id);
e49c7b2f
DH
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);
dc419184 266 afs_fetch_data_notify(op);
e49c7b2f
DH
267}
268
269static void afs_fetch_data_put(struct afs_operation *op)
270{
2de5599f 271 op->fetch.req->error = afs_op_error(op);
e49c7b2f
DH
272 afs_put_read(op->fetch.req);
273}
274
275static 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,
728279a5 279 .aborted = afs_check_for_remote_deletion,
dc419184 280 .failed = afs_fetch_data_notify,
e49c7b2f
DH
281 .put = afs_fetch_data_put,
282};
283
d2ddc776
DH
284/*
285 * Fetch file data from the volume.
286 */
c69bf479 287int afs_fetch_data(struct afs_vnode *vnode, struct afs_read *req)
d2ddc776 288{
e49c7b2f 289 struct afs_operation *op;
d2ddc776 290
3b6492df 291 _enter("%s{%llx:%llu.%u},%x,,,",
d2ddc776
DH
292 vnode->volume->name,
293 vnode->fid.vid,
294 vnode->fid.vnode,
295 vnode->fid.unique,
c69bf479 296 key_serial(req->key));
d2ddc776 297
c69bf479 298 op = afs_alloc_operation(req->key, vnode->volume);
5cbf0398
DH
299 if (IS_ERR(op)) {
300 if (req->subreq)
301 netfs_subreq_terminated(req->subreq, PTR_ERR(op), false);
e49c7b2f 302 return PTR_ERR(op);
5cbf0398 303 }
a58823ac 304
e49c7b2f 305 afs_op_set_vnode(op, 0, vnode);
d2ddc776 306
e49c7b2f
DH
307 op->fetch.req = afs_get_read(req);
308 op->ops = &afs_fetch_data_operation;
309 return afs_do_sync_operation(op);
d2ddc776
DH
310}
311
f18a3785 312static void afs_issue_read(struct netfs_io_subrequest *subreq)
1da177e4 313{
5cbf0398
DH
314 struct afs_vnode *vnode = AFS_FS_I(subreq->rreq->inode);
315 struct afs_read *fsreq;
1da177e4 316
5cbf0398
DH
317 fsreq = afs_alloc_read(GFP_NOFS);
318 if (!fsreq)
319 return netfs_subreq_terminated(subreq, -ENOMEM, false);
1da177e4 320
5cbf0398
DH
321 fsreq->subreq = subreq;
322 fsreq->pos = subreq->start + subreq->transferred;
323 fsreq->len = subreq->len - subreq->transferred;
345e1ae0 324 fsreq->key = key_get(subreq->rreq->netfs_priv);
5cbf0398
DH
325 fsreq->vnode = vnode;
326 fsreq->iter = &fsreq->def_iter;
03ffae90 327
de4eda9d 328 iov_iter_xarray(&fsreq->def_iter, ITER_DEST,
874c8ca1 329 &fsreq->vnode->netfs.inode.i_mapping->i_pages,
5cbf0398 330 fsreq->pos, fsreq->len);
c4508464 331
5cbf0398 332 afs_fetch_data(fsreq->vnode, fsreq);
345e1ae0 333 afs_put_read(fsreq);
ec26815a 334}
1da177e4 335
d7e0f539 336static int afs_symlink_read_folio(struct file *file, struct folio *folio)
f6d335c0 337{
d7e0f539 338 struct afs_vnode *vnode = AFS_FS_I(folio->mapping->host);
5cbf0398 339 struct afs_read *fsreq;
f6d335c0
AV
340 int ret;
341
5cbf0398
DH
342 fsreq = afs_alloc_read(GFP_NOFS);
343 if (!fsreq)
91b467e0
DH
344 return -ENOMEM;
345
78525c74
DH
346 fsreq->pos = folio_pos(folio);
347 fsreq->len = folio_size(folio);
5cbf0398
DH
348 fsreq->vnode = vnode;
349 fsreq->iter = &fsreq->def_iter;
de4eda9d 350 iov_iter_xarray(&fsreq->def_iter, ITER_DEST, &folio->mapping->i_pages,
5cbf0398 351 fsreq->pos, fsreq->len);
c4508464 352
5cbf0398 353 ret = afs_fetch_data(fsreq->vnode, fsreq);
78525c74 354 if (ret == 0)
d7e0f539
MWO
355 folio_mark_uptodate(folio);
356 folio_unlock(folio);
5cbf0398
DH
357 return ret;
358}
91b467e0 359
2de16041 360static int afs_init_request(struct netfs_io_request *rreq, struct file *file)
5cbf0398
DH
361{
362 rreq->netfs_priv = key_get(afs_file_key(file));
2de16041 363 return 0;
5cbf0398 364}
91b467e0 365
6a19114b 366static int afs_begin_cache_operation(struct netfs_io_request *rreq)
5cbf0398 367{
2cee6fbb 368#ifdef CONFIG_AFS_FSCACHE
5cbf0398 369 struct afs_vnode *vnode = AFS_FS_I(rreq->inode);
91b467e0 370
523d27cd
DH
371 return fscache_begin_read_operation(&rreq->cache_resources,
372 afs_vnode_cache(vnode));
2cee6fbb
DH
373#else
374 return -ENOBUFS;
375#endif
91b467e0
DH
376}
377
3003bbd0 378static int afs_check_write_begin(struct file *file, loff_t pos, unsigned len,
fac47b43 379 struct folio **foliop, void **_fsdata)
3003bbd0
DH
380{
381 struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
382
383 return test_bit(AFS_VNODE_DELETED, &vnode->flags) ? -ESTALE : 0;
384}
385
40a81101 386static void afs_free_request(struct netfs_io_request *rreq)
1da177e4 387{
40a81101 388 key_put(rreq->netfs_priv);
5cbf0398 389}
f6d335c0 390
6a19114b
DH
391const struct netfs_request_ops afs_req_ops = {
392 .init_request = afs_init_request,
40a81101 393 .free_request = afs_free_request,
5cbf0398 394 .begin_cache_operation = afs_begin_cache_operation,
3003bbd0 395 .check_write_begin = afs_check_write_begin,
f18a3785 396 .issue_read = afs_issue_read,
5cbf0398 397};
1da177e4 398
c7f75ef3
DH
399int afs_write_inode(struct inode *inode, struct writeback_control *wbc)
400{
401 fscache_unpin_writeback(wbc, afs_vnode_cache(AFS_FS_I(inode)));
402 return 0;
403}
404
f86726a6
DH
405/*
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.
408 */
fcf227da
MWO
409static void afs_invalidate_dirty(struct folio *folio, size_t offset,
410 size_t length)
f86726a6 411{
78525c74 412 struct afs_vnode *vnode = AFS_FS_I(folio_inode(folio));
f86726a6
DH
413 unsigned long priv;
414 unsigned int f, t, end = offset + length;
415
78525c74 416 priv = (unsigned long)folio_get_private(folio);
f86726a6
DH
417
418 /* we clean up only if the entire page is being invalidated */
78525c74 419 if (offset == 0 && length == folio_size(folio))
f86726a6
DH
420 goto full_invalidate;
421
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
424 * again.
425 */
78525c74 426 if (afs_is_folio_dirty_mmapped(priv))
f86726a6
DH
427 return;
428
429 /* We may need to shorten the dirty region */
78525c74
DH
430 f = afs_folio_dirty_from(folio, priv);
431 t = afs_folio_dirty_to(folio, priv);
f86726a6
DH
432
433 if (t <= offset || f >= end)
434 return; /* Doesn't overlap */
435
436 if (f < offset && t > end)
437 return; /* Splits the dirty region - just absorb it */
438
439 if (f >= offset && t <= end)
440 goto undirty;
441
442 if (f < offset)
443 t = offset;
444 else
445 f = end;
446 if (f == t)
447 goto undirty;
448
78525c74
DH
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);
f86726a6
DH
452 return;
453
454undirty:
78525c74
DH
455 trace_afs_folio_dirty(vnode, tracepoint_string("undirty"), folio);
456 folio_clear_dirty_for_io(folio);
f86726a6 457full_invalidate:
78525c74
DH
458 trace_afs_folio_dirty(vnode, tracepoint_string("inval"), folio);
459 folio_detach_private(folio);
f86726a6
DH
460}
461
1da177e4 462/*
9b3f26c9
DH
463 * invalidate part or all of a page
464 * - release a page and clean up its private data if offset is 0 (indicating
465 * the entire page)
466 */
fcf227da
MWO
467static void afs_invalidate_folio(struct folio *folio, size_t offset,
468 size_t length)
9b3f26c9 469{
fcf227da 470 _enter("{%lu},%zu,%zu", folio->index, offset, length);
9b3f26c9 471
fcf227da 472 BUG_ON(!folio_test_locked(folio));
9b3f26c9 473
fcf227da 474 if (folio_get_private(folio))
78525c74 475 afs_invalidate_dirty(folio, offset, length);
9b3f26c9 476
78525c74 477 folio_wait_fscache(folio);
9b3f26c9
DH
478 _leave("");
479}
480
481/*
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
1da177e4 484 */
508cae68 485static bool afs_release_folio(struct folio *folio, gfp_t gfp)
1da177e4 486{
78525c74 487 struct afs_vnode *vnode = AFS_FS_I(folio_inode(folio));
1da177e4 488
3b6492df 489 _enter("{{%llx:%llu}[%lu],%lx},%x",
78525c74 490 vnode->fid.vid, vnode->fid.vnode, folio_index(folio), folio->flags,
523d27cd 491 gfp);
1da177e4 492
508cae68 493 /* deny if folio is being written to the cache and the caller hasn't
9b3f26c9 494 * elected to wait */
630f5dda 495#ifdef CONFIG_AFS_FSCACHE
78525c74 496 if (folio_test_fscache(folio)) {
d7bdba1c 497 if (current_is_kswapd() || !(gfp & __GFP_FS))
630f5dda 498 return false;
78525c74 499 folio_wait_fscache(folio);
630f5dda 500 }
523d27cd 501 fscache_note_page_release(afs_vnode_cache(vnode));
630f5dda
DH
502#endif
503
78525c74
DH
504 if (folio_test_private(folio)) {
505 trace_afs_folio_dirty(vnode, tracepoint_string("rel"), folio);
506 folio_detach_private(folio);
1da177e4
LT
507 }
508
78525c74 509 /* Indicate that the folio can be released */
9b3f26c9 510 _leave(" = T");
78525c74 511 return true;
ec26815a 512}
1cf7a151 513
6e0e99d5
DH
514static void afs_add_open_mmap(struct afs_vnode *vnode)
515{
516 if (atomic_inc_return(&vnode->cb_nr_mmap) == 1) {
453924de 517 down_write(&vnode->volume->open_mmaps_lock);
6e0e99d5 518
1744a22a 519 if (list_empty(&vnode->cb_mmap_link))
453924de 520 list_add_tail(&vnode->cb_mmap_link, &vnode->volume->open_mmaps);
6e0e99d5 521
453924de 522 up_write(&vnode->volume->open_mmaps_lock);
6e0e99d5
DH
523 }
524}
525
526static void afs_drop_open_mmap(struct afs_vnode *vnode)
527{
528 if (!atomic_dec_and_test(&vnode->cb_nr_mmap))
529 return;
530
453924de 531 down_write(&vnode->volume->open_mmaps_lock);
6e0e99d5
DH
532
533 if (atomic_read(&vnode->cb_nr_mmap) == 0)
534 list_del_init(&vnode->cb_mmap_link);
535
453924de 536 up_write(&vnode->volume->open_mmaps_lock);
6e0e99d5
DH
537 flush_work(&vnode->cb_work);
538}
539
1cf7a151
DH
540/*
541 * Handle setting up a memory mapping on an AFS file.
542 */
543static int afs_file_mmap(struct file *file, struct vm_area_struct *vma)
544{
6e0e99d5 545 struct afs_vnode *vnode = AFS_FS_I(file_inode(file));
1cf7a151
DH
546 int ret;
547
6e0e99d5
DH
548 afs_add_open_mmap(vnode);
549
1cf7a151
DH
550 ret = generic_file_mmap(file, vma);
551 if (ret == 0)
552 vma->vm_ops = &afs_vm_ops;
6e0e99d5
DH
553 else
554 afs_drop_open_mmap(vnode);
1cf7a151
DH
555 return ret;
556}
3978d816 557
6e0e99d5
DH
558static void afs_vm_open(struct vm_area_struct *vma)
559{
560 afs_add_open_mmap(AFS_FS_I(file_inode(vma->vm_file)));
561}
562
563static void afs_vm_close(struct vm_area_struct *vma)
564{
565 afs_drop_open_mmap(AFS_FS_I(file_inode(vma->vm_file)));
566}
567
568static vm_fault_t afs_vm_map_pages(struct vm_fault *vmf, pgoff_t start_pgoff, pgoff_t end_pgoff)
569{
570 struct afs_vnode *vnode = AFS_FS_I(file_inode(vmf->vma->vm_file));
6e0e99d5 571
453924de 572 if (afs_check_validity(vnode))
6e0e99d5 573 return filemap_map_pages(vmf, start_pgoff, end_pgoff);
0050d7f5 574 return 0;
6e0e99d5
DH
575}
576
3978d816
DH
577static ssize_t afs_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
578{
579 struct afs_vnode *vnode = AFS_FS_I(file_inode(iocb->ki_filp));
580 struct afs_file *af = iocb->ki_filp->private_data;
581 int ret;
582
583 ret = afs_validate(vnode, af->key);
584 if (ret < 0)
585 return ret;
586
587 return generic_file_read_iter(iocb, iter);
588}
d96d96ee
DH
589
590static ssize_t afs_file_splice_read(struct file *in, loff_t *ppos,
591 struct pipe_inode_info *pipe,
592 size_t len, unsigned int flags)
593{
594 struct afs_vnode *vnode = AFS_FS_I(file_inode(in));
595 struct afs_file *af = in->private_data;
596 int ret;
597
598 ret = afs_validate(vnode, af->key);
599 if (ret < 0)
600 return ret;
601
2cb1e089 602 return filemap_splice_read(in, ppos, pipe, len, flags);
d96d96ee 603}