super.c 25.8 KB
Newer Older
D
David Howells 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *  linux/fs/nfs/super.c
 *
 *  Copyright (C) 1992  Rick Sladkey
 *
 *  nfs superblock handling functions
 *
 *  Modularised by Alan Cox <Alan.Cox@linux.org>, while hacking some
 *  experimental NFS changes. Modularisation taken straight from SYS5 fs.
 *
 *  Change to nfs_read_super() to permit NFS mounts to multi-homed hosts.
 *  J.S.Peatfield@damtp.cam.ac.uk
 *
 *  Split from inode.c by David Howells <dhowells@redhat.com>
 *
16 17 18 19 20
 * - superblocks are indexed on server only - all inodes, dentries, etc. associated with a
 *   particular server are held in the same superblock
 * - NFS superblocks can have several effective roots to the dentry tree
 * - directory type roots are spliced into the tree when a path from one root reaches the root
 *   of another (see nfs_lookup())
D
David Howells 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 */

#include <linux/module.h>
#include <linux/init.h>

#include <linux/time.h>
#include <linux/kernel.h>
#include <linux/mm.h>
#include <linux/string.h>
#include <linux/stat.h>
#include <linux/errno.h>
#include <linux/unistd.h>
#include <linux/sunrpc/clnt.h>
#include <linux/sunrpc/stats.h>
#include <linux/sunrpc/metrics.h>
#include <linux/nfs_fs.h>
#include <linux/nfs_mount.h>
#include <linux/nfs4_mount.h>
#include <linux/lockd/bind.h>
#include <linux/smp_lock.h>
#include <linux/seq_file.h>
#include <linux/mount.h>
#include <linux/nfs_idmap.h>
#include <linux/vfs.h>
#include <linux/inet.h>
#include <linux/nfs_xdr.h>
47
#include <linux/magic.h>
D
David Howells 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60

#include <asm/system.h>
#include <asm/uaccess.h>

#include "nfs4_fs.h"
#include "callback.h"
#include "delegation.h"
#include "iostat.h"
#include "internal.h"

#define NFSDBG_FACILITY		NFSDBG_VFS

