4 * Copyright (C) 1992 Rick Sladkey
6 * nfs superblock handling functions
8 * Modularised by Alan Cox <Alan.Cox@linux.org>, 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/nfs_idmap.h>
46 #include <linux/vfs.h>
47 #include <linux/inet.h>
48 #include <linux/in6.h>
50 #include <linux/nfs_xdr.h>
51 #include <linux/magic.h>
52 #include <linux/parser.h>
54 #include <asm/system.h>
55 #include <asm/uaccess.h>
59 #include "delegation.h"
63 #define NFSDBG_FACILITY NFSDBG_VFS
66 /* Mount options that take no arguments */
69 Opt_posix, Opt_noposix,
74 Opt_udp, Opt_tcp, Opt_rdma,
76 Opt_rdirplus, Opt_nordirplus,
77 Opt_sharecache, Opt_nosharecache,
79 /* Mount options that take integer arguments */
81 Opt_rsize, Opt_wsize, Opt_bsize,
82 Opt_timeo, Opt_retrans,
83 Opt_acregmin, Opt_acregmax,
84 Opt_acdirmin, Opt_acdirmax,
91 /* Mount options that take string arguments */
92 Opt_sec, Opt_proto, Opt_mountproto,
93 Opt_addr, Opt_mountaddr, Opt_clientaddr,
95 /* Mount options that are ignored */
96 Opt_userspace, Opt_deprecated,
101 static match_table_t nfs_mount_option_tokens = {
102 { Opt_userspace, "bg" },
103 { Opt_userspace, "fg" },
104 { Opt_soft, "soft" },
105 { Opt_hard, "hard" },
106 { Opt_intr, "intr" },
107 { Opt_nointr, "nointr" },
108 { Opt_posix, "posix" },
109 { Opt_noposix, "noposix" },
111 { Opt_nocto, "nocto" },
113 { Opt_noac, "noac" },
114 { Opt_lock, "lock" },
115 { Opt_nolock, "nolock" },
120 { Opt_rdma, "rdma" },
122 { Opt_noacl, "noacl" },
123 { Opt_rdirplus, "rdirplus" },
124 { Opt_nordirplus, "nordirplus" },
125 { Opt_sharecache, "sharecache" },
126 { Opt_nosharecache, "nosharecache" },
128 { Opt_port, "port=%u" },
129 { Opt_rsize, "rsize=%u" },
130 { Opt_wsize, "wsize=%u" },
131 { Opt_bsize, "bsize=%u" },
132 { Opt_timeo, "timeo=%u" },
133 { Opt_retrans, "retrans=%u" },
134 { Opt_acregmin, "acregmin=%u" },
135 { Opt_acregmax, "acregmax=%u" },
136 { Opt_acdirmin, "acdirmin=%u" },
137 { Opt_acdirmax, "acdirmax=%u" },
138 { Opt_actimeo, "actimeo=%u" },
139 { Opt_userspace, "retry=%u" },
140 { Opt_namelen, "namlen=%u" },
141 { Opt_mountport, "mountport=%u" },
142 { Opt_mountvers, "mountvers=%u" },
143 { Opt_nfsvers, "nfsvers=%u" },
144 { Opt_nfsvers, "vers=%u" },
146 { Opt_sec, "sec=%s" },
147 { Opt_proto, "proto=%s" },
148 { Opt_mountproto, "mountproto=%s" },
149 { Opt_addr, "addr=%s" },
150 { Opt_clientaddr, "clientaddr=%s" },
151 { Opt_userspace, "mounthost=%s" },
152 { Opt_mountaddr, "mountaddr=%s" },
158 Opt_xprt_udp, Opt_xprt_tcp, Opt_xprt_rdma,
163 static match_table_t nfs_xprt_protocol_tokens = {
164 { Opt_xprt_udp, "udp" },
165 { Opt_xprt_tcp, "tcp" },
166 { Opt_xprt_rdma, "rdma" },
168 { Opt_xprt_err, NULL }
172 Opt_sec_none, Opt_sec_sys,
173 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
174 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
175 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
180 static match_table_t nfs_secflavor_tokens = {
181 { Opt_sec_none, "none" },
182 { Opt_sec_none, "null" },
183 { Opt_sec_sys, "sys" },
185 { Opt_sec_krb5, "krb5" },
186 { Opt_sec_krb5i, "krb5i" },
187 { Opt_sec_krb5p, "krb5p" },
189 { Opt_sec_lkey, "lkey" },
190 { Opt_sec_lkeyi, "lkeyi" },
191 { Opt_sec_lkeyp, "lkeyp" },
193 { Opt_sec_err, NULL }
197 static void nfs_umount_begin(struct vfsmount *, int);
198 static int nfs_statfs(struct dentry *, struct kstatfs *);
199 static int nfs_show_options(struct seq_file *, struct vfsmount *);
200 static int nfs_show_stats(struct seq_file *, struct vfsmount *);
201 static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
202 static int nfs_xdev_get_sb(struct file_system_type *fs_type,
203 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
204 static void nfs_kill_super(struct super_block *);
205 static void nfs_put_super(struct super_block *);
207 static struct file_system_type nfs_fs_type = {
208 .owner = THIS_MODULE,
210 .get_sb = nfs_get_sb,
211 .kill_sb = nfs_kill_super,
212 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
215 struct file_system_type nfs_xdev_fs_type = {
216 .owner = THIS_MODULE,
218 .get_sb = nfs_xdev_get_sb,
219 .kill_sb = nfs_kill_super,
220 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
223 static const struct super_operations nfs_sops = {
224 .alloc_inode = nfs_alloc_inode,
225 .destroy_inode = nfs_destroy_inode,
226 .write_inode = nfs_write_inode,
227 .put_super = nfs_put_super,
228 .statfs = nfs_statfs,
229 .clear_inode = nfs_clear_inode,
230 .umount_begin = nfs_umount_begin,
231 .show_options = nfs_show_options,
232 .show_stats = nfs_show_stats,
236 static int nfs4_get_sb(struct file_system_type *fs_type,
237 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
238 static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
239 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
240 static int nfs4_referral_get_sb(struct file_system_type *fs_type,
241 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
242 static void nfs4_kill_super(struct super_block *sb);
244 static struct file_system_type nfs4_fs_type = {
245 .owner = THIS_MODULE,
247 .get_sb = nfs4_get_sb,
248 .kill_sb = nfs4_kill_super,
249 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
252 struct file_system_type nfs4_xdev_fs_type = {
253 .owner = THIS_MODULE,
255 .get_sb = nfs4_xdev_get_sb,
256 .kill_sb = nfs4_kill_super,
257 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
260 struct file_system_type nfs4_referral_fs_type = {
261 .owner = THIS_MODULE,
263 .get_sb = nfs4_referral_get_sb,
264 .kill_sb = nfs4_kill_super,
265 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
268 static const struct super_operations nfs4_sops = {
269 .alloc_inode = nfs_alloc_inode,
270 .destroy_inode = nfs_destroy_inode,
271 .write_inode = nfs_write_inode,
272 .statfs = nfs_statfs,
273 .clear_inode = nfs4_clear_inode,
274 .umount_begin = nfs_umount_begin,
275 .show_options = nfs_show_options,
276 .show_stats = nfs_show_stats,
280 static struct shrinker acl_shrinker = {
281 .shrink = nfs_access_cache_shrinker,
282 .seeks = DEFAULT_SEEKS,
286 * Register the NFS filesystems
288 int __init register_nfs_fs(void)
292 ret = register_filesystem(&nfs_fs_type);
296 ret = nfs_register_sysctl();
300 ret = register_filesystem(&nfs4_fs_type);
304 register_shrinker(&acl_shrinker);
309 nfs_unregister_sysctl();
312 unregister_filesystem(&nfs_fs_type);
318 * Unregister the NFS filesystems
320 void __exit unregister_nfs_fs(void)
322 unregister_shrinker(&acl_shrinker);
324 unregister_filesystem(&nfs4_fs_type);
326 nfs_unregister_sysctl();
327 unregister_filesystem(&nfs_fs_type);
330 void nfs_sb_active(struct nfs_server *server)
332 atomic_inc(&server->active);
335 void nfs_sb_deactive(struct nfs_server *server)
337 if (atomic_dec_and_test(&server->active))
338 wake_up(&server->active_wq);
341 static void nfs_put_super(struct super_block *sb)
343 struct nfs_server *server = NFS_SB(sb);
345 * Make sure there are no outstanding ops to this server.
346 * If so, wait for them to finish before allowing the
347 * unmount to continue.
349 wait_event(server->active_wq, atomic_read(&server->active) == 0);
353 * Deliver file system statistics to userspace
355 static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
357 struct nfs_server *server = NFS_SB(dentry->d_sb);
358 unsigned char blockbits;
359 unsigned long blockres;
360 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
361 struct nfs_fattr fattr;
362 struct nfs_fsstat res = {
369 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
372 buf->f_type = NFS_SUPER_MAGIC;
375 * Current versions of glibc do not correctly handle the
376 * case where f_frsize != f_bsize. Eventually we want to
377 * report the value of wtmult in this field.
379 buf->f_frsize = dentry->d_sb->s_blocksize;
382 * On most *nix systems, f_blocks, f_bfree, and f_bavail
383 * are reported in units of f_frsize. Linux hasn't had
384 * an f_frsize field in its statfs struct until recently,
385 * thus historically Linux's sys_statfs reports these
386 * fields in units of f_bsize.
388 buf->f_bsize = dentry->d_sb->s_blocksize;
389 blockbits = dentry->d_sb->s_blocksize_bits;
390 blockres = (1 << blockbits) - 1;
391 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
392 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
393 buf->f_bavail = (res.abytes + blockres) >> blockbits;
395 buf->f_files = res.tfiles;
396 buf->f_ffree = res.afiles;
398 buf->f_namelen = server->namelen;
404 dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
410 * Map the security flavour number to a name
412 static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
414 static const struct {
415 rpc_authflavor_t flavour;
418 { RPC_AUTH_NULL, "null" },
419 { RPC_AUTH_UNIX, "sys" },
420 { RPC_AUTH_GSS_KRB5, "krb5" },
421 { RPC_AUTH_GSS_KRB5I, "krb5i" },
422 { RPC_AUTH_GSS_KRB5P, "krb5p" },
423 { RPC_AUTH_GSS_LKEY, "lkey" },
424 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
425 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
426 { RPC_AUTH_GSS_SPKM, "spkm" },
427 { RPC_AUTH_GSS_SPKMI, "spkmi" },
428 { RPC_AUTH_GSS_SPKMP, "spkmp" },
429 { UINT_MAX, "unknown" }
433 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
434 if (sec_flavours[i].flavour == flavour)
437 return sec_flavours[i].str;
441 * Describe the mount options in force on this server representation
443 static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
445 static const struct proc_nfs_info {
450 { NFS_MOUNT_SOFT, ",soft", ",hard" },
451 { NFS_MOUNT_INTR, ",intr", ",nointr" },
452 { NFS_MOUNT_NOCTO, ",nocto", "" },
453 { NFS_MOUNT_NOAC, ",noac", "" },
454 { NFS_MOUNT_NONLM, ",nolock", "" },
455 { NFS_MOUNT_NOACL, ",noacl", "" },
456 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
457 { NFS_MOUNT_UNSHARED, ",nosharecache", ""},
460 const struct proc_nfs_info *nfs_infop;
461 struct nfs_client *clp = nfss->nfs_client;
463 seq_printf(m, ",vers=%d", clp->rpc_ops->version);
464 seq_printf(m, ",rsize=%d", nfss->rsize);
465 seq_printf(m, ",wsize=%d", nfss->wsize);
466 if (nfss->acregmin != 3*HZ || showdefaults)
467 seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
468 if (nfss->acregmax != 60*HZ || showdefaults)
469 seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
470 if (nfss->acdirmin != 30*HZ || showdefaults)
471 seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
472 if (nfss->acdirmax != 60*HZ || showdefaults)
473 seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
474 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
475 if (nfss->flags & nfs_infop->flag)
476 seq_puts(m, nfs_infop->str);
478 seq_puts(m, nfs_infop->nostr);
480 seq_printf(m, ",proto=%s",
481 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_PROTO));
482 seq_printf(m, ",timeo=%lu", 10U * clp->retrans_timeo / HZ);
483 seq_printf(m, ",retrans=%u", clp->retrans_count);
484 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
488 * Describe the mount options on this VFS mountpoint
490 static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
492 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
494 nfs_show_mount_options(m, nfss, 0);
496 seq_printf(m, ",addr=%s",
497 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
504 * Present statistical information for this VFS mountpoint
506 static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
509 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
510 struct rpc_auth *auth = nfss->client->cl_auth;
511 struct nfs_iostats totals = { };
513 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
516 * Display all mount option settings
518 seq_printf(m, "\n\topts:\t");
519 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
520 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
521 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
522 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
523 nfs_show_mount_options(m, nfss, 1);
525 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
527 seq_printf(m, "\n\tcaps:\t");
528 seq_printf(m, "caps=0x%x", nfss->caps);
529 seq_printf(m, ",wtmult=%d", nfss->wtmult);
530 seq_printf(m, ",dtsize=%d", nfss->dtsize);
531 seq_printf(m, ",bsize=%d", nfss->bsize);
532 seq_printf(m, ",namelen=%d", nfss->namelen);
535 if (nfss->nfs_client->rpc_ops->version == 4) {
536 seq_printf(m, "\n\tnfsv4:\t");
537 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
538 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
539 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
544 * Display security flavor in effect for this mount
546 seq_printf(m, "\n\tsec:\tflavor=%d", auth->au_ops->au_flavor);
548 seq_printf(m, ",pseudoflavor=%d", auth->au_flavor);
551 * Display superblock I/O counters
553 for_each_possible_cpu(cpu) {
554 struct nfs_iostats *stats;
557 stats = per_cpu_ptr(nfss->io_stats, cpu);
559 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
560 totals.events[i] += stats->events[i];
561 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
562 totals.bytes[i] += stats->bytes[i];
567 seq_printf(m, "\n\tevents:\t");
568 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
569 seq_printf(m, "%lu ", totals.events[i]);
570 seq_printf(m, "\n\tbytes:\t");
571 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
572 seq_printf(m, "%Lu ", totals.bytes[i]);
575 rpc_print_iostats(m, nfss->client);
581 * Begin unmount by attempting to remove all automounted mountpoints we added
582 * in response to xdev traversals and referrals
584 static void nfs_umount_begin(struct vfsmount *vfsmnt, int flags)
586 struct nfs_server *server = NFS_SB(vfsmnt->mnt_sb);
587 struct rpc_clnt *rpc;
589 shrink_submounts(vfsmnt, &nfs_automount_list);
591 if (!(flags & MNT_FORCE))
593 /* -EIO all pending I/O */
594 rpc = server->client_acl;
596 rpc_killall_tasks(rpc);
597 rpc = server->client;
599 rpc_killall_tasks(rpc);
603 * Set the port number in an address. Be agnostic about the address family.
605 static void nfs_set_port(struct sockaddr *sap, unsigned short port)
607 switch (sap->sa_family) {
609 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
610 ap->sin_port = htons(port);
614 struct sockaddr_in6 *ap = (struct sockaddr_in6 *)sap;
615 ap->sin6_port = htons(port);
622 * Sanity-check a server address provided by the mount command.
624 * Address family must be initialized, and address must not be
625 * the ANY address for that family.
627 static int nfs_verify_server_address(struct sockaddr *addr)
629 switch (addr->sa_family) {
631 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
632 return sa->sin_addr.s_addr != INADDR_ANY;
635 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
636 return !ipv6_addr_any(sa);
644 * Error-check and convert a string of mount options from user space into
647 static int nfs_parse_mount_options(char *raw,
648 struct nfs_parsed_mount_data *mnt)
651 unsigned short port = 0;
654 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
657 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
659 while ((p = strsep(&raw, ",")) != NULL) {
660 substring_t args[MAX_OPT_ARGS];
666 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
668 token = match_token(p, nfs_mount_option_tokens, args);
671 mnt->flags |= NFS_MOUNT_SOFT;
674 mnt->flags &= ~NFS_MOUNT_SOFT;
677 mnt->flags |= NFS_MOUNT_INTR;
680 mnt->flags &= ~NFS_MOUNT_INTR;
683 mnt->flags |= NFS_MOUNT_POSIX;
686 mnt->flags &= ~NFS_MOUNT_POSIX;
689 mnt->flags &= ~NFS_MOUNT_NOCTO;
692 mnt->flags |= NFS_MOUNT_NOCTO;
695 mnt->flags &= ~NFS_MOUNT_NOAC;
698 mnt->flags |= NFS_MOUNT_NOAC;
701 mnt->flags &= ~NFS_MOUNT_NONLM;
704 mnt->flags |= NFS_MOUNT_NONLM;
707 mnt->flags &= ~NFS_MOUNT_VER3;
710 mnt->flags |= NFS_MOUNT_VER3;
713 mnt->flags &= ~NFS_MOUNT_TCP;
714 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
719 mnt->flags |= NFS_MOUNT_TCP;
720 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
725 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
726 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
731 mnt->flags &= ~NFS_MOUNT_NOACL;
734 mnt->flags |= NFS_MOUNT_NOACL;
737 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
740 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
743 mnt->flags &= ~NFS_MOUNT_UNSHARED;
745 case Opt_nosharecache:
746 mnt->flags |= NFS_MOUNT_UNSHARED;
750 if (match_int(args, &option))
752 if (option < 0 || option > 65535)
757 if (match_int(args, &mnt->rsize))
761 if (match_int(args, &mnt->wsize))
765 if (match_int(args, &option))
772 if (match_int(args, &mnt->timeo))
776 if (match_int(args, &mnt->retrans))
780 if (match_int(args, &mnt->acregmin))
784 if (match_int(args, &mnt->acregmax))
788 if (match_int(args, &mnt->acdirmin))
792 if (match_int(args, &mnt->acdirmax))
796 if (match_int(args, &option))
803 mnt->acdirmax = option;
806 if (match_int(args, &mnt->namlen))
810 if (match_int(args, &option))
812 if (option < 0 || option > 65535)
814 mnt->mount_server.port = option;
817 if (match_int(args, &option))
821 mnt->mount_server.version = option;
824 if (match_int(args, &option))
828 mnt->flags &= ~NFS_MOUNT_VER3;
831 mnt->flags |= NFS_MOUNT_VER3;
839 string = match_strdup(args);
842 token = match_token(string, nfs_secflavor_tokens, args);
846 * The flags setting is for v2/v3. The flavor_len
847 * setting is for v4. v2/v3 also need to know the
848 * difference between NULL and UNIX.
852 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
853 mnt->auth_flavor_len = 0;
854 mnt->auth_flavors[0] = RPC_AUTH_NULL;
857 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
858 mnt->auth_flavor_len = 0;
859 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
862 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
863 mnt->auth_flavor_len = 1;
864 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
867 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
868 mnt->auth_flavor_len = 1;
869 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
872 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
873 mnt->auth_flavor_len = 1;
874 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
877 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
878 mnt->auth_flavor_len = 1;
879 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
882 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
883 mnt->auth_flavor_len = 1;
884 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
887 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
888 mnt->auth_flavor_len = 1;
889 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
892 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
893 mnt->auth_flavor_len = 1;
894 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
897 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
898 mnt->auth_flavor_len = 1;
899 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
902 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
903 mnt->auth_flavor_len = 1;
904 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
911 string = match_strdup(args);
914 token = match_token(string,
915 nfs_xprt_protocol_tokens, args);
920 mnt->flags &= ~NFS_MOUNT_TCP;
921 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
926 mnt->flags |= NFS_MOUNT_TCP;
927 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
932 /* vector side protocols to TCP */
933 mnt->flags |= NFS_MOUNT_TCP;
934 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
943 string = match_strdup(args);
946 token = match_token(string,
947 nfs_xprt_protocol_tokens, args);
952 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
955 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
957 case Opt_xprt_rdma: /* not used for side protocols */
963 string = match_strdup(args);
966 mnt->nfs_server.address.sin_family = AF_INET;
967 mnt->nfs_server.address.sin_addr.s_addr =
972 string = match_strdup(args);
975 mnt->client_address = string;
978 string = match_strdup(args);
981 mnt->mount_server.address.sin_family = AF_INET;
982 mnt->mount_server.address.sin_addr.s_addr =
996 nfs_set_port((struct sockaddr *)&mnt->nfs_server.address, port);
1001 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1005 printk(KERN_INFO "NFS: unrecognized NFS version number\n");
1009 printk(KERN_INFO "NFS: unrecognized transport protocol\n");
1013 printk(KERN_INFO "NFS: unrecognized security flavor\n");
1017 printk(KERN_INFO "NFS: unknown mount option: %s\n", p);
1022 * Use the remote server's MOUNT service to request the NFS file handle
1023 * corresponding to the provided path.
1025 static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1026 struct nfs_fh *root_fh)
1028 struct sockaddr_in sin;
1031 if (args->mount_server.version == 0) {
1032 if (args->flags & NFS_MOUNT_VER3)
1033 args->mount_server.version = NFS_MNT3_VERSION;
1035 args->mount_server.version = NFS_MNT_VERSION;
1039 * Construct the mount server's address.
1041 if (args->mount_server.address.sin_addr.s_addr != INADDR_ANY)
1042 sin = args->mount_server.address;
1044 sin = args->nfs_server.address;
1046 * autobind will be used if mount_server.port == 0
1048 nfs_set_port((struct sockaddr *)&sin, args->mount_server.port);
1051 * Now ask the mount server to map our export path
1054 status = nfs_mount((struct sockaddr *) &sin,
1056 args->nfs_server.hostname,
1057 args->nfs_server.export_path,
1058 args->mount_server.version,
1059 args->mount_server.protocol,
1064 dfprintk(MOUNT, "NFS: unable to mount server " NIPQUAD_FMT
1065 ", error %d\n", NIPQUAD(sin.sin_addr.s_addr), status);
1070 * Validate the NFS2/NFS3 mount data
1071 * - fills in the mount root filehandle
1073 * For option strings, user space handles the following behaviors:
1075 * + DNS: mapping server host name to IP address ("addr=" option)
1077 * + failure mode: how to behave if a mount request can't be handled
1078 * immediately ("fg/bg" option)
1080 * + retry: how often to retry a mount request ("retry=" option)
1082 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1083 * mountproto=tcp after mountproto=udp, and so on
1085 static int nfs_validate_mount_data(void *options,
1086 struct nfs_parsed_mount_data *args,
1087 struct nfs_fh *mntfh,
1088 const char *dev_name)
1090 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
1092 memset(args, 0, sizeof(*args));
1097 args->flags = (NFS_MOUNT_VER3 | NFS_MOUNT_TCP);
1098 args->rsize = NFS_MAX_FILE_IO_SIZE;
1099 args->wsize = NFS_MAX_FILE_IO_SIZE;
1103 args->acregmax = 60;
1104 args->acdirmin = 30;
1105 args->acdirmax = 60;
1106 args->mount_server.protocol = XPRT_TRANSPORT_UDP;
1107 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
1109 switch (data->version) {
1115 if (data->flags & NFS_MOUNT_VER3)
1117 data->root.size = NFS2_FHSIZE;
1118 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1120 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1123 memset(data->context, 0, sizeof(data->context));
1125 if (data->flags & NFS_MOUNT_VER3)
1126 mntfh->size = data->root.size;
1128 mntfh->size = NFS2_FHSIZE;
1130 if (mntfh->size > sizeof(mntfh->data))
1131 goto out_invalid_fh;
1133 memcpy(mntfh->data, data->root.data, mntfh->size);
1134 if (mntfh->size < sizeof(mntfh->data))
1135 memset(mntfh->data + mntfh->size, 0,
1136 sizeof(mntfh->data) - mntfh->size);
1138 if (!nfs_verify_server_address((struct sockaddr *) &data->addr))
1139 goto out_no_address;
1142 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1145 args->flags = data->flags;
1146 args->rsize = data->rsize;
1147 args->wsize = data->wsize;
1148 args->flags = data->flags;
1149 args->timeo = data->timeo;
1150 args->retrans = data->retrans;
1151 args->acregmin = data->acregmin;
1152 args->acregmax = data->acregmax;
1153 args->acdirmin = data->acdirmin;
1154 args->acdirmax = data->acdirmax;
1155 args->nfs_server.address = data->addr;
1156 if (!(data->flags & NFS_MOUNT_TCP))
1157 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
1158 /* N.B. caller will free nfs_server.hostname in all cases */
1159 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1160 args->namlen = data->namlen;
1161 args->bsize = data->bsize;
1162 args->auth_flavors[0] = data->pseudoflavor;
1169 if (nfs_parse_mount_options((char *)options, args) == 0)
1172 if (!nfs_verify_server_address((struct sockaddr *)
1173 &args->nfs_server.address))
1174 goto out_no_address;
1176 c = strchr(dev_name, ':');
1180 /* N.B. caller will free nfs_server.hostname in all cases */
1181 args->nfs_server.hostname = kstrndup(dev_name, len, GFP_KERNEL);
1184 if (strlen(c) > NFS_MAXPATHLEN)
1185 return -ENAMETOOLONG;
1186 args->nfs_server.export_path = c;
1188 status = nfs_try_mount(args, mntfh);
1196 if (!(args->flags & NFS_MOUNT_SECFLAVOUR))
1197 args->auth_flavors[0] = RPC_AUTH_UNIX;
1199 #ifndef CONFIG_NFS_V3
1200 if (args->flags & NFS_MOUNT_VER3)
1201 goto out_v3_not_compiled;
1202 #endif /* !CONFIG_NFS_V3 */
1207 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1211 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1216 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1219 #ifndef CONFIG_NFS_V3
1220 out_v3_not_compiled:
1221 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1222 return -EPROTONOSUPPORT;
1223 #endif /* !CONFIG_NFS_V3 */
1226 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1230 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1235 * Initialise the common bits of the superblock
1237 static inline void nfs_initialise_sb(struct super_block *sb)
1239 struct nfs_server *server = NFS_SB(sb);
1241 sb->s_magic = NFS_SUPER_MAGIC;
1243 /* We probably want something more informative here */
1244 snprintf(sb->s_id, sizeof(sb->s_id),
1245 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
1247 if (sb->s_blocksize == 0)
1248 sb->s_blocksize = nfs_block_bits(server->wsize,
1249 &sb->s_blocksize_bits);
1251 if (server->flags & NFS_MOUNT_NOAC)
1252 sb->s_flags |= MS_SYNCHRONOUS;
1254 nfs_super_set_maxbytes(sb, server->maxfilesize);
1258 * Finish setting up an NFS2/3 superblock
1260 static void nfs_fill_super(struct super_block *sb,
1261 struct nfs_parsed_mount_data *data)
1263 struct nfs_server *server = NFS_SB(sb);
1265 sb->s_blocksize_bits = 0;
1266 sb->s_blocksize = 0;
1268 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
1270 if (server->flags & NFS_MOUNT_VER3) {
1271 /* The VFS shouldn't apply the umask to mode bits. We will do
1272 * so ourselves when necessary.
1274 sb->s_flags |= MS_POSIXACL;
1275 sb->s_time_gran = 1;
1278 sb->s_op = &nfs_sops;
1279 nfs_initialise_sb(sb);
1283 * Finish setting up a cloned NFS2/3 superblock
1285 static void nfs_clone_super(struct super_block *sb,
1286 const struct super_block *old_sb)
1288 struct nfs_server *server = NFS_SB(sb);
1290 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1291 sb->s_blocksize = old_sb->s_blocksize;
1292 sb->s_maxbytes = old_sb->s_maxbytes;
1294 if (server->flags & NFS_MOUNT_VER3) {
1295 /* The VFS shouldn't apply the umask to mode bits. We will do
1296 * so ourselves when necessary.
1298 sb->s_flags |= MS_POSIXACL;
1299 sb->s_time_gran = 1;
1302 sb->s_op = old_sb->s_op;
1303 nfs_initialise_sb(sb);
1306 #define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS)
1308 static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
1310 const struct nfs_server *a = s->s_fs_info;
1311 const struct rpc_clnt *clnt_a = a->client;
1312 const struct rpc_clnt *clnt_b = b->client;
1314 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
1316 if (a->nfs_client != b->nfs_client)
1318 if (a->flags != b->flags)
1320 if (a->wsize != b->wsize)
1322 if (a->rsize != b->rsize)
1324 if (a->acregmin != b->acregmin)
1326 if (a->acregmax != b->acregmax)
1328 if (a->acdirmin != b->acdirmin)
1330 if (a->acdirmax != b->acdirmax)
1332 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
1339 struct nfs_sb_mountdata {
1340 struct nfs_server *server;
1344 static int nfs_set_super(struct super_block *s, void *data)
1346 struct nfs_sb_mountdata *sb_mntdata = data;
1347 struct nfs_server *server = sb_mntdata->server;
1350 s->s_flags = sb_mntdata->mntflags;
1351 s->s_fs_info = server;
1352 ret = set_anon_super(s, server);
1354 server->s_dev = s->s_dev;
1358 static int nfs_compare_super_address(struct nfs_server *server1,
1359 struct nfs_server *server2)
1361 struct sockaddr *sap1, *sap2;
1363 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
1364 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
1366 if (sap1->sa_family != sap2->sa_family)
1369 switch (sap1->sa_family) {
1371 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
1372 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
1373 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
1375 if (sin1->sin_port != sin2->sin_port)
1380 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
1381 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
1382 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
1384 if (sin1->sin6_port != sin2->sin6_port)
1395 static int nfs_compare_super(struct super_block *sb, void *data)
1397 struct nfs_sb_mountdata *sb_mntdata = data;
1398 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
1399 int mntflags = sb_mntdata->mntflags;
1401 if (!nfs_compare_super_address(old, server))
1403 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
1404 if (old->flags & NFS_MOUNT_UNSHARED)
1406 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
1408 return nfs_compare_mount_options(sb, server, mntflags);
1411 static int nfs_get_sb(struct file_system_type *fs_type,
1412 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
1414 struct nfs_server *server = NULL;
1415 struct super_block *s;
1416 struct nfs_fh mntfh;
1417 struct nfs_parsed_mount_data data;
1418 struct dentry *mntroot;
1419 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
1420 struct nfs_sb_mountdata sb_mntdata = {
1425 /* Validate the mount data */
1426 error = nfs_validate_mount_data(raw_data, &data, &mntfh, dev_name);
1430 /* Get a volume representation */
1431 server = nfs_create_server(&data, &mntfh);
1432 if (IS_ERR(server)) {
1433 error = PTR_ERR(server);
1436 sb_mntdata.server = server;
1438 if (server->flags & NFS_MOUNT_UNSHARED)
1439 compare_super = NULL;
1441 /* Get a superblock - note that we may end up sharing one that already exists */
1442 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
1448 if (s->s_fs_info != server) {
1449 nfs_free_server(server);
1454 /* initial superblock/root creation */
1455 nfs_fill_super(s, &data);
1458 mntroot = nfs_get_root(s, &mntfh);
1459 if (IS_ERR(mntroot)) {
1460 error = PTR_ERR(mntroot);
1461 goto error_splat_super;
1464 s->s_flags |= MS_ACTIVE;
1466 mnt->mnt_root = mntroot;
1470 kfree(data.nfs_server.hostname);
1474 nfs_free_server(server);
1478 up_write(&s->s_umount);
1479 deactivate_super(s);
1484 * Destroy an NFS2/3 superblock
1486 static void nfs_kill_super(struct super_block *s)
1488 struct nfs_server *server = NFS_SB(s);
1491 nfs_free_server(server);
1495 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
1497 static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
1498 const char *dev_name, void *raw_data,
1499 struct vfsmount *mnt)
1501 struct nfs_clone_mount *data = raw_data;
1502 struct super_block *s;
1503 struct nfs_server *server;
1504 struct dentry *mntroot;
1505 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
1506 struct nfs_sb_mountdata sb_mntdata = {
1511 dprintk("--> nfs_xdev_get_sb()\n");
1513 /* create a new volume representation */
1514 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1515 if (IS_ERR(server)) {
1516 error = PTR_ERR(server);
1517 goto out_err_noserver;
1519 sb_mntdata.server = server;
1521 if (server->flags & NFS_MOUNT_UNSHARED)
1522 compare_super = NULL;
1524 /* Get a superblock - note that we may end up sharing one that already exists */
1525 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
1531 if (s->s_fs_info != server) {
1532 nfs_free_server(server);
1537 /* initial superblock/root creation */
1538 nfs_clone_super(s, data->sb);
1541 mntroot = nfs_get_root(s, data->fh);
1542 if (IS_ERR(mntroot)) {
1543 error = PTR_ERR(mntroot);
1544 goto error_splat_super;
1546 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
1549 goto error_splat_super;
1552 s->s_flags |= MS_ACTIVE;
1554 mnt->mnt_root = mntroot;
1556 dprintk("<-- nfs_xdev_get_sb() = 0\n");
1560 nfs_free_server(server);
1562 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
1566 up_write(&s->s_umount);
1567 deactivate_super(s);
1568 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
1572 #ifdef CONFIG_NFS_V4
1575 * Finish setting up a cloned NFS4 superblock
1577 static void nfs4_clone_super(struct super_block *sb,
1578 const struct super_block *old_sb)
1580 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1581 sb->s_blocksize = old_sb->s_blocksize;
1582 sb->s_maxbytes = old_sb->s_maxbytes;
1583 sb->s_time_gran = 1;
1584 sb->s_op = old_sb->s_op;
1585 nfs_initialise_sb(sb);
1589 * Set up an NFS4 superblock
1591 static void nfs4_fill_super(struct super_block *sb)
1593 sb->s_time_gran = 1;
1594 sb->s_op = &nfs4_sops;
1595 nfs_initialise_sb(sb);
1599 * If the user didn't specify a port, set the port number to
1600 * the NFS version 4 default port.
1602 static void nfs4_default_port(struct sockaddr *sap)
1604 switch (sap->sa_family) {
1606 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
1607 if (ap->sin_port == 0)
1608 ap->sin_port = htons(NFS_PORT);
1612 struct sockaddr_in6 *ap = (struct sockaddr_in6 *)sap;
1613 if (ap->sin6_port == 0)
1614 ap->sin6_port = htons(NFS_PORT);
1621 * Validate NFSv4 mount options
1623 static int nfs4_validate_mount_data(void *options,
1624 struct nfs_parsed_mount_data *args,
1625 const char *dev_name)
1627 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
1630 memset(args, 0, sizeof(*args));
1635 args->rsize = NFS_MAX_FILE_IO_SIZE;
1636 args->wsize = NFS_MAX_FILE_IO_SIZE;
1640 args->acregmax = 60;
1641 args->acdirmin = 30;
1642 args->acdirmax = 60;
1643 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
1645 switch (data->version) {
1647 if (data->host_addrlen != sizeof(args->nfs_server.address))
1648 goto out_no_address;
1649 if (copy_from_user(&args->nfs_server.address,
1651 sizeof(args->nfs_server.address)))
1653 if (!nfs_verify_server_address((struct sockaddr *)
1654 &args->nfs_server.address))
1655 goto out_no_address;
1657 nfs4_default_port((struct sockaddr *)
1658 &args->nfs_server.address);
1660 switch (data->auth_flavourlen) {
1662 args->auth_flavors[0] = RPC_AUTH_UNIX;
1665 if (copy_from_user(&args->auth_flavors[0],
1666 data->auth_flavours,
1667 sizeof(args->auth_flavors[0])))
1671 goto out_inval_auth;
1674 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
1677 args->nfs_server.hostname = c;
1679 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
1682 args->nfs_server.export_path = c;
1683 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
1685 c = strndup_user(data->client_addr.data, 16);
1688 args->client_address = c;
1691 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
1695 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
1696 args->rsize = data->rsize;
1697 args->wsize = data->wsize;
1698 args->timeo = data->timeo;
1699 args->retrans = data->retrans;
1700 args->acregmin = data->acregmin;
1701 args->acregmax = data->acregmax;
1702 args->acdirmin = data->acdirmin;
1703 args->acdirmax = data->acdirmax;
1704 args->nfs_server.protocol = data->proto;
1710 if (nfs_parse_mount_options((char *)options, args) == 0)
1713 if (!nfs_verify_server_address((struct sockaddr *)
1714 &args->nfs_server.address))
1717 nfs4_default_port((struct sockaddr *)
1718 &args->nfs_server.address);
1720 switch (args->auth_flavor_len) {
1722 args->auth_flavors[0] = RPC_AUTH_UNIX;
1727 goto out_inval_auth;
1731 * Split "dev_name" into "hostname:mntpath".
1733 c = strchr(dev_name, ':');
1736 /* while calculating len, pretend ':' is '\0' */
1738 if (len > NFS4_MAXNAMLEN)
1739 return -ENAMETOOLONG;
1740 /* N.B. caller will free nfs_server.hostname in all cases */
1741 args->nfs_server.hostname = kstrndup(dev_name, len, GFP_KERNEL);
1743 c++; /* step over the ':' */
1745 if (len > NFS4_MAXPATHLEN)
1746 return -ENAMETOOLONG;
1747 args->nfs_server.export_path = kstrndup(c, len, GFP_KERNEL);
1749 dprintk("NFS: MNTPATH: '%s'\n", args->nfs_server.export_path);
1751 if (args->client_address == NULL)
1752 goto out_no_client_address;
1761 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
1765 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
1766 data->auth_flavourlen);
1770 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
1773 out_no_client_address:
1774 dfprintk(MOUNT, "NFS4: mount program didn't pass callback address\n");
1779 * Get the superblock for an NFS4 mountpoint
1781 static int nfs4_get_sb(struct file_system_type *fs_type,
1782 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
1784 struct nfs_parsed_mount_data data;
1785 struct super_block *s;
1786 struct nfs_server *server;
1787 struct nfs_fh mntfh;
1788 struct dentry *mntroot;
1789 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
1790 struct nfs_sb_mountdata sb_mntdata = {
1795 /* Validate the mount data */
1796 error = nfs4_validate_mount_data(raw_data, &data, dev_name);
1800 /* Get a volume representation */
1801 server = nfs4_create_server(&data, &mntfh);
1802 if (IS_ERR(server)) {
1803 error = PTR_ERR(server);
1806 sb_mntdata.server = server;
1808 if (server->flags & NFS4_MOUNT_UNSHARED)
1809 compare_super = NULL;
1811 /* Get a superblock - note that we may end up sharing one that already exists */
1812 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
1818 if (s->s_fs_info != server) {
1819 nfs_free_server(server);
1824 /* initial superblock/root creation */
1828 mntroot = nfs4_get_root(s, &mntfh);
1829 if (IS_ERR(mntroot)) {
1830 error = PTR_ERR(mntroot);
1831 goto error_splat_super;
1834 s->s_flags |= MS_ACTIVE;
1836 mnt->mnt_root = mntroot;
1840 kfree(data.client_address);
1841 kfree(data.nfs_server.export_path);
1842 kfree(data.nfs_server.hostname);
1846 nfs_free_server(server);
1850 up_write(&s->s_umount);
1851 deactivate_super(s);
1855 static void nfs4_kill_super(struct super_block *sb)
1857 struct nfs_server *server = NFS_SB(sb);
1859 nfs_return_all_delegations(sb);
1860 kill_anon_super(sb);
1862 nfs4_renewd_prepare_shutdown(server);
1863 nfs_free_server(server);
1867 * Clone an NFS4 server record on xdev traversal (FSID-change)
1869 static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
1870 const char *dev_name, void *raw_data,
1871 struct vfsmount *mnt)
1873 struct nfs_clone_mount *data = raw_data;
1874 struct super_block *s;
1875 struct nfs_server *server;
1876 struct dentry *mntroot;
1877 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
1878 struct nfs_sb_mountdata sb_mntdata = {
1883 dprintk("--> nfs4_xdev_get_sb()\n");
1885 /* create a new volume representation */
1886 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1887 if (IS_ERR(server)) {
1888 error = PTR_ERR(server);
1889 goto out_err_noserver;
1891 sb_mntdata.server = server;
1893 if (server->flags & NFS4_MOUNT_UNSHARED)
1894 compare_super = NULL;
1896 /* Get a superblock - note that we may end up sharing one that already exists */
1897 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
1903 if (s->s_fs_info != server) {
1904 nfs_free_server(server);
1909 /* initial superblock/root creation */
1910 nfs4_clone_super(s, data->sb);
1913 mntroot = nfs4_get_root(s, data->fh);
1914 if (IS_ERR(mntroot)) {
1915 error = PTR_ERR(mntroot);
1916 goto error_splat_super;
1918 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
1921 goto error_splat_super;
1924 s->s_flags |= MS_ACTIVE;
1926 mnt->mnt_root = mntroot;
1928 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
1932 nfs_free_server(server);
1934 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
1938 up_write(&s->s_umount);
1939 deactivate_super(s);
1940 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
1945 * Create an NFS4 server record on referral traversal
1947 static int nfs4_referral_get_sb(struct file_system_type *fs_type, int flags,
1948 const char *dev_name, void *raw_data,
1949 struct vfsmount *mnt)
1951 struct nfs_clone_mount *data = raw_data;
1952 struct super_block *s;
1953 struct nfs_server *server;
1954 struct dentry *mntroot;
1955 struct nfs_fh mntfh;
1956 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
1957 struct nfs_sb_mountdata sb_mntdata = {
1962 dprintk("--> nfs4_referral_get_sb()\n");
1964 /* create a new volume representation */
1965 server = nfs4_create_referral_server(data, &mntfh);
1966 if (IS_ERR(server)) {
1967 error = PTR_ERR(server);
1968 goto out_err_noserver;
1970 sb_mntdata.server = server;
1972 if (server->flags & NFS4_MOUNT_UNSHARED)
1973 compare_super = NULL;
1975 /* Get a superblock - note that we may end up sharing one that already exists */
1976 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
1982 if (s->s_fs_info != server) {
1983 nfs_free_server(server);
1988 /* initial superblock/root creation */
1992 mntroot = nfs4_get_root(s, &mntfh);
1993 if (IS_ERR(mntroot)) {
1994 error = PTR_ERR(mntroot);
1995 goto error_splat_super;
1997 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2000 goto error_splat_super;
2003 s->s_flags |= MS_ACTIVE;
2005 mnt->mnt_root = mntroot;
2007 dprintk("<-- nfs4_referral_get_sb() = 0\n");
2011 nfs_free_server(server);
2013 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
2017 up_write(&s->s_umount);
2018 deactivate_super(s);
2019 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
2023 #endif /* CONFIG_NFS_V4 */