4 * Copyright (C) 1992 Rick Sladkey
6 * nfs superblock handling functions
8 * Modularised by Alan Cox <alan@lxorguk.ukuu.org.uk>, while hacking some
9 * experimental NFS changes. Modularisation taken straight from SYS5 fs.
11 * Change to nfs_read_super() to permit NFS mounts to multi-homed hosts.
12 * J.S.Peatfield@damtp.cam.ac.uk
14 * Split from inode.c by David Howells <dhowells@redhat.com>
16 * - superblocks are indexed on server only - all inodes, dentries, etc. associated with a
17 * particular server are held in the same superblock
18 * - NFS superblocks can have several effective roots to the dentry tree
19 * - directory type roots are spliced into the tree when a path from one root reaches the root
20 * of another (see nfs_lookup())
23 #include <linux/module.h>
24 #include <linux/init.h>
26 #include <linux/time.h>
27 #include <linux/kernel.h>
29 #include <linux/string.h>
30 #include <linux/stat.h>
31 #include <linux/errno.h>
32 #include <linux/unistd.h>
33 #include <linux/sunrpc/clnt.h>
34 #include <linux/sunrpc/stats.h>
35 #include <linux/sunrpc/metrics.h>
36 #include <linux/sunrpc/xprtsock.h>
37 #include <linux/sunrpc/xprtrdma.h>
38 #include <linux/nfs_fs.h>
39 #include <linux/nfs_mount.h>
40 #include <linux/nfs4_mount.h>
41 #include <linux/lockd/bind.h>
42 #include <linux/smp_lock.h>
43 #include <linux/seq_file.h>
44 #include <linux/mount.h>
45 #include <linux/mnt_namespace.h>
46 #include <linux/namei.h>
47 #include <linux/nfs_idmap.h>
48 #include <linux/vfs.h>
49 #include <linux/inet.h>
50 #include <linux/in6.h>
51 #include <linux/slab.h>
53 #include <linux/netdevice.h>
54 #include <linux/nfs_xdr.h>
55 #include <linux/magic.h>
56 #include <linux/parser.h>
58 #include <asm/system.h>
59 #include <asm/uaccess.h>
63 #include "delegation.h"
68 #define NFSDBG_FACILITY NFSDBG_VFS
71 /* Mount options that take no arguments */
73 Opt_posix, Opt_noposix,
77 Opt_v2, Opt_v3, Opt_v4,
78 Opt_udp, Opt_tcp, Opt_rdma,
80 Opt_rdirplus, Opt_nordirplus,
81 Opt_sharecache, Opt_nosharecache,
82 Opt_resvport, Opt_noresvport,
83 Opt_fscache, Opt_nofscache,
85 /* Mount options that take integer arguments */
87 Opt_rsize, Opt_wsize, Opt_bsize,
88 Opt_timeo, Opt_retrans,
89 Opt_acregmin, Opt_acregmax,
90 Opt_acdirmin, Opt_acdirmax,
98 /* Mount options that take string arguments */
99 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
100 Opt_addr, Opt_mountaddr, Opt_clientaddr,
104 /* Special mount options */
105 Opt_userspace, Opt_deprecated, Opt_sloppy,
110 static const match_table_t nfs_mount_option_tokens = {
111 { Opt_userspace, "bg" },
112 { Opt_userspace, "fg" },
113 { Opt_userspace, "retry=%s" },
115 { Opt_sloppy, "sloppy" },
117 { Opt_soft, "soft" },
118 { Opt_hard, "hard" },
119 { Opt_deprecated, "intr" },
120 { Opt_deprecated, "nointr" },
121 { Opt_posix, "posix" },
122 { Opt_noposix, "noposix" },
124 { Opt_nocto, "nocto" },
126 { Opt_noac, "noac" },
127 { Opt_lock, "lock" },
128 { Opt_nolock, "nolock" },
134 { Opt_rdma, "rdma" },
136 { Opt_noacl, "noacl" },
137 { Opt_rdirplus, "rdirplus" },
138 { Opt_nordirplus, "nordirplus" },
139 { Opt_sharecache, "sharecache" },
140 { Opt_nosharecache, "nosharecache" },
141 { Opt_resvport, "resvport" },
142 { Opt_noresvport, "noresvport" },
143 { Opt_fscache, "fsc" },
144 { Opt_nofscache, "nofsc" },
146 { Opt_port, "port=%s" },
147 { Opt_rsize, "rsize=%s" },
148 { Opt_wsize, "wsize=%s" },
149 { Opt_bsize, "bsize=%s" },
150 { Opt_timeo, "timeo=%s" },
151 { Opt_retrans, "retrans=%s" },
152 { Opt_acregmin, "acregmin=%s" },
153 { Opt_acregmax, "acregmax=%s" },
154 { Opt_acdirmin, "acdirmin=%s" },
155 { Opt_acdirmax, "acdirmax=%s" },
156 { Opt_actimeo, "actimeo=%s" },
157 { Opt_namelen, "namlen=%s" },
158 { Opt_mountport, "mountport=%s" },
159 { Opt_mountvers, "mountvers=%s" },
160 { Opt_nfsvers, "nfsvers=%s" },
161 { Opt_nfsvers, "vers=%s" },
162 { Opt_minorversion, "minorversion=%s" },
164 { Opt_sec, "sec=%s" },
165 { Opt_proto, "proto=%s" },
166 { Opt_mountproto, "mountproto=%s" },
167 { Opt_addr, "addr=%s" },
168 { Opt_clientaddr, "clientaddr=%s" },
169 { Opt_mounthost, "mounthost=%s" },
170 { Opt_mountaddr, "mountaddr=%s" },
172 { Opt_lookupcache, "lookupcache=%s" },
173 { Opt_fscache_uniq, "fsc=%s" },
179 Opt_xprt_udp, Opt_xprt_udp6, Opt_xprt_tcp, Opt_xprt_tcp6, Opt_xprt_rdma,
184 static const match_table_t nfs_xprt_protocol_tokens = {
185 { Opt_xprt_udp, "udp" },
186 { Opt_xprt_udp6, "udp6" },
187 { Opt_xprt_tcp, "tcp" },
188 { Opt_xprt_tcp6, "tcp6" },
189 { Opt_xprt_rdma, "rdma" },
191 { Opt_xprt_err, NULL }
195 Opt_sec_none, Opt_sec_sys,
196 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
197 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
198 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
203 static const match_table_t nfs_secflavor_tokens = {
204 { Opt_sec_none, "none" },
205 { Opt_sec_none, "null" },
206 { Opt_sec_sys, "sys" },
208 { Opt_sec_krb5, "krb5" },
209 { Opt_sec_krb5i, "krb5i" },
210 { Opt_sec_krb5p, "krb5p" },
212 { Opt_sec_lkey, "lkey" },
213 { Opt_sec_lkeyi, "lkeyi" },
214 { Opt_sec_lkeyp, "lkeyp" },
216 { Opt_sec_spkm, "spkm3" },
217 { Opt_sec_spkmi, "spkm3i" },
218 { Opt_sec_spkmp, "spkm3p" },
220 { Opt_sec_err, NULL }
224 Opt_lookupcache_all, Opt_lookupcache_positive,
225 Opt_lookupcache_none,
230 static match_table_t nfs_lookupcache_tokens = {
231 { Opt_lookupcache_all, "all" },
232 { Opt_lookupcache_positive, "pos" },
233 { Opt_lookupcache_positive, "positive" },
234 { Opt_lookupcache_none, "none" },
236 { Opt_lookupcache_err, NULL }
240 static void nfs_umount_begin(struct super_block *);
241 static int nfs_statfs(struct dentry *, struct kstatfs *);
242 static int nfs_show_options(struct seq_file *, struct vfsmount *);
243 static int nfs_show_stats(struct seq_file *, struct vfsmount *);
244 static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
245 static int nfs_xdev_get_sb(struct file_system_type *fs_type,
246 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
247 static void nfs_put_super(struct super_block *);
248 static void nfs_kill_super(struct super_block *);
249 static int nfs_remount(struct super_block *sb, int *flags, char *raw_data);
251 static struct file_system_type nfs_fs_type = {
252 .owner = THIS_MODULE,
254 .get_sb = nfs_get_sb,
255 .kill_sb = nfs_kill_super,
256 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
259 struct file_system_type nfs_xdev_fs_type = {
260 .owner = THIS_MODULE,
262 .get_sb = nfs_xdev_get_sb,
263 .kill_sb = nfs_kill_super,
264 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
267 static const struct super_operations nfs_sops = {
268 .alloc_inode = nfs_alloc_inode,
269 .destroy_inode = nfs_destroy_inode,
270 .write_inode = nfs_write_inode,
271 .put_super = nfs_put_super,
272 .statfs = nfs_statfs,
273 .clear_inode = nfs_clear_inode,
274 .umount_begin = nfs_umount_begin,
275 .show_options = nfs_show_options,
276 .show_stats = nfs_show_stats,
277 .remount_fs = nfs_remount,
281 static int nfs4_validate_text_mount_data(void *options,
282 struct nfs_parsed_mount_data *args, const char *dev_name);
283 static int nfs4_try_mount(int flags, const char *dev_name,
284 struct nfs_parsed_mount_data *data, struct vfsmount *mnt);
285 static int nfs4_get_sb(struct file_system_type *fs_type,
286 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
287 static int nfs4_remote_get_sb(struct file_system_type *fs_type,
288 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
289 static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
290 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
291 static int nfs4_referral_get_sb(struct file_system_type *fs_type,
292 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
293 static int nfs4_remote_referral_get_sb(struct file_system_type *fs_type,
294 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
295 static void nfs4_kill_super(struct super_block *sb);
297 static struct file_system_type nfs4_fs_type = {
298 .owner = THIS_MODULE,
300 .get_sb = nfs4_get_sb,
301 .kill_sb = nfs4_kill_super,
302 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
305 static struct file_system_type nfs4_remote_fs_type = {
306 .owner = THIS_MODULE,
308 .get_sb = nfs4_remote_get_sb,
309 .kill_sb = nfs4_kill_super,
310 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
313 struct file_system_type nfs4_xdev_fs_type = {
314 .owner = THIS_MODULE,
316 .get_sb = nfs4_xdev_get_sb,
317 .kill_sb = nfs4_kill_super,
318 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
321 static struct file_system_type nfs4_remote_referral_fs_type = {
322 .owner = THIS_MODULE,
324 .get_sb = nfs4_remote_referral_get_sb,
325 .kill_sb = nfs4_kill_super,
326 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
329 struct file_system_type nfs4_referral_fs_type = {
330 .owner = THIS_MODULE,
332 .get_sb = nfs4_referral_get_sb,
333 .kill_sb = nfs4_kill_super,
334 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
337 static const struct super_operations nfs4_sops = {
338 .alloc_inode = nfs_alloc_inode,
339 .destroy_inode = nfs_destroy_inode,
340 .write_inode = nfs_write_inode,
341 .put_super = nfs_put_super,
342 .statfs = nfs_statfs,
343 .clear_inode = nfs4_clear_inode,
344 .umount_begin = nfs_umount_begin,
345 .show_options = nfs_show_options,
346 .show_stats = nfs_show_stats,
347 .remount_fs = nfs_remount,
351 static struct shrinker acl_shrinker = {
352 .shrink = nfs_access_cache_shrinker,
353 .seeks = DEFAULT_SEEKS,
357 * Register the NFS filesystems
359 int __init register_nfs_fs(void)
363 ret = register_filesystem(&nfs_fs_type);
367 ret = nfs_register_sysctl();
371 ret = register_filesystem(&nfs4_fs_type);
375 register_shrinker(&acl_shrinker);
380 nfs_unregister_sysctl();
383 unregister_filesystem(&nfs_fs_type);
389 * Unregister the NFS filesystems
391 void __exit unregister_nfs_fs(void)
393 unregister_shrinker(&acl_shrinker);
395 unregister_filesystem(&nfs4_fs_type);
397 nfs_unregister_sysctl();
398 unregister_filesystem(&nfs_fs_type);
401 void nfs_sb_active(struct super_block *sb)
403 struct nfs_server *server = NFS_SB(sb);
405 if (atomic_inc_return(&server->active) == 1)
406 atomic_inc(&sb->s_active);
409 void nfs_sb_deactive(struct super_block *sb)
411 struct nfs_server *server = NFS_SB(sb);
413 if (atomic_dec_and_test(&server->active))
414 deactivate_super(sb);
418 * Deliver file system statistics to userspace
420 static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
422 struct nfs_server *server = NFS_SB(dentry->d_sb);
423 unsigned char blockbits;
424 unsigned long blockres;
425 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
426 struct nfs_fsstat res;
429 res.fattr = nfs_alloc_fattr();
430 if (res.fattr == NULL)
433 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
435 nfs_free_fattr(res.fattr);
439 buf->f_type = NFS_SUPER_MAGIC;
442 * Current versions of glibc do not correctly handle the
443 * case where f_frsize != f_bsize. Eventually we want to
444 * report the value of wtmult in this field.
446 buf->f_frsize = dentry->d_sb->s_blocksize;
449 * On most *nix systems, f_blocks, f_bfree, and f_bavail
450 * are reported in units of f_frsize. Linux hasn't had
451 * an f_frsize field in its statfs struct until recently,
452 * thus historically Linux's sys_statfs reports these
453 * fields in units of f_bsize.
455 buf->f_bsize = dentry->d_sb->s_blocksize;
456 blockbits = dentry->d_sb->s_blocksize_bits;
457 blockres = (1 << blockbits) - 1;
458 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
459 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
460 buf->f_bavail = (res.abytes + blockres) >> blockbits;
462 buf->f_files = res.tfiles;
463 buf->f_ffree = res.afiles;
465 buf->f_namelen = server->namelen;
470 dprintk("%s: statfs error = %d\n", __func__, -error);
475 * Map the security flavour number to a name
477 static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
479 static const struct {
480 rpc_authflavor_t flavour;
483 { RPC_AUTH_NULL, "null" },
484 { RPC_AUTH_UNIX, "sys" },
485 { RPC_AUTH_GSS_KRB5, "krb5" },
486 { RPC_AUTH_GSS_KRB5I, "krb5i" },
487 { RPC_AUTH_GSS_KRB5P, "krb5p" },
488 { RPC_AUTH_GSS_LKEY, "lkey" },
489 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
490 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
491 { RPC_AUTH_GSS_SPKM, "spkm" },
492 { RPC_AUTH_GSS_SPKMI, "spkmi" },
493 { RPC_AUTH_GSS_SPKMP, "spkmp" },
494 { UINT_MAX, "unknown" }
498 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
499 if (sec_flavours[i].flavour == flavour)
502 return sec_flavours[i].str;
505 static void nfs_show_mountd_netid(struct seq_file *m, struct nfs_server *nfss,
508 struct sockaddr *sap = (struct sockaddr *) &nfss->mountd_address;
510 seq_printf(m, ",mountproto=");
511 switch (sap->sa_family) {
513 switch (nfss->mountd_protocol) {
515 seq_printf(m, RPCBIND_NETID_UDP);
518 seq_printf(m, RPCBIND_NETID_TCP);
522 seq_printf(m, "auto");
526 switch (nfss->mountd_protocol) {
528 seq_printf(m, RPCBIND_NETID_UDP6);
531 seq_printf(m, RPCBIND_NETID_TCP6);
535 seq_printf(m, "auto");
540 seq_printf(m, "auto");
544 static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss,
547 struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address;
549 switch (sap->sa_family) {
551 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
552 seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr);
556 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
557 seq_printf(m, ",mountaddr=%pI6c", &sin6->sin6_addr);
562 seq_printf(m, ",mountaddr=unspecified");
565 if (nfss->mountd_version || showdefaults)
566 seq_printf(m, ",mountvers=%u", nfss->mountd_version);
567 if (nfss->mountd_port || showdefaults)
568 seq_printf(m, ",mountport=%u", nfss->mountd_port);
570 nfs_show_mountd_netid(m, nfss, showdefaults);
574 * Describe the mount options in force on this server representation
576 static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
579 static const struct proc_nfs_info {
584 { NFS_MOUNT_SOFT, ",soft", ",hard" },
585 { NFS_MOUNT_POSIX, ",posix", "" },
586 { NFS_MOUNT_NOCTO, ",nocto", "" },
587 { NFS_MOUNT_NOAC, ",noac", "" },
588 { NFS_MOUNT_NONLM, ",nolock", "" },
589 { NFS_MOUNT_NOACL, ",noacl", "" },
590 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
591 { NFS_MOUNT_UNSHARED, ",nosharecache", "" },
592 { NFS_MOUNT_NORESVPORT, ",noresvport", "" },
595 const struct proc_nfs_info *nfs_infop;
596 struct nfs_client *clp = nfss->nfs_client;
597 u32 version = clp->rpc_ops->version;
599 seq_printf(m, ",vers=%u", version);
600 seq_printf(m, ",rsize=%u", nfss->rsize);
601 seq_printf(m, ",wsize=%u", nfss->wsize);
602 if (nfss->bsize != 0)
603 seq_printf(m, ",bsize=%u", nfss->bsize);
604 seq_printf(m, ",namlen=%u", nfss->namelen);
605 if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults)
606 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
607 if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults)
608 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
609 if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults)
610 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
611 if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults)
612 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
613 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
614 if (nfss->flags & nfs_infop->flag)
615 seq_puts(m, nfs_infop->str);
617 seq_puts(m, nfs_infop->nostr);
619 seq_printf(m, ",proto=%s",
620 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_NETID));
622 if (nfss->port != NFS_PORT)
623 seq_printf(m, ",port=%u", nfss->port);
626 seq_printf(m, ",port=%u", nfss->port);
628 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
629 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
630 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
633 nfs_show_mountd_options(m, nfss, showdefaults);
636 if (clp->rpc_ops->version == 4)
637 seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr);
639 if (nfss->options & NFS_OPTION_FSCACHE)
640 seq_printf(m, ",fsc");
644 * Describe the mount options on this VFS mountpoint
646 static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
648 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
650 nfs_show_mount_options(m, nfss, 0);
652 seq_printf(m, ",addr=%s",
653 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
660 * Present statistical information for this VFS mountpoint
662 static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
665 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
666 struct rpc_auth *auth = nfss->client->cl_auth;
667 struct nfs_iostats totals = { };
669 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
672 * Display all mount option settings
674 seq_printf(m, "\n\topts:\t");
675 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
676 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
677 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
678 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
679 nfs_show_mount_options(m, nfss, 1);
681 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
683 seq_printf(m, "\n\tcaps:\t");
684 seq_printf(m, "caps=0x%x", nfss->caps);
685 seq_printf(m, ",wtmult=%u", nfss->wtmult);
686 seq_printf(m, ",dtsize=%u", nfss->dtsize);
687 seq_printf(m, ",bsize=%u", nfss->bsize);
688 seq_printf(m, ",namlen=%u", nfss->namelen);
691 if (nfss->nfs_client->rpc_ops->version == 4) {
692 seq_printf(m, "\n\tnfsv4:\t");
693 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
694 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
695 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
700 * Display security flavor in effect for this mount
702 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
704 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
707 * Display superblock I/O counters
709 for_each_possible_cpu(cpu) {
710 struct nfs_iostats *stats;
713 stats = per_cpu_ptr(nfss->io_stats, cpu);
715 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
716 totals.events[i] += stats->events[i];
717 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
718 totals.bytes[i] += stats->bytes[i];
719 #ifdef CONFIG_NFS_FSCACHE
720 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
721 totals.fscache[i] += stats->fscache[i];
727 seq_printf(m, "\n\tevents:\t");
728 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
729 seq_printf(m, "%lu ", totals.events[i]);
730 seq_printf(m, "\n\tbytes:\t");
731 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
732 seq_printf(m, "%Lu ", totals.bytes[i]);
733 #ifdef CONFIG_NFS_FSCACHE
734 if (nfss->options & NFS_OPTION_FSCACHE) {
735 seq_printf(m, "\n\tfsc:\t");
736 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
737 seq_printf(m, "%Lu ", totals.bytes[i]);
742 rpc_print_iostats(m, nfss->client);
748 * Begin unmount by attempting to remove all automounted mountpoints we added
749 * in response to xdev traversals and referrals
751 static void nfs_umount_begin(struct super_block *sb)
753 struct nfs_server *server;
754 struct rpc_clnt *rpc;
757 /* -EIO all pending I/O */
758 rpc = server->client_acl;
760 rpc_killall_tasks(rpc);
761 rpc = server->client;
763 rpc_killall_tasks(rpc);
766 static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int version)
768 struct nfs_parsed_mount_data *data;
770 data = kzalloc(sizeof(*data), GFP_KERNEL);
772 data->acregmin = NFS_DEF_ACREGMIN;
773 data->acregmax = NFS_DEF_ACREGMAX;
774 data->acdirmin = NFS_DEF_ACDIRMIN;
775 data->acdirmax = NFS_DEF_ACDIRMAX;
776 data->mount_server.port = NFS_UNSPEC_PORT;
777 data->nfs_server.port = NFS_UNSPEC_PORT;
778 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
779 data->auth_flavors[0] = RPC_AUTH_UNIX;
780 data->auth_flavor_len = 1;
781 data->version = version;
782 data->minorversion = 0;
788 * Sanity-check a server address provided by the mount command.
790 * Address family must be initialized, and address must not be
791 * the ANY address for that family.
793 static int nfs_verify_server_address(struct sockaddr *addr)
795 switch (addr->sa_family) {
797 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
798 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
801 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
802 return !ipv6_addr_any(sa);
806 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
811 * Select between a default port value and a user-specified port value.
812 * If a zero value is set, then autobind will be used.
814 static void nfs_set_port(struct sockaddr *sap, int *port,
815 const unsigned short default_port)
817 if (*port == NFS_UNSPEC_PORT)
818 *port = default_port;
820 rpc_set_port(sap, *port);
824 * Sanity check the NFS transport protocol.
827 static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
829 switch (mnt->nfs_server.protocol) {
830 case XPRT_TRANSPORT_UDP:
831 case XPRT_TRANSPORT_TCP:
832 case XPRT_TRANSPORT_RDMA:
835 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
840 * For text based NFSv2/v3 mounts, the mount protocol transport default
841 * settings should depend upon the specified NFS transport.
843 static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
845 nfs_validate_transport_protocol(mnt);
847 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
848 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
850 switch (mnt->nfs_server.protocol) {
851 case XPRT_TRANSPORT_UDP:
852 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
854 case XPRT_TRANSPORT_TCP:
855 case XPRT_TRANSPORT_RDMA:
856 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
861 * Parse the value of the 'sec=' option.
863 static int nfs_parse_security_flavors(char *value,
864 struct nfs_parsed_mount_data *mnt)
866 substring_t args[MAX_OPT_ARGS];
868 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
870 switch (match_token(value, nfs_secflavor_tokens, args)) {
872 mnt->auth_flavors[0] = RPC_AUTH_NULL;
875 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
878 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
881 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
884 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
887 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
890 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
893 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
896 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
899 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
902 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
908 mnt->auth_flavor_len = 1;
913 * Error-check and convert a string of mount options from user space into
914 * a data structure. The whole mount string is processed; bad options are
915 * skipped as they are encountered. If there were no errors, return 1;
916 * otherwise return 0 (zero).
918 static int nfs_parse_mount_options(char *raw,
919 struct nfs_parsed_mount_data *mnt)
921 char *p, *string, *secdata;
922 int rc, sloppy = 0, invalid_option = 0;
923 unsigned short protofamily = AF_UNSPEC;
924 unsigned short mountfamily = AF_UNSPEC;
927 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
930 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
932 secdata = alloc_secdata();
936 rc = security_sb_copy_data(raw, secdata);
938 goto out_security_failure;
940 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
942 goto out_security_failure;
944 free_secdata(secdata);
946 while ((p = strsep(&raw, ",")) != NULL) {
947 substring_t args[MAX_OPT_ARGS];
948 unsigned long option;
954 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
956 token = match_token(p, nfs_mount_option_tokens, args);
960 * boolean options: foo/nofoo
963 mnt->flags |= NFS_MOUNT_SOFT;
966 mnt->flags &= ~NFS_MOUNT_SOFT;
969 mnt->flags |= NFS_MOUNT_POSIX;
972 mnt->flags &= ~NFS_MOUNT_POSIX;
975 mnt->flags &= ~NFS_MOUNT_NOCTO;
978 mnt->flags |= NFS_MOUNT_NOCTO;
981 mnt->flags &= ~NFS_MOUNT_NOAC;
984 mnt->flags |= NFS_MOUNT_NOAC;
987 mnt->flags &= ~NFS_MOUNT_NONLM;
990 mnt->flags |= NFS_MOUNT_NONLM;
993 mnt->flags &= ~NFS_MOUNT_VER3;
997 mnt->flags |= NFS_MOUNT_VER3;
1000 #ifdef CONFIG_NFS_V4
1002 mnt->flags &= ~NFS_MOUNT_VER3;
1007 mnt->flags &= ~NFS_MOUNT_TCP;
1008 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
1011 mnt->flags |= NFS_MOUNT_TCP;
1012 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
1015 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
1016 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
1017 xprt_load_transport(p);
1020 mnt->flags &= ~NFS_MOUNT_NOACL;
1023 mnt->flags |= NFS_MOUNT_NOACL;
1026 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
1028 case Opt_nordirplus:
1029 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
1031 case Opt_sharecache:
1032 mnt->flags &= ~NFS_MOUNT_UNSHARED;
1034 case Opt_nosharecache:
1035 mnt->flags |= NFS_MOUNT_UNSHARED;
1038 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1040 case Opt_noresvport:
1041 mnt->flags |= NFS_MOUNT_NORESVPORT;
1044 mnt->options |= NFS_OPTION_FSCACHE;
1045 kfree(mnt->fscache_uniq);
1046 mnt->fscache_uniq = NULL;
1049 mnt->options &= ~NFS_OPTION_FSCACHE;
1050 kfree(mnt->fscache_uniq);
1051 mnt->fscache_uniq = NULL;
1055 * options that take numeric values
1058 string = match_strdup(args);
1061 rc = strict_strtoul(string, 10, &option);
1063 if (rc != 0 || option > USHRT_MAX)
1064 goto out_invalid_value;
1065 mnt->nfs_server.port = option;
1068 string = match_strdup(args);
1071 rc = strict_strtoul(string, 10, &option);
1074 goto out_invalid_value;
1075 mnt->rsize = option;
1078 string = match_strdup(args);
1081 rc = strict_strtoul(string, 10, &option);
1084 goto out_invalid_value;
1085 mnt->wsize = option;
1088 string = match_strdup(args);
1091 rc = strict_strtoul(string, 10, &option);
1094 goto out_invalid_value;
1095 mnt->bsize = option;
1098 string = match_strdup(args);
1101 rc = strict_strtoul(string, 10, &option);
1103 if (rc != 0 || option == 0)
1104 goto out_invalid_value;
1105 mnt->timeo = option;
1108 string = match_strdup(args);
1111 rc = strict_strtoul(string, 10, &option);
1113 if (rc != 0 || option == 0)
1114 goto out_invalid_value;
1115 mnt->retrans = option;
1118 string = match_strdup(args);
1121 rc = strict_strtoul(string, 10, &option);
1124 goto out_invalid_value;
1125 mnt->acregmin = option;
1128 string = match_strdup(args);
1131 rc = strict_strtoul(string, 10, &option);
1134 goto out_invalid_value;
1135 mnt->acregmax = option;
1138 string = match_strdup(args);
1141 rc = strict_strtoul(string, 10, &option);
1144 goto out_invalid_value;
1145 mnt->acdirmin = option;
1148 string = match_strdup(args);
1151 rc = strict_strtoul(string, 10, &option);
1154 goto out_invalid_value;
1155 mnt->acdirmax = option;
1158 string = match_strdup(args);
1161 rc = strict_strtoul(string, 10, &option);
1164 goto out_invalid_value;
1165 mnt->acregmin = mnt->acregmax =
1166 mnt->acdirmin = mnt->acdirmax = option;
1169 string = match_strdup(args);
1172 rc = strict_strtoul(string, 10, &option);
1175 goto out_invalid_value;
1176 mnt->namlen = option;
1179 string = match_strdup(args);
1182 rc = strict_strtoul(string, 10, &option);
1184 if (rc != 0 || option > USHRT_MAX)
1185 goto out_invalid_value;
1186 mnt->mount_server.port = option;
1189 string = match_strdup(args);
1192 rc = strict_strtoul(string, 10, &option);
1195 option < NFS_MNT_VERSION ||
1196 option > NFS_MNT3_VERSION)
1197 goto out_invalid_value;
1198 mnt->mount_server.version = option;
1201 string = match_strdup(args);
1204 rc = strict_strtoul(string, 10, &option);
1207 goto out_invalid_value;
1210 mnt->flags &= ~NFS_MOUNT_VER3;
1214 mnt->flags |= NFS_MOUNT_VER3;
1217 #ifdef CONFIG_NFS_V4
1219 mnt->flags &= ~NFS_MOUNT_VER3;
1224 goto out_invalid_value;
1227 case Opt_minorversion:
1228 string = match_strdup(args);
1231 rc = strict_strtoul(string, 10, &option);
1234 goto out_invalid_value;
1235 if (option > NFS4_MAX_MINOR_VERSION)
1236 goto out_invalid_value;
1237 mnt->minorversion = option;
1241 * options that take text values
1244 string = match_strdup(args);
1247 rc = nfs_parse_security_flavors(string, mnt);
1250 dfprintk(MOUNT, "NFS: unrecognized "
1251 "security flavor\n");
1256 string = match_strdup(args);
1259 token = match_token(string,
1260 nfs_xprt_protocol_tokens, args);
1262 protofamily = AF_INET;
1265 protofamily = AF_INET6;
1267 mnt->flags &= ~NFS_MOUNT_TCP;
1268 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
1272 protofamily = AF_INET6;
1274 mnt->flags |= NFS_MOUNT_TCP;
1275 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
1279 /* vector side protocols to TCP */
1280 mnt->flags |= NFS_MOUNT_TCP;
1281 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
1282 xprt_load_transport(string);
1286 dfprintk(MOUNT, "NFS: unrecognized "
1287 "transport protocol\n");
1292 case Opt_mountproto:
1293 string = match_strdup(args);
1296 token = match_token(string,
1297 nfs_xprt_protocol_tokens, args);
1300 mountfamily = AF_INET;
1303 mountfamily = AF_INET6;
1305 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
1308 mountfamily = AF_INET6;
1310 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
1312 case Opt_xprt_rdma: /* not used for side protocols */
1314 dfprintk(MOUNT, "NFS: unrecognized "
1315 "transport protocol\n");
1320 string = match_strdup(args);
1323 mnt->nfs_server.addrlen =
1324 rpc_pton(string, strlen(string),
1326 &mnt->nfs_server.address,
1327 sizeof(mnt->nfs_server.address));
1329 if (mnt->nfs_server.addrlen == 0)
1330 goto out_invalid_address;
1332 case Opt_clientaddr:
1333 string = match_strdup(args);
1336 kfree(mnt->client_address);
1337 mnt->client_address = string;
1340 string = match_strdup(args);
1343 kfree(mnt->mount_server.hostname);
1344 mnt->mount_server.hostname = string;
1347 string = match_strdup(args);
1350 mnt->mount_server.addrlen =
1351 rpc_pton(string, strlen(string),
1353 &mnt->mount_server.address,
1354 sizeof(mnt->mount_server.address));
1356 if (mnt->mount_server.addrlen == 0)
1357 goto out_invalid_address;
1359 case Opt_lookupcache:
1360 string = match_strdup(args);
1363 token = match_token(string,
1364 nfs_lookupcache_tokens, args);
1367 case Opt_lookupcache_all:
1368 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1370 case Opt_lookupcache_positive:
1371 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1372 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1374 case Opt_lookupcache_none:
1375 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1378 dfprintk(MOUNT, "NFS: invalid "
1379 "lookupcache argument\n");
1383 case Opt_fscache_uniq:
1384 string = match_strdup(args);
1387 kfree(mnt->fscache_uniq);
1388 mnt->fscache_uniq = string;
1389 mnt->options |= NFS_OPTION_FSCACHE;
1397 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1400 case Opt_deprecated:
1401 dfprintk(MOUNT, "NFS: ignoring mount option "
1407 dfprintk(MOUNT, "NFS: unrecognized mount option "
1412 if (!sloppy && invalid_option)
1416 * verify that any proto=/mountproto= options match the address
1417 * familiies in the addr=/mountaddr= options.
1419 if (protofamily != AF_UNSPEC &&
1420 protofamily != mnt->nfs_server.address.ss_family)
1421 goto out_proto_mismatch;
1423 if (mountfamily != AF_UNSPEC) {
1424 if (mnt->mount_server.addrlen) {
1425 if (mountfamily != mnt->mount_server.address.ss_family)
1426 goto out_mountproto_mismatch;
1428 if (mountfamily != mnt->nfs_server.address.ss_family)
1429 goto out_mountproto_mismatch;
1435 out_mountproto_mismatch:
1436 printk(KERN_INFO "NFS: mount server address does not match mountproto= "
1440 printk(KERN_INFO "NFS: server address does not match proto= option\n");
1442 out_invalid_address:
1443 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1446 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
1449 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1451 out_security_failure:
1452 free_secdata(secdata);
1453 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1458 * Match the requested auth flavors with the list returned by
1459 * the server. Returns zero and sets the mount's authentication
1460 * flavor on success; returns -EACCES if server does not support
1461 * the requested flavor.
1463 static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1464 struct nfs_mount_request *request)
1466 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1469 * Certain releases of Linux's mountd return an empty
1470 * flavor list. To prevent behavioral regression with
1471 * these servers (ie. rejecting mounts that used to
1472 * succeed), revert to pre-2.6.32 behavior (no checking)
1473 * if the returned flavor list is empty.
1475 if (server_authlist_len == 0)
1479 * We avoid sophisticated negotiating here, as there are
1480 * plenty of cases where we can get it wrong, providing
1481 * either too little or too much security.
1483 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1484 * flavor listed first. However, some servers list
1485 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1486 * preferred default, in args->auth_flavors[0] if user
1487 * didn't specify sec= mount option.
1489 for (i = 0; i < args->auth_flavor_len; i++)
1490 for (j = 0; j < server_authlist_len; j++)
1491 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1492 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1493 request->auth_flavs[j]);
1494 args->auth_flavors[0] = request->auth_flavs[j];
1498 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1499 nfs_umount(request);
1504 * Use the remote server's MOUNT service to request the NFS file handle
1505 * corresponding to the provided path.
1507 static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1508 struct nfs_fh *root_fh)
1510 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1511 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
1512 struct nfs_mount_request request = {
1513 .sap = (struct sockaddr *)
1514 &args->mount_server.address,
1515 .dirpath = args->nfs_server.export_path,
1516 .protocol = args->mount_server.protocol,
1518 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
1519 .auth_flav_len = &server_authlist_len,
1520 .auth_flavs = server_authlist,
1524 if (args->mount_server.version == 0) {
1525 switch (args->version) {
1527 args->mount_server.version = NFS_MNT3_VERSION;
1530 args->mount_server.version = NFS_MNT_VERSION;
1533 request.version = args->mount_server.version;
1535 if (args->mount_server.hostname)
1536 request.hostname = args->mount_server.hostname;
1538 request.hostname = args->nfs_server.hostname;
1541 * Construct the mount server's address.
1543 if (args->mount_server.address.ss_family == AF_UNSPEC) {
1544 memcpy(request.sap, &args->nfs_server.address,
1545 args->nfs_server.addrlen);
1546 args->mount_server.addrlen = args->nfs_server.addrlen;
1548 request.salen = args->mount_server.addrlen;
1549 nfs_set_port(request.sap, &args->mount_server.port, 0);
1552 * Now ask the mount server to map our export path
1555 status = nfs_mount(&request);
1557 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1558 request.hostname, status);
1563 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1565 if (args->mount_server.version != NFS_MNT3_VERSION)
1567 return nfs_walk_authlist(args, &request);
1570 static int nfs_parse_simple_hostname(const char *dev_name,
1571 char **hostname, size_t maxnamlen,
1572 char **export_path, size_t maxpathlen)
1575 char *colon, *comma;
1577 colon = strchr(dev_name, ':');
1579 goto out_bad_devname;
1581 len = colon - dev_name;
1582 if (len > maxnamlen)
1585 /* N.B. caller will free nfs_server.hostname in all cases */
1586 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
1590 /* kill possible hostname list: not supported */
1591 comma = strchr(*hostname, ',');
1592 if (comma != NULL) {
1593 if (comma == *hostname)
1594 goto out_bad_devname;
1599 len = strlen(colon);
1600 if (len > maxpathlen)
1602 *export_path = kstrndup(colon, len, GFP_KERNEL);
1606 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1610 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1614 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1618 dfprintk(MOUNT, "NFS: server hostname too long\n");
1619 return -ENAMETOOLONG;
1622 dfprintk(MOUNT, "NFS: export pathname too long\n");
1623 return -ENAMETOOLONG;
1627 * Hostname has square brackets around it because it contains one or
1628 * more colons. We look for the first closing square bracket, and a
1629 * colon must follow it.
1631 static int nfs_parse_protected_hostname(const char *dev_name,
1632 char **hostname, size_t maxnamlen,
1633 char **export_path, size_t maxpathlen)
1638 start = (char *)(dev_name + 1);
1640 end = strchr(start, ']');
1642 goto out_bad_devname;
1643 if (*(end + 1) != ':')
1644 goto out_bad_devname;
1647 if (len > maxnamlen)
1650 /* N.B. caller will free nfs_server.hostname in all cases */
1651 *hostname = kstrndup(start, len, GFP_KERNEL);
1652 if (*hostname == NULL)
1657 if (len > maxpathlen)
1659 *export_path = kstrndup(end, len, GFP_KERNEL);
1666 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1670 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1674 dfprintk(MOUNT, "NFS: server hostname too long\n");
1675 return -ENAMETOOLONG;
1678 dfprintk(MOUNT, "NFS: export pathname too long\n");
1679 return -ENAMETOOLONG;
1683 * Split "dev_name" into "hostname:export_path".
1685 * The leftmost colon demarks the split between the server's hostname
1686 * and the export path. If the hostname starts with a left square
1687 * bracket, then it may contain colons.
1689 * Note: caller frees hostname and export path, even on error.
1691 static int nfs_parse_devname(const char *dev_name,
1692 char **hostname, size_t maxnamlen,
1693 char **export_path, size_t maxpathlen)
1695 if (*dev_name == '[')
1696 return nfs_parse_protected_hostname(dev_name,
1697 hostname, maxnamlen,
1698 export_path, maxpathlen);
1700 return nfs_parse_simple_hostname(dev_name,
1701 hostname, maxnamlen,
1702 export_path, maxpathlen);
1706 * Validate the NFS2/NFS3 mount data
1707 * - fills in the mount root filehandle
1709 * For option strings, user space handles the following behaviors:
1711 * + DNS: mapping server host name to IP address ("addr=" option)
1713 * + failure mode: how to behave if a mount request can't be handled
1714 * immediately ("fg/bg" option)
1716 * + retry: how often to retry a mount request ("retry=" option)
1718 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1719 * mountproto=tcp after mountproto=udp, and so on
1721 static int nfs_validate_mount_data(void *options,
1722 struct nfs_parsed_mount_data *args,
1723 struct nfs_fh *mntfh,
1724 const char *dev_name)
1726 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
1727 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
1732 switch (data->version) {
1738 if (data->flags & NFS_MOUNT_VER3)
1740 data->root.size = NFS2_FHSIZE;
1741 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1743 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1746 memset(data->context, 0, sizeof(data->context));
1748 if (data->flags & NFS_MOUNT_VER3) {
1749 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1750 goto out_invalid_fh;
1751 mntfh->size = data->root.size;
1754 mntfh->size = NFS2_FHSIZE;
1759 memcpy(mntfh->data, data->root.data, mntfh->size);
1760 if (mntfh->size < sizeof(mntfh->data))
1761 memset(mntfh->data + mntfh->size, 0,
1762 sizeof(mntfh->data) - mntfh->size);
1765 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1768 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
1769 args->rsize = data->rsize;
1770 args->wsize = data->wsize;
1771 args->timeo = data->timeo;
1772 args->retrans = data->retrans;
1773 args->acregmin = data->acregmin;
1774 args->acregmax = data->acregmax;
1775 args->acdirmin = data->acdirmin;
1776 args->acdirmax = data->acdirmax;
1778 memcpy(sap, &data->addr, sizeof(data->addr));
1779 args->nfs_server.addrlen = sizeof(data->addr);
1780 if (!nfs_verify_server_address(sap))
1781 goto out_no_address;
1783 if (!(data->flags & NFS_MOUNT_TCP))
1784 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
1785 /* N.B. caller will free nfs_server.hostname in all cases */
1786 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1787 args->namlen = data->namlen;
1788 args->bsize = data->bsize;
1790 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1791 args->auth_flavors[0] = data->pseudoflavor;
1792 if (!args->nfs_server.hostname)
1796 * The legacy version 6 binary mount data from userspace has a
1797 * field used only to transport selinux information into the
1798 * the kernel. To continue to support that functionality we
1799 * have a touch of selinux knowledge here in the NFS code. The
1800 * userspace code converted context=blah to just blah so we are
1801 * converting back to the full string selinux understands.
1803 if (data->context[0]){
1804 #ifdef CONFIG_SECURITY_SELINUX
1806 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1809 strcpy(opts_str, "context=");
1810 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1811 strcat(opts_str, &data->context[0]);
1812 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1825 if (nfs_parse_mount_options((char *)options, args) == 0)
1828 if (!nfs_verify_server_address(sap))
1829 goto out_no_address;
1831 if (args->version == 4)
1832 #ifdef CONFIG_NFS_V4
1833 return nfs4_validate_text_mount_data(options,
1836 goto out_v4_not_compiled;
1839 nfs_set_port(sap, &args->nfs_server.port, 0);
1841 nfs_set_mount_transport_protocol(args);
1843 status = nfs_parse_devname(dev_name,
1844 &args->nfs_server.hostname,
1846 &args->nfs_server.export_path,
1849 status = nfs_try_mount(args, mntfh);
1851 kfree(args->nfs_server.export_path);
1852 args->nfs_server.export_path = NULL;
1861 #ifndef CONFIG_NFS_V3
1862 if (args->version == 3)
1863 goto out_v3_not_compiled;
1864 #endif /* !CONFIG_NFS_V3 */
1869 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1873 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1878 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1881 #ifndef CONFIG_NFS_V3
1882 out_v3_not_compiled:
1883 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1884 return -EPROTONOSUPPORT;
1885 #endif /* !CONFIG_NFS_V3 */
1887 #ifndef CONFIG_NFS_V4
1888 out_v4_not_compiled:
1889 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
1890 return -EPROTONOSUPPORT;
1891 #endif /* !CONFIG_NFS_V4 */
1894 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
1898 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1902 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1907 nfs_compare_remount_data(struct nfs_server *nfss,
1908 struct nfs_parsed_mount_data *data)
1910 if (data->flags != nfss->flags ||
1911 data->rsize != nfss->rsize ||
1912 data->wsize != nfss->wsize ||
1913 data->retrans != nfss->client->cl_timeout->to_retries ||
1914 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
1915 data->acregmin != nfss->acregmin / HZ ||
1916 data->acregmax != nfss->acregmax / HZ ||
1917 data->acdirmin != nfss->acdirmin / HZ ||
1918 data->acdirmax != nfss->acdirmax / HZ ||
1919 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
1920 data->nfs_server.port != nfss->port ||
1921 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
1922 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
1923 (struct sockaddr *)&nfss->nfs_client->cl_addr))
1930 nfs_remount(struct super_block *sb, int *flags, char *raw_data)
1933 struct nfs_server *nfss = sb->s_fs_info;
1934 struct nfs_parsed_mount_data *data;
1935 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
1936 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
1937 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
1940 * Userspace mount programs that send binary options generally send
1941 * them populated with default values. We have no way to know which
1942 * ones were explicitly specified. Fall back to legacy behavior and
1943 * just return success.
1945 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
1946 (nfsvers <= 3 && (!options || (options->version >= 1 &&
1947 options->version <= 6))))
1950 data = kzalloc(sizeof(*data), GFP_KERNEL);
1954 /* fill out struct with values from existing mount */
1955 data->flags = nfss->flags;
1956 data->rsize = nfss->rsize;
1957 data->wsize = nfss->wsize;
1958 data->retrans = nfss->client->cl_timeout->to_retries;
1959 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
1960 data->acregmin = nfss->acregmin / HZ;
1961 data->acregmax = nfss->acregmax / HZ;
1962 data->acdirmin = nfss->acdirmin / HZ;
1963 data->acdirmax = nfss->acdirmax / HZ;
1964 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
1965 data->nfs_server.port = nfss->port;
1966 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
1967 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
1968 data->nfs_server.addrlen);
1970 /* overwrite those values with any that were specified */
1971 error = nfs_parse_mount_options((char *)options, data);
1975 /* compare new mount options with old ones */
1976 error = nfs_compare_remount_data(nfss, data);
1983 * Initialise the common bits of the superblock
1985 static inline void nfs_initialise_sb(struct super_block *sb)
1987 struct nfs_server *server = NFS_SB(sb);
1989 sb->s_magic = NFS_SUPER_MAGIC;
1991 /* We probably want something more informative here */
1992 snprintf(sb->s_id, sizeof(sb->s_id),
1993 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
1995 if (sb->s_blocksize == 0)
1996 sb->s_blocksize = nfs_block_bits(server->wsize,
1997 &sb->s_blocksize_bits);
1999 if (server->flags & NFS_MOUNT_NOAC)
2000 sb->s_flags |= MS_SYNCHRONOUS;
2002 sb->s_bdi = &server->backing_dev_info;
2004 nfs_super_set_maxbytes(sb, server->maxfilesize);
2008 * Finish setting up an NFS2/3 superblock
2010 static void nfs_fill_super(struct super_block *sb,
2011 struct nfs_parsed_mount_data *data)
2013 struct nfs_server *server = NFS_SB(sb);
2015 sb->s_blocksize_bits = 0;
2016 sb->s_blocksize = 0;
2018 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
2020 if (server->nfs_client->rpc_ops->version == 3) {
2021 /* The VFS shouldn't apply the umask to mode bits. We will do
2022 * so ourselves when necessary.
2024 sb->s_flags |= MS_POSIXACL;
2025 sb->s_time_gran = 1;
2028 sb->s_op = &nfs_sops;
2029 nfs_initialise_sb(sb);
2033 * Finish setting up a cloned NFS2/3 superblock
2035 static void nfs_clone_super(struct super_block *sb,
2036 const struct super_block *old_sb)
2038 struct nfs_server *server = NFS_SB(sb);
2040 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2041 sb->s_blocksize = old_sb->s_blocksize;
2042 sb->s_maxbytes = old_sb->s_maxbytes;
2044 if (server->nfs_client->rpc_ops->version == 3) {
2045 /* The VFS shouldn't apply the umask to mode bits. We will do
2046 * so ourselves when necessary.
2048 sb->s_flags |= MS_POSIXACL;
2049 sb->s_time_gran = 1;
2052 sb->s_op = old_sb->s_op;
2053 nfs_initialise_sb(sb);
2056 static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
2058 const struct nfs_server *a = s->s_fs_info;
2059 const struct rpc_clnt *clnt_a = a->client;
2060 const struct rpc_clnt *clnt_b = b->client;
2062 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
2064 if (a->nfs_client != b->nfs_client)
2066 if (a->flags != b->flags)
2068 if (a->wsize != b->wsize)
2070 if (a->rsize != b->rsize)
2072 if (a->acregmin != b->acregmin)
2074 if (a->acregmax != b->acregmax)
2076 if (a->acdirmin != b->acdirmin)
2078 if (a->acdirmax != b->acdirmax)
2080 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2087 struct nfs_sb_mountdata {
2088 struct nfs_server *server;
2092 static int nfs_set_super(struct super_block *s, void *data)
2094 struct nfs_sb_mountdata *sb_mntdata = data;
2095 struct nfs_server *server = sb_mntdata->server;
2098 s->s_flags = sb_mntdata->mntflags;
2099 s->s_fs_info = server;
2100 ret = set_anon_super(s, server);
2102 server->s_dev = s->s_dev;
2106 static int nfs_compare_super_address(struct nfs_server *server1,
2107 struct nfs_server *server2)
2109 struct sockaddr *sap1, *sap2;
2111 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2112 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2114 if (sap1->sa_family != sap2->sa_family)
2117 switch (sap1->sa_family) {
2119 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2120 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2121 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2123 if (sin1->sin_port != sin2->sin_port)
2128 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2129 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2130 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2132 if (sin1->sin6_port != sin2->sin6_port)
2143 static int nfs_compare_super(struct super_block *sb, void *data)
2145 struct nfs_sb_mountdata *sb_mntdata = data;
2146 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2147 int mntflags = sb_mntdata->mntflags;
2149 if (!nfs_compare_super_address(old, server))
2151 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2152 if (old->flags & NFS_MOUNT_UNSHARED)
2154 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2156 return nfs_compare_mount_options(sb, server, mntflags);
2159 static int nfs_bdi_register(struct nfs_server *server)
2161 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2164 static int nfs_get_sb(struct file_system_type *fs_type,
2165 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2167 struct nfs_server *server = NULL;
2168 struct super_block *s;
2169 struct nfs_parsed_mount_data *data;
2170 struct nfs_fh *mntfh;
2171 struct dentry *mntroot;
2172 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
2173 struct nfs_sb_mountdata sb_mntdata = {
2176 int error = -ENOMEM;
2178 data = nfs_alloc_parsed_mount_data(3);
2179 mntfh = nfs_alloc_fhandle();
2180 if (data == NULL || mntfh == NULL)
2183 security_init_mnt_opts(&data->lsm_opts);
2185 /* Validate the mount data */
2186 error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name);
2190 #ifdef CONFIG_NFS_V4
2191 if (data->version == 4) {
2192 error = nfs4_try_mount(flags, dev_name, data, mnt);
2193 kfree(data->client_address);
2194 kfree(data->nfs_server.export_path);
2197 #endif /* CONFIG_NFS_V4 */
2199 /* Get a volume representation */
2200 server = nfs_create_server(data, mntfh);
2201 if (IS_ERR(server)) {
2202 error = PTR_ERR(server);
2205 sb_mntdata.server = server;
2207 if (server->flags & NFS_MOUNT_UNSHARED)
2208 compare_super = NULL;
2210 /* Get a superblock - note that we may end up sharing one that already exists */
2211 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
2217 if (s->s_fs_info != server) {
2218 nfs_free_server(server);
2221 error = nfs_bdi_register(server);
2223 goto error_splat_bdi;
2227 /* initial superblock/root creation */
2228 nfs_fill_super(s, data);
2229 nfs_fscache_get_super_cookie(
2230 s, data ? data->fscache_uniq : NULL, NULL);
2233 mntroot = nfs_get_root(s, mntfh);
2234 if (IS_ERR(mntroot)) {
2235 error = PTR_ERR(mntroot);
2236 goto error_splat_super;
2239 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
2241 goto error_splat_root;
2243 s->s_flags |= MS_ACTIVE;
2245 mnt->mnt_root = mntroot;
2249 kfree(data->nfs_server.hostname);
2250 kfree(data->mount_server.hostname);
2251 kfree(data->fscache_uniq);
2252 security_free_mnt_opts(&data->lsm_opts);
2254 nfs_free_fhandle(mntfh);
2259 nfs_free_server(server);
2265 if (server && !s->s_root)
2266 bdi_unregister(&server->backing_dev_info);
2268 deactivate_locked_super(s);
2273 * Ensure that we unregister the bdi before kill_anon_super
2274 * releases the device name
2276 static void nfs_put_super(struct super_block *s)
2278 struct nfs_server *server = NFS_SB(s);
2280 bdi_unregister(&server->backing_dev_info);
2284 * Destroy an NFS2/3 superblock
2286 static void nfs_kill_super(struct super_block *s)
2288 struct nfs_server *server = NFS_SB(s);
2291 nfs_fscache_release_super_cookie(s);
2292 nfs_free_server(server);
2296 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2298 static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
2299 const char *dev_name, void *raw_data,
2300 struct vfsmount *mnt)
2302 struct nfs_clone_mount *data = raw_data;
2303 struct super_block *s;
2304 struct nfs_server *server;
2305 struct dentry *mntroot;
2306 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
2307 struct nfs_sb_mountdata sb_mntdata = {
2312 dprintk("--> nfs_xdev_get_sb()\n");
2314 /* create a new volume representation */
2315 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2316 if (IS_ERR(server)) {
2317 error = PTR_ERR(server);
2318 goto out_err_noserver;
2320 sb_mntdata.server = server;
2322 if (server->flags & NFS_MOUNT_UNSHARED)
2323 compare_super = NULL;
2325 /* Get a superblock - note that we may end up sharing one that already exists */
2326 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
2332 if (s->s_fs_info != server) {
2333 nfs_free_server(server);
2336 error = nfs_bdi_register(server);
2338 goto error_splat_bdi;
2342 /* initial superblock/root creation */
2343 nfs_clone_super(s, data->sb);
2344 nfs_fscache_get_super_cookie(s, NULL, data);
2347 mntroot = nfs_get_root(s, data->fh);
2348 if (IS_ERR(mntroot)) {
2349 error = PTR_ERR(mntroot);
2350 goto error_splat_super;
2352 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2355 goto error_splat_super;
2358 s->s_flags |= MS_ACTIVE;
2360 mnt->mnt_root = mntroot;
2362 /* clone any lsm security options from the parent to the new sb */
2363 security_sb_clone_mnt_opts(data->sb, s);
2365 dprintk("<-- nfs_xdev_get_sb() = 0\n");
2369 nfs_free_server(server);
2371 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
2375 if (server && !s->s_root)
2376 bdi_unregister(&server->backing_dev_info);
2378 deactivate_locked_super(s);
2379 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
2383 #ifdef CONFIG_NFS_V4
2386 * Finish setting up a cloned NFS4 superblock
2388 static void nfs4_clone_super(struct super_block *sb,
2389 const struct super_block *old_sb)
2391 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2392 sb->s_blocksize = old_sb->s_blocksize;
2393 sb->s_maxbytes = old_sb->s_maxbytes;
2394 sb->s_time_gran = 1;
2395 sb->s_op = old_sb->s_op;
2396 nfs_initialise_sb(sb);
2400 * Set up an NFS4 superblock
2402 static void nfs4_fill_super(struct super_block *sb)
2404 sb->s_time_gran = 1;
2405 sb->s_op = &nfs4_sops;
2406 nfs_initialise_sb(sb);
2409 static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2411 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3);
2414 static int nfs4_validate_text_mount_data(void *options,
2415 struct nfs_parsed_mount_data *args,
2416 const char *dev_name)
2418 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2420 nfs_set_port(sap, &args->nfs_server.port, NFS_PORT);
2422 nfs_validate_transport_protocol(args);
2424 nfs4_validate_mount_flags(args);
2426 if (args->version != 4) {
2428 "NFS4: Illegal mount version\n");
2432 if (args->auth_flavor_len > 1) {
2434 "NFS4: Too many RPC auth flavours specified\n");
2438 if (args->client_address == NULL) {
2440 "NFS4: mount program didn't pass callback address\n");
2444 return nfs_parse_devname(dev_name,
2445 &args->nfs_server.hostname,
2447 &args->nfs_server.export_path,
2452 * Validate NFSv4 mount options
2454 static int nfs4_validate_mount_data(void *options,
2455 struct nfs_parsed_mount_data *args,
2456 const char *dev_name)
2458 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2459 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
2465 switch (data->version) {
2467 if (data->host_addrlen > sizeof(args->nfs_server.address))
2468 goto out_no_address;
2469 if (data->host_addrlen == 0)
2470 goto out_no_address;
2471 args->nfs_server.addrlen = data->host_addrlen;
2472 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
2474 if (!nfs_verify_server_address(sap))
2475 goto out_no_address;
2477 if (data->auth_flavourlen) {
2478 if (data->auth_flavourlen > 1)
2479 goto out_inval_auth;
2480 if (copy_from_user(&args->auth_flavors[0],
2481 data->auth_flavours,
2482 sizeof(args->auth_flavors[0])))
2486 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2489 args->nfs_server.hostname = c;
2491 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2494 args->nfs_server.export_path = c;
2495 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
2497 c = strndup_user(data->client_addr.data, 16);
2500 args->client_address = c;
2503 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2507 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2508 args->rsize = data->rsize;
2509 args->wsize = data->wsize;
2510 args->timeo = data->timeo;
2511 args->retrans = data->retrans;
2512 args->acregmin = data->acregmin;
2513 args->acregmax = data->acregmax;
2514 args->acdirmin = data->acdirmin;
2515 args->acdirmax = data->acdirmax;
2516 args->nfs_server.protocol = data->proto;
2517 nfs_validate_transport_protocol(args);
2521 if (nfs_parse_mount_options((char *)options, args) == 0)
2524 if (!nfs_verify_server_address(sap))
2527 return nfs4_validate_text_mount_data(options, args, dev_name);
2533 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2537 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2538 data->auth_flavourlen);
2542 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2547 * Get the superblock for the NFS4 root partition
2549 static int nfs4_remote_get_sb(struct file_system_type *fs_type,
2550 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2552 struct nfs_parsed_mount_data *data = raw_data;
2553 struct super_block *s;
2554 struct nfs_server *server;
2555 struct nfs_fh *mntfh;
2556 struct dentry *mntroot;
2557 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
2558 struct nfs_sb_mountdata sb_mntdata = {
2561 int error = -ENOMEM;
2563 mntfh = nfs_alloc_fhandle();
2564 if (data == NULL || mntfh == NULL)
2567 security_init_mnt_opts(&data->lsm_opts);
2569 /* Get a volume representation */
2570 server = nfs4_create_server(data, mntfh);
2571 if (IS_ERR(server)) {
2572 error = PTR_ERR(server);
2575 sb_mntdata.server = server;
2577 if (server->flags & NFS4_MOUNT_UNSHARED)
2578 compare_super = NULL;
2580 /* Get a superblock - note that we may end up sharing one that already exists */
2581 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
2587 if (s->s_fs_info != server) {
2588 nfs_free_server(server);
2591 error = nfs_bdi_register(server);
2593 goto error_splat_bdi;
2597 /* initial superblock/root creation */
2599 nfs_fscache_get_super_cookie(
2600 s, data ? data->fscache_uniq : NULL, NULL);
2603 mntroot = nfs4_get_root(s, mntfh);
2604 if (IS_ERR(mntroot)) {
2605 error = PTR_ERR(mntroot);
2606 goto error_splat_super;
2609 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
2611 goto error_splat_root;
2613 s->s_flags |= MS_ACTIVE;
2615 mnt->mnt_root = mntroot;
2619 security_free_mnt_opts(&data->lsm_opts);
2621 nfs_free_fhandle(mntfh);
2625 nfs_free_server(server);
2631 if (server && !s->s_root)
2632 bdi_unregister(&server->backing_dev_info);
2634 deactivate_locked_super(s);
2638 static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type,
2639 int flags, void *data, const char *hostname)
2641 struct vfsmount *root_mnt;
2645 len = strlen(hostname) + 3;
2646 root_devname = kmalloc(len, GFP_KERNEL);
2647 if (root_devname == NULL)
2648 return ERR_PTR(-ENOMEM);
2649 snprintf(root_devname, len, "%s:/", hostname);
2650 root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data);
2651 kfree(root_devname);
2655 static void nfs_fix_devname(const struct path *path, struct vfsmount *mnt)
2657 char *page = (char *) __get_free_page(GFP_KERNEL);
2658 char *devname, *tmp;
2662 devname = nfs_path(path->mnt->mnt_devname,
2663 path->mnt->mnt_root, path->dentry,
2665 if (IS_ERR(devname))
2667 tmp = kstrdup(devname, GFP_KERNEL);
2670 kfree(mnt->mnt_devname);
2671 mnt->mnt_devname = tmp;
2673 free_page((unsigned long)page);
2676 struct nfs_referral_count {
2677 struct list_head list;
2678 const struct task_struct *task;
2679 unsigned int referral_count;
2682 static LIST_HEAD(nfs_referral_count_list);
2683 static DEFINE_SPINLOCK(nfs_referral_count_list_lock);
2685 static struct nfs_referral_count *nfs_find_referral_count(void)
2687 struct nfs_referral_count *p;
2689 list_for_each_entry(p, &nfs_referral_count_list, list) {
2690 if (p->task == current)
2696 #define NFS_MAX_NESTED_REFERRALS 2
2698 static int nfs_referral_loop_protect(void)
2700 struct nfs_referral_count *p, *new;
2703 new = kmalloc(sizeof(*new), GFP_KERNEL);
2706 new->task = current;
2707 new->referral_count = 1;
2710 spin_lock(&nfs_referral_count_list_lock);
2711 p = nfs_find_referral_count();
2713 if (p->referral_count >= NFS_MAX_NESTED_REFERRALS)
2716 p->referral_count++;
2718 list_add(&new->list, &nfs_referral_count_list);
2721 spin_unlock(&nfs_referral_count_list_lock);
2727 static void nfs_referral_loop_unprotect(void)
2729 struct nfs_referral_count *p;
2731 spin_lock(&nfs_referral_count_list_lock);
2732 p = nfs_find_referral_count();
2733 p->referral_count--;
2734 if (p->referral_count == 0)
2738 spin_unlock(&nfs_referral_count_list_lock);
2742 static int nfs_follow_remote_path(struct vfsmount *root_mnt,
2743 const char *export_path, struct vfsmount *mnt_target)
2745 struct nameidata *nd = NULL;
2746 struct mnt_namespace *ns_private;
2747 struct super_block *s;
2750 nd = kmalloc(sizeof(*nd), GFP_KERNEL);
2754 ns_private = create_mnt_ns(root_mnt);
2755 ret = PTR_ERR(ns_private);
2756 if (IS_ERR(ns_private))
2759 ret = nfs_referral_loop_protect();
2761 goto out_put_mnt_ns;
2763 ret = vfs_path_lookup(root_mnt->mnt_root, root_mnt,
2764 export_path, LOOKUP_FOLLOW, nd);
2766 nfs_referral_loop_unprotect();
2767 put_mnt_ns(ns_private);
2772 s = nd->path.mnt->mnt_sb;
2773 atomic_inc(&s->s_active);
2774 mnt_target->mnt_sb = s;
2775 mnt_target->mnt_root = dget(nd->path.dentry);
2777 /* Correct the device pathname */
2778 nfs_fix_devname(&nd->path, mnt_target);
2780 path_put(&nd->path);
2782 down_write(&s->s_umount);
2785 put_mnt_ns(ns_private);
2793 static int nfs4_try_mount(int flags, const char *dev_name,
2794 struct nfs_parsed_mount_data *data,
2795 struct vfsmount *mnt)
2798 struct vfsmount *root_mnt;
2801 dfprintk(MOUNT, "--> nfs4_try_mount()\n");
2803 export_path = data->nfs_server.export_path;
2804 data->nfs_server.export_path = "/";
2805 root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data,
2806 data->nfs_server.hostname);
2807 data->nfs_server.export_path = export_path;
2809 error = PTR_ERR(root_mnt);
2810 if (IS_ERR(root_mnt))
2813 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
2816 dfprintk(MOUNT, "<-- nfs4_try_mount() = %d%s\n", error,
2817 error != 0 ? " [error]" : "");
2822 * Get the superblock for an NFS4 mountpoint
2824 static int nfs4_get_sb(struct file_system_type *fs_type,
2825 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2827 struct nfs_parsed_mount_data *data;
2828 int error = -ENOMEM;
2830 data = nfs_alloc_parsed_mount_data(4);
2834 /* Validate the mount data */
2835 error = nfs4_validate_mount_data(raw_data, data, dev_name);
2839 error = nfs4_try_mount(flags, dev_name, data, mnt);
2842 kfree(data->client_address);
2843 kfree(data->nfs_server.export_path);
2844 kfree(data->nfs_server.hostname);
2845 kfree(data->fscache_uniq);
2848 dprintk("<-- nfs4_get_sb() = %d%s\n", error,
2849 error != 0 ? " [error]" : "");
2853 static void nfs4_kill_super(struct super_block *sb)
2855 struct nfs_server *server = NFS_SB(sb);
2857 dprintk("--> %s\n", __func__);
2858 nfs_super_return_all_delegations(sb);
2859 kill_anon_super(sb);
2860 nfs_fscache_release_super_cookie(sb);
2861 nfs_free_server(server);
2862 dprintk("<-- %s\n", __func__);
2866 * Clone an NFS4 server record on xdev traversal (FSID-change)
2868 static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
2869 const char *dev_name, void *raw_data,
2870 struct vfsmount *mnt)
2872 struct nfs_clone_mount *data = raw_data;
2873 struct super_block *s;
2874 struct nfs_server *server;
2875 struct dentry *mntroot;
2876 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
2877 struct nfs_sb_mountdata sb_mntdata = {
2882 dprintk("--> nfs4_xdev_get_sb()\n");
2884 /* create a new volume representation */
2885 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2886 if (IS_ERR(server)) {
2887 error = PTR_ERR(server);
2888 goto out_err_noserver;
2890 sb_mntdata.server = server;
2892 if (server->flags & NFS4_MOUNT_UNSHARED)
2893 compare_super = NULL;
2895 /* Get a superblock - note that we may end up sharing one that already exists */
2896 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
2902 if (s->s_fs_info != server) {
2903 nfs_free_server(server);
2906 error = nfs_bdi_register(server);
2908 goto error_splat_bdi;
2912 /* initial superblock/root creation */
2913 nfs4_clone_super(s, data->sb);
2914 nfs_fscache_get_super_cookie(s, NULL, data);
2917 mntroot = nfs4_get_root(s, data->fh);
2918 if (IS_ERR(mntroot)) {
2919 error = PTR_ERR(mntroot);
2920 goto error_splat_super;
2922 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2925 goto error_splat_super;
2928 s->s_flags |= MS_ACTIVE;
2930 mnt->mnt_root = mntroot;
2932 security_sb_clone_mnt_opts(data->sb, s);
2934 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
2938 nfs_free_server(server);
2940 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
2944 if (server && !s->s_root)
2945 bdi_unregister(&server->backing_dev_info);
2947 deactivate_locked_super(s);
2948 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
2952 static int nfs4_remote_referral_get_sb(struct file_system_type *fs_type,
2953 int flags, const char *dev_name, void *raw_data,
2954 struct vfsmount *mnt)
2956 struct nfs_clone_mount *data = raw_data;
2957 struct super_block *s;
2958 struct nfs_server *server;
2959 struct dentry *mntroot;
2960 struct nfs_fh *mntfh;
2961 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
2962 struct nfs_sb_mountdata sb_mntdata = {
2965 int error = -ENOMEM;
2967 dprintk("--> nfs4_referral_get_sb()\n");
2969 mntfh = nfs_alloc_fhandle();
2973 /* create a new volume representation */
2974 server = nfs4_create_referral_server(data, mntfh);
2975 if (IS_ERR(server)) {
2976 error = PTR_ERR(server);
2977 goto out_err_noserver;
2979 sb_mntdata.server = server;
2981 if (server->flags & NFS4_MOUNT_UNSHARED)
2982 compare_super = NULL;
2984 /* Get a superblock - note that we may end up sharing one that already exists */
2985 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
2991 if (s->s_fs_info != server) {
2992 nfs_free_server(server);
2995 error = nfs_bdi_register(server);
2997 goto error_splat_bdi;
3001 /* initial superblock/root creation */
3003 nfs_fscache_get_super_cookie(s, NULL, data);
3006 mntroot = nfs4_get_root(s, mntfh);
3007 if (IS_ERR(mntroot)) {
3008 error = PTR_ERR(mntroot);
3009 goto error_splat_super;
3011 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
3014 goto error_splat_super;
3017 s->s_flags |= MS_ACTIVE;
3019 mnt->mnt_root = mntroot;
3021 security_sb_clone_mnt_opts(data->sb, s);
3023 nfs_free_fhandle(mntfh);
3024 dprintk("<-- nfs4_referral_get_sb() = 0\n");
3028 nfs_free_server(server);
3030 nfs_free_fhandle(mntfh);
3032 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
3036 if (server && !s->s_root)
3037 bdi_unregister(&server->backing_dev_info);
3039 deactivate_locked_super(s);
3040 nfs_free_fhandle(mntfh);
3041 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
3046 * Create an NFS4 server record on referral traversal
3048 static int nfs4_referral_get_sb(struct file_system_type *fs_type,
3049 int flags, const char *dev_name, void *raw_data,
3050 struct vfsmount *mnt)
3052 struct nfs_clone_mount *data = raw_data;
3054 struct vfsmount *root_mnt;
3057 dprintk("--> nfs4_referral_get_sb()\n");
3059 export_path = data->mnt_path;
3060 data->mnt_path = "/";
3062 root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type,
3063 flags, data, data->hostname);
3064 data->mnt_path = export_path;
3066 error = PTR_ERR(root_mnt);
3067 if (IS_ERR(root_mnt))
3070 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
3072 dprintk("<-- nfs4_referral_get_sb() = %d%s\n", error,
3073 error != 0 ? " [error]" : "");
3077 #endif /* CONFIG_NFS_V4 */