super.c 11.0 KB
Newer Older
D
David Howells 已提交
1 2
/* AFS superblock handling
 *
3
 * Copyright (c) 2002, 2007 Red Hat, Inc. All rights reserved.
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12
 *
 * This software may be freely redistributed under the terms of the
 * GNU General Public License.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * Authors: David Howells <dhowells@redhat.com>
D
David Howells 已提交
13
 *          David Woodhouse <dwmw2@redhat.com>
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/pagemap.h>
23
#include <linux/parser.h>
L
Linus Torvalds 已提交
24 25 26 27
#include "internal.h"

#define AFS_FS_MAGIC 0x6B414653 /* 'kAFS' */

28
static void afs_i_init_once(void *foo, struct kmem_cache *cachep,
L
Linus Torvalds 已提交
29 30
			    unsigned long flags);

31 32 33
static int afs_get_sb(struct file_system_type *fs_type,
		      int flags, const char *dev_name,
		      void *data, struct vfsmount *mnt);
L
Linus Torvalds 已提交
34 35 36 37 38 39 40

static struct inode *afs_alloc_inode(struct super_block *sb);

static void afs_put_super(struct super_block *sb);

static void afs_destroy_inode(struct inode *inode);

41
struct file_system_type afs_fs_type = {
L
Linus Torvalds 已提交
42 43 44 45
	.owner		= THIS_MODULE,
	.name		= "afs",
	.get_sb		= afs_get_sb,
	.kill_sb	= kill_anon_super,
46
	.fs_flags	= 0,
L
Linus Torvalds 已提交
47 48
};

49
static const struct super_operations afs_super_ops = {
L
Linus Torvalds 已提交
50 51 52
	.statfs		= simple_statfs,
	.alloc_inode	= afs_alloc_inode,
	.drop_inode	= generic_delete_inode,
53
	.write_inode	= afs_write_inode,
L
Linus Torvalds 已提交
54 55
	.destroy_inode	= afs_destroy_inode,
	.clear_inode	= afs_clear_inode,
56
	.umount_begin	= afs_umount_begin,
L
Linus Torvalds 已提交
57 58 59
	.put_super	= afs_put_super,
};

60
static struct kmem_cache *afs_inode_cachep;
L
Linus Torvalds 已提交
61 62
static atomic_t afs_count_active_inodes;

63 64 65 66 67 68 69
enum {
	afs_no_opt,
	afs_opt_cell,
	afs_opt_rwpath,
	afs_opt_vol,
};

70
static match_table_t afs_options_list = {
71 72 73 74 75 76
	{ afs_opt_cell,		"cell=%s"	},
	{ afs_opt_rwpath,	"rwpath"	},
	{ afs_opt_vol,		"vol=%s"	},
	{ afs_no_opt,		NULL		},
};

L
Linus Torvalds 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
/*
 * initialise the filesystem
 */
int __init afs_fs_init(void)
{
	int ret;

	_enter("");

	/* create ourselves an inode cache */
	atomic_set(&afs_count_active_inodes, 0);

	ret = -ENOMEM;
	afs_inode_cachep = kmem_cache_create("afs_inode_cache",
					     sizeof(struct afs_vnode),
					     0,
					     SLAB_HWCACHE_ALIGN,
					     afs_i_init_once,
					     NULL);
	if (!afs_inode_cachep) {
		printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
		return ret;
	}

	/* now export our filesystem to lesser mortals */
	ret = register_filesystem(&afs_fs_type);
	if (ret < 0) {
		kmem_cache_destroy(afs_inode_cachep);
105
		_leave(" = %d", ret);
L
Linus Torvalds 已提交
106 107 108
		return ret;
	}

109
	_leave(" = 0");
L
Linus Torvalds 已提交
110
	return 0;
D
David Howells 已提交
111
}
L
Linus Torvalds 已提交
112 113 114 115 116 117

/*
 * clean up the filesystem
 */
void __exit afs_fs_exit(void)
{
118 119 120
	_enter("");

	afs_mntpt_kill_timer();
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129
	unregister_filesystem(&afs_fs_type);

	if (atomic_read(&afs_count_active_inodes) != 0) {
		printk("kAFS: %d active inode objects still present\n",
		       atomic_read(&afs_count_active_inodes));
		BUG();
	}

	kmem_cache_destroy(afs_inode_cachep);
130
	_leave("");
D
David Howells 已提交
131
}
L
Linus Torvalds 已提交
132 133 134 135 136 137

/*
 * parse the mount options
 * - this function has been shamelessly adapted from the ext3 fs which
 *   shamelessly adapted it from the msdos fs
 */