static void nfs_umount_begin(struct vfsmount *, int);
61
static int  nfs_statfs(struct dentry *, struct kstatfs *);
D
David Howells 已提交
62 63
static int  nfs_show_options(struct seq_file *, struct vfsmount *);
static int  nfs_show_stats(struct seq_file *, struct vfsmount *);
64
static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
65
static int nfs_xdev_get_sb(struct file_system_type *fs_type,
66
		int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
D
David Howells 已提交
67 68 69 70 71 72 73
static void nfs_kill_super(struct super_block *);

static struct file_system_type nfs_fs_type = {
	.owner		= THIS_MODULE,
	.name		= "nfs",
	.get_sb		= nfs_get_sb,
	.kill_sb	= nfs_kill_super,
74
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
75 76
};

77
struct file_system_type nfs_xdev_fs_type = {
D
David Howells 已提交
78 79
	.owner		= THIS_MODULE,
	.name		= "nfs",
80
	.get_sb		= nfs_xdev_get_sb,
D
David Howells 已提交
81
	.kill_sb	= nfs_kill_super,
82
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
83 84
};

85
static const struct super_operations nfs_sops = {
D
David Howells 已提交
86 87 88 89 90 91 92 93 94 95 96
	.alloc_inode	= nfs_alloc_inode,
	.destroy_inode	= nfs_destroy_inode,
	.write_inode	= nfs_write_inode,
	.statfs		= nfs_statfs,
	.clear_inode	= nfs_clear_inode,
	.umount_begin	= nfs_umount_begin,
	.show_options	= nfs_show_options,
	.show_stats	= nfs_show_stats,
};

#ifdef CONFIG_NFS_V4
97 98
static int nfs4_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
99 100 101 102
static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
static int nfs4_referral_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
D
David Howells 已提交
103 104 105 106 107 108 109
static void nfs4_kill_super(struct super_block *sb);

static struct file_system_type nfs4_fs_type = {
	.owner		= THIS_MODULE,
	.name		= "nfs4",
	.get_sb		= nfs4_get_sb,
	.kill_sb	= nfs4_kill_super,
110
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
111 112
};

113
struct file_system_type nfs4_xdev_fs_type = {
D
David Howells 已提交
114 115
	.owner		= THIS_MODULE,
	.name		= "nfs4",
116
	.get_sb		= nfs4_xdev_get_sb,
D
David Howells 已提交
117
	.kill_sb	= nfs4_kill_super,
118
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
119 120
};

121
struct file_system_type nfs4_referral_fs_type = {
D
David Howells 已提交
122 123
	.owner		= THIS_MODULE,
	.name		= "nfs4",
124
	.get_sb		= nfs4_referral_get_sb,
D
David Howells 已提交
125
	.kill_sb	= nfs4_kill_super,
126
	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
D
David Howells 已提交
127 128
};

129
static const struct super_operations nfs4_sops = {
D
David Howells 已提交
130 131 132 133 134 135 136 137 138 139 140
	.alloc_inode	= nfs_alloc_inode,
	.destroy_inode	= nfs_destroy_inode,
	.write_inode	= nfs_write_inode,
	.statfs		= nfs_statfs,
	.clear_inode	= nfs4_clear_inode,
	.umount_begin	= nfs_umount_begin,
	.show_options	= nfs_show_options,
	.show_stats	= nfs_show_stats,
};
#endif

141 142
static struct shrinker *acl_shrinker;

D
David Howells 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156
/*
 * Register the NFS filesystems
 */
int __init register_nfs_fs(void)
{
	int ret;

        ret = register_filesystem(&nfs_fs_type);
	if (ret < 0)
		goto error_0;

	ret = nfs_register_sysctl();
	if (ret < 0)
		goto error_1;
157
#ifdef CONFIG_NFS_V4
D
David Howells 已提交
158 159 160 161
	ret = register_filesystem(&nfs4_fs_type);
	if (ret < 0)
		goto error_2;
#endif
162
	acl_shrinker = set_shrinker(DEFAULT_SEEKS, nfs_access_cache_shrinker);
D
David Howells 已提交
163 164 165 166 167
	return 0;

#ifdef CONFIG_NFS_V4
error_2:
	nfs_unregister_sysctl();
168
#endif
D
David Howells 已提交
169 170 171 172 173 174 175 176 177 178 179
error_1:
	unregister_filesystem(&nfs_fs_type);
error_0:
	return ret;
}

/*
 * Unregister the NFS filesystems
 */
void __exit unregister_nfs_fs(void)
{
180 181
	if (acl_shrinker != NULL)
		remove_shrinker(acl_shrinker);
D
David Howells 已提交
182 183 184 185 186 187 188 189 190 191
#ifdef CONFIG_NFS_V4
	unregister_filesystem(&nfs4_fs_type);
	nfs_unregister_sysctl();
#endif
	unregister_filesystem(&nfs_fs_type);
}

/*
 * Deliver file system statistics to userspace
 */
192
static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
D
David Howells 已提交
193
{
194
	struct nfs_server *server = NFS_SB(dentry->d_sb);
D
David Howells 已提交
195 196
	unsigned char blockbits;
	unsigned long blockres;
197
	struct nfs_fh *fh = NFS_FH(dentry->d_inode);
D
David Howells 已提交
198 199 200 201 202 203 204 205
	struct nfs_fattr fattr;
	struct nfs_fsstat res = {
			.fattr = &fattr,
	};
	int error;

	lock_kernel();

206
	error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
D
David Howells 已提交
207 208
	if (error < 0)
		goto out_err;
A
Amnon Aaronsohn 已提交
209
	buf->f_type = NFS_SUPER_MAGIC;
D
David Howells 已提交
210 211 212 213 214 215

	/*
	 * Current versions of glibc do not correctly handle the
	 * case where f_frsize != f_bsize.  Eventually we want to
	 * report the value of wtmult in this field.
	 */
216
	buf->f_frsize = dentry->d_sb->s_blocksize;
D
David Howells 已提交
217 218 219 220 221 222 223 224

	/*
	 * On most *nix systems, f_blocks, f_bfree, and f_bavail
	 * are reported in units of f_frsize.  Linux hasn't had
	 * an f_frsize field in its statfs struct until recently,
	 * thus historically Linux's sys_statfs reports these
	 * fields in units of f_bsize.
	 */
225 226
	buf->f_bsize = dentry->d_sb->s_blocksize;
	blockbits = dentry->d_sb->s_blocksize_bits;
D
David Howells 已提交
227 228 229 230 231 232 233 234 235
	blockres = (1 << blockbits) - 1;
	buf->f_blocks = (res.tbytes + blockres) >> blockbits;
	buf->f_bfree = (res.fbytes + blockres) >> blockbits;
	buf->f_bavail = (res.abytes + blockres) >> blockbits;

	buf->f_files = res.tfiles;
	buf->f_ffree = res.afiles;

	buf->f_namelen = server->namelen;
A
Amnon Aaronsohn 已提交
236

D
David Howells 已提交
237 238 239 240 241
	unlock_kernel();
	return 0;

 out_err:
	dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
A
Amnon Aaronsohn 已提交
242 243
	unlock_kernel();
	return error;
D
David Howells 已提交
244 245
}

246 247 248
/*
 * Map the security flavour number to a name
 */
249 250
static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
{
251
	static const struct {
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
		rpc_authflavor_t flavour;
		const char *str;
	} sec_flavours[] = {
		{ RPC_AUTH_NULL, "null" },
		{ RPC_AUTH_UNIX, "sys" },
		{ RPC_AUTH_GSS_KRB5, "krb5" },
		{ RPC_AUTH_GSS_KRB5I, "krb5i" },
		{ RPC_AUTH_GSS_KRB5P, "krb5p" },
		{ RPC_AUTH_GSS_LKEY, "lkey" },
		{ RPC_AUTH_GSS_LKEYI, "lkeyi" },
		{ RPC_AUTH_GSS_LKEYP, "lkeyp" },
		{ RPC_AUTH_GSS_SPKM, "spkm" },
		{ RPC_AUTH_GSS_SPKMI, "spkmi" },
		{ RPC_AUTH_GSS_SPKMP, "spkmp" },
		{ -1, "unknown" }
	};
	int i;

	for (i=0; sec_flavours[i].flavour != -1; i++) {
		if (sec_flavours[i].flavour == flavour)
			break;
	}
	return sec_flavours[i].str;
}

D
David Howells 已提交
277 278 279 280 281
/*
 * Describe the mount options in force on this server representation
 */
static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
{
D
David Howells 已提交
282
	static const struct proc_nfs_info {
D
David Howells 已提交
283
		int flag;
D
David Howells 已提交
284 285
		const char *str;
		const char *nostr;
D
David Howells 已提交
286 287 288 289 290 291 292
	} nfs_info[] = {
		{ NFS_MOUNT_SOFT, ",soft", ",hard" },
		{ NFS_MOUNT_INTR, ",intr", "" },
		{ NFS_MOUNT_NOCTO, ",nocto", "" },
		{ NFS_MOUNT_NOAC, ",noac", "" },
		{ NFS_MOUNT_NONLM, ",nolock", "" },
		{ NFS_MOUNT_NOACL, ",noacl", "" },
293
		{ NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
D
David Howells 已提交
294 295
		{ 0, NULL, NULL }
	};
D
David Howells 已提交
296
	const struct proc_nfs_info *nfs_infop;
297
	struct nfs_client *clp = nfss->nfs_client;
D
David Howells 已提交
298
	char buf[12];
D
David Howells 已提交
299
	const char *proto;
D
David Howells 已提交
300

301
	seq_printf(m, ",vers=%d", clp->rpc_ops->version);
D
David Howells 已提交
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
	seq_printf(m, ",rsize=%d", nfss->rsize);
	seq_printf(m, ",wsize=%d", nfss->wsize);
	if (nfss->acregmin != 3*HZ || showdefaults)
		seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
	if (nfss->acregmax != 60*HZ || showdefaults)
		seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
	if (nfss->acdirmin != 30*HZ || showdefaults)
		seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
	if (nfss->acdirmax != 60*HZ || showdefaults)
		seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
	for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
		if (nfss->flags & nfs_infop->flag)
			seq_puts(m, nfs_infop->str);
		else
			seq_puts(m, nfs_infop->nostr);
	}
	switch (nfss->client->cl_xprt->prot) {
		case IPPROTO_TCP:
			proto = "tcp";
			break;
		case IPPROTO_UDP:
			proto = "udp";
			break;
		default:
			snprintf(buf, sizeof(buf), "%u", nfss->client->cl_xprt->prot);
			proto = buf;
	}
	seq_printf(m, ",proto=%s", proto);
330 331
	seq_printf(m, ",timeo=%lu", 10U * clp->retrans_timeo / HZ);
	seq_printf(m, ",retrans=%u", clp->retrans_count);
332
	seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
D
David Howells 已提交
333 334 335 336 337 338 339 340 341 342 343 344
}

/*
 * Describe the mount options on this VFS mountpoint
 */
static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
{
	struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);

	nfs_show_mount_options(m, nfss, 0);

	seq_puts(m, ",addr=");
345
	seq_escape(m, nfss->nfs_client->cl_hostname, " \t\n\\");
D
David Howells 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381

	return 0;
}

