super.c 17.4 KB
Newer Older
1 2
/* AFS superblock handling
 *
3
 * Copyright (c) 2002, 2007, 2018 Red Hat, Inc. All rights reserved.
Linus Torvalds's avatar
Linus Torvalds committed
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>
13
 *          David Woodhouse <dwmw2@infradead.org>
Linus Torvalds's avatar
Linus Torvalds committed
14 15 16 17 18
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
19
#include <linux/mount.h>
Linus Torvalds's avatar
Linus Torvalds committed
20 21 22 23
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/pagemap.h>
24
#include <linux/fs_parser.h>
David Howells's avatar
David Howells committed
25
#include <linux/statfs.h>
Alexey Dobriyan's avatar
Alexey Dobriyan committed
26
#include <linux/sched.h>
27
#include <linux/nsproxy.h>
28
#include <linux/magic.h>
29
#include <net/net_namespace.h>
Linus Torvalds's avatar
Linus Torvalds committed
30 31
#include "internal.h"

32
static void afs_i_init_once(void *foo);
33
static void afs_kill_super(struct super_block *sb);
Linus Torvalds's avatar
Linus Torvalds committed
34 35
static struct inode *afs_alloc_inode(struct super_block *sb);
static void afs_destroy_inode(struct inode *inode);
36
static void afs_free_inode(struct inode *inode);
David Howells's avatar
David Howells committed
37
static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
38 39
static int afs_show_devname(struct seq_file *m, struct dentry *root);
static int afs_show_options(struct seq_file *m, struct dentry *root);
40
static int afs_init_fs_context(struct fs_context *fc);
41
static const struct fs_parameter_spec afs_fs_parameters[];
Linus Torvalds's avatar
Linus Torvalds committed
42

43
struct file_system_type afs_fs_type = {
44 45 46
	.owner			= THIS_MODULE,
	.name			= "afs",
	.init_fs_context	= afs_init_fs_context,
47
	.parameters		= afs_fs_parameters,
48
	.kill_sb		= afs_kill_super,
49
	.fs_flags		= FS_RENAME_DOES_D_MOVE,
Linus Torvalds's avatar
Linus Torvalds committed
50
};
51
MODULE_ALIAS_FS("afs");
Linus Torvalds's avatar
Linus Torvalds committed
52

53 54
int afs_net_id;

55
static const struct super_operations afs_super_ops = {
David Howells's avatar
David Howells committed
56
	.statfs		= afs_statfs,
Linus Torvalds's avatar
Linus Torvalds committed
57
	.alloc_inode	= afs_alloc_inode,
58
	.drop_inode	= afs_drop_inode,
Linus Torvalds's avatar
Linus Torvalds committed
59
	.destroy_inode	= afs_destroy_inode,
60
	.free_inode	= afs_free_inode,
61
	.evict_inode	= afs_evict_inode,
62 63
	.show_devname	= afs_show_devname,
	.show_options	= afs_show_options,
Linus Torvalds's avatar
Linus Torvalds committed
64 65
};

66
static struct kmem_cache *afs_inode_cachep;
Linus Torvalds's avatar
Linus Torvalds committed
67 68
static atomic_t afs_count_active_inodes;

69 70 71
enum afs_param {
	Opt_autocell,
	Opt_dyn,
72
	Opt_flock,
73
	Opt_source,
74 75
};

76
static const struct constant_table afs_param_flock[] = {
Al Viro's avatar
Al Viro committed
77 78 79 80 81 82 83
	{"local",	afs_flock_mode_local },
	{"openafs",	afs_flock_mode_openafs },
	{"strict",	afs_flock_mode_strict },
	{"write",	afs_flock_mode_write },
	{}
};

84
static const struct fs_parameter_spec afs_fs_parameters[] = {
85 86
	fsparam_flag  ("autocell",	Opt_autocell),
	fsparam_flag  ("dyn",		Opt_dyn),
Al Viro's avatar
Al Viro committed
87
	fsparam_enum  ("flock",		Opt_flock, afs_param_flock),
88 89 90 91
	fsparam_string("source",	Opt_source),
	{}
};

Linus Torvalds's avatar
Linus Torvalds committed
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
/*
 * 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,
108
					     SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT,
109
					     afs_i_init_once);
Linus Torvalds's avatar
Linus Torvalds committed
110 111 112 113 114 115 116 117 118
	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);
119
		_leave(" = %d", ret);
Linus Torvalds's avatar
Linus Torvalds committed
120 121 122
		return ret;
	}

123
	_leave(" = 0");
Linus Torvalds's avatar
Linus Torvalds committed
124
	return 0;
125
}
Linus Torvalds's avatar
Linus Torvalds committed
126 127 128 129

/*
 * clean up the filesystem
 */
