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>
52 #include <linux/netdevice.h>
53 #include <linux/nfs_xdr.h>
54 #include <linux/magic.h>
55 #include <linux/parser.h>
57 #include <asm/system.h>
58 #include <asm/uaccess.h>
62 #include "delegation.h"
67 #define NFSDBG_FACILITY NFSDBG_VFS
70 /* Mount options that take no arguments */
72 Opt_posix
, Opt_noposix
,
76 Opt_v2
, Opt_v3
, Opt_v4
,
77 Opt_udp
, Opt_tcp
, Opt_rdma
,
79 Opt_rdirplus
, Opt_nordirplus
,
80 Opt_sharecache
, Opt_nosharecache
,
81 Opt_resvport
, Opt_noresvport
,
82 Opt_fscache
, Opt_nofscache
,
84 /* Mount options that take integer arguments */
86 Opt_rsize
, Opt_wsize
, Opt_bsize
,
87 Opt_timeo
, Opt_retrans
,
88 Opt_acregmin
, Opt_acregmax
,
89 Opt_acdirmin
, Opt_acdirmax
,
97 /* Mount options that take string arguments */
98 Opt_sec
, Opt_proto
, Opt_mountproto
, Opt_mounthost
,
99 Opt_addr
, Opt_mountaddr
, Opt_clientaddr
,
103 /* Special mount options */
104 Opt_userspace
, Opt_deprecated
, Opt_sloppy
,
109 static const match_table_t nfs_mount_option_tokens
= {
110 { Opt_userspace
, "bg" },
111 { Opt_userspace
, "fg" },
112 { Opt_userspace
, "retry=%s" },
114 { Opt_sloppy
, "sloppy" },
116 { Opt_soft
, "soft" },
117 { Opt_hard
, "hard" },
118 { Opt_deprecated
, "intr" },
119 { Opt_deprecated
, "nointr" },
120 { Opt_posix
, "posix" },
121 { Opt_noposix
, "noposix" },
123 { Opt_nocto
, "nocto" },
125 { Opt_noac
, "noac" },
126 { Opt_lock
, "lock" },
127 { Opt_nolock
, "nolock" },
133 { Opt_rdma
, "rdma" },
135 { Opt_noacl
, "noacl" },
136 { Opt_rdirplus
, "rdirplus" },
137 { Opt_nordirplus
, "nordirplus" },
138 { Opt_sharecache
, "sharecache" },
139 { Opt_nosharecache
, "nosharecache" },
140 { Opt_resvport
, "resvport" },
141 { Opt_noresvport
, "noresvport" },
142 { Opt_fscache
, "fsc" },
143 { Opt_fscache_uniq
, "fsc=%s" },
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" },
178 Opt_xprt_udp
, Opt_xprt_tcp
, Opt_xprt_rdma
,
183 static const match_table_t nfs_xprt_protocol_tokens
= {
184 { Opt_xprt_udp
, "udp" },
185 { Opt_xprt_tcp
, "tcp" },
186 { Opt_xprt_rdma
, "rdma" },
188 { Opt_xprt_err
, NULL
}
192 Opt_sec_none
, Opt_sec_sys
,
193 Opt_sec_krb5
, Opt_sec_krb5i
, Opt_sec_krb5p
,
194 Opt_sec_lkey
, Opt_sec_lkeyi
, Opt_sec_lkeyp
,
195 Opt_sec_spkm
, Opt_sec_spkmi
, Opt_sec_spkmp
,
200 static const match_table_t nfs_secflavor_tokens
= {
201 { Opt_sec_none
, "none" },
202 { Opt_sec_none
, "null" },
203 { Opt_sec_sys
, "sys" },
205 { Opt_sec_krb5
, "krb5" },
206 { Opt_sec_krb5i
, "krb5i" },
207 { Opt_sec_krb5p
, "krb5p" },
209 { Opt_sec_lkey
, "lkey" },
210 { Opt_sec_lkeyi
, "lkeyi" },
211 { Opt_sec_lkeyp
, "lkeyp" },
213 { Opt_sec_spkm
, "spkm3" },
214 { Opt_sec_spkmi
, "spkm3i" },
215 { Opt_sec_spkmp
, "spkm3p" },
217 { Opt_sec_err
, NULL
}
221 Opt_lookupcache_all
, Opt_lookupcache_positive
,
222 Opt_lookupcache_none
,
227 static match_table_t nfs_lookupcache_tokens
= {
228 { Opt_lookupcache_all
, "all" },
229 { Opt_lookupcache_positive
, "pos" },
230 { Opt_lookupcache_positive
, "positive" },
231 { Opt_lookupcache_none
, "none" },
233 { Opt_lookupcache_err
, NULL
}
237 static void nfs_umount_begin(struct super_block
*);
238 static int nfs_statfs(struct dentry
*, struct kstatfs
*);
239 static int nfs_show_options(struct seq_file
*, struct vfsmount
*);
240 static int nfs_show_stats(struct seq_file
*, struct vfsmount
*);
241 static int nfs_get_sb(struct file_system_type
*, int, const char *, void *, struct vfsmount
*);
242 static int nfs_xdev_get_sb(struct file_system_type
*fs_type
,
243 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
);
244 static void nfs_kill_super(struct super_block
*);
245 static int nfs_remount(struct super_block
*sb
, int *flags
, char *raw_data
);
247 static struct file_system_type nfs_fs_type
= {
248 .owner
= THIS_MODULE
,
250 .get_sb
= nfs_get_sb
,
251 .kill_sb
= nfs_kill_super
,
252 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
255 struct file_system_type nfs_xdev_fs_type
= {
256 .owner
= THIS_MODULE
,
258 .get_sb
= nfs_xdev_get_sb
,
259 .kill_sb
= nfs_kill_super
,
260 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
263 static const struct super_operations nfs_sops
= {
264 .alloc_inode
= nfs_alloc_inode
,
265 .destroy_inode
= nfs_destroy_inode
,
266 .write_inode
= nfs_write_inode
,
267 .statfs
= nfs_statfs
,
268 .clear_inode
= nfs_clear_inode
,
269 .umount_begin
= nfs_umount_begin
,
270 .show_options
= nfs_show_options
,
271 .show_stats
= nfs_show_stats
,
272 .remount_fs
= nfs_remount
,
276 static int nfs4_validate_text_mount_data(void *options
,
277 struct nfs_parsed_mount_data
*args
, const char *dev_name
);
278 static int nfs4_try_mount(int flags
, const char *dev_name
,
279 struct nfs_parsed_mount_data
*data
, struct vfsmount
*mnt
);
280 static int nfs4_get_sb(struct file_system_type
*fs_type
,
281 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
);
282 static int nfs4_remote_get_sb(struct file_system_type
*fs_type
,
283 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
);
284 static int nfs4_xdev_get_sb(struct file_system_type
*fs_type
,
285 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
);
286 static int nfs4_referral_get_sb(struct file_system_type
*fs_type
,
287 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
);
288 static int nfs4_remote_referral_get_sb(struct file_system_type
*fs_type
,
289 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
);
290 static void nfs4_kill_super(struct super_block
*sb
);
292 static struct file_system_type nfs4_fs_type
= {
293 .owner
= THIS_MODULE
,
295 .get_sb
= nfs4_get_sb
,
296 .kill_sb
= nfs4_kill_super
,
297 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
300 static struct file_system_type nfs4_remote_fs_type
= {
301 .owner
= THIS_MODULE
,
303 .get_sb
= nfs4_remote_get_sb
,
304 .kill_sb
= nfs4_kill_super
,
305 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
308 struct file_system_type nfs4_xdev_fs_type
= {
309 .owner
= THIS_MODULE
,
311 .get_sb
= nfs4_xdev_get_sb
,
312 .kill_sb
= nfs4_kill_super
,
313 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
316 static struct file_system_type nfs4_remote_referral_fs_type
= {
317 .owner
= THIS_MODULE
,
319 .get_sb
= nfs4_remote_referral_get_sb
,
320 .kill_sb
= nfs4_kill_super
,
321 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
324 struct file_system_type nfs4_referral_fs_type
= {
325 .owner
= THIS_MODULE
,
327 .get_sb
= nfs4_referral_get_sb
,
328 .kill_sb
= nfs4_kill_super
,
329 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_REVAL_DOT
|FS_BINARY_MOUNTDATA
,
332 static const struct super_operations nfs4_sops
= {
333 .alloc_inode
= nfs_alloc_inode
,
334 .destroy_inode
= nfs_destroy_inode
,
335 .write_inode
= nfs_write_inode
,
336 .statfs
= nfs_statfs
,
337 .clear_inode
= nfs4_clear_inode
,
338 .umount_begin
= nfs_umount_begin
,
339 .show_options
= nfs_show_options
,
340 .show_stats
= nfs_show_stats
,
341 .remount_fs
= nfs_remount
,
345 static struct shrinker acl_shrinker
= {
346 .shrink
= nfs_access_cache_shrinker
,
347 .seeks
= DEFAULT_SEEKS
,
351 * Register the NFS filesystems
353 int __init
register_nfs_fs(void)
357 ret
= register_filesystem(&nfs_fs_type
);
361 ret
= nfs_register_sysctl();
365 ret
= register_filesystem(&nfs4_fs_type
);
369 register_shrinker(&acl_shrinker
);
374 nfs_unregister_sysctl();
377 unregister_filesystem(&nfs_fs_type
);
383 * Unregister the NFS filesystems
385 void __exit
unregister_nfs_fs(void)
387 unregister_shrinker(&acl_shrinker
);
389 unregister_filesystem(&nfs4_fs_type
);
391 nfs_unregister_sysctl();
392 unregister_filesystem(&nfs_fs_type
);
395 void nfs_sb_active(struct super_block
*sb
)
397 struct nfs_server
*server
= NFS_SB(sb
);
399 if (atomic_inc_return(&server
->active
) == 1)
400 atomic_inc(&sb
->s_active
);
403 void nfs_sb_deactive(struct super_block
*sb
)
405 struct nfs_server
*server
= NFS_SB(sb
);
407 if (atomic_dec_and_test(&server
->active
))
408 deactivate_super(sb
);
412 * Deliver file system statistics to userspace
414 static int nfs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
416 struct nfs_server
*server
= NFS_SB(dentry
->d_sb
);
417 unsigned char blockbits
;
418 unsigned long blockres
;
419 struct nfs_fh
*fh
= NFS_FH(dentry
->d_inode
);
420 struct nfs_fattr fattr
;
421 struct nfs_fsstat res
= {
426 error
= server
->nfs_client
->rpc_ops
->statfs(server
, fh
, &res
);
429 buf
->f_type
= NFS_SUPER_MAGIC
;
432 * Current versions of glibc do not correctly handle the
433 * case where f_frsize != f_bsize. Eventually we want to
434 * report the value of wtmult in this field.
436 buf
->f_frsize
= dentry
->d_sb
->s_blocksize
;
439 * On most *nix systems, f_blocks, f_bfree, and f_bavail
440 * are reported in units of f_frsize. Linux hasn't had
441 * an f_frsize field in its statfs struct until recently,
442 * thus historically Linux's sys_statfs reports these
443 * fields in units of f_bsize.
445 buf
->f_bsize
= dentry
->d_sb
->s_blocksize
;
446 blockbits
= dentry
->d_sb
->s_blocksize_bits
;
447 blockres
= (1 << blockbits
) - 1;
448 buf
->f_blocks
= (res
.tbytes
+ blockres
) >> blockbits
;
449 buf
->f_bfree
= (res
.fbytes
+ blockres
) >> blockbits
;
450 buf
->f_bavail
= (res
.abytes
+ blockres
) >> blockbits
;
452 buf
->f_files
= res
.tfiles
;
453 buf
->f_ffree
= res
.afiles
;
455 buf
->f_namelen
= server
->namelen
;
460 dprintk("%s: statfs error = %d\n", __func__
, -error
);
465 * Map the security flavour number to a name
467 static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour
)
469 static const struct {
470 rpc_authflavor_t flavour
;
473 { RPC_AUTH_NULL
, "null" },
474 { RPC_AUTH_UNIX
, "sys" },
475 { RPC_AUTH_GSS_KRB5
, "krb5" },
476 { RPC_AUTH_GSS_KRB5I
, "krb5i" },
477 { RPC_AUTH_GSS_KRB5P
, "krb5p" },
478 { RPC_AUTH_GSS_LKEY
, "lkey" },
479 { RPC_AUTH_GSS_LKEYI
, "lkeyi" },
480 { RPC_AUTH_GSS_LKEYP
, "lkeyp" },
481 { RPC_AUTH_GSS_SPKM
, "spkm" },
482 { RPC_AUTH_GSS_SPKMI
, "spkmi" },
483 { RPC_AUTH_GSS_SPKMP
, "spkmp" },
484 { UINT_MAX
, "unknown" }
488 for (i
= 0; sec_flavours
[i
].flavour
!= UINT_MAX
; i
++) {
489 if (sec_flavours
[i
].flavour
== flavour
)
492 return sec_flavours
[i
].str
;
495 static void nfs_show_mountd_options(struct seq_file
*m
, struct nfs_server
*nfss
,
498 struct sockaddr
*sap
= (struct sockaddr
*)&nfss
->mountd_address
;
500 switch (sap
->sa_family
) {
502 struct sockaddr_in
*sin
= (struct sockaddr_in
*)sap
;
503 seq_printf(m
, ",mountaddr=%pI4", &sin
->sin_addr
.s_addr
);
507 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)sap
;
508 seq_printf(m
, ",mountaddr=%pI6", &sin6
->sin6_addr
);
513 seq_printf(m
, ",mountaddr=unspecified");
516 if (nfss
->mountd_version
|| showdefaults
)
517 seq_printf(m
, ",mountvers=%u", nfss
->mountd_version
);
518 if (nfss
->mountd_port
|| showdefaults
)
519 seq_printf(m
, ",mountport=%u", nfss
->mountd_port
);
521 switch (nfss
->mountd_protocol
) {
523 seq_printf(m
, ",mountproto=udp");
526 seq_printf(m
, ",mountproto=tcp");
530 seq_printf(m
, ",mountproto=auto");
535 * Describe the mount options in force on this server representation
537 static void nfs_show_mount_options(struct seq_file
*m
, struct nfs_server
*nfss
,
540 static const struct proc_nfs_info
{
545 { NFS_MOUNT_SOFT
, ",soft", ",hard" },
546 { NFS_MOUNT_POSIX
, ",posix", "" },
547 { NFS_MOUNT_NOCTO
, ",nocto", "" },
548 { NFS_MOUNT_NOAC
, ",noac", "" },
549 { NFS_MOUNT_NONLM
, ",nolock", "" },
550 { NFS_MOUNT_NOACL
, ",noacl", "" },
551 { NFS_MOUNT_NORDIRPLUS
, ",nordirplus", "" },
552 { NFS_MOUNT_UNSHARED
, ",nosharecache", "" },
553 { NFS_MOUNT_NORESVPORT
, ",noresvport", "" },
556 const struct proc_nfs_info
*nfs_infop
;
557 struct nfs_client
*clp
= nfss
->nfs_client
;
558 u32 version
= clp
->rpc_ops
->version
;
560 seq_printf(m
, ",vers=%u", version
);
561 seq_printf(m
, ",rsize=%u", nfss
->rsize
);
562 seq_printf(m
, ",wsize=%u", nfss
->wsize
);
563 if (nfss
->bsize
!= 0)
564 seq_printf(m
, ",bsize=%u", nfss
->bsize
);
565 seq_printf(m
, ",namlen=%u", nfss
->namelen
);
566 if (nfss
->acregmin
!= NFS_DEF_ACREGMIN
*HZ
|| showdefaults
)
567 seq_printf(m
, ",acregmin=%u", nfss
->acregmin
/HZ
);
568 if (nfss
->acregmax
!= NFS_DEF_ACREGMAX
*HZ
|| showdefaults
)
569 seq_printf(m
, ",acregmax=%u", nfss
->acregmax
/HZ
);
570 if (nfss
->acdirmin
!= NFS_DEF_ACDIRMIN
*HZ
|| showdefaults
)
571 seq_printf(m
, ",acdirmin=%u", nfss
->acdirmin
/HZ
);
572 if (nfss
->acdirmax
!= NFS_DEF_ACDIRMAX
*HZ
|| showdefaults
)
573 seq_printf(m
, ",acdirmax=%u", nfss
->acdirmax
/HZ
);
574 for (nfs_infop
= nfs_info
; nfs_infop
->flag
; nfs_infop
++) {
575 if (nfss
->flags
& nfs_infop
->flag
)
576 seq_puts(m
, nfs_infop
->str
);
578 seq_puts(m
, nfs_infop
->nostr
);
580 seq_printf(m
, ",proto=%s",
581 rpc_peeraddr2str(nfss
->client
, RPC_DISPLAY_PROTO
));
583 if (nfss
->port
!= NFS_PORT
)
584 seq_printf(m
, ",port=%u", nfss
->port
);
587 seq_printf(m
, ",port=%u", nfss
->port
);
589 seq_printf(m
, ",timeo=%lu", 10U * nfss
->client
->cl_timeout
->to_initval
/ HZ
);
590 seq_printf(m
, ",retrans=%u", nfss
->client
->cl_timeout
->to_retries
);
591 seq_printf(m
, ",sec=%s", nfs_pseudoflavour_to_name(nfss
->client
->cl_auth
->au_flavor
));
594 nfs_show_mountd_options(m
, nfss
, showdefaults
);
597 if (clp
->rpc_ops
->version
== 4)
598 seq_printf(m
, ",clientaddr=%s", clp
->cl_ipaddr
);
600 if (nfss
->options
& NFS_OPTION_FSCACHE
)
601 seq_printf(m
, ",fsc");
605 * Describe the mount options on this VFS mountpoint
607 static int nfs_show_options(struct seq_file
*m
, struct vfsmount
*mnt
)
609 struct nfs_server
*nfss
= NFS_SB(mnt
->mnt_sb
);
611 nfs_show_mount_options(m
, nfss
, 0);
613 seq_printf(m
, ",addr=%s",
614 rpc_peeraddr2str(nfss
->nfs_client
->cl_rpcclient
,
621 * Present statistical information for this VFS mountpoint
623 static int nfs_show_stats(struct seq_file
*m
, struct vfsmount
*mnt
)
626 struct nfs_server
*nfss
= NFS_SB(mnt
->mnt_sb
);
627 struct rpc_auth
*auth
= nfss
->client
->cl_auth
;
628 struct nfs_iostats totals
= { };
630 seq_printf(m
, "statvers=%s", NFS_IOSTAT_VERS
);
633 * Display all mount option settings
635 seq_printf(m
, "\n\topts:\t");
636 seq_puts(m
, mnt
->mnt_sb
->s_flags
& MS_RDONLY
? "ro" : "rw");
637 seq_puts(m
, mnt
->mnt_sb
->s_flags
& MS_SYNCHRONOUS
? ",sync" : "");
638 seq_puts(m
, mnt
->mnt_sb
->s_flags
& MS_NOATIME
? ",noatime" : "");
639 seq_puts(m
, mnt
->mnt_sb
->s_flags
& MS_NODIRATIME
? ",nodiratime" : "");
640 nfs_show_mount_options(m
, nfss
, 1);
642 seq_printf(m
, "\n\tage:\t%lu", (jiffies
- nfss
->mount_time
) / HZ
);
644 seq_printf(m
, "\n\tcaps:\t");
645 seq_printf(m
, "caps=0x%x", nfss
->caps
);
646 seq_printf(m
, ",wtmult=%u", nfss
->wtmult
);
647 seq_printf(m
, ",dtsize=%u", nfss
->dtsize
);
648 seq_printf(m
, ",bsize=%u", nfss
->bsize
);
649 seq_printf(m
, ",namlen=%u", nfss
->namelen
);
652 if (nfss
->nfs_client
->rpc_ops
->version
== 4) {
653 seq_printf(m
, "\n\tnfsv4:\t");
654 seq_printf(m
, "bm0=0x%x", nfss
->attr_bitmask
[0]);
655 seq_printf(m
, ",bm1=0x%x", nfss
->attr_bitmask
[1]);
656 seq_printf(m
, ",acl=0x%x", nfss
->acl_bitmask
);
661 * Display security flavor in effect for this mount
663 seq_printf(m
, "\n\tsec:\tflavor=%u", auth
->au_ops
->au_flavor
);
665 seq_printf(m
, ",pseudoflavor=%u", auth
->au_flavor
);
668 * Display superblock I/O counters
670 for_each_possible_cpu(cpu
) {
671 struct nfs_iostats
*stats
;
674 stats
= per_cpu_ptr(nfss
->io_stats
, cpu
);
676 for (i
= 0; i
< __NFSIOS_COUNTSMAX
; i
++)
677 totals
.events
[i
] += stats
->events
[i
];
678 for (i
= 0; i
< __NFSIOS_BYTESMAX
; i
++)
679 totals
.bytes
[i
] += stats
->bytes
[i
];
680 #ifdef CONFIG_NFS_FSCACHE
681 for (i
= 0; i
< __NFSIOS_FSCACHEMAX
; i
++)
682 totals
.fscache
[i
] += stats
->fscache
[i
];
688 seq_printf(m
, "\n\tevents:\t");
689 for (i
= 0; i
< __NFSIOS_COUNTSMAX
; i
++)
690 seq_printf(m
, "%lu ", totals
.events
[i
]);
691 seq_printf(m
, "\n\tbytes:\t");
692 for (i
= 0; i
< __NFSIOS_BYTESMAX
; i
++)
693 seq_printf(m
, "%Lu ", totals
.bytes
[i
]);
694 #ifdef CONFIG_NFS_FSCACHE
695 if (nfss
->options
& NFS_OPTION_FSCACHE
) {
696 seq_printf(m
, "\n\tfsc:\t");
697 for (i
= 0; i
< __NFSIOS_FSCACHEMAX
; i
++)
698 seq_printf(m
, "%Lu ", totals
.bytes
[i
]);
703 rpc_print_iostats(m
, nfss
->client
);
709 * Begin unmount by attempting to remove all automounted mountpoints we added
710 * in response to xdev traversals and referrals
712 static void nfs_umount_begin(struct super_block
*sb
)
714 struct nfs_server
*server
;
715 struct rpc_clnt
*rpc
;
720 /* -EIO all pending I/O */
721 rpc
= server
->client_acl
;
723 rpc_killall_tasks(rpc
);
724 rpc
= server
->client
;
726 rpc_killall_tasks(rpc
);
731 static struct nfs_parsed_mount_data
*nfs_alloc_parsed_mount_data(unsigned int version
)
733 struct nfs_parsed_mount_data
*data
;
735 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
737 data
->rsize
= NFS_MAX_FILE_IO_SIZE
;
738 data
->wsize
= NFS_MAX_FILE_IO_SIZE
;
739 data
->acregmin
= NFS_DEF_ACREGMIN
;
740 data
->acregmax
= NFS_DEF_ACREGMAX
;
741 data
->acdirmin
= NFS_DEF_ACDIRMIN
;
742 data
->acdirmax
= NFS_DEF_ACDIRMAX
;
743 data
->mount_server
.port
= NFS_UNSPEC_PORT
;
744 data
->nfs_server
.port
= NFS_UNSPEC_PORT
;
745 data
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP
;
746 data
->auth_flavors
[0] = RPC_AUTH_UNIX
;
747 data
->auth_flavor_len
= 1;
748 data
->version
= version
;
749 data
->minorversion
= 0;
755 * Sanity-check a server address provided by the mount command.
757 * Address family must be initialized, and address must not be
758 * the ANY address for that family.
760 static int nfs_verify_server_address(struct sockaddr
*addr
)
762 switch (addr
->sa_family
) {
764 struct sockaddr_in
*sa
= (struct sockaddr_in
*)addr
;
765 return sa
->sin_addr
.s_addr
!= htonl(INADDR_ANY
);
768 struct in6_addr
*sa
= &((struct sockaddr_in6
*)addr
)->sin6_addr
;
769 return !ipv6_addr_any(sa
);
773 dfprintk(MOUNT
, "NFS: Invalid IP address specified\n");
778 * Select between a default port value and a user-specified port value.
779 * If a zero value is set, then autobind will be used.
781 static void nfs_set_port(struct sockaddr
*sap
, int *port
,
782 const unsigned short default_port
)
784 if (*port
== NFS_UNSPEC_PORT
)
785 *port
= default_port
;
787 rpc_set_port(sap
, *port
);
791 * Sanity check the NFS transport protocol.
794 static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data
*mnt
)
796 switch (mnt
->nfs_server
.protocol
) {
797 case XPRT_TRANSPORT_UDP
:
798 case XPRT_TRANSPORT_TCP
:
799 case XPRT_TRANSPORT_RDMA
:
802 mnt
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP
;
807 * For text based NFSv2/v3 mounts, the mount protocol transport default
808 * settings should depend upon the specified NFS transport.
810 static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data
*mnt
)
812 nfs_validate_transport_protocol(mnt
);
814 if (mnt
->mount_server
.protocol
== XPRT_TRANSPORT_UDP
||
815 mnt
->mount_server
.protocol
== XPRT_TRANSPORT_TCP
)
817 switch (mnt
->nfs_server
.protocol
) {
818 case XPRT_TRANSPORT_UDP
:
819 mnt
->mount_server
.protocol
= XPRT_TRANSPORT_UDP
;
821 case XPRT_TRANSPORT_TCP
:
822 case XPRT_TRANSPORT_RDMA
:
823 mnt
->mount_server
.protocol
= XPRT_TRANSPORT_TCP
;
828 * Parse the value of the 'sec=' option.
830 static int nfs_parse_security_flavors(char *value
,
831 struct nfs_parsed_mount_data
*mnt
)
833 substring_t args
[MAX_OPT_ARGS
];
835 dfprintk(MOUNT
, "NFS: parsing sec=%s option\n", value
);
837 switch (match_token(value
, nfs_secflavor_tokens
, args
)) {
839 mnt
->auth_flavors
[0] = RPC_AUTH_NULL
;
842 mnt
->auth_flavors
[0] = RPC_AUTH_UNIX
;
845 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_KRB5
;
848 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_KRB5I
;
851 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_KRB5P
;
854 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_LKEY
;
857 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_LKEYI
;
860 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_LKEYP
;
863 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_SPKM
;
866 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_SPKMI
;
869 mnt
->auth_flavors
[0] = RPC_AUTH_GSS_SPKMP
;
875 mnt
->auth_flavor_len
= 1;
880 * Error-check and convert a string of mount options from user space into
881 * a data structure. The whole mount string is processed; bad options are
882 * skipped as they are encountered. If there were no errors, return 1;
883 * otherwise return 0 (zero).
885 static int nfs_parse_mount_options(char *raw
,
886 struct nfs_parsed_mount_data
*mnt
)
888 char *p
, *string
, *secdata
;
889 int rc
, sloppy
= 0, invalid_option
= 0;
892 dfprintk(MOUNT
, "NFS: mount options string was NULL.\n");
895 dfprintk(MOUNT
, "NFS: nfs mount opts='%s'\n", raw
);
897 secdata
= alloc_secdata();
901 rc
= security_sb_copy_data(raw
, secdata
);
903 goto out_security_failure
;
905 rc
= security_sb_parse_opts_str(secdata
, &mnt
->lsm_opts
);
907 goto out_security_failure
;
909 free_secdata(secdata
);
911 while ((p
= strsep(&raw
, ",")) != NULL
) {
912 substring_t args
[MAX_OPT_ARGS
];
913 unsigned long option
;
919 dfprintk(MOUNT
, "NFS: parsing nfs mount option '%s'\n", p
);
921 token
= match_token(p
, nfs_mount_option_tokens
, args
);
925 * boolean options: foo/nofoo
928 mnt
->flags
|= NFS_MOUNT_SOFT
;
931 mnt
->flags
&= ~NFS_MOUNT_SOFT
;
934 mnt
->flags
|= NFS_MOUNT_POSIX
;
937 mnt
->flags
&= ~NFS_MOUNT_POSIX
;
940 mnt
->flags
&= ~NFS_MOUNT_NOCTO
;
943 mnt
->flags
|= NFS_MOUNT_NOCTO
;
946 mnt
->flags
&= ~NFS_MOUNT_NOAC
;
949 mnt
->flags
|= NFS_MOUNT_NOAC
;
952 mnt
->flags
&= ~NFS_MOUNT_NONLM
;
955 mnt
->flags
|= NFS_MOUNT_NONLM
;
958 mnt
->flags
&= ~NFS_MOUNT_VER3
;
962 mnt
->flags
|= NFS_MOUNT_VER3
;
967 mnt
->flags
&= ~NFS_MOUNT_VER3
;
972 mnt
->flags
&= ~NFS_MOUNT_TCP
;
973 mnt
->nfs_server
.protocol
= XPRT_TRANSPORT_UDP
;
976 mnt
->flags
|= NFS_MOUNT_TCP
;
977 mnt
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP
;
980 mnt
->flags
|= NFS_MOUNT_TCP
; /* for side protocols */
981 mnt
->nfs_server
.protocol
= XPRT_TRANSPORT_RDMA
;
982 xprt_load_transport(p
);
985 mnt
->flags
&= ~NFS_MOUNT_NOACL
;
988 mnt
->flags
|= NFS_MOUNT_NOACL
;
991 mnt
->flags
&= ~NFS_MOUNT_NORDIRPLUS
;
994 mnt
->flags
|= NFS_MOUNT_NORDIRPLUS
;
997 mnt
->flags
&= ~NFS_MOUNT_UNSHARED
;
999 case Opt_nosharecache
:
1000 mnt
->flags
|= NFS_MOUNT_UNSHARED
;
1003 mnt
->flags
&= ~NFS_MOUNT_NORESVPORT
;
1005 case Opt_noresvport
:
1006 mnt
->flags
|= NFS_MOUNT_NORESVPORT
;
1009 mnt
->options
|= NFS_OPTION_FSCACHE
;
1010 kfree(mnt
->fscache_uniq
);
1011 mnt
->fscache_uniq
= NULL
;
1014 mnt
->options
&= ~NFS_OPTION_FSCACHE
;
1015 kfree(mnt
->fscache_uniq
);
1016 mnt
->fscache_uniq
= NULL
;
1018 case Opt_fscache_uniq
:
1019 string
= match_strdup(args
);
1022 kfree(mnt
->fscache_uniq
);
1023 mnt
->fscache_uniq
= string
;
1024 mnt
->options
|= NFS_OPTION_FSCACHE
;
1028 * options that take numeric values
1031 string
= match_strdup(args
);
1034 rc
= strict_strtoul(string
, 10, &option
);
1036 if (rc
!= 0 || option
> USHORT_MAX
)
1037 goto out_invalid_value
;
1038 mnt
->nfs_server
.port
= option
;
1041 string
= match_strdup(args
);
1044 rc
= strict_strtoul(string
, 10, &option
);
1047 goto out_invalid_value
;
1048 mnt
->rsize
= option
;
1051 string
= match_strdup(args
);
1054 rc
= strict_strtoul(string
, 10, &option
);
1057 goto out_invalid_value
;
1058 mnt
->wsize
= option
;
1061 string
= match_strdup(args
);
1064 rc
= strict_strtoul(string
, 10, &option
);
1067 goto out_invalid_value
;
1068 mnt
->bsize
= option
;
1071 string
= match_strdup(args
);
1074 rc
= strict_strtoul(string
, 10, &option
);
1076 if (rc
!= 0 || option
== 0)
1077 goto out_invalid_value
;
1078 mnt
->timeo
= option
;
1081 string
= match_strdup(args
);
1084 rc
= strict_strtoul(string
, 10, &option
);
1086 if (rc
!= 0 || option
== 0)
1087 goto out_invalid_value
;
1088 mnt
->retrans
= option
;
1091 string
= match_strdup(args
);
1094 rc
= strict_strtoul(string
, 10, &option
);
1097 goto out_invalid_value
;
1098 mnt
->acregmin
= option
;
1101 string
= match_strdup(args
);
1104 rc
= strict_strtoul(string
, 10, &option
);
1107 goto out_invalid_value
;
1108 mnt
->acregmax
= option
;
1111 string
= match_strdup(args
);
1114 rc
= strict_strtoul(string
, 10, &option
);
1117 goto out_invalid_value
;
1118 mnt
->acdirmin
= option
;
1121 string
= match_strdup(args
);
1124 rc
= strict_strtoul(string
, 10, &option
);
1127 goto out_invalid_value
;
1128 mnt
->acdirmax
= option
;
1131 string
= match_strdup(args
);
1134 rc
= strict_strtoul(string
, 10, &option
);
1137 goto out_invalid_value
;
1138 mnt
->acregmin
= mnt
->acregmax
=
1139 mnt
->acdirmin
= mnt
->acdirmax
= option
;
1142 string
= match_strdup(args
);
1145 rc
= strict_strtoul(string
, 10, &option
);
1148 goto out_invalid_value
;
1149 mnt
->namlen
= option
;
1152 string
= match_strdup(args
);
1155 rc
= strict_strtoul(string
, 10, &option
);
1157 if (rc
!= 0 || option
> USHORT_MAX
)
1158 goto out_invalid_value
;
1159 mnt
->mount_server
.port
= option
;
1162 string
= match_strdup(args
);
1165 rc
= strict_strtoul(string
, 10, &option
);
1168 option
< NFS_MNT_VERSION
||
1169 option
> NFS_MNT3_VERSION
)
1170 goto out_invalid_value
;
1171 mnt
->mount_server
.version
= option
;
1174 string
= match_strdup(args
);
1177 rc
= strict_strtoul(string
, 10, &option
);
1180 goto out_invalid_value
;
1183 mnt
->flags
&= ~NFS_MOUNT_VER3
;
1187 mnt
->flags
|= NFS_MOUNT_VER3
;
1190 #ifdef CONFIG_NFS_V4
1192 mnt
->flags
&= ~NFS_MOUNT_VER3
;
1197 goto out_invalid_value
;
1200 case Opt_minorversion
:
1201 string
= match_strdup(args
);
1204 rc
= strict_strtoul(string
, 10, &option
);
1207 goto out_invalid_value
;
1208 if (option
> NFS4_MAX_MINOR_VERSION
)
1209 goto out_invalid_value
;
1210 mnt
->minorversion
= option
;
1214 * options that take text values
1217 string
= match_strdup(args
);
1220 rc
= nfs_parse_security_flavors(string
, mnt
);
1223 dfprintk(MOUNT
, "NFS: unrecognized "
1224 "security flavor\n");
1229 string
= match_strdup(args
);
1232 token
= match_token(string
,
1233 nfs_xprt_protocol_tokens
, args
);
1237 mnt
->flags
&= ~NFS_MOUNT_TCP
;
1238 mnt
->nfs_server
.protocol
= XPRT_TRANSPORT_UDP
;
1242 mnt
->flags
|= NFS_MOUNT_TCP
;
1243 mnt
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP
;
1247 /* vector side protocols to TCP */
1248 mnt
->flags
|= NFS_MOUNT_TCP
;
1249 mnt
->nfs_server
.protocol
= XPRT_TRANSPORT_RDMA
;
1250 xprt_load_transport(string
);
1254 dfprintk(MOUNT
, "NFS: unrecognized "
1255 "transport protocol\n");
1260 case Opt_mountproto
:
1261 string
= match_strdup(args
);
1264 token
= match_token(string
,
1265 nfs_xprt_protocol_tokens
, args
);
1270 mnt
->mount_server
.protocol
= XPRT_TRANSPORT_UDP
;
1273 mnt
->mount_server
.protocol
= XPRT_TRANSPORT_TCP
;
1275 case Opt_xprt_rdma
: /* not used for side protocols */
1277 dfprintk(MOUNT
, "NFS: unrecognized "
1278 "transport protocol\n");
1283 string
= match_strdup(args
);
1286 mnt
->nfs_server
.addrlen
=
1287 rpc_pton(string
, strlen(string
),
1289 &mnt
->nfs_server
.address
,
1290 sizeof(mnt
->nfs_server
.address
));
1292 if (mnt
->nfs_server
.addrlen
== 0)
1293 goto out_invalid_address
;
1295 case Opt_clientaddr
:
1296 string
= match_strdup(args
);
1299 kfree(mnt
->client_address
);
1300 mnt
->client_address
= string
;
1303 string
= match_strdup(args
);
1306 kfree(mnt
->mount_server
.hostname
);
1307 mnt
->mount_server
.hostname
= string
;
1310 string
= match_strdup(args
);
1313 mnt
->mount_server
.addrlen
=
1314 rpc_pton(string
, strlen(string
),
1316 &mnt
->mount_server
.address
,
1317 sizeof(mnt
->mount_server
.address
));
1319 if (mnt
->mount_server
.addrlen
== 0)
1320 goto out_invalid_address
;
1322 case Opt_lookupcache
:
1323 string
= match_strdup(args
);
1326 token
= match_token(string
,
1327 nfs_lookupcache_tokens
, args
);
1330 case Opt_lookupcache_all
:
1331 mnt
->flags
&= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG
|NFS_MOUNT_LOOKUP_CACHE_NONE
);
1333 case Opt_lookupcache_positive
:
1334 mnt
->flags
&= ~NFS_MOUNT_LOOKUP_CACHE_NONE
;
1335 mnt
->flags
|= NFS_MOUNT_LOOKUP_CACHE_NONEG
;
1337 case Opt_lookupcache_none
:
1338 mnt
->flags
|= NFS_MOUNT_LOOKUP_CACHE_NONEG
|NFS_MOUNT_LOOKUP_CACHE_NONE
;
1341 dfprintk(MOUNT
, "NFS: invalid "
1342 "lookupcache argument\n");
1352 dfprintk(MOUNT
, "NFS: relaxing parsing rules\n");
1355 case Opt_deprecated
:
1356 dfprintk(MOUNT
, "NFS: ignoring mount option "
1362 dfprintk(MOUNT
, "NFS: unrecognized mount option "
1367 if (!sloppy
&& invalid_option
)
1372 out_invalid_address
:
1373 printk(KERN_INFO
"NFS: bad IP address specified: %s\n", p
);
1376 printk(KERN_INFO
"NFS: bad mount option value specified: %s\n", p
);
1379 printk(KERN_INFO
"NFS: not enough memory to parse option\n");
1381 out_security_failure
:
1382 free_secdata(secdata
);
1383 printk(KERN_INFO
"NFS: security options invalid: %d\n", rc
);
1388 * Match the requested auth flavors with the list returned by
1389 * the server. Returns zero and sets the mount's authentication
1390 * flavor on success; returns -EACCES if server does not support
1391 * the requested flavor.
1393 static int nfs_walk_authlist(struct nfs_parsed_mount_data
*args
,
1394 struct nfs_mount_request
*request
)
1396 unsigned int i
, j
, server_authlist_len
= *(request
->auth_flav_len
);
1399 * Certain releases of Linux's mountd return an empty
1400 * flavor list. To prevent behavioral regression with
1401 * these servers (ie. rejecting mounts that used to
1402 * succeed), revert to pre-2.6.32 behavior (no checking)
1403 * if the returned flavor list is empty.
1405 if (server_authlist_len
== 0)
1409 * We avoid sophisticated negotiating here, as there are
1410 * plenty of cases where we can get it wrong, providing
1411 * either too little or too much security.
1413 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1414 * flavor listed first. However, some servers list
1415 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1416 * preferred default, in args->auth_flavors[0] if user
1417 * didn't specify sec= mount option.
1419 for (i
= 0; i
< args
->auth_flavor_len
; i
++)
1420 for (j
= 0; j
< server_authlist_len
; j
++)
1421 if (args
->auth_flavors
[i
] == request
->auth_flavs
[j
]) {
1422 dfprintk(MOUNT
, "NFS: using auth flavor %d\n",
1423 request
->auth_flavs
[j
]);
1424 args
->auth_flavors
[0] = request
->auth_flavs
[j
];
1428 dfprintk(MOUNT
, "NFS: server does not support requested auth flavor\n");
1429 nfs_umount(request
);
1434 * Use the remote server's MOUNT service to request the NFS file handle
1435 * corresponding to the provided path.
1437 static int nfs_try_mount(struct nfs_parsed_mount_data
*args
,
1438 struct nfs_fh
*root_fh
)
1440 rpc_authflavor_t server_authlist
[NFS_MAX_SECFLAVORS
];
1441 unsigned int server_authlist_len
= ARRAY_SIZE(server_authlist
);
1442 struct nfs_mount_request request
= {
1443 .sap
= (struct sockaddr
*)
1444 &args
->mount_server
.address
,
1445 .dirpath
= args
->nfs_server
.export_path
,
1446 .protocol
= args
->mount_server
.protocol
,
1448 .noresvport
= args
->flags
& NFS_MOUNT_NORESVPORT
,
1449 .auth_flav_len
= &server_authlist_len
,
1450 .auth_flavs
= server_authlist
,
1454 if (args
->mount_server
.version
== 0) {
1455 switch (args
->version
) {
1457 args
->mount_server
.version
= NFS_MNT3_VERSION
;
1460 args
->mount_server
.version
= NFS_MNT_VERSION
;
1463 request
.version
= args
->mount_server
.version
;
1465 if (args
->mount_server
.hostname
)
1466 request
.hostname
= args
->mount_server
.hostname
;
1468 request
.hostname
= args
->nfs_server
.hostname
;
1471 * Construct the mount server's address.
1473 if (args
->mount_server
.address
.ss_family
== AF_UNSPEC
) {
1474 memcpy(request
.sap
, &args
->nfs_server
.address
,
1475 args
->nfs_server
.addrlen
);
1476 args
->mount_server
.addrlen
= args
->nfs_server
.addrlen
;
1478 request
.salen
= args
->mount_server
.addrlen
;
1479 nfs_set_port(request
.sap
, &args
->mount_server
.port
, 0);
1482 * Now ask the mount server to map our export path
1485 status
= nfs_mount(&request
);
1487 dfprintk(MOUNT
, "NFS: unable to mount server %s, error %d\n",
1488 request
.hostname
, status
);
1493 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1495 if (args
->mount_server
.version
!= NFS_MNT3_VERSION
)
1497 return nfs_walk_authlist(args
, &request
);
1500 static int nfs_parse_simple_hostname(const char *dev_name
,
1501 char **hostname
, size_t maxnamlen
,
1502 char **export_path
, size_t maxpathlen
)
1505 char *colon
, *comma
;
1507 colon
= strchr(dev_name
, ':');
1509 goto out_bad_devname
;
1511 len
= colon
- dev_name
;
1512 if (len
> maxnamlen
)
1515 /* N.B. caller will free nfs_server.hostname in all cases */
1516 *hostname
= kstrndup(dev_name
, len
, GFP_KERNEL
);
1520 /* kill possible hostname list: not supported */
1521 comma
= strchr(*hostname
, ',');
1522 if (comma
!= NULL
) {
1523 if (comma
== *hostname
)
1524 goto out_bad_devname
;
1529 len
= strlen(colon
);
1530 if (len
> maxpathlen
)
1532 *export_path
= kstrndup(colon
, len
, GFP_KERNEL
);
1536 dfprintk(MOUNT
, "NFS: MNTPATH: '%s'\n", *export_path
);
1540 dfprintk(MOUNT
, "NFS: device name not in host:path format\n");
1544 dfprintk(MOUNT
, "NFS: not enough memory to parse device name\n");
1548 dfprintk(MOUNT
, "NFS: server hostname too long\n");
1549 return -ENAMETOOLONG
;
1552 dfprintk(MOUNT
, "NFS: export pathname too long\n");
1553 return -ENAMETOOLONG
;
1557 * Hostname has square brackets around it because it contains one or
1558 * more colons. We look for the first closing square bracket, and a
1559 * colon must follow it.
1561 static int nfs_parse_protected_hostname(const char *dev_name
,
1562 char **hostname
, size_t maxnamlen
,
1563 char **export_path
, size_t maxpathlen
)
1568 start
= (char *)(dev_name
+ 1);
1570 end
= strchr(start
, ']');
1572 goto out_bad_devname
;
1573 if (*(end
+ 1) != ':')
1574 goto out_bad_devname
;
1577 if (len
> maxnamlen
)
1580 /* N.B. caller will free nfs_server.hostname in all cases */
1581 *hostname
= kstrndup(start
, len
, GFP_KERNEL
);
1582 if (*hostname
== NULL
)
1587 if (len
> maxpathlen
)
1589 *export_path
= kstrndup(end
, len
, GFP_KERNEL
);
1596 dfprintk(MOUNT
, "NFS: device name not in host:path format\n");
1600 dfprintk(MOUNT
, "NFS: not enough memory to parse device name\n");
1604 dfprintk(MOUNT
, "NFS: server hostname too long\n");
1605 return -ENAMETOOLONG
;
1608 dfprintk(MOUNT
, "NFS: export pathname too long\n");
1609 return -ENAMETOOLONG
;
1613 * Split "dev_name" into "hostname:export_path".
1615 * The leftmost colon demarks the split between the server's hostname
1616 * and the export path. If the hostname starts with a left square
1617 * bracket, then it may contain colons.
1619 * Note: caller frees hostname and export path, even on error.
1621 static int nfs_parse_devname(const char *dev_name
,
1622 char **hostname
, size_t maxnamlen
,
1623 char **export_path
, size_t maxpathlen
)
1625 if (*dev_name
== '[')
1626 return nfs_parse_protected_hostname(dev_name
,
1627 hostname
, maxnamlen
,
1628 export_path
, maxpathlen
);
1630 return nfs_parse_simple_hostname(dev_name
,
1631 hostname
, maxnamlen
,
1632 export_path
, maxpathlen
);
1636 * Validate the NFS2/NFS3 mount data
1637 * - fills in the mount root filehandle
1639 * For option strings, user space handles the following behaviors:
1641 * + DNS: mapping server host name to IP address ("addr=" option)
1643 * + failure mode: how to behave if a mount request can't be handled
1644 * immediately ("fg/bg" option)
1646 * + retry: how often to retry a mount request ("retry=" option)
1648 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1649 * mountproto=tcp after mountproto=udp, and so on
1651 static int nfs_validate_mount_data(void *options
,
1652 struct nfs_parsed_mount_data
*args
,
1653 struct nfs_fh
*mntfh
,
1654 const char *dev_name
)
1656 struct nfs_mount_data
*data
= (struct nfs_mount_data
*)options
;
1657 struct sockaddr
*sap
= (struct sockaddr
*)&args
->nfs_server
.address
;
1662 switch (data
->version
) {
1668 if (data
->flags
& NFS_MOUNT_VER3
)
1670 data
->root
.size
= NFS2_FHSIZE
;
1671 memcpy(data
->root
.data
, data
->old_root
.data
, NFS2_FHSIZE
);
1673 if (data
->flags
& NFS_MOUNT_SECFLAVOUR
)
1676 memset(data
->context
, 0, sizeof(data
->context
));
1678 if (data
->flags
& NFS_MOUNT_VER3
) {
1679 if (data
->root
.size
> NFS3_FHSIZE
|| data
->root
.size
== 0)
1680 goto out_invalid_fh
;
1681 mntfh
->size
= data
->root
.size
;
1684 mntfh
->size
= NFS2_FHSIZE
;
1689 memcpy(mntfh
->data
, data
->root
.data
, mntfh
->size
);
1690 if (mntfh
->size
< sizeof(mntfh
->data
))
1691 memset(mntfh
->data
+ mntfh
->size
, 0,
1692 sizeof(mntfh
->data
) - mntfh
->size
);
1695 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1698 args
->flags
= data
->flags
& NFS_MOUNT_FLAGMASK
;
1699 args
->rsize
= data
->rsize
;
1700 args
->wsize
= data
->wsize
;
1701 args
->timeo
= data
->timeo
;
1702 args
->retrans
= data
->retrans
;
1703 args
->acregmin
= data
->acregmin
;
1704 args
->acregmax
= data
->acregmax
;
1705 args
->acdirmin
= data
->acdirmin
;
1706 args
->acdirmax
= data
->acdirmax
;
1708 memcpy(sap
, &data
->addr
, sizeof(data
->addr
));
1709 args
->nfs_server
.addrlen
= sizeof(data
->addr
);
1710 if (!nfs_verify_server_address(sap
))
1711 goto out_no_address
;
1713 if (!(data
->flags
& NFS_MOUNT_TCP
))
1714 args
->nfs_server
.protocol
= XPRT_TRANSPORT_UDP
;
1715 /* N.B. caller will free nfs_server.hostname in all cases */
1716 args
->nfs_server
.hostname
= kstrdup(data
->hostname
, GFP_KERNEL
);
1717 args
->namlen
= data
->namlen
;
1718 args
->bsize
= data
->bsize
;
1720 if (data
->flags
& NFS_MOUNT_SECFLAVOUR
)
1721 args
->auth_flavors
[0] = data
->pseudoflavor
;
1722 if (!args
->nfs_server
.hostname
)
1726 * The legacy version 6 binary mount data from userspace has a
1727 * field used only to transport selinux information into the
1728 * the kernel. To continue to support that functionality we
1729 * have a touch of selinux knowledge here in the NFS code. The
1730 * userspace code converted context=blah to just blah so we are
1731 * converting back to the full string selinux understands.
1733 if (data
->context
[0]){
1734 #ifdef CONFIG_SECURITY_SELINUX
1736 char *opts_str
= kmalloc(sizeof(data
->context
) + 8, GFP_KERNEL
);
1739 strcpy(opts_str
, "context=");
1740 data
->context
[NFS_MAX_CONTEXT_LEN
] = '\0';
1741 strcat(opts_str
, &data
->context
[0]);
1742 rc
= security_sb_parse_opts_str(opts_str
, &args
->lsm_opts
);
1755 if (nfs_parse_mount_options((char *)options
, args
) == 0)
1758 if (!nfs_verify_server_address(sap
))
1759 goto out_no_address
;
1761 if (args
->version
== 4)
1762 #ifdef CONFIG_NFS_V4
1763 return nfs4_validate_text_mount_data(options
,
1766 goto out_v4_not_compiled
;
1769 nfs_set_port(sap
, &args
->nfs_server
.port
, 0);
1771 nfs_set_mount_transport_protocol(args
);
1773 status
= nfs_parse_devname(dev_name
,
1774 &args
->nfs_server
.hostname
,
1776 &args
->nfs_server
.export_path
,
1779 status
= nfs_try_mount(args
, mntfh
);
1781 kfree(args
->nfs_server
.export_path
);
1782 args
->nfs_server
.export_path
= NULL
;
1791 #ifndef CONFIG_NFS_V3
1792 if (args
->version
== 3)
1793 goto out_v3_not_compiled
;
1794 #endif /* !CONFIG_NFS_V3 */
1799 dfprintk(MOUNT
, "NFS: mount program didn't pass any mount data\n");
1803 dfprintk(MOUNT
, "NFS: nfs_mount_data version %d does not support v3\n",
1808 dfprintk(MOUNT
, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1811 #ifndef CONFIG_NFS_V3
1812 out_v3_not_compiled
:
1813 dfprintk(MOUNT
, "NFS: NFSv3 is not compiled into kernel\n");
1814 return -EPROTONOSUPPORT
;
1815 #endif /* !CONFIG_NFS_V3 */
1817 #ifndef CONFIG_NFS_V4
1818 out_v4_not_compiled
:
1819 dfprintk(MOUNT
, "NFS: NFSv4 is not compiled into kernel\n");
1820 return -EPROTONOSUPPORT
;
1821 #endif /* !CONFIG_NFS_V4 */
1824 dfprintk(MOUNT
, "NFS: not enough memory to handle mount options\n");
1828 dfprintk(MOUNT
, "NFS: mount program didn't pass remote address\n");
1832 dfprintk(MOUNT
, "NFS: invalid root filehandle\n");
1837 nfs_compare_remount_data(struct nfs_server
*nfss
,
1838 struct nfs_parsed_mount_data
*data
)
1840 if (data
->flags
!= nfss
->flags
||
1841 data
->rsize
!= nfss
->rsize
||
1842 data
->wsize
!= nfss
->wsize
||
1843 data
->retrans
!= nfss
->client
->cl_timeout
->to_retries
||
1844 data
->auth_flavors
[0] != nfss
->client
->cl_auth
->au_flavor
||
1845 data
->acregmin
!= nfss
->acregmin
/ HZ
||
1846 data
->acregmax
!= nfss
->acregmax
/ HZ
||
1847 data
->acdirmin
!= nfss
->acdirmin
/ HZ
||
1848 data
->acdirmax
!= nfss
->acdirmax
/ HZ
||
1849 data
->timeo
!= (10U * nfss
->client
->cl_timeout
->to_initval
/ HZ
) ||
1850 data
->nfs_server
.port
!= nfss
->port
||
1851 data
->nfs_server
.addrlen
!= nfss
->nfs_client
->cl_addrlen
||
1852 !rpc_cmp_addr((struct sockaddr
*)&data
->nfs_server
.address
,
1853 (struct sockaddr
*)&nfss
->nfs_client
->cl_addr
))
1860 nfs_remount(struct super_block
*sb
, int *flags
, char *raw_data
)
1863 struct nfs_server
*nfss
= sb
->s_fs_info
;
1864 struct nfs_parsed_mount_data
*data
;
1865 struct nfs_mount_data
*options
= (struct nfs_mount_data
*)raw_data
;
1866 struct nfs4_mount_data
*options4
= (struct nfs4_mount_data
*)raw_data
;
1867 u32 nfsvers
= nfss
->nfs_client
->rpc_ops
->version
;
1870 * Userspace mount programs that send binary options generally send
1871 * them populated with default values. We have no way to know which
1872 * ones were explicitly specified. Fall back to legacy behavior and
1873 * just return success.
1875 if ((nfsvers
== 4 && (!options4
|| options4
->version
== 1)) ||
1876 (nfsvers
<= 3 && (!options
|| (options
->version
>= 1 &&
1877 options
->version
<= 6))))
1880 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
1885 /* fill out struct with values from existing mount */
1886 data
->flags
= nfss
->flags
;
1887 data
->rsize
= nfss
->rsize
;
1888 data
->wsize
= nfss
->wsize
;
1889 data
->retrans
= nfss
->client
->cl_timeout
->to_retries
;
1890 data
->auth_flavors
[0] = nfss
->client
->cl_auth
->au_flavor
;
1891 data
->acregmin
= nfss
->acregmin
/ HZ
;
1892 data
->acregmax
= nfss
->acregmax
/ HZ
;
1893 data
->acdirmin
= nfss
->acdirmin
/ HZ
;
1894 data
->acdirmax
= nfss
->acdirmax
/ HZ
;
1895 data
->timeo
= 10U * nfss
->client
->cl_timeout
->to_initval
/ HZ
;
1896 data
->nfs_server
.port
= nfss
->port
;
1897 data
->nfs_server
.addrlen
= nfss
->nfs_client
->cl_addrlen
;
1898 memcpy(&data
->nfs_server
.address
, &nfss
->nfs_client
->cl_addr
,
1899 data
->nfs_server
.addrlen
);
1901 /* overwrite those values with any that were specified */
1902 error
= nfs_parse_mount_options((char *)options
, data
);
1906 /* compare new mount options with old ones */
1907 error
= nfs_compare_remount_data(nfss
, data
);
1915 * Initialise the common bits of the superblock
1917 static inline void nfs_initialise_sb(struct super_block
*sb
)
1919 struct nfs_server
*server
= NFS_SB(sb
);
1921 sb
->s_magic
= NFS_SUPER_MAGIC
;
1923 /* We probably want something more informative here */
1924 snprintf(sb
->s_id
, sizeof(sb
->s_id
),
1925 "%x:%x", MAJOR(sb
->s_dev
), MINOR(sb
->s_dev
));
1927 if (sb
->s_blocksize
== 0)
1928 sb
->s_blocksize
= nfs_block_bits(server
->wsize
,
1929 &sb
->s_blocksize_bits
);
1931 if (server
->flags
& NFS_MOUNT_NOAC
)
1932 sb
->s_flags
|= MS_SYNCHRONOUS
;
1934 sb
->s_bdi
= &server
->backing_dev_info
;
1936 nfs_super_set_maxbytes(sb
, server
->maxfilesize
);
1940 * Finish setting up an NFS2/3 superblock
1942 static void nfs_fill_super(struct super_block
*sb
,
1943 struct nfs_parsed_mount_data
*data
)
1945 struct nfs_server
*server
= NFS_SB(sb
);
1947 sb
->s_blocksize_bits
= 0;
1948 sb
->s_blocksize
= 0;
1950 sb
->s_blocksize
= nfs_block_size(data
->bsize
, &sb
->s_blocksize_bits
);
1952 if (server
->nfs_client
->rpc_ops
->version
== 3) {
1953 /* The VFS shouldn't apply the umask to mode bits. We will do
1954 * so ourselves when necessary.
1956 sb
->s_flags
|= MS_POSIXACL
;
1957 sb
->s_time_gran
= 1;
1960 sb
->s_op
= &nfs_sops
;
1961 nfs_initialise_sb(sb
);
1965 * Finish setting up a cloned NFS2/3 superblock
1967 static void nfs_clone_super(struct super_block
*sb
,
1968 const struct super_block
*old_sb
)
1970 struct nfs_server
*server
= NFS_SB(sb
);
1972 sb
->s_blocksize_bits
= old_sb
->s_blocksize_bits
;
1973 sb
->s_blocksize
= old_sb
->s_blocksize
;
1974 sb
->s_maxbytes
= old_sb
->s_maxbytes
;
1976 if (server
->nfs_client
->rpc_ops
->version
== 3) {
1977 /* The VFS shouldn't apply the umask to mode bits. We will do
1978 * so ourselves when necessary.
1980 sb
->s_flags
|= MS_POSIXACL
;
1981 sb
->s_time_gran
= 1;
1984 sb
->s_op
= old_sb
->s_op
;
1985 nfs_initialise_sb(sb
);
1988 static int nfs_compare_mount_options(const struct super_block
*s
, const struct nfs_server
*b
, int flags
)
1990 const struct nfs_server
*a
= s
->s_fs_info
;
1991 const struct rpc_clnt
*clnt_a
= a
->client
;
1992 const struct rpc_clnt
*clnt_b
= b
->client
;
1994 if ((s
->s_flags
& NFS_MS_MASK
) != (flags
& NFS_MS_MASK
))
1996 if (a
->nfs_client
!= b
->nfs_client
)
1998 if (a
->flags
!= b
->flags
)
2000 if (a
->wsize
!= b
->wsize
)
2002 if (a
->rsize
!= b
->rsize
)
2004 if (a
->acregmin
!= b
->acregmin
)
2006 if (a
->acregmax
!= b
->acregmax
)
2008 if (a
->acdirmin
!= b
->acdirmin
)
2010 if (a
->acdirmax
!= b
->acdirmax
)
2012 if (clnt_a
->cl_auth
->au_flavor
!= clnt_b
->cl_auth
->au_flavor
)
2019 struct nfs_sb_mountdata
{
2020 struct nfs_server
*server
;
2024 static int nfs_set_super(struct super_block
*s
, void *data
)
2026 struct nfs_sb_mountdata
*sb_mntdata
= data
;
2027 struct nfs_server
*server
= sb_mntdata
->server
;
2030 s
->s_flags
= sb_mntdata
->mntflags
;
2031 s
->s_fs_info
= server
;
2032 ret
= set_anon_super(s
, server
);
2034 server
->s_dev
= s
->s_dev
;
2038 static int nfs_compare_super_address(struct nfs_server
*server1
,
2039 struct nfs_server
*server2
)
2041 struct sockaddr
*sap1
, *sap2
;
2043 sap1
= (struct sockaddr
*)&server1
->nfs_client
->cl_addr
;
2044 sap2
= (struct sockaddr
*)&server2
->nfs_client
->cl_addr
;
2046 if (sap1
->sa_family
!= sap2
->sa_family
)
2049 switch (sap1
->sa_family
) {
2051 struct sockaddr_in
*sin1
= (struct sockaddr_in
*)sap1
;
2052 struct sockaddr_in
*sin2
= (struct sockaddr_in
*)sap2
;
2053 if (sin1
->sin_addr
.s_addr
!= sin2
->sin_addr
.s_addr
)
2055 if (sin1
->sin_port
!= sin2
->sin_port
)
2060 struct sockaddr_in6
*sin1
= (struct sockaddr_in6
*)sap1
;
2061 struct sockaddr_in6
*sin2
= (struct sockaddr_in6
*)sap2
;
2062 if (!ipv6_addr_equal(&sin1
->sin6_addr
, &sin2
->sin6_addr
))
2064 if (sin1
->sin6_port
!= sin2
->sin6_port
)
2075 static int nfs_compare_super(struct super_block
*sb
, void *data
)
2077 struct nfs_sb_mountdata
*sb_mntdata
= data
;
2078 struct nfs_server
*server
= sb_mntdata
->server
, *old
= NFS_SB(sb
);
2079 int mntflags
= sb_mntdata
->mntflags
;
2081 if (!nfs_compare_super_address(old
, server
))
2083 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2084 if (old
->flags
& NFS_MOUNT_UNSHARED
)
2086 if (memcmp(&old
->fsid
, &server
->fsid
, sizeof(old
->fsid
)) != 0)
2088 return nfs_compare_mount_options(sb
, server
, mntflags
);
2091 static int nfs_bdi_register(struct nfs_server
*server
)
2093 return bdi_register_dev(&server
->backing_dev_info
, server
->s_dev
);
2096 static int nfs_get_sb(struct file_system_type
*fs_type
,
2097 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
)
2099 struct nfs_server
*server
= NULL
;
2100 struct super_block
*s
;
2101 struct nfs_parsed_mount_data
*data
;
2102 struct nfs_fh
*mntfh
;
2103 struct dentry
*mntroot
;
2104 int (*compare_super
)(struct super_block
*, void *) = nfs_compare_super
;
2105 struct nfs_sb_mountdata sb_mntdata
= {
2108 int error
= -ENOMEM
;
2110 data
= nfs_alloc_parsed_mount_data(3);
2111 mntfh
= kzalloc(sizeof(*mntfh
), GFP_KERNEL
);
2112 if (data
== NULL
|| mntfh
== NULL
)
2115 security_init_mnt_opts(&data
->lsm_opts
);
2117 /* Validate the mount data */
2118 error
= nfs_validate_mount_data(raw_data
, data
, mntfh
, dev_name
);
2122 #ifdef CONFIG_NFS_V4
2123 if (data
->version
== 4) {
2124 error
= nfs4_try_mount(flags
, dev_name
, data
, mnt
);
2125 kfree(data
->client_address
);
2128 #endif /* CONFIG_NFS_V4 */
2130 /* Get a volume representation */
2131 server
= nfs_create_server(data
, mntfh
);
2132 if (IS_ERR(server
)) {
2133 error
= PTR_ERR(server
);
2136 sb_mntdata
.server
= server
;
2138 if (server
->flags
& NFS_MOUNT_UNSHARED
)
2139 compare_super
= NULL
;
2141 /* Get a superblock - note that we may end up sharing one that already exists */
2142 s
= sget(fs_type
, compare_super
, nfs_set_super
, &sb_mntdata
);
2148 if (s
->s_fs_info
!= server
) {
2149 nfs_free_server(server
);
2152 error
= nfs_bdi_register(server
);
2154 goto error_splat_super
;
2158 /* initial superblock/root creation */
2159 nfs_fill_super(s
, data
);
2160 nfs_fscache_get_super_cookie(
2161 s
, data
? data
->fscache_uniq
: NULL
, NULL
);
2164 mntroot
= nfs_get_root(s
, mntfh
);
2165 if (IS_ERR(mntroot
)) {
2166 error
= PTR_ERR(mntroot
);
2167 goto error_splat_super
;
2170 error
= security_sb_set_mnt_opts(s
, &data
->lsm_opts
);
2172 goto error_splat_root
;
2174 s
->s_flags
|= MS_ACTIVE
;
2176 mnt
->mnt_root
= mntroot
;
2180 kfree(data
->nfs_server
.hostname
);
2181 kfree(data
->mount_server
.hostname
);
2182 kfree(data
->fscache_uniq
);
2183 security_free_mnt_opts(&data
->lsm_opts
);
2190 nfs_free_server(server
);
2196 deactivate_locked_super(s
);
2201 * Destroy an NFS2/3 superblock
2203 static void nfs_kill_super(struct super_block
*s
)
2205 struct nfs_server
*server
= NFS_SB(s
);
2208 bdi_unregister(&server
->backing_dev_info
);
2209 nfs_fscache_release_super_cookie(s
);
2210 nfs_free_server(server
);
2214 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2216 static int nfs_xdev_get_sb(struct file_system_type
*fs_type
, int flags
,
2217 const char *dev_name
, void *raw_data
,
2218 struct vfsmount
*mnt
)
2220 struct nfs_clone_mount
*data
= raw_data
;
2221 struct super_block
*s
;
2222 struct nfs_server
*server
;
2223 struct dentry
*mntroot
;
2224 int (*compare_super
)(struct super_block
*, void *) = nfs_compare_super
;
2225 struct nfs_sb_mountdata sb_mntdata
= {
2230 dprintk("--> nfs_xdev_get_sb()\n");
2232 /* create a new volume representation */
2233 server
= nfs_clone_server(NFS_SB(data
->sb
), data
->fh
, data
->fattr
);
2234 if (IS_ERR(server
)) {
2235 error
= PTR_ERR(server
);
2236 goto out_err_noserver
;
2238 sb_mntdata
.server
= server
;
2240 if (server
->flags
& NFS_MOUNT_UNSHARED
)
2241 compare_super
= NULL
;
2243 /* Get a superblock - note that we may end up sharing one that already exists */
2244 s
= sget(&nfs_fs_type
, compare_super
, nfs_set_super
, &sb_mntdata
);
2250 if (s
->s_fs_info
!= server
) {
2251 nfs_free_server(server
);
2254 error
= nfs_bdi_register(server
);
2256 goto error_splat_super
;
2260 /* initial superblock/root creation */
2261 nfs_clone_super(s
, data
->sb
);
2262 nfs_fscache_get_super_cookie(s
, NULL
, data
);
2265 mntroot
= nfs_get_root(s
, data
->fh
);
2266 if (IS_ERR(mntroot
)) {
2267 error
= PTR_ERR(mntroot
);
2268 goto error_splat_super
;
2270 if (mntroot
->d_inode
->i_op
!= NFS_SB(s
)->nfs_client
->rpc_ops
->dir_inode_ops
) {
2273 goto error_splat_super
;
2276 s
->s_flags
|= MS_ACTIVE
;
2278 mnt
->mnt_root
= mntroot
;
2280 /* clone any lsm security options from the parent to the new sb */
2281 security_sb_clone_mnt_opts(data
->sb
, s
);
2283 dprintk("<-- nfs_xdev_get_sb() = 0\n");
2287 nfs_free_server(server
);
2289 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error
);
2293 deactivate_locked_super(s
);
2294 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error
);
2298 #ifdef CONFIG_NFS_V4
2301 * Finish setting up a cloned NFS4 superblock
2303 static void nfs4_clone_super(struct super_block
*sb
,
2304 const struct super_block
*old_sb
)
2306 sb
->s_blocksize_bits
= old_sb
->s_blocksize_bits
;
2307 sb
->s_blocksize
= old_sb
->s_blocksize
;
2308 sb
->s_maxbytes
= old_sb
->s_maxbytes
;
2309 sb
->s_time_gran
= 1;
2310 sb
->s_op
= old_sb
->s_op
;
2311 nfs_initialise_sb(sb
);
2315 * Set up an NFS4 superblock
2317 static void nfs4_fill_super(struct super_block
*sb
)
2319 sb
->s_time_gran
= 1;
2320 sb
->s_op
= &nfs4_sops
;
2321 nfs_initialise_sb(sb
);
2324 static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data
*args
)
2326 args
->flags
&= ~(NFS_MOUNT_NONLM
|NFS_MOUNT_NOACL
|NFS_MOUNT_VER3
);
2329 static int nfs4_validate_text_mount_data(void *options
,
2330 struct nfs_parsed_mount_data
*args
,
2331 const char *dev_name
)
2333 struct sockaddr
*sap
= (struct sockaddr
*)&args
->nfs_server
.address
;
2335 nfs_set_port(sap
, &args
->nfs_server
.port
, NFS_PORT
);
2337 nfs_validate_transport_protocol(args
);
2339 nfs4_validate_mount_flags(args
);
2341 if (args
->version
!= 4) {
2343 "NFS4: Illegal mount version\n");
2347 if (args
->auth_flavor_len
> 1) {
2349 "NFS4: Too many RPC auth flavours specified\n");
2353 if (args
->client_address
== NULL
) {
2355 "NFS4: mount program didn't pass callback address\n");
2359 return nfs_parse_devname(dev_name
,
2360 &args
->nfs_server
.hostname
,
2362 &args
->nfs_server
.export_path
,
2367 * Validate NFSv4 mount options
2369 static int nfs4_validate_mount_data(void *options
,
2370 struct nfs_parsed_mount_data
*args
,
2371 const char *dev_name
)
2373 struct sockaddr
*sap
= (struct sockaddr
*)&args
->nfs_server
.address
;
2374 struct nfs4_mount_data
*data
= (struct nfs4_mount_data
*)options
;
2380 switch (data
->version
) {
2382 if (data
->host_addrlen
> sizeof(args
->nfs_server
.address
))
2383 goto out_no_address
;
2384 if (data
->host_addrlen
== 0)
2385 goto out_no_address
;
2386 args
->nfs_server
.addrlen
= data
->host_addrlen
;
2387 if (copy_from_user(sap
, data
->host_addr
, data
->host_addrlen
))
2389 if (!nfs_verify_server_address(sap
))
2390 goto out_no_address
;
2392 if (data
->auth_flavourlen
) {
2393 if (data
->auth_flavourlen
> 1)
2394 goto out_inval_auth
;
2395 if (copy_from_user(&args
->auth_flavors
[0],
2396 data
->auth_flavours
,
2397 sizeof(args
->auth_flavors
[0])))
2401 c
= strndup_user(data
->hostname
.data
, NFS4_MAXNAMLEN
);
2404 args
->nfs_server
.hostname
= c
;
2406 c
= strndup_user(data
->mnt_path
.data
, NFS4_MAXPATHLEN
);
2409 args
->nfs_server
.export_path
= c
;
2410 dfprintk(MOUNT
, "NFS: MNTPATH: '%s'\n", c
);
2412 c
= strndup_user(data
->client_addr
.data
, 16);
2415 args
->client_address
= c
;
2418 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2422 args
->flags
= data
->flags
& NFS4_MOUNT_FLAGMASK
;
2423 args
->rsize
= data
->rsize
;
2424 args
->wsize
= data
->wsize
;
2425 args
->timeo
= data
->timeo
;
2426 args
->retrans
= data
->retrans
;
2427 args
->acregmin
= data
->acregmin
;
2428 args
->acregmax
= data
->acregmax
;
2429 args
->acdirmin
= data
->acdirmin
;
2430 args
->acdirmax
= data
->acdirmax
;
2431 args
->nfs_server
.protocol
= data
->proto
;
2432 nfs_validate_transport_protocol(args
);
2436 if (nfs_parse_mount_options((char *)options
, args
) == 0)
2439 if (!nfs_verify_server_address(sap
))
2442 return nfs4_validate_text_mount_data(options
, args
, dev_name
);
2448 dfprintk(MOUNT
, "NFS4: mount program didn't pass any mount data\n");
2452 dfprintk(MOUNT
, "NFS4: Invalid number of RPC auth flavours %d\n",
2453 data
->auth_flavourlen
);
2457 dfprintk(MOUNT
, "NFS4: mount program didn't pass remote address\n");
2462 * Get the superblock for the NFS4 root partition
2464 static int nfs4_remote_get_sb(struct file_system_type
*fs_type
,
2465 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
)
2467 struct nfs_parsed_mount_data
*data
= raw_data
;
2468 struct super_block
*s
;
2469 struct nfs_server
*server
;
2470 struct nfs_fh
*mntfh
;
2471 struct dentry
*mntroot
;
2472 int (*compare_super
)(struct super_block
*, void *) = nfs_compare_super
;
2473 struct nfs_sb_mountdata sb_mntdata
= {
2476 int error
= -ENOMEM
;
2478 mntfh
= kzalloc(sizeof(*mntfh
), GFP_KERNEL
);
2479 if (data
== NULL
|| mntfh
== NULL
)
2482 security_init_mnt_opts(&data
->lsm_opts
);
2484 /* Get a volume representation */
2485 server
= nfs4_create_server(data
, mntfh
);
2486 if (IS_ERR(server
)) {
2487 error
= PTR_ERR(server
);
2490 sb_mntdata
.server
= server
;
2492 if (server
->flags
& NFS4_MOUNT_UNSHARED
)
2493 compare_super
= NULL
;
2495 /* Get a superblock - note that we may end up sharing one that already exists */
2496 s
= sget(&nfs4_fs_type
, compare_super
, nfs_set_super
, &sb_mntdata
);
2502 if (s
->s_fs_info
!= server
) {
2503 nfs_free_server(server
);
2506 error
= nfs_bdi_register(server
);
2508 goto error_splat_super
;
2512 /* initial superblock/root creation */
2514 nfs_fscache_get_super_cookie(
2515 s
, data
? data
->fscache_uniq
: NULL
, NULL
);
2518 mntroot
= nfs4_get_root(s
, mntfh
);
2519 if (IS_ERR(mntroot
)) {
2520 error
= PTR_ERR(mntroot
);
2521 goto error_splat_super
;
2524 error
= security_sb_set_mnt_opts(s
, &data
->lsm_opts
);
2526 goto error_splat_root
;
2528 s
->s_flags
|= MS_ACTIVE
;
2530 mnt
->mnt_root
= mntroot
;
2534 security_free_mnt_opts(&data
->lsm_opts
);
2540 nfs_free_server(server
);
2546 deactivate_locked_super(s
);
2550 static struct vfsmount
*nfs_do_root_mount(struct file_system_type
*fs_type
,
2551 int flags
, void *data
, const char *hostname
)
2553 struct vfsmount
*root_mnt
;
2557 len
= strlen(hostname
) + 3;
2558 root_devname
= kmalloc(len
, GFP_KERNEL
);
2559 if (root_devname
== NULL
)
2560 return ERR_PTR(-ENOMEM
);
2561 snprintf(root_devname
, len
, "%s:/", hostname
);
2562 root_mnt
= vfs_kern_mount(fs_type
, flags
, root_devname
, data
);
2563 kfree(root_devname
);
2567 static void nfs_fix_devname(const struct path
*path
, struct vfsmount
*mnt
)
2569 char *page
= (char *) __get_free_page(GFP_KERNEL
);
2570 char *devname
, *tmp
;
2574 devname
= nfs_path(path
->mnt
->mnt_devname
,
2575 path
->mnt
->mnt_root
, path
->dentry
,
2577 if (devname
== NULL
)
2579 tmp
= kstrdup(devname
, GFP_KERNEL
);
2582 kfree(mnt
->mnt_devname
);
2583 mnt
->mnt_devname
= tmp
;
2585 free_page((unsigned long)page
);
2588 static int nfs_follow_remote_path(struct vfsmount
*root_mnt
,
2589 const char *export_path
, struct vfsmount
*mnt_target
)
2591 struct mnt_namespace
*ns_private
;
2592 struct nameidata nd
;
2593 struct super_block
*s
;
2596 ns_private
= create_mnt_ns(root_mnt
);
2597 ret
= PTR_ERR(ns_private
);
2598 if (IS_ERR(ns_private
))
2601 ret
= vfs_path_lookup(root_mnt
->mnt_root
, root_mnt
,
2602 export_path
, LOOKUP_FOLLOW
, &nd
);
2604 put_mnt_ns(ns_private
);
2609 s
= nd
.path
.mnt
->mnt_sb
;
2610 atomic_inc(&s
->s_active
);
2611 mnt_target
->mnt_sb
= s
;
2612 mnt_target
->mnt_root
= dget(nd
.path
.dentry
);
2614 /* Correct the device pathname */
2615 nfs_fix_devname(&nd
.path
, mnt_target
);
2618 down_write(&s
->s_umount
);
2626 static int nfs4_try_mount(int flags
, const char *dev_name
,
2627 struct nfs_parsed_mount_data
*data
,
2628 struct vfsmount
*mnt
)
2631 struct vfsmount
*root_mnt
;
2634 dfprintk(MOUNT
, "--> nfs4_try_mount()\n");
2636 export_path
= data
->nfs_server
.export_path
;
2637 data
->nfs_server
.export_path
= "/";
2638 root_mnt
= nfs_do_root_mount(&nfs4_remote_fs_type
, flags
, data
,
2639 data
->nfs_server
.hostname
);
2640 data
->nfs_server
.export_path
= export_path
;
2642 error
= PTR_ERR(root_mnt
);
2643 if (IS_ERR(root_mnt
))
2646 error
= nfs_follow_remote_path(root_mnt
, export_path
, mnt
);
2649 dfprintk(MOUNT
, "<-- nfs4_try_mount() = %d%s\n", error
,
2650 error
!= 0 ? " [error]" : "");
2655 * Get the superblock for an NFS4 mountpoint
2657 static int nfs4_get_sb(struct file_system_type
*fs_type
,
2658 int flags
, const char *dev_name
, void *raw_data
, struct vfsmount
*mnt
)
2660 struct nfs_parsed_mount_data
*data
;
2661 int error
= -ENOMEM
;
2663 data
= nfs_alloc_parsed_mount_data(4);
2667 /* Validate the mount data */
2668 error
= nfs4_validate_mount_data(raw_data
, data
, dev_name
);
2672 error
= nfs4_try_mount(flags
, dev_name
, data
, mnt
);
2675 kfree(data
->client_address
);
2676 kfree(data
->nfs_server
.export_path
);
2677 kfree(data
->nfs_server
.hostname
);
2678 kfree(data
->fscache_uniq
);
2681 dprintk("<-- nfs4_get_sb() = %d%s\n", error
,
2682 error
!= 0 ? " [error]" : "");
2686 static void nfs4_kill_super(struct super_block
*sb
)
2688 struct nfs_server
*server
= NFS_SB(sb
);
2690 dprintk("--> %s\n", __func__
);
2691 nfs_super_return_all_delegations(sb
);
2692 kill_anon_super(sb
);
2693 nfs_fscache_release_super_cookie(sb
);
2694 nfs_free_server(server
);
2695 dprintk("<-- %s\n", __func__
);
2699 * Clone an NFS4 server record on xdev traversal (FSID-change)
2701 static int nfs4_xdev_get_sb(struct file_system_type
*fs_type
, int flags
,
2702 const char *dev_name
, void *raw_data
,
2703 struct vfsmount
*mnt
)
2705 struct nfs_clone_mount
*data
= raw_data
;
2706 struct super_block
*s
;
2707 struct nfs_server
*server
;
2708 struct dentry
*mntroot
;
2709 int (*compare_super
)(struct super_block
*, void *) = nfs_compare_super
;
2710 struct nfs_sb_mountdata sb_mntdata
= {
2715 dprintk("--> nfs4_xdev_get_sb()\n");
2717 /* create a new volume representation */
2718 server
= nfs_clone_server(NFS_SB(data
->sb
), data
->fh
, data
->fattr
);
2719 if (IS_ERR(server
)) {
2720 error
= PTR_ERR(server
);
2721 goto out_err_noserver
;
2723 sb_mntdata
.server
= server
;
2725 if (server
->flags
& NFS4_MOUNT_UNSHARED
)
2726 compare_super
= NULL
;
2728 /* Get a superblock - note that we may end up sharing one that already exists */
2729 s
= sget(&nfs4_fs_type
, compare_super
, nfs_set_super
, &sb_mntdata
);
2735 if (s
->s_fs_info
!= server
) {
2736 nfs_free_server(server
);
2739 error
= nfs_bdi_register(server
);
2741 goto error_splat_super
;
2745 /* initial superblock/root creation */
2746 nfs4_clone_super(s
, data
->sb
);
2747 nfs_fscache_get_super_cookie(s
, NULL
, data
);
2750 mntroot
= nfs4_get_root(s
, data
->fh
);
2751 if (IS_ERR(mntroot
)) {
2752 error
= PTR_ERR(mntroot
);
2753 goto error_splat_super
;
2755 if (mntroot
->d_inode
->i_op
!= NFS_SB(s
)->nfs_client
->rpc_ops
->dir_inode_ops
) {
2758 goto error_splat_super
;
2761 s
->s_flags
|= MS_ACTIVE
;
2763 mnt
->mnt_root
= mntroot
;
2765 security_sb_clone_mnt_opts(data
->sb
, s
);
2767 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
2771 nfs_free_server(server
);
2773 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error
);
2777 deactivate_locked_super(s
);
2778 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error
);
2782 static int nfs4_remote_referral_get_sb(struct file_system_type
*fs_type
,
2783 int flags
, const char *dev_name
, void *raw_data
,
2784 struct vfsmount
*mnt
)
2786 struct nfs_clone_mount
*data
= raw_data
;
2787 struct super_block
*s
;
2788 struct nfs_server
*server
;
2789 struct dentry
*mntroot
;
2790 struct nfs_fh mntfh
;
2791 int (*compare_super
)(struct super_block
*, void *) = nfs_compare_super
;
2792 struct nfs_sb_mountdata sb_mntdata
= {
2797 dprintk("--> nfs4_referral_get_sb()\n");
2799 /* create a new volume representation */
2800 server
= nfs4_create_referral_server(data
, &mntfh
);
2801 if (IS_ERR(server
)) {
2802 error
= PTR_ERR(server
);
2803 goto out_err_noserver
;
2805 sb_mntdata
.server
= server
;
2807 if (server
->flags
& NFS4_MOUNT_UNSHARED
)
2808 compare_super
= NULL
;
2810 /* Get a superblock - note that we may end up sharing one that already exists */
2811 s
= sget(&nfs4_fs_type
, compare_super
, nfs_set_super
, &sb_mntdata
);
2817 if (s
->s_fs_info
!= server
) {
2818 nfs_free_server(server
);
2821 error
= nfs_bdi_register(server
);
2823 goto error_splat_super
;
2827 /* initial superblock/root creation */
2829 nfs_fscache_get_super_cookie(s
, NULL
, data
);
2832 mntroot
= nfs4_get_root(s
, &mntfh
);
2833 if (IS_ERR(mntroot
)) {
2834 error
= PTR_ERR(mntroot
);
2835 goto error_splat_super
;
2837 if (mntroot
->d_inode
->i_op
!= NFS_SB(s
)->nfs_client
->rpc_ops
->dir_inode_ops
) {
2840 goto error_splat_super
;
2843 s
->s_flags
|= MS_ACTIVE
;
2845 mnt
->mnt_root
= mntroot
;
2847 security_sb_clone_mnt_opts(data
->sb
, s
);
2849 dprintk("<-- nfs4_referral_get_sb() = 0\n");
2853 nfs_free_server(server
);
2855 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error
);
2859 deactivate_locked_super(s
);
2860 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error
);
2865 * Create an NFS4 server record on referral traversal
2867 static int nfs4_referral_get_sb(struct file_system_type
*fs_type
,
2868 int flags
, const char *dev_name
, void *raw_data
,
2869 struct vfsmount
*mnt
)
2871 struct nfs_clone_mount
*data
= raw_data
;
2873 struct vfsmount
*root_mnt
;
2876 dprintk("--> nfs4_referral_get_sb()\n");
2878 export_path
= data
->mnt_path
;
2879 data
->mnt_path
= "/";
2881 root_mnt
= nfs_do_root_mount(&nfs4_remote_referral_fs_type
,
2882 flags
, data
, data
->hostname
);
2883 data
->mnt_path
= export_path
;
2885 error
= PTR_ERR(root_mnt
);
2886 if (IS_ERR(root_mnt
))
2889 error
= nfs_follow_remote_path(root_mnt
, export_path
, mnt
);
2891 dprintk("<-- nfs4_referral_get_sb() = %d%s\n", error
,
2892 error
!= 0 ? " [error]" : "");
2896 #endif /* CONFIG_NFS_V4 */