/*
 * Present statistical information for this VFS mountpoint
 */
static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
{
	int i, cpu;
	struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
	struct rpc_auth *auth = nfss->client->cl_auth;
	struct nfs_iostats totals = { };

	seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);

	/*
	 * Display all mount option settings
	 */
	seq_printf(m, "\n\topts:\t");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
	seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
	nfs_show_mount_options(m, nfss, 1);

	seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);

	seq_printf(m, "\n\tcaps:\t");
	seq_printf(m, "caps=0x%x", nfss->caps);
	seq_printf(m, ",wtmult=%d", nfss->wtmult);
	seq_printf(m, ",dtsize=%d", nfss->dtsize);
	seq_printf(m, ",bsize=%d", nfss->bsize);
	seq_printf(m, ",namelen=%d", nfss->namelen);

#ifdef CONFIG_NFS_V4
382
	if (nfss->nfs_client->cl_nfsversion == 4) {
D
David Howells 已提交
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
		seq_printf(m, "\n\tnfsv4:\t");
		seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
		seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
		seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
	}
#endif

	/*
	 * Display security flavor in effect for this mount
	 */
	seq_printf(m, "\n\tsec:\tflavor=%d", auth->au_ops->au_flavor);
	if (auth->au_flavor)
		seq_printf(m, ",pseudoflavor=%d", auth->au_flavor);

	/*
	 * Display superblock I/O counters
	 */
	for_each_possible_cpu(cpu) {
		struct nfs_iostats *stats;

		preempt_disable();
		stats = per_cpu_ptr(nfss->io_stats, cpu);

		for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
			totals.events[i] += stats->events[i];
		for (i = 0; i < __NFSIOS_BYTESMAX; i++)
			totals.bytes[i] += stats->bytes[i];

		preempt_enable();
	}

	seq_printf(m, "\n\tevents:\t");
	for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
		seq_printf(m, "%lu ", totals.events[i]);
	seq_printf(m, "\n\tbytes:\t");
	for (i = 0; i < __NFSIOS_BYTESMAX; i++)
		seq_printf(m, "%Lu ", totals.bytes[i]);
	seq_printf(m, "\n");

	rpc_print_iostats(m, nfss->client);

	return 0;
}