130
void afs_fs_exit(void)
Linus Torvalds's avatar
Linus Torvalds committed
131
{
132 133 134
	_enter("");

	afs_mntpt_kill_timer();
Linus Torvalds's avatar
Linus Torvalds committed
135 136 137 138 139 140 141 142
	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();
	}

143 144 145 146 147
	/*
	 * Make sure all delayed rcu free inodes are flushed before we
	 * destroy cache.
	 */
	rcu_barrier();
Linus Torvalds's avatar
Linus Torvalds committed
148
	kmem_cache_destroy(afs_inode_cachep);
149
	_leave("");
150
}
Linus Torvalds's avatar
Linus Torvalds committed
151

152 153 154 155 156
/*
 * Display the mount device name in /proc/mounts.
 */
static int afs_show_devname(struct seq_file *m, struct dentry *root)
{
157
	struct afs_super_info *as = AFS_FS_S(root->d_sb);
158
	struct afs_volume *volume = as->volume;
159
	struct afs_cell *cell = as->cell;
160 161 162
	const char *suf = "";
	char pref = '%';

163 164 165 166
	if (as->dyn_root) {
		seq_puts(m, "none");
		return 0;
	}
167

168 169 170 171 172 173 174 175 176 177 178 179 180 181
	switch (volume->type) {
	case AFSVL_RWVOL:
		break;
	case AFSVL_ROVOL:
		pref = '#';
		if (volume->type_force)
			suf = ".readonly";
		break;
	case AFSVL_BACKVOL:
		pref = '#';
		suf = ".backup";
		break;
	}

182
	seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf);
183 184 185 186 187 188 189 190
	return 0;
}

/*
 * Display the mount options in /proc/mounts.
 */
static int afs_show_options(struct seq_file *m, struct dentry *root)
{
191
	struct afs_super_info *as = AFS_FS_S(root->d_sb);
192
	const char *p = NULL;
193 194 195

	if (as->dyn_root)
		seq_puts(m, ",dyn");
196
	if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags))
197
		seq_puts(m, ",autocell");
198 199 200 201 202 203 204 205 206 207
	switch (as->flock_mode) {
	case afs_flock_mode_unset:	break;
	case afs_flock_mode_local:	p = "local";	break;
	case afs_flock_mode_openafs:	p = "openafs";	break;
	case afs_flock_mode_strict:	p = "strict";	break;
	case afs_flock_mode_write:	p = "write";	break;
	}
	if (p)
		seq_printf(m, ",flock=%s", p);

208 209 210
	return 0;
}

Linus Torvalds's avatar
Linus Torvalds committed
211
/*
212 213 214 215
 * Parse the source name to get cell name, volume name, volume type and R/W
 * selector.
 *
 * This can be one of the following:
David Howells's avatar
David Howells committed
216
 *	"%[cell:]volume[.]"		R/W volume
217 218
 *	"#[cell:]volume[.]"		R/O or R/W volume (R/O parent),
 *					 or R/W (R/W parent) volume
David Howells's avatar
David Howells committed
219 220 221 222 223
 *	"%[cell:]volume.readonly"	R/O volume
 *	"#[cell:]volume.readonly"	R/O volume
 *	"%[cell:]volume.backup"		Backup volume
 *	"#[cell:]volume.backup"		Backup volume
 */
