blob: 8415733f7bc1c2bce2a8c288c23c48984dafd4d6 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells08e0e7c2007-04-26 15:55:03 -07002/* AFS filesystem file handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
David Howells08e0e7c2007-04-26 15:55:03 -07004 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Written by David Howells (dhowells@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/fs.h>
12#include <linux/pagemap.h>
David Howells31143d52007-05-09 02:33:46 -070013#include <linux/writeback.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
David Howells91b467e2017-01-05 10:38:35 +000015#include <linux/task_io_accounting_ops.h>
Nikolay Borisovf86196e2019-01-03 15:29:02 -080016#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "internal.h"
18
David Howells1cf7a152017-11-02 15:27:52 +000019static int afs_file_mmap(struct file *file, struct vm_area_struct *vma);
David Howells416351f2007-05-09 02:33:45 -070020static int afs_readpage(struct file *file, struct page *page);
Lukas Czernerd47992f2013-05-21 23:17:23 -040021static void afs_invalidatepage(struct page *page, unsigned int offset,
22 unsigned int length);
David Howells416351f2007-05-09 02:33:45 -070023static int afs_releasepage(struct page *page, gfp_t gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
David Howells9b3f26c2009-04-03 16:42:41 +010025static int afs_readpages(struct file *filp, struct address_space *mapping,
26 struct list_head *pages, unsigned nr_pages);
27
David Howells00d3b7a2007-04-26 15:57:07 -070028const struct file_operations afs_file_operations = {
29 .open = afs_open,
30 .release = afs_release,
31 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040032 .read_iter = generic_file_read_iter,
Al Viro50b55512014-04-03 14:13:46 -040033 .write_iter = afs_file_write,
David Howells1cf7a152017-11-02 15:27:52 +000034 .mmap = afs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020035 .splice_read = generic_file_splice_read,
David Howells31143d52007-05-09 02:33:46 -070036 .fsync = afs_fsync,
David Howellse8d6c552007-07-15 23:40:12 -070037 .lock = afs_lock,
38 .flock = afs_flock,
David Howells00d3b7a2007-04-26 15:57:07 -070039};
40
Arjan van de Ven754661f2007-02-12 00:55:38 -080041const struct inode_operations afs_file_inode_operations = {
David Howells416351f2007-05-09 02:33:45 -070042 .getattr = afs_getattr,
David Howells31143d52007-05-09 02:33:46 -070043 .setattr = afs_setattr,
David Howells00d3b7a2007-04-26 15:57:07 -070044 .permission = afs_permission,
David Howellsd3e3b7ea2017-07-06 15:50:27 +010045 .listxattr = afs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070048const struct address_space_operations afs_fs_aops = {
David Howells416351f2007-05-09 02:33:45 -070049 .readpage = afs_readpage,
David Howells9b3f26c2009-04-03 16:42:41 +010050 .readpages = afs_readpages,
David Howells31143d52007-05-09 02:33:46 -070051 .set_page_dirty = afs_set_page_dirty,
52 .launder_page = afs_launder_page,
David Howells416351f2007-05-09 02:33:45 -070053 .releasepage = afs_releasepage,
54 .invalidatepage = afs_invalidatepage,
Nick Piggin15b46502008-10-15 22:04:32 -070055 .write_begin = afs_write_begin,
56 .write_end = afs_write_end,
David Howells31143d52007-05-09 02:33:46 -070057 .writepage = afs_writepage,
58 .writepages = afs_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
David Howells1cf7a152017-11-02 15:27:52 +000061static const struct vm_operations_struct afs_vm_ops = {
62 .fault = filemap_fault,
63 .map_pages = filemap_map_pages,
64 .page_mkwrite = afs_page_mkwrite,
65};
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
David Howells4343d002017-11-02 15:27:52 +000068 * Discard a pin on a writeback key.
69 */
70void afs_put_wb_key(struct afs_wb_key *wbk)
71{
72 if (refcount_dec_and_test(&wbk->usage)) {
73 key_put(wbk->key);
74 kfree(wbk);
75 }
76}
77
78/*
79 * Cache key for writeback.
80 */
81int afs_cache_wb_key(struct afs_vnode *vnode, struct afs_file *af)
82{
83 struct afs_wb_key *wbk, *p;
84
85 wbk = kzalloc(sizeof(struct afs_wb_key), GFP_KERNEL);
86 if (!wbk)
87 return -ENOMEM;
88 refcount_set(&wbk->usage, 2);
89 wbk->key = af->key;
90
91 spin_lock(&vnode->wb_lock);
92 list_for_each_entry(p, &vnode->wb_keys, vnode_link) {
93 if (p->key == wbk->key)
94 goto found;
95 }
96
97 key_get(wbk->key);
98 list_add_tail(&wbk->vnode_link, &vnode->wb_keys);
99 spin_unlock(&vnode->wb_lock);
100 af->wb = wbk;
101 return 0;
102
103found:
104 refcount_inc(&p->usage);
105 spin_unlock(&vnode->wb_lock);
106 af->wb = p;
107 kfree(wbk);
108 return 0;
109}
110
111/*
David Howells00d3b7a2007-04-26 15:57:07 -0700112 * open an AFS file or directory and attach a key to it
113 */
114int afs_open(struct inode *inode, struct file *file)
115{
116 struct afs_vnode *vnode = AFS_FS_I(inode);
David Howells215804a2017-11-02 15:27:52 +0000117 struct afs_file *af;
David Howells00d3b7a2007-04-26 15:57:07 -0700118 struct key *key;
David Howells260a9802007-04-26 15:59:35 -0700119 int ret;
David Howells00d3b7a2007-04-26 15:57:07 -0700120
David Howells3b6492d2018-10-20 00:57:57 +0100121 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
David Howells00d3b7a2007-04-26 15:57:07 -0700122
123 key = afs_request_key(vnode->volume->cell);
124 if (IS_ERR(key)) {
David Howells215804a2017-11-02 15:27:52 +0000125 ret = PTR_ERR(key);
126 goto error;
127 }
128
129 af = kzalloc(sizeof(*af), GFP_KERNEL);
130 if (!af) {
131 ret = -ENOMEM;
132 goto error_key;
David Howells00d3b7a2007-04-26 15:57:07 -0700133 }
David Howells4343d002017-11-02 15:27:52 +0000134 af->key = key;
David Howells00d3b7a2007-04-26 15:57:07 -0700135
David Howells260a9802007-04-26 15:59:35 -0700136 ret = afs_validate(vnode, key);
David Howells215804a2017-11-02 15:27:52 +0000137 if (ret < 0)
138 goto error_af;
David Howells260a9802007-04-26 15:59:35 -0700139
David Howells4343d002017-11-02 15:27:52 +0000140 if (file->f_mode & FMODE_WRITE) {
141 ret = afs_cache_wb_key(vnode, af);
142 if (ret < 0)
143 goto error_af;
144 }
David Howells5a813272018-04-06 14:17:26 +0100145
146 if (file->f_flags & O_TRUNC)
147 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
David Howells4343d002017-11-02 15:27:52 +0000148
David Howells215804a2017-11-02 15:27:52 +0000149 file->private_data = af;
David Howells00d3b7a2007-04-26 15:57:07 -0700150 _leave(" = 0");
151 return 0;
David Howells215804a2017-11-02 15:27:52 +0000152
153error_af:
154 kfree(af);
155error_key:
156 key_put(key);
157error:
158 _leave(" = %d", ret);
159 return ret;
David Howells00d3b7a2007-04-26 15:57:07 -0700160}
161
162/*
163 * release an AFS file or directory and discard its key
164 */
165int afs_release(struct inode *inode, struct file *file)
166{
167 struct afs_vnode *vnode = AFS_FS_I(inode);
David Howells215804a2017-11-02 15:27:52 +0000168 struct afs_file *af = file->private_data;
David Howellsa1b879e2019-05-15 12:09:17 +0100169 int ret = 0;
David Howells00d3b7a2007-04-26 15:57:07 -0700170
David Howells3b6492d2018-10-20 00:57:57 +0100171 _enter("{%llx:%llu},", vnode->fid.vid, vnode->fid.vnode);
David Howells00d3b7a2007-04-26 15:57:07 -0700172
David Howells5a813272018-04-06 14:17:26 +0100173 if ((file->f_mode & FMODE_WRITE))
David Howellsa1b879e2019-05-15 12:09:17 +0100174 ret = vfs_fsync(file, 0);
David Howells5a813272018-04-06 14:17:26 +0100175
David Howells215804a2017-11-02 15:27:52 +0000176 file->private_data = NULL;
David Howells4343d002017-11-02 15:27:52 +0000177 if (af->wb)
178 afs_put_wb_key(af->wb);
David Howells215804a2017-11-02 15:27:52 +0000179 key_put(af->key);
180 kfree(af);
David Howells4343d002017-11-02 15:27:52 +0000181 afs_prune_wb_keys(vnode);
David Howellsa1b879e2019-05-15 12:09:17 +0100182 _leave(" = %d", ret);
183 return ret;
David Howells00d3b7a2007-04-26 15:57:07 -0700184}
185
David Howells196ee9c2017-01-05 10:38:34 +0000186/*
187 * Dispose of a ref to a read record.
188 */
189void afs_put_read(struct afs_read *req)
190{
191 int i;
192
David Howellsf3ddee82018-04-06 14:17:25 +0100193 if (refcount_dec_and_test(&req->usage)) {
Jia-Ju Baia6eed4a2019-07-30 14:38:51 +0100194 if (req->pages) {
195 for (i = 0; i < req->nr_pages; i++)
196 if (req->pages[i])
197 put_page(req->pages[i]);
198 if (req->pages != req->array)
199 kfree(req->pages);
200 }
David Howells196ee9c2017-01-05 10:38:34 +0000201 kfree(req);
202 }
203}
204
Matt Kraai6566abd2009-04-17 12:56:38 +0100205#ifdef CONFIG_AFS_FSCACHE
David Howells00d3b7a2007-04-26 15:57:07 -0700206/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * deal with notification that a page was read from the cache
208 */
David Howells9b3f26c2009-04-03 16:42:41 +0100209static void afs_file_readpage_read_complete(struct page *page,
210 void *data,
211 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
David Howells9b3f26c2009-04-03 16:42:41 +0100213 _enter("%p,%p,%d", page, data, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
David Howells9b3f26c2009-04-03 16:42:41 +0100215 /* if the read completes with an error, we just unlock the page and let
216 * the VM reissue the readpage */
217 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 SetPageUptodate(page);
219 unlock_page(page);
David Howellsec268152007-04-26 15:49:28 -0700220}
Matt Kraai6566abd2009-04-17 12:56:38 +0100221#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/*
David Howellsd2ddc772017-11-02 15:27:50 +0000224 * Fetch file data from the volume.
225 */
David Howells0b9c0172019-11-21 09:12:17 +0000226int afs_fetch_data(struct afs_vnode *vnode, struct key *key, struct afs_read *req)
David Howellsd2ddc772017-11-02 15:27:50 +0000227{
228 struct afs_fs_cursor fc;
David Howellsa58823a2019-05-09 15:16:10 +0100229 struct afs_status_cb *scb;
David Howellsd2ddc772017-11-02 15:27:50 +0000230 int ret;
231
David Howells3b6492d2018-10-20 00:57:57 +0100232 _enter("%s{%llx:%llu.%u},%x,,,",
David Howellsd2ddc772017-11-02 15:27:50 +0000233 vnode->volume->name,
234 vnode->fid.vid,
235 vnode->fid.vnode,
236 vnode->fid.unique,
237 key_serial(key));
238
David Howellsa58823a2019-05-09 15:16:10 +0100239 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
240 if (!scb)
241 return -ENOMEM;
242
David Howellsd2ddc772017-11-02 15:27:50 +0000243 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100244 if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
David Howellsa58823a2019-05-09 15:16:10 +0100245 afs_dataversion_t data_version = vnode->status.data_version;
246
David Howellsd2ddc772017-11-02 15:27:50 +0000247 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100248 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howells0b9c0172019-11-21 09:12:17 +0000249 afs_fs_fetch_data(&fc, scb, req);
David Howellsd2ddc772017-11-02 15:27:50 +0000250 }
251
David Howellsa58823a2019-05-09 15:16:10 +0100252 afs_check_for_remote_deletion(&fc, vnode);
253 afs_vnode_commit_status(&fc, vnode, fc.cb_break,
254 &data_version, scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000255 ret = afs_end_vnode_operation(&fc);
256 }
257
David Howells76a5cb62018-04-06 14:17:26 +0100258 if (ret == 0) {
259 afs_stat_v(vnode, n_fetches);
David Howells0b9c0172019-11-21 09:12:17 +0000260 atomic_long_add(req->actual_len,
David Howells76a5cb62018-04-06 14:17:26 +0100261 &afs_v2net(vnode)->n_fetch_bytes);
262 }
263
David Howellsa58823a2019-05-09 15:16:10 +0100264 kfree(scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000265 _leave(" = %d", ret);
266 return ret;
267}
268
269/*
Al Virof6d335c2010-05-21 15:27:09 +0100270 * read page from file, directory or symlink, given a key to use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
Al Virof6d335c2010-05-21 15:27:09 +0100272int afs_page_filler(void *data, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Al Virof6d335c2010-05-21 15:27:09 +0100274 struct inode *inode = page->mapping->host;
275 struct afs_vnode *vnode = AFS_FS_I(inode);
David Howells196ee9c2017-01-05 10:38:34 +0000276 struct afs_read *req;
Al Virof6d335c2010-05-21 15:27:09 +0100277 struct key *key = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int ret;
279
David Howells00d3b7a2007-04-26 15:57:07 -0700280 _enter("{%x},{%lu},{%lu}", key_serial(key), inode->i_ino, page->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Matt Mackallcd7619d2005-05-01 08:59:01 -0700282 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 ret = -ESTALE;
David Howells08e0e7c2007-04-26 15:55:03 -0700285 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 goto error;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* is it cached? */
David Howells9b3f26c2009-04-03 16:42:41 +0100289#ifdef CONFIG_AFS_FSCACHE
290 ret = fscache_read_or_alloc_page(vnode->cache,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 page,
292 afs_file_readpage_read_complete,
293 NULL,
294 GFP_KERNEL);
295#else
296 ret = -ENOBUFS;
297#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 switch (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* read BIO submitted (page in cache) */
300 case 0:
301 break;
302
David Howells9b3f26c2009-04-03 16:42:41 +0100303 /* page not yet cached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 case -ENODATA:
David Howells9b3f26c2009-04-03 16:42:41 +0100305 _debug("cache said ENODATA");
306 goto go_on;
307
308 /* page will not be cached */
309 case -ENOBUFS:
310 _debug("cache said ENOBUFS");
Gustavo A. R. Silvae690c9e2019-01-10 15:52:25 -0600311
312 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 default:
David Howells9b3f26c2009-04-03 16:42:41 +0100314 go_on:
Zhengyuan Liuee102582019-06-20 18:12:17 +0100315 req = kzalloc(struct_size(req, array, 1), GFP_KERNEL);
David Howells196ee9c2017-01-05 10:38:34 +0000316 if (!req)
317 goto enomem;
318
David Howells6db3ac32017-03-16 16:27:44 +0000319 /* We request a full page. If the page is a partial one at the
320 * end of the file, the server will return a short read and the
321 * unmarshalling code will clear the unfilled space.
322 */
David Howellsf3ddee82018-04-06 14:17:25 +0100323 refcount_set(&req->usage, 1);
David Howells196ee9c2017-01-05 10:38:34 +0000324 req->pos = (loff_t)page->index << PAGE_SHIFT;
David Howells6db3ac32017-03-16 16:27:44 +0000325 req->len = PAGE_SIZE;
David Howells196ee9c2017-01-05 10:38:34 +0000326 req->nr_pages = 1;
David Howellsf3ddee82018-04-06 14:17:25 +0100327 req->pages = req->array;
David Howells196ee9c2017-01-05 10:38:34 +0000328 req->pages[0] = page;
329 get_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 /* read the contents of the file from the server into the
332 * page */
David Howellsd2ddc772017-11-02 15:27:50 +0000333 ret = afs_fetch_data(vnode, key, req);
David Howells196ee9c2017-01-05 10:38:34 +0000334 afs_put_read(req);
David Howellsdab17c12017-11-02 15:27:52 +0000335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700337 if (ret == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 _debug("got NOENT from server"
339 " - marking file deleted and stale");
David Howells08e0e7c2007-04-26 15:55:03 -0700340 set_bit(AFS_VNODE_DELETED, &vnode->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 ret = -ESTALE;
342 }
David Howells9b3f26c2009-04-03 16:42:41 +0100343
344#ifdef CONFIG_AFS_FSCACHE
345 fscache_uncache_page(vnode->cache, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100347 BUG_ON(PageFsCache(page));
David Howells68ae8492017-03-16 16:27:48 +0000348
349 if (ret == -EINTR ||
350 ret == -ENOMEM ||
351 ret == -ERESTARTSYS ||
352 ret == -EAGAIN)
353 goto error;
354 goto io_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 SetPageUptodate(page);
358
David Howells9b3f26c2009-04-03 16:42:41 +0100359 /* send the page to the cache */
360#ifdef CONFIG_AFS_FSCACHE
361 if (PageFsCache(page) &&
David Howellsee1235a2018-04-04 13:41:28 +0100362 fscache_write_page(vnode->cache, page, vnode->status.size,
363 GFP_KERNEL) != 0) {
David Howells9b3f26c2009-04-03 16:42:41 +0100364 fscache_uncache_page(vnode->cache, page);
365 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100368 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
370
371 _leave(" = 0");
372 return 0;
373
David Howells68ae8492017-03-16 16:27:48 +0000374io_error:
375 SetPageError(page);
376 goto error;
David Howells196ee9c2017-01-05 10:38:34 +0000377enomem:
378 ret = -ENOMEM;
David Howells08e0e7c2007-04-26 15:55:03 -0700379error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 _leave(" = %d", ret);
382 return ret;
David Howellsec268152007-04-26 15:49:28 -0700383}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385/*
Al Virof6d335c2010-05-21 15:27:09 +0100386 * read page from file, directory or symlink, given a file to nominate the key
387 * to be used
388 */
389static int afs_readpage(struct file *file, struct page *page)
390{
391 struct key *key;
392 int ret;
393
394 if (file) {
David Howells215804a2017-11-02 15:27:52 +0000395 key = afs_file_key(file);
Al Virof6d335c2010-05-21 15:27:09 +0100396 ASSERT(key != NULL);
397 ret = afs_page_filler(key, page);
398 } else {
399 struct inode *inode = page->mapping->host;
David Howellsd2ddc772017-11-02 15:27:50 +0000400 key = afs_request_key(AFS_FS_S(inode->i_sb)->cell);
Al Virof6d335c2010-05-21 15:27:09 +0100401 if (IS_ERR(key)) {
402 ret = PTR_ERR(key);
403 } else {
404 ret = afs_page_filler(key, page);
405 key_put(key);
406 }
407 }
408 return ret;
409}
410
411/*
David Howells91b467e2017-01-05 10:38:35 +0000412 * Make pages available as they're filled.
413 */
David Howellsa58823a2019-05-09 15:16:10 +0100414static void afs_readpages_page_done(struct afs_read *req)
David Howells91b467e2017-01-05 10:38:35 +0000415{
Arnd Bergmann51c89e62017-01-13 14:46:19 +0000416#ifdef CONFIG_AFS_FSCACHE
David Howellsa58823a2019-05-09 15:16:10 +0100417 struct afs_vnode *vnode = req->vnode;
Arnd Bergmann51c89e62017-01-13 14:46:19 +0000418#endif
David Howells91b467e2017-01-05 10:38:35 +0000419 struct page *page = req->pages[req->index];
420
421 req->pages[req->index] = NULL;
422 SetPageUptodate(page);
423
424 /* send the page to the cache */
425#ifdef CONFIG_AFS_FSCACHE
426 if (PageFsCache(page) &&
David Howellsee1235a2018-04-04 13:41:28 +0100427 fscache_write_page(vnode->cache, page, vnode->status.size,
428 GFP_KERNEL) != 0) {
David Howells91b467e2017-01-05 10:38:35 +0000429 fscache_uncache_page(vnode->cache, page);
430 BUG_ON(PageFsCache(page));
431 }
432#endif
433 unlock_page(page);
434 put_page(page);
435}
436
437/*
438 * Read a contiguous set of pages.
439 */
440static int afs_readpages_one(struct file *file, struct address_space *mapping,
441 struct list_head *pages)
442{
443 struct afs_vnode *vnode = AFS_FS_I(mapping->host);
444 struct afs_read *req;
445 struct list_head *p;
446 struct page *first, *page;
David Howells215804a2017-11-02 15:27:52 +0000447 struct key *key = afs_file_key(file);
David Howells91b467e2017-01-05 10:38:35 +0000448 pgoff_t index;
449 int ret, n, i;
450
451 /* Count the number of contiguous pages at the front of the list. Note
452 * that the list goes prev-wards rather than next-wards.
453 */
Nikolay Borisovf86196e2019-01-03 15:29:02 -0800454 first = lru_to_page(pages);
David Howells91b467e2017-01-05 10:38:35 +0000455 index = first->index + 1;
456 n = 1;
457 for (p = first->lru.prev; p != pages; p = p->prev) {
458 page = list_entry(p, struct page, lru);
459 if (page->index != index)
460 break;
461 index++;
462 n++;
463 }
464
Zhengyuan Liuee102582019-06-20 18:12:17 +0100465 req = kzalloc(struct_size(req, array, n), GFP_NOFS);
David Howells91b467e2017-01-05 10:38:35 +0000466 if (!req)
467 return -ENOMEM;
468
David Howellsf3ddee82018-04-06 14:17:25 +0100469 refcount_set(&req->usage, 1);
David Howellsa58823a2019-05-09 15:16:10 +0100470 req->vnode = vnode;
David Howells91b467e2017-01-05 10:38:35 +0000471 req->page_done = afs_readpages_page_done;
472 req->pos = first->index;
473 req->pos <<= PAGE_SHIFT;
David Howellsf3ddee82018-04-06 14:17:25 +0100474 req->pages = req->array;
David Howells91b467e2017-01-05 10:38:35 +0000475
476 /* Transfer the pages to the request. We add them in until one fails
477 * to add to the LRU and then we stop (as that'll make a hole in the
478 * contiguous run.
479 *
480 * Note that it's possible for the file size to change whilst we're
481 * doing this, but we rely on the server returning less than we asked
482 * for if the file shrank. We also rely on this to deal with a partial
483 * page at the end of the file.
484 */
485 do {
Nikolay Borisovf86196e2019-01-03 15:29:02 -0800486 page = lru_to_page(pages);
David Howells91b467e2017-01-05 10:38:35 +0000487 list_del(&page->lru);
488 index = page->index;
489 if (add_to_page_cache_lru(page, mapping, index,
490 readahead_gfp_mask(mapping))) {
491#ifdef CONFIG_AFS_FSCACHE
492 fscache_uncache_page(vnode->cache, page);
493#endif
494 put_page(page);
495 break;
496 }
497
498 req->pages[req->nr_pages++] = page;
499 req->len += PAGE_SIZE;
500 } while (req->nr_pages < n);
501
502 if (req->nr_pages == 0) {
503 kfree(req);
504 return 0;
505 }
506
David Howellsd2ddc772017-11-02 15:27:50 +0000507 ret = afs_fetch_data(vnode, key, req);
David Howells91b467e2017-01-05 10:38:35 +0000508 if (ret < 0)
509 goto error;
510
511 task_io_account_read(PAGE_SIZE * req->nr_pages);
512 afs_put_read(req);
513 return 0;
514
515error:
516 if (ret == -ENOENT) {
517 _debug("got NOENT from server"
518 " - marking file deleted and stale");
519 set_bit(AFS_VNODE_DELETED, &vnode->flags);
520 ret = -ESTALE;
521 }
522
523 for (i = 0; i < req->nr_pages; i++) {
524 page = req->pages[i];
525 if (page) {
526#ifdef CONFIG_AFS_FSCACHE
527 fscache_uncache_page(vnode->cache, page);
528#endif
529 SetPageError(page);
530 unlock_page(page);
531 }
532 }
533
534 afs_put_read(req);
535 return ret;
536}
537
538/*
David Howells9b3f26c2009-04-03 16:42:41 +0100539 * read a set of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 */
David Howells9b3f26c2009-04-03 16:42:41 +0100541static int afs_readpages(struct file *file, struct address_space *mapping,
542 struct list_head *pages, unsigned nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
David Howells215804a2017-11-02 15:27:52 +0000544 struct key *key = afs_file_key(file);
David Howells9b3f26c2009-04-03 16:42:41 +0100545 struct afs_vnode *vnode;
546 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Al Virof6d335c2010-05-21 15:27:09 +0100548 _enter("{%d},{%lu},,%d",
549 key_serial(key), mapping->host->i_ino, nr_pages);
550
551 ASSERT(key != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
David Howells9b3f26c2009-04-03 16:42:41 +0100553 vnode = AFS_FS_I(mapping->host);
Dan Carpenterad2a8e62012-03-20 16:58:06 +0000554 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
David Howells9b3f26c2009-04-03 16:42:41 +0100555 _leave(" = -ESTALE");
556 return -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558
David Howells9b3f26c2009-04-03 16:42:41 +0100559 /* attempt to read as many of the pages as possible */
560#ifdef CONFIG_AFS_FSCACHE
561 ret = fscache_read_or_alloc_pages(vnode->cache,
562 mapping,
563 pages,
564 &nr_pages,
565 afs_file_readpage_read_complete,
566 NULL,
567 mapping_gfp_mask(mapping));
568#else
569 ret = -ENOBUFS;
570#endif
571
572 switch (ret) {
573 /* all pages are being read from the cache */
574 case 0:
575 BUG_ON(!list_empty(pages));
576 BUG_ON(nr_pages != 0);
577 _leave(" = 0 [reading all]");
578 return 0;
579
580 /* there were pages that couldn't be read from the cache */
581 case -ENODATA:
582 case -ENOBUFS:
583 break;
584
585 /* other error */
586 default:
587 _leave(" = %d", ret);
588 return ret;
589 }
590
David Howells91b467e2017-01-05 10:38:35 +0000591 while (!list_empty(pages)) {
592 ret = afs_readpages_one(file, mapping, pages);
593 if (ret < 0)
594 break;
595 }
David Howells9b3f26c2009-04-03 16:42:41 +0100596
597 _leave(" = %d [netting]", ret);
598 return ret;
David Howellsec268152007-04-26 15:49:28 -0700599}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601/*
David Howells9b3f26c2009-04-03 16:42:41 +0100602 * invalidate part or all of a page
603 * - release a page and clean up its private data if offset is 0 (indicating
604 * the entire page)
605 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400606static void afs_invalidatepage(struct page *page, unsigned int offset,
607 unsigned int length)
David Howells9b3f26c2009-04-03 16:42:41 +0100608{
David Howells13524ab2017-11-02 15:27:53 +0000609 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
610 unsigned long priv;
611
Lukas Czernerd47992f2013-05-21 23:17:23 -0400612 _enter("{%lu},%u,%u", page->index, offset, length);
David Howells9b3f26c2009-04-03 16:42:41 +0100613
614 BUG_ON(!PageLocked(page));
615
616 /* we clean up only if the entire page is being invalidated */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300617 if (offset == 0 && length == PAGE_SIZE) {
David Howells9b3f26c2009-04-03 16:42:41 +0100618#ifdef CONFIG_AFS_FSCACHE
619 if (PageFsCache(page)) {
620 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
621 fscache_wait_on_page_write(vnode->cache, page);
622 fscache_uncache_page(vnode->cache, page);
David Howells9b3f26c2009-04-03 16:42:41 +0100623 }
624#endif
625
626 if (PagePrivate(page)) {
David Howells13524ab2017-11-02 15:27:53 +0000627 priv = page_private(page);
628 trace_afs_page_dirty(vnode, tracepoint_string("inval"),
629 page->index, priv);
David Howells4343d002017-11-02 15:27:52 +0000630 set_page_private(page, 0);
631 ClearPagePrivate(page);
David Howells9b3f26c2009-04-03 16:42:41 +0100632 }
633 }
634
635 _leave("");
636}
637
638/*
639 * release a page and clean up its private state if it's not busy
640 * - return true if the page can now be released, false if not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 */
David Howells416351f2007-05-09 02:33:45 -0700642static int afs_releasepage(struct page *page, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
David Howells416351f2007-05-09 02:33:45 -0700644 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
David Howells13524ab2017-11-02 15:27:53 +0000645 unsigned long priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
David Howells3b6492d2018-10-20 00:57:57 +0100647 _enter("{{%llx:%llu}[%lu],%lx},%x",
David Howells416351f2007-05-09 02:33:45 -0700648 vnode->fid.vid, vnode->fid.vnode, page->index, page->flags,
649 gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
David Howells9b3f26c2009-04-03 16:42:41 +0100651 /* deny if page is being written to the cache and the caller hasn't
652 * elected to wait */
653#ifdef CONFIG_AFS_FSCACHE
David Howells201a1542009-11-19 18:11:35 +0000654 if (!fscache_maybe_release_page(vnode->cache, page, gfp_flags)) {
655 _leave(" = F [cache busy]");
656 return 0;
David Howells9b3f26c2009-04-03 16:42:41 +0100657 }
658#endif
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (PagePrivate(page)) {
David Howells13524ab2017-11-02 15:27:53 +0000661 priv = page_private(page);
662 trace_afs_page_dirty(vnode, tracepoint_string("rel"),
663 page->index, priv);
David Howells4343d002017-11-02 15:27:52 +0000664 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 ClearPagePrivate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
David Howells9b3f26c2009-04-03 16:42:41 +0100668 /* indicate that the page can be released */
669 _leave(" = T");
670 return 1;
David Howellsec268152007-04-26 15:49:28 -0700671}
David Howells1cf7a152017-11-02 15:27:52 +0000672
673/*
674 * Handle setting up a memory mapping on an AFS file.
675 */
676static int afs_file_mmap(struct file *file, struct vm_area_struct *vma)
677{
678 int ret;
679
680 ret = generic_file_mmap(file, vma);
681 if (ret == 0)
682 vma->vm_ops = &afs_vm_ops;
683 return ret;
684}