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 void afs_kill_super(struct super_block
*sb
);
35 static struct inode
*afs_alloc_inode(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
= afs_kill_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 .show_options
= generic_show_options
,
56 static struct kmem_cache
*afs_inode_cachep
;
57 static atomic_t afs_count_active_inodes
;
67 static const match_table_t afs_options_list
= {
68 { afs_opt_cell
, "cell=%s" },
69 { afs_opt_rwpath
, "rwpath" },
70 { afs_opt_vol
, "vol=%s" },
71 { afs_opt_autocell
, "autocell" },
76 * initialise the filesystem
78 int __init
afs_fs_init(void)
84 /* create ourselves an inode cache */
85 atomic_set(&afs_count_active_inodes
, 0);
88 afs_inode_cachep
= kmem_cache_create("afs_inode_cache",
89 sizeof(struct afs_vnode
),
93 if (!afs_inode_cachep
) {
94 printk(KERN_NOTICE
"kAFS: Failed to allocate inode cache\n");
98 /* now export our filesystem to lesser mortals */
99 ret
= register_filesystem(&afs_fs_type
);
101 kmem_cache_destroy(afs_inode_cachep
);
102 _leave(" = %d", ret
);
111 * clean up the filesystem
113 void __exit
afs_fs_exit(void)
117 afs_mntpt_kill_timer();
118 unregister_filesystem(&afs_fs_type
);
120 if (atomic_read(&afs_count_active_inodes
) != 0) {
121 printk("kAFS: %d active inode objects still present\n",
122 atomic_read(&afs_count_active_inodes
));
126 kmem_cache_destroy(afs_inode_cachep
);
131 * parse the mount options
132 * - this function has been shamelessly adapted from the ext3 fs which
133 * shamelessly adapted it from the msdos fs
135 static int afs_parse_options(struct afs_mount_params
*params
,
136 char *options
, const char **devname
)
138 struct afs_cell
*cell
;
139 substring_t args
[MAX_OPT_ARGS
];
143 _enter("%s", options
);
145 options
[PAGE_SIZE
- 1] = 0;
147 while ((p
= strsep(&options
, ","))) {
151 token
= match_token(p
, afs_options_list
, args
);
154 cell
= afs_cell_lookup(args
[0].from
,
155 args
[0].to
- args
[0].from
,
158 return PTR_ERR(cell
);
159 afs_put_cell(params
->cell
);
168 *devname
= args
[0].from
;
171 case afs_opt_autocell
:
172 params
->autocell
= 1;
176 printk(KERN_ERR
"kAFS:"
177 " Unknown or invalid mount option: '%s'\n", p
);
187 * parse a device name to get cell name, volume name, volume type and R/W
189 * - this can be one of the following:
190 * "%[cell:]volume[.]" R/W volume
191 * "#[cell:]volume[.]" R/O or R/W volume (rwpath=0),
192 * or R/W (rwpath=1) volume
193 * "%[cell:]volume.readonly" R/O volume
194 * "#[cell:]volume.readonly" R/O volume
195 * "%[cell:]volume.backup" Backup volume
196 * "#[cell:]volume.backup" Backup volume
198 static int afs_parse_device_name(struct afs_mount_params
*params
,
201 struct afs_cell
*cell
;
202 const char *cellname
, *suffix
;
208 printk(KERN_ERR
"kAFS: no volume name specified\n");
212 if ((name
[0] != '%' && name
[0] != '#') || !name
[1]) {
213 printk(KERN_ERR
"kAFS: unparsable volume name\n");
217 /* determine the type of volume we're looking for */
218 params
->type
= AFSVL_ROVOL
;
219 params
->force
= false;
220 if (params
->rwpath
|| name
[0] == '%') {
221 params
->type
= AFSVL_RWVOL
;
222 params
->force
= true;
226 /* split the cell name out if there is one */
227 params
->volname
= strchr(name
, ':');
228 if (params
->volname
) {
230 cellnamesz
= params
->volname
- name
;
233 params
->volname
= name
;
238 /* the volume type is further affected by a possible suffix */
239 suffix
= strrchr(params
->volname
, '.');
241 if (strcmp(suffix
, ".readonly") == 0) {
242 params
->type
= AFSVL_ROVOL
;
243 params
->force
= true;
244 } else if (strcmp(suffix
, ".backup") == 0) {
245 params
->type
= AFSVL_BACKVOL
;
246 params
->force
= true;
247 } else if (suffix
[1] == 0) {
253 params
->volnamesz
= suffix
?
254 suffix
- params
->volname
: strlen(params
->volname
);
256 _debug("cell %*.*s [%p]",
257 cellnamesz
, cellnamesz
, cellname
?: "", params
->cell
);
259 /* lookup the cell record */
260 if (cellname
|| !params
->cell
) {
261 cell
= afs_cell_lookup(cellname
, cellnamesz
, true);
263 printk(KERN_ERR
"kAFS: unable to lookup cell '%*.*s'\n",
264 cellnamesz
, cellnamesz
, cellname
?: "");
265 return PTR_ERR(cell
);
267 afs_put_cell(params
->cell
);
271 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
272 params
->cell
->name
, params
->cell
,
273 params
->volnamesz
, params
->volnamesz
, params
->volname
,
274 suffix
?: "-", params
->type
, params
->force
? " FORCE" : "");
280 * check a superblock to see if it's the one we're looking for
282 static int afs_test_super(struct super_block
*sb
, void *data
)
284 struct afs_super_info
*as1
= data
;
285 struct afs_super_info
*as
= sb
->s_fs_info
;
287 return as
->volume
== as1
->volume
;
290 static int afs_set_super(struct super_block
*sb
, void *data
)
292 sb
->s_fs_info
= data
;
293 return set_anon_super(sb
, NULL
);
297 * fill in the superblock
299 static int afs_fill_super(struct super_block
*sb
,
300 struct afs_mount_params
*params
)
302 struct afs_super_info
*as
= sb
->s_fs_info
;
304 struct dentry
*root
= NULL
;
305 struct inode
*inode
= NULL
;
310 /* fill in the superblock */
311 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
312 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
313 sb
->s_magic
= AFS_FS_MAGIC
;
314 sb
->s_op
= &afs_super_ops
;
315 sb
->s_bdi
= &as
->volume
->bdi
;
316 strlcpy(sb
->s_id
, as
->volume
->vlocation
->vldb
.name
, sizeof(sb
->s_id
));
318 /* allocate the root inode and dentry */
319 fid
.vid
= as
->volume
->vid
;
322 inode
= afs_iget(sb
, params
->key
, &fid
, NULL
, NULL
);
324 return PTR_ERR(inode
);
326 if (params
->autocell
)
327 set_bit(AFS_VNODE_AUTOCELL
, &AFS_FS_I(inode
)->flags
);
330 root
= d_alloc_root(inode
);
334 sb
->s_d_op
= &afs_fs_dentry_operations
;
342 _leave(" = %d", ret
);
347 * get an AFS superblock
349 static struct dentry
*afs_mount(struct file_system_type
*fs_type
,
350 int flags
, const char *dev_name
, void *options
)
352 struct afs_mount_params params
;
353 struct super_block
*sb
;
354 struct afs_volume
*vol
;
356 char *new_opts
= kstrdup(options
, GFP_KERNEL
);
357 struct afs_super_info
*as
;
360 _enter(",,%s,%p", dev_name
, options
);
362 memset(¶ms
, 0, sizeof(params
));
364 /* parse the options and device name */
366 ret
= afs_parse_options(¶ms
, options
, &dev_name
);
371 ret
= afs_parse_device_name(¶ms
, dev_name
);
375 /* try and do the mount securely */
376 key
= afs_request_key(params
.cell
);
378 _leave(" = %ld [key]", PTR_ERR(key
));
384 /* parse the device name */
385 vol
= afs_volume_lookup(¶ms
);
391 /* allocate a superblock info record */
392 as
= kzalloc(sizeof(struct afs_super_info
), GFP_KERNEL
);
400 /* allocate a deviceless superblock */
401 sb
= sget(fs_type
, afs_test_super
, afs_set_super
, as
);
410 /* initial superblock/root creation */
413 ret
= afs_fill_super(sb
, ¶ms
);
415 deactivate_locked_super(sb
);
418 save_mount_options(sb
, new_opts
);
419 sb
->s_flags
|= MS_ACTIVE
;
422 ASSERTCMP(sb
->s_flags
, &, MS_ACTIVE
);
427 afs_put_cell(params
.cell
);
429 _leave(" = 0 [%p]", sb
);
430 return dget(sb
->s_root
);
433 afs_put_cell(params
.cell
);
436 _leave(" = %d", ret
);
440 static void afs_kill_super(struct super_block
*sb
)
442 struct afs_super_info
*as
= sb
->s_fs_info
;
444 afs_put_volume(as
->volume
);
449 * initialise an inode cache slab element prior to any use
451 static void afs_i_init_once(void *_vnode
)
453 struct afs_vnode
*vnode
= _vnode
;
455 memset(vnode
, 0, sizeof(*vnode
));
456 inode_init_once(&vnode
->vfs_inode
);
457 init_waitqueue_head(&vnode
->update_waitq
);
458 mutex_init(&vnode
->permits_lock
);
459 mutex_init(&vnode
->validate_lock
);
460 spin_lock_init(&vnode
->writeback_lock
);
461 spin_lock_init(&vnode
->lock
);
462 INIT_LIST_HEAD(&vnode
->writebacks
);
463 INIT_LIST_HEAD(&vnode
->pending_locks
);
464 INIT_LIST_HEAD(&vnode
->granted_locks
);
465 INIT_DELAYED_WORK(&vnode
->lock_work
, afs_lock_work
);
466 INIT_WORK(&vnode
->cb_broken_work
, afs_broken_callback_work
);
470 * allocate an AFS inode struct from our slab cache
472 static struct inode
*afs_alloc_inode(struct super_block
*sb
)
474 struct afs_vnode
*vnode
;
476 vnode
= kmem_cache_alloc(afs_inode_cachep
, GFP_KERNEL
);
480 atomic_inc(&afs_count_active_inodes
);
482 memset(&vnode
->fid
, 0, sizeof(vnode
->fid
));
483 memset(&vnode
->status
, 0, sizeof(vnode
->status
));
485 vnode
->volume
= NULL
;
486 vnode
->update_cnt
= 0;
487 vnode
->flags
= 1 << AFS_VNODE_UNSET
;
488 vnode
->cb_promised
= false;
490 _leave(" = %p", &vnode
->vfs_inode
);
491 return &vnode
->vfs_inode
;
494 static void afs_i_callback(struct rcu_head
*head
)
496 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
497 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
498 kmem_cache_free(afs_inode_cachep
, vnode
);
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 call_rcu(&inode
->i_rcu
, afs_i_callback
);
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
;