224
static int afs_parse_source(struct fs_context *fc, struct fs_parameter *param)
David Howells's avatar
David Howells committed
225
{
226
	struct afs_fs_context *ctx = fc->fs_private;
David Howells's avatar
David Howells committed
227
	struct afs_cell *cell;
228
	const char *cellname, *suffix, *name = param->string;
David Howells's avatar
David Howells committed
229 230 231
	int cellnamesz;

	_enter(",%s", name);
232

David Howells's avatar
David Howells committed
233 234 235 236 237 238
	if (!name) {
		printk(KERN_ERR "kAFS: no volume name specified\n");
		return -EINVAL;
	}

	if ((name[0] != '%' && name[0] != '#') || !name[1]) {
239 240 241 242 243
		/* To use dynroot, we don't want to have to provide a source */
		if (strcmp(name, "none") == 0) {
			ctx->no_cell = true;
			return 0;
		}
David Howells's avatar
David Howells committed
244 245 246 247 248
		printk(KERN_ERR "kAFS: unparsable volume name\n");
		return -EINVAL;
	}

	/* determine the type of volume we're looking for */
249
	if (name[0] == '%') {
250 251
		ctx->type = AFSVL_RWVOL;
		ctx->force = true;
David Howells's avatar
David Howells committed
252 253 254 255
	}
	name++;

	/* split the cell name out if there is one */
256 257
	ctx->volname = strchr(name, ':');
	if (ctx->volname) {
David Howells's avatar
David Howells committed
258
		cellname = name;
259 260
		cellnamesz = ctx->volname - name;
		ctx->volname++;
David Howells's avatar
David Howells committed
261
	} else {
262
		ctx->volname = name;
David Howells's avatar
David Howells committed
263 264 265 266 267
		cellname = NULL;
		cellnamesz = 0;
	}

	/* the volume type is further affected by a possible suffix */
268
	suffix = strrchr(ctx->volname, '.');
David Howells's avatar
David Howells committed
269 270
	if (suffix) {
		if (strcmp(suffix, ".readonly") == 0) {
271 272
			ctx->type = AFSVL_ROVOL;
			ctx->force = true;
David Howells's avatar
David Howells committed
273
		} else if (strcmp(suffix, ".backup") == 0) {
274 275
			ctx->type = AFSVL_BACKVOL;
			ctx->force = true;
David Howells's avatar
David Howells committed
276 277 278 279 280 281
		} else if (suffix[1] == 0) {
		} else {
			suffix = NULL;
		}
	}

282 283
	ctx->volnamesz = suffix ?
		suffix - ctx->volname : strlen(ctx->volname);
David Howells's avatar
David Howells committed
284 285

	_debug("cell %*.*s [%p]",
286
	       cellnamesz, cellnamesz, cellname ?: "", ctx->cell);
David Howells's avatar
David Howells committed
287 288

	/* lookup the cell record */
289 290
	if (cellname) {
		cell = afs_lookup_cell(ctx->net, cellname, cellnamesz,
291
				       NULL, false);
David Howells's avatar
David Howells committed
292
		if (IS_ERR(cell)) {
293
			pr_err("kAFS: unable to lookup cell '%*.*s'\n",
294
			       cellnamesz, cellnamesz, cellname ?: "");
David Howells's avatar
David Howells committed
295 296
			return PTR_ERR(cell);
		}
297 298
		afs_put_cell(ctx->net, ctx->cell);
		ctx->cell = cell;
David Howells's avatar
David Howells committed
299 300 301
	}

	_debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
	       ctx->cell->name, ctx->cell,
	       ctx->volnamesz, ctx->volnamesz, ctx->volname,
	       suffix ?: "-", ctx->type, ctx->force ? " FORCE" : "");

	fc->source = param->string;
	param->string = NULL;
	return 0;
}

/*
 * Parse a single mount parameter.
 */
static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param)
{
	struct fs_parse_result result;
	struct afs_fs_context *ctx = fc->fs_private;
	int opt;

320
	opt = fs_parse(fc, afs_fs_parameters, param, &result);
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
	if (opt < 0)
		return opt;

	switch (opt) {
	case Opt_source:
		return afs_parse_source(fc, param);

	case Opt_autocell:
		ctx->autocell = true;
		break;

	case Opt_dyn:
		ctx->dyn_root = true;
		break;

336 337 338 339
	case Opt_flock:
		ctx->flock_mode = result.uint_32;
		break;

340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
	default:
		return -EINVAL;
	}

	_leave(" = 0");
	return 0;
}

