1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/fs/nfs/fs_context.c
5 * Copyright (C) 1992 Rick Sladkey
6 * Conversion to new mount api Copyright (C) David Howells
10 * Split from fs/nfs/super.c by David Howells <dhowells@redhat.com>
13 #include <linux/compat.h>
14 #include <linux/module.h>
16 #include <linux/fs_context.h>
17 #include <linux/fs_parser.h>
18 #include <linux/nfs_fs.h>
19 #include <linux/nfs_mount.h>
20 #include <linux/nfs4_mount.h>
22 #include <net/handshake.h>
29 #define NFSDBG_FACILITY NFSDBG_MOUNT
31 #if IS_ENABLED(CONFIG_NFS_V3)
32 #define NFS_DEFAULT_VERSION 3
34 #define NFS_DEFAULT_VERSION 2
37 #define NFS_MAX_CONNECTIONS 16
100 Opt_local_lock_flock
,
102 Opt_local_lock_posix
,
105 static const struct constant_table nfs_param_enums_local_lock
[] = {
106 { "all", Opt_local_lock_all
},
107 { "flock", Opt_local_lock_flock
},
108 { "posix", Opt_local_lock_posix
},
109 { "none", Opt_local_lock_none
},
115 Opt_lookupcache_none
,
116 Opt_lookupcache_positive
,
119 static const struct constant_table nfs_param_enums_lookupcache
[] = {
120 { "all", Opt_lookupcache_all
},
121 { "none", Opt_lookupcache_none
},
122 { "pos", Opt_lookupcache_positive
},
123 { "positive", Opt_lookupcache_positive
},
133 static const struct constant_table nfs_param_enums_write
[] = {
134 { "lazy", Opt_write_lazy
},
135 { "eager", Opt_write_eager
},
136 { "wait", Opt_write_wait
},
140 static const struct fs_parameter_spec nfs_fs_parameters
[] = {
141 fsparam_flag_no("ac", Opt_ac
),
142 fsparam_u32 ("acdirmax", Opt_acdirmax
),
143 fsparam_u32 ("acdirmin", Opt_acdirmin
),
144 fsparam_flag_no("acl", Opt_acl
),
145 fsparam_u32 ("acregmax", Opt_acregmax
),
146 fsparam_u32 ("acregmin", Opt_acregmin
),
147 fsparam_u32 ("actimeo", Opt_actimeo
),
148 fsparam_string("addr", Opt_addr
),
149 fsparam_flag ("bg", Opt_bg
),
150 fsparam_u32 ("bsize", Opt_bsize
),
151 fsparam_string("clientaddr", Opt_clientaddr
),
152 fsparam_flag_no("cto", Opt_cto
),
153 fsparam_flag_no("alignwrite", Opt_alignwrite
),
154 fsparam_flag ("fg", Opt_fg
),
155 fsparam_flag_no("fsc", Opt_fscache_flag
),
156 fsparam_string("fsc", Opt_fscache
),
157 fsparam_flag ("hard", Opt_hard
),
158 __fsparam(NULL
, "intr", Opt_intr
,
159 fs_param_neg_with_no
|fs_param_deprecated
, NULL
),
160 fsparam_enum ("local_lock", Opt_local_lock
, nfs_param_enums_local_lock
),
161 fsparam_flag_no("lock", Opt_lock
),
162 fsparam_enum ("lookupcache", Opt_lookupcache
, nfs_param_enums_lookupcache
),
163 fsparam_flag_no("migration", Opt_migration
),
164 fsparam_u32 ("minorversion", Opt_minorversion
),
165 fsparam_string("mountaddr", Opt_mountaddr
),
166 fsparam_string("mounthost", Opt_mounthost
),
167 fsparam_u32 ("mountport", Opt_mountport
),
168 fsparam_string("mountproto", Opt_mountproto
),
169 fsparam_u32 ("mountvers", Opt_mountvers
),
170 fsparam_u32 ("namlen", Opt_namelen
),
171 fsparam_u32 ("nconnect", Opt_nconnect
),
172 fsparam_u32 ("max_connect", Opt_max_connect
),
173 fsparam_string("nfsvers", Opt_vers
),
174 fsparam_u32 ("port", Opt_port
),
175 fsparam_flag_no("posix", Opt_posix
),
176 fsparam_string("proto", Opt_proto
),
177 fsparam_flag_no("rdirplus", Opt_rdirplus
),
178 fsparam_flag ("rdma", Opt_rdma
),
179 fsparam_flag_no("resvport", Opt_resvport
),
180 fsparam_u32 ("retrans", Opt_retrans
),
181 fsparam_string("retry", Opt_retry
),
182 fsparam_u32 ("rsize", Opt_rsize
),
183 fsparam_string("sec", Opt_sec
),
184 fsparam_flag_no("sharecache", Opt_sharecache
),
185 fsparam_flag ("sloppy", Opt_sloppy
),
186 fsparam_flag ("soft", Opt_soft
),
187 fsparam_flag ("softerr", Opt_softerr
),
188 fsparam_flag ("softreval", Opt_softreval
),
189 fsparam_string("source", Opt_source
),
190 fsparam_flag ("tcp", Opt_tcp
),
191 fsparam_u32 ("timeo", Opt_timeo
),
192 fsparam_flag_no("trunkdiscovery", Opt_trunkdiscovery
),
193 fsparam_flag ("udp", Opt_udp
),
194 fsparam_flag ("v2", Opt_v
),
195 fsparam_flag ("v3", Opt_v
),
196 fsparam_flag ("v4", Opt_v
),
197 fsparam_flag ("v4.0", Opt_v
),
198 fsparam_flag ("v4.1", Opt_v
),
199 fsparam_flag ("v4.2", Opt_v
),
200 fsparam_string("vers", Opt_vers
),
201 fsparam_enum ("write", Opt_write
, nfs_param_enums_write
),
202 fsparam_u32 ("wsize", Opt_wsize
),
203 fsparam_string("xprtsec", Opt_xprtsec
),
216 static const struct constant_table nfs_vers_tokens
[] = {
220 { "4.0", Opt_vers_4_0
},
221 { "4.1", Opt_vers_4_1
},
222 { "4.2", Opt_vers_4_2
},
236 static const struct constant_table nfs_xprt_protocol_tokens
[] = {
237 { "rdma", Opt_xprt_rdma
},
238 { "rdma6", Opt_xprt_rdma6
},
239 { "tcp", Opt_xprt_tcp
},
240 { "tcp6", Opt_xprt_tcp6
},
241 { "udp", Opt_xprt_udp
},
242 { "udp6", Opt_xprt_udp6
},
261 static const struct constant_table nfs_secflavor_tokens
[] = {
262 { "krb5", Opt_sec_krb5
},
263 { "krb5i", Opt_sec_krb5i
},
264 { "krb5p", Opt_sec_krb5p
},
265 { "lkey", Opt_sec_lkey
},
266 { "lkeyi", Opt_sec_lkeyi
},
267 { "lkeyp", Opt_sec_lkeyp
},
268 { "none", Opt_sec_none
},
269 { "null", Opt_sec_none
},
270 { "spkm3", Opt_sec_spkm
},
271 { "spkm3i", Opt_sec_spkmi
},
272 { "spkm3p", Opt_sec_spkmp
},
273 { "sys", Opt_sec_sys
},
284 static const struct constant_table nfs_xprtsec_policies
[] = {
285 { "none", Opt_xprtsec_none
},
286 { "tls", Opt_xprtsec_tls
},
287 { "mtls", Opt_xprtsec_mtls
},
292 * Sanity-check a server address provided by the mount command.
294 * Address family must be initialized, and address must not be
295 * the ANY address for that family.
297 static int nfs_verify_server_address(struct sockaddr_storage
*addr
)
299 switch (addr
->ss_family
) {
301 struct sockaddr_in
*sa
= (struct sockaddr_in
*)addr
;
302 return sa
->sin_addr
.s_addr
!= htonl(INADDR_ANY
);
305 struct in6_addr
*sa
= &((struct sockaddr_in6
*)addr
)->sin6_addr
;
306 return !ipv6_addr_any(sa
);
313 #ifdef CONFIG_NFS_DISABLE_UDP_SUPPORT
314 static bool nfs_server_transport_udp_invalid(const struct nfs_fs_context
*ctx
)
319 static bool nfs_server_transport_udp_invalid(const struct nfs_fs_context
*ctx
)
321 if (ctx
->version
== 4)
328 * Sanity check the NFS transport protocol.
330 static int nfs_validate_transport_protocol(struct fs_context
*fc
,
331 struct nfs_fs_context
*ctx
)
333 switch (ctx
->nfs_server
.protocol
) {
334 case XPRT_TRANSPORT_UDP
:
335 if (nfs_server_transport_udp_invalid(ctx
))
336 goto out_invalid_transport_udp
;
338 case XPRT_TRANSPORT_TCP
:
339 case XPRT_TRANSPORT_RDMA
:
342 ctx
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP
;
345 if (ctx
->xprtsec
.policy
!= RPC_XPRTSEC_NONE
)
346 switch (ctx
->nfs_server
.protocol
) {
347 case XPRT_TRANSPORT_TCP
:
348 ctx
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP_TLS
;
351 goto out_invalid_xprtsec_policy
;
355 out_invalid_transport_udp
:
356 return nfs_invalf(fc
, "NFS: Unsupported transport protocol udp");
357 out_invalid_xprtsec_policy
:
358 return nfs_invalf(fc
, "NFS: Transport does not support xprtsec");
362 * For text based NFSv2/v3 mounts, the mount protocol transport default
363 * settings should depend upon the specified NFS transport.
365 static void nfs_set_mount_transport_protocol(struct nfs_fs_context
*ctx
)
367 if (ctx
->mount_server
.protocol
== XPRT_TRANSPORT_UDP
||
368 ctx
->mount_server
.protocol
== XPRT_TRANSPORT_TCP
)
370 switch (ctx
->nfs_server
.protocol
) {
371 case XPRT_TRANSPORT_UDP
:
372 ctx
->mount_server
.protocol
= XPRT_TRANSPORT_UDP
;
374 case XPRT_TRANSPORT_TCP
:
375 case XPRT_TRANSPORT_RDMA
:
376 ctx
->mount_server
.protocol
= XPRT_TRANSPORT_TCP
;
381 * Add 'flavor' to 'auth_info' if not already present.
382 * Returns true if 'flavor' ends up in the list, false otherwise
384 static int nfs_auth_info_add(struct fs_context
*fc
,
385 struct nfs_auth_info
*auth_info
,
386 rpc_authflavor_t flavor
)
389 unsigned int max_flavor_len
= ARRAY_SIZE(auth_info
->flavors
);
391 /* make sure this flavor isn't already in the list */
392 for (i
= 0; i
< auth_info
->flavor_len
; i
++) {
393 if (flavor
== auth_info
->flavors
[i
])
397 if (auth_info
->flavor_len
+ 1 >= max_flavor_len
)
398 return nfs_invalf(fc
, "NFS: too many sec= flavors");
400 auth_info
->flavors
[auth_info
->flavor_len
++] = flavor
;
405 * Parse the value of the 'sec=' option.
407 static int nfs_parse_security_flavors(struct fs_context
*fc
,
408 struct fs_parameter
*param
)
410 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
411 rpc_authflavor_t pseudoflavor
;
412 char *string
= param
->string
, *p
;
415 trace_nfs_mount_assign(param
->key
, string
);
417 while ((p
= strsep(&string
, ":")) != NULL
) {
420 switch (lookup_constant(nfs_secflavor_tokens
, p
, -1)) {
422 pseudoflavor
= RPC_AUTH_NULL
;
425 pseudoflavor
= RPC_AUTH_UNIX
;
428 pseudoflavor
= RPC_AUTH_GSS_KRB5
;
431 pseudoflavor
= RPC_AUTH_GSS_KRB5I
;
434 pseudoflavor
= RPC_AUTH_GSS_KRB5P
;
437 pseudoflavor
= RPC_AUTH_GSS_LKEY
;
440 pseudoflavor
= RPC_AUTH_GSS_LKEYI
;
443 pseudoflavor
= RPC_AUTH_GSS_LKEYP
;
446 pseudoflavor
= RPC_AUTH_GSS_SPKM
;
449 pseudoflavor
= RPC_AUTH_GSS_SPKMI
;
452 pseudoflavor
= RPC_AUTH_GSS_SPKMP
;
455 return nfs_invalf(fc
, "NFS: sec=%s option not recognized", p
);
458 ret
= nfs_auth_info_add(fc
, &ctx
->auth_info
, pseudoflavor
);
466 static int nfs_parse_xprtsec_policy(struct fs_context
*fc
,
467 struct fs_parameter
*param
)
469 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
471 trace_nfs_mount_assign(param
->key
, param
->string
);
473 switch (lookup_constant(nfs_xprtsec_policies
, param
->string
, -1)) {
474 case Opt_xprtsec_none
:
475 ctx
->xprtsec
.policy
= RPC_XPRTSEC_NONE
;
477 case Opt_xprtsec_tls
:
478 ctx
->xprtsec
.policy
= RPC_XPRTSEC_TLS_ANON
;
480 case Opt_xprtsec_mtls
:
481 ctx
->xprtsec
.policy
= RPC_XPRTSEC_TLS_X509
;
484 return nfs_invalf(fc
, "NFS: Unrecognized transport security policy");
489 static int nfs_parse_version_string(struct fs_context
*fc
,
492 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
494 ctx
->flags
&= ~NFS_MOUNT_VER3
;
495 switch (lookup_constant(nfs_vers_tokens
, string
, -1)) {
500 ctx
->flags
|= NFS_MOUNT_VER3
;
504 /* Backward compatibility option. In future,
505 * the mount program should always supply
506 * a NFSv4 minor version number.
512 ctx
->minorversion
= 0;
516 ctx
->minorversion
= 1;
520 ctx
->minorversion
= 2;
523 return nfs_invalf(fc
, "NFS: Unsupported NFS version");
529 * Parse a single mount parameter.
531 static int nfs_fs_context_parse_param(struct fs_context
*fc
,
532 struct fs_parameter
*param
)
534 struct fs_parse_result result
;
535 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
536 unsigned short protofamily
, mountfamily
;
540 trace_nfs_mount_option(param
);
542 opt
= fs_parse(fc
, nfs_fs_parameters
, param
, &result
);
544 return (opt
== -ENOPARAM
&& ctx
->sloppy
) ? 1 : opt
;
547 ctx
->has_sec_mnt_opts
= 1;
552 return nfs_invalf(fc
, "NFS: Multiple sources not supported");
553 fc
->source
= param
->string
;
554 param
->string
= NULL
;
558 * boolean options: foo/nofoo
561 ctx
->flags
|= NFS_MOUNT_SOFT
;
562 ctx
->flags
&= ~NFS_MOUNT_SOFTERR
;
565 ctx
->flags
|= NFS_MOUNT_SOFTERR
| NFS_MOUNT_SOFTREVAL
;
566 ctx
->flags
&= ~NFS_MOUNT_SOFT
;
569 ctx
->flags
&= ~(NFS_MOUNT_SOFT
|
571 NFS_MOUNT_SOFTREVAL
);
575 ctx
->flags
&= ~NFS_MOUNT_SOFTREVAL
;
577 ctx
->flags
|= NFS_MOUNT_SOFTREVAL
;
581 ctx
->flags
&= ~NFS_MOUNT_POSIX
;
583 ctx
->flags
|= NFS_MOUNT_POSIX
;
587 ctx
->flags
|= NFS_MOUNT_NOCTO
;
589 ctx
->flags
&= ~NFS_MOUNT_NOCTO
;
591 case Opt_trunkdiscovery
:
593 ctx
->flags
&= ~NFS_MOUNT_TRUNK_DISCOVERY
;
595 ctx
->flags
|= NFS_MOUNT_TRUNK_DISCOVERY
;
599 ctx
->flags
|= NFS_MOUNT_NO_ALIGNWRITE
;
601 ctx
->flags
&= ~NFS_MOUNT_NO_ALIGNWRITE
;
605 ctx
->flags
|= NFS_MOUNT_NOAC
;
607 ctx
->flags
&= ~NFS_MOUNT_NOAC
;
610 if (result
.negated
) {
611 ctx
->lock_status
= NFS_LOCK_NOLOCK
;
612 ctx
->flags
|= NFS_MOUNT_NONLM
;
613 ctx
->flags
|= (NFS_MOUNT_LOCAL_FLOCK
| NFS_MOUNT_LOCAL_FCNTL
);
615 ctx
->lock_status
= NFS_LOCK_LOCK
;
616 ctx
->flags
&= ~NFS_MOUNT_NONLM
;
617 ctx
->flags
&= ~(NFS_MOUNT_LOCAL_FLOCK
| NFS_MOUNT_LOCAL_FCNTL
);
621 ctx
->flags
&= ~NFS_MOUNT_TCP
;
622 ctx
->nfs_server
.protocol
= XPRT_TRANSPORT_UDP
;
626 ctx
->flags
|= NFS_MOUNT_TCP
; /* for side protocols */
627 ret
= xprt_find_transport_ident(param
->key
);
629 goto out_bad_transport
;
630 ctx
->nfs_server
.protocol
= ret
;
634 ctx
->flags
|= NFS_MOUNT_NOACL
;
636 ctx
->flags
&= ~NFS_MOUNT_NOACL
;
640 ctx
->flags
|= NFS_MOUNT_NORDIRPLUS
;
642 ctx
->flags
&= ~NFS_MOUNT_NORDIRPLUS
;
646 ctx
->flags
|= NFS_MOUNT_UNSHARED
;
648 ctx
->flags
&= ~NFS_MOUNT_UNSHARED
;
652 ctx
->flags
|= NFS_MOUNT_NORESVPORT
;
654 ctx
->flags
&= ~NFS_MOUNT_NORESVPORT
;
656 case Opt_fscache_flag
:
658 ctx
->options
&= ~NFS_OPTION_FSCACHE
;
660 ctx
->options
|= NFS_OPTION_FSCACHE
;
661 kfree(ctx
->fscache_uniq
);
662 ctx
->fscache_uniq
= NULL
;
665 trace_nfs_mount_assign(param
->key
, param
->string
);
666 ctx
->options
|= NFS_OPTION_FSCACHE
;
667 kfree(ctx
->fscache_uniq
);
668 ctx
->fscache_uniq
= param
->string
;
669 param
->string
= NULL
;
673 ctx
->options
&= ~NFS_OPTION_MIGRATION
;
675 ctx
->options
|= NFS_OPTION_MIGRATION
;
679 * options that take numeric values
682 if (result
.uint_32
> USHRT_MAX
)
684 ctx
->nfs_server
.port
= result
.uint_32
;
687 ctx
->rsize
= result
.uint_32
;
690 ctx
->wsize
= result
.uint_32
;
693 ctx
->bsize
= result
.uint_32
;
696 if (result
.uint_32
< 1 || result
.uint_32
> INT_MAX
)
698 ctx
->timeo
= result
.uint_32
;
701 if (result
.uint_32
> INT_MAX
)
703 ctx
->retrans
= result
.uint_32
;
706 ctx
->acregmin
= result
.uint_32
;
709 ctx
->acregmax
= result
.uint_32
;
712 ctx
->acdirmin
= result
.uint_32
;
715 ctx
->acdirmax
= result
.uint_32
;
718 ctx
->acregmin
= result
.uint_32
;
719 ctx
->acregmax
= result
.uint_32
;
720 ctx
->acdirmin
= result
.uint_32
;
721 ctx
->acdirmax
= result
.uint_32
;
724 ctx
->namlen
= result
.uint_32
;
727 if (result
.uint_32
> USHRT_MAX
)
729 ctx
->mount_server
.port
= result
.uint_32
;
732 if (result
.uint_32
< NFS_MNT_VERSION
||
733 result
.uint_32
> NFS_MNT3_VERSION
)
735 ctx
->mount_server
.version
= result
.uint_32
;
737 case Opt_minorversion
:
738 if (result
.uint_32
> NFS4_MAX_MINOR_VERSION
)
740 ctx
->minorversion
= result
.uint_32
;
744 * options that take text values
747 ret
= nfs_parse_version_string(fc
, param
->key
+ 1);
753 goto out_invalid_value
;
754 trace_nfs_mount_assign(param
->key
, param
->string
);
755 ret
= nfs_parse_version_string(fc
, param
->string
);
760 ret
= nfs_parse_security_flavors(fc
, param
);
765 ret
= nfs_parse_xprtsec_policy(fc
, param
);
772 goto out_invalid_value
;
773 trace_nfs_mount_assign(param
->key
, param
->string
);
774 protofamily
= AF_INET
;
775 switch (lookup_constant(nfs_xprt_protocol_tokens
, param
->string
, -1)) {
777 protofamily
= AF_INET6
;
780 ctx
->flags
&= ~NFS_MOUNT_TCP
;
781 ctx
->nfs_server
.protocol
= XPRT_TRANSPORT_UDP
;
784 protofamily
= AF_INET6
;
787 ctx
->flags
|= NFS_MOUNT_TCP
;
788 ctx
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP
;
791 protofamily
= AF_INET6
;
794 /* vector side protocols to TCP */
795 ctx
->flags
|= NFS_MOUNT_TCP
;
796 ret
= xprt_find_transport_ident(param
->string
);
798 goto out_bad_transport
;
799 ctx
->nfs_server
.protocol
= ret
;
802 goto out_bad_transport
;
805 ctx
->protofamily
= protofamily
;
810 goto out_invalid_value
;
811 trace_nfs_mount_assign(param
->key
, param
->string
);
812 mountfamily
= AF_INET
;
813 switch (lookup_constant(nfs_xprt_protocol_tokens
, param
->string
, -1)) {
815 mountfamily
= AF_INET6
;
818 ctx
->mount_server
.protocol
= XPRT_TRANSPORT_UDP
;
821 mountfamily
= AF_INET6
;
824 ctx
->mount_server
.protocol
= XPRT_TRANSPORT_TCP
;
826 case Opt_xprt_rdma
: /* not used for side protocols */
828 goto out_bad_transport
;
830 ctx
->mountfamily
= mountfamily
;
834 trace_nfs_mount_assign(param
->key
, param
->string
);
835 len
= rpc_pton(fc
->net_ns
, param
->string
, param
->size
,
836 &ctx
->nfs_server
.address
,
837 sizeof(ctx
->nfs_server
._address
));
839 goto out_invalid_address
;
840 ctx
->nfs_server
.addrlen
= len
;
843 trace_nfs_mount_assign(param
->key
, param
->string
);
844 kfree(ctx
->client_address
);
845 ctx
->client_address
= param
->string
;
846 param
->string
= NULL
;
849 trace_nfs_mount_assign(param
->key
, param
->string
);
850 kfree(ctx
->mount_server
.hostname
);
851 ctx
->mount_server
.hostname
= param
->string
;
852 param
->string
= NULL
;
855 trace_nfs_mount_assign(param
->key
, param
->string
);
856 len
= rpc_pton(fc
->net_ns
, param
->string
, param
->size
,
857 &ctx
->mount_server
.address
,
858 sizeof(ctx
->mount_server
._address
));
860 goto out_invalid_address
;
861 ctx
->mount_server
.addrlen
= len
;
864 trace_nfs_mount_assign(param
->key
, param
->string
);
865 if (result
.uint_32
< 1 || result
.uint_32
> NFS_MAX_CONNECTIONS
)
867 ctx
->nfs_server
.nconnect
= result
.uint_32
;
869 case Opt_max_connect
:
870 trace_nfs_mount_assign(param
->key
, param
->string
);
871 if (result
.uint_32
< 1 || result
.uint_32
> NFS_MAX_TRANSPORTS
)
873 ctx
->nfs_server
.max_connect
= result
.uint_32
;
875 case Opt_lookupcache
:
876 trace_nfs_mount_assign(param
->key
, param
->string
);
877 switch (result
.uint_32
) {
878 case Opt_lookupcache_all
:
879 ctx
->flags
&= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG
|NFS_MOUNT_LOOKUP_CACHE_NONE
);
881 case Opt_lookupcache_positive
:
882 ctx
->flags
&= ~NFS_MOUNT_LOOKUP_CACHE_NONE
;
883 ctx
->flags
|= NFS_MOUNT_LOOKUP_CACHE_NONEG
;
885 case Opt_lookupcache_none
:
886 ctx
->flags
|= NFS_MOUNT_LOOKUP_CACHE_NONEG
|NFS_MOUNT_LOOKUP_CACHE_NONE
;
889 goto out_invalid_value
;
893 trace_nfs_mount_assign(param
->key
, param
->string
);
894 switch (result
.uint_32
) {
895 case Opt_local_lock_all
:
896 ctx
->flags
|= (NFS_MOUNT_LOCAL_FLOCK
|
897 NFS_MOUNT_LOCAL_FCNTL
);
899 case Opt_local_lock_flock
:
900 ctx
->flags
|= NFS_MOUNT_LOCAL_FLOCK
;
902 case Opt_local_lock_posix
:
903 ctx
->flags
|= NFS_MOUNT_LOCAL_FCNTL
;
905 case Opt_local_lock_none
:
906 ctx
->flags
&= ~(NFS_MOUNT_LOCAL_FLOCK
|
907 NFS_MOUNT_LOCAL_FCNTL
);
910 goto out_invalid_value
;
914 trace_nfs_mount_assign(param
->key
, param
->string
);
915 switch (result
.uint_32
) {
918 ~(NFS_MOUNT_WRITE_EAGER
| NFS_MOUNT_WRITE_WAIT
);
920 case Opt_write_eager
:
921 ctx
->flags
|= NFS_MOUNT_WRITE_EAGER
;
922 ctx
->flags
&= ~NFS_MOUNT_WRITE_WAIT
;
926 NFS_MOUNT_WRITE_EAGER
| NFS_MOUNT_WRITE_WAIT
;
929 goto out_invalid_value
;
944 return nfs_invalf(fc
, "NFS: Bad mount option value specified");
946 return nfs_invalf(fc
, "NFS: Bad IP address specified");
948 return nfs_invalf(fc
, "NFS: Value for '%s' out of range", param
->key
);
950 return nfs_invalf(fc
, "NFS: Unrecognized transport protocol");
954 * Split fc->source into "hostname:export_path".
956 * The leftmost colon demarks the split between the server's hostname
957 * and the export path. If the hostname starts with a left square
958 * bracket, then it may contain colons.
960 * Note: caller frees hostname and export path, even on error.
962 static int nfs_parse_source(struct fs_context
*fc
,
963 size_t maxnamlen
, size_t maxpathlen
)
965 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
966 const char *dev_name
= fc
->source
;
970 if (unlikely(!dev_name
|| !*dev_name
))
973 /* Is the host name protected with square brakcets? */
974 if (*dev_name
== '[') {
975 end
= strchr(++dev_name
, ']');
976 if (end
== NULL
|| end
[1] != ':')
977 goto out_bad_devname
;
979 len
= end
- dev_name
;
984 end
= strchr(dev_name
, ':');
986 goto out_bad_devname
;
987 len
= end
- dev_name
;
989 /* kill possible hostname list: not supported */
990 comma
= memchr(dev_name
, ',', len
);
992 len
= comma
- dev_name
;
998 kfree(ctx
->nfs_server
.hostname
);
1000 /* N.B. caller will free nfs_server.hostname in all cases */
1001 ctx
->nfs_server
.hostname
= kmemdup_nul(dev_name
, len
, GFP_KERNEL
);
1002 if (!ctx
->nfs_server
.hostname
)
1004 len
= strlen(++end
);
1005 if (len
> maxpathlen
)
1007 ctx
->nfs_server
.export_path
= kmemdup_nul(end
, len
, GFP_KERNEL
);
1008 if (!ctx
->nfs_server
.export_path
)
1011 trace_nfs_mount_path(ctx
->nfs_server
.export_path
);
1015 return nfs_invalf(fc
, "NFS: device name not in host:path format");
1017 nfs_errorf(fc
, "NFS: not enough memory to parse device name");
1020 nfs_errorf(fc
, "NFS: server hostname too long");
1021 return -ENAMETOOLONG
;
1023 nfs_errorf(fc
, "NFS: export pathname too long");
1024 return -ENAMETOOLONG
;
1027 static inline bool is_remount_fc(struct fs_context
*fc
)
1029 return fc
->root
!= NULL
;
1033 * Parse monolithic NFS2/NFS3 mount data
1034 * - fills in the mount root filehandle
1036 * For option strings, user space handles the following behaviors:
1038 * + DNS: mapping server host name to IP address ("addr=" option)
1040 * + failure mode: how to behave if a mount request can't be handled
1041 * immediately ("fg/bg" option)
1043 * + retry: how often to retry a mount request ("retry=" option)
1045 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1046 * mountproto=tcp after mountproto=udp, and so on
1048 static int nfs23_parse_monolithic(struct fs_context
*fc
,
1049 struct nfs_mount_data
*data
)
1051 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
1052 struct nfs_fh
*mntfh
= ctx
->mntfh
;
1053 struct sockaddr_storage
*sap
= &ctx
->nfs_server
._address
;
1054 int extra_flags
= NFS_MOUNT_LEGACY_INTERFACE
;
1060 ctx
->version
= NFS_DEFAULT_VERSION
;
1061 switch (data
->version
) {
1069 if (data
->flags
& NFS_MOUNT_VER3
)
1071 data
->root
.size
= NFS2_FHSIZE
;
1072 memcpy(data
->root
.data
, data
->old_root
.data
, NFS2_FHSIZE
);
1073 /* Turn off security negotiation */
1074 extra_flags
|= NFS_MOUNT_SECFLAVOUR
;
1077 if (data
->flags
& NFS_MOUNT_SECFLAVOUR
)
1081 memset(data
->context
, 0, sizeof(data
->context
));
1084 if (data
->flags
& NFS_MOUNT_VER3
) {
1085 if (data
->root
.size
> NFS3_FHSIZE
|| data
->root
.size
== 0)
1086 goto out_invalid_fh
;
1087 mntfh
->size
= data
->root
.size
;
1090 mntfh
->size
= NFS2_FHSIZE
;
1095 memcpy(mntfh
->data
, data
->root
.data
, mntfh
->size
);
1096 if (mntfh
->size
< sizeof(mntfh
->data
))
1097 memset(mntfh
->data
+ mntfh
->size
, 0,
1098 sizeof(mntfh
->data
) - mntfh
->size
);
1101 * for proto == XPRT_TRANSPORT_UDP, which is what uses
1102 * to_exponential, implying shift: limit the shift value
1103 * to BITS_PER_LONG (majortimeo is unsigned long)
1105 if (!(data
->flags
& NFS_MOUNT_TCP
)) /* this will be UDP */
1106 if (data
->retrans
>= 64) /* shift value is too large */
1107 goto out_invalid_data
;
1110 * Translate to nfs_fs_context, which nfs_fill_super
1113 ctx
->flags
= data
->flags
& NFS_MOUNT_FLAGMASK
;
1114 ctx
->flags
|= extra_flags
;
1115 ctx
->rsize
= data
->rsize
;
1116 ctx
->wsize
= data
->wsize
;
1117 ctx
->timeo
= data
->timeo
;
1118 ctx
->retrans
= data
->retrans
;
1119 ctx
->acregmin
= data
->acregmin
;
1120 ctx
->acregmax
= data
->acregmax
;
1121 ctx
->acdirmin
= data
->acdirmin
;
1122 ctx
->acdirmax
= data
->acdirmax
;
1123 ctx
->need_mount
= false;
1125 if (!is_remount_fc(fc
)) {
1126 memcpy(sap
, &data
->addr
, sizeof(data
->addr
));
1127 ctx
->nfs_server
.addrlen
= sizeof(data
->addr
);
1128 ctx
->nfs_server
.port
= ntohs(data
->addr
.sin_port
);
1131 if (sap
->ss_family
!= AF_INET
||
1132 !nfs_verify_server_address(sap
))
1133 goto out_no_address
;
1135 if (!(data
->flags
& NFS_MOUNT_TCP
))
1136 ctx
->nfs_server
.protocol
= XPRT_TRANSPORT_UDP
;
1137 /* N.B. caller will free nfs_server.hostname in all cases */
1138 ctx
->nfs_server
.hostname
= kstrdup(data
->hostname
, GFP_KERNEL
);
1139 if (!ctx
->nfs_server
.hostname
)
1142 ctx
->namlen
= data
->namlen
;
1143 ctx
->bsize
= data
->bsize
;
1145 if (data
->flags
& NFS_MOUNT_SECFLAVOUR
)
1146 ctx
->selected_flavor
= data
->pseudoflavor
;
1148 ctx
->selected_flavor
= RPC_AUTH_UNIX
;
1150 if (!(data
->flags
& NFS_MOUNT_NONLM
))
1151 ctx
->flags
&= ~(NFS_MOUNT_LOCAL_FLOCK
|
1152 NFS_MOUNT_LOCAL_FCNTL
);
1154 ctx
->flags
|= (NFS_MOUNT_LOCAL_FLOCK
|
1155 NFS_MOUNT_LOCAL_FCNTL
);
1158 * The legacy version 6 binary mount data from userspace has a
1159 * field used only to transport selinux information into the
1160 * kernel. To continue to support that functionality we
1161 * have a touch of selinux knowledge here in the NFS code. The
1162 * userspace code converted context=blah to just blah so we are
1163 * converting back to the full string selinux understands.
1165 if (data
->context
[0]){
1166 #ifdef CONFIG_SECURITY_SELINUX
1169 data
->context
[NFS_MAX_CONTEXT_LEN
] = '\0';
1170 ret
= vfs_parse_fs_string(fc
, "context",
1171 data
->context
, strlen(data
->context
));
1184 ret
= nfs_validate_transport_protocol(fc
, ctx
);
1188 ctx
->skip_reconfig_option_check
= true;
1192 return generic_parse_monolithic(fc
, data
);
1195 if (is_remount_fc(fc
)) {
1196 ctx
->skip_reconfig_option_check
= true;
1199 return nfs_invalf(fc
, "NFS: mount program didn't pass any mount data");
1202 return nfs_invalf(fc
, "NFS: nfs_mount_data version does not support v3");
1205 return nfs_invalf(fc
, "NFS: nfs_mount_data version supports only AUTH_SYS");
1211 return nfs_invalf(fc
, "NFS: mount program didn't pass remote address");
1214 return nfs_invalf(fc
, "NFS: invalid root filehandle");
1217 return nfs_invalf(fc
, "NFS: invalid binary mount data");
1220 #if IS_ENABLED(CONFIG_NFS_V4)
1221 struct compat_nfs_string
{
1226 static inline void compat_nfs_string(struct nfs_string
*dst
,
1227 struct compat_nfs_string
*src
)
1229 dst
->data
= compat_ptr(src
->data
);
1230 dst
->len
= src
->len
;
1233 struct compat_nfs4_mount_data_v1
{
1234 compat_int_t version
;
1239 compat_int_t retrans
;
1240 compat_int_t acregmin
;
1241 compat_int_t acregmax
;
1242 compat_int_t acdirmin
;
1243 compat_int_t acdirmax
;
1244 struct compat_nfs_string client_addr
;
1245 struct compat_nfs_string mnt_path
;
1246 struct compat_nfs_string hostname
;
1247 compat_uint_t host_addrlen
;
1248 compat_uptr_t host_addr
;
1250 compat_int_t auth_flavourlen
;
1251 compat_uptr_t auth_flavours
;
1254 static void nfs4_compat_mount_data_conv(struct nfs4_mount_data
*data
)
1256 struct compat_nfs4_mount_data_v1
*compat
=
1257 (struct compat_nfs4_mount_data_v1
*)data
;
1259 /* copy the fields backwards */
1260 data
->auth_flavours
= compat_ptr(compat
->auth_flavours
);
1261 data
->auth_flavourlen
= compat
->auth_flavourlen
;
1262 data
->proto
= compat
->proto
;
1263 data
->host_addr
= compat_ptr(compat
->host_addr
);
1264 data
->host_addrlen
= compat
->host_addrlen
;
1265 compat_nfs_string(&data
->hostname
, &compat
->hostname
);
1266 compat_nfs_string(&data
->mnt_path
, &compat
->mnt_path
);
1267 compat_nfs_string(&data
->client_addr
, &compat
->client_addr
);
1268 data
->acdirmax
= compat
->acdirmax
;
1269 data
->acdirmin
= compat
->acdirmin
;
1270 data
->acregmax
= compat
->acregmax
;
1271 data
->acregmin
= compat
->acregmin
;
1272 data
->retrans
= compat
->retrans
;
1273 data
->timeo
= compat
->timeo
;
1274 data
->wsize
= compat
->wsize
;
1275 data
->rsize
= compat
->rsize
;
1276 data
->flags
= compat
->flags
;
1277 data
->version
= compat
->version
;
1281 * Validate NFSv4 mount options
1283 static int nfs4_parse_monolithic(struct fs_context
*fc
,
1284 struct nfs4_mount_data
*data
)
1286 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
1287 struct sockaddr_storage
*sap
= &ctx
->nfs_server
._address
;
1292 if (is_remount_fc(fc
))
1294 return nfs_invalf(fc
,
1295 "NFS4: mount program didn't pass any mount data");
1300 if (data
->version
!= 1)
1301 return generic_parse_monolithic(fc
, data
);
1303 if (in_compat_syscall())
1304 nfs4_compat_mount_data_conv(data
);
1306 if (data
->host_addrlen
> sizeof(ctx
->nfs_server
.address
))
1307 goto out_no_address
;
1308 if (data
->host_addrlen
== 0)
1309 goto out_no_address
;
1310 ctx
->nfs_server
.addrlen
= data
->host_addrlen
;
1311 if (copy_from_user(sap
, data
->host_addr
, data
->host_addrlen
))
1313 if (!nfs_verify_server_address(sap
))
1314 goto out_no_address
;
1315 ctx
->nfs_server
.port
= ntohs(((struct sockaddr_in
*)sap
)->sin_port
);
1317 if (data
->auth_flavourlen
) {
1318 rpc_authflavor_t pseudoflavor
;
1320 if (data
->auth_flavourlen
> 1)
1321 goto out_inval_auth
;
1322 if (copy_from_user(&pseudoflavor
, data
->auth_flavours
,
1323 sizeof(pseudoflavor
)))
1325 ctx
->selected_flavor
= pseudoflavor
;
1327 ctx
->selected_flavor
= RPC_AUTH_UNIX
;
1330 c
= strndup_user(data
->hostname
.data
, NFS4_MAXNAMLEN
);
1333 ctx
->nfs_server
.hostname
= c
;
1335 c
= strndup_user(data
->mnt_path
.data
, NFS4_MAXPATHLEN
);
1338 ctx
->nfs_server
.export_path
= c
;
1339 trace_nfs_mount_path(c
);
1341 c
= strndup_user(data
->client_addr
.data
, 16);
1344 ctx
->client_address
= c
;
1347 * Translate to nfs_fs_context, which nfs_fill_super
1351 ctx
->flags
= data
->flags
& NFS4_MOUNT_FLAGMASK
;
1352 ctx
->rsize
= data
->rsize
;
1353 ctx
->wsize
= data
->wsize
;
1354 ctx
->timeo
= data
->timeo
;
1355 ctx
->retrans
= data
->retrans
;
1356 ctx
->acregmin
= data
->acregmin
;
1357 ctx
->acregmax
= data
->acregmax
;
1358 ctx
->acdirmin
= data
->acdirmin
;
1359 ctx
->acdirmax
= data
->acdirmax
;
1360 ctx
->nfs_server
.protocol
= data
->proto
;
1361 ret
= nfs_validate_transport_protocol(fc
, ctx
);
1365 ctx
->skip_reconfig_option_check
= true;
1369 return nfs_invalf(fc
, "NFS4: Invalid number of RPC auth flavours %d",
1370 data
->auth_flavourlen
);
1373 return nfs_invalf(fc
, "NFS4: mount program didn't pass remote address");
1378 * Parse a monolithic block of data from sys_mount().
1380 static int nfs_fs_context_parse_monolithic(struct fs_context
*fc
,
1383 if (fc
->fs_type
== &nfs_fs_type
)
1384 return nfs23_parse_monolithic(fc
, data
);
1386 #if IS_ENABLED(CONFIG_NFS_V4)
1387 if (fc
->fs_type
== &nfs4_fs_type
)
1388 return nfs4_parse_monolithic(fc
, data
);
1391 return nfs_invalf(fc
, "NFS: Unsupported monolithic data version");
1395 * Validate the preparsed information in the config.
1397 static int nfs_fs_context_validate(struct fs_context
*fc
)
1399 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
1400 struct nfs_subversion
*nfs_mod
;
1401 struct sockaddr_storage
*sap
= &ctx
->nfs_server
._address
;
1402 int max_namelen
= PAGE_SIZE
;
1403 int max_pathlen
= NFS_MAXPATHLEN
;
1408 goto out_no_device_name
;
1410 /* Check for sanity first. */
1411 if (ctx
->minorversion
&& ctx
->version
!= 4)
1412 goto out_minorversion_mismatch
;
1414 if (ctx
->options
& NFS_OPTION_MIGRATION
&&
1415 (ctx
->version
!= 4 || ctx
->minorversion
!= 0))
1416 goto out_migration_misuse
;
1418 /* Verify that any proto=/mountproto= options match the address
1419 * families in the addr=/mountaddr= options.
1421 if (ctx
->protofamily
!= AF_UNSPEC
&&
1422 ctx
->protofamily
!= ctx
->nfs_server
.address
.sa_family
)
1423 goto out_proto_mismatch
;
1425 if (ctx
->mountfamily
!= AF_UNSPEC
) {
1426 if (ctx
->mount_server
.addrlen
) {
1427 if (ctx
->mountfamily
!= ctx
->mount_server
.address
.sa_family
)
1428 goto out_mountproto_mismatch
;
1430 if (ctx
->mountfamily
!= ctx
->nfs_server
.address
.sa_family
)
1431 goto out_mountproto_mismatch
;
1435 if (!nfs_verify_server_address(sap
))
1436 goto out_no_address
;
1438 ret
= nfs_validate_transport_protocol(fc
, ctx
);
1442 if (ctx
->version
== 4) {
1443 if (IS_ENABLED(CONFIG_NFS_V4
)) {
1444 if (ctx
->nfs_server
.protocol
== XPRT_TRANSPORT_RDMA
)
1445 port
= NFS_RDMA_PORT
;
1448 max_namelen
= NFS4_MAXNAMLEN
;
1449 max_pathlen
= NFS4_MAXPATHLEN
;
1450 ctx
->flags
&= ~(NFS_MOUNT_NONLM
| NFS_MOUNT_NOACL
|
1451 NFS_MOUNT_VER3
| NFS_MOUNT_LOCAL_FLOCK
|
1452 NFS_MOUNT_LOCAL_FCNTL
);
1454 goto out_v4_not_compiled
;
1457 nfs_set_mount_transport_protocol(ctx
);
1458 if (ctx
->nfs_server
.protocol
== XPRT_TRANSPORT_RDMA
)
1459 port
= NFS_RDMA_PORT
;
1462 nfs_set_port(sap
, &ctx
->nfs_server
.port
, port
);
1464 ret
= nfs_parse_source(fc
, max_namelen
, max_pathlen
);
1468 /* Load the NFS protocol module if we haven't done so yet */
1469 if (!ctx
->nfs_mod
) {
1470 nfs_mod
= find_nfs_version(ctx
->version
);
1471 if (IS_ERR(nfs_mod
)) {
1472 ret
= PTR_ERR(nfs_mod
);
1473 goto out_version_unavailable
;
1475 ctx
->nfs_mod
= nfs_mod
;
1478 /* Ensure the filesystem context has the correct fs_type */
1479 if (fc
->fs_type
!= ctx
->nfs_mod
->nfs_fs
) {
1480 module_put(fc
->fs_type
->owner
);
1481 __module_get(ctx
->nfs_mod
->nfs_fs
->owner
);
1482 fc
->fs_type
= ctx
->nfs_mod
->nfs_fs
;
1487 return nfs_invalf(fc
, "NFS: Device name not specified");
1488 out_v4_not_compiled
:
1489 nfs_errorf(fc
, "NFS: NFSv4 is not compiled into kernel");
1490 return -EPROTONOSUPPORT
;
1492 return nfs_invalf(fc
, "NFS: mount program didn't pass remote address");
1493 out_mountproto_mismatch
:
1494 return nfs_invalf(fc
, "NFS: Mount server address does not match mountproto= option");
1496 return nfs_invalf(fc
, "NFS: Server address does not match proto= option");
1497 out_minorversion_mismatch
:
1498 return nfs_invalf(fc
, "NFS: Mount option vers=%u does not support minorversion=%u",
1499 ctx
->version
, ctx
->minorversion
);
1500 out_migration_misuse
:
1501 return nfs_invalf(fc
, "NFS: 'Migration' not supported for this NFS version");
1502 out_version_unavailable
:
1503 nfs_errorf(fc
, "NFS: Version unavailable");
1508 * Create an NFS superblock by the appropriate method.
1510 static int nfs_get_tree(struct fs_context
*fc
)
1512 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
1513 int err
= nfs_fs_context_validate(fc
);
1518 return ctx
->nfs_mod
->rpc_ops
->try_get_tree(fc
);
1520 return nfs_get_tree_common(fc
);
1524 * Handle duplication of a configuration. The caller copied *src into *sc, but
1525 * it can't deal with resource pointers in the filesystem context, so we have
1526 * to do that. We need to clear pointers, copy data or get extra refs as
1529 static int nfs_fs_context_dup(struct fs_context
*fc
, struct fs_context
*src_fc
)
1531 struct nfs_fs_context
*src
= nfs_fc2context(src_fc
), *ctx
;
1533 ctx
= kmemdup(src
, sizeof(struct nfs_fs_context
), GFP_KERNEL
);
1537 ctx
->mntfh
= nfs_alloc_fhandle();
1542 nfs_copy_fh(ctx
->mntfh
, src
->mntfh
);
1544 get_nfs_version(ctx
->nfs_mod
);
1545 ctx
->client_address
= NULL
;
1546 ctx
->mount_server
.hostname
= NULL
;
1547 ctx
->nfs_server
.export_path
= NULL
;
1548 ctx
->nfs_server
.hostname
= NULL
;
1549 ctx
->fscache_uniq
= NULL
;
1550 ctx
->clone_data
.fattr
= NULL
;
1551 fc
->fs_private
= ctx
;
1555 static void nfs_fs_context_free(struct fs_context
*fc
)
1557 struct nfs_fs_context
*ctx
= nfs_fc2context(fc
);
1561 nfs_free_server(ctx
->server
);
1563 put_nfs_version(ctx
->nfs_mod
);
1564 kfree(ctx
->client_address
);
1565 kfree(ctx
->mount_server
.hostname
);
1566 kfree(ctx
->nfs_server
.export_path
);
1567 kfree(ctx
->nfs_server
.hostname
);
1568 kfree(ctx
->fscache_uniq
);
1569 nfs_free_fhandle(ctx
->mntfh
);
1570 nfs_free_fattr(ctx
->clone_data
.fattr
);
1575 static const struct fs_context_operations nfs_fs_context_ops
= {
1576 .free
= nfs_fs_context_free
,
1577 .dup
= nfs_fs_context_dup
,
1578 .parse_param
= nfs_fs_context_parse_param
,
1579 .parse_monolithic
= nfs_fs_context_parse_monolithic
,
1580 .get_tree
= nfs_get_tree
,
1581 .reconfigure
= nfs_reconfigure
,
1585 * Prepare superblock configuration. We use the namespaces attached to the
1586 * context. This may be the current process's namespaces, or it may be a
1587 * container's namespaces.
1589 static int nfs_init_fs_context(struct fs_context
*fc
)
1591 struct nfs_fs_context
*ctx
;
1593 ctx
= kzalloc(sizeof(struct nfs_fs_context
), GFP_KERNEL
);
1597 ctx
->mntfh
= nfs_alloc_fhandle();
1598 if (unlikely(!ctx
->mntfh
)) {
1603 ctx
->protofamily
= AF_UNSPEC
;
1604 ctx
->mountfamily
= AF_UNSPEC
;
1605 ctx
->mount_server
.port
= NFS_UNSPEC_PORT
;
1608 /* reconfigure, start with the current config */
1609 struct nfs_server
*nfss
= fc
->root
->d_sb
->s_fs_info
;
1610 struct net
*net
= nfss
->nfs_client
->cl_net
;
1612 ctx
->flags
= nfss
->flags
;
1613 ctx
->rsize
= nfss
->rsize
;
1614 ctx
->wsize
= nfss
->wsize
;
1615 ctx
->retrans
= nfss
->client
->cl_timeout
->to_retries
;
1616 ctx
->selected_flavor
= nfss
->client
->cl_auth
->au_flavor
;
1617 ctx
->acregmin
= nfss
->acregmin
/ HZ
;
1618 ctx
->acregmax
= nfss
->acregmax
/ HZ
;
1619 ctx
->acdirmin
= nfss
->acdirmin
/ HZ
;
1620 ctx
->acdirmax
= nfss
->acdirmax
/ HZ
;
1621 ctx
->timeo
= 10U * nfss
->client
->cl_timeout
->to_initval
/ HZ
;
1622 ctx
->nfs_server
.port
= nfss
->port
;
1623 ctx
->nfs_server
.addrlen
= nfss
->nfs_client
->cl_addrlen
;
1624 ctx
->version
= nfss
->nfs_client
->rpc_ops
->version
;
1625 ctx
->minorversion
= nfss
->nfs_client
->cl_minorversion
;
1627 memcpy(&ctx
->nfs_server
._address
, &nfss
->nfs_client
->cl_addr
,
1628 ctx
->nfs_server
.addrlen
);
1630 if (fc
->net_ns
!= net
) {
1631 put_net(fc
->net_ns
);
1632 fc
->net_ns
= get_net(net
);
1635 ctx
->nfs_mod
= nfss
->nfs_client
->cl_nfs_mod
;
1636 get_nfs_version(ctx
->nfs_mod
);
1639 ctx
->timeo
= NFS_UNSPEC_TIMEO
;
1640 ctx
->retrans
= NFS_UNSPEC_RETRANS
;
1641 ctx
->acregmin
= NFS_DEF_ACREGMIN
;
1642 ctx
->acregmax
= NFS_DEF_ACREGMAX
;
1643 ctx
->acdirmin
= NFS_DEF_ACDIRMIN
;
1644 ctx
->acdirmax
= NFS_DEF_ACDIRMAX
;
1645 ctx
->nfs_server
.port
= NFS_UNSPEC_PORT
;
1646 ctx
->nfs_server
.protocol
= XPRT_TRANSPORT_TCP
;
1647 ctx
->selected_flavor
= RPC_AUTH_MAXFLAVOR
;
1648 ctx
->minorversion
= 0;
1649 ctx
->need_mount
= true;
1650 ctx
->xprtsec
.policy
= RPC_XPRTSEC_NONE
;
1651 ctx
->xprtsec
.cert_serial
= TLS_NO_CERT
;
1652 ctx
->xprtsec
.privkey_serial
= TLS_NO_PRIVKEY
;
1654 fc
->s_iflags
|= SB_I_STABLE_WRITES
;
1656 fc
->fs_private
= ctx
;
1657 fc
->ops
= &nfs_fs_context_ops
;
1661 struct file_system_type nfs_fs_type
= {
1662 .owner
= THIS_MODULE
,
1664 .init_fs_context
= nfs_init_fs_context
,
1665 .parameters
= nfs_fs_parameters
,
1666 .kill_sb
= nfs_kill_super
,
1667 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_BINARY_MOUNTDATA
,
1669 MODULE_ALIAS_FS("nfs");
1670 EXPORT_SYMBOL_GPL(nfs_fs_type
);
1672 #if IS_ENABLED(CONFIG_NFS_V4)
1673 struct file_system_type nfs4_fs_type
= {
1674 .owner
= THIS_MODULE
,
1676 .init_fs_context
= nfs_init_fs_context
,
1677 .parameters
= nfs_fs_parameters
,
1678 .kill_sb
= nfs_kill_super
,
1679 .fs_flags
= FS_RENAME_DOES_D_MOVE
|FS_BINARY_MOUNTDATA
,
1681 MODULE_ALIAS_FS("nfs4");
1682 MODULE_ALIAS("nfs4");
1683 EXPORT_SYMBOL_GPL(nfs4_fs_type
);
1684 #endif /* CONFIG_NFS_V4 */