/*
 * Begin unmount by attempting to remove all automounted mountpoints we added
429
 * in response to xdev traversals and referrals
D
David Howells 已提交
430 431 432
 */
static void nfs_umount_begin(struct vfsmount *vfsmnt, int flags)
{
T
Trond Myklebust 已提交
433 434 435
	struct nfs_server *server = NFS_SB(vfsmnt->mnt_sb);
	struct rpc_clnt *rpc;

D
David Howells 已提交
436
	shrink_submounts(vfsmnt, &nfs_automount_list);
T
Trond Myklebust 已提交
437 438 439 440 441 442 443 444 445 446

	if (!(flags & MNT_FORCE))
		return;
	/* -EIO all pending I/O */
	rpc = server->client_acl;
	if (!IS_ERR(rpc))
		rpc_killall_tasks(rpc);
	rpc = server->client;
	if (!IS_ERR(rpc))
		rpc_killall_tasks(rpc);
D
David Howells 已提交
447 448 449
}

/*
450 451
 * Validate the NFS2/NFS3 mount data
 * - fills in the mount root filehandle
D
David Howells 已提交
452
 */
453 454
static int nfs_validate_mount_data(struct nfs_mount_data *data,
				   struct nfs_fh *mntfh)
D
David Howells 已提交
455
{
456 457 458
	if (data == NULL) {
		dprintk("%s: missing data argument\n", __FUNCTION__);
		return -EINVAL;
D
David Howells 已提交
459 460
	}

461 462 463 464
	if (data->version <= 0 || data->version > NFS_MOUNT_VERSION) {
		dprintk("%s: bad mount version\n", __FUNCTION__);
		return -EINVAL;
	}
D
David Howells 已提交
465

466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
	switch (data->version) {
		case 1:
			data->namlen = 0;
		case 2:
			data->bsize  = 0;
		case 3:
			if (data->flags & NFS_MOUNT_VER3) {
				dprintk("%s: mount structure version %d does not support NFSv3\n",
						__FUNCTION__,
						data->version);
				return -EINVAL;
			}
			data->root.size = NFS2_FHSIZE;
			memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
		case 4:
			if (data->flags & NFS_MOUNT_SECFLAVOUR) {
				dprintk("%s: mount structure version %d does not support strong security\n",
						__FUNCTION__,
						data->version);
				return -EINVAL;
			}
		case 5:
			memset(data->context, 0, sizeof(data->context));
D
David Howells 已提交
489
	}
490

491 492 493 494
	/* Set the pseudoflavor */
	if (!(data->flags & NFS_MOUNT_SECFLAVOUR))
		data->pseudoflavor = RPC_AUTH_UNIX;

495 496 497 498 499
#ifndef CONFIG_NFS_V3
	/* If NFSv3 is not compiled in, return -EPROTONOSUPPORT */
	if (data->flags & NFS_MOUNT_VER3) {
		dprintk("%s: NFSv3 not compiled into kernel\n", __FUNCTION__);
		return -EPROTONOSUPPORT;
D
David Howells 已提交
500
	}
501
#endif /* CONFIG_NFS_V3 */
D
David Howells 已提交
502

503 504 505 506 507
	/* We now require that the mount process passes the remote address */
	if (data->addr.sin_addr.s_addr == INADDR_ANY) {
		dprintk("%s: mount program didn't pass remote address!\n",
			__FUNCTION__);
		return -EINVAL;
D
David Howells 已提交
508 509
	}

510 511 512 513 514
	/* Prepare the root filehandle */
	if (data->flags & NFS_MOUNT_VER3)
		mntfh->size = data->root.size;
	else
		mntfh->size = NFS2_FHSIZE;
D
David Howells 已提交
515

516 517 518 519 520 521 522 523 524
	if (mntfh->size > sizeof(mntfh->data)) {
		dprintk("%s: invalid root filehandle\n", __FUNCTION__);
		return -EINVAL;
	}

	memcpy(mntfh->data, data->root.data, mntfh->size);
	if (mntfh->size < sizeof(mntfh->data))
		memset(mntfh->data + mntfh->size, 0,
		       sizeof(mntfh->data) - mntfh->size);
D
David Howells 已提交
525 526 527 528 529

	return 0;
}

