blob: 7a1d942ef68d469b778678482f880afac446bfa9 [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/slab.h>
16#include <linux/fs.h>
17#include <linux/pagemap.h>
David Howells31143d52007-05-09 02:33:46 -070018#include <linux/writeback.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);
22static void afs_invalidatepage(struct page *page, unsigned long offset);
23static int afs_releasepage(struct page *page, gfp_t gfp_flags);
David Howells31143d52007-05-09 02:33:46 -070024static int afs_launder_page(struct page *page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
David Howells9b3f26c2009-04-03 16:42:41 +010026static int afs_readpages(struct file *filp, struct address_space *mapping,
27 struct list_head *pages, unsigned nr_pages);
28
David Howells00d3b7a2007-04-26 15:57:07 -070029const struct file_operations afs_file_operations = {
30 .open = afs_open,
31 .release = afs_release,
32 .llseek = generic_file_llseek,
33 .read = do_sync_read,
David Howells31143d52007-05-09 02:33:46 -070034 .write = do_sync_write,
David Howells00d3b7a2007-04-26 15:57:07 -070035 .aio_read = generic_file_aio_read,
David Howells31143d52007-05-09 02:33:46 -070036 .aio_write = 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
105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * deal with notification that a page was read from the cache
107 */
David Howells9b3f26c2009-04-03 16:42:41 +0100108static void afs_file_readpage_read_complete(struct page *page,
109 void *data,
110 int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
David Howells9b3f26c2009-04-03 16:42:41 +0100112 _enter("%p,%p,%d", page, data, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
David Howells9b3f26c2009-04-03 16:42:41 +0100114 /* if the read completes with an error, we just unlock the page and let
115 * the VM reissue the readpage */
116 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 SetPageUptodate(page);
118 unlock_page(page);
David Howellsec268152007-04-26 15:49:28 -0700119}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/*
David Howells416351f2007-05-09 02:33:45 -0700122 * AFS read page from file, directory or symlink
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 */
David Howells416351f2007-05-09 02:33:45 -0700124static int afs_readpage(struct file *file, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 struct afs_vnode *vnode;
127 struct inode *inode;
David Howells00d3b7a2007-04-26 15:57:07 -0700128 struct key *key;
David Howells08e0e7c2007-04-26 15:55:03 -0700129 size_t len;
130 off_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 int ret;
132
133 inode = page->mapping->host;
134
David Howells00d3b7a2007-04-26 15:57:07 -0700135 ASSERT(file != NULL);
136 key = file->private_data;
137 ASSERT(key != NULL);
138
139 _enter("{%x},{%lu},{%lu}", key_serial(key), inode->i_ino, page->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 vnode = AFS_FS_I(inode);
142
Matt Mackallcd7619d2005-05-01 08:59:01 -0700143 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 ret = -ESTALE;
David Howells08e0e7c2007-04-26 15:55:03 -0700146 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 goto error;
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* is it cached? */
David Howells9b3f26c2009-04-03 16:42:41 +0100150#ifdef CONFIG_AFS_FSCACHE
151 ret = fscache_read_or_alloc_page(vnode->cache,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 page,
153 afs_file_readpage_read_complete,
154 NULL,
155 GFP_KERNEL);
156#else
157 ret = -ENOBUFS;
158#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 switch (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /* read BIO submitted (page in cache) */
161 case 0:
162 break;
163
David Howells9b3f26c2009-04-03 16:42:41 +0100164 /* page not yet cached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 case -ENODATA:
David Howells9b3f26c2009-04-03 16:42:41 +0100166 _debug("cache said ENODATA");
167 goto go_on;
168
169 /* page will not be cached */
170 case -ENOBUFS:
171 _debug("cache said ENOBUFS");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 default:
David Howells9b3f26c2009-04-03 16:42:41 +0100173 go_on:
David Howells08e0e7c2007-04-26 15:55:03 -0700174 offset = page->index << PAGE_CACHE_SHIFT;
175 len = min_t(size_t, i_size_read(inode) - offset, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /* read the contents of the file from the server into the
178 * page */
David Howells00d3b7a2007-04-26 15:57:07 -0700179 ret = afs_vnode_fetch_data(vnode, key, offset, len, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700181 if (ret == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 _debug("got NOENT from server"
183 " - marking file deleted and stale");
David Howells08e0e7c2007-04-26 15:55:03 -0700184 set_bit(AFS_VNODE_DELETED, &vnode->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ret = -ESTALE;
186 }
David Howells9b3f26c2009-04-03 16:42:41 +0100187
188#ifdef CONFIG_AFS_FSCACHE
189 fscache_uncache_page(vnode->cache, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100191 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 goto error;
193 }
194
195 SetPageUptodate(page);
196
David Howells9b3f26c2009-04-03 16:42:41 +0100197 /* send the page to the cache */
198#ifdef CONFIG_AFS_FSCACHE
199 if (PageFsCache(page) &&
200 fscache_write_page(vnode->cache, page, GFP_KERNEL) != 0) {
201 fscache_uncache_page(vnode->cache, page);
202 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100205 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
207
208 _leave(" = 0");
209 return 0;
210
David Howells08e0e7c2007-04-26 15:55:03 -0700211error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 SetPageError(page);
213 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 _leave(" = %d", ret);
215 return ret;
David Howellsec268152007-04-26 15:49:28 -0700216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*
David Howells9b3f26c2009-04-03 16:42:41 +0100219 * read a set of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
David Howells9b3f26c2009-04-03 16:42:41 +0100221static int afs_readpages(struct file *file, struct address_space *mapping,
222 struct list_head *pages, unsigned nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
David Howells9b3f26c2009-04-03 16:42:41 +0100224 struct afs_vnode *vnode;
225 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
David Howells9b3f26c2009-04-03 16:42:41 +0100227 _enter(",{%lu},,%d", mapping->host->i_ino, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
David Howells9b3f26c2009-04-03 16:42:41 +0100229 vnode = AFS_FS_I(mapping->host);
230 if (vnode->flags & AFS_VNODE_DELETED) {
231 _leave(" = -ESTALE");
232 return -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
David Howells9b3f26c2009-04-03 16:42:41 +0100235 /* attempt to read as many of the pages as possible */
236#ifdef CONFIG_AFS_FSCACHE
237 ret = fscache_read_or_alloc_pages(vnode->cache,
238 mapping,
239 pages,
240 &nr_pages,
241 afs_file_readpage_read_complete,
242 NULL,
243 mapping_gfp_mask(mapping));
244#else
245 ret = -ENOBUFS;
246#endif
247
248 switch (ret) {
249 /* all pages are being read from the cache */
250 case 0:
251 BUG_ON(!list_empty(pages));
252 BUG_ON(nr_pages != 0);
253 _leave(" = 0 [reading all]");
254 return 0;
255
256 /* there were pages that couldn't be read from the cache */
257 case -ENODATA:
258 case -ENOBUFS:
259 break;
260
261 /* other error */
262 default:
263 _leave(" = %d", ret);
264 return ret;
265 }
266
267 /* load the missing pages from the network */
268 ret = read_cache_pages(mapping, pages, (void *) afs_readpage, file);
269
270 _leave(" = %d [netting]", ret);
271 return ret;
David Howellsec268152007-04-26 15:49:28 -0700272}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/*
David Howells31143d52007-05-09 02:33:46 -0700275 * write back a dirty page
276 */
277static int afs_launder_page(struct page *page)
278{
279 _enter("{%lu}", page->index);
280
281 return 0;
282}
283
284/*
David Howells9b3f26c2009-04-03 16:42:41 +0100285 * invalidate part or all of a page
286 * - release a page and clean up its private data if offset is 0 (indicating
287 * the entire page)
288 */
289static void afs_invalidatepage(struct page *page, unsigned long offset)
290{
291 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
292
293 _enter("{%lu},%lu", page->index, offset);
294
295 BUG_ON(!PageLocked(page));
296
297 /* we clean up only if the entire page is being invalidated */
298 if (offset == 0) {
299#ifdef CONFIG_AFS_FSCACHE
300 if (PageFsCache(page)) {
301 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
302 fscache_wait_on_page_write(vnode->cache, page);
303 fscache_uncache_page(vnode->cache, page);
304 ClearPageFsCache(page);
305 }
306#endif
307
308 if (PagePrivate(page)) {
309 if (wb && !PageWriteback(page)) {
310 set_page_private(page, 0);
311 afs_put_writeback(wb);
312 }
313
314 if (!page_private(page))
315 ClearPagePrivate(page);
316 }
317 }
318
319 _leave("");
320}
321
322/*
323 * release a page and clean up its private state if it's not busy
324 * - return true if the page can now be released, false if not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 */
David Howells416351f2007-05-09 02:33:45 -0700326static int afs_releasepage(struct page *page, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
David Howells9b3f26c2009-04-03 16:42:41 +0100328 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
David Howells416351f2007-05-09 02:33:45 -0700329 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
David Howells416351f2007-05-09 02:33:45 -0700331 _enter("{{%x:%u}[%lu],%lx},%x",
332 vnode->fid.vid, vnode->fid.vnode, page->index, page->flags,
333 gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
David Howells9b3f26c2009-04-03 16:42:41 +0100335 /* deny if page is being written to the cache and the caller hasn't
336 * elected to wait */
337#ifdef CONFIG_AFS_FSCACHE
338 if (PageFsCache(page)) {
339 if (fscache_check_page_write(vnode->cache, page)) {
340 if (!(gfp_flags & __GFP_WAIT)) {
341 _leave(" = F [cache busy]");
342 return 0;
343 }
344 fscache_wait_on_page_write(vnode->cache, page);
345 }
346
347 fscache_uncache_page(vnode->cache, page);
348 ClearPageFsCache(page);
349 }
350#endif
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (PagePrivate(page)) {
David Howells9b3f26c2009-04-03 16:42:41 +0100353 if (wb) {
354 set_page_private(page, 0);
355 afs_put_writeback(wb);
356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 ClearPagePrivate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359
David Howells9b3f26c2009-04-03 16:42:41 +0100360 /* indicate that the page can be released */
361 _leave(" = T");
362 return 1;
David Howellsec268152007-04-26 15:49:28 -0700363}