blob: 66d50fe2ee459a887511381e8e375db72d2bf1f3 [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,
32 .release = afs_release,
33 .llseek = generic_file_llseek,
34 .read = do_sync_read,
David Howells31143d52007-05-09 02:33:46 -070035 .write = do_sync_write,
David Howells00d3b7a2007-04-26 15:57:07 -070036 .aio_read = generic_file_aio_read,
David Howells31143d52007-05-09 02:33:46 -070037 .aio_write = afs_file_write,
David Howells00d3b7a2007-04-26 15:57:07 -070038 .mmap = generic_file_readonly_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +020039 .splice_read = generic_file_splice_read,
David Howells31143d52007-05-09 02:33:46 -070040 .fsync = afs_fsync,
David Howellse8d6c552007-07-15 23:40:12 -070041 .lock = afs_lock,
42 .flock = afs_flock,
David Howells00d3b7a2007-04-26 15:57:07 -070043};
44
Arjan van de Ven754661f2007-02-12 00:55:38 -080045const struct inode_operations afs_file_inode_operations = {
David Howells416351f2007-05-09 02:33:45 -070046 .getattr = afs_getattr,
David Howells31143d52007-05-09 02:33:46 -070047 .setattr = afs_setattr,
David Howells00d3b7a2007-04-26 15:57:07 -070048 .permission = afs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070051const struct address_space_operations afs_fs_aops = {
David Howells416351f2007-05-09 02:33:45 -070052 .readpage = afs_readpage,
David Howells9b3f26c2009-04-03 16:42:41 +010053 .readpages = afs_readpages,
David Howells31143d52007-05-09 02:33:46 -070054 .set_page_dirty = afs_set_page_dirty,
55 .launder_page = afs_launder_page,
David Howells416351f2007-05-09 02:33:45 -070056 .releasepage = afs_releasepage,
57 .invalidatepage = afs_invalidatepage,
Nick Piggin15b46502008-10-15 22:04:32 -070058 .write_begin = afs_write_begin,
59 .write_end = afs_write_end,
David Howells31143d52007-05-09 02:33:46 -070060 .writepage = afs_writepage,
61 .writepages = afs_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062};
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
David Howells00d3b7a2007-04-26 15:57:07 -070065 * open an AFS file or directory and attach a key to it
66 */
67int afs_open(struct inode *inode, struct file *file)
68{
69 struct afs_vnode *vnode = AFS_FS_I(inode);
70 struct key *key;
David Howells260a9802007-04-26 15:59:35 -070071 int ret;
David Howells00d3b7a2007-04-26 15:57:07 -070072
David Howells416351f2007-05-09 02:33:45 -070073 _enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
David Howells00d3b7a2007-04-26 15:57:07 -070074
75 key = afs_request_key(vnode->volume->cell);
76 if (IS_ERR(key)) {
77 _leave(" = %ld [key]", PTR_ERR(key));
78 return PTR_ERR(key);
79 }
80
David Howells260a9802007-04-26 15:59:35 -070081 ret = afs_validate(vnode, key);
82 if (ret < 0) {
83 _leave(" = %d [val]", ret);
84 return ret;
85 }
86
David Howells00d3b7a2007-04-26 15:57:07 -070087 file->private_data = key;
88 _leave(" = 0");
89 return 0;
90}
91
92/*
93 * release an AFS file or directory and discard its key
94 */
95int afs_release(struct inode *inode, struct file *file)
96{
97 struct afs_vnode *vnode = AFS_FS_I(inode);
98
David Howells416351f2007-05-09 02:33:45 -070099 _enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
David Howells00d3b7a2007-04-26 15:57:07 -0700100
101 key_put(file->private_data);
102 _leave(" = 0");
103 return 0;
104}
105
Matt Kraai6566abd2009-04-17 12:56:38 +0100106#ifdef CONFIG_AFS_FSCACHE
David Howells00d3b7a2007-04-26 15:57:07 -0700107/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * deal with notification that a page was read from the cache
109 */
David Howells9b3f26c2009-04-03 16:42:41 +0100110static void afs_file_readpage_read_complete(struct page *page,
111 void *data,
112 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
David Howells9b3f26c2009-04-03 16:42:41 +0100114 _enter("%p,%p,%d", page, data, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
David Howells9b3f26c2009-04-03 16:42:41 +0100116 /* if the read completes with an error, we just unlock the page and let
117 * the VM reissue the readpage */
118 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 SetPageUptodate(page);
120 unlock_page(page);
David Howellsec268152007-04-26 15:49:28 -0700121}
Matt Kraai6566abd2009-04-17 12:56:38 +0100122#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
Al Virof6d335c2010-05-21 15:27:09 +0100125 * read page from file, directory or symlink, given a key to use
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 */
Al Virof6d335c2010-05-21 15:27:09 +0100127int afs_page_filler(void *data, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
Al Virof6d335c2010-05-21 15:27:09 +0100129 struct inode *inode = page->mapping->host;
130 struct afs_vnode *vnode = AFS_FS_I(inode);
131 struct key *key = data;
David Howells08e0e7c2007-04-26 15:55:03 -0700132 size_t len;
133 off_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 int ret;
135
David Howells00d3b7a2007-04-26 15:57:07 -0700136 _enter("{%x},{%lu},{%lu}", key_serial(key), inode->i_ino, page->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Matt Mackallcd7619d2005-05-01 08:59:01 -0700138 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 ret = -ESTALE;
David Howells08e0e7c2007-04-26 15:55:03 -0700141 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 goto error;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /* is it cached? */
David Howells9b3f26c2009-04-03 16:42:41 +0100145#ifdef CONFIG_AFS_FSCACHE
146 ret = fscache_read_or_alloc_page(vnode->cache,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 page,
148 afs_file_readpage_read_complete,
149 NULL,
150 GFP_KERNEL);
151#else
152 ret = -ENOBUFS;
153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 switch (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 /* read BIO submitted (page in cache) */
156 case 0:
157 break;
158
David Howells9b3f26c2009-04-03 16:42:41 +0100159 /* page not yet cached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 case -ENODATA:
David Howells9b3f26c2009-04-03 16:42:41 +0100161 _debug("cache said ENODATA");
162 goto go_on;
163
164 /* page will not be cached */
165 case -ENOBUFS:
166 _debug("cache said ENOBUFS");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 default:
David Howells9b3f26c2009-04-03 16:42:41 +0100168 go_on:
David Howells08e0e7c2007-04-26 15:55:03 -0700169 offset = page->index << PAGE_CACHE_SHIFT;
170 len = min_t(size_t, i_size_read(inode) - offset, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172 /* read the contents of the file from the server into the
173 * page */
David Howells00d3b7a2007-04-26 15:57:07 -0700174 ret = afs_vnode_fetch_data(vnode, key, offset, len, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700176 if (ret == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 _debug("got NOENT from server"
178 " - marking file deleted and stale");
David Howells08e0e7c2007-04-26 15:55:03 -0700179 set_bit(AFS_VNODE_DELETED, &vnode->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 ret = -ESTALE;
181 }
David Howells9b3f26c2009-04-03 16:42:41 +0100182
183#ifdef CONFIG_AFS_FSCACHE
184 fscache_uncache_page(vnode->cache, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100186 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 goto error;
188 }
189
190 SetPageUptodate(page);
191
David Howells9b3f26c2009-04-03 16:42:41 +0100192 /* send the page to the cache */
193#ifdef CONFIG_AFS_FSCACHE
194 if (PageFsCache(page) &&
195 fscache_write_page(vnode->cache, page, GFP_KERNEL) != 0) {
196 fscache_uncache_page(vnode->cache, page);
197 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100200 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202
203 _leave(" = 0");
204 return 0;
205
David Howells08e0e7c2007-04-26 15:55:03 -0700206error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 SetPageError(page);
208 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 _leave(" = %d", ret);
210 return ret;
David Howellsec268152007-04-26 15:49:28 -0700211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213/*
Al Virof6d335c2010-05-21 15:27:09 +0100214 * read page from file, directory or symlink, given a file to nominate the key
215 * to be used
216 */
217static int afs_readpage(struct file *file, struct page *page)
218{
219 struct key *key;
220 int ret;
221
222 if (file) {
223 key = file->private_data;
224 ASSERT(key != NULL);
225 ret = afs_page_filler(key, page);
226 } else {
227 struct inode *inode = page->mapping->host;
228 key = afs_request_key(AFS_FS_S(inode->i_sb)->volume->cell);
229 if (IS_ERR(key)) {
230 ret = PTR_ERR(key);
231 } else {
232 ret = afs_page_filler(key, page);
233 key_put(key);
234 }
235 }
236 return ret;
237}
238
239/*
David Howells9b3f26c2009-04-03 16:42:41 +0100240 * read a set of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
David Howells9b3f26c2009-04-03 16:42:41 +0100242static int afs_readpages(struct file *file, struct address_space *mapping,
243 struct list_head *pages, unsigned nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Al Virof6d335c2010-05-21 15:27:09 +0100245 struct key *key = file->private_data;
David Howells9b3f26c2009-04-03 16:42:41 +0100246 struct afs_vnode *vnode;
247 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Al Virof6d335c2010-05-21 15:27:09 +0100249 _enter("{%d},{%lu},,%d",
250 key_serial(key), mapping->host->i_ino, nr_pages);
251
252 ASSERT(key != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
David Howells9b3f26c2009-04-03 16:42:41 +0100254 vnode = AFS_FS_I(mapping->host);
Dan Carpenterad2a8e62012-03-20 16:58:06 +0000255 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
David Howells9b3f26c2009-04-03 16:42:41 +0100256 _leave(" = -ESTALE");
257 return -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
259
David Howells9b3f26c2009-04-03 16:42:41 +0100260 /* attempt to read as many of the pages as possible */
261#ifdef CONFIG_AFS_FSCACHE
262 ret = fscache_read_or_alloc_pages(vnode->cache,
263 mapping,
264 pages,
265 &nr_pages,
266 afs_file_readpage_read_complete,
267 NULL,
268 mapping_gfp_mask(mapping));
269#else
270 ret = -ENOBUFS;
271#endif
272
273 switch (ret) {
274 /* all pages are being read from the cache */
275 case 0:
276 BUG_ON(!list_empty(pages));
277 BUG_ON(nr_pages != 0);
278 _leave(" = 0 [reading all]");
279 return 0;
280
281 /* there were pages that couldn't be read from the cache */
282 case -ENODATA:
283 case -ENOBUFS:
284 break;
285
286 /* other error */
287 default:
288 _leave(" = %d", ret);
289 return ret;
290 }
291
292 /* load the missing pages from the network */
Al Virof6d335c2010-05-21 15:27:09 +0100293 ret = read_cache_pages(mapping, pages, afs_page_filler, key);
David Howells9b3f26c2009-04-03 16:42:41 +0100294
295 _leave(" = %d [netting]", ret);
296 return ret;
David Howellsec268152007-04-26 15:49:28 -0700297}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/*
David Howells31143d52007-05-09 02:33:46 -0700300 * write back a dirty page
301 */
302static int afs_launder_page(struct page *page)
303{
304 _enter("{%lu}", page->index);
305
306 return 0;
307}
308
309/*
David Howells9b3f26c2009-04-03 16:42:41 +0100310 * invalidate part or all of a page
311 * - release a page and clean up its private data if offset is 0 (indicating
312 * the entire page)
313 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400314static void afs_invalidatepage(struct page *page, unsigned int offset,
315 unsigned int length)
David Howells9b3f26c2009-04-03 16:42:41 +0100316{
317 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
318
Lukas Czernerd47992f2013-05-21 23:17:23 -0400319 _enter("{%lu},%u,%u", page->index, offset, length);
David Howells9b3f26c2009-04-03 16:42:41 +0100320
321 BUG_ON(!PageLocked(page));
322
323 /* we clean up only if the entire page is being invalidated */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400324 if (offset == 0 && length == PAGE_CACHE_SIZE) {
David Howells9b3f26c2009-04-03 16:42:41 +0100325#ifdef CONFIG_AFS_FSCACHE
326 if (PageFsCache(page)) {
327 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
328 fscache_wait_on_page_write(vnode->cache, page);
329 fscache_uncache_page(vnode->cache, page);
David Howells9b3f26c2009-04-03 16:42:41 +0100330 }
331#endif
332
333 if (PagePrivate(page)) {
334 if (wb && !PageWriteback(page)) {
335 set_page_private(page, 0);
336 afs_put_writeback(wb);
337 }
338
339 if (!page_private(page))
340 ClearPagePrivate(page);
341 }
342 }
343
344 _leave("");
345}
346
347/*
348 * release a page and clean up its private state if it's not busy
349 * - return true if the page can now be released, false if not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
David Howells416351f2007-05-09 02:33:45 -0700351static int afs_releasepage(struct page *page, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
David Howells9b3f26c2009-04-03 16:42:41 +0100353 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
David Howells416351f2007-05-09 02:33:45 -0700354 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
David Howells416351f2007-05-09 02:33:45 -0700356 _enter("{{%x:%u}[%lu],%lx},%x",
357 vnode->fid.vid, vnode->fid.vnode, page->index, page->flags,
358 gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
David Howells9b3f26c2009-04-03 16:42:41 +0100360 /* deny if page is being written to the cache and the caller hasn't
361 * elected to wait */
362#ifdef CONFIG_AFS_FSCACHE
David Howells201a1542009-11-19 18:11:35 +0000363 if (!fscache_maybe_release_page(vnode->cache, page, gfp_flags)) {
364 _leave(" = F [cache busy]");
365 return 0;
David Howells9b3f26c2009-04-03 16:42:41 +0100366 }
367#endif
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (PagePrivate(page)) {
David Howells9b3f26c2009-04-03 16:42:41 +0100370 if (wb) {
371 set_page_private(page, 0);
372 afs_put_writeback(wb);
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 ClearPagePrivate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376
David Howells9b3f26c2009-04-03 16:42:41 +0100377 /* indicate that the page can be released */
378 _leave(" = T");
379 return 1;
David Howellsec268152007-04-26 15:49:28 -0700380}