/*
530
 * Initialise the common bits of the superblock
D
David Howells 已提交
531
 */
532
static inline void nfs_initialise_sb(struct super_block *sb)
D
David Howells 已提交
533
{
534
	struct nfs_server *server = NFS_SB(sb);
535

536
	sb->s_magic = NFS_SUPER_MAGIC;
D
David Howells 已提交
537

538 539 540
	/* We probably want something more informative here */
	snprintf(sb->s_id, sizeof(sb->s_id),
		 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
541

542 543 544
	if (sb->s_blocksize == 0)
		sb->s_blocksize = nfs_block_bits(server->wsize,
						 &sb->s_blocksize_bits);
D
David Howells 已提交
545

546 547
	if (server->flags & NFS_MOUNT_NOAC)
		sb->s_flags |= MS_SYNCHRONOUS;
D
David Howells 已提交
548

549
	nfs_super_set_maxbytes(sb, server->maxfilesize);
D
David Howells 已提交
550 551 552
}

/*
553
 * Finish setting up an NFS2/3 superblock
D
David Howells 已提交
554
 */
555
static void nfs_fill_super(struct super_block *sb, struct nfs_mount_data *data)
D
David Howells 已提交
556 557
{
	struct nfs_server *server = NFS_SB(sb);
558

559 560 561 562
	sb->s_blocksize_bits = 0;
	sb->s_blocksize = 0;
	if (data->bsize)
		sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
D
David Howells 已提交
563

564 565 566 567 568 569
	if (server->flags & NFS_MOUNT_VER3) {
		/* The VFS shouldn't apply the umask to mode bits. We will do
		 * so ourselves when necessary.
		 */
		sb->s_flags |= MS_POSIXACL;
		sb->s_time_gran = 1;
570
	}
571 572 573

	sb->s_op = &nfs_sops;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
574 575 576
}

/*
577
 * Finish setting up a cloned NFS2/3 superblock
D
David Howells 已提交
578
 */
579 580
static void nfs_clone_super(struct super_block *sb,
			    const struct super_block *old_sb)
D
David Howells 已提交
581
{
582 583 584 585 586
	struct nfs_server *server = NFS_SB(sb);

	sb->s_blocksize_bits = old_sb->s_blocksize_bits;
	sb->s_blocksize = old_sb->s_blocksize;
	sb->s_maxbytes = old_sb->s_maxbytes;
D
David Howells 已提交
587 588

	if (server->flags & NFS_MOUNT_VER3) {
589 590
		/* The VFS shouldn't apply the umask to mode bits. We will do
		 * so ourselves when necessary.
D
David Howells 已提交
591 592 593 594 595
		 */
		sb->s_flags |= MS_POSIXACL;
		sb->s_time_gran = 1;
	}

596 597
	sb->s_op = old_sb->s_op;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
598 599
}

600
static int nfs_set_super(struct super_block *s, void *_server)
D
David Howells 已提交
601
{
602 603 604 605 606 607 608 609
	struct nfs_server *server = _server;
	int ret;

	s->s_fs_info = server;
	ret = set_anon_super(s, server);
	if (ret == 0)
		server->s_dev = s->s_dev;
	return ret;
D
David Howells 已提交
610 611 612 613
}

static int nfs_compare_super(struct super_block *sb, void *data)
{
614
	struct nfs_server *server = data, *old = NFS_SB(sb);
D
David Howells 已提交
615

616
	if (old->nfs_client != server->nfs_client)
D
David Howells 已提交
617
		return 0;
618
	if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
D
David Howells 已提交
619
		return 0;
620
	return 1;
D
David Howells 已提交
621 622
}

623 624
static int nfs_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
D
David Howells 已提交
625 626 627
{
	struct nfs_server *server = NULL;
	struct super_block *s;
628
	struct nfs_fh mntfh;
D
David Howells 已提交
629
	struct nfs_mount_data *data = raw_data;
630 631
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
632

633 634 635 636
	/* Validate the mount data */
	error = nfs_validate_mount_data(data, &mntfh);
	if (error < 0)
		return error;
D
David Howells 已提交
637

638 639 640 641
	/* Get a volume representation */
	server = nfs_create_server(data, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
642
		goto out_err_noserver;
D
David Howells 已提交
643 644
	}

645
	/* Get a superblock - note that we may end up sharing one that already exists */
D
David Howells 已提交
646
	s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
647 648
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
649
		goto out_err_nosb;
650 651
	}

652 653 654 655
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}
D
David Howells 已提交
656

