1 /* AFS filesystem file handling
3 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
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.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
16 #include <linux/pagemap.h>
17 #include <linux/writeback.h>
18 #include <linux/gfp.h>
21 static int afs_readpage(struct file *file, struct page *page);
22 static void afs_invalidatepage(struct page *page, unsigned int offset,
24 static int afs_releasepage(struct page *page, gfp_t gfp_flags);
25 static int afs_launder_page(struct page *page);
27 static int afs_readpages(struct file *filp, struct address_space *mapping,
28 struct list_head *pages, unsigned nr_pages);
30 const struct file_operations afs_file_operations = {
32 .release = afs_release,
33 .llseek = generic_file_llseek,
34 .read_iter = generic_file_read_iter,
35 .write_iter = afs_file_write,
36 .mmap = generic_file_readonly_mmap,
37 .splice_read = generic_file_splice_read,
43 const struct inode_operations afs_file_inode_operations = {
44 .getattr = afs_getattr,
45 .setattr = afs_setattr,
46 .permission = afs_permission,
49 const struct address_space_operations afs_fs_aops = {
50 .readpage = afs_readpage,
51 .readpages = afs_readpages,
52 .set_page_dirty = afs_set_page_dirty,
53 .launder_page = afs_launder_page,
54 .releasepage = afs_releasepage,
55 .invalidatepage = afs_invalidatepage,
56 .write_begin = afs_write_begin,
57 .write_end = afs_write_end,
58 .writepage = afs_writepage,
59 .writepages = afs_writepages,
63 * open an AFS file or directory and attach a key to it
65 int afs_open(struct inode *inode, struct file *file)
67 struct afs_vnode *vnode = AFS_FS_I(inode);
71 _enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
73 key = afs_request_key(vnode->volume->cell);
75 _leave(" = %ld [key]", PTR_ERR(key));
79 ret = afs_validate(vnode, key);
81 _leave(" = %d [val]", ret);
85 file->private_data = key;
91 * release an AFS file or directory and discard its key
93 int afs_release(struct inode *inode, struct file *file)
95 struct afs_vnode *vnode = AFS_FS_I(inode);
97 _enter("{%x:%u},", vnode->fid.vid, vnode->fid.vnode);
99 key_put(file->private_data);
104 #ifdef CONFIG_AFS_FSCACHE
106 * deal with notification that a page was read from the cache
108 static void afs_file_readpage_read_complete(struct page *page,
112 _enter("%p,%p,%d", page, data, error);
114 /* if the read completes with an error, we just unlock the page and let
115 * the VM reissue the readpage */
117 SetPageUptodate(page);
123 * read page from file, directory or symlink, given a key to use
125 int afs_page_filler(void *data, struct page *page)
127 struct inode *inode = page->mapping->host;
128 struct afs_vnode *vnode = AFS_FS_I(inode);
129 struct key *key = data;
134 _enter("{%x},{%lu},{%lu}", key_serial(key), inode->i_ino, page->index);
136 BUG_ON(!PageLocked(page));
139 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
143 #ifdef CONFIG_AFS_FSCACHE
144 ret = fscache_read_or_alloc_page(vnode->cache,
146 afs_file_readpage_read_complete,
153 /* read BIO submitted (page in cache) */
157 /* page not yet cached */
159 _debug("cache said ENODATA");
162 /* page will not be cached */
164 _debug("cache said ENOBUFS");
167 offset = page->index << PAGE_SHIFT;
168 len = min_t(size_t, i_size_read(inode) - offset, PAGE_SIZE);
170 /* read the contents of the file from the server into the
172 ret = afs_vnode_fetch_data(vnode, key, offset, len, page);
174 if (ret == -ENOENT) {
175 _debug("got NOENT from server"
176 " - marking file deleted and stale");
177 set_bit(AFS_VNODE_DELETED, &vnode->flags);
181 #ifdef CONFIG_AFS_FSCACHE
182 fscache_uncache_page(vnode->cache, page);
184 BUG_ON(PageFsCache(page));
188 SetPageUptodate(page);
190 /* 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));
207 _leave(" = %d", ret);
212 * read page from file, directory or symlink, given a file to nominate the key
215 static int afs_readpage(struct file *file, struct page *page)
221 key = file->private_data;
223 ret = afs_page_filler(key, page);
225 struct inode *inode = page->mapping->host;
226 key = afs_request_key(AFS_FS_S(inode->i_sb)->volume->cell);
230 ret = afs_page_filler(key, page);
238 * read a set of pages
240 static int afs_readpages(struct file *file, struct address_space *mapping,
241 struct list_head *pages, unsigned nr_pages)
243 struct key *key = file->private_data;
244 struct afs_vnode *vnode;
247 _enter("{%d},{%lu},,%d",
248 key_serial(key), mapping->host->i_ino, nr_pages);
252 vnode = AFS_FS_I(mapping->host);
253 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
254 _leave(" = -ESTALE");
258 /* attempt to read as many of the pages as possible */
259 #ifdef CONFIG_AFS_FSCACHE
260 ret = fscache_read_or_alloc_pages(vnode->cache,
264 afs_file_readpage_read_complete,
266 mapping_gfp_mask(mapping));
272 /* all pages are being read from the cache */
274 BUG_ON(!list_empty(pages));
275 BUG_ON(nr_pages != 0);
276 _leave(" = 0 [reading all]");
279 /* there were pages that couldn't be read from the cache */
286 _leave(" = %d", ret);
290 /* load the missing pages from the network */
291 ret = read_cache_pages(mapping, pages, afs_page_filler, key);
293 _leave(" = %d [netting]", ret);
298 * write back a dirty page
300 static int afs_launder_page(struct page *page)
302 _enter("{%lu}", page->index);
308 * invalidate part or all of a page
309 * - release a page and clean up its private data if offset is 0 (indicating
312 static void afs_invalidatepage(struct page *page, unsigned int offset,
315 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
317 _enter("{%lu},%u,%u", page->index, offset, length);
319 BUG_ON(!PageLocked(page));
321 /* we clean up only if the entire page is being invalidated */
322 if (offset == 0 && length == PAGE_SIZE) {
323 #ifdef CONFIG_AFS_FSCACHE
324 if (PageFsCache(page)) {
325 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
326 fscache_wait_on_page_write(vnode->cache, page);
327 fscache_uncache_page(vnode->cache, page);
331 if (PagePrivate(page)) {
332 if (wb && !PageWriteback(page)) {
333 set_page_private(page, 0);
334 afs_put_writeback(wb);
337 if (!page_private(page))
338 ClearPagePrivate(page);
346 * release a page and clean up its private state if it's not busy
347 * - return true if the page can now be released, false if not
349 static int afs_releasepage(struct page *page, gfp_t gfp_flags)
351 struct afs_writeback *wb = (struct afs_writeback *) page_private(page);
352 struct afs_vnode *vnode = AFS_FS_I(page->mapping->host);
354 _enter("{{%x:%u}[%lu],%lx},%x",
355 vnode->fid.vid, vnode->fid.vnode, page->index, page->flags,
358 /* deny if page is being written to the cache and the caller hasn't
360 #ifdef CONFIG_AFS_FSCACHE
361 if (!fscache_maybe_release_page(vnode->cache, page, gfp_flags)) {
362 _leave(" = F [cache busy]");
367 if (PagePrivate(page)) {
369 set_page_private(page, 0);
370 afs_put_writeback(wb);
372 ClearPagePrivate(page);
375 /* indicate that the page can be released */