D
David Howells 已提交
138 139
static int afs_parse_options(struct afs_mount_params *params,
			     char *options, const char **devname)
L
Linus Torvalds 已提交
140
{
141
	struct afs_cell *cell;
142 143 144
	substring_t args[MAX_OPT_ARGS];
	char *p;
	int token;
L
Linus Torvalds 已提交
145 146 147 148 149

	_enter("%s", options);

	options[PAGE_SIZE - 1] = 0;

150 151 152
	while ((p = strsep(&options, ","))) {
		if (!*p)
			continue;
L
Linus Torvalds 已提交
153

154 155 156 157 158
		token = match_token(p, afs_options_list, args);
		switch (token) {
		case afs_opt_cell:
			cell = afs_cell_lookup(args[0].from,
					       args[0].to - args[0].from);
159 160
			if (IS_ERR(cell))
				return PTR_ERR(cell);
D
David Howells 已提交
161 162
			afs_put_cell(params->cell);
			params->cell = cell;
163 164 165 166 167 168 169 170 171 172 173 174 175 176
			break;

		case afs_opt_rwpath:
			params->rwpath = 1;
			break;

		case afs_opt_vol:
			*devname = args[0].from;
			break;

		default:
			printk(KERN_ERR "kAFS:"
			       " Unknown or invalid mount option: '%s'\n", p);
			return -EINVAL;
L
Linus Torvalds 已提交
177 178 179
		}
	}

180 181
	_leave(" = 0");
	return 0;
D
David Howells 已提交
182
}
L
Linus Torvalds 已提交
183

D
David Howells 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
/*
 * parse a device name to get cell name, volume name, volume type and R/W
 * selector
 * - this can be one of the following:
 *	"%[cell:]volume[.]"		R/W volume
 *	"#[cell:]volume[.]"		R/O or R/W volume (rwpath=0),
 *					 or R/W (rwpath=1) volume
 *	"%[cell:]volume.readonly"	R/O volume
 *	"#[cell:]volume.readonly"	R/O volume
 *	"%[cell:]volume.backup"		Backup volume
 *	"#[cell:]volume.backup"		Backup volume
 */
static int afs_parse_device_name(struct afs_mount_params *params,
				 const char *name)
{
	struct afs_cell *cell;
	const char *cellname, *suffix;
	int cellnamesz;

	_enter(",%s", name);

	if (!name) {
		printk(KERN_ERR "kAFS: no volume name specified\n");
		return -EINVAL;
	}

	if ((name[0] != '%' && name[0] != '#') || !name[1]) {
		printk(KERN_ERR "kAFS: unparsable volume name\n");
		return -EINVAL;
	}

	/* determine the type of volume we're looking for */
	params->type = AFSVL_ROVOL;
	params->force = false;
	if (params->rwpath || name[0] == '%') {
		params->type = AFSVL_RWVOL;
		params->force = true;
	}
	name++;

	/* split the cell name out if there is one */
	params->volname = strchr(name, ':');
	if (params->volname) {
		cellname = name;
		cellnamesz = params->volname - name;
		params->volname++;
	} else {
		params->volname = name;
		cellname = NULL;
		cellnamesz = 0;
	}

	/* the volume type is further affected by a possible suffix */
	suffix = strrchr(params->volname, '.');
	if (suffix) {
		if (strcmp(suffix, ".readonly") == 0) {
			params->type = AFSVL_ROVOL;
			params->force = true;
		} else if (strcmp(suffix, ".backup") == 0) {
			params->type = AFSVL_BACKVOL;
			params->force = true;
		} else if (suffix[1] == 0) {
		} else {
			suffix = NULL;
		}
	}

	params->volnamesz = suffix ?
		suffix - params->volname : strlen(params->volname);

	_debug("cell %*.*s [%p]",
	       cellnamesz, cellnamesz, cellname ?: "", params->cell);

	/* lookup the cell record */
	if (cellname || !params->cell) {
		cell = afs_cell_lookup(cellname, cellnamesz);
		if (IS_ERR(cell)) {
			printk(KERN_ERR "kAFS: unable to lookup cell '%s'\n",
			       cellname ?: "");
			return PTR_ERR(cell);
		}
		afs_put_cell(params->cell);
		params->cell = cell;
	}

	_debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
	       params->cell->name, params->cell,
	       params->volnamesz, params->volnamesz, params->volname,
	       suffix ?: "-", params->type, params->force ? " FORCE" : "");

	return 0;
}

