blob: 37f97bab78abc390221fc103fab426bc4b57049b [file] [log] [blame]
David Howells08e0e7c2007-04-26 15:55:03 -07001/* AFS filesystem file handling
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David Howells08e0e7c2007-04-26 15:55:03 -07003 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/fs.h>
16#include <linux/pagemap.h>
David Howells31143d52007-05-09 02:33:46 -070017#include <linux/writeback.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "internal.h"
20
David Howells416351f2007-05-09 02:33:45 -070021static int afs_readpage(struct file *file, struct page *page);
Lukas Czernerd47992f2013-05-21 23:17:23 -040022static void afs_invalidatepage(struct page *page, unsigned int offset,
23 unsigned int length);
David Howells416351f2007-05-09 02:33:45 -070024static int afs_releasepage(struct page *page, gfp_t gfp_flags);
David Howells31143d52007-05-09 02:33:46 -070025static int afs_launder_page(struct page *page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
David Howells9b3f26c2009-04-03 16:42:41 +010027static int afs_readpages(struct file *filp, struct address_space *mapping,
28 struct list_head *pages, unsigned nr_pages);
29
David Howells00d3b7a2007-04-26 15:57:07 -070030const struct file_operations afs_file_operations = {
31 .open = afs_open,
David Howells7286fad2017-03-16 16:27:45 +000032 .flush = afs_flush,
David Howells00d3b7a2007-04-26 15:57:07 -070033 .release = afs_release,
34 .llseek = generic_file_llseek,
Al Viroaad4f8b2014-04-02 14:33:16 -040035 .read_iter = generic_file_read_iter,
Al Viro50b55512014-04-03 14:13:46 -040036 .write_iter = afs_file_write,
David Howells00d3b7a2007-04-26 15:57:07 -070037 .mmap = generic_file_readonly_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020038 .splice_read = generic_file_splice_read,
David Howells31143d52007-05-09 02:33:46 -070039 .fsync = afs_fsync,
David Howellse8d6c552007-07-15 23:40:12 -070040 .lock = afs_lock,
41 .flock = afs_flock,
David Howells00d3b7a2007-04-26 15:57:07 -070042};
43
Arjan van de Ven754661f2007-02-12 00:55:38 -080044const struct inode_operations afs_file_inode_operations = {
David Howells416351f2007-05-09 02:33:45 -070045 .getattr = afs_getattr,
David Howells31143d52007-05-09 02:33:46 -070046 .setattr = afs_setattr,
David Howells00d3b7a2007-04-26 15:57:07 -070047 .permission = afs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048};
49
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070050const struct address_space_operations afs_fs_aops = {
David Howells416351f2007-05-09 02:33:45 -070051 .readpage = afs_readpage,
David Howells9b3f26c2009-04-03 16:42:41 +010052 .readpages = afs_readpages,
David Howells31143d52007-05-09 02:33:46 -070053 .set_page_dirty = afs_set_page_dirty,
54 .launder_page = afs_launder_page,
David Howells416351f2007-05-09 02:33:45 -070055 .releasepage = afs_releasepage,
56 .invalidatepage = afs_invalidatepage,
Nick Piggin15b46502008-10-15 22:04:32 -070057 .write_begin = afs_write_begin,
58 .write_end = afs_write_end,
David Howells31143d52007-05-09 02:33:46 -070059 .writepage = afs_writepage,
60 .writepages = afs_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
David Howells00d3b7a2007-04-26 15:57:07 -070064 * open an AFS file or directory and attach a key to it
65 */
66int afs_open(struct inode *inode, struct file *file)
67{
68 struct afs_vnode *vnode = AFS_FS_I(inode);
69 struct key *key;
David Howells260a9802007-04-26 15:59:35 -070070 int ret;
David Howells00d3b7a2007-04-26 15:57:07 -070071
David Howells416351f2007-05-09 02:33:45 -070072 _enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
David Howells00d3b7a2007-04-26 15:57:07 -070073
74 key = afs_request_key(vnode->volume->cell);
75 if (IS_ERR(key)) {
76 _leave(" = %ld [key]", PTR_ERR(key));
77 return PTR_ERR(key);
78 }
79
David Howells260a9802007-04-26 15:59:35 -070080 ret = afs_validate(vnode, key);
81 if (ret < 0) {
82 _leave(" = %d [val]", ret);
83 return ret;
84 }
85
David Howells00d3b7a2007-04-26 15:57:07 -070086 file->private_data = key;
87 _leave(" = 0");
88 return 0;
89}
90
91/*
92 * release an AFS file or directory and discard its key
93 */
94int afs_release(struct inode *inode, struct file *file)
95{
96 struct afs_vnode *vnode = AFS_FS_I(inode);
97
David Howells416351f2007-05-09 02:33:45 -070098 _enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
David Howells00d3b7a2007-04-26 15:57:07 -070099
100 key_put(file->private_data);
101 _leave(" = 0");
102 return 0;
103}
104
Matt Kraai6566abd2009-04-17 12:56:38 +0100105#ifdef CONFIG_AFS_FSCACHE
David Howells00d3b7a2007-04-26 15:57:07 -0700106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * deal with notification that a page was read from the cache
108 */
David Howells9b3f26c2009-04-03 16:42:41 +0100109static void afs_file_readpage_read_complete(struct page *page,
110 void *data,
111 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
David Howells9b3f26c2009-04-03 16:42:41 +0100113 _enter("%p,%p,%d", page, data, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
David Howells9b3f26c2009-04-03 16:42:41 +0100115 /* if the read completes with an error, we just unlock the page and let
116 * the VM reissue the readpage */
117 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 SetPageUptodate(page);
119 unlock_page(page);
David Howellsec268152007-04-26 15:49:28 -0700120}
Matt Kraai6566abd2009-04-17 12:56:38 +0100121#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
Al Virof6d335c2010-05-21 15:27:09 +0100124 * read page from file, directory or symlink, given a key to use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 */
Sami Tolvanen53f4adf2018-03-02 09:02:16 -0800126static int __afs_page_filler(struct key *key, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Al Virof6d335c2010-05-21 15:27:09 +0100128 struct inode *inode = page->mapping->host;
129 struct afs_vnode *vnode = AFS_FS_I(inode);
David Howells08e0e7c2007-04-26 15:55:03 -0700130 size_t len;
131 off_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 int ret;
133
David Howells00d3b7a2007-04-26 15:57:07 -0700134 _enter("{%x},{%lu},{%lu}", key_serial(key), inode->i_ino, page->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Matt Mackallcd7619d2005-05-01 08:59:01 -0700136 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 ret = -ESTALE;
David Howells08e0e7c2007-04-26 15:55:03 -0700139 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 goto error;
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 /* is it cached? */
David Howells9b3f26c2009-04-03 16:42:41 +0100143#ifdef CONFIG_AFS_FSCACHE
144 ret = fscache_read_or_alloc_page(vnode->cache,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 page,
146 afs_file_readpage_read_complete,
147 NULL,
148 GFP_KERNEL);
149#else
150 ret = -ENOBUFS;
151#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 switch (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* read BIO submitted (page in cache) */
154 case 0:
155 break;
156
David Howells9b3f26c2009-04-03 16:42:41 +0100157 /* page not yet cached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 case -ENODATA:
David Howells9b3f26c2009-04-03 16:42:41 +0100159 _debug("cache said ENODATA");
160 goto go_on;
161
162 /* page will not be cached */
163 case -ENOBUFS:
164 _debug("cache said ENOBUFS");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 default:
David Howells9b3f26c2009-04-03 16:42:41 +0100166 go_on:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300167 offset = page->index << PAGE_SHIFT;
David Howells08e0e7c2007-04-26 15:55:03 -0700168 len = min_t(size_t, i_size_read(inode) - offset, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* read the contents of the file from the server into the
171 * page */
David Howells00d3b7a2007-04-26 15:57:07 -0700172 ret = afs_vnode_fetch_data(vnode, key, offset, len, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700174 if (ret == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 _debug("got NOENT from server"
176 " - marking file deleted and stale");
David Howells08e0e7c2007-04-26 15:55:03 -0700177 set_bit(AFS_VNODE_DELETED, &vnode->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 ret = -ESTALE;
179 }
David Howells9b3f26c2009-04-03 16:42:41 +0100180
181#ifdef CONFIG_AFS_FSCACHE
182 fscache_uncache_page(vnode->cache, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100184 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 goto error;
186 }
187
188 SetPageUptodate(page);
189
David Howells9b3f26c2009-04-03 16:42:41 +0100190 /* send the page to the cache */
191#ifdef CONFIG_AFS_FSCACHE
192 if (PageFsCache(page) &&
193 fscache_write_page(vnode->cache, page, GFP_KERNEL) != 0) {
194 fscache_uncache_page(vnode->cache, page);
195 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100198 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
201 _leave(" = 0");
202 return 0;
203
David Howells08e0e7c2007-04-26 15:55:03 -0700204error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 SetPageError(page);
206 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 _leave(" = %d", ret);
208 return ret;
David Howellsec268152007-04-26 15:49:28 -0700209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Sami Tolvanen53f4adf2018-03-02 09:02:16 -0800211int afs_page_filler(struct file *data, struct page *page)
212{
213 struct key *key = (struct key *)data;
214
215 return __afs_page_filler(key, page);
216}
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
Al Virof6d335c2010-05-21 15:27:09 +0100219 * read page from file, directory or symlink, given a file to nominate the key
220 * to be used
221 */
222static int afs_readpage(struct file *file, struct page *page)
223{
224 struct key *key;
225 int ret;
226
227 if (file) {
228 key = file->private_data;
229 ASSERT(key != NULL);
Sami Tolvanen53f4adf2018-03-02 09:02:16 -0800230 ret = __afs_page_filler(key, page);
Al Virof6d335c2010-05-21 15:27:09 +0100231 } else {
232 struct inode *inode = page->mapping->host;
233 key = afs_request_key(AFS_FS_S(inode->i_sb)->volume->cell);
234 if (IS_ERR(key)) {
235 ret = PTR_ERR(key);
236 } else {
Sami Tolvanen53f4adf2018-03-02 09:02:16 -0800237 ret = __afs_page_filler(key, page);
Al Virof6d335c2010-05-21 15:27:09 +0100238 key_put(key);
239 }
240 }
241 return ret;
242}
243
244/*
David Howells9b3f26c2009-04-03 16:42:41 +0100245 * read a set of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
David Howells9b3f26c2009-04-03 16:42:41 +0100247static int afs_readpages(struct file *file, struct address_space *mapping,
248 struct list_head *pages, unsigned nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Al Virof6d335c2010-05-21 15:27:09 +0100250 struct key *key = file->private_data;
David Howells9b3f26c2009-04-03 16:42:41 +0100251 struct afs_vnode *vnode;
252 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Al Virof6d335c2010-05-21 15:27:09 +0100254 _enter("{%d},{%lu},,%d",
255 key_serial(key), mapping->host->i_ino, nr_pages);
256
257 ASSERT(key != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
David Howells9b3f26c2009-04-03 16:42:41 +0100259 vnode = AFS_FS_I(mapping->host);
Dan Carpenterad2a8e62012-03-20 16:58:06 +0000260 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
David Howells9b3f26c2009-04-03 16:42:41 +0100261 _leave(" = -ESTALE");
262 return -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 }
264
David Howells9b3f26c2009-04-03 16:42:41 +0100265 /* attempt to read as many of the pages as possible */
266#ifdef CONFIG_AFS_FSCACHE
267 ret = fscache_read_or_alloc_pages(vnode->cache,
268 mapping,
269 pages,
270 &nr_pages,
271 afs_file_readpage_read_complete,
272 NULL,
273 mapping_gfp_mask(mapping));
274#else
275 ret = -ENOBUFS;
276#endif
277
278 switch (ret) {
279 /* all pages are being read from the cache */
280 case 0:
281 BUG_ON(!list_empty(pages));
282 BUG_ON(nr_pages != 0);
283 _leave(" = 0 [reading all]");
284 return 0;
285
286 /* there were pages that couldn't be read from the cache */
287 case -ENODATA:
288 case -ENOBUFS:
289 break;
290
291 /* other error */
292 default:
293 _leave(" = %d", ret);
294 return ret;
295 }
296
297 /* load the missing pages from the network */
Al Virof6d335c2010-05-21 15:27:09 +0100298 ret = read_cache_pages(mapping, pages, afs_page_filler, key);
David Howells9b3f26c2009-04-03 16:42:41 +0100299
300 _leave(" = %d [netting]", ret);
301 return ret;
David Howellsec268152007-04-26 15:49:28 -0700302}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*
David Howells31143d52007-05-09 02:33:46 -0700305 * write back a dirty page
306 */
307static int afs_launder_page(struct page *page)
308{
309 _enter("{%lu}", page->index);
310
311 return 0;
312}
313
314/*
David Howells9b3f26c2009-04-03 16:42:41 +0100315 * invalidate part or all of a page
316 * - release a page and clean up its private data if offset is 0 (indicating
317 * the entire page)
318 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400319static void afs_invalidatepage(struct page *page, unsigned int offset,
320 unsigned int length)
David Howells9b3f26c2009-04-03 16:42:41 +0100321{
322 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
323
Lukas Czernerd47992f2013-05-21 23:17:23 -0400324 _enter("{%lu},%u,%u", page->index, offset, length);
David Howells9b3f26c2009-04-03 16:42:41 +0100325
326 BUG_ON(!PageLocked(page));
327
328 /* we clean up only if the entire page is being invalidated */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300329 if (offset == 0 && length == PAGE_SIZE) {
David Howells9b3f26c2009-04-03 16:42:41 +0100330#ifdef CONFIG_AFS_FSCACHE
331 if (PageFsCache(page)) {
332 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
333 fscache_wait_on_page_write(vnode->cache, page);
334 fscache_uncache_page(vnode->cache, page);
David Howells9b3f26c2009-04-03 16:42:41 +0100335 }
336#endif
337
338 if (PagePrivate(page)) {
339 if (wb && !PageWriteback(page)) {
340 set_page_private(page, 0);
341 afs_put_writeback(wb);
342 }
343
344 if (!page_private(page))
345 ClearPagePrivate(page);
346 }
347 }
348
349 _leave("");
350}
351
352/*
353 * release a page and clean up its private state if it's not busy
354 * - return true if the page can now be released, false if not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
David Howells416351f2007-05-09 02:33:45 -0700356static int afs_releasepage(struct page *page, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
David Howells9b3f26c2009-04-03 16:42:41 +0100358 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
David Howells416351f2007-05-09 02:33:45 -0700359 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
David Howells416351f2007-05-09 02:33:45 -0700361 _enter("{{%x:%u}[%lu],%lx},%x",
362 vnode->fid.vid, vnode->fid.vnode, page->index, page->flags,
363 gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
David Howells9b3f26c2009-04-03 16:42:41 +0100365 /* deny if page is being written to the cache and the caller hasn't
366 * elected to wait */
367#ifdef CONFIG_AFS_FSCACHE
David Howells201a1542009-11-19 18:11:35 +0000368 if (!fscache_maybe_release_page(vnode->cache, page, gfp_flags)) {
369 _leave(" = F [cache busy]");
370 return 0;
David Howells9b3f26c2009-04-03 16:42:41 +0100371 }
372#endif
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (PagePrivate(page)) {
David Howells9b3f26c2009-04-03 16:42:41 +0100375 if (wb) {
376 set_page_private(page, 0);
377 afs_put_writeback(wb);
378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 ClearPagePrivate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
David Howells9b3f26c2009-04-03 16:42:41 +0100382 /* indicate that the page can be released */
383 _leave(" = T");
384 return 1;
David Howellsec268152007-04-26 15:49:28 -0700385}