blob: 558a85c9594a01358a2393ecf451272460695b47 [file] [log] [blame]
David Howellsf7b422b2006-06-09 09:34:33 -04001/*
2 * linux/fs/nfs/super.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 *
6 * nfs superblock handling functions
7 *
Alan Cox526719b2008-10-27 15:19:48 +00008 * Modularised by Alan Cox <alan@lxorguk.ukuu.org.uk>, while hacking some
David Howellsf7b422b2006-06-09 09:34:33 -04009 * experimental NFS changes. Modularisation taken straight from SYS5 fs.
10 *
11 * Change to nfs_read_super() to permit NFS mounts to multi-homed hosts.
12 * J.S.Peatfield@damtp.cam.ac.uk
13 *
14 * Split from inode.c by David Howells <dhowells@redhat.com>
15 *
David Howells54ceac42006-08-22 20:06:13 -040016 * - 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())
David Howellsf7b422b2006-06-09 09:34:33 -040021 */
22
David Howellsf7b422b2006-06-09 09:34:33 -040023#include <linux/module.h>
24#include <linux/init.h>
25
26#include <linux/time.h>
27#include <linux/kernel.h>
28#include <linux/mm.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>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040036#include <linux/sunrpc/xprtsock.h>
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040037#include <linux/sunrpc/xprtrdma.h>
David Howellsf7b422b2006-06-09 09:34:33 -040038#include <linux/nfs_fs.h>
39#include <linux/nfs_mount.h>
40#include <linux/nfs4_mount.h>
41#include <linux/lockd/bind.h>
David Howellsf7b422b2006-06-09 09:34:33 -040042#include <linux/seq_file.h>
43#include <linux/mount.h>
Trond Myklebustc02d7ad2009-06-22 15:09:14 -040044#include <linux/namei.h>
David Howellsf7b422b2006-06-09 09:34:33 -040045#include <linux/nfs_idmap.h>
46#include <linux/vfs.h>
47#include <linux/inet.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050048#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050050#include <net/ipv6.h>
Chuck Leverd8e77482008-06-23 12:37:01 -040051#include <linux/netdevice.h>
David Howellsf7b422b2006-06-09 09:34:33 -040052#include <linux/nfs_xdr.h>
Adrian Bunkb5d5dfb2007-02-12 00:53:40 -080053#include <linux/magic.h>
Chuck Leverbf0fd762007-07-01 12:13:44 -040054#include <linux/parser.h>
Stanislav Kinsburskye50a7a12012-01-10 16:12:46 +040055#include <linux/nsproxy.h>
Trond Myklebust2446ab62012-03-01 17:00:56 -050056#include <linux/rcupdate.h>
David Howellsf7b422b2006-06-09 09:34:33 -040057
David Howellsf7b422b2006-06-09 09:34:33 -040058#include <asm/uaccess.h>
59
60#include "nfs4_fs.h"
61#include "callback.h"
62#include "delegation.h"
63#include "iostat.h"
64#include "internal.h"
David Howells08734042009-04-03 16:42:42 +010065#include "fscache.h"
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +030066#include "pnfs.h"
Bryan Schumakerab7017a2012-07-30 16:05:16 -040067#include "nfs.h"
David Howellsf7b422b2006-06-09 09:34:33 -040068
69#define NFSDBG_FACILITY NFSDBG_VFS
Bryan Schumakerb72e4f42012-05-10 15:07:40 -040070#define NFS_TEXT_DATA 1
David Howellsf7b422b2006-06-09 09:34:33 -040071
Bryan Schumaker1c606fb2012-07-30 16:05:24 -040072#if IS_ENABLED(CONFIG_NFS_V3)
Paulius Zaleckas1e657bd2010-10-31 18:21:05 +020073#define NFS_DEFAULT_VERSION 3
74#else
75#define NFS_DEFAULT_VERSION 2
76#endif
77
Chuck Leverbf0fd762007-07-01 12:13:44 -040078enum {
79 /* Mount options that take no arguments */
80 Opt_soft, Opt_hard,
Chuck Leverbf0fd762007-07-01 12:13:44 -040081 Opt_posix, Opt_noposix,
82 Opt_cto, Opt_nocto,
83 Opt_ac, Opt_noac,
84 Opt_lock, Opt_nolock,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040085 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040086 Opt_acl, Opt_noacl,
87 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040088 Opt_sharecache, Opt_nosharecache,
Chuck Leverd7403512008-12-23 15:21:37 -050089 Opt_resvport, Opt_noresvport,
David Howellsb797cac2009-04-03 16:42:48 +010090 Opt_fscache, Opt_nofscache,
Chuck Leverbf0fd762007-07-01 12:13:44 -040091
92 /* Mount options that take integer arguments */
93 Opt_port,
94 Opt_rsize, Opt_wsize, Opt_bsize,
95 Opt_timeo, Opt_retrans,
96 Opt_acregmin, Opt_acregmax,
97 Opt_acdirmin, Opt_acdirmax,
98 Opt_actimeo,
99 Opt_namelen,
100 Opt_mountport,
Chuck Levere887cbc2007-10-26 13:32:29 -0400101 Opt_mountvers,
Mike Sager3fd5be92009-04-01 09:21:48 -0400102 Opt_minorversion,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400103
104 /* Mount options that take string arguments */
Trond Myklebust0d71b052012-03-02 13:59:49 -0500105 Opt_nfsvers,
Chuck Lever33832032007-12-10 14:59:13 -0500106 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
Chuck Lever0ac83772007-09-11 18:01:04 -0400107 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400108 Opt_lookupcache,
David Howellsb797cac2009-04-03 16:42:48 +0100109 Opt_fscache_uniq,
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400110 Opt_local_lock,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400111
Chuck Leverf45663c2008-06-24 19:28:02 -0400112 /* Special mount options */
113 Opt_userspace, Opt_deprecated, Opt_sloppy,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400114
115 Opt_err
116};
117
Steven Whitehousea447c092008-10-13 10:46:57 +0100118static const match_table_t nfs_mount_option_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400119 { Opt_userspace, "bg" },
120 { Opt_userspace, "fg" },
Chuck Leverecbb3842008-06-12 12:37:33 -0400121 { Opt_userspace, "retry=%s" },
122
Chuck Leverf45663c2008-06-24 19:28:02 -0400123 { Opt_sloppy, "sloppy" },
124
Chuck Leverbf0fd762007-07-01 12:13:44 -0400125 { Opt_soft, "soft" },
126 { Opt_hard, "hard" },
Chuck Leverd33e4df2008-06-12 12:37:41 -0400127 { Opt_deprecated, "intr" },
128 { Opt_deprecated, "nointr" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400129 { Opt_posix, "posix" },
130 { Opt_noposix, "noposix" },
131 { Opt_cto, "cto" },
132 { Opt_nocto, "nocto" },
133 { Opt_ac, "ac" },
134 { Opt_noac, "noac" },
135 { Opt_lock, "lock" },
136 { Opt_nolock, "nolock" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400137 { Opt_udp, "udp" },
138 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400139 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400140 { Opt_acl, "acl" },
141 { Opt_noacl, "noacl" },
142 { Opt_rdirplus, "rdirplus" },
143 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400144 { Opt_sharecache, "sharecache" },
145 { Opt_nosharecache, "nosharecache" },
Chuck Leverd7403512008-12-23 15:21:37 -0500146 { Opt_resvport, "resvport" },
147 { Opt_noresvport, "noresvport" },
David Howellsb797cac2009-04-03 16:42:48 +0100148 { Opt_fscache, "fsc" },
David Howellsb797cac2009-04-03 16:42:48 +0100149 { Opt_nofscache, "nofsc" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400150
Chuck Levera5a16ba2009-06-17 18:02:14 -0700151 { Opt_port, "port=%s" },
152 { Opt_rsize, "rsize=%s" },
153 { Opt_wsize, "wsize=%s" },
154 { Opt_bsize, "bsize=%s" },
155 { Opt_timeo, "timeo=%s" },
156 { Opt_retrans, "retrans=%s" },
157 { Opt_acregmin, "acregmin=%s" },
158 { Opt_acregmax, "acregmax=%s" },
159 { Opt_acdirmin, "acdirmin=%s" },
160 { Opt_acdirmax, "acdirmax=%s" },
161 { Opt_actimeo, "actimeo=%s" },
162 { Opt_namelen, "namlen=%s" },
163 { Opt_mountport, "mountport=%s" },
164 { Opt_mountvers, "mountvers=%s" },
Trond Myklebust0d71b052012-03-02 13:59:49 -0500165 { Opt_minorversion, "minorversion=%s" },
166
Chuck Levera5a16ba2009-06-17 18:02:14 -0700167 { Opt_nfsvers, "nfsvers=%s" },
168 { Opt_nfsvers, "vers=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400169
170 { Opt_sec, "sec=%s" },
171 { Opt_proto, "proto=%s" },
172 { Opt_mountproto, "mountproto=%s" },
173 { Opt_addr, "addr=%s" },
174 { Opt_clientaddr, "clientaddr=%s" },
Chuck Lever33832032007-12-10 14:59:13 -0500175 { Opt_mounthost, "mounthost=%s" },
Chuck Lever0ac83772007-09-11 18:01:04 -0400176 { Opt_mountaddr, "mountaddr=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400177
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400178 { Opt_lookupcache, "lookupcache=%s" },
Chuck Levera6d5ff62010-05-07 13:33:58 -0400179 { Opt_fscache_uniq, "fsc=%s" },
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400180 { Opt_local_lock, "local_lock=%s" },
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400181
Trond Myklebust38622792012-03-02 14:06:39 -0500182 /* The following needs to be listed after all other options */
183 { Opt_nfsvers, "v%s" },
184
Chuck Leverbf0fd762007-07-01 12:13:44 -0400185 { Opt_err, NULL }
186};
187
188enum {
Jeff Laytonee671b02009-12-03 15:58:56 -0500189 Opt_xprt_udp, Opt_xprt_udp6, Opt_xprt_tcp, Opt_xprt_tcp6, Opt_xprt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400190
191 Opt_xprt_err
192};
193
Steven Whitehousea447c092008-10-13 10:46:57 +0100194static const match_table_t nfs_xprt_protocol_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400195 { Opt_xprt_udp, "udp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500196 { Opt_xprt_udp6, "udp6" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400197 { Opt_xprt_tcp, "tcp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500198 { Opt_xprt_tcp6, "tcp6" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400199 { Opt_xprt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400200
201 { Opt_xprt_err, NULL }
202};
203
204enum {
205 Opt_sec_none, Opt_sec_sys,
206 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
207 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
208 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
209
210 Opt_sec_err
211};
212
Steven Whitehousea447c092008-10-13 10:46:57 +0100213static const match_table_t nfs_secflavor_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400214 { Opt_sec_none, "none" },
215 { Opt_sec_none, "null" },
216 { Opt_sec_sys, "sys" },
217
218 { Opt_sec_krb5, "krb5" },
219 { Opt_sec_krb5i, "krb5i" },
220 { Opt_sec_krb5p, "krb5p" },
221
222 { Opt_sec_lkey, "lkey" },
223 { Opt_sec_lkeyi, "lkeyi" },
224 { Opt_sec_lkeyp, "lkeyp" },
225
Olga Kornievskaia8d042212008-02-13 16:47:06 -0500226 { Opt_sec_spkm, "spkm3" },
227 { Opt_sec_spkmi, "spkm3i" },
228 { Opt_sec_spkmp, "spkm3p" },
229
Chuck Leverbf0fd762007-07-01 12:13:44 -0400230 { Opt_sec_err, NULL }
231};
232
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400233enum {
234 Opt_lookupcache_all, Opt_lookupcache_positive,
235 Opt_lookupcache_none,
236
237 Opt_lookupcache_err
238};
239
240static match_table_t nfs_lookupcache_tokens = {
241 { Opt_lookupcache_all, "all" },
242 { Opt_lookupcache_positive, "pos" },
243 { Opt_lookupcache_positive, "positive" },
244 { Opt_lookupcache_none, "none" },
245
246 { Opt_lookupcache_err, NULL }
247};
248
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400249enum {
250 Opt_local_lock_all, Opt_local_lock_flock, Opt_local_lock_posix,
251 Opt_local_lock_none,
252
253 Opt_local_lock_err
254};
255
256static match_table_t nfs_local_lock_tokens = {
257 { Opt_local_lock_all, "all" },
258 { Opt_local_lock_flock, "flock" },
259 { Opt_local_lock_posix, "posix" },
260 { Opt_local_lock_none, "none" },
261
262 { Opt_local_lock_err, NULL }
263};
264
Trond Myklebust0d71b052012-03-02 13:59:49 -0500265enum {
266 Opt_vers_2, Opt_vers_3, Opt_vers_4, Opt_vers_4_0,
267 Opt_vers_4_1,
268
269 Opt_vers_err
270};
271
272static match_table_t nfs_vers_tokens = {
273 { Opt_vers_2, "2" },
274 { Opt_vers_3, "3" },
275 { Opt_vers_4, "4" },
276 { Opt_vers_4_0, "4.0" },
277 { Opt_vers_4_1, "4.1" },
278
279 { Opt_vers_err, NULL }
280};
Chuck Leverbf0fd762007-07-01 12:13:44 -0400281
Al Viro31f43472010-10-29 03:38:12 -0400282static struct dentry *nfs_xdev_mount(struct file_system_type *fs_type,
283 int flags, const char *dev_name, void *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400284
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400285struct file_system_type nfs_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400286 .owner = THIS_MODULE,
287 .name = "nfs",
Al Viro01194982011-03-16 07:25:36 -0400288 .mount = nfs_fs_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400289 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700290 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400291};
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400292EXPORT_SYMBOL_GPL(nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400293
David Howells54ceac42006-08-22 20:06:13 -0400294struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400295 .owner = THIS_MODULE,
296 .name = "nfs",
Al Viro31f43472010-10-29 03:38:12 -0400297 .mount = nfs_xdev_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400298 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700299 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400300};
301
Bryan Schumaker6a744902012-07-30 16:05:20 -0400302const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400303 .alloc_inode = nfs_alloc_inode,
304 .destroy_inode = nfs_destroy_inode,
305 .write_inode = nfs_write_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500306 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400307 .statfs = nfs_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400308 .evict_inode = nfs_evict_inode,
David Howellsf7b422b2006-06-09 09:34:33 -0400309 .umount_begin = nfs_umount_begin,
310 .show_options = nfs_show_options,
Al Viroc7f404b2011-03-16 06:59:40 -0400311 .show_devname = nfs_show_devname,
312 .show_path = nfs_show_path,
David Howellsf7b422b2006-06-09 09:34:33 -0400313 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400314 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400315};
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400316EXPORT_SYMBOL_GPL(nfs_sops);
David Howellsf7b422b2006-06-09 09:34:33 -0400317
318#ifdef CONFIG_NFS_V4
Bryan Schumakerb72e4f42012-05-10 15:07:40 -0400319static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *);
Bryan Schumakerd72c7272012-05-10 15:07:41 -0400320static int nfs4_validate_mount_data(void *options,
321 struct nfs_parsed_mount_data *args, const char *dev_name);
David Howellsf7b422b2006-06-09 09:34:33 -0400322#endif
323
Rusty Russell8e1f9362007-07-17 04:03:17 -0700324static struct shrinker acl_shrinker = {
325 .shrink = nfs_access_cache_shrinker,
326 .seeks = DEFAULT_SEEKS,
327};
Trond Myklebust979df722006-07-25 11:28:19 -0400328
David Howellsf7b422b2006-06-09 09:34:33 -0400329/*
330 * Register the NFS filesystems
331 */
332int __init register_nfs_fs(void)
333{
334 int ret;
335
336 ret = register_filesystem(&nfs_fs_type);
337 if (ret < 0)
338 goto error_0;
339
David Howellsf7b422b2006-06-09 09:34:33 -0400340 ret = nfs_register_sysctl();
341 if (ret < 0)
342 goto error_1;
Rusty Russell8e1f9362007-07-17 04:03:17 -0700343 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400344 return 0;
345
David Howellsf7b422b2006-06-09 09:34:33 -0400346error_1:
347 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400348error_0:
349 return ret;
350}
351
352/*
353 * Unregister the NFS filesystems
354 */
355void __exit unregister_nfs_fs(void)
356{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700357 unregister_shrinker(&acl_shrinker);
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700358 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400359 unregister_filesystem(&nfs_fs_type);
360}
361
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400362void nfs_sb_active(struct super_block *sb)
Steve Dicksonef818a22007-11-08 04:05:04 -0500363{
364 struct nfs_server *server = NFS_SB(sb);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400365
366 if (atomic_inc_return(&server->active) == 1)
367 atomic_inc(&sb->s_active);
368}
369
370void nfs_sb_deactive(struct super_block *sb)
371{
372 struct nfs_server *server = NFS_SB(sb);
373
374 if (atomic_dec_and_test(&server->active))
375 deactivate_super(sb);
Steve Dicksonef818a22007-11-08 04:05:04 -0500376}
377
David Howellsf7b422b2006-06-09 09:34:33 -0400378/*
379 * Deliver file system statistics to userspace
380 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400381int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400382{
David Howells0c7d90c2006-08-22 20:06:10 -0400383 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400384 unsigned char blockbits;
385 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400386 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400387 struct nfs_fsstat res;
388 int error = -ENOMEM;
389
390 res.fattr = nfs_alloc_fattr();
391 if (res.fattr == NULL)
392 goto out_err;
David Howellsf7b422b2006-06-09 09:34:33 -0400393
David Howells8fa5c002006-08-22 20:06:12 -0400394 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400395 if (unlikely(error == -ESTALE)) {
396 struct dentry *pd_dentry;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400397
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400398 pd_dentry = dget_parent(dentry);
399 if (pd_dentry != NULL) {
400 nfs_zap_caches(pd_dentry->d_inode);
401 dput(pd_dentry);
402 }
403 }
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400404 nfs_free_fattr(res.fattr);
David Howellsf7b422b2006-06-09 09:34:33 -0400405 if (error < 0)
406 goto out_err;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400407
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700408 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400409
410 /*
411 * Current versions of glibc do not correctly handle the
412 * case where f_frsize != f_bsize. Eventually we want to
413 * report the value of wtmult in this field.
414 */
David Howells0c7d90c2006-08-22 20:06:10 -0400415 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400416
417 /*
418 * On most *nix systems, f_blocks, f_bfree, and f_bavail
419 * are reported in units of f_frsize. Linux hasn't had
420 * an f_frsize field in its statfs struct until recently,
421 * thus historically Linux's sys_statfs reports these
422 * fields in units of f_bsize.
423 */
David Howells0c7d90c2006-08-22 20:06:10 -0400424 buf->f_bsize = dentry->d_sb->s_blocksize;
425 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400426 blockres = (1 << blockbits) - 1;
427 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
428 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
429 buf->f_bavail = (res.abytes + blockres) >> blockbits;
430
431 buf->f_files = res.tfiles;
432 buf->f_ffree = res.afiles;
433
434 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700435
David Howellsf7b422b2006-06-09 09:34:33 -0400436 return 0;
437
438 out_err:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700439 dprintk("%s: statfs error = %d\n", __func__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700440 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400441}
442
David Howells7d4e2742006-08-22 20:06:07 -0400443/*
444 * Map the security flavour number to a name
445 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400446static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
447{
David Howells7d4e2742006-08-22 20:06:07 -0400448 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400449 rpc_authflavor_t flavour;
450 const char *str;
451 } sec_flavours[] = {
452 { RPC_AUTH_NULL, "null" },
453 { RPC_AUTH_UNIX, "sys" },
454 { RPC_AUTH_GSS_KRB5, "krb5" },
455 { RPC_AUTH_GSS_KRB5I, "krb5i" },
456 { RPC_AUTH_GSS_KRB5P, "krb5p" },
457 { RPC_AUTH_GSS_LKEY, "lkey" },
458 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
459 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
460 { RPC_AUTH_GSS_SPKM, "spkm" },
461 { RPC_AUTH_GSS_SPKMI, "spkmi" },
462 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400463 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400464 };
465 int i;
466
Chuck Lever4d81cd12007-07-01 12:12:40 -0400467 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400468 if (sec_flavours[i].flavour == flavour)
469 break;
470 }
471 return sec_flavours[i].str;
472}
473
Jeff Laytonee671b02009-12-03 15:58:56 -0500474static void nfs_show_mountd_netid(struct seq_file *m, struct nfs_server *nfss,
475 int showdefaults)
476{
477 struct sockaddr *sap = (struct sockaddr *) &nfss->mountd_address;
478
479 seq_printf(m, ",mountproto=");
480 switch (sap->sa_family) {
481 case AF_INET:
482 switch (nfss->mountd_protocol) {
483 case IPPROTO_UDP:
484 seq_printf(m, RPCBIND_NETID_UDP);
485 break;
486 case IPPROTO_TCP:
487 seq_printf(m, RPCBIND_NETID_TCP);
488 break;
489 default:
490 if (showdefaults)
491 seq_printf(m, "auto");
492 }
493 break;
494 case AF_INET6:
495 switch (nfss->mountd_protocol) {
496 case IPPROTO_UDP:
497 seq_printf(m, RPCBIND_NETID_UDP6);
498 break;
499 case IPPROTO_TCP:
500 seq_printf(m, RPCBIND_NETID_TCP6);
501 break;
502 default:
503 if (showdefaults)
504 seq_printf(m, "auto");
505 }
506 break;
507 default:
508 if (showdefaults)
509 seq_printf(m, "auto");
510 }
511}
512
Chuck Lever82d101d2008-03-14 14:10:37 -0400513static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss,
514 int showdefaults)
515{
516 struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address;
517
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -0400518 if (nfss->flags & NFS_MOUNT_LEGACY_INTERFACE)
519 return;
520
Chuck Lever82d101d2008-03-14 14:10:37 -0400521 switch (sap->sa_family) {
522 case AF_INET: {
523 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
Harvey Harrisonbe859402008-10-31 00:56:28 -0700524 seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400525 break;
526 }
527 case AF_INET6: {
528 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
Chuck Leverd250e192009-12-03 15:58:56 -0500529 seq_printf(m, ",mountaddr=%pI6c", &sin6->sin6_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400530 break;
531 }
532 default:
533 if (showdefaults)
534 seq_printf(m, ",mountaddr=unspecified");
535 }
536
537 if (nfss->mountd_version || showdefaults)
538 seq_printf(m, ",mountvers=%u", nfss->mountd_version);
Stanislav Kinsburskyaa699472010-12-08 12:40:13 +0300539 if ((nfss->mountd_port &&
540 nfss->mountd_port != (unsigned short)NFS_UNSPEC_PORT) ||
541 showdefaults)
Chuck Lever82d101d2008-03-14 14:10:37 -0400542 seq_printf(m, ",mountport=%u", nfss->mountd_port);
543
Jeff Laytonee671b02009-12-03 15:58:56 -0500544 nfs_show_mountd_netid(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400545}
546
Trond Myklebust0be81892010-06-18 12:23:58 -0400547#ifdef CONFIG_NFS_V4
548static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
549 int showdefaults)
550{
551 struct nfs_client *clp = nfss->nfs_client;
552
553 seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr);
Trond Myklebust0be81892010-06-18 12:23:58 -0400554}
555#else
556static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
557 int showdefaults)
558{
559}
560#endif
561
Trond Myklebust7bbceb62012-03-02 14:00:20 -0500562static void nfs_show_nfs_version(struct seq_file *m,
563 unsigned int version,
564 unsigned int minorversion)
565{
566 seq_printf(m, ",vers=%u", version);
567 if (version == 4)
568 seq_printf(m, ".%u", minorversion);
569}
570
David Howellsf7b422b2006-06-09 09:34:33 -0400571/*
572 * Describe the mount options in force on this server representation
573 */
Chuck Lever82d101d2008-03-14 14:10:37 -0400574static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
575 int showdefaults)
David Howellsf7b422b2006-06-09 09:34:33 -0400576{
David Howells509de812006-08-22 20:06:11 -0400577 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400578 int flag;
David Howells509de812006-08-22 20:06:11 -0400579 const char *str;
580 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400581 } nfs_info[] = {
582 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Lever82d101d2008-03-14 14:10:37 -0400583 { NFS_MOUNT_POSIX, ",posix", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400584 { NFS_MOUNT_NOCTO, ",nocto", "" },
585 { NFS_MOUNT_NOAC, ",noac", "" },
586 { NFS_MOUNT_NONLM, ",nolock", "" },
587 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400588 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Chuck Leverd7403512008-12-23 15:21:37 -0500589 { NFS_MOUNT_UNSHARED, ",nosharecache", "" },
590 { NFS_MOUNT_NORESVPORT, ",noresvport", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400591 { 0, NULL, NULL }
592 };
David Howells509de812006-08-22 20:06:11 -0400593 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400594 struct nfs_client *clp = nfss->nfs_client;
Chuck Lever82d101d2008-03-14 14:10:37 -0400595 u32 version = clp->rpc_ops->version;
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400596 int local_flock, local_fcntl;
David Howellsf7b422b2006-06-09 09:34:33 -0400597
Trond Myklebust7bbceb62012-03-02 14:00:20 -0500598 nfs_show_nfs_version(m, version, clp->cl_minorversion);
Chuck Lever2d767432008-03-14 14:10:08 -0400599 seq_printf(m, ",rsize=%u", nfss->rsize);
600 seq_printf(m, ",wsize=%u", nfss->wsize);
Chuck Lever82d101d2008-03-14 14:10:37 -0400601 if (nfss->bsize != 0)
602 seq_printf(m, ",bsize=%u", nfss->bsize);
603 seq_printf(m, ",namlen=%u", nfss->namelen);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400604 if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400605 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400606 if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400607 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400608 if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400609 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400610 if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400611 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400612 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
613 if (nfss->flags & nfs_infop->flag)
614 seq_puts(m, nfs_infop->str);
615 else
616 seq_puts(m, nfs_infop->nostr);
617 }
Trond Myklebust2446ab62012-03-01 17:00:56 -0500618 rcu_read_lock();
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400619 seq_printf(m, ",proto=%s",
Jeff Laytonee671b02009-12-03 15:58:56 -0500620 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_NETID));
Trond Myklebust2446ab62012-03-01 17:00:56 -0500621 rcu_read_unlock();
Chuck Lever82d101d2008-03-14 14:10:37 -0400622 if (version == 4) {
623 if (nfss->port != NFS_PORT)
624 seq_printf(m, ",port=%u", nfss->port);
625 } else
626 if (nfss->port)
627 seq_printf(m, ",port=%u", nfss->port);
628
Trond Myklebust33170232007-12-20 16:03:59 -0500629 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
630 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
Trond Myklebust81039f12006-06-09 09:34:34 -0400631 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
Chuck Lever82d101d2008-03-14 14:10:37 -0400632
633 if (version != 4)
634 nfs_show_mountd_options(m, nfss, showdefaults);
Trond Myklebust0be81892010-06-18 12:23:58 -0400635 else
636 nfs_show_nfsv4_options(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400637
David Howellsb797cac2009-04-03 16:42:48 +0100638 if (nfss->options & NFS_OPTION_FSCACHE)
639 seq_printf(m, ",fsc");
Patrick J. LoPresti9b00c642010-08-10 17:28:01 -0400640
641 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) {
642 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
643 seq_printf(m, ",lookupcache=none");
644 else
645 seq_printf(m, ",lookupcache=pos");
646 }
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400647
648 local_flock = nfss->flags & NFS_MOUNT_LOCAL_FLOCK;
649 local_fcntl = nfss->flags & NFS_MOUNT_LOCAL_FCNTL;
650
651 if (!local_flock && !local_fcntl)
652 seq_printf(m, ",local_lock=none");
653 else if (local_flock && local_fcntl)
654 seq_printf(m, ",local_lock=all");
655 else if (local_flock)
656 seq_printf(m, ",local_lock=flock");
657 else
658 seq_printf(m, ",local_lock=posix");
David Howellsf7b422b2006-06-09 09:34:33 -0400659}
660
661/*
662 * Describe the mount options on this VFS mountpoint
663 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400664int nfs_show_options(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400665{
Al Viro34c80b12011-12-08 21:32:45 -0500666 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400667
668 nfs_show_mount_options(m, nfss, 0);
669
Trond Myklebust2446ab62012-03-01 17:00:56 -0500670 rcu_read_lock();
Chuck Lever5d8515c2007-12-10 14:57:16 -0500671 seq_printf(m, ",addr=%s",
672 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
673 RPC_DISPLAY_ADDR));
Trond Myklebust2446ab62012-03-01 17:00:56 -0500674 rcu_read_unlock();
David Howellsf7b422b2006-06-09 09:34:33 -0400675
676 return 0;
677}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700678
679#ifdef CONFIG_NFS_V4
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300680#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700681static void show_sessions(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300682{
683 if (nfs4_has_session(server->nfs_client))
684 seq_printf(m, ",sessions");
685}
686#else
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700687static void show_sessions(struct seq_file *m, struct nfs_server *server) {}
688#endif
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300689#endif
690
691#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700692static void show_pnfs(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300693{
694 seq_printf(m, ",pnfs=");
695 if (server->pnfs_curr_ld)
696 seq_printf(m, "%s", server->pnfs_curr_ld->name);
697 else
698 seq_printf(m, "not configured");
699}
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500700
701static void show_implementation_id(struct seq_file *m, struct nfs_server *nfss)
702{
Chuck Lever59155542012-05-21 22:44:41 -0400703 if (nfss->nfs_client && nfss->nfs_client->cl_implid) {
704 struct nfs41_impl_id *impl_id = nfss->nfs_client->cl_implid;
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500705 seq_printf(m, "\n\timpl_id:\tname='%s',domain='%s',"
706 "date='%llu,%u'",
707 impl_id->name, impl_id->domain,
708 impl_id->date.seconds, impl_id->date.nseconds);
709 }
710}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700711#else
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500712#ifdef CONFIG_NFS_V4
713static void show_pnfs(struct seq_file *m, struct nfs_server *server)
714{
715}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700716#endif
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500717static void show_implementation_id(struct seq_file *m, struct nfs_server *nfss)
718{
719}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700720#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400721
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400722int nfs_show_devname(struct seq_file *m, struct dentry *root)
Al Viroc7f404b2011-03-16 06:59:40 -0400723{
724 char *page = (char *) __get_free_page(GFP_KERNEL);
725 char *devname, *dummy;
726 int err = 0;
727 if (!page)
728 return -ENOMEM;
Al Virod861c632011-12-08 21:32:45 -0500729 devname = nfs_path(&dummy, root, page, PAGE_SIZE);
Al Viroc7f404b2011-03-16 06:59:40 -0400730 if (IS_ERR(devname))
731 err = PTR_ERR(devname);
732 else
733 seq_escape(m, devname, " \t\n\\");
734 free_page((unsigned long)page);
735 return err;
736}
737
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400738int nfs_show_path(struct seq_file *m, struct dentry *dentry)
Al Viroc7f404b2011-03-16 06:59:40 -0400739{
740 seq_puts(m, "/");
741 return 0;
742}
743
David Howellsf7b422b2006-06-09 09:34:33 -0400744/*
745 * Present statistical information for this VFS mountpoint
746 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400747int nfs_show_stats(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400748{
749 int i, cpu;
Al Viro64132372011-12-08 20:51:13 -0500750 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400751 struct rpc_auth *auth = nfss->client->cl_auth;
752 struct nfs_iostats totals = { };
753
754 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
755
756 /*
757 * Display all mount option settings
758 */
759 seq_printf(m, "\n\topts:\t");
Al Viro64132372011-12-08 20:51:13 -0500760 seq_puts(m, root->d_sb->s_flags & MS_RDONLY ? "ro" : "rw");
761 seq_puts(m, root->d_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
762 seq_puts(m, root->d_sb->s_flags & MS_NOATIME ? ",noatime" : "");
763 seq_puts(m, root->d_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
David Howellsf7b422b2006-06-09 09:34:33 -0400764 nfs_show_mount_options(m, nfss, 1);
765
766 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
767
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500768 show_implementation_id(m, nfss);
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500769
David Howellsf7b422b2006-06-09 09:34:33 -0400770 seq_printf(m, "\n\tcaps:\t");
771 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400772 seq_printf(m, ",wtmult=%u", nfss->wtmult);
773 seq_printf(m, ",dtsize=%u", nfss->dtsize);
774 seq_printf(m, ",bsize=%u", nfss->bsize);
775 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400776
777#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500778 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400779 seq_printf(m, "\n\tnfsv4:\t");
780 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
781 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
782 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300783 show_sessions(m, nfss);
784 show_pnfs(m, nfss);
David Howellsf7b422b2006-06-09 09:34:33 -0400785 }
786#endif
787
788 /*
789 * Display security flavor in effect for this mount
790 */
Chuck Lever2d767432008-03-14 14:10:08 -0400791 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400792 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400793 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400794
795 /*
796 * Display superblock I/O counters
797 */
798 for_each_possible_cpu(cpu) {
799 struct nfs_iostats *stats;
800
801 preempt_disable();
802 stats = per_cpu_ptr(nfss->io_stats, cpu);
803
804 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
805 totals.events[i] += stats->events[i];
806 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
807 totals.bytes[i] += stats->bytes[i];
David Howells6a510912009-04-03 16:42:43 +0100808#ifdef CONFIG_NFS_FSCACHE
809 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
810 totals.fscache[i] += stats->fscache[i];
811#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400812
813 preempt_enable();
814 }
815
816 seq_printf(m, "\n\tevents:\t");
817 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
818 seq_printf(m, "%lu ", totals.events[i]);
819 seq_printf(m, "\n\tbytes:\t");
820 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
821 seq_printf(m, "%Lu ", totals.bytes[i]);
David Howells6a510912009-04-03 16:42:43 +0100822#ifdef CONFIG_NFS_FSCACHE
823 if (nfss->options & NFS_OPTION_FSCACHE) {
824 seq_printf(m, "\n\tfsc:\t");
825 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
826 seq_printf(m, "%Lu ", totals.bytes[i]);
827 }
828#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400829 seq_printf(m, "\n");
830
831 rpc_print_iostats(m, nfss->client);
832
833 return 0;
834}
835
836/*
837 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400838 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400839 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400840void nfs_umount_begin(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -0400841{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200842 struct nfs_server *server;
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400843 struct rpc_clnt *rpc;
844
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200845 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400846 /* -EIO all pending I/O */
847 rpc = server->client_acl;
848 if (!IS_ERR(rpc))
849 rpc_killall_tasks(rpc);
850 rpc = server->client;
851 if (!IS_ERR(rpc))
852 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400853}
854
Bryan Schumakerdb833352012-05-10 15:07:38 -0400855static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(void)
Chuck Lever9423a082009-09-23 14:36:38 -0400856{
857 struct nfs_parsed_mount_data *data;
858
859 data = kzalloc(sizeof(*data), GFP_KERNEL);
860 if (data) {
Chuck Lever9423a082009-09-23 14:36:38 -0400861 data->acregmin = NFS_DEF_ACREGMIN;
862 data->acregmax = NFS_DEF_ACREGMAX;
863 data->acdirmin = NFS_DEF_ACDIRMIN;
864 data->acdirmax = NFS_DEF_ACDIRMAX;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400865 data->mount_server.port = NFS_UNSPEC_PORT;
Chuck Lever9423a082009-09-23 14:36:38 -0400866 data->nfs_server.port = NFS_UNSPEC_PORT;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400867 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Lever9423a082009-09-23 14:36:38 -0400868 data->auth_flavors[0] = RPC_AUTH_UNIX;
869 data->auth_flavor_len = 1;
870 data->minorversion = 0;
Bryan Schumakerb72e4f42012-05-10 15:07:40 -0400871 data->need_mount = true;
Trond Myklebust9937347a2012-02-19 08:44:07 +0100872 data->net = current->nsproxy->net_ns;
Jeff Layton8a0d5512011-12-20 06:57:45 -0500873 security_init_mnt_opts(&data->lsm_opts);
Chuck Lever9423a082009-09-23 14:36:38 -0400874 }
875 return data;
876}
877
Jeff Layton8a0d5512011-12-20 06:57:45 -0500878static void nfs_free_parsed_mount_data(struct nfs_parsed_mount_data *data)
879{
880 if (data) {
881 kfree(data->client_address);
882 kfree(data->mount_server.hostname);
883 kfree(data->nfs_server.export_path);
884 kfree(data->nfs_server.hostname);
885 kfree(data->fscache_uniq);
886 security_free_mnt_opts(&data->lsm_opts);
887 kfree(data);
888 }
889}
890
David Howellsf7b422b2006-06-09 09:34:33 -0400891/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500892 * Sanity-check a server address provided by the mount command.
893 *
894 * Address family must be initialized, and address must not be
895 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400896 */
897static int nfs_verify_server_address(struct sockaddr *addr)
898{
899 switch (addr->sa_family) {
900 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500901 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700902 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500903 }
904 case AF_INET6: {
905 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
906 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400907 }
908 }
909
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400910 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400911 return 0;
912}
913
Chuck Lever9412b922007-12-10 14:59:21 -0500914/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400915 * Select between a default port value and a user-specified port value.
916 * If a zero value is set, then autobind will be used.
917 */
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400918static void nfs_set_port(struct sockaddr *sap, int *port,
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400919 const unsigned short default_port)
920{
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400921 if (*port == NFS_UNSPEC_PORT)
922 *port = default_port;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400923
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400924 rpc_set_port(sap, *port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400925}
926
927/*
Trond Myklebust259875e2008-07-02 14:43:47 -0400928 * Sanity check the NFS transport protocol.
929 *
930 */
931static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
932{
933 switch (mnt->nfs_server.protocol) {
934 case XPRT_TRANSPORT_UDP:
935 case XPRT_TRANSPORT_TCP:
936 case XPRT_TRANSPORT_RDMA:
937 break;
938 default:
939 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
940 }
941}
942
943/*
944 * For text based NFSv2/v3 mounts, the mount protocol transport default
945 * settings should depend upon the specified NFS transport.
946 */
947static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
948{
949 nfs_validate_transport_protocol(mnt);
950
951 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
952 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
953 return;
954 switch (mnt->nfs_server.protocol) {
955 case XPRT_TRANSPORT_UDP:
956 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
957 break;
958 case XPRT_TRANSPORT_TCP:
959 case XPRT_TRANSPORT_RDMA:
960 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
961 }
962}
963
964/*
Chuck Lever01060c82008-06-24 16:33:38 -0400965 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -0400966 */
967static int nfs_parse_security_flavors(char *value,
968 struct nfs_parsed_mount_data *mnt)
969{
970 substring_t args[MAX_OPT_ARGS];
971
972 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
973
974 switch (match_token(value, nfs_secflavor_tokens, args)) {
975 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -0400976 mnt->auth_flavors[0] = RPC_AUTH_NULL;
977 break;
978 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -0400979 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
980 break;
981 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -0400982 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
983 break;
984 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -0400985 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
986 break;
987 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -0400988 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
989 break;
990 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -0400991 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
992 break;
993 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -0400994 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
995 break;
996 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -0400997 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
998 break;
999 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -04001000 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
1001 break;
1002 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -04001003 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
1004 break;
1005 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -04001006 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
1007 break;
1008 default:
1009 return 0;
1010 }
1011
Bryan Schumaker9b7160c2011-04-13 14:31:30 -04001012 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
Chuck Lever059f90b2009-08-09 15:09:31 -04001013 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -04001014 return 1;
1015}
1016
Trond Myklebust0d71b052012-03-02 13:59:49 -05001017static int nfs_parse_version_string(char *string,
1018 struct nfs_parsed_mount_data *mnt,
1019 substring_t *args)
1020{
1021 mnt->flags &= ~NFS_MOUNT_VER3;
1022 switch (match_token(string, nfs_vers_tokens, args)) {
1023 case Opt_vers_2:
1024 mnt->version = 2;
1025 break;
1026 case Opt_vers_3:
1027 mnt->flags |= NFS_MOUNT_VER3;
1028 mnt->version = 3;
1029 break;
1030 case Opt_vers_4:
1031 /* Backward compatibility option. In future,
1032 * the mount program should always supply
1033 * a NFSv4 minor version number.
1034 */
1035 mnt->version = 4;
1036 break;
1037 case Opt_vers_4_0:
1038 mnt->version = 4;
1039 mnt->minorversion = 0;
1040 break;
1041 case Opt_vers_4_1:
1042 mnt->version = 4;
1043 mnt->minorversion = 1;
1044 break;
1045 default:
1046 return 0;
1047 }
1048 return 1;
1049}
1050
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001051static int nfs_get_option_str(substring_t args[], char **option)
1052{
1053 kfree(*option);
1054 *option = match_strdup(args);
1055 return !option;
1056}
1057
1058static int nfs_get_option_ul(substring_t args[], unsigned long *option)
1059{
1060 int rc;
1061 char *string;
1062
1063 string = match_strdup(args);
1064 if (string == NULL)
1065 return -ENOMEM;
1066 rc = strict_strtoul(string, 10, option);
1067 kfree(string);
1068
1069 return rc;
1070}
1071
Chuck Lever01060c82008-06-24 16:33:38 -04001072/*
Chuck Leverbf0fd762007-07-01 12:13:44 -04001073 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -04001074 * a data structure. The whole mount string is processed; bad options are
1075 * skipped as they are encountered. If there were no errors, return 1;
1076 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -04001077 */
1078static int nfs_parse_mount_options(char *raw,
1079 struct nfs_parsed_mount_data *mnt)
1080{
Eric Parisf9c3a382008-03-05 14:20:18 -05001081 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001082 int rc, sloppy = 0, invalid_option = 0;
Jeff Laytonee671b02009-12-03 15:58:56 -05001083 unsigned short protofamily = AF_UNSPEC;
1084 unsigned short mountfamily = AF_UNSPEC;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001085
1086 if (!raw) {
1087 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
1088 return 1;
1089 }
1090 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
1091
Eric Parisf9c3a382008-03-05 14:20:18 -05001092 secdata = alloc_secdata();
1093 if (!secdata)
1094 goto out_nomem;
1095
1096 rc = security_sb_copy_data(raw, secdata);
1097 if (rc)
1098 goto out_security_failure;
1099
1100 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
1101 if (rc)
1102 goto out_security_failure;
1103
1104 free_secdata(secdata);
1105
Chuck Leverbf0fd762007-07-01 12:13:44 -04001106 while ((p = strsep(&raw, ",")) != NULL) {
1107 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -07001108 unsigned long option;
1109 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001110
1111 if (!*p)
1112 continue;
1113
1114 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
1115
1116 token = match_token(p, nfs_mount_option_tokens, args);
1117 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001118
1119 /*
1120 * boolean options: foo/nofoo
1121 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001122 case Opt_soft:
1123 mnt->flags |= NFS_MOUNT_SOFT;
1124 break;
1125 case Opt_hard:
1126 mnt->flags &= ~NFS_MOUNT_SOFT;
1127 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001128 case Opt_posix:
1129 mnt->flags |= NFS_MOUNT_POSIX;
1130 break;
1131 case Opt_noposix:
1132 mnt->flags &= ~NFS_MOUNT_POSIX;
1133 break;
1134 case Opt_cto:
1135 mnt->flags &= ~NFS_MOUNT_NOCTO;
1136 break;
1137 case Opt_nocto:
1138 mnt->flags |= NFS_MOUNT_NOCTO;
1139 break;
1140 case Opt_ac:
1141 mnt->flags &= ~NFS_MOUNT_NOAC;
1142 break;
1143 case Opt_noac:
1144 mnt->flags |= NFS_MOUNT_NOAC;
1145 break;
1146 case Opt_lock:
1147 mnt->flags &= ~NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001148 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1149 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001150 break;
1151 case Opt_nolock:
1152 mnt->flags |= NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001153 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1154 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001155 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001156 case Opt_udp:
1157 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001158 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001159 break;
1160 case Opt_tcp:
1161 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001162 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001163 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001164 case Opt_rdma:
1165 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
1166 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001167 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001168 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001169 case Opt_acl:
1170 mnt->flags &= ~NFS_MOUNT_NOACL;
1171 break;
1172 case Opt_noacl:
1173 mnt->flags |= NFS_MOUNT_NOACL;
1174 break;
1175 case Opt_rdirplus:
1176 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
1177 break;
1178 case Opt_nordirplus:
1179 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
1180 break;
Trond Myklebust75180df2007-05-16 16:53:28 -04001181 case Opt_sharecache:
1182 mnt->flags &= ~NFS_MOUNT_UNSHARED;
1183 break;
1184 case Opt_nosharecache:
1185 mnt->flags |= NFS_MOUNT_UNSHARED;
1186 break;
Chuck Leverd7403512008-12-23 15:21:37 -05001187 case Opt_resvport:
1188 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1189 break;
1190 case Opt_noresvport:
1191 mnt->flags |= NFS_MOUNT_NORESVPORT;
1192 break;
David Howellsb797cac2009-04-03 16:42:48 +01001193 case Opt_fscache:
1194 mnt->options |= NFS_OPTION_FSCACHE;
1195 kfree(mnt->fscache_uniq);
1196 mnt->fscache_uniq = NULL;
1197 break;
1198 case Opt_nofscache:
1199 mnt->options &= ~NFS_OPTION_FSCACHE;
1200 kfree(mnt->fscache_uniq);
1201 mnt->fscache_uniq = NULL;
1202 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001203
Chuck Leverf45663c2008-06-24 19:28:02 -04001204 /*
1205 * options that take numeric values
1206 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001207 case Opt_port:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001208 if (nfs_get_option_ul(args, &option) ||
1209 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001210 goto out_invalid_value;
1211 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001212 break;
1213 case Opt_rsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001214 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001215 goto out_invalid_value;
1216 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001217 break;
1218 case Opt_wsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001219 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001220 goto out_invalid_value;
1221 mnt->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001222 break;
1223 case Opt_bsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001224 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001225 goto out_invalid_value;
1226 mnt->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001227 break;
1228 case Opt_timeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001229 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001230 goto out_invalid_value;
1231 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001232 break;
1233 case Opt_retrans:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001234 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001235 goto out_invalid_value;
1236 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001237 break;
1238 case Opt_acregmin:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001239 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001240 goto out_invalid_value;
1241 mnt->acregmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001242 break;
1243 case Opt_acregmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001244 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001245 goto out_invalid_value;
1246 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001247 break;
1248 case Opt_acdirmin:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001249 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001250 goto out_invalid_value;
1251 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001252 break;
1253 case Opt_acdirmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001254 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001255 goto out_invalid_value;
1256 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001257 break;
1258 case Opt_actimeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001259 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001260 goto out_invalid_value;
1261 mnt->acregmin = mnt->acregmax =
1262 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001263 break;
1264 case Opt_namelen:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001265 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001266 goto out_invalid_value;
1267 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001268 break;
1269 case Opt_mountport:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001270 if (nfs_get_option_ul(args, &option) ||
1271 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001272 goto out_invalid_value;
1273 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001274 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001275 case Opt_mountvers:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001276 if (nfs_get_option_ul(args, &option) ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001277 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001278 option > NFS_MNT3_VERSION)
1279 goto out_invalid_value;
1280 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001281 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001282 case Opt_minorversion:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001283 if (nfs_get_option_ul(args, &option))
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001284 goto out_invalid_value;
1285 if (option > NFS4_MAX_MINOR_VERSION)
1286 goto out_invalid_value;
1287 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001288 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001289
Chuck Leverf45663c2008-06-24 19:28:02 -04001290 /*
1291 * options that take text values
1292 */
Trond Myklebust0d71b052012-03-02 13:59:49 -05001293 case Opt_nfsvers:
1294 string = match_strdup(args);
1295 if (string == NULL)
1296 goto out_nomem;
1297 rc = nfs_parse_version_string(string, mnt, args);
1298 kfree(string);
1299 if (!rc)
1300 goto out_invalid_value;
1301 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001302 case Opt_sec:
1303 string = match_strdup(args);
1304 if (string == NULL)
1305 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001306 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001307 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001308 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001309 dfprintk(MOUNT, "NFS: unrecognized "
1310 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001311 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001312 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001313 break;
1314 case Opt_proto:
1315 string = match_strdup(args);
1316 if (string == NULL)
1317 goto out_nomem;
1318 token = match_token(string,
1319 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001320
Jeff Laytonee671b02009-12-03 15:58:56 -05001321 protofamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001322 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001323 case Opt_xprt_udp6:
1324 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001325 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001326 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001327 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001328 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001329 case Opt_xprt_tcp6:
1330 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001331 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001332 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001333 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001334 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001335 case Opt_xprt_rdma:
1336 /* vector side protocols to TCP */
1337 mnt->flags |= NFS_MOUNT_TCP;
1338 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001339 xprt_load_transport(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001340 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001341 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001342 dfprintk(MOUNT, "NFS: unrecognized "
1343 "transport protocol\n");
Yinghai Lu4223a4a2009-10-20 14:13:46 +09001344 kfree(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001345 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001346 }
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001347 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001348 break;
1349 case Opt_mountproto:
1350 string = match_strdup(args);
1351 if (string == NULL)
1352 goto out_nomem;
1353 token = match_token(string,
1354 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001355 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001356
Jeff Laytonee671b02009-12-03 15:58:56 -05001357 mountfamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001358 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001359 case Opt_xprt_udp6:
1360 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001361 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001362 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001363 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001364 case Opt_xprt_tcp6:
1365 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001366 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001367 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001368 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001369 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001370 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001371 dfprintk(MOUNT, "NFS: unrecognized "
1372 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001373 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001374 }
1375 break;
1376 case Opt_addr:
1377 string = match_strdup(args);
1378 if (string == NULL)
1379 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001380 mnt->nfs_server.addrlen =
Stanislav Kinsburskyb48e1272012-01-26 15:11:57 +04001381 rpc_pton(mnt->net, string, strlen(string),
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001382 (struct sockaddr *)
1383 &mnt->nfs_server.address,
1384 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001385 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001386 if (mnt->nfs_server.addrlen == 0)
1387 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001388 break;
1389 case Opt_clientaddr:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001390 if (nfs_get_option_str(args, &mnt->client_address))
Chuck Leverbf0fd762007-07-01 12:13:44 -04001391 goto out_nomem;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001392 break;
Chuck Lever33832032007-12-10 14:59:13 -05001393 case Opt_mounthost:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001394 if (nfs_get_option_str(args,
1395 &mnt->mount_server.hostname))
Chuck Lever33832032007-12-10 14:59:13 -05001396 goto out_nomem;
Chuck Lever33832032007-12-10 14:59:13 -05001397 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001398 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001399 string = match_strdup(args);
1400 if (string == NULL)
1401 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001402 mnt->mount_server.addrlen =
Stanislav Kinsburskyb48e1272012-01-26 15:11:57 +04001403 rpc_pton(mnt->net, string, strlen(string),
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001404 (struct sockaddr *)
1405 &mnt->mount_server.address,
1406 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001407 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001408 if (mnt->mount_server.addrlen == 0)
1409 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001410 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001411 case Opt_lookupcache:
1412 string = match_strdup(args);
1413 if (string == NULL)
1414 goto out_nomem;
1415 token = match_token(string,
1416 nfs_lookupcache_tokens, args);
1417 kfree(string);
1418 switch (token) {
1419 case Opt_lookupcache_all:
1420 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1421 break;
1422 case Opt_lookupcache_positive:
1423 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1424 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1425 break;
1426 case Opt_lookupcache_none:
1427 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1428 break;
1429 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001430 dfprintk(MOUNT, "NFS: invalid "
1431 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001432 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001433 };
1434 break;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001435 case Opt_fscache_uniq:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001436 if (nfs_get_option_str(args, &mnt->fscache_uniq))
Chuck Levera6d5ff62010-05-07 13:33:58 -04001437 goto out_nomem;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001438 mnt->options |= NFS_OPTION_FSCACHE;
1439 break;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001440 case Opt_local_lock:
1441 string = match_strdup(args);
1442 if (string == NULL)
1443 goto out_nomem;
1444 token = match_token(string, nfs_local_lock_tokens,
1445 args);
1446 kfree(string);
1447 switch (token) {
1448 case Opt_local_lock_all:
1449 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1450 NFS_MOUNT_LOCAL_FCNTL);
1451 break;
1452 case Opt_local_lock_flock:
1453 mnt->flags |= NFS_MOUNT_LOCAL_FLOCK;
1454 break;
1455 case Opt_local_lock_posix:
1456 mnt->flags |= NFS_MOUNT_LOCAL_FCNTL;
1457 break;
1458 case Opt_local_lock_none:
1459 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1460 NFS_MOUNT_LOCAL_FCNTL);
1461 break;
1462 default:
1463 dfprintk(MOUNT, "NFS: invalid "
1464 "local_lock argument\n");
1465 return 0;
1466 };
1467 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001468
Chuck Leverf45663c2008-06-24 19:28:02 -04001469 /*
1470 * Special options
1471 */
1472 case Opt_sloppy:
1473 sloppy = 1;
1474 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1475 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001476 case Opt_userspace:
1477 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001478 dfprintk(MOUNT, "NFS: ignoring mount option "
1479 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001480 break;
1481
1482 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001483 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001484 dfprintk(MOUNT, "NFS: unrecognized mount option "
1485 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001486 }
1487 }
1488
Chuck Leverd23c45f2009-06-17 18:02:13 -07001489 if (!sloppy && invalid_option)
1490 return 0;
1491
Weston Andros Adamson571b7552012-02-01 14:06:41 -05001492 if (mnt->minorversion && mnt->version != 4)
1493 goto out_minorversion_mismatch;
1494
Jeff Laytonee671b02009-12-03 15:58:56 -05001495 /*
1496 * verify that any proto=/mountproto= options match the address
1497 * familiies in the addr=/mountaddr= options.
1498 */
1499 if (protofamily != AF_UNSPEC &&
1500 protofamily != mnt->nfs_server.address.ss_family)
1501 goto out_proto_mismatch;
1502
1503 if (mountfamily != AF_UNSPEC) {
1504 if (mnt->mount_server.addrlen) {
1505 if (mountfamily != mnt->mount_server.address.ss_family)
1506 goto out_mountproto_mismatch;
1507 } else {
1508 if (mountfamily != mnt->nfs_server.address.ss_family)
1509 goto out_mountproto_mismatch;
1510 }
1511 }
1512
Chuck Leverbf0fd762007-07-01 12:13:44 -04001513 return 1;
1514
Jeff Laytonee671b02009-12-03 15:58:56 -05001515out_mountproto_mismatch:
1516 printk(KERN_INFO "NFS: mount server address does not match mountproto= "
1517 "option\n");
1518 return 0;
1519out_proto_mismatch:
1520 printk(KERN_INFO "NFS: server address does not match proto= option\n");
1521 return 0;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001522out_invalid_address:
1523 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1524 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001525out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001526 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001527 return 0;
Weston Andros Adamson571b7552012-02-01 14:06:41 -05001528out_minorversion_mismatch:
1529 printk(KERN_INFO "NFS: mount option vers=%u does not support "
1530 "minorversion=%u\n", mnt->version, mnt->minorversion);
1531 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001532out_nomem:
1533 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1534 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001535out_security_failure:
1536 free_secdata(secdata);
1537 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1538 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001539}
1540
1541/*
Chuck Leverec88f282009-08-09 15:09:32 -04001542 * Match the requested auth flavors with the list returned by
1543 * the server. Returns zero and sets the mount's authentication
1544 * flavor on success; returns -EACCES if server does not support
1545 * the requested flavor.
1546 */
1547static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1548 struct nfs_mount_request *request)
1549{
1550 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1551
1552 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001553 * Certain releases of Linux's mountd return an empty
1554 * flavor list. To prevent behavioral regression with
1555 * these servers (ie. rejecting mounts that used to
1556 * succeed), revert to pre-2.6.32 behavior (no checking)
1557 * if the returned flavor list is empty.
1558 */
1559 if (server_authlist_len == 0)
1560 return 0;
1561
1562 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001563 * We avoid sophisticated negotiating here, as there are
1564 * plenty of cases where we can get it wrong, providing
1565 * either too little or too much security.
1566 *
1567 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1568 * flavor listed first. However, some servers list
1569 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1570 * preferred default, in args->auth_flavors[0] if user
1571 * didn't specify sec= mount option.
1572 */
1573 for (i = 0; i < args->auth_flavor_len; i++)
1574 for (j = 0; j < server_authlist_len; j++)
1575 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1576 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1577 request->auth_flavs[j]);
1578 args->auth_flavors[0] = request->auth_flavs[j];
1579 return 0;
1580 }
1581
1582 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1583 nfs_umount(request);
1584 return -EACCES;
1585}
1586
1587/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001588 * Use the remote server's MOUNT service to request the NFS file handle
1589 * corresponding to the provided path.
1590 */
Bryan Schumaker486aa692012-05-10 15:07:39 -04001591static int nfs_request_mount(struct nfs_parsed_mount_data *args,
1592 struct nfs_fh *root_fh)
Chuck Lever0076d7b2007-07-01 12:13:49 -04001593{
Chuck Leverec88f282009-08-09 15:09:32 -04001594 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1595 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001596 struct nfs_mount_request request = {
1597 .sap = (struct sockaddr *)
1598 &args->mount_server.address,
1599 .dirpath = args->nfs_server.export_path,
1600 .protocol = args->mount_server.protocol,
1601 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001602 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001603 .auth_flav_len = &server_authlist_len,
1604 .auth_flavs = server_authlist,
Stanislav Kinsbursky6d59b8d2012-01-10 16:12:54 +04001605 .net = args->net,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001606 };
Chuck Lever4c568012007-12-10 14:59:28 -05001607 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001608
1609 if (args->mount_server.version == 0) {
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001610 switch (args->version) {
1611 default:
1612 args->mount_server.version = NFS_MNT3_VERSION;
1613 break;
1614 case 2:
1615 args->mount_server.version = NFS_MNT_VERSION;
1616 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001617 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001618 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001619
Chuck Lever33832032007-12-10 14:59:13 -05001620 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001621 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001622 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001623 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001624
Chuck Lever0076d7b2007-07-01 12:13:49 -04001625 /*
1626 * Construct the mount server's address.
1627 */
Chuck Lever4c568012007-12-10 14:59:28 -05001628 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001629 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001630 args->nfs_server.addrlen);
1631 args->mount_server.addrlen = args->nfs_server.addrlen;
1632 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001633 request.salen = args->mount_server.addrlen;
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001634 nfs_set_port(request.sap, &args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001635
1636 /*
1637 * Now ask the mount server to map our export path
1638 * to a file handle.
1639 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001640 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001641 if (status != 0) {
1642 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1643 request.hostname, status);
1644 return status;
1645 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001646
Chuck Leverec88f282009-08-09 15:09:32 -04001647 /*
1648 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1649 */
1650 if (args->mount_server.version != NFS_MNT3_VERSION)
1651 return 0;
1652 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001653}
1654
Bryan Schumakerff9099f22012-07-30 16:05:18 -04001655struct dentry *nfs_try_mount(int flags, const char *dev_name,
1656 struct nfs_mount_info *mount_info,
1657 struct nfs_subversion *nfs_mod)
Bryan Schumaker486aa692012-05-10 15:07:39 -04001658{
1659 int status;
1660 struct nfs_server *server;
1661
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001662 if (mount_info->parsed->need_mount) {
Bryan Schumaker87c70832012-05-10 15:07:43 -04001663 status = nfs_request_mount(mount_info->parsed, mount_info->mntfh);
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001664 if (status)
1665 return ERR_PTR(status);
1666 }
Bryan Schumaker486aa692012-05-10 15:07:39 -04001667
1668 /* Get a volume representation */
Bryan Schumaker1179acc2012-07-30 16:05:19 -04001669 server = nfs_mod->rpc_ops->create_server(mount_info, nfs_mod);
Bryan Schumaker486aa692012-05-10 15:07:39 -04001670 if (IS_ERR(server))
1671 return ERR_CAST(server);
1672
Bryan Schumakerab7017a2012-07-30 16:05:16 -04001673 return nfs_fs_mount_common(server, flags, dev_name, mount_info, nfs_mod);
Bryan Schumaker486aa692012-05-10 15:07:39 -04001674}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001675EXPORT_SYMBOL_GPL(nfs_try_mount);
Bryan Schumaker486aa692012-05-10 15:07:39 -04001676
Rob Landleyc12bace2011-03-09 15:54:13 -06001677/*
1678 * Split "dev_name" into "hostname:export_path".
1679 *
1680 * The leftmost colon demarks the split between the server's hostname
1681 * and the export path. If the hostname starts with a left square
1682 * bracket, then it may contain colons.
1683 *
1684 * Note: caller frees hostname and export path, even on error.
1685 */
1686static int nfs_parse_devname(const char *dev_name,
1687 char **hostname, size_t maxnamlen,
1688 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001689{
1690 size_t len;
Rob Landleyc12bace2011-03-09 15:54:13 -06001691 char *end;
Chuck Leverdc045892008-06-23 12:36:37 -04001692
Rob Landleyc12bace2011-03-09 15:54:13 -06001693 /* Is the host name protected with square brakcets? */
1694 if (*dev_name == '[') {
1695 end = strchr(++dev_name, ']');
1696 if (end == NULL || end[1] != ':')
1697 goto out_bad_devname;
Chuck Leverdc045892008-06-23 12:36:37 -04001698
Rob Landleyc12bace2011-03-09 15:54:13 -06001699 len = end - dev_name;
1700 end++;
1701 } else {
1702 char *comma;
1703
1704 end = strchr(dev_name, ':');
1705 if (end == NULL)
1706 goto out_bad_devname;
1707 len = end - dev_name;
1708
1709 /* kill possible hostname list: not supported */
1710 comma = strchr(dev_name, ',');
1711 if (comma != NULL && comma < end)
1712 *comma = 0;
1713 }
1714
Chuck Leverdc045892008-06-23 12:36:37 -04001715 if (len > maxnamlen)
1716 goto out_hostname;
1717
1718 /* N.B. caller will free nfs_server.hostname in all cases */
1719 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
Rob Landleyc12bace2011-03-09 15:54:13 -06001720 if (*hostname == NULL)
Chuck Leverdc045892008-06-23 12:36:37 -04001721 goto out_nomem;
Rob Landleyc12bace2011-03-09 15:54:13 -06001722 len = strlen(++end);
Chuck Leverdc045892008-06-23 12:36:37 -04001723 if (len > maxpathlen)
1724 goto out_path;
Rob Landleyc12bace2011-03-09 15:54:13 -06001725 *export_path = kstrndup(end, len, GFP_KERNEL);
Chuck Leverdc045892008-06-23 12:36:37 -04001726 if (!*export_path)
1727 goto out_nomem;
1728
1729 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1730 return 0;
1731
1732out_bad_devname:
1733 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1734 return -EINVAL;
1735
1736out_nomem:
1737 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1738 return -ENOMEM;
1739
1740out_hostname:
1741 dfprintk(MOUNT, "NFS: server hostname too long\n");
1742 return -ENAMETOOLONG;
1743
1744out_path:
1745 dfprintk(MOUNT, "NFS: export pathname too long\n");
1746 return -ENAMETOOLONG;
1747}
1748
1749/*
David Howells54ceac42006-08-22 20:06:13 -04001750 * Validate the NFS2/NFS3 mount data
1751 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001752 *
1753 * For option strings, user space handles the following behaviors:
1754 *
1755 * + DNS: mapping server host name to IP address ("addr=" option)
1756 *
1757 * + failure mode: how to behave if a mount request can't be handled
1758 * immediately ("fg/bg" option)
1759 *
1760 * + retry: how often to retry a mount request ("retry=" option)
1761 *
1762 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1763 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001764 */
Bryan Schumakerd72c7272012-05-10 15:07:41 -04001765static int nfs23_validate_mount_data(void *options,
1766 struct nfs_parsed_mount_data *args,
1767 struct nfs_fh *mntfh,
1768 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001769{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001770 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001771 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001772
Chuck Lever5df36e72007-07-01 12:12:56 -04001773 if (data == NULL)
1774 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001775
Bryan Schumakerc5afc8d2012-06-08 11:32:56 -04001776 args->version = NFS_DEFAULT_VERSION;
David Howellsf7b422b2006-06-09 09:34:33 -04001777 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001778 case 1:
1779 data->namlen = 0;
1780 case 2:
1781 data->bsize = 0;
1782 case 3:
1783 if (data->flags & NFS_MOUNT_VER3)
1784 goto out_no_v3;
1785 data->root.size = NFS2_FHSIZE;
1786 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1787 case 4:
1788 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1789 goto out_no_sec;
1790 case 5:
1791 memset(data->context, 0, sizeof(data->context));
1792 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001793 if (data->flags & NFS_MOUNT_VER3) {
1794 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1795 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001796 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001797 args->version = 3;
1798 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001799 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001800 args->version = 2;
1801 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001802
Chuck Lever5df36e72007-07-01 12:12:56 -04001803
1804 memcpy(mntfh->data, data->root.data, mntfh->size);
1805 if (mntfh->size < sizeof(mntfh->data))
1806 memset(mntfh->data + mntfh->size, 0,
1807 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001808
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001809 /*
1810 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1811 * can deal with.
1812 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001813 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -04001814 args->flags |= NFS_MOUNT_LEGACY_INTERFACE;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001815 args->rsize = data->rsize;
1816 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001817 args->timeo = data->timeo;
1818 args->retrans = data->retrans;
1819 args->acregmin = data->acregmin;
1820 args->acregmax = data->acregmax;
1821 args->acdirmin = data->acdirmin;
1822 args->acdirmax = data->acdirmax;
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001823 args->need_mount = false;
Chuck Lever4c568012007-12-10 14:59:28 -05001824
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001825 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001826 args->nfs_server.addrlen = sizeof(data->addr);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001827 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001828 goto out_no_address;
1829
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001830 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001831 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001832 /* N.B. caller will free nfs_server.hostname in all cases */
1833 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1834 args->namlen = data->namlen;
1835 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001836
1837 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1838 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001839 if (!args->nfs_server.hostname)
1840 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001841
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001842 if (!(data->flags & NFS_MOUNT_NONLM))
1843 args->flags &= ~(NFS_MOUNT_LOCAL_FLOCK|
1844 NFS_MOUNT_LOCAL_FCNTL);
1845 else
1846 args->flags |= (NFS_MOUNT_LOCAL_FLOCK|
1847 NFS_MOUNT_LOCAL_FCNTL);
Eric Parisf9c3a382008-03-05 14:20:18 -05001848 /*
1849 * The legacy version 6 binary mount data from userspace has a
1850 * field used only to transport selinux information into the
1851 * the kernel. To continue to support that functionality we
1852 * have a touch of selinux knowledge here in the NFS code. The
1853 * userspace code converted context=blah to just blah so we are
1854 * converting back to the full string selinux understands.
1855 */
1856 if (data->context[0]){
1857#ifdef CONFIG_SECURITY_SELINUX
1858 int rc;
1859 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1860 if (!opts_str)
1861 return -ENOMEM;
1862 strcpy(opts_str, "context=");
1863 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1864 strcat(opts_str, &data->context[0]);
1865 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1866 kfree(opts_str);
1867 if (rc)
1868 return rc;
1869#else
1870 return -EINVAL;
1871#endif
1872 }
1873
Chuck Lever5df36e72007-07-01 12:12:56 -04001874 break;
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001875 default:
1876 return NFS_TEXT_DATA;
David Howellsf7b422b2006-06-09 09:34:33 -04001877 }
David Howells54ceac42006-08-22 20:06:13 -04001878
Bryan Schumaker1c606fb2012-07-30 16:05:24 -04001879#if !IS_ENABLED(CONFIG_NFS_V3)
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001880 if (args->version == 3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001881 goto out_v3_not_compiled;
1882#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001883
David Howells54ceac42006-08-22 20:06:13 -04001884 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001885
1886out_no_data:
1887 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1888 return -EINVAL;
1889
1890out_no_v3:
1891 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1892 data->version);
1893 return -EINVAL;
1894
1895out_no_sec:
1896 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1897 return -EINVAL;
1898
Bryan Schumaker1c606fb2012-07-30 16:05:24 -04001899#if !IS_ENABLED(CONFIG_NFS_V3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001900out_v3_not_compiled:
1901 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1902 return -EPROTONOSUPPORT;
1903#endif /* !CONFIG_NFS_V3 */
1904
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001905out_nomem:
1906 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
1907 return -ENOMEM;
1908
Chuck Lever5df36e72007-07-01 12:12:56 -04001909out_no_address:
1910 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1911 return -EINVAL;
1912
1913out_invalid_fh:
1914 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1915 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001916}
1917
Bryan Schumakerd72c7272012-05-10 15:07:41 -04001918#ifdef CONFIG_NFS_V4
1919static int nfs_validate_mount_data(struct file_system_type *fs_type,
1920 void *options,
1921 struct nfs_parsed_mount_data *args,
1922 struct nfs_fh *mntfh,
1923 const char *dev_name)
1924{
1925 if (fs_type == &nfs_fs_type)
1926 return nfs23_validate_mount_data(options, args, mntfh, dev_name);
1927 return nfs4_validate_mount_data(options, args, dev_name);
1928}
1929#else
1930static int nfs_validate_mount_data(struct file_system_type *fs_type,
1931 void *options,
1932 struct nfs_parsed_mount_data *args,
1933 struct nfs_fh *mntfh,
1934 const char *dev_name)
1935{
1936 return nfs23_validate_mount_data(options, args, mntfh, dev_name);
1937}
1938#endif
1939
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001940static int nfs_validate_text_mount_data(void *options,
1941 struct nfs_parsed_mount_data *args,
1942 const char *dev_name)
1943{
1944 int port = 0;
1945 int max_namelen = PAGE_SIZE;
1946 int max_pathlen = NFS_MAXPATHLEN;
1947 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
1948
1949 if (nfs_parse_mount_options((char *)options, args) == 0)
1950 return -EINVAL;
1951
1952 if (!nfs_verify_server_address(sap))
1953 goto out_no_address;
1954
1955 if (args->version == 4) {
1956#ifdef CONFIG_NFS_V4
1957 port = NFS_PORT;
1958 max_namelen = NFS4_MAXNAMLEN;
1959 max_pathlen = NFS4_MAXPATHLEN;
1960 nfs_validate_transport_protocol(args);
1961 nfs4_validate_mount_flags(args);
1962#else
1963 goto out_v4_not_compiled;
1964#endif /* CONFIG_NFS_V4 */
1965 } else
1966 nfs_set_mount_transport_protocol(args);
1967
1968 nfs_set_port(sap, &args->nfs_server.port, port);
1969
1970 if (args->auth_flavor_len > 1)
1971 goto out_bad_auth;
1972
1973 return nfs_parse_devname(dev_name,
1974 &args->nfs_server.hostname,
1975 max_namelen,
1976 &args->nfs_server.export_path,
1977 max_pathlen);
1978
1979#ifndef CONFIG_NFS_V4
1980out_v4_not_compiled:
1981 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
1982 return -EPROTONOSUPPORT;
1983#endif /* !CONFIG_NFS_V4 */
1984
1985out_no_address:
1986 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1987 return -EINVAL;
1988
1989out_bad_auth:
1990 dfprintk(MOUNT, "NFS: Too many RPC auth flavours specified\n");
1991 return -EINVAL;
1992}
1993
Jeff Layton48b605f2008-06-10 15:38:39 -04001994static int
1995nfs_compare_remount_data(struct nfs_server *nfss,
1996 struct nfs_parsed_mount_data *data)
1997{
1998 if (data->flags != nfss->flags ||
1999 data->rsize != nfss->rsize ||
2000 data->wsize != nfss->wsize ||
2001 data->retrans != nfss->client->cl_timeout->to_retries ||
2002 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
2003 data->acregmin != nfss->acregmin / HZ ||
2004 data->acregmax != nfss->acregmax / HZ ||
2005 data->acdirmin != nfss->acdirmin / HZ ||
2006 data->acdirmax != nfss->acdirmax / HZ ||
2007 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002008 data->nfs_server.port != nfss->port ||
Jeff Layton48b605f2008-06-10 15:38:39 -04002009 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
Stefan Richtera1be9ee2009-10-12 11:26:12 -04002010 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
2011 (struct sockaddr *)&nfss->nfs_client->cl_addr))
Jeff Layton48b605f2008-06-10 15:38:39 -04002012 return -EINVAL;
2013
2014 return 0;
2015}
2016
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002017int
Jeff Layton48b605f2008-06-10 15:38:39 -04002018nfs_remount(struct super_block *sb, int *flags, char *raw_data)
2019{
2020 int error;
2021 struct nfs_server *nfss = sb->s_fs_info;
2022 struct nfs_parsed_mount_data *data;
2023 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
2024 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04002025 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04002026
2027 /*
2028 * Userspace mount programs that send binary options generally send
2029 * them populated with default values. We have no way to know which
2030 * ones were explicitly specified. Fall back to legacy behavior and
2031 * just return success.
2032 */
Marc Zyngier31c94462008-07-17 13:21:55 +02002033 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
2034 (nfsvers <= 3 && (!options || (options->version >= 1 &&
2035 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04002036 return 0;
2037
2038 data = kzalloc(sizeof(*data), GFP_KERNEL);
2039 if (data == NULL)
2040 return -ENOMEM;
2041
2042 /* fill out struct with values from existing mount */
2043 data->flags = nfss->flags;
2044 data->rsize = nfss->rsize;
2045 data->wsize = nfss->wsize;
2046 data->retrans = nfss->client->cl_timeout->to_retries;
2047 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
2048 data->acregmin = nfss->acregmin / HZ;
2049 data->acregmax = nfss->acregmax / HZ;
2050 data->acdirmin = nfss->acdirmin / HZ;
2051 data->acdirmax = nfss->acdirmax / HZ;
2052 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002053 data->nfs_server.port = nfss->port;
Jeff Layton48b605f2008-06-10 15:38:39 -04002054 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
2055 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
2056 data->nfs_server.addrlen);
2057
2058 /* overwrite those values with any that were specified */
2059 error = nfs_parse_mount_options((char *)options, data);
2060 if (error < 0)
2061 goto out;
2062
Jeff Layton26c4c172011-04-27 11:49:09 -04002063 /*
2064 * noac is a special case. It implies -o sync, but that's not
2065 * necessarily reflected in the mtab options. do_remount_sb
2066 * will clear MS_SYNCHRONOUS if -o sync wasn't specified in the
2067 * remount options, so we have to explicitly reset it.
2068 */
2069 if (data->flags & NFS_MOUNT_NOAC)
2070 *flags |= MS_SYNCHRONOUS;
2071
Jeff Layton48b605f2008-06-10 15:38:39 -04002072 /* compare new mount options with old ones */
2073 error = nfs_compare_remount_data(nfss, data);
2074out:
2075 kfree(data);
2076 return error;
2077}
2078
David Howells54ceac42006-08-22 20:06:13 -04002079/*
2080 * Initialise the common bits of the superblock
2081 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002082inline void nfs_initialise_sb(struct super_block *sb)
David Howells54ceac42006-08-22 20:06:13 -04002083{
2084 struct nfs_server *server = NFS_SB(sb);
2085
2086 sb->s_magic = NFS_SUPER_MAGIC;
2087
2088 /* We probably want something more informative here */
2089 snprintf(sb->s_id, sizeof(sb->s_id),
Vivek Trivedi5a7c9ee2012-03-15 23:58:52 +05302090 "%u:%u", MAJOR(sb->s_dev), MINOR(sb->s_dev));
David Howells54ceac42006-08-22 20:06:13 -04002091
2092 if (sb->s_blocksize == 0)
2093 sb->s_blocksize = nfs_block_bits(server->wsize,
2094 &sb->s_blocksize_bits);
2095
Jens Axboe32a88aa2009-09-16 15:02:33 +02002096 sb->s_bdi = &server->backing_dev_info;
2097
David Howells54ceac42006-08-22 20:06:13 -04002098 nfs_super_set_maxbytes(sb, server->maxfilesize);
2099}
2100
2101/*
2102 * Finish setting up an NFS2/3 superblock
2103 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002104void nfs_fill_super(struct super_block *sb, struct nfs_mount_info *mount_info)
David Howells54ceac42006-08-22 20:06:13 -04002105{
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002106 struct nfs_parsed_mount_data *data = mount_info->parsed;
David Howells54ceac42006-08-22 20:06:13 -04002107 struct nfs_server *server = NFS_SB(sb);
2108
2109 sb->s_blocksize_bits = 0;
2110 sb->s_blocksize = 0;
Bryan Schumaker6a744902012-07-30 16:05:20 -04002111 sb->s_xattr = server->nfs_client->cl_nfs_mod->xattr;
2112 sb->s_op = server->nfs_client->cl_nfs_mod->sops;
2113 if (data && data->bsize)
David Howells54ceac42006-08-22 20:06:13 -04002114 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
2115
Bryan Schumaker6a744902012-07-30 16:05:20 -04002116 if (server->nfs_client->rpc_ops->version != 2) {
David Howells54ceac42006-08-22 20:06:13 -04002117 /* The VFS shouldn't apply the umask to mode bits. We will do
2118 * so ourselves when necessary.
2119 */
2120 sb->s_flags |= MS_POSIXACL;
2121 sb->s_time_gran = 1;
2122 }
2123
David Howells54ceac42006-08-22 20:06:13 -04002124 nfs_initialise_sb(sb);
2125}
2126
2127/*
Bryan Schumaker3cadf4b2012-07-16 16:39:19 -04002128 * Finish setting up a cloned NFS2/3/4 superblock
David Howells54ceac42006-08-22 20:06:13 -04002129 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002130void nfs_clone_super(struct super_block *sb, struct nfs_mount_info *mount_info)
David Howells54ceac42006-08-22 20:06:13 -04002131{
Bryan Schumaker8c958e02012-05-10 15:07:35 -04002132 const struct super_block *old_sb = mount_info->cloned->sb;
David Howells54ceac42006-08-22 20:06:13 -04002133 struct nfs_server *server = NFS_SB(sb);
2134
2135 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2136 sb->s_blocksize = old_sb->s_blocksize;
2137 sb->s_maxbytes = old_sb->s_maxbytes;
Bryan Schumaker3cadf4b2012-07-16 16:39:19 -04002138 sb->s_xattr = old_sb->s_xattr;
2139 sb->s_op = old_sb->s_op;
2140 sb->s_time_gran = 1;
David Howells54ceac42006-08-22 20:06:13 -04002141
Bryan Schumaker3cadf4b2012-07-16 16:39:19 -04002142 if (server->nfs_client->rpc_ops->version != 2) {
David Howells54ceac42006-08-22 20:06:13 -04002143 /* The VFS shouldn't apply the umask to mode bits. We will do
2144 * so ourselves when necessary.
2145 */
2146 sb->s_flags |= MS_POSIXACL;
David Howells54ceac42006-08-22 20:06:13 -04002147 }
2148
David Howells54ceac42006-08-22 20:06:13 -04002149 nfs_initialise_sb(sb);
2150}
2151
Trond Myklebust275a5d22007-05-16 16:53:28 -04002152static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
2153{
2154 const struct nfs_server *a = s->s_fs_info;
2155 const struct rpc_clnt *clnt_a = a->client;
2156 const struct rpc_clnt *clnt_b = b->client;
2157
2158 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
2159 goto Ebusy;
2160 if (a->nfs_client != b->nfs_client)
2161 goto Ebusy;
2162 if (a->flags != b->flags)
2163 goto Ebusy;
2164 if (a->wsize != b->wsize)
2165 goto Ebusy;
2166 if (a->rsize != b->rsize)
2167 goto Ebusy;
2168 if (a->acregmin != b->acregmin)
2169 goto Ebusy;
2170 if (a->acregmax != b->acregmax)
2171 goto Ebusy;
2172 if (a->acdirmin != b->acdirmin)
2173 goto Ebusy;
2174 if (a->acdirmax != b->acdirmax)
2175 goto Ebusy;
2176 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2177 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002178 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002179Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002180 return 0;
2181}
2182
2183struct nfs_sb_mountdata {
2184 struct nfs_server *server;
2185 int mntflags;
2186};
2187
2188static int nfs_set_super(struct super_block *s, void *data)
2189{
2190 struct nfs_sb_mountdata *sb_mntdata = data;
2191 struct nfs_server *server = sb_mntdata->server;
2192 int ret;
2193
2194 s->s_flags = sb_mntdata->mntflags;
2195 s->s_fs_info = server;
Al Viro8b244ff2010-12-18 11:29:39 -05002196 s->s_d_op = server->nfs_client->rpc_ops->dentry_ops;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002197 ret = set_anon_super(s, server);
2198 if (ret == 0)
2199 server->s_dev = s->s_dev;
2200 return ret;
2201}
2202
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002203static int nfs_compare_super_address(struct nfs_server *server1,
2204 struct nfs_server *server2)
2205{
2206 struct sockaddr *sap1, *sap2;
2207
2208 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2209 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2210
2211 if (sap1->sa_family != sap2->sa_family)
2212 return 0;
2213
2214 switch (sap1->sa_family) {
2215 case AF_INET: {
2216 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2217 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2218 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2219 return 0;
2220 if (sin1->sin_port != sin2->sin_port)
2221 return 0;
2222 break;
2223 }
2224 case AF_INET6: {
2225 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2226 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2227 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2228 return 0;
2229 if (sin1->sin6_port != sin2->sin6_port)
2230 return 0;
2231 break;
2232 }
2233 default:
2234 return 0;
2235 }
2236
2237 return 1;
2238}
2239
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002240static int nfs_compare_super(struct super_block *sb, void *data)
2241{
2242 struct nfs_sb_mountdata *sb_mntdata = data;
2243 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2244 int mntflags = sb_mntdata->mntflags;
2245
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002246 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002247 return 0;
2248 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2249 if (old->flags & NFS_MOUNT_UNSHARED)
2250 return 0;
2251 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2252 return 0;
2253 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002254}
2255
Trond Myklebust39ffb922012-05-16 10:21:30 -07002256#ifdef CONFIG_NFS_FSCACHE
Bryan Schumaker2311b942012-05-10 15:07:32 -04002257static void nfs_get_cache_cookie(struct super_block *sb,
2258 struct nfs_parsed_mount_data *parsed,
2259 struct nfs_clone_mount *cloned)
2260{
2261 char *uniq = NULL;
2262 int ulen = 0;
2263
2264 if (parsed && parsed->fscache_uniq) {
2265 uniq = parsed->fscache_uniq;
2266 ulen = strlen(parsed->fscache_uniq);
2267 } else if (cloned) {
2268 struct nfs_server *mnt_s = NFS_SB(cloned->sb);
2269 if (mnt_s->fscache_key) {
2270 uniq = mnt_s->fscache_key->key.uniquifier;
2271 ulen = mnt_s->fscache_key->key.uniq_len;
2272 };
2273 }
2274
2275 nfs_fscache_get_super_cookie(sb, uniq, ulen);
2276}
Trond Myklebust39ffb922012-05-16 10:21:30 -07002277#else
2278static void nfs_get_cache_cookie(struct super_block *sb,
2279 struct nfs_parsed_mount_data *parsed,
2280 struct nfs_clone_mount *cloned)
2281{
2282}
2283#endif
Bryan Schumaker2311b942012-05-10 15:07:32 -04002284
Miklos Szeredifa799752008-04-30 00:54:33 -07002285static int nfs_bdi_register(struct nfs_server *server)
2286{
2287 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2288}
2289
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002290int nfs_set_sb_security(struct super_block *s, struct dentry *mntroot,
2291 struct nfs_mount_info *mount_info)
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002292{
2293 return security_sb_set_mnt_opts(s, &mount_info->parsed->lsm_opts);
2294}
2295
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002296int nfs_clone_sb_security(struct super_block *s, struct dentry *mntroot,
2297 struct nfs_mount_info *mount_info)
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002298{
2299 /* clone any lsm security options from the parent to the new sb */
2300 security_sb_clone_mnt_opts(mount_info->cloned->sb, s);
2301 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops)
2302 return -ESTALE;
2303 return 0;
2304}
2305
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002306struct dentry *nfs_fs_mount_common(struct nfs_server *server,
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002307 int flags, const char *dev_name,
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002308 struct nfs_mount_info *mount_info,
2309 struct nfs_subversion *nfs_mod)
David Howells54ceac42006-08-22 20:06:13 -04002310{
David Howells54ceac42006-08-22 20:06:13 -04002311 struct super_block *s;
Al Viro01194982011-03-16 07:25:36 -04002312 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Trond Myklebust75180df2007-05-16 16:53:28 -04002313 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002314 struct nfs_sb_mountdata sb_mntdata = {
2315 .mntflags = flags,
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002316 .server = server,
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002317 };
Al Viro01194982011-03-16 07:25:36 -04002318 int error;
David Howells54ceac42006-08-22 20:06:13 -04002319
Trond Myklebust75180df2007-05-16 16:53:28 -04002320 if (server->flags & NFS_MOUNT_UNSHARED)
2321 compare_super = NULL;
2322
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002323 /* -o noac implies -o sync */
2324 if (server->flags & NFS_MOUNT_NOAC)
2325 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2326
David Howells54ceac42006-08-22 20:06:13 -04002327 /* Get a superblock - note that we may end up sharing one that already exists */
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002328 s = sget(nfs_mod->nfs_fs, compare_super, nfs_set_super, flags, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002329 if (IS_ERR(s)) {
Al Viro01194982011-03-16 07:25:36 -04002330 mntroot = ERR_CAST(s);
David Howells54ceac42006-08-22 20:06:13 -04002331 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002332 }
2333
David Howells54ceac42006-08-22 20:06:13 -04002334 if (s->s_fs_info != server) {
2335 nfs_free_server(server);
2336 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002337 } else {
2338 error = nfs_bdi_register(server);
Al Viro01194982011-03-16 07:25:36 -04002339 if (error) {
2340 mntroot = ERR_PTR(error);
NeilBrowncfbc0682010-03-11 11:20:17 +11002341 goto error_splat_bdi;
Al Viro01194982011-03-16 07:25:36 -04002342 }
David Howellsf7b422b2006-06-09 09:34:33 -04002343 }
David Howells54ceac42006-08-22 20:06:13 -04002344
2345 if (!s->s_root) {
2346 /* initial superblock/root creation */
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002347 mount_info->fill_super(s, mount_info);
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002348 nfs_get_cache_cookie(s, mount_info->parsed, mount_info->cloned);
David Howells54ceac42006-08-22 20:06:13 -04002349 }
2350
Bryan Schumaker87c70832012-05-10 15:07:43 -04002351 mntroot = nfs_get_root(s, mount_info->mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002352 if (IS_ERR(mntroot))
David Howells54ceac42006-08-22 20:06:13 -04002353 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002354
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002355 error = mount_info->set_security(s, mntroot, mount_info);
Eric Parisf9c3a382008-03-05 14:20:18 -05002356 if (error)
2357 goto error_splat_root;
2358
David Howellsf7b422b2006-06-09 09:34:33 -04002359 s->s_flags |= MS_ACTIVE;
Chuck Lever06559602007-07-01 12:12:35 -04002360
2361out:
Al Viro01194982011-03-16 07:25:36 -04002362 return mntroot;
Trond Myklebust816724e2006-06-24 08:41:41 -04002363
David Howells54ceac42006-08-22 20:06:13 -04002364out_err_nosb:
2365 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002366 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002367
Eric Parisf9c3a382008-03-05 14:20:18 -05002368error_splat_root:
2369 dput(mntroot);
Al Viro01194982011-03-16 07:25:36 -04002370 mntroot = ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002371error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002372 if (server && !s->s_root)
2373 bdi_unregister(&server->backing_dev_info);
2374error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002375 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002376 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002377}
2378
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002379struct dentry *nfs_fs_mount(struct file_system_type *fs_type,
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002380 int flags, const char *dev_name, void *raw_data)
2381{
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002382 struct nfs_mount_info mount_info = {
2383 .fill_super = nfs_fill_super,
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002384 .set_security = nfs_set_sb_security,
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002385 };
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002386 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002387 struct nfs_subversion *nfs_mod;
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002388 int error;
2389
Bryan Schumaker46058d42012-05-10 15:07:42 -04002390 mount_info.parsed = nfs_alloc_parsed_mount_data();
Bryan Schumaker87c70832012-05-10 15:07:43 -04002391 mount_info.mntfh = nfs_alloc_fhandle();
2392 if (mount_info.parsed == NULL || mount_info.mntfh == NULL)
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002393 goto out;
2394
2395 /* Validate the mount data */
Bryan Schumaker87c70832012-05-10 15:07:43 -04002396 error = nfs_validate_mount_data(fs_type, raw_data, mount_info.parsed, mount_info.mntfh, dev_name);
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04002397 if (error == NFS_TEXT_DATA)
Bryan Schumaker46058d42012-05-10 15:07:42 -04002398 error = nfs_validate_text_mount_data(raw_data, mount_info.parsed, dev_name);
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002399 if (error < 0) {
2400 mntroot = ERR_PTR(error);
2401 goto out;
2402 }
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002403
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002404 nfs_mod = get_nfs_version(mount_info.parsed->version);
2405 if (IS_ERR(nfs_mod)) {
2406 mntroot = ERR_CAST(nfs_mod);
2407 goto out;
2408 }
2409
Bryan Schumakerff9099f22012-07-30 16:05:18 -04002410 mntroot = nfs_mod->rpc_ops->try_mount(flags, dev_name, &mount_info, nfs_mod);
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002411
2412 put_nfs_version(nfs_mod);
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002413out:
Bryan Schumaker46058d42012-05-10 15:07:42 -04002414 nfs_free_parsed_mount_data(mount_info.parsed);
Bryan Schumaker87c70832012-05-10 15:07:43 -04002415 nfs_free_fhandle(mount_info.mntfh);
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002416 return mntroot;
2417}
2418
David Howells54ceac42006-08-22 20:06:13 -04002419/*
Trond Myklebust387c1492010-02-03 08:27:35 -05002420 * Ensure that we unregister the bdi before kill_anon_super
2421 * releases the device name
2422 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002423void nfs_put_super(struct super_block *s)
Trond Myklebust387c1492010-02-03 08:27:35 -05002424{
2425 struct nfs_server *server = NFS_SB(s);
2426
2427 bdi_unregister(&server->backing_dev_info);
2428}
2429
2430/*
David Howells54ceac42006-08-22 20:06:13 -04002431 * Destroy an NFS2/3 superblock
2432 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002433void nfs_kill_super(struct super_block *s)
David Howellsf7b422b2006-06-09 09:34:33 -04002434{
2435 struct nfs_server *server = NFS_SB(s);
2436
2437 kill_anon_super(s);
David Howells08734042009-04-03 16:42:42 +01002438 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002439 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002440}
2441
David Howells54ceac42006-08-22 20:06:13 -04002442/*
Bryan Schumaker8c958e02012-05-10 15:07:35 -04002443 * Clone an NFS2/3/4 server record on xdev traversal (FSID-change)
David Howells54ceac42006-08-22 20:06:13 -04002444 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002445struct dentry *
Bryan Schumakere8f25e62012-07-30 16:05:17 -04002446nfs_xdev_mount(struct file_system_type *fs_type, int flags,
2447 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002448{
Bryan Schumakere8f25e62012-07-30 16:05:17 -04002449 struct nfs_clone_mount *data = raw_data;
2450 struct nfs_mount_info mount_info = {
2451 .fill_super = nfs_clone_super,
2452 .set_security = nfs_clone_sb_security,
2453 .cloned = data,
2454 };
David Howells54ceac42006-08-22 20:06:13 -04002455 struct nfs_server *server;
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002456 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002457 struct nfs_subversion *nfs_mod = NFS_SB(data->sb)->nfs_client->cl_nfs_mod;
David Howells54ceac42006-08-22 20:06:13 -04002458 int error;
2459
Bryan Schumaker8c958e02012-05-10 15:07:35 -04002460 dprintk("--> nfs_xdev_mount_common()\n");
David Howells54ceac42006-08-22 20:06:13 -04002461
Bryan Schumakere8f25e62012-07-30 16:05:17 -04002462 mount_info.mntfh = mount_info.cloned->fh;
Bryan Schumaker87c70832012-05-10 15:07:43 -04002463
David Howells54ceac42006-08-22 20:06:13 -04002464 /* create a new volume representation */
Bryan Schumaker1179acc2012-07-30 16:05:19 -04002465 server = nfs_mod->rpc_ops->clone_server(NFS_SB(data->sb), data->fh, data->fattr, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04002466 if (IS_ERR(server)) {
2467 error = PTR_ERR(server);
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002468 goto out_err;
David Howells54ceac42006-08-22 20:06:13 -04002469 }
2470
Bryan Schumakere8f25e62012-07-30 16:05:17 -04002471 mntroot = nfs_fs_mount_common(server, flags, dev_name, &mount_info, nfs_mod);
Bryan Schumaker8c958e02012-05-10 15:07:35 -04002472 dprintk("<-- nfs_xdev_mount_common() = 0\n");
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002473out:
Al Viro31f43472010-10-29 03:38:12 -04002474 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002475
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002476out_err:
Bryan Schumaker8c958e02012-05-10 15:07:35 -04002477 dprintk("<-- nfs_xdev_mount_common() = %d [error]\n", error);
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002478 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002479}
2480
2481#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04002482
Trond Myklebust01c3f052009-06-17 13:22:58 -07002483static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2484{
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04002485 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3|
2486 NFS_MOUNT_LOCAL_FLOCK|NFS_MOUNT_LOCAL_FCNTL);
Trond Myklebust01c3f052009-06-17 13:22:58 -07002487}
2488
David Howells54ceac42006-08-22 20:06:13 -04002489/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002490 * Validate NFSv4 mount options
2491 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002492static int nfs4_validate_mount_data(void *options,
2493 struct nfs_parsed_mount_data *args,
2494 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002495{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002496 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002497 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002498 char *c;
2499
2500 if (data == NULL)
2501 goto out_no_data;
2502
Bryan Schumakercdf66442012-06-05 14:59:54 -04002503 args->version = 4;
2504
Chuck Leverf0768eb2007-07-01 12:13:01 -04002505 switch (data->version) {
2506 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002507 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002508 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002509 if (data->host_addrlen == 0)
2510 goto out_no_address;
2511 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002512 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002513 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002514 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002515 goto out_no_address;
2516
Chuck Lever6738b252008-06-24 16:33:54 -04002517 if (data->auth_flavourlen) {
2518 if (data->auth_flavourlen > 1)
2519 goto out_inval_auth;
Trond Myklebust20c71f52007-09-20 20:23:51 -04002520 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002521 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04002522 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002523 return -EFAULT;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002524 }
2525
2526 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2527 if (IS_ERR(c))
2528 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002529 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002530
2531 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2532 if (IS_ERR(c))
2533 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002534 args->nfs_server.export_path = c;
2535 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002536
2537 c = strndup_user(data->client_addr.data, 16);
2538 if (IS_ERR(c))
2539 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002540 args->client_address = c;
2541
2542 /*
2543 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2544 * can deal with.
2545 */
2546
2547 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2548 args->rsize = data->rsize;
2549 args->wsize = data->wsize;
2550 args->timeo = data->timeo;
2551 args->retrans = data->retrans;
2552 args->acregmin = data->acregmin;
2553 args->acregmax = data->acregmax;
2554 args->acdirmin = data->acdirmin;
2555 args->acdirmax = data->acdirmax;
2556 args->nfs_server.protocol = data->proto;
Trond Myklebust259875e2008-07-02 14:43:47 -04002557 nfs_validate_transport_protocol(args);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002558
2559 break;
Chuck Lever7630c852009-09-08 19:49:57 -04002560 default:
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04002561 return NFS_TEXT_DATA;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002562 }
2563
2564 return 0;
2565
2566out_no_data:
2567 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2568 return -EINVAL;
2569
2570out_inval_auth:
2571 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2572 data->auth_flavourlen);
2573 return -EINVAL;
2574
2575out_no_address:
2576 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2577 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002578}
2579
Bryan Schumakerfac1e8e2012-07-30 16:05:22 -04002580/*
2581 * NFS v4 module parameters need to stay in the
2582 * NFS client for backwards compatibility
2583 */
2584unsigned int nfs_callback_set_tcpport;
2585unsigned short nfs_callback_tcpport;
2586/* Default cache timeout is 10 minutes */
2587unsigned int nfs_idmap_cache_timeout = 600;
2588/* Turn off NFSv4 uid/gid mapping when using AUTH_SYS */
2589bool nfs4_disable_idmapping = true;
2590unsigned short max_session_slots = NFS4_DEF_SLOT_TABLE_SIZE;
2591unsigned short send_implementation_id = 1;
2592
2593#define NFS_CALLBACK_MAXPORTNR (65535U)
2594
2595static int param_set_portnr(const char *val, const struct kernel_param *kp)
2596{
2597 unsigned long num;
2598 int ret;
2599
2600 if (!val)
2601 return -EINVAL;
2602 ret = strict_strtoul(val, 0, &num);
2603 if (ret == -EINVAL || num > NFS_CALLBACK_MAXPORTNR)
2604 return -EINVAL;
2605 *((unsigned int *)kp->arg) = num;
2606 return 0;
2607}
2608static struct kernel_param_ops param_ops_portnr = {
2609 .set = param_set_portnr,
2610 .get = param_get_uint,
2611};
2612#define param_check_portnr(name, p) __param_check(name, p, unsigned int);
2613
2614module_param_named(callback_tcpport, nfs_callback_set_tcpport, portnr, 0644);
2615module_param(nfs_idmap_cache_timeout, int, 0644);
2616module_param(nfs4_disable_idmapping, bool, 0644);
2617MODULE_PARM_DESC(nfs4_disable_idmapping,
2618 "Turn off NFSv4 idmapping when using 'sec=sys'");
2619module_param(max_session_slots, ushort, 0644);
2620MODULE_PARM_DESC(max_session_slots, "Maximum number of outstanding NFSv4.1 "
2621 "requests the client will negotiate");
2622module_param(send_implementation_id, ushort, 0644);
2623MODULE_PARM_DESC(send_implementation_id,
2624 "Send implementation ID with NFSv4.1 exchange_id");
David Howells54ceac42006-08-22 20:06:13 -04002625#endif /* CONFIG_NFS_V4 */