657 658 659 660 661
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs_fill_super(s, data);
	}
D
David Howells 已提交
662

663 664 665 666
	mntroot = nfs_get_root(s, &mntfh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
667
	}
668

669 670 671 672
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
	return 0;
673

674 675
out_err_nosb:
	nfs_free_server(server);
676 677
out_err_noserver:
	return error;
678 679 680 681 682

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
	return error;
D
David Howells 已提交
683 684
}

685 686 687
/*
 * Destroy an NFS2/3 superblock
 */
D
David Howells 已提交
688 689 690 691 692
static void nfs_kill_super(struct super_block *s)
{
	struct nfs_server *server = NFS_SB(s);

	kill_anon_super(s);
693
	nfs_free_server(server);
D
David Howells 已提交
694 695
}

696 697 698 699 700 701
/*
 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
 */
static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
			   const char *dev_name, void *raw_data,
			   struct vfsmount *mnt)
D
David Howells 已提交
702 703
{
	struct nfs_clone_mount *data = raw_data;
704 705 706 707
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
708

709
	dprintk("--> nfs_xdev_get_sb()\n");
D
David Howells 已提交
710

711 712 713 714 715 716
	/* create a new volume representation */
	server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
		goto out_err_noserver;
	}
717

718 719 720 721 722 723
	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(&nfs_fs_type, nfs_compare_super, nfs_set_super, server);
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
		goto out_err_nosb;
	}
724

725 726 727
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
D
David Howells 已提交
728
	}
729

730 731 732 733 734
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs_clone_super(s, data->sb);
	}
D
David Howells 已提交
735

736 737 738 739
	mntroot = nfs_get_root(s, data->fh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
740 741
	}

742 743 744
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
D
David Howells 已提交
745

746 747
	dprintk("<-- nfs_xdev_get_sb() = 0\n");
	return 0;
748

749 750 751 752 753
out_err_nosb:
	nfs_free_server(server);
out_err_noserver:
	dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
	return error;
D
David Howells 已提交
754

755 756 757 758 759
error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
	dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
	return error;
D
David Howells 已提交
760 761
}

762 763
#ifdef CONFIG_NFS_V4

D
David Howells 已提交
764
/*
765
 * Finish setting up a cloned NFS4 superblock
D
David Howells 已提交
766
 */