L
Linus Torvalds 已提交
277 278 279 280 281 282 283 284 285
/*
 * check a superblock to see if it's the one we're looking for
 */
static int afs_test_super(struct super_block *sb, void *data)
{
	struct afs_mount_params *params = data;
	struct afs_super_info *as = sb->s_fs_info;

	return as->volume == params->volume;
D
David Howells 已提交
286
}
L
Linus Torvalds 已提交
287 288 289 290

/*
 * fill in the superblock
 */
291
static int afs_fill_super(struct super_block *sb, void *data)
L
Linus Torvalds 已提交
292 293 294 295 296 297 298 299
{
	struct afs_mount_params *params = data;
	struct afs_super_info *as = NULL;
	struct afs_fid fid;
	struct dentry *root = NULL;
	struct inode *inode = NULL;
	int ret;

300
	_enter("");
L
Linus Torvalds 已提交
301 302

	/* allocate a superblock info record */
303
	as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
L
Linus Torvalds 已提交
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
	if (!as) {
		_leave(" = -ENOMEM");
		return -ENOMEM;
	}

	afs_get_volume(params->volume);
	as->volume = params->volume;

	/* fill in the superblock */
	sb->s_blocksize		= PAGE_CACHE_SIZE;
	sb->s_blocksize_bits	= PAGE_CACHE_SHIFT;
	sb->s_magic		= AFS_FS_MAGIC;
	sb->s_op		= &afs_super_ops;
	sb->s_fs_info		= as;

	/* allocate the root inode and dentry */
	fid.vid		= as->volume->vid;
	fid.vnode	= 1;
	fid.unique	= 1;
323
	inode = afs_iget(sb, params->key, &fid, NULL, NULL);
324 325
	if (IS_ERR(inode))
		goto error_inode;
L
Linus Torvalds 已提交
326 327 328 329 330 331 332 333

	ret = -ENOMEM;
	root = d_alloc_root(inode);
	if (!root)
		goto error;

	sb->s_root = root;

334
	_leave(" = 0");
L
Linus Torvalds 已提交
335 336
	return 0;

337 338 339
error_inode:
	ret = PTR_ERR(inode);
	inode = NULL;
D
David Howells 已提交
340
error:
L
Linus Torvalds 已提交
341 342 343 344 345 346
	iput(inode);
	afs_put_volume(as->volume);
	kfree(as);

	sb->s_fs_info = NULL;

347
	_leave(" = %d", ret);
L
Linus Torvalds 已提交
348
	return ret;
D
David Howells 已提交
349
}
L
Linus Torvalds 已提交
350 351 352 353

/*
 * get an AFS superblock
 */
354 355 356 357 358
static int afs_get_sb(struct file_system_type *fs_type,
		      int flags,
		      const char *dev_name,
		      void *options,
		      struct vfsmount *mnt)
L
Linus Torvalds 已提交
359 360 361
{
	struct afs_mount_params params;
	struct super_block *sb;
362
	struct afs_volume *vol;
D
David Howells 已提交
363
	struct key *key;
L
Linus Torvalds 已提交
364 365 366 367 368 369
	int ret;

	_enter(",,%s,%p", dev_name, options);

	memset(&params, 0, sizeof(params));

D
David Howells 已提交
370
	/* parse the options and device name */
L
Linus Torvalds 已提交
371
	if (options) {
D
David Howells 已提交
372
		ret = afs_parse_options(&params, options, &dev_name);
L
Linus Torvalds 已提交
373 374 375 376
		if (ret < 0)
			goto error;
	}

D
David Howells 已提交
377 378 379 380 381 382 383 384 385 386 387 388 389
	ret = afs_parse_device_name(&params, dev_name);
	if (ret < 0)
		goto error;

	/* try and do the mount securely */
	key = afs_request_key(params.cell);
	if (IS_ERR(key)) {
		_leave(" = %ld [key]", PTR_ERR(key));
		ret = PTR_ERR(key);
		goto error;
	}
	params.key = key;

L
Linus Torvalds 已提交
390
	/* parse the device name */
D
David Howells 已提交
391
	vol = afs_volume_lookup(&params);
392 393
	if (IS_ERR(vol)) {
		ret = PTR_ERR(vol);
L
Linus Torvalds 已提交
394
		goto error;
395 396
	}
	params.volume = vol;
L
Linus Torvalds 已提交
397 398 399

	/* allocate a deviceless superblock */
	sb = sget(fs_type, afs_test_super, set_anon_super, &params);
400 401
	if (IS_ERR(sb)) {
		ret = PTR_ERR(sb);
L
Linus Torvalds 已提交
402
		goto error;
403
	}
L
Linus Torvalds 已提交
404

405 406 407 408 409 410 411 412 413 414 415 416 417 418
	if (!sb->s_root) {
		/* initial superblock/root creation */
		_debug("create");
		sb->s_flags = flags;
		ret = afs_fill_super(sb, &params);
		if (ret < 0) {
			up_write(&sb->s_umount);
			deactivate_super(sb);
			goto error;
		}
		sb->s_flags |= MS_ACTIVE;
	} else {
		_debug("reuse");
		ASSERTCMP(sb->s_flags, &, MS_ACTIVE);
L
Linus Torvalds 已提交
419 420
	}

421
	simple_set_mnt(mnt, sb);
L
Linus Torvalds 已提交
422
	afs_put_volume(params.volume);
D
David Howells 已提交
423
	afs_put_cell(params.cell);
424
	_leave(" = 0 [%p]", sb);
425
	return 0;
L
Linus Torvalds 已提交
426

D
David Howells 已提交
427
error:
L
Linus Torvalds 已提交
428
	afs_put_volume(params.volume);
D
David Howells 已提交
429 430
	afs_put_cell(params.cell);
	key_put(params.key);
L
Linus Torvalds 已提交
431
	_leave(" = %d", ret);
432
	return ret;
D
David Howells 已提交
433
}
L
Linus Torvalds 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446

