ocfs2: kobject/kset foobar
[linux-2.6/x86.git] / fs / afs / super.c
blobd24be334b6089c592068634de7f613d8f2114f27
1 /* AFS superblock handling
3 * Copyright (c) 2002, 2007 Red Hat, Inc. All rights reserved.
5 * This software may be freely redistributed under the terms of the
6 * GNU General Public License.
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.
12 * Authors: David Howells <dhowells@redhat.com>
13 * David Woodhouse <dwmw2@redhat.com>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/slab.h>
21 #include <linux/fs.h>
22 #include <linux/pagemap.h>
23 #include <linux/parser.h>
24 #include "internal.h"
26 #define AFS_FS_MAGIC 0x6B414653 /* 'kAFS' */
28 static void afs_i_init_once(void *foo, struct kmem_cache *cachep,
29 unsigned long flags);
31 static int afs_get_sb(struct file_system_type *fs_type,
32 int flags, const char *dev_name,
33 void *data, struct vfsmount *mnt);
35 static struct inode *afs_alloc_inode(struct super_block *sb);
37 static void afs_put_super(struct super_block *sb);
39 static void afs_destroy_inode(struct inode *inode);
41 struct file_system_type afs_fs_type = {
42 .owner = THIS_MODULE,
43 .name = "afs",
44 .get_sb = afs_get_sb,
45 .kill_sb = kill_anon_super,
46 .fs_flags = 0,
49 static const struct super_operations afs_super_ops = {
50 .statfs = simple_statfs,
51 .alloc_inode = afs_alloc_inode,
52 .drop_inode = generic_delete_inode,
53 .write_inode = afs_write_inode,
54 .destroy_inode = afs_destroy_inode,
55 .clear_inode = afs_clear_inode,
56 .umount_begin = afs_umount_begin,
57 .put_super = afs_put_super,
60 static struct kmem_cache *afs_inode_cachep;
61 static atomic_t afs_count_active_inodes;
63 enum {
64 afs_no_opt,
65 afs_opt_cell,
66 afs_opt_rwpath,
67 afs_opt_vol,
70 static match_table_t afs_options_list = {
71 { afs_opt_cell, "cell=%s" },
72 { afs_opt_rwpath, "rwpath" },
73 { afs_opt_vol, "vol=%s" },
74 { afs_no_opt, NULL },
78 * initialise the filesystem
80 int __init afs_fs_init(void)
82 int ret;
84 _enter("");
86 /* create ourselves an inode cache */
87 atomic_set(&afs_count_active_inodes, 0);
89 ret = -ENOMEM;
90 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
91 sizeof(struct afs_vnode),
93 SLAB_HWCACHE_ALIGN,
94 afs_i_init_once,
95 NULL);
96 if (!afs_inode_cachep) {
97 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
98 return ret;
101 /* now export our filesystem to lesser mortals */
102 ret = register_filesystem(&afs_fs_type);
103 if (ret < 0) {
104 kmem_cache_destroy(afs_inode_cachep);
105 _leave(" = %d", ret);
106 return ret;
109 _leave(" = 0");
110 return 0;
114 * clean up the filesystem
116 void __exit afs_fs_exit(void)
118 _enter("");
120 afs_mntpt_kill_timer();
121 unregister_filesystem(&afs_fs_type);
123 if (atomic_read(&afs_count_active_inodes) != 0) {
124 printk("kAFS: %d active inode objects still present\n",
125 atomic_read(&afs_count_active_inodes));
126 BUG();
129 kmem_cache_destroy(afs_inode_cachep);
130 _leave("");
134 * parse the mount options
135 * - this function has been shamelessly adapted from the ext3 fs which
136 * shamelessly adapted it from the msdos fs
138 static int afs_parse_options(struct afs_mount_params *params,
139 char *options, const char **devname)
141 struct afs_cell *cell;
142 substring_t args[MAX_OPT_ARGS];
143 char *p;
144 int token;
146 _enter("%s", options);
148 options[PAGE_SIZE - 1] = 0;
150 while ((p = strsep(&options, ","))) {
151 if (!*p)
152 continue;
154 token = match_token(p, afs_options_list, args);
155 switch (token) {
156 case afs_opt_cell:
157 cell = afs_cell_lookup(args[0].from,
158 args[0].to - args[0].from);
159 if (IS_ERR(cell))
160 return PTR_ERR(cell);
161 afs_put_cell(params->cell);
162 params->cell = cell;
163 break;
165 case afs_opt_rwpath:
166 params->rwpath = 1;
167 break;
169 case afs_opt_vol:
170 *devname = args[0].from;
171 break;
173 default:
174 printk(KERN_ERR "kAFS:"
175 " Unknown or invalid mount option: '%s'\n", p);
176 return -EINVAL;
180 _leave(" = 0");
181 return 0;
185 * parse a device name to get cell name, volume name, volume type and R/W
186 * selector
187 * - this can be one of the following:
188 * "%[cell:]volume[.]" R/W volume
189 * "#[cell:]volume[.]" R/O or R/W volume (rwpath=0),
190 * or R/W (rwpath=1) volume
191 * "%[cell:]volume.readonly" R/O volume
192 * "#[cell:]volume.readonly" R/O volume
193 * "%[cell:]volume.backup" Backup volume
194 * "#[cell:]volume.backup" Backup volume
196 static int afs_parse_device_name(struct afs_mount_params *params,
197 const char *name)
199 struct afs_cell *cell;
200 const char *cellname, *suffix;
201 int cellnamesz;
203 _enter(",%s", name);
205 if (!name) {
206 printk(KERN_ERR "kAFS: no volume name specified\n");
207 return -EINVAL;
210 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
211 printk(KERN_ERR "kAFS: unparsable volume name\n");
212 return -EINVAL;
215 /* determine the type of volume we're looking for */
216 params->type = AFSVL_ROVOL;
217 params->force = false;
218 if (params->rwpath || name[0] == '%') {
219 params->type = AFSVL_RWVOL;
220 params->force = true;
222 name++;
224 /* split the cell name out if there is one */
225 params->volname = strchr(name, ':');
226 if (params->volname) {
227 cellname = name;
228 cellnamesz = params->volname - name;
229 params->volname++;
230 } else {
231 params->volname = name;
232 cellname = NULL;
233 cellnamesz = 0;
236 /* the volume type is further affected by a possible suffix */
237 suffix = strrchr(params->volname, '.');
238 if (suffix) {
239 if (strcmp(suffix, ".readonly") == 0) {
240 params->type = AFSVL_ROVOL;
241 params->force = true;
242 } else if (strcmp(suffix, ".backup") == 0) {
243 params->type = AFSVL_BACKVOL;
244 params->force = true;
245 } else if (suffix[1] == 0) {
246 } else {
247 suffix = NULL;
251 params->volnamesz = suffix ?
252 suffix - params->volname : strlen(params->volname);
254 _debug("cell %*.*s [%p]",
255 cellnamesz, cellnamesz, cellname ?: "", params->cell);
257 /* lookup the cell record */
258 if (cellname || !params->cell) {
259 cell = afs_cell_lookup(cellname, cellnamesz);
260 if (IS_ERR(cell)) {
261 printk(KERN_ERR "kAFS: unable to lookup cell '%s'\n",
262 cellname ?: "");
263 return PTR_ERR(cell);
265 afs_put_cell(params->cell);
266 params->cell = cell;
269 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
270 params->cell->name, params->cell,
271 params->volnamesz, params->volnamesz, params->volname,
272 suffix ?: "-", params->type, params->force ? " FORCE" : "");
274 return 0;
278 * check a superblock to see if it's the one we're looking for
280 static int afs_test_super(struct super_block *sb, void *data)
282 struct afs_mount_params *params = data;
283 struct afs_super_info *as = sb->s_fs_info;
285 return as->volume == params->volume;
289 * fill in the superblock
291 static int afs_fill_super(struct super_block *sb, void *data)
293 struct afs_mount_params *params = data;
294 struct afs_super_info *as = NULL;
295 struct afs_fid fid;
296 struct dentry *root = NULL;
297 struct inode *inode = NULL;
298 int ret;
300 _enter("");
302 /* allocate a superblock info record */
303 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
304 if (!as) {
305 _leave(" = -ENOMEM");
306 return -ENOMEM;
309 afs_get_volume(params->volume);
310 as->volume = params->volume;
312 /* fill in the superblock */
313 sb->s_blocksize = PAGE_CACHE_SIZE;
314 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
315 sb->s_magic = AFS_FS_MAGIC;
316 sb->s_op = &afs_super_ops;
317 sb->s_fs_info = as;
319 /* allocate the root inode and dentry */
320 fid.vid = as->volume->vid;
321 fid.vnode = 1;
322 fid.unique = 1;
323 inode = afs_iget(sb, params->key, &fid, NULL, NULL);
324 if (IS_ERR(inode))
325 goto error_inode;
327 ret = -ENOMEM;
328 root = d_alloc_root(inode);
329 if (!root)
330 goto error;
332 sb->s_root = root;
334 _leave(" = 0");
335 return 0;
337 error_inode:
338 ret = PTR_ERR(inode);
339 inode = NULL;
340 error:
341 iput(inode);
342 afs_put_volume(as->volume);
343 kfree(as);
345 sb->s_fs_info = NULL;
347 _leave(" = %d", ret);
348 return ret;
352 * get an AFS superblock
354 static int afs_get_sb(struct file_system_type *fs_type,
355 int flags,
356 const char *dev_name,
357 void *options,
358 struct vfsmount *mnt)
360 struct afs_mount_params params;
361 struct super_block *sb;
362 struct afs_volume *vol;
363 struct key *key;
364 int ret;
366 _enter(",,%s,%p", dev_name, options);
368 memset(&params, 0, sizeof(params));
370 /* parse the options and device name */
371 if (options) {
372 ret = afs_parse_options(&params, options, &dev_name);
373 if (ret < 0)
374 goto error;
377 ret = afs_parse_device_name(&params, dev_name);
378 if (ret < 0)
379 goto error;
381 /* try and do the mount securely */
382 key = afs_request_key(params.cell);
383 if (IS_ERR(key)) {
384 _leave(" = %ld [key]", PTR_ERR(key));
385 ret = PTR_ERR(key);
386 goto error;
388 params.key = key;
390 /* parse the device name */
391 vol = afs_volume_lookup(&params);
392 if (IS_ERR(vol)) {
393 ret = PTR_ERR(vol);
394 goto error;
396 params.volume = vol;
398 /* allocate a deviceless superblock */
399 sb = sget(fs_type, afs_test_super, set_anon_super, &params);
400 if (IS_ERR(sb)) {
401 ret = PTR_ERR(sb);
402 goto error;
405 if (!sb->s_root) {
406 /* initial superblock/root creation */
407 _debug("create");
408 sb->s_flags = flags;
409 ret = afs_fill_super(sb, &params);
410 if (ret < 0) {
411 up_write(&sb->s_umount);
412 deactivate_super(sb);
413 goto error;
415 sb->s_flags |= MS_ACTIVE;
416 } else {
417 _debug("reuse");
418 ASSERTCMP(sb->s_flags, &, MS_ACTIVE);
421 simple_set_mnt(mnt, sb);
422 afs_put_volume(params.volume);
423 afs_put_cell(params.cell);
424 _leave(" = 0 [%p]", sb);
425 return 0;
427 error:
428 afs_put_volume(params.volume);
429 afs_put_cell(params.cell);
430 key_put(params.key);
431 _leave(" = %d", ret);
432 return ret;
436 * finish the unmounting process on the superblock
438 static void afs_put_super(struct super_block *sb)
440 struct afs_super_info *as = sb->s_fs_info;
442 _enter("");
444 afs_put_volume(as->volume);
446 _leave("");
450 * initialise an inode cache slab element prior to any use
452 static void afs_i_init_once(void *_vnode, struct kmem_cache *cachep,
453 unsigned long flags)
455 struct afs_vnode *vnode = _vnode;
457 if (flags & SLAB_CTOR_CONSTRUCTOR) {
458 memset(vnode, 0, sizeof(*vnode));
459 inode_init_once(&vnode->vfs_inode);
460 init_waitqueue_head(&vnode->update_waitq);
461 mutex_init(&vnode->permits_lock);
462 mutex_init(&vnode->validate_lock);
463 spin_lock_init(&vnode->writeback_lock);
464 spin_lock_init(&vnode->lock);
465 INIT_LIST_HEAD(&vnode->writebacks);
466 INIT_WORK(&vnode->cb_broken_work, afs_broken_callback_work);
471 * allocate an AFS inode struct from our slab cache
473 static struct inode *afs_alloc_inode(struct super_block *sb)
475 struct afs_vnode *vnode;
477 vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
478 if (!vnode)
479 return NULL;
481 atomic_inc(&afs_count_active_inodes);
483 memset(&vnode->fid, 0, sizeof(vnode->fid));
484 memset(&vnode->status, 0, sizeof(vnode->status));
486 vnode->volume = NULL;
487 vnode->update_cnt = 0;
488 vnode->flags = 1 << AFS_VNODE_UNSET;
489 vnode->cb_promised = false;
491 return &vnode->vfs_inode;
495 * destroy an AFS inode struct
497 static void afs_destroy_inode(struct inode *inode)
499 struct afs_vnode *vnode = AFS_FS_I(inode);
501 _enter("{%lu}", inode->i_ino);
503 _debug("DESTROY INODE %p", inode);
505 ASSERTCMP(vnode->server, ==, NULL);
507 kmem_cache_free(afs_inode_cachep, vnode);
508 atomic_dec(&afs_count_active_inodes);