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@infradead.org>
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/mount.h>
20 #include <linux/init.h>
21 #include <linux/slab.h>
23 #include <linux/pagemap.h>
24 #include <linux/parser.h>
25 #include <linux/statfs.h>
26 #include <linux/sched.h>
29 #define AFS_FS_MAGIC 0x6B414653 /* 'kAFS' */
31 static void afs_i_init_once(void *foo
);
32 static struct dentry
*afs_mount(struct file_system_type
*fs_type
,
33 int flags
, const char *dev_name
, void *data
);
34 static struct inode
*afs_alloc_inode(struct super_block
*sb
);
35 static void afs_put_super(struct super_block
*sb
);
36 static void afs_destroy_inode(struct inode
*inode
);
37 static int afs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
);
39 struct file_system_type afs_fs_type
= {
43 .kill_sb
= kill_anon_super
,
47 static const struct super_operations afs_super_ops
= {
49 .alloc_inode
= afs_alloc_inode
,
50 .drop_inode
= afs_drop_inode
,
51 .destroy_inode
= afs_destroy_inode
,
52 .evict_inode
= afs_evict_inode
,
53 .put_super
= afs_put_super
,
54 .show_options
= generic_show_options
,
57 static struct kmem_cache
*afs_inode_cachep
;
58 static atomic_t afs_count_active_inodes
;
68 static const match_table_t afs_options_list
= {
69 { afs_opt_cell
, "cell=%s" },
70 { afs_opt_rwpath
, "rwpath" },
71 { afs_opt_vol
, "vol=%s" },
72 { afs_opt_autocell
, "autocell" },
77 * initialise the filesystem
79 int __init
afs_fs_init(void)
85 /* create ourselves an inode cache */
86 atomic_set(&afs_count_active_inodes
, 0);
89 afs_inode_cachep
= kmem_cache_create("afs_inode_cache",
90 sizeof(struct afs_vnode
),
94 if (!afs_inode_cachep
) {
95 printk(KERN_NOTICE
"kAFS: Failed to allocate inode cache\n");
99 /* now export our filesystem to lesser mortals */
100 ret
= register_filesystem(&afs_fs_type
);
102 kmem_cache_destroy(afs_inode_cachep
);
103 _leave(" = %d", ret
);
112 * clean up the filesystem
114 void __exit
afs_fs_exit(void)
118 afs_mntpt_kill_timer();
119 unregister_filesystem(&afs_fs_type
);
121 if (atomic_read(&afs_count_active_inodes
) != 0) {
122 printk("kAFS: %d active inode objects still present\n",
123 atomic_read(&afs_count_active_inodes
));
127 kmem_cache_destroy(afs_inode_cachep
);
132 * parse the mount options
133 * - this function has been shamelessly adapted from the ext3 fs which
134 * shamelessly adapted it from the msdos fs
136 static int afs_parse_options(struct afs_mount_params
*params
,
137 char *options
, const char **devname
)
139 struct afs_cell
*cell
;
140 substring_t args
[MAX_OPT_ARGS
];
144 _enter("%s", options
);
146 options
[PAGE_SIZE
- 1] = 0;
148 while ((p
= strsep(&options
, ","))) {
152 token
= match_token(p
, afs_options_list
, args
);
155 cell
= afs_cell_lookup(args
[0].from
,
156 args
[0].to
- args
[0].from
,
159 return PTR_ERR(cell
);
160 afs_put_cell(params
->cell
);
169 *devname
= args
[0].from
;
172 case afs_opt_autocell
:
173 params
->autocell
= 1;
177 printk(KERN_ERR
"kAFS:"
178 " Unknown or invalid mount option: '%s'\n", p
);
188 * parse a device name to get cell name, volume name, volume type and R/W
190 * - this can be one of the following:
191 * "%[cell:]volume[.]" R/W volume
192 * "#[cell:]volume[.]" R/O or R/W volume (rwpath=0),
193 * or R/W (rwpath=1) volume
194 * "%[cell:]volume.readonly" R/O volume
195 * "#[cell:]volume.readonly" R/O volume
196 * "%[cell:]volume.backup" Backup volume
197 * "#[cell:]volume.backup" Backup volume
199 static int afs_parse_device_name(struct afs_mount_params
*params
,
202 struct afs_cell
*cell
;
203 const char *cellname
, *suffix
;
209 printk(KERN_ERR
"kAFS: no volume name specified\n");
213 if ((name
[0] != '%' && name
[0] != '#') || !name
[1]) {
214 printk(KERN_ERR
"kAFS: unparsable volume name\n");
218 /* determine the type of volume we're looking for */
219 params
->type
= AFSVL_ROVOL
;
220 params
->force
= false;
221 if (params
->rwpath
|| name
[0] == '%') {
222 params
->type
= AFSVL_RWVOL
;
223 params
->force
= true;
227 /* split the cell name out if there is one */
228 params
->volname
= strchr(name
, ':');
229 if (params
->volname
) {
231 cellnamesz
= params
->volname
- name
;
234 params
->volname
= name
;
239 /* the volume type is further affected by a possible suffix */
240 suffix
= strrchr(params
->volname
, '.');
242 if (strcmp(suffix
, ".readonly") == 0) {
243 params
->type
= AFSVL_ROVOL
;
244 params
->force
= true;
245 } else if (strcmp(suffix
, ".backup") == 0) {
246 params
->type
= AFSVL_BACKVOL
;
247 params
->force
= true;
248 } else if (suffix
[1] == 0) {
254 params
->volnamesz
= suffix
?
255 suffix
- params
->volname
: strlen(params
->volname
);
257 _debug("cell %*.*s [%p]",
258 cellnamesz
, cellnamesz
, cellname
?: "", params
->cell
);
260 /* lookup the cell record */
261 if (cellname
|| !params
->cell
) {
262 cell
= afs_cell_lookup(cellname
, cellnamesz
, true);
264 printk(KERN_ERR
"kAFS: unable to lookup cell '%*.*s'\n",
265 cellnamesz
, cellnamesz
, cellname
?: "");
266 return PTR_ERR(cell
);
268 afs_put_cell(params
->cell
);
272 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
273 params
->cell
->name
, params
->cell
,
274 params
->volnamesz
, params
->volnamesz
, params
->volname
,
275 suffix
?: "-", params
->type
, params
->force
? " FORCE" : "");
281 * check a superblock to see if it's the one we're looking for
283 static int afs_test_super(struct super_block
*sb
, void *data
)
285 struct afs_mount_params
*params
= data
;
286 struct afs_super_info
*as
= sb
->s_fs_info
;
288 return as
->volume
== params
->volume
;
292 * fill in the superblock
294 static int afs_fill_super(struct super_block
*sb
, void *data
)
296 struct afs_mount_params
*params
= data
;
297 struct afs_super_info
*as
= NULL
;
299 struct dentry
*root
= NULL
;
300 struct inode
*inode
= NULL
;
305 /* allocate a superblock info record */
306 as
= kzalloc(sizeof(struct afs_super_info
), GFP_KERNEL
);
308 _leave(" = -ENOMEM");
312 afs_get_volume(params
->volume
);
313 as
->volume
= params
->volume
;
315 /* fill in the superblock */
316 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
317 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
318 sb
->s_magic
= AFS_FS_MAGIC
;
319 sb
->s_op
= &afs_super_ops
;
321 sb
->s_bdi
= &as
->volume
->bdi
;
323 /* allocate the root inode and dentry */
324 fid
.vid
= as
->volume
->vid
;
327 inode
= afs_iget(sb
, params
->key
, &fid
, NULL
, NULL
);
331 if (params
->autocell
)
332 set_bit(AFS_VNODE_AUTOCELL
, &AFS_FS_I(inode
)->flags
);
335 root
= d_alloc_root(inode
);
345 ret
= PTR_ERR(inode
);
349 afs_put_volume(as
->volume
);
352 sb
->s_fs_info
= NULL
;
354 _leave(" = %d", ret
);
359 * get an AFS superblock
361 static struct dentry
*afs_mount(struct file_system_type
*fs_type
,
362 int flags
, const char *dev_name
, void *options
)
364 struct afs_mount_params params
;
365 struct super_block
*sb
;
366 struct afs_volume
*vol
;
368 char *new_opts
= kstrdup(options
, GFP_KERNEL
);
371 _enter(",,%s,%p", dev_name
, options
);
373 memset(¶ms
, 0, sizeof(params
));
375 /* parse the options and device name */
377 ret
= afs_parse_options(¶ms
, options
, &dev_name
);
382 ret
= afs_parse_device_name(¶ms
, dev_name
);
386 /* try and do the mount securely */
387 key
= afs_request_key(params
.cell
);
389 _leave(" = %ld [key]", PTR_ERR(key
));
395 /* parse the device name */
396 vol
= afs_volume_lookup(¶ms
);
403 /* allocate a deviceless superblock */
404 sb
= sget(fs_type
, afs_test_super
, set_anon_super
, ¶ms
);
411 /* initial superblock/root creation */
414 ret
= afs_fill_super(sb
, ¶ms
);
416 deactivate_locked_super(sb
);
419 save_mount_options(sb
, new_opts
);
420 sb
->s_flags
|= MS_ACTIVE
;
423 ASSERTCMP(sb
->s_flags
, &, MS_ACTIVE
);
426 afs_put_volume(params
.volume
);
427 afs_put_cell(params
.cell
);
429 _leave(" = 0 [%p]", sb
);
430 return dget(sb
->s_root
);
433 afs_put_volume(params
.volume
);
434 afs_put_cell(params
.cell
);
437 _leave(" = %d", ret
);
442 * finish the unmounting process on the superblock
444 static void afs_put_super(struct super_block
*sb
)
446 struct afs_super_info
*as
= sb
->s_fs_info
;
450 afs_put_volume(as
->volume
);
456 * initialise an inode cache slab element prior to any use
458 static void afs_i_init_once(void *_vnode
)
460 struct afs_vnode
*vnode
= _vnode
;
462 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
);
470 INIT_LIST_HEAD(&vnode
->pending_locks
);
471 INIT_LIST_HEAD(&vnode
->granted_locks
);
472 INIT_DELAYED_WORK(&vnode
->lock_work
, afs_lock_work
);
473 INIT_WORK(&vnode
->cb_broken_work
, afs_broken_callback_work
);
477 * allocate an AFS inode struct from our slab cache
479 static struct inode
*afs_alloc_inode(struct super_block
*sb
)
481 struct afs_vnode
*vnode
;
483 vnode
= kmem_cache_alloc(afs_inode_cachep
, GFP_KERNEL
);
487 atomic_inc(&afs_count_active_inodes
);
489 memset(&vnode
->fid
, 0, sizeof(vnode
->fid
));
490 memset(&vnode
->status
, 0, sizeof(vnode
->status
));
492 vnode
->volume
= NULL
;
493 vnode
->update_cnt
= 0;
494 vnode
->flags
= 1 << AFS_VNODE_UNSET
;
495 vnode
->cb_promised
= false;
497 _leave(" = %p", &vnode
->vfs_inode
);
498 return &vnode
->vfs_inode
;
502 * destroy an AFS inode struct
504 static void afs_destroy_inode(struct inode
*inode
)
506 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
508 _enter("%p{%x:%u}", inode
, vnode
->fid
.vid
, vnode
->fid
.vnode
);
510 _debug("DESTROY INODE %p", inode
);
512 ASSERTCMP(vnode
->server
, ==, NULL
);
514 kmem_cache_free(afs_inode_cachep
, vnode
);
515 atomic_dec(&afs_count_active_inodes
);
519 * return information about an AFS volume
521 static int afs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
523 struct afs_volume_status vs
;
524 struct afs_vnode
*vnode
= AFS_FS_I(dentry
->d_inode
);
528 key
= afs_request_key(vnode
->volume
->cell
);
532 ret
= afs_vnode_get_volume_status(vnode
, key
, &vs
);
535 _leave(" = %d", ret
);
539 buf
->f_type
= dentry
->d_sb
->s_magic
;
540 buf
->f_bsize
= AFS_BLOCK_SIZE
;
541 buf
->f_namelen
= AFSNAMEMAX
- 1;
543 if (vs
.max_quota
== 0)
544 buf
->f_blocks
= vs
.part_max_blocks
;
546 buf
->f_blocks
= vs
.max_quota
;
547 buf
->f_bavail
= buf
->f_bfree
= buf
->f_blocks
- vs
.blocks_in_use
;