/*
 * Validate the options, get the cell key and look up the volume.
 */
static int afs_validate_fc(struct fs_context *fc)
{
	struct afs_fs_context *ctx = fc->fs_private;
	struct afs_volume *volume;
355
	struct afs_cell *cell;
356
	struct key *key;
357
	int ret;
358 359 360 361 362 363 364 365 366 367 368 369

	if (!ctx->dyn_root) {
		if (ctx->no_cell) {
			pr_warn("kAFS: Can only specify source 'none' with -o dyn\n");
			return -EINVAL;
		}

		if (!ctx->cell) {
			pr_warn("kAFS: No cell specified\n");
			return -EDESTADDRREQ;
		}

370
	reget_key:
371 372 373 374 375 376 377 378
		/* We try to do the mount securely. */
		key = afs_request_key(ctx->cell);
		if (IS_ERR(key))
			return PTR_ERR(key);

		ctx->key = key;

		if (ctx->volume) {
379 380
			afs_put_volume(ctx->net, ctx->volume,
				       afs_volume_trace_put_validate_fc);
381 382 383
			ctx->volume = NULL;
		}

384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
		if (test_bit(AFS_CELL_FL_CHECK_ALIAS, &ctx->cell->flags)) {
			ret = afs_cell_detect_alias(ctx->cell, key);
			if (ret < 0)
				return ret;
			if (ret == 1) {
				_debug("switch to alias");
				key_put(ctx->key);
				ctx->key = NULL;
				cell = afs_get_cell(ctx->cell->alias_of);
				afs_put_cell(ctx->net, ctx->cell);
				ctx->cell = cell;
				goto reget_key;
			}
		}

399 400 401 402 403 404
		volume = afs_create_volume(ctx);
		if (IS_ERR(volume))
			return PTR_ERR(volume);

		ctx->volume = volume;
	}
David Howells's avatar
David Howells committed
405 406 407 408

	return 0;
}

Linus Torvalds's avatar
Linus Torvalds committed
409 410 411
/*
 * check a superblock to see if it's the one we're looking for
 */
412
static int afs_test_super(struct super_block *sb, struct fs_context *fc)
Linus Torvalds's avatar
Linus Torvalds committed
413
{
414
	struct afs_fs_context *ctx = fc->fs_private;
415
	struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds's avatar
Linus Torvalds committed
416

417
	return (as->net_ns == fc->net_ns &&
418
		as->volume &&
419
		as->volume->vid == ctx->volume->vid &&
420
		as->cell == ctx->cell &&
421
		!as->dyn_root);
422 423
}

424
static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc)
425
{
426 427
	struct afs_super_info *as = AFS_FS_S(sb);

428
	return (as->net_ns == fc->net_ns &&
429
		as->dyn_root);
430 431
}

432
static int afs_set_super(struct super_block *sb, struct fs_context *fc)
433 434
{
	return set_anon_super(sb, NULL);
435
}
Linus Torvalds's avatar
Linus Torvalds committed
436 437 438 439

/*
 * fill in the superblock
 */
440
static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx)
Linus Torvalds's avatar
Linus Torvalds committed
441
{
442
	struct afs_super_info *as = AFS_FS_S(sb);
Linus Torvalds's avatar
Linus Torvalds committed
443 444 445
	struct inode *inode = NULL;
	int ret;

446
	_enter("");
Linus Torvalds's avatar
Linus Torvalds committed
447 448

	/* fill in the superblock */
449 450
	sb->s_blocksize		= PAGE_SIZE;
	sb->s_blocksize_bits	= PAGE_SHIFT;
Marc Dionne's avatar
Marc Dionne committed
451
	sb->s_maxbytes		= MAX_LFS_FILESIZE;
Linus Torvalds's avatar
Linus Torvalds committed
452 453
	sb->s_magic		= AFS_FS_MAGIC;
	sb->s_op		= &afs_super_ops;
454 455
	if (!as->dyn_root)
		sb->s_xattr	= afs_xattr_handlers;
456 457 458
	ret = super_setup_bdi(sb);
	if (ret)
		return ret;
459
	sb->s_bdi->ra_pages	= VM_READAHEAD_PAGES;
Linus Torvalds's avatar
Linus Torvalds committed
460 461

	/* allocate the root inode and dentry */
462 463 464
	if (as->dyn_root) {
		inode = afs_iget_pseudo_dir(sb, true);
	} else {
465
		sprintf(sb->s_id, "%llu", as->volume->vid);
466
		afs_activate_volume(as->volume);
467
		inode = afs_root_iget(sb, ctx->key);
468 469
	}

470
	if (IS_ERR(inode))
471
		return PTR_ERR(inode);
Linus Torvalds's avatar
Linus Torvalds committed
472

473
	if (ctx->autocell || as->dyn_root)
474 475
		set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);

Linus Torvalds's avatar
Linus Torvalds committed
476
	ret = -ENOMEM;
477 478
	sb->s_root = d_make_root(inode);
	if (!sb->s_root)
Linus Torvalds's avatar
Linus Torvalds committed
479 480
		goto error;

481
	if (as->dyn_root) {
482
		sb->s_d_op = &afs_dynroot_dentry_operations;
483 484 485 486
		ret = afs_dynroot_populate(sb);
		if (ret < 0)
			goto error;
	} else {
487
		sb->s_d_op = &afs_fs_dentry_operations;
488
		rcu_assign_pointer(as->volume->sb, sb);
489
	}
Linus Torvalds's avatar
Linus Torvalds committed
490

491
	_leave(" = 0");
Linus Torvalds's avatar
Linus Torvalds committed
492 493
	return 0;

494
error:
495
	_leave(" = %d", ret);
Linus Torvalds's avatar
Linus Torvalds committed
496
	return ret;
497
}
Linus Torvalds's avatar
Linus Torvalds committed
498

499
static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc)
500
{
501
	struct afs_fs_context *ctx = fc->fs_private;
502 503 504 505
	struct afs_super_info *as;

	as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
	if (as) {
506
		as->net_ns = get_net(fc->net_ns);
507
		as->flock_mode = ctx->flock_mode;
508
		if (ctx->dyn_root) {
509
			as->dyn_root = true;
510 511
		} else {
			as->cell = afs_get_cell(ctx->cell);
512 513
			as->volume = afs_get_volume(ctx->volume,
						    afs_volume_trace_get_alloc_sbi);
514
		}
515 516 517 518 519 520 521
	}
	return as;
}

static void afs_destroy_sbi(struct afs_super_info *as)
{
	if (as) {
522
		struct afs_net *net = afs_net(as->net_ns);
523
		afs_put_volume(net, as->volume, afs_volume_trace_put_destroy_sbi);
524
		afs_put_cell(net, as->cell);
525
		put_net(as->net_ns);
526 527 528 529
		kfree(as);
	}
}

530 531 532 533 534 535
static void afs_kill_super(struct super_block *sb)
{
	struct afs_super_info *as = AFS_FS_S(sb);

	if (as->dyn_root)
		afs_dynroot_depopulate(sb);
536

537 538 539 540
	/* Clear the callback interests (which will do ilookup5) before
	 * deactivating the superblock.
	 */
	if (as->volume)
541
		rcu_assign_pointer(as->volume->sb, NULL);
542 543 544 545 546 547
	kill_anon_super(sb);
	if (as->volume)
		afs_deactivate_volume(as->volume);
	afs_destroy_sbi(as);
}

Linus Torvalds's avatar
Linus Torvalds committed
548
/*
549
 * Get an AFS superblock and root directory.
Linus Torvalds's avatar
Linus Torvalds committed
550
 */
551
static int afs_get_tree(struct fs_context *fc)
Linus Torvalds's avatar
Linus Torvalds committed
552
{
553
	struct afs_fs_context *ctx = fc->fs_private;
Linus Torvalds's avatar
Linus Torvalds committed
554
	struct super_block *sb;
555
	struct afs_super_info *as;
Linus Torvalds's avatar
Linus Torvalds committed
556 557
	int ret;

558 559
	ret = afs_validate_fc(fc);
	if (ret)
560
		goto error;
David Howells's avatar
David Howells committed
561

562
	_enter("");
David Howells's avatar
David Howells committed
563

564 565
	/* allocate a superblock info record */
	ret = -ENOMEM;
566
	as = afs_alloc_sbi(fc);
567
	if (!as)
568 569
		goto error;
	fc->s_fs_info = as;
Linus Torvalds's avatar
Linus Torvalds committed
570 571

	/* allocate a deviceless superblock */
572 573 574
	sb = sget_fc(fc,
		     as->dyn_root ? afs_dynroot_test_super : afs_test_super,
		     afs_set_super);
575 576
	if (IS_ERR(sb)) {
		ret = PTR_ERR(sb);
577
		goto error;
578
	}
Linus Torvalds's avatar
Linus Torvalds committed
579

580 581 582
	if (!sb->s_root) {
		/* initial superblock/root creation */
		_debug("create");
583
		ret = afs_fill_super(sb, ctx);
584 585
		if (ret < 0)
			goto error_sb;
586
		sb->s_flags |= SB_ACTIVE;
587 588
	} else {
		_debug("reuse");
589
		ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
Linus Torvalds's avatar
Linus Torvalds committed
590 591
	}

592
	fc->root = dget(sb->s_root);
David Howells's avatar
David Howells committed
593
	trace_afs_get_tree(as->cell, as->volume);
594
	_leave(" = 0 [%p]", sb);
595
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
596

597 598
error_sb:
	deactivate_locked_super(sb);
599
error:
Linus Torvalds's avatar
Linus Torvalds committed
600
	_leave(" = %d", ret);
601 602 603 604 605 606 607 608
	return ret;
}

static void afs_free_fc(struct fs_context *fc)
{
	struct afs_fs_context *ctx = fc->fs_private;

	afs_destroy_sbi(fc->s_fs_info);
609
	afs_put_volume(ctx->net, ctx->volume, afs_volume_trace_put_free_fc);
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
	afs_put_cell(ctx->net, ctx->cell);
	key_put(ctx->key);
	kfree(ctx);
}

static const struct fs_context_operations afs_context_ops = {
	.free		= afs_free_fc,
	.parse_param	= afs_parse_param,
	.get_tree	= afs_get_tree,
};

/*
 * Set up the filesystem mount context.
 */
static int afs_init_fs_context(struct fs_context *fc)
{
	struct afs_fs_context *ctx;
	struct afs_cell *cell;

	ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL);
	if (!ctx)
		return -ENOMEM;

	ctx->type = AFSVL_ROVOL;
	ctx->net = afs_net(fc->net_ns);

	/* Default to the workstation cell. */
637
	cell = afs_find_cell(ctx->net, NULL, 0);
638 639 640 641 642 643 644
	if (IS_ERR(cell))
		cell = NULL;
	ctx->cell = cell;

	fc->fs_private = ctx;
	fc->ops = &afs_context_ops;
	return 0;
645
}
Linus Torvalds's avatar
Linus Torvalds committed
646 647

/*
648 649 650
 * Initialise an inode cache slab element prior to any use.  Note that
 * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
 * inode to another.
Linus Torvalds's avatar
Linus Torvalds committed
651
 */
652
static void afs_i_init_once(void *_vnode)
Linus Torvalds's avatar
Linus Torvalds committed
653
{
654
	struct afs_vnode *vnode = _vnode;
Linus Torvalds's avatar
Linus Torvalds committed
655

656 657
	memset(vnode, 0, sizeof(*vnode));
	inode_init_once(&vnode->vfs_inode);
658
	mutex_init(&vnode->io_lock);
659
	init_rwsem(&vnode->validate_lock);
660
	spin_lock_init(&vnode->wb_lock);
661
	spin_lock_init(&vnode->lock);
662
	INIT_LIST_HEAD(&vnode->wb_keys);
David Howells's avatar
David Howells committed
663 664 665
	INIT_LIST_HEAD(&vnode->pending_locks);
	INIT_LIST_HEAD(&vnode->granted_locks);
	INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
666
	seqlock_init(&vnode->cb_lock);
667
}
Linus Torvalds's avatar
Linus Torvalds committed
668 669 670 671 672 673 674 675

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

676
	vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
Linus Torvalds's avatar
Linus Torvalds committed
677 678 679 680 681
	if (!vnode)
		return NULL;

	atomic_inc(&afs_count_active_inodes);

682
	/* Reset anything that shouldn't leak from one inode to the next. */
Linus Torvalds's avatar
Linus Torvalds committed
683 684 685 686
	memset(&vnode->fid, 0, sizeof(vnode->fid));
	memset(&vnode->status, 0, sizeof(vnode->status));

	vnode->volume		= NULL;
687 688 689 690 691 692
	vnode->lock_key		= NULL;
	vnode->permit_cache	= NULL;
#ifdef CONFIG_AFS_FSCACHE
	vnode->cache		= NULL;
#endif

693
	vnode->flags		= 1 << AFS_VNODE_UNSET;
694
	vnode->lock_state	= AFS_VNODE_LOCK_NONE;
Linus Torvalds's avatar
Linus Torvalds committed
695

696 697
	init_rwsem(&vnode->rmdir_lock);

698
	_leave(" = %p", &vnode->vfs_inode);
Linus Torvalds's avatar
Linus Torvalds committed
699
	return &vnode->vfs_inode;
700
}
Linus Torvalds's avatar
Linus Torvalds committed
701

702
static void afs_free_inode(struct inode *inode)
Nick Piggin's avatar
Nick Piggin committed
703
{
704
	kmem_cache_free(afs_inode_cachep, AFS_FS_I(inode));
Nick Piggin's avatar
Nick Piggin committed
705 706
}

Linus Torvalds's avatar
Linus Torvalds committed
707 708 709 710 711
/*
 * destroy an AFS inode struct
 */
static void afs_destroy_inode(struct inode *inode)
{
712 713
	struct afs_vnode *vnode = AFS_FS_I(inode);

714
	_enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode);
Linus Torvalds's avatar
Linus Torvalds committed
715

716 717
	_debug("DESTROY INODE %p", inode);

Linus Torvalds's avatar
Linus Torvalds committed
718
	atomic_dec(&afs_count_active_inodes);
719
}
David Howells's avatar
David Howells committed
720

721 722 723 724 725 726 727 728 729
static void afs_get_volume_status_success(struct afs_operation *op)
{
	struct afs_volume_status *vs = &op->volstatus.vs;
	struct kstatfs *buf = op->volstatus.buf;

	if (vs->max_quota == 0)
		buf->f_blocks = vs->part_max_blocks;
	else
		buf->f_blocks = vs->max_quota;
730 731 732 733

	if (buf->f_blocks > vs->blocks_in_use)
		buf->f_bavail = buf->f_bfree =
			buf->f_blocks - vs->blocks_in_use;
734 735 736 737 738 739 740 741
}

static const struct afs_operation_ops afs_get_volume_status_operation = {
	.issue_afs_rpc	= afs_fs_get_volume_status,
	.issue_yfs_rpc	= yfs_fs_get_volume_status,
	.success	= afs_get_volume_status_success,
};

David Howells's avatar
David Howells committed
742 743 744 745 746
/*
 * return information about an AFS volume
 */
static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
{
747
	struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
748
	struct afs_operation *op;
749
	struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells's avatar
David Howells committed
750

751 752 753 754 755 756 757 758 759 760
	buf->f_type	= dentry->d_sb->s_magic;
	buf->f_bsize	= AFS_BLOCK_SIZE;
	buf->f_namelen	= AFSNAMEMAX - 1;

	if (as->dyn_root) {
		buf->f_blocks	= 1;
		buf->f_bavail	= 0;
		buf->f_bfree	= 0;
		return 0;
	}
761

762 763 764
	op = afs_alloc_operation(NULL, as->volume);
	if (IS_ERR(op))
		return PTR_ERR(op);
David Howells's avatar
David Howells committed
765

766 767 768 769 770
	afs_op_set_vnode(op, 0, vnode);
	op->nr_files		= 1;
	op->volstatus.buf	= buf;
	op->ops			= &afs_get_volume_status_operation;
	return afs_do_sync_operation(op);
David Howells's avatar
David Howells committed
771
}