/*
 * finish the unmounting process on the superblock
 */
static void afs_put_super(struct super_block *sb)
{
	struct afs_super_info *as = sb->s_fs_info;

	_enter("");

	afs_put_volume(as->volume);

	_leave("");
D
David Howells 已提交
447
}
L
Linus Torvalds 已提交
448 449 450 451

/*
 * initialise an inode cache slab element prior to any use
 */
452
static void afs_i_init_once(void *_vnode, struct kmem_cache *cachep,
L
Linus Torvalds 已提交
453 454
			    unsigned long flags)
{
D
David Howells 已提交
455
	struct afs_vnode *vnode = _vnode;
L
Linus Torvalds 已提交
456

457
	if (flags & SLAB_CTOR_CONSTRUCTOR) {
L
Linus Torvalds 已提交
458 459 460
		memset(vnode, 0, sizeof(*vnode));
		inode_init_once(&vnode->vfs_inode);
		init_waitqueue_head(&vnode->update_waitq);
D
David Howells 已提交
461
		mutex_init(&vnode->permits_lock);
462
		mutex_init(&vnode->validate_lock);
463
		spin_lock_init(&vnode->writeback_lock);
L
Linus Torvalds 已提交
464
		spin_lock_init(&vnode->lock);
465
		INIT_LIST_HEAD(&vnode->writebacks);
466
		INIT_WORK(&vnode->cb_broken_work, afs_broken_callback_work);
L
Linus Torvalds 已提交
467
	}
D
David Howells 已提交
468
}
L
Linus Torvalds 已提交
469 470 471 472 473 474 475 476

/*
 * allocate an AFS inode struct from our slab cache
 */
static struct inode *afs_alloc_inode(struct super_block *sb)
{
	struct afs_vnode *vnode;

D
David Howells 已提交
477
	vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
L
Linus Torvalds 已提交
478 479 480 481 482 483 484 485 486 487
	if (!vnode)
		return NULL;

	atomic_inc(&afs_count_active_inodes);

	memset(&vnode->fid, 0, sizeof(vnode->fid));
	memset(&vnode->status, 0, sizeof(vnode->status));

	vnode->volume		= NULL;
	vnode->update_cnt	= 0;
488
	vnode->flags		= 1 << AFS_VNODE_UNSET;
489
	vnode->cb_promised	= false;
L
Linus Torvalds 已提交
490 491

	return &vnode->vfs_inode;
D
David Howells 已提交
492
}
L
Linus Torvalds 已提交
493 494 495 496 497 498

/*
 * destroy an AFS inode struct
 */
static void afs_destroy_inode(struct inode *inode)
{
499 500
	struct afs_vnode *vnode = AFS_FS_I(inode);

L
Linus Torvalds 已提交
501 502
	_enter("{%lu}", inode->i_ino);

503 504 505 506 507
	_debug("DESTROY INODE %p", inode);

	ASSERTCMP(vnode->server, ==, NULL);

	kmem_cache_free(afs_inode_cachep, vnode);
L
Linus Torvalds 已提交
508
	atomic_dec(&afs_count_active_inodes);
D
David Howells 已提交
509
}