767 768
static void nfs4_clone_super(struct super_block *sb,
			    const struct super_block *old_sb)
D
David Howells 已提交
769
{
770 771 772
	sb->s_blocksize_bits = old_sb->s_blocksize_bits;
	sb->s_blocksize = old_sb->s_blocksize;
	sb->s_maxbytes = old_sb->s_maxbytes;
D
David Howells 已提交
773
	sb->s_time_gran = 1;
774 775
	sb->s_op = old_sb->s_op;
 	nfs_initialise_sb(sb);
D
David Howells 已提交
776 777
}

778 779 780 781
/*
 * Set up an NFS4 superblock
 */
static void nfs4_fill_super(struct super_block *sb)
D
David Howells 已提交
782
{
783 784 785
	sb->s_time_gran = 1;
	sb->s_op = &nfs4_sops;
	nfs_initialise_sb(sb);
D
David Howells 已提交
786 787
}

788 789 790
/*
 * Get the superblock for an NFS4 mountpoint
 */
791 792
static int nfs4_get_sb(struct file_system_type *fs_type,
	int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
D
David Howells 已提交
793 794
{
	struct nfs4_mount_data *data = raw_data;
795 796 797 798 799 800
	struct super_block *s;
	struct nfs_server *server;
	struct sockaddr_in addr;
	rpc_authflavor_t authflavour;
	struct nfs_fh mntfh;
	struct dentry *mntroot;
801
	char *p, *mntpath = NULL, *hostname = NULL, *ip_addr = NULL;
802
	int error;
D
David Howells 已提交
803 804 805

	if (data == NULL) {
		dprintk("%s: missing data argument\n", __FUNCTION__);
806
		return -EINVAL;
D
David Howells 已提交
807 808 809
	}
	if (data->version <= 0 || data->version > NFS4_MOUNT_VERSION) {
		dprintk("%s: bad mount version\n", __FUNCTION__);
810
		return -EINVAL;
D
David Howells 已提交
811 812
	}

813 814 815 816 817 818 819 820 821 822 823 824 825 826
	/* We now require that the mount process passes the remote address */
	if (data->host_addrlen != sizeof(addr))
		return -EINVAL;

	if (copy_from_user(&addr, data->host_addr, sizeof(addr)))
		return -EFAULT;

	if (addr.sin_family != AF_INET ||
	    addr.sin_addr.s_addr == INADDR_ANY
	    ) {
		dprintk("%s: mount program didn't pass remote IP address!\n",
				__FUNCTION__);
		return -EINVAL;
	}
827 828
	/* RFC3530: The default port for NFS is 2049 */
	if (addr.sin_port == 0)
829
		addr.sin_port = htons(NFS_PORT);
830 831 832 833 834 835 836 837

	/* Grab the authentication type */
	authflavour = RPC_AUTH_UNIX;
	if (data->auth_flavourlen != 0) {
		if (data->auth_flavourlen != 1) {
			dprintk("%s: Invalid number of RPC auth flavours %d.\n",
					__FUNCTION__, data->auth_flavourlen);
			error = -EINVAL;
838
			goto out;
839 840 841 842 843
		}

		if (copy_from_user(&authflavour, data->auth_flavours,
				   sizeof(authflavour))) {
			error = -EFAULT;
844
			goto out;
845 846
		}
	}
D
David Howells 已提交
847

848
	p = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
D
David Howells 已提交
849 850
	if (IS_ERR(p))
		goto out_err;
851
	hostname = p;
D
David Howells 已提交
852

853
	p = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
D
David Howells 已提交
854 855
	if (IS_ERR(p))
		goto out_err;
856
	mntpath = p;
D
David Howells 已提交
857

858 859
	dprintk("MNTPATH: %s\n", mntpath);

860
	p = strndup_user(data->client_addr.data, 16);
D
David Howells 已提交
861 862
	if (IS_ERR(p))
		goto out_err;
863
	ip_addr = p;
D
David Howells 已提交
864

865 866 867 868 869
	/* Get a volume representation */
	server = nfs4_create_server(data, hostname, &addr, mntpath, ip_addr,
				    authflavour, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
870
		goto out;
D
David Howells 已提交
871 872
	}

873 874
	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
875 876
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
D
David Howells 已提交
877
		goto out_free;
878 879
	}

880 881 882 883 884
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}

885 886 887 888 889
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_fill_super(s);
	}
D
David Howells 已提交
890

