blob: 7c31ec39957587a59062b3f81dd338aa57e575aa [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* AFS superblock handling
2 *
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 *
5 * This software may be freely redistributed under the terms of the
6 * GNU General Public License.
7 *
8 * You should have received a copy of the GNU General Public License
9 * along with this program; if not, write to the Free Software
10 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
11 *
12 * Authors: David Howells <dhowells@redhat.com>
David Woodhouse44d1b982008-06-05 22:46:18 -070013 * David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 */
16
17#include <linux/kernel.h>
18#include <linux/module.h>
wangleibec5eb62010-08-11 09:38:04 +010019#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
21#include <linux/slab.h>
22#include <linux/fs.h>
23#include <linux/pagemap.h>
David Howells80c72fe2007-05-03 03:11:29 -070024#include <linux/parser.h>
David Howells45222b92007-05-10 22:22:20 -070025#include <linux/statfs.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040026#include <linux/sched.h>
Eric W. Biedermanf74f70f2013-01-31 04:23:54 -080027#include <linux/nsproxy.h>
28#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "internal.h"
30
31#define AFS_FS_MAGIC 0x6B414653 /* 'kAFS' */
32
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070033static void afs_i_init_once(void *foo);
Al Virof7442b32010-07-26 14:16:21 +040034static struct dentry *afs_mount(struct file_system_type *fs_type,
35 int flags, const char *dev_name, void *data);
Al Virodde194a2011-06-12 16:01:21 -040036static void afs_kill_super(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static struct inode *afs_alloc_inode(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static void afs_destroy_inode(struct inode *inode);
David Howells45222b92007-05-10 22:22:20 -070039static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -040041struct file_system_type afs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 .owner = THIS_MODULE,
43 .name = "afs",
Al Virof7442b32010-07-26 14:16:21 +040044 .mount = afs_mount,
Al Virodde194a2011-06-12 16:01:21 -040045 .kill_sb = afs_kill_super,
David Howells80c72fe2007-05-03 03:11:29 -070046 .fs_flags = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080049static const struct super_operations afs_super_ops = {
David Howells45222b92007-05-10 22:22:20 -070050 .statfs = afs_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 .alloc_inode = afs_alloc_inode,
wangleibec5eb62010-08-11 09:38:04 +010052 .drop_inode = afs_drop_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .destroy_inode = afs_destroy_inode,
Al Virob57922d2010-06-07 14:34:48 -040054 .evict_inode = afs_evict_inode,
Miklos Szeredi969729d2008-02-08 04:21:37 -080055 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
Christoph Lametere18b8902006-12-06 20:33:20 -080058static struct kmem_cache *afs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static atomic_t afs_count_active_inodes;
60
David Howells80c72fe2007-05-03 03:11:29 -070061enum {
62 afs_no_opt,
63 afs_opt_cell,
64 afs_opt_rwpath,
65 afs_opt_vol,
wangleibec5eb62010-08-11 09:38:04 +010066 afs_opt_autocell,
David Howells80c72fe2007-05-03 03:11:29 -070067};
68
Steven Whitehousea447c092008-10-13 10:46:57 +010069static const match_table_t afs_options_list = {
David Howells80c72fe2007-05-03 03:11:29 -070070 { afs_opt_cell, "cell=%s" },
71 { afs_opt_rwpath, "rwpath" },
72 { afs_opt_vol, "vol=%s" },
wangleibec5eb62010-08-11 09:38:04 +010073 { afs_opt_autocell, "autocell" },
David Howells80c72fe2007-05-03 03:11:29 -070074 { afs_no_opt, NULL },
75};
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/*
78 * initialise the filesystem
79 */
80int __init afs_fs_init(void)
81{
82 int ret;
83
84 _enter("");
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 /* create ourselves an inode cache */
87 atomic_set(&afs_count_active_inodes, 0);
88
89 ret = -ENOMEM;
90 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
91 sizeof(struct afs_vnode),
92 0,
93 SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +090094 afs_i_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (!afs_inode_cachep) {
96 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
97 return ret;
98 }
99
100 /* now export our filesystem to lesser mortals */
101 ret = register_filesystem(&afs_fs_type);
102 if (ret < 0) {
103 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700104 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return ret;
106 }
107
David Howells08e0e7c2007-04-26 15:55:03 -0700108 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return 0;
David Howellsec268152007-04-26 15:49:28 -0700110}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * clean up the filesystem
114 */
115void __exit afs_fs_exit(void)
116{
David Howells08e0e7c2007-04-26 15:55:03 -0700117 _enter("");
118
119 afs_mntpt_kill_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 unregister_filesystem(&afs_fs_type);
121
122 if (atomic_read(&afs_count_active_inodes) != 0) {
123 printk("kAFS: %d active inode objects still present\n",
124 atomic_read(&afs_count_active_inodes));
125 BUG();
126 }
127
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000128 /*
129 * Make sure all delayed rcu free inodes are flushed before we
130 * destroy cache.
131 */
132 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700134 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700135}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 * parse the mount options
139 * - this function has been shamelessly adapted from the ext3 fs which
140 * shamelessly adapted it from the msdos fs
141 */
David Howells00d3b7a2007-04-26 15:57:07 -0700142static int afs_parse_options(struct afs_mount_params *params,
143 char *options, const char **devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
David Howells08e0e7c2007-04-26 15:55:03 -0700145 struct afs_cell *cell;
David Howells80c72fe2007-05-03 03:11:29 -0700146 substring_t args[MAX_OPT_ARGS];
147 char *p;
148 int token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 _enter("%s", options);
151
152 options[PAGE_SIZE - 1] = 0;
153
David Howells80c72fe2007-05-03 03:11:29 -0700154 while ((p = strsep(&options, ","))) {
155 if (!*p)
156 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
David Howells80c72fe2007-05-03 03:11:29 -0700158 token = match_token(p, afs_options_list, args);
159 switch (token) {
160 case afs_opt_cell:
161 cell = afs_cell_lookup(args[0].from,
wangleibec5eb62010-08-11 09:38:04 +0100162 args[0].to - args[0].from,
163 false);
David Howells08e0e7c2007-04-26 15:55:03 -0700164 if (IS_ERR(cell))
165 return PTR_ERR(cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700166 afs_put_cell(params->cell);
167 params->cell = cell;
David Howells80c72fe2007-05-03 03:11:29 -0700168 break;
169
170 case afs_opt_rwpath:
171 params->rwpath = 1;
172 break;
173
174 case afs_opt_vol:
175 *devname = args[0].from;
176 break;
177
wangleibec5eb62010-08-11 09:38:04 +0100178 case afs_opt_autocell:
179 params->autocell = 1;
180 break;
181
David Howells80c72fe2007-05-03 03:11:29 -0700182 default:
183 printk(KERN_ERR "kAFS:"
184 " Unknown or invalid mount option: '%s'\n", p);
185 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
David Howells80c72fe2007-05-03 03:11:29 -0700189 _leave(" = 0");
190 return 0;
David Howellsec268152007-04-26 15:49:28 -0700191}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/*
David Howells00d3b7a2007-04-26 15:57:07 -0700194 * parse a device name to get cell name, volume name, volume type and R/W
195 * selector
196 * - this can be one of the following:
197 * "%[cell:]volume[.]" R/W volume
198 * "#[cell:]volume[.]" R/O or R/W volume (rwpath=0),
199 * or R/W (rwpath=1) volume
200 * "%[cell:]volume.readonly" R/O volume
201 * "#[cell:]volume.readonly" R/O volume
202 * "%[cell:]volume.backup" Backup volume
203 * "#[cell:]volume.backup" Backup volume
204 */
205static int afs_parse_device_name(struct afs_mount_params *params,
206 const char *name)
207{
208 struct afs_cell *cell;
209 const char *cellname, *suffix;
210 int cellnamesz;
211
212 _enter(",%s", name);
213
214 if (!name) {
215 printk(KERN_ERR "kAFS: no volume name specified\n");
216 return -EINVAL;
217 }
218
219 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
220 printk(KERN_ERR "kAFS: unparsable volume name\n");
221 return -EINVAL;
222 }
223
224 /* determine the type of volume we're looking for */
225 params->type = AFSVL_ROVOL;
226 params->force = false;
227 if (params->rwpath || name[0] == '%') {
228 params->type = AFSVL_RWVOL;
229 params->force = true;
230 }
231 name++;
232
233 /* split the cell name out if there is one */
234 params->volname = strchr(name, ':');
235 if (params->volname) {
236 cellname = name;
237 cellnamesz = params->volname - name;
238 params->volname++;
239 } else {
240 params->volname = name;
241 cellname = NULL;
242 cellnamesz = 0;
243 }
244
245 /* the volume type is further affected by a possible suffix */
246 suffix = strrchr(params->volname, '.');
247 if (suffix) {
248 if (strcmp(suffix, ".readonly") == 0) {
249 params->type = AFSVL_ROVOL;
250 params->force = true;
251 } else if (strcmp(suffix, ".backup") == 0) {
252 params->type = AFSVL_BACKVOL;
253 params->force = true;
254 } else if (suffix[1] == 0) {
255 } else {
256 suffix = NULL;
257 }
258 }
259
260 params->volnamesz = suffix ?
261 suffix - params->volname : strlen(params->volname);
262
263 _debug("cell %*.*s [%p]",
264 cellnamesz, cellnamesz, cellname ?: "", params->cell);
265
266 /* lookup the cell record */
267 if (cellname || !params->cell) {
wangleibec5eb62010-08-11 09:38:04 +0100268 cell = afs_cell_lookup(cellname, cellnamesz, true);
David Howells00d3b7a2007-04-26 15:57:07 -0700269 if (IS_ERR(cell)) {
wangleibec5eb62010-08-11 09:38:04 +0100270 printk(KERN_ERR "kAFS: unable to lookup cell '%*.*s'\n",
271 cellnamesz, cellnamesz, cellname ?: "");
David Howells00d3b7a2007-04-26 15:57:07 -0700272 return PTR_ERR(cell);
273 }
274 afs_put_cell(params->cell);
275 params->cell = cell;
276 }
277
278 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
279 params->cell->name, params->cell,
280 params->volnamesz, params->volnamesz, params->volname,
281 suffix ?: "-", params->type, params->force ? " FORCE" : "");
282
283 return 0;
284}
285
286/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * check a superblock to see if it's the one we're looking for
288 */
289static int afs_test_super(struct super_block *sb, void *data)
290{
Al Virodde194a2011-06-12 16:01:21 -0400291 struct afs_super_info *as1 = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct afs_super_info *as = sb->s_fs_info;
293
Al Virodde194a2011-06-12 16:01:21 -0400294 return as->volume == as1->volume;
295}
296
297static int afs_set_super(struct super_block *sb, void *data)
298{
299 sb->s_fs_info = data;
300 return set_anon_super(sb, NULL);
David Howellsec268152007-04-26 15:49:28 -0700301}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
304 * fill in the superblock
305 */
Al Virodde194a2011-06-12 16:01:21 -0400306static int afs_fill_super(struct super_block *sb,
307 struct afs_mount_params *params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Al Virodde194a2011-06-12 16:01:21 -0400309 struct afs_super_info *as = sb->s_fs_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct afs_fid fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 struct inode *inode = NULL;
312 int ret;
313
David Howells08e0e7c2007-04-26 15:55:03 -0700314 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* fill in the superblock */
317 sb->s_blocksize = PAGE_CACHE_SIZE;
318 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
319 sb->s_magic = AFS_FS_MAGIC;
320 sb->s_op = &afs_super_ops;
Jens Axboee1da0222010-04-22 11:58:18 +0200321 sb->s_bdi = &as->volume->bdi;
David Howells2e41ae22011-06-14 00:38:44 +0100322 strlcpy(sb->s_id, as->volume->vlocation->vldb.name, sizeof(sb->s_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /* allocate the root inode and dentry */
325 fid.vid = as->volume->vid;
326 fid.vnode = 1;
327 fid.unique = 1;
David Howells260a9802007-04-26 15:59:35 -0700328 inode = afs_iget(sb, params->key, &fid, NULL, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700329 if (IS_ERR(inode))
Al Virodde194a2011-06-12 16:01:21 -0400330 return PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
wangleibec5eb62010-08-11 09:38:04 +0100332 if (params->autocell)
333 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 ret = -ENOMEM;
Al Viro48fde702012-01-08 22:15:13 -0500336 sb->s_root = d_make_root(inode);
337 if (!sb->s_root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 goto error;
339
Al Virod61dcce2011-01-12 20:04:20 -0500340 sb->s_d_op = &afs_fs_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
David Howells08e0e7c2007-04-26 15:55:03 -0700342 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344
David Howellsec268152007-04-26 15:49:28 -0700345error:
David Howells08e0e7c2007-04-26 15:55:03 -0700346 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return ret;
David Howellsec268152007-04-26 15:49:28 -0700348}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/*
351 * get an AFS superblock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
Al Virof7442b32010-07-26 14:16:21 +0400353static struct dentry *afs_mount(struct file_system_type *fs_type,
354 int flags, const char *dev_name, void *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 struct afs_mount_params params;
357 struct super_block *sb;
David Howells08e0e7c2007-04-26 15:55:03 -0700358 struct afs_volume *vol;
David Howells00d3b7a2007-04-26 15:57:07 -0700359 struct key *key;
Miklos Szeredi969729d2008-02-08 04:21:37 -0800360 char *new_opts = kstrdup(options, GFP_KERNEL);
Al Virodde194a2011-06-12 16:01:21 -0400361 struct afs_super_info *as;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 int ret;
363
364 _enter(",,%s,%p", dev_name, options);
365
366 memset(&params, 0, sizeof(params));
367
Eric W. Biedermanf74f70f2013-01-31 04:23:54 -0800368 ret = -EINVAL;
369 if (current->nsproxy->net_ns != &init_net)
370 goto error;
371
David Howells00d3b7a2007-04-26 15:57:07 -0700372 /* parse the options and device name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (options) {
David Howells00d3b7a2007-04-26 15:57:07 -0700374 ret = afs_parse_options(&params, options, &dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (ret < 0)
376 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
378
David Howells00d3b7a2007-04-26 15:57:07 -0700379 ret = afs_parse_device_name(&params, dev_name);
380 if (ret < 0)
381 goto error;
382
383 /* try and do the mount securely */
384 key = afs_request_key(params.cell);
385 if (IS_ERR(key)) {
386 _leave(" = %ld [key]", PTR_ERR(key));
387 ret = PTR_ERR(key);
388 goto error;
389 }
390 params.key = key;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* parse the device name */
David Howells00d3b7a2007-04-26 15:57:07 -0700393 vol = afs_volume_lookup(&params);
David Howells08e0e7c2007-04-26 15:55:03 -0700394 if (IS_ERR(vol)) {
395 ret = PTR_ERR(vol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 goto error;
David Howells08e0e7c2007-04-26 15:55:03 -0700397 }
Al Virodde194a2011-06-12 16:01:21 -0400398
399 /* allocate a superblock info record */
400 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
401 if (!as) {
402 ret = -ENOMEM;
403 afs_put_volume(vol);
404 goto error;
405 }
406 as->volume = vol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /* allocate a deviceless superblock */
David Howells9249e172012-06-25 12:55:37 +0100409 sb = sget(fs_type, afs_test_super, afs_set_super, flags, as);
David Howells08e0e7c2007-04-26 15:55:03 -0700410 if (IS_ERR(sb)) {
411 ret = PTR_ERR(sb);
Al Virodde194a2011-06-12 16:01:21 -0400412 afs_put_volume(vol);
413 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 goto error;
David Howells08e0e7c2007-04-26 15:55:03 -0700415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
David Howells436058a2007-04-26 15:56:24 -0700417 if (!sb->s_root) {
418 /* initial superblock/root creation */
419 _debug("create");
David Howells436058a2007-04-26 15:56:24 -0700420 ret = afs_fill_super(sb, &params);
421 if (ret < 0) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400422 deactivate_locked_super(sb);
David Howells436058a2007-04-26 15:56:24 -0700423 goto error;
424 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400425 save_mount_options(sb, new_opts);
David Howells436058a2007-04-26 15:56:24 -0700426 sb->s_flags |= MS_ACTIVE;
427 } else {
428 _debug("reuse");
429 ASSERTCMP(sb->s_flags, &, MS_ACTIVE);
Al Virodde194a2011-06-12 16:01:21 -0400430 afs_put_volume(vol);
431 kfree(as);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
David Howells00d3b7a2007-04-26 15:57:07 -0700434 afs_put_cell(params.cell);
Al Viro2a32ceb2009-05-08 16:05:57 -0400435 kfree(new_opts);
David Howells08e0e7c2007-04-26 15:55:03 -0700436 _leave(" = 0 [%p]", sb);
Al Virof7442b32010-07-26 14:16:21 +0400437 return dget(sb->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
David Howellsec268152007-04-26 15:49:28 -0700439error:
David Howells00d3b7a2007-04-26 15:57:07 -0700440 afs_put_cell(params.cell);
441 key_put(params.key);
Miklos Szeredi969729d2008-02-08 04:21:37 -0800442 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 _leave(" = %d", ret);
Al Virof7442b32010-07-26 14:16:21 +0400444 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700445}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Al Virodde194a2011-06-12 16:01:21 -0400447static void afs_kill_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 struct afs_super_info *as = sb->s_fs_info;
Al Virodde194a2011-06-12 16:01:21 -0400450 kill_anon_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 afs_put_volume(as->volume);
Al Virodde194a2011-06-12 16:01:21 -0400452 kfree(as);
David Howellsec268152007-04-26 15:49:28 -0700453}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455/*
456 * initialise an inode cache slab element prior to any use
457 */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700458static void afs_i_init_once(void *_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
David Howellsec268152007-04-26 15:49:28 -0700460 struct afs_vnode *vnode = _vnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Christoph Lametera35afb82007-05-16 22:10:57 -0700462 memset(vnode, 0, sizeof(*vnode));
463 inode_init_once(&vnode->vfs_inode);
464 init_waitqueue_head(&vnode->update_waitq);
465 mutex_init(&vnode->permits_lock);
466 mutex_init(&vnode->validate_lock);
467 spin_lock_init(&vnode->writeback_lock);
468 spin_lock_init(&vnode->lock);
469 INIT_LIST_HEAD(&vnode->writebacks);
David Howellse8d6c552007-07-15 23:40:12 -0700470 INIT_LIST_HEAD(&vnode->pending_locks);
471 INIT_LIST_HEAD(&vnode->granted_locks);
472 INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
Christoph Lametera35afb82007-05-16 22:10:57 -0700473 INIT_WORK(&vnode->cb_broken_work, afs_broken_callback_work);
David Howellsec268152007-04-26 15:49:28 -0700474}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
477 * allocate an AFS inode struct from our slab cache
478 */
479static struct inode *afs_alloc_inode(struct super_block *sb)
480{
481 struct afs_vnode *vnode;
482
David Howellsec268152007-04-26 15:49:28 -0700483 vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (!vnode)
485 return NULL;
486
487 atomic_inc(&afs_count_active_inodes);
488
489 memset(&vnode->fid, 0, sizeof(vnode->fid));
490 memset(&vnode->status, 0, sizeof(vnode->status));
491
492 vnode->volume = NULL;
493 vnode->update_cnt = 0;
David Howells260a9802007-04-26 15:59:35 -0700494 vnode->flags = 1 << AFS_VNODE_UNSET;
David Howells08e0e7c2007-04-26 15:55:03 -0700495 vnode->cb_promised = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
David Howells0f300ca2007-05-10 22:22:20 -0700497 _leave(" = %p", &vnode->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return &vnode->vfs_inode;
David Howellsec268152007-04-26 15:49:28 -0700499}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100501static void afs_i_callback(struct rcu_head *head)
502{
503 struct inode *inode = container_of(head, struct inode, i_rcu);
504 struct afs_vnode *vnode = AFS_FS_I(inode);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100505 kmem_cache_free(afs_inode_cachep, vnode);
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/*
509 * destroy an AFS inode struct
510 */
511static void afs_destroy_inode(struct inode *inode)
512{
David Howells08e0e7c2007-04-26 15:55:03 -0700513 struct afs_vnode *vnode = AFS_FS_I(inode);
514
David Howells0f300ca2007-05-10 22:22:20 -0700515 _enter("%p{%x:%u}", inode, vnode->fid.vid, vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
David Howells08e0e7c2007-04-26 15:55:03 -0700517 _debug("DESTROY INODE %p", inode);
518
519 ASSERTCMP(vnode->server, ==, NULL);
520
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100521 call_rcu(&inode->i_rcu, afs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 atomic_dec(&afs_count_active_inodes);
David Howellsec268152007-04-26 15:49:28 -0700523}
David Howells45222b92007-05-10 22:22:20 -0700524
525/*
526 * return information about an AFS volume
527 */
528static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
529{
530 struct afs_volume_status vs;
531 struct afs_vnode *vnode = AFS_FS_I(dentry->d_inode);
532 struct key *key;
533 int ret;
534
535 key = afs_request_key(vnode->volume->cell);
536 if (IS_ERR(key))
537 return PTR_ERR(key);
538
539 ret = afs_vnode_get_volume_status(vnode, key, &vs);
540 key_put(key);
541 if (ret < 0) {
542 _leave(" = %d", ret);
543 return ret;
544 }
545
546 buf->f_type = dentry->d_sb->s_magic;
547 buf->f_bsize = AFS_BLOCK_SIZE;
548 buf->f_namelen = AFSNAMEMAX - 1;
549
550 if (vs.max_quota == 0)
551 buf->f_blocks = vs.part_max_blocks;
552 else
553 buf->f_blocks = vs.max_quota;
554 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use;
555 return 0;
556}