blob: e932e5a3a0c1f6d5628f4e54fb6611515e0d18eb [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>
19#include <linux/init.h>
20#include <linux/slab.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040021#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "internal.h"
28
29#define AFS_FS_MAGIC 0x6B414653 /* 'kAFS' */
30
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070031static void afs_i_init_once(void *foo);
David Howells454e2392006-06-23 02:02:57 -070032static int afs_get_sb(struct file_system_type *fs_type,
33 int flags, const char *dev_name,
34 void *data, struct vfsmount *mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static struct inode *afs_alloc_inode(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static void afs_put_super(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static void afs_destroy_inode(struct inode *inode);
David Howells45222b92007-05-10 22:22:20 -070038static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -040040struct file_system_type afs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .owner = THIS_MODULE,
42 .name = "afs",
43 .get_sb = afs_get_sb,
44 .kill_sb = kill_anon_super,
David Howells80c72fe2007-05-03 03:11:29 -070045 .fs_flags = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080048static const struct super_operations afs_super_ops = {
David Howells45222b92007-05-10 22:22:20 -070049 .statfs = afs_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 .alloc_inode = afs_alloc_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 .destroy_inode = afs_destroy_inode,
52 .clear_inode = afs_clear_inode,
53 .put_super = afs_put_super,
Miklos Szeredi969729d2008-02-08 04:21:37 -080054 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
Christoph Lametere18b8902006-12-06 20:33:20 -080057static struct kmem_cache *afs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static atomic_t afs_count_active_inodes;
59
David Howells80c72fe2007-05-03 03:11:29 -070060enum {
61 afs_no_opt,
62 afs_opt_cell,
63 afs_opt_rwpath,
64 afs_opt_vol,
65};
66
Steven Whitehousea447c092008-10-13 10:46:57 +010067static const match_table_t afs_options_list = {
David Howells80c72fe2007-05-03 03:11:29 -070068 { afs_opt_cell, "cell=%s" },
69 { afs_opt_rwpath, "rwpath" },
70 { afs_opt_vol, "vol=%s" },
71 { afs_no_opt, NULL },
72};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
75 * initialise the filesystem
76 */
77int __init afs_fs_init(void)
78{
79 int ret;
80
81 _enter("");
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* create ourselves an inode cache */
84 atomic_set(&afs_count_active_inodes, 0);
85
86 ret = -ENOMEM;
87 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
88 sizeof(struct afs_vnode),
89 0,
90 SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +090091 afs_i_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!afs_inode_cachep) {
93 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
94 return ret;
95 }
96
97 /* now export our filesystem to lesser mortals */
98 ret = register_filesystem(&afs_fs_type);
99 if (ret < 0) {
100 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700101 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return ret;
103 }
104
David Howells08e0e7c2007-04-26 15:55:03 -0700105 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 0;
David Howellsec268152007-04-26 15:49:28 -0700107}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * clean up the filesystem
111 */
112void __exit afs_fs_exit(void)
113{
David Howells08e0e7c2007-04-26 15:55:03 -0700114 _enter("");
115
116 afs_mntpt_kill_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unregister_filesystem(&afs_fs_type);
118
119 if (atomic_read(&afs_count_active_inodes) != 0) {
120 printk("kAFS: %d active inode objects still present\n",
121 atomic_read(&afs_count_active_inodes));
122 BUG();
123 }
124
125 kmem_cache_destroy(afs_inode_cachep);
David Howells08e0e7c2007-04-26 15:55:03 -0700126 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700127}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * parse the mount options
131 * - this function has been shamelessly adapted from the ext3 fs which
132 * shamelessly adapted it from the msdos fs
133 */
David Howells00d3b7a2007-04-26 15:57:07 -0700134static int afs_parse_options(struct afs_mount_params *params,
135 char *options, const char **devname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
David Howells08e0e7c2007-04-26 15:55:03 -0700137 struct afs_cell *cell;
David Howells80c72fe2007-05-03 03:11:29 -0700138 substring_t args[MAX_OPT_ARGS];
139 char *p;
140 int token;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 _enter("%s", options);
143
144 options[PAGE_SIZE - 1] = 0;
145
David Howells80c72fe2007-05-03 03:11:29 -0700146 while ((p = strsep(&options, ","))) {
147 if (!*p)
148 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
David Howells80c72fe2007-05-03 03:11:29 -0700150 token = match_token(p, afs_options_list, args);
151 switch (token) {
152 case afs_opt_cell:
153 cell = afs_cell_lookup(args[0].from,
154 args[0].to - args[0].from);
David Howells08e0e7c2007-04-26 15:55:03 -0700155 if (IS_ERR(cell))
156 return PTR_ERR(cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700157 afs_put_cell(params->cell);
158 params->cell = cell;
David Howells80c72fe2007-05-03 03:11:29 -0700159 break;
160
161 case afs_opt_rwpath:
162 params->rwpath = 1;
163 break;
164
165 case afs_opt_vol:
166 *devname = args[0].from;
167 break;
168
169 default:
170 printk(KERN_ERR "kAFS:"
171 " Unknown or invalid mount option: '%s'\n", p);
172 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
David Howells80c72fe2007-05-03 03:11:29 -0700176 _leave(" = 0");
177 return 0;
David Howellsec268152007-04-26 15:49:28 -0700178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
David Howells00d3b7a2007-04-26 15:57:07 -0700181 * parse a device name to get cell name, volume name, volume type and R/W
182 * selector
183 * - this can be one of the following:
184 * "%[cell:]volume[.]" R/W volume
185 * "#[cell:]volume[.]" R/O or R/W volume (rwpath=0),
186 * or R/W (rwpath=1) volume
187 * "%[cell:]volume.readonly" R/O volume
188 * "#[cell:]volume.readonly" R/O volume
189 * "%[cell:]volume.backup" Backup volume
190 * "#[cell:]volume.backup" Backup volume
191 */
192static int afs_parse_device_name(struct afs_mount_params *params,
193 const char *name)
194{
195 struct afs_cell *cell;
196 const char *cellname, *suffix;
197 int cellnamesz;
198
199 _enter(",%s", name);
200
201 if (!name) {
202 printk(KERN_ERR "kAFS: no volume name specified\n");
203 return -EINVAL;
204 }
205
206 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
207 printk(KERN_ERR "kAFS: unparsable volume name\n");
208 return -EINVAL;
209 }
210
211 /* determine the type of volume we're looking for */
212 params->type = AFSVL_ROVOL;
213 params->force = false;
214 if (params->rwpath || name[0] == '%') {
215 params->type = AFSVL_RWVOL;
216 params->force = true;
217 }
218 name++;
219
220 /* split the cell name out if there is one */
221 params->volname = strchr(name, ':');
222 if (params->volname) {
223 cellname = name;
224 cellnamesz = params->volname - name;
225 params->volname++;
226 } else {
227 params->volname = name;
228 cellname = NULL;
229 cellnamesz = 0;
230 }
231
232 /* the volume type is further affected by a possible suffix */
233 suffix = strrchr(params->volname, '.');
234 if (suffix) {
235 if (strcmp(suffix, ".readonly") == 0) {
236 params->type = AFSVL_ROVOL;
237 params->force = true;
238 } else if (strcmp(suffix, ".backup") == 0) {
239 params->type = AFSVL_BACKVOL;
240 params->force = true;
241 } else if (suffix[1] == 0) {
242 } else {
243 suffix = NULL;
244 }
245 }
246
247 params->volnamesz = suffix ?
248 suffix - params->volname : strlen(params->volname);
249
250 _debug("cell %*.*s [%p]",
251 cellnamesz, cellnamesz, cellname ?: "", params->cell);
252
253 /* lookup the cell record */
254 if (cellname || !params->cell) {
255 cell = afs_cell_lookup(cellname, cellnamesz);
256 if (IS_ERR(cell)) {
257 printk(KERN_ERR "kAFS: unable to lookup cell '%s'\n",
258 cellname ?: "");
259 return PTR_ERR(cell);
260 }
261 afs_put_cell(params->cell);
262 params->cell = cell;
263 }
264
265 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
266 params->cell->name, params->cell,
267 params->volnamesz, params->volnamesz, params->volname,
268 suffix ?: "-", params->type, params->force ? " FORCE" : "");
269
270 return 0;
271}
272
273/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * check a superblock to see if it's the one we're looking for
275 */
276static int afs_test_super(struct super_block *sb, void *data)
277{
278 struct afs_mount_params *params = data;
279 struct afs_super_info *as = sb->s_fs_info;
280
281 return as->volume == params->volume;
David Howellsec268152007-04-26 15:49:28 -0700282}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
285 * fill in the superblock
286 */
David Howells436058a2007-04-26 15:56:24 -0700287static int afs_fill_super(struct super_block *sb, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct afs_mount_params *params = data;
290 struct afs_super_info *as = NULL;
291 struct afs_fid fid;
292 struct dentry *root = NULL;
293 struct inode *inode = NULL;
294 int ret;
295
David Howells08e0e7c2007-04-26 15:55:03 -0700296 _enter("");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* allocate a superblock info record */
Yan Burmanb593e482006-12-06 20:40:32 -0800299 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (!as) {
301 _leave(" = -ENOMEM");
302 return -ENOMEM;
303 }
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 afs_get_volume(params->volume);
306 as->volume = params->volume;
307
308 /* fill in the superblock */
309 sb->s_blocksize = PAGE_CACHE_SIZE;
310 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
311 sb->s_magic = AFS_FS_MAGIC;
312 sb->s_op = &afs_super_ops;
313 sb->s_fs_info = as;
Jens Axboee1da0222010-04-22 11:58:18 +0200314 sb->s_bdi = &as->volume->bdi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 /* allocate the root inode and dentry */
317 fid.vid = as->volume->vid;
318 fid.vnode = 1;
319 fid.unique = 1;
David Howells260a9802007-04-26 15:59:35 -0700320 inode = afs_iget(sb, params->key, &fid, NULL, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700321 if (IS_ERR(inode))
322 goto error_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 ret = -ENOMEM;
325 root = d_alloc_root(inode);
326 if (!root)
327 goto error;
328
329 sb->s_root = root;
330
David Howells08e0e7c2007-04-26 15:55:03 -0700331 _leave(" = 0");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return 0;
333
David Howells08e0e7c2007-04-26 15:55:03 -0700334error_inode:
335 ret = PTR_ERR(inode);
336 inode = NULL;
David Howellsec268152007-04-26 15:49:28 -0700337error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 iput(inode);
339 afs_put_volume(as->volume);
340 kfree(as);
341
342 sb->s_fs_info = NULL;
343
David Howells08e0e7c2007-04-26 15:55:03 -0700344 _leave(" = %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 return ret;
David Howellsec268152007-04-26 15:49:28 -0700346}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/*
349 * get an AFS superblock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
David Howells454e2392006-06-23 02:02:57 -0700351static int afs_get_sb(struct file_system_type *fs_type,
352 int flags,
353 const char *dev_name,
354 void *options,
355 struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct afs_mount_params params;
358 struct super_block *sb;
David Howells08e0e7c2007-04-26 15:55:03 -0700359 struct afs_volume *vol;
David Howells00d3b7a2007-04-26 15:57:07 -0700360 struct key *key;
Miklos Szeredi969729d2008-02-08 04:21:37 -0800361 char *new_opts = kstrdup(options, GFP_KERNEL);
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
David Howells00d3b7a2007-04-26 15:57:07 -0700368 /* parse the options and device name */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (options) {
David Howells00d3b7a2007-04-26 15:57:07 -0700370 ret = afs_parse_options(&params, options, &dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (ret < 0)
372 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
David Howells00d3b7a2007-04-26 15:57:07 -0700375 ret = afs_parse_device_name(&params, dev_name);
376 if (ret < 0)
377 goto error;
378
379 /* try and do the mount securely */
380 key = afs_request_key(params.cell);
381 if (IS_ERR(key)) {
382 _leave(" = %ld [key]", PTR_ERR(key));
383 ret = PTR_ERR(key);
384 goto error;
385 }
386 params.key = key;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* parse the device name */
David Howells00d3b7a2007-04-26 15:57:07 -0700389 vol = afs_volume_lookup(&params);
David Howells08e0e7c2007-04-26 15:55:03 -0700390 if (IS_ERR(vol)) {
391 ret = PTR_ERR(vol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 goto error;
David Howells08e0e7c2007-04-26 15:55:03 -0700393 }
David Howells08e0e7c2007-04-26 15:55:03 -0700394 params.volume = vol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /* allocate a deviceless superblock */
397 sb = sget(fs_type, afs_test_super, set_anon_super, &params);
David Howells08e0e7c2007-04-26 15:55:03 -0700398 if (IS_ERR(sb)) {
399 ret = PTR_ERR(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 goto error;
David Howells08e0e7c2007-04-26 15:55:03 -0700401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
David Howells436058a2007-04-26 15:56:24 -0700403 if (!sb->s_root) {
404 /* initial superblock/root creation */
405 _debug("create");
406 sb->s_flags = flags;
407 ret = afs_fill_super(sb, &params);
408 if (ret < 0) {
Al Viro6f5bbff2009-05-06 01:34:22 -0400409 deactivate_locked_super(sb);
David Howells436058a2007-04-26 15:56:24 -0700410 goto error;
411 }
Al Viro2a32ceb2009-05-08 16:05:57 -0400412 save_mount_options(sb, new_opts);
David Howells436058a2007-04-26 15:56:24 -0700413 sb->s_flags |= MS_ACTIVE;
414 } else {
415 _debug("reuse");
416 ASSERTCMP(sb->s_flags, &, MS_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
David Howells436058a2007-04-26 15:56:24 -0700419 simple_set_mnt(mnt, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 afs_put_volume(params.volume);
David Howells00d3b7a2007-04-26 15:57:07 -0700421 afs_put_cell(params.cell);
Al Viro2a32ceb2009-05-08 16:05:57 -0400422 kfree(new_opts);
David Howells08e0e7c2007-04-26 15:55:03 -0700423 _leave(" = 0 [%p]", sb);
David Howells454e2392006-06-23 02:02:57 -0700424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
David Howellsec268152007-04-26 15:49:28 -0700426error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 afs_put_volume(params.volume);
David Howells00d3b7a2007-04-26 15:57:07 -0700428 afs_put_cell(params.cell);
429 key_put(params.key);
Miklos Szeredi969729d2008-02-08 04:21:37 -0800430 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 _leave(" = %d", ret);
David Howells454e2392006-06-23 02:02:57 -0700432 return ret;
David Howellsec268152007-04-26 15:49:28 -0700433}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435/*
436 * finish the unmounting process on the superblock
437 */
438static void afs_put_super(struct super_block *sb)
439{
440 struct afs_super_info *as = sb->s_fs_info;
441
442 _enter("");
443
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200444 lock_kernel();
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 afs_put_volume(as->volume);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200448 unlock_kernel();
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700451}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*
454 * initialise an inode cache slab element prior to any use
455 */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700456static void afs_i_init_once(void *_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
David Howellsec268152007-04-26 15:49:28 -0700458 struct afs_vnode *vnode = _vnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Christoph Lametera35afb82007-05-16 22:10:57 -0700460 memset(vnode, 0, sizeof(*vnode));
461 inode_init_once(&vnode->vfs_inode);
462 init_waitqueue_head(&vnode->update_waitq);
463 mutex_init(&vnode->permits_lock);
464 mutex_init(&vnode->validate_lock);
465 spin_lock_init(&vnode->writeback_lock);
466 spin_lock_init(&vnode->lock);
467 INIT_LIST_HEAD(&vnode->writebacks);
David Howellse8d6c552007-07-15 23:40:12 -0700468 INIT_LIST_HEAD(&vnode->pending_locks);
469 INIT_LIST_HEAD(&vnode->granted_locks);
470 INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
Christoph Lametera35afb82007-05-16 22:10:57 -0700471 INIT_WORK(&vnode->cb_broken_work, afs_broken_callback_work);
David Howellsec268152007-04-26 15:49:28 -0700472}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*
475 * allocate an AFS inode struct from our slab cache
476 */
477static struct inode *afs_alloc_inode(struct super_block *sb)
478{
479 struct afs_vnode *vnode;
480
David Howellsec268152007-04-26 15:49:28 -0700481 vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (!vnode)
483 return NULL;
484
485 atomic_inc(&afs_count_active_inodes);
486
487 memset(&vnode->fid, 0, sizeof(vnode->fid));
488 memset(&vnode->status, 0, sizeof(vnode->status));
489
490 vnode->volume = NULL;
491 vnode->update_cnt = 0;
David Howells260a9802007-04-26 15:59:35 -0700492 vnode->flags = 1 << AFS_VNODE_UNSET;
David Howells08e0e7c2007-04-26 15:55:03 -0700493 vnode->cb_promised = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
David Howells0f300ca2007-05-10 22:22:20 -0700495 _leave(" = %p", &vnode->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return &vnode->vfs_inode;
David Howellsec268152007-04-26 15:49:28 -0700497}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/*
500 * destroy an AFS inode struct
501 */
502static void afs_destroy_inode(struct inode *inode)
503{
David Howells08e0e7c2007-04-26 15:55:03 -0700504 struct afs_vnode *vnode = AFS_FS_I(inode);
505
David Howells0f300ca2007-05-10 22:22:20 -0700506 _enter("%p{%x:%u}", inode, vnode->fid.vid, vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
David Howells08e0e7c2007-04-26 15:55:03 -0700508 _debug("DESTROY INODE %p", inode);
509
510 ASSERTCMP(vnode->server, ==, NULL);
511
512 kmem_cache_free(afs_inode_cachep, vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 atomic_dec(&afs_count_active_inodes);
David Howellsec268152007-04-26 15:49:28 -0700514}
David Howells45222b92007-05-10 22:22:20 -0700515
516/*
517 * return information about an AFS volume
518 */
519static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
520{
521 struct afs_volume_status vs;
522 struct afs_vnode *vnode = AFS_FS_I(dentry->d_inode);
523 struct key *key;
524 int ret;
525
526 key = afs_request_key(vnode->volume->cell);
527 if (IS_ERR(key))
528 return PTR_ERR(key);
529
530 ret = afs_vnode_get_volume_status(vnode, key, &vs);
531 key_put(key);
532 if (ret < 0) {
533 _leave(" = %d", ret);
534 return ret;
535 }
536
537 buf->f_type = dentry->d_sb->s_magic;
538 buf->f_bsize = AFS_BLOCK_SIZE;
539 buf->f_namelen = AFSNAMEMAX - 1;
540
541 if (vs.max_quota == 0)
542 buf->f_blocks = vs.part_max_blocks;
543 else
544 buf->f_blocks = vs.max_quota;
545 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use;
546 return 0;
547}