891 892 893 894
	mntroot = nfs4_get_root(s, &mntfh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
D
David Howells 已提交
895
	}
896

D
David Howells 已提交
897
	s->s_flags |= MS_ACTIVE;
898 899
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;
900 901 902 903
	error = 0;

out:
	kfree(ip_addr);
904 905
	kfree(mntpath);
	kfree(hostname);
906
	return error;
907

D
David Howells 已提交
908
out_err:
909
	error = PTR_ERR(p);
910
	goto out;
911

D
David Howells 已提交
912
out_free:
913
	nfs_free_server(server);
914
	goto out;
915 916 917 918

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
919
	goto out;
D
David Howells 已提交
920 921 922 923 924 925 926 927 928 929
}

static void nfs4_kill_super(struct super_block *sb)
{
	struct nfs_server *server = NFS_SB(sb);

	nfs_return_all_delegations(sb);
	kill_anon_super(sb);

	nfs4_renewd_prepare_shutdown(server);
930
	nfs_free_server(server);
D
David Howells 已提交
931 932 933
}

/*
934
 * Clone an NFS4 server record on xdev traversal (FSID-change)
D
David Howells 已提交
935
 */
936 937 938
static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
			    const char *dev_name, void *raw_data,
			    struct vfsmount *mnt)
D
David Howells 已提交
939
{
940 941 942 943 944
	struct nfs_clone_mount *data = raw_data;
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	int error;
D
David Howells 已提交
945

946
	dprintk("--> nfs4_xdev_get_sb()\n");
D
David Howells 已提交
947

948 949 950 951 952
	/* create a new volume representation */
	server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
		goto out_err_noserver;
D
David Howells 已提交
953 954
	}

955 956 957 958 959
	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(&nfs_fs_type, nfs_compare_super, nfs_set_super, server);
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
		goto out_err_nosb;
D
David Howells 已提交
960 961
	}

962 963 964 965
	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}
D
David Howells 已提交
966

967 968 969 970 971
	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_clone_super(s, data->sb);
	}
D
David Howells 已提交
972

973 974 975 976 977
	mntroot = nfs4_get_root(s, data->fh);
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
	}
D
David Howells 已提交
978

979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;

	dprintk("<-- nfs4_xdev_get_sb() = 0\n");
	return 0;

out_err_nosb:
	nfs_free_server(server);
out_err_noserver:
	dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
	return error;

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
	dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
	return error;
D
David Howells 已提交
997 998
}

999 1000 1001 1002 1003 1004
/*
 * Create an NFS4 server record on referral traversal
 */
static int nfs4_referral_get_sb(struct file_system_type *fs_type, int flags,
				const char *dev_name, void *raw_data,
				struct vfsmount *mnt)
D
David Howells 已提交
1005 1006
{
	struct nfs_clone_mount *data = raw_data;
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
	struct super_block *s;
	struct nfs_server *server;
	struct dentry *mntroot;
	struct nfs_fh mntfh;
	int error;

	dprintk("--> nfs4_referral_get_sb()\n");

	/* create a new volume representation */
	server = nfs4_create_referral_server(data, &mntfh);
	if (IS_ERR(server)) {
		error = PTR_ERR(server);
		goto out_err_noserver;
	}

	/* Get a superblock - note that we may end up sharing one that already exists */
	s = sget(&nfs_fs_type, nfs_compare_super, nfs_set_super, server);
	if (IS_ERR(s)) {
		error = PTR_ERR(s);
		goto out_err_nosb;
	}

	if (s->s_fs_info != server) {
		nfs_free_server(server);
		server = NULL;
	}

	if (!s->s_root) {
		/* initial superblock/root creation */
		s->s_flags = flags;
		nfs4_fill_super(s);
	}

1040
	mntroot = nfs4_get_root(s, &mntfh);
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
	if (IS_ERR(mntroot)) {
		error = PTR_ERR(mntroot);
		goto error_splat_super;
	}

	s->s_flags |= MS_ACTIVE;
	mnt->mnt_sb = s;
	mnt->mnt_root = mntroot;

	dprintk("<-- nfs4_referral_get_sb() = 0\n");
	return 0;

out_err_nosb:
	nfs_free_server(server);
out_err_noserver:
	dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
	return error;

error_splat_super:
	up_write(&s->s_umount);
	deactivate_super(s);
	dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
	return error;
D
David Howells 已提交
1064 1065
}

1066
#endif /* CONFIG_NFS_V4 */