blob: 0149dab365e722c95f466e7e5d17f94cab8b9e70 [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
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/*
David Howells416351f2007-05-09 02:33:45 -0700124 * AFS read page from file, directory or symlink
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 */
David Howells416351f2007-05-09 02:33:45 -0700126static int afs_readpage(struct file *file, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 struct afs_vnode *vnode;
129 struct inode *inode;
David Howells00d3b7a2007-04-26 15:57:07 -0700130 struct key *key;
David Howells08e0e7c2007-04-26 15:55:03 -0700131 size_t len;
132 off_t offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int ret;
134
135 inode = page->mapping->host;
136
David Howells00d3b7a2007-04-26 15:57:07 -0700137 ASSERT(file != NULL);
138 key = file->private_data;
139 ASSERT(key != NULL);
140
141 _enter("{%x},{%lu},{%lu}", key_serial(key), inode->i_ino, page->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 vnode = AFS_FS_I(inode);
144
Matt Mackallcd7619d2005-05-01 08:59:01 -0700145 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 ret = -ESTALE;
David Howells08e0e7c2007-04-26 15:55:03 -0700148 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 goto error;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /* is it cached? */
David Howells9b3f26c2009-04-03 16:42:41 +0100152#ifdef CONFIG_AFS_FSCACHE
153 ret = fscache_read_or_alloc_page(vnode->cache,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 page,
155 afs_file_readpage_read_complete,
156 NULL,
157 GFP_KERNEL);
158#else
159 ret = -ENOBUFS;
160#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 switch (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 /* read BIO submitted (page in cache) */
163 case 0:
164 break;
165
David Howells9b3f26c2009-04-03 16:42:41 +0100166 /* page not yet cached */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 case -ENODATA:
David Howells9b3f26c2009-04-03 16:42:41 +0100168 _debug("cache said ENODATA");
169 goto go_on;
170
171 /* page will not be cached */
172 case -ENOBUFS:
173 _debug("cache said ENOBUFS");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 default:
David Howells9b3f26c2009-04-03 16:42:41 +0100175 go_on:
David Howells08e0e7c2007-04-26 15:55:03 -0700176 offset = page->index << PAGE_CACHE_SHIFT;
177 len = min_t(size_t, i_size_read(inode) - offset, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /* read the contents of the file from the server into the
180 * page */
David Howells00d3b7a2007-04-26 15:57:07 -0700181 ret = afs_vnode_fetch_data(vnode, key, offset, len, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700183 if (ret == -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 _debug("got NOENT from server"
185 " - marking file deleted and stale");
David Howells08e0e7c2007-04-26 15:55:03 -0700186 set_bit(AFS_VNODE_DELETED, &vnode->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 ret = -ESTALE;
188 }
David Howells9b3f26c2009-04-03 16:42:41 +0100189
190#ifdef CONFIG_AFS_FSCACHE
191 fscache_uncache_page(vnode->cache, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100193 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 goto error;
195 }
196
197 SetPageUptodate(page);
198
David Howells9b3f26c2009-04-03 16:42:41 +0100199 /* send the page to the cache */
200#ifdef CONFIG_AFS_FSCACHE
201 if (PageFsCache(page) &&
202 fscache_write_page(vnode->cache, page, GFP_KERNEL) != 0) {
203 fscache_uncache_page(vnode->cache, page);
204 BUG_ON(PageFsCache(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#endif
David Howells9b3f26c2009-04-03 16:42:41 +0100207 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
210 _leave(" = 0");
211 return 0;
212
David Howells08e0e7c2007-04-26 15:55:03 -0700213error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 SetPageError(page);
215 unlock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 _leave(" = %d", ret);
217 return ret;
David Howellsec268152007-04-26 15:49:28 -0700218}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220/*
David Howells9b3f26c2009-04-03 16:42:41 +0100221 * read a set of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
David Howells9b3f26c2009-04-03 16:42:41 +0100223static int afs_readpages(struct file *file, struct address_space *mapping,
224 struct list_head *pages, unsigned nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
David Howells9b3f26c2009-04-03 16:42:41 +0100226 struct afs_vnode *vnode;
227 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
David Howells9b3f26c2009-04-03 16:42:41 +0100229 _enter(",{%lu},,%d", mapping->host->i_ino, nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
David Howells9b3f26c2009-04-03 16:42:41 +0100231 vnode = AFS_FS_I(mapping->host);
232 if (vnode->flags & AFS_VNODE_DELETED) {
233 _leave(" = -ESTALE");
234 return -ESTALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
David Howells9b3f26c2009-04-03 16:42:41 +0100237 /* attempt to read as many of the pages as possible */
238#ifdef CONFIG_AFS_FSCACHE
239 ret = fscache_read_or_alloc_pages(vnode->cache,
240 mapping,
241 pages,
242 &nr_pages,
243 afs_file_readpage_read_complete,
244 NULL,
245 mapping_gfp_mask(mapping));
246#else
247 ret = -ENOBUFS;
248#endif
249
250 switch (ret) {
251 /* all pages are being read from the cache */
252 case 0:
253 BUG_ON(!list_empty(pages));
254 BUG_ON(nr_pages != 0);
255 _leave(" = 0 [reading all]");
256 return 0;
257
258 /* there were pages that couldn't be read from the cache */
259 case -ENODATA:
260 case -ENOBUFS:
261 break;
262
263 /* other error */
264 default:
265 _leave(" = %d", ret);
266 return ret;
267 }
268
269 /* load the missing pages from the network */
270 ret = read_cache_pages(mapping, pages, (void *) afs_readpage, file);
271
272 _leave(" = %d [netting]", ret);
273 return ret;
David Howellsec268152007-04-26 15:49:28 -0700274}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*
David Howells31143d52007-05-09 02:33:46 -0700277 * write back a dirty page
278 */
279static int afs_launder_page(struct page *page)
280{
281 _enter("{%lu}", page->index);
282
283 return 0;
284}
285
286/*
David Howells9b3f26c2009-04-03 16:42:41 +0100287 * invalidate part or all of a page
288 * - release a page and clean up its private data if offset is 0 (indicating
289 * the entire page)
290 */
291static void afs_invalidatepage(struct page *page, unsigned long offset)
292{
293 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
294
295 _enter("{%lu},%lu", page->index, offset);
296
297 BUG_ON(!PageLocked(page));
298
299 /* we clean up only if the entire page is being invalidated */
300 if (offset == 0) {
301#ifdef CONFIG_AFS_FSCACHE
302 if (PageFsCache(page)) {
303 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
304 fscache_wait_on_page_write(vnode->cache, page);
305 fscache_uncache_page(vnode->cache, page);
306 ClearPageFsCache(page);
307 }
308#endif
309
310 if (PagePrivate(page)) {
311 if (wb && !PageWriteback(page)) {
312 set_page_private(page, 0);
313 afs_put_writeback(wb);
314 }
315
316 if (!page_private(page))
317 ClearPagePrivate(page);
318 }
319 }
320
321 _leave("");
322}
323
324/*
325 * release a page and clean up its private state if it's not busy
326 * - return true if the page can now be released, false if not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
David Howells416351f2007-05-09 02:33:45 -0700328static int afs_releasepage(struct page *page, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
David Howells9b3f26c2009-04-03 16:42:41 +0100330 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
David Howells416351f2007-05-09 02:33:45 -0700331 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
David Howells416351f2007-05-09 02:33:45 -0700333 _enter("{{%x:%u}[%lu],%lx},%x",
334 vnode->fid.vid, vnode->fid.vnode, page->index, page->flags,
335 gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
David Howells9b3f26c2009-04-03 16:42:41 +0100337 /* deny if page is being written to the cache and the caller hasn't
338 * elected to wait */
339#ifdef CONFIG_AFS_FSCACHE
340 if (PageFsCache(page)) {
341 if (fscache_check_page_write(vnode->cache, page)) {
342 if (!(gfp_flags & __GFP_WAIT)) {
343 _leave(" = F [cache busy]");
344 return 0;
345 }
346 fscache_wait_on_page_write(vnode->cache, page);
347 }
348
349 fscache_uncache_page(vnode->cache, page);
350 ClearPageFsCache(page);
351 }
352#endif
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 if (PagePrivate(page)) {
David Howells9b3f26c2009-04-03 16:42:41 +0100355 if (wb) {
356 set_page_private(page, 0);
357 afs_put_writeback(wb);
358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 ClearPagePrivate(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
David Howells9b3f26c2009-04-03 16:42:41 +0100362 /* indicate that the page can be released */
363 _leave(" = T");
364 return 1;
David Howellsec268152007-04-26 15:49:28 -0700365}