blob: befbae0cce41748b07d02ccbda71afc4c9a91c82 [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"
Trond Myklebust76e697b2012-11-26 14:20:49 -050066#include "nfs4session.h"
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +030067#include "pnfs.h"
Bryan Schumakerab7017a2012-07-30 16:05:16 -040068#include "nfs.h"
David Howellsf7b422b2006-06-09 09:34:33 -040069
70#define NFSDBG_FACILITY NFSDBG_VFS
Bryan Schumakerb72e4f42012-05-10 15:07:40 -040071#define NFS_TEXT_DATA 1
David Howellsf7b422b2006-06-09 09:34:33 -040072
Bryan Schumaker1c606fb2012-07-30 16:05:24 -040073#if IS_ENABLED(CONFIG_NFS_V3)
Paulius Zaleckas1e657bd2010-10-31 18:21:05 +020074#define NFS_DEFAULT_VERSION 3
75#else
76#define NFS_DEFAULT_VERSION 2
77#endif
78
Chuck Leverbf0fd762007-07-01 12:13:44 -040079enum {
80 /* Mount options that take no arguments */
81 Opt_soft, Opt_hard,
Chuck Leverbf0fd762007-07-01 12:13:44 -040082 Opt_posix, Opt_noposix,
83 Opt_cto, Opt_nocto,
84 Opt_ac, Opt_noac,
85 Opt_lock, Opt_nolock,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040086 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040087 Opt_acl, Opt_noacl,
88 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040089 Opt_sharecache, Opt_nosharecache,
Chuck Leverd7403512008-12-23 15:21:37 -050090 Opt_resvport, Opt_noresvport,
David Howellsb797cac2009-04-03 16:42:48 +010091 Opt_fscache, Opt_nofscache,
Chuck Lever89652612012-09-14 17:24:11 -040092 Opt_migration, Opt_nomigration,
Chuck Leverbf0fd762007-07-01 12:13:44 -040093
94 /* Mount options that take integer arguments */
95 Opt_port,
96 Opt_rsize, Opt_wsize, Opt_bsize,
97 Opt_timeo, Opt_retrans,
98 Opt_acregmin, Opt_acregmax,
99 Opt_acdirmin, Opt_acdirmax,
100 Opt_actimeo,
101 Opt_namelen,
102 Opt_mountport,
Chuck Levere887cbc2007-10-26 13:32:29 -0400103 Opt_mountvers,
Mike Sager3fd5be92009-04-01 09:21:48 -0400104 Opt_minorversion,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400105
106 /* Mount options that take string arguments */
Trond Myklebust0d71b052012-03-02 13:59:49 -0500107 Opt_nfsvers,
Chuck Lever33832032007-12-10 14:59:13 -0500108 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
Chuck Lever0ac83772007-09-11 18:01:04 -0400109 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400110 Opt_lookupcache,
David Howellsb797cac2009-04-03 16:42:48 +0100111 Opt_fscache_uniq,
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400112 Opt_local_lock,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400113
Chuck Leverf45663c2008-06-24 19:28:02 -0400114 /* Special mount options */
115 Opt_userspace, Opt_deprecated, Opt_sloppy,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400116
117 Opt_err
118};
119
Steven Whitehousea447c092008-10-13 10:46:57 +0100120static const match_table_t nfs_mount_option_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400121 { Opt_userspace, "bg" },
122 { Opt_userspace, "fg" },
Chuck Leverecbb3842008-06-12 12:37:33 -0400123 { Opt_userspace, "retry=%s" },
124
Chuck Leverf45663c2008-06-24 19:28:02 -0400125 { Opt_sloppy, "sloppy" },
126
Chuck Leverbf0fd762007-07-01 12:13:44 -0400127 { Opt_soft, "soft" },
128 { Opt_hard, "hard" },
Chuck Leverd33e4df2008-06-12 12:37:41 -0400129 { Opt_deprecated, "intr" },
130 { Opt_deprecated, "nointr" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400131 { Opt_posix, "posix" },
132 { Opt_noposix, "noposix" },
133 { Opt_cto, "cto" },
134 { Opt_nocto, "nocto" },
135 { Opt_ac, "ac" },
136 { Opt_noac, "noac" },
137 { Opt_lock, "lock" },
138 { Opt_nolock, "nolock" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400139 { Opt_udp, "udp" },
140 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400141 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400142 { Opt_acl, "acl" },
143 { Opt_noacl, "noacl" },
144 { Opt_rdirplus, "rdirplus" },
145 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400146 { Opt_sharecache, "sharecache" },
147 { Opt_nosharecache, "nosharecache" },
Chuck Leverd7403512008-12-23 15:21:37 -0500148 { Opt_resvport, "resvport" },
149 { Opt_noresvport, "noresvport" },
David Howellsb797cac2009-04-03 16:42:48 +0100150 { Opt_fscache, "fsc" },
David Howellsb797cac2009-04-03 16:42:48 +0100151 { Opt_nofscache, "nofsc" },
Chuck Lever89652612012-09-14 17:24:11 -0400152 { Opt_migration, "migration" },
153 { Opt_nomigration, "nomigration" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400154
Chuck Levera5a16ba2009-06-17 18:02:14 -0700155 { Opt_port, "port=%s" },
156 { Opt_rsize, "rsize=%s" },
157 { Opt_wsize, "wsize=%s" },
158 { Opt_bsize, "bsize=%s" },
159 { Opt_timeo, "timeo=%s" },
160 { Opt_retrans, "retrans=%s" },
161 { Opt_acregmin, "acregmin=%s" },
162 { Opt_acregmax, "acregmax=%s" },
163 { Opt_acdirmin, "acdirmin=%s" },
164 { Opt_acdirmax, "acdirmax=%s" },
165 { Opt_actimeo, "actimeo=%s" },
166 { Opt_namelen, "namlen=%s" },
167 { Opt_mountport, "mountport=%s" },
168 { Opt_mountvers, "mountvers=%s" },
Trond Myklebust0d71b052012-03-02 13:59:49 -0500169 { Opt_minorversion, "minorversion=%s" },
170
Chuck Levera5a16ba2009-06-17 18:02:14 -0700171 { Opt_nfsvers, "nfsvers=%s" },
172 { Opt_nfsvers, "vers=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400173
174 { Opt_sec, "sec=%s" },
175 { Opt_proto, "proto=%s" },
176 { Opt_mountproto, "mountproto=%s" },
177 { Opt_addr, "addr=%s" },
178 { Opt_clientaddr, "clientaddr=%s" },
Chuck Lever33832032007-12-10 14:59:13 -0500179 { Opt_mounthost, "mounthost=%s" },
Chuck Lever0ac83772007-09-11 18:01:04 -0400180 { Opt_mountaddr, "mountaddr=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400181
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400182 { Opt_lookupcache, "lookupcache=%s" },
Chuck Levera6d5ff62010-05-07 13:33:58 -0400183 { Opt_fscache_uniq, "fsc=%s" },
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400184 { Opt_local_lock, "local_lock=%s" },
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400185
Trond Myklebust38622792012-03-02 14:06:39 -0500186 /* The following needs to be listed after all other options */
187 { Opt_nfsvers, "v%s" },
188
Chuck Leverbf0fd762007-07-01 12:13:44 -0400189 { Opt_err, NULL }
190};
191
192enum {
Jeff Laytonee671b02009-12-03 15:58:56 -0500193 Opt_xprt_udp, Opt_xprt_udp6, Opt_xprt_tcp, Opt_xprt_tcp6, Opt_xprt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400194
195 Opt_xprt_err
196};
197
Steven Whitehousea447c092008-10-13 10:46:57 +0100198static const match_table_t nfs_xprt_protocol_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400199 { Opt_xprt_udp, "udp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500200 { Opt_xprt_udp6, "udp6" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400201 { Opt_xprt_tcp, "tcp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500202 { Opt_xprt_tcp6, "tcp6" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400203 { Opt_xprt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400204
205 { Opt_xprt_err, NULL }
206};
207
208enum {
209 Opt_sec_none, Opt_sec_sys,
210 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
211 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
212 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
213
214 Opt_sec_err
215};
216
Steven Whitehousea447c092008-10-13 10:46:57 +0100217static const match_table_t nfs_secflavor_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400218 { Opt_sec_none, "none" },
219 { Opt_sec_none, "null" },
220 { Opt_sec_sys, "sys" },
221
222 { Opt_sec_krb5, "krb5" },
223 { Opt_sec_krb5i, "krb5i" },
224 { Opt_sec_krb5p, "krb5p" },
225
226 { Opt_sec_lkey, "lkey" },
227 { Opt_sec_lkeyi, "lkeyi" },
228 { Opt_sec_lkeyp, "lkeyp" },
229
Olga Kornievskaia8d042212008-02-13 16:47:06 -0500230 { Opt_sec_spkm, "spkm3" },
231 { Opt_sec_spkmi, "spkm3i" },
232 { Opt_sec_spkmp, "spkm3p" },
233
Chuck Leverbf0fd762007-07-01 12:13:44 -0400234 { Opt_sec_err, NULL }
235};
236
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400237enum {
238 Opt_lookupcache_all, Opt_lookupcache_positive,
239 Opt_lookupcache_none,
240
241 Opt_lookupcache_err
242};
243
244static match_table_t nfs_lookupcache_tokens = {
245 { Opt_lookupcache_all, "all" },
246 { Opt_lookupcache_positive, "pos" },
247 { Opt_lookupcache_positive, "positive" },
248 { Opt_lookupcache_none, "none" },
249
250 { Opt_lookupcache_err, NULL }
251};
252
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400253enum {
254 Opt_local_lock_all, Opt_local_lock_flock, Opt_local_lock_posix,
255 Opt_local_lock_none,
256
257 Opt_local_lock_err
258};
259
260static match_table_t nfs_local_lock_tokens = {
261 { Opt_local_lock_all, "all" },
262 { Opt_local_lock_flock, "flock" },
263 { Opt_local_lock_posix, "posix" },
264 { Opt_local_lock_none, "none" },
265
266 { Opt_local_lock_err, NULL }
267};
268
Trond Myklebust0d71b052012-03-02 13:59:49 -0500269enum {
270 Opt_vers_2, Opt_vers_3, Opt_vers_4, Opt_vers_4_0,
271 Opt_vers_4_1,
272
273 Opt_vers_err
274};
275
276static match_table_t nfs_vers_tokens = {
277 { Opt_vers_2, "2" },
278 { Opt_vers_3, "3" },
279 { Opt_vers_4, "4" },
280 { Opt_vers_4_0, "4.0" },
281 { Opt_vers_4_1, "4.1" },
282
283 { Opt_vers_err, NULL }
284};
Chuck Leverbf0fd762007-07-01 12:13:44 -0400285
Al Viro31f43472010-10-29 03:38:12 -0400286static struct dentry *nfs_xdev_mount(struct file_system_type *fs_type,
287 int flags, const char *dev_name, void *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400288
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400289struct file_system_type nfs_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400290 .owner = THIS_MODULE,
291 .name = "nfs",
Al Viro01194982011-03-16 07:25:36 -0400292 .mount = nfs_fs_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400293 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700294 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400295};
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400296EXPORT_SYMBOL_GPL(nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400297
David Howells54ceac42006-08-22 20:06:13 -0400298struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400299 .owner = THIS_MODULE,
300 .name = "nfs",
Al Viro31f43472010-10-29 03:38:12 -0400301 .mount = nfs_xdev_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400302 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700303 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400304};
305
Bryan Schumaker6a744902012-07-30 16:05:20 -0400306const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400307 .alloc_inode = nfs_alloc_inode,
308 .destroy_inode = nfs_destroy_inode,
309 .write_inode = nfs_write_inode,
Trond Myklebusteed99352012-12-14 14:36:36 -0500310 .drop_inode = nfs_drop_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500311 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400312 .statfs = nfs_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400313 .evict_inode = nfs_evict_inode,
David Howellsf7b422b2006-06-09 09:34:33 -0400314 .umount_begin = nfs_umount_begin,
315 .show_options = nfs_show_options,
Al Viroc7f404b2011-03-16 06:59:40 -0400316 .show_devname = nfs_show_devname,
317 .show_path = nfs_show_path,
David Howellsf7b422b2006-06-09 09:34:33 -0400318 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400319 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400320};
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400321EXPORT_SYMBOL_GPL(nfs_sops);
David Howellsf7b422b2006-06-09 09:34:33 -0400322
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400323#if IS_ENABLED(CONFIG_NFS_V4)
Bryan Schumakerb72e4f42012-05-10 15:07:40 -0400324static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *);
Bryan Schumakerd72c7272012-05-10 15:07:41 -0400325static int nfs4_validate_mount_data(void *options,
326 struct nfs_parsed_mount_data *args, const char *dev_name);
bjschuma@gmail.com1ae811e2012-08-08 13:57:06 -0400327
328struct file_system_type nfs4_fs_type = {
329 .owner = THIS_MODULE,
330 .name = "nfs4",
331 .mount = nfs_fs_mount,
332 .kill_sb = nfs_kill_super,
333 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
334};
335EXPORT_SYMBOL_GPL(nfs4_fs_type);
336
337static int __init register_nfs4_fs(void)
338{
339 return register_filesystem(&nfs4_fs_type);
340}
341
342static void unregister_nfs4_fs(void)
343{
344 unregister_filesystem(&nfs4_fs_type);
345}
346#else
347static int __init register_nfs4_fs(void)
348{
349 return 0;
350}
351
352static void unregister_nfs4_fs(void)
353{
354}
David Howellsf7b422b2006-06-09 09:34:33 -0400355#endif
356
Rusty Russell8e1f9362007-07-17 04:03:17 -0700357static struct shrinker acl_shrinker = {
358 .shrink = nfs_access_cache_shrinker,
359 .seeks = DEFAULT_SEEKS,
360};
Trond Myklebust979df722006-07-25 11:28:19 -0400361
David Howellsf7b422b2006-06-09 09:34:33 -0400362/*
363 * Register the NFS filesystems
364 */
365int __init register_nfs_fs(void)
366{
367 int ret;
368
369 ret = register_filesystem(&nfs_fs_type);
370 if (ret < 0)
371 goto error_0;
372
bjschuma@gmail.com1ae811e2012-08-08 13:57:06 -0400373 ret = register_nfs4_fs();
David Howellsf7b422b2006-06-09 09:34:33 -0400374 if (ret < 0)
375 goto error_1;
bjschuma@gmail.com1ae811e2012-08-08 13:57:06 -0400376
377 ret = nfs_register_sysctl();
378 if (ret < 0)
379 goto error_2;
Rusty Russell8e1f9362007-07-17 04:03:17 -0700380 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400381 return 0;
382
bjschuma@gmail.com1ae811e2012-08-08 13:57:06 -0400383error_2:
384 unregister_nfs4_fs();
David Howellsf7b422b2006-06-09 09:34:33 -0400385error_1:
386 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400387error_0:
388 return ret;
389}
390
391/*
392 * Unregister the NFS filesystems
393 */
394void __exit unregister_nfs_fs(void)
395{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700396 unregister_shrinker(&acl_shrinker);
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700397 nfs_unregister_sysctl();
bjschuma@gmail.com1ae811e2012-08-08 13:57:06 -0400398 unregister_nfs4_fs();
David Howellsf7b422b2006-06-09 09:34:33 -0400399 unregister_filesystem(&nfs_fs_type);
400}
401
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400402void nfs_sb_active(struct super_block *sb)
Steve Dicksonef818a22007-11-08 04:05:04 -0500403{
404 struct nfs_server *server = NFS_SB(sb);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400405
406 if (atomic_inc_return(&server->active) == 1)
407 atomic_inc(&sb->s_active);
408}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400409EXPORT_SYMBOL_GPL(nfs_sb_active);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400410
411void nfs_sb_deactive(struct super_block *sb)
412{
413 struct nfs_server *server = NFS_SB(sb);
414
415 if (atomic_dec_and_test(&server->active))
416 deactivate_super(sb);
Steve Dicksonef818a22007-11-08 04:05:04 -0500417}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400418EXPORT_SYMBOL_GPL(nfs_sb_deactive);
Steve Dicksonef818a22007-11-08 04:05:04 -0500419
David Howellsf7b422b2006-06-09 09:34:33 -0400420/*
421 * Deliver file system statistics to userspace
422 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400423int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400424{
David Howells0c7d90c2006-08-22 20:06:10 -0400425 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400426 unsigned char blockbits;
427 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400428 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400429 struct nfs_fsstat res;
430 int error = -ENOMEM;
431
432 res.fattr = nfs_alloc_fattr();
433 if (res.fattr == NULL)
434 goto out_err;
David Howellsf7b422b2006-06-09 09:34:33 -0400435
David Howells8fa5c002006-08-22 20:06:12 -0400436 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400437 if (unlikely(error == -ESTALE)) {
438 struct dentry *pd_dentry;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400439
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400440 pd_dentry = dget_parent(dentry);
441 if (pd_dentry != NULL) {
442 nfs_zap_caches(pd_dentry->d_inode);
443 dput(pd_dentry);
444 }
445 }
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400446 nfs_free_fattr(res.fattr);
David Howellsf7b422b2006-06-09 09:34:33 -0400447 if (error < 0)
448 goto out_err;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400449
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700450 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400451
452 /*
453 * Current versions of glibc do not correctly handle the
454 * case where f_frsize != f_bsize. Eventually we want to
455 * report the value of wtmult in this field.
456 */
David Howells0c7d90c2006-08-22 20:06:10 -0400457 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400458
459 /*
460 * On most *nix systems, f_blocks, f_bfree, and f_bavail
461 * are reported in units of f_frsize. Linux hasn't had
462 * an f_frsize field in its statfs struct until recently,
463 * thus historically Linux's sys_statfs reports these
464 * fields in units of f_bsize.
465 */
David Howells0c7d90c2006-08-22 20:06:10 -0400466 buf->f_bsize = dentry->d_sb->s_blocksize;
467 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400468 blockres = (1 << blockbits) - 1;
469 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
470 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
471 buf->f_bavail = (res.abytes + blockres) >> blockbits;
472
473 buf->f_files = res.tfiles;
474 buf->f_ffree = res.afiles;
475
476 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700477
David Howellsf7b422b2006-06-09 09:34:33 -0400478 return 0;
479
480 out_err:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700481 dprintk("%s: statfs error = %d\n", __func__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700482 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400483}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400484EXPORT_SYMBOL_GPL(nfs_statfs);
David Howellsf7b422b2006-06-09 09:34:33 -0400485
David Howells7d4e2742006-08-22 20:06:07 -0400486/*
487 * Map the security flavour number to a name
488 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400489static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
490{
David Howells7d4e2742006-08-22 20:06:07 -0400491 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400492 rpc_authflavor_t flavour;
493 const char *str;
494 } sec_flavours[] = {
495 { RPC_AUTH_NULL, "null" },
496 { RPC_AUTH_UNIX, "sys" },
497 { RPC_AUTH_GSS_KRB5, "krb5" },
498 { RPC_AUTH_GSS_KRB5I, "krb5i" },
499 { RPC_AUTH_GSS_KRB5P, "krb5p" },
500 { RPC_AUTH_GSS_LKEY, "lkey" },
501 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
502 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
503 { RPC_AUTH_GSS_SPKM, "spkm" },
504 { RPC_AUTH_GSS_SPKMI, "spkmi" },
505 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400506 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400507 };
508 int i;
509
Chuck Lever4d81cd12007-07-01 12:12:40 -0400510 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400511 if (sec_flavours[i].flavour == flavour)
512 break;
513 }
514 return sec_flavours[i].str;
515}
516
Jeff Laytonee671b02009-12-03 15:58:56 -0500517static void nfs_show_mountd_netid(struct seq_file *m, struct nfs_server *nfss,
518 int showdefaults)
519{
520 struct sockaddr *sap = (struct sockaddr *) &nfss->mountd_address;
521
522 seq_printf(m, ",mountproto=");
523 switch (sap->sa_family) {
524 case AF_INET:
525 switch (nfss->mountd_protocol) {
526 case IPPROTO_UDP:
527 seq_printf(m, RPCBIND_NETID_UDP);
528 break;
529 case IPPROTO_TCP:
530 seq_printf(m, RPCBIND_NETID_TCP);
531 break;
532 default:
533 if (showdefaults)
534 seq_printf(m, "auto");
535 }
536 break;
537 case AF_INET6:
538 switch (nfss->mountd_protocol) {
539 case IPPROTO_UDP:
540 seq_printf(m, RPCBIND_NETID_UDP6);
541 break;
542 case IPPROTO_TCP:
543 seq_printf(m, RPCBIND_NETID_TCP6);
544 break;
545 default:
546 if (showdefaults)
547 seq_printf(m, "auto");
548 }
549 break;
550 default:
551 if (showdefaults)
552 seq_printf(m, "auto");
553 }
554}
555
Chuck Lever82d101d2008-03-14 14:10:37 -0400556static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss,
557 int showdefaults)
558{
559 struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address;
560
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -0400561 if (nfss->flags & NFS_MOUNT_LEGACY_INTERFACE)
562 return;
563
Chuck Lever82d101d2008-03-14 14:10:37 -0400564 switch (sap->sa_family) {
565 case AF_INET: {
566 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
Harvey Harrisonbe859402008-10-31 00:56:28 -0700567 seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400568 break;
569 }
570 case AF_INET6: {
571 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
Chuck Leverd250e192009-12-03 15:58:56 -0500572 seq_printf(m, ",mountaddr=%pI6c", &sin6->sin6_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400573 break;
574 }
575 default:
576 if (showdefaults)
577 seq_printf(m, ",mountaddr=unspecified");
578 }
579
580 if (nfss->mountd_version || showdefaults)
581 seq_printf(m, ",mountvers=%u", nfss->mountd_version);
Stanislav Kinsburskyaa699472010-12-08 12:40:13 +0300582 if ((nfss->mountd_port &&
583 nfss->mountd_port != (unsigned short)NFS_UNSPEC_PORT) ||
584 showdefaults)
Chuck Lever82d101d2008-03-14 14:10:37 -0400585 seq_printf(m, ",mountport=%u", nfss->mountd_port);
586
Jeff Laytonee671b02009-12-03 15:58:56 -0500587 nfs_show_mountd_netid(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400588}
589
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400590#if IS_ENABLED(CONFIG_NFS_V4)
Trond Myklebust0be81892010-06-18 12:23:58 -0400591static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
592 int showdefaults)
593{
594 struct nfs_client *clp = nfss->nfs_client;
595
596 seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr);
Trond Myklebust0be81892010-06-18 12:23:58 -0400597}
598#else
599static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
600 int showdefaults)
601{
602}
603#endif
604
Trond Myklebust7bbceb62012-03-02 14:00:20 -0500605static void nfs_show_nfs_version(struct seq_file *m,
606 unsigned int version,
607 unsigned int minorversion)
608{
609 seq_printf(m, ",vers=%u", version);
610 if (version == 4)
611 seq_printf(m, ".%u", minorversion);
612}
613
David Howellsf7b422b2006-06-09 09:34:33 -0400614/*
615 * Describe the mount options in force on this server representation
616 */
Chuck Lever82d101d2008-03-14 14:10:37 -0400617static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
618 int showdefaults)
David Howellsf7b422b2006-06-09 09:34:33 -0400619{
David Howells509de812006-08-22 20:06:11 -0400620 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400621 int flag;
David Howells509de812006-08-22 20:06:11 -0400622 const char *str;
623 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400624 } nfs_info[] = {
625 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Lever82d101d2008-03-14 14:10:37 -0400626 { NFS_MOUNT_POSIX, ",posix", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400627 { NFS_MOUNT_NOCTO, ",nocto", "" },
628 { NFS_MOUNT_NOAC, ",noac", "" },
629 { NFS_MOUNT_NONLM, ",nolock", "" },
630 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400631 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Chuck Leverd7403512008-12-23 15:21:37 -0500632 { NFS_MOUNT_UNSHARED, ",nosharecache", "" },
633 { NFS_MOUNT_NORESVPORT, ",noresvport", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400634 { 0, NULL, NULL }
635 };
David Howells509de812006-08-22 20:06:11 -0400636 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400637 struct nfs_client *clp = nfss->nfs_client;
Chuck Lever82d101d2008-03-14 14:10:37 -0400638 u32 version = clp->rpc_ops->version;
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400639 int local_flock, local_fcntl;
David Howellsf7b422b2006-06-09 09:34:33 -0400640
Trond Myklebust7bbceb62012-03-02 14:00:20 -0500641 nfs_show_nfs_version(m, version, clp->cl_minorversion);
Chuck Lever2d767432008-03-14 14:10:08 -0400642 seq_printf(m, ",rsize=%u", nfss->rsize);
643 seq_printf(m, ",wsize=%u", nfss->wsize);
Chuck Lever82d101d2008-03-14 14:10:37 -0400644 if (nfss->bsize != 0)
645 seq_printf(m, ",bsize=%u", nfss->bsize);
646 seq_printf(m, ",namlen=%u", nfss->namelen);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400647 if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400648 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400649 if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400650 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400651 if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400652 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400653 if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400654 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400655 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
656 if (nfss->flags & nfs_infop->flag)
657 seq_puts(m, nfs_infop->str);
658 else
659 seq_puts(m, nfs_infop->nostr);
660 }
Trond Myklebust2446ab62012-03-01 17:00:56 -0500661 rcu_read_lock();
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400662 seq_printf(m, ",proto=%s",
Jeff Laytonee671b02009-12-03 15:58:56 -0500663 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_NETID));
Trond Myklebust2446ab62012-03-01 17:00:56 -0500664 rcu_read_unlock();
Chuck Lever82d101d2008-03-14 14:10:37 -0400665 if (version == 4) {
666 if (nfss->port != NFS_PORT)
667 seq_printf(m, ",port=%u", nfss->port);
668 } else
669 if (nfss->port)
670 seq_printf(m, ",port=%u", nfss->port);
671
Trond Myklebust33170232007-12-20 16:03:59 -0500672 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
673 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
Trond Myklebust81039f12006-06-09 09:34:34 -0400674 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
Chuck Lever82d101d2008-03-14 14:10:37 -0400675
676 if (version != 4)
677 nfs_show_mountd_options(m, nfss, showdefaults);
Trond Myklebust0be81892010-06-18 12:23:58 -0400678 else
679 nfs_show_nfsv4_options(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400680
David Howellsb797cac2009-04-03 16:42:48 +0100681 if (nfss->options & NFS_OPTION_FSCACHE)
682 seq_printf(m, ",fsc");
Patrick J. LoPresti9b00c642010-08-10 17:28:01 -0400683
Chuck Lever89652612012-09-14 17:24:11 -0400684 if (nfss->options & NFS_OPTION_MIGRATION)
685 seq_printf(m, ",migration");
686
Patrick J. LoPresti9b00c642010-08-10 17:28:01 -0400687 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) {
688 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
689 seq_printf(m, ",lookupcache=none");
690 else
691 seq_printf(m, ",lookupcache=pos");
692 }
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400693
694 local_flock = nfss->flags & NFS_MOUNT_LOCAL_FLOCK;
695 local_fcntl = nfss->flags & NFS_MOUNT_LOCAL_FCNTL;
696
697 if (!local_flock && !local_fcntl)
698 seq_printf(m, ",local_lock=none");
699 else if (local_flock && local_fcntl)
700 seq_printf(m, ",local_lock=all");
701 else if (local_flock)
702 seq_printf(m, ",local_lock=flock");
703 else
704 seq_printf(m, ",local_lock=posix");
David Howellsf7b422b2006-06-09 09:34:33 -0400705}
706
707/*
708 * Describe the mount options on this VFS mountpoint
709 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400710int nfs_show_options(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400711{
Al Viro34c80b12011-12-08 21:32:45 -0500712 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400713
714 nfs_show_mount_options(m, nfss, 0);
715
Trond Myklebust2446ab62012-03-01 17:00:56 -0500716 rcu_read_lock();
Chuck Lever5d8515c2007-12-10 14:57:16 -0500717 seq_printf(m, ",addr=%s",
718 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
719 RPC_DISPLAY_ADDR));
Trond Myklebust2446ab62012-03-01 17:00:56 -0500720 rcu_read_unlock();
David Howellsf7b422b2006-06-09 09:34:33 -0400721
722 return 0;
723}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400724EXPORT_SYMBOL_GPL(nfs_show_options);
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700725
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400726#if IS_ENABLED(CONFIG_NFS_V4)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300727#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700728static void show_sessions(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300729{
730 if (nfs4_has_session(server->nfs_client))
731 seq_printf(m, ",sessions");
732}
733#else
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700734static void show_sessions(struct seq_file *m, struct nfs_server *server) {}
735#endif
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300736#endif
737
738#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700739static void show_pnfs(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300740{
741 seq_printf(m, ",pnfs=");
742 if (server->pnfs_curr_ld)
743 seq_printf(m, "%s", server->pnfs_curr_ld->name);
744 else
745 seq_printf(m, "not configured");
746}
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500747
748static void show_implementation_id(struct seq_file *m, struct nfs_server *nfss)
749{
Chuck Lever59155542012-05-21 22:44:41 -0400750 if (nfss->nfs_client && nfss->nfs_client->cl_implid) {
751 struct nfs41_impl_id *impl_id = nfss->nfs_client->cl_implid;
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500752 seq_printf(m, "\n\timpl_id:\tname='%s',domain='%s',"
753 "date='%llu,%u'",
754 impl_id->name, impl_id->domain,
755 impl_id->date.seconds, impl_id->date.nseconds);
756 }
757}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700758#else
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400759#if IS_ENABLED(CONFIG_NFS_V4)
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500760static void show_pnfs(struct seq_file *m, struct nfs_server *server)
761{
762}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700763#endif
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500764static void show_implementation_id(struct seq_file *m, struct nfs_server *nfss)
765{
766}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700767#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400768
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400769int nfs_show_devname(struct seq_file *m, struct dentry *root)
Al Viroc7f404b2011-03-16 06:59:40 -0400770{
771 char *page = (char *) __get_free_page(GFP_KERNEL);
772 char *devname, *dummy;
773 int err = 0;
774 if (!page)
775 return -ENOMEM;
Ben Hutchings97a54862012-10-21 19:23:52 +0100776 devname = nfs_path(&dummy, root, page, PAGE_SIZE, 0);
Al Viroc7f404b2011-03-16 06:59:40 -0400777 if (IS_ERR(devname))
778 err = PTR_ERR(devname);
779 else
780 seq_escape(m, devname, " \t\n\\");
781 free_page((unsigned long)page);
782 return err;
783}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400784EXPORT_SYMBOL_GPL(nfs_show_devname);
Al Viroc7f404b2011-03-16 06:59:40 -0400785
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400786int nfs_show_path(struct seq_file *m, struct dentry *dentry)
Al Viroc7f404b2011-03-16 06:59:40 -0400787{
788 seq_puts(m, "/");
789 return 0;
790}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400791EXPORT_SYMBOL_GPL(nfs_show_path);
Al Viroc7f404b2011-03-16 06:59:40 -0400792
David Howellsf7b422b2006-06-09 09:34:33 -0400793/*
794 * Present statistical information for this VFS mountpoint
795 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400796int nfs_show_stats(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400797{
798 int i, cpu;
Al Viro64132372011-12-08 20:51:13 -0500799 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400800 struct rpc_auth *auth = nfss->client->cl_auth;
801 struct nfs_iostats totals = { };
802
803 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
804
805 /*
806 * Display all mount option settings
807 */
808 seq_printf(m, "\n\topts:\t");
Al Viro64132372011-12-08 20:51:13 -0500809 seq_puts(m, root->d_sb->s_flags & MS_RDONLY ? "ro" : "rw");
810 seq_puts(m, root->d_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
811 seq_puts(m, root->d_sb->s_flags & MS_NOATIME ? ",noatime" : "");
812 seq_puts(m, root->d_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
David Howellsf7b422b2006-06-09 09:34:33 -0400813 nfs_show_mount_options(m, nfss, 1);
814
815 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
816
Trond Myklebust7e03b7c2012-03-04 18:12:57 -0500817 show_implementation_id(m, nfss);
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500818
David Howellsf7b422b2006-06-09 09:34:33 -0400819 seq_printf(m, "\n\tcaps:\t");
820 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400821 seq_printf(m, ",wtmult=%u", nfss->wtmult);
822 seq_printf(m, ",dtsize=%u", nfss->dtsize);
823 seq_printf(m, ",bsize=%u", nfss->bsize);
824 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400825
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400826#if IS_ENABLED(CONFIG_NFS_V4)
Trond Myklebust40c553192007-12-14 14:56:07 -0500827 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400828 seq_printf(m, "\n\tnfsv4:\t");
829 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
830 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
831 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300832 show_sessions(m, nfss);
833 show_pnfs(m, nfss);
David Howellsf7b422b2006-06-09 09:34:33 -0400834 }
835#endif
836
837 /*
838 * Display security flavor in effect for this mount
839 */
Chuck Lever2d767432008-03-14 14:10:08 -0400840 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400841 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400842 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400843
844 /*
845 * Display superblock I/O counters
846 */
847 for_each_possible_cpu(cpu) {
848 struct nfs_iostats *stats;
849
850 preempt_disable();
851 stats = per_cpu_ptr(nfss->io_stats, cpu);
852
853 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
854 totals.events[i] += stats->events[i];
855 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
856 totals.bytes[i] += stats->bytes[i];
David Howells6a510912009-04-03 16:42:43 +0100857#ifdef CONFIG_NFS_FSCACHE
858 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
859 totals.fscache[i] += stats->fscache[i];
860#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400861
862 preempt_enable();
863 }
864
865 seq_printf(m, "\n\tevents:\t");
866 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
867 seq_printf(m, "%lu ", totals.events[i]);
868 seq_printf(m, "\n\tbytes:\t");
869 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
870 seq_printf(m, "%Lu ", totals.bytes[i]);
David Howells6a510912009-04-03 16:42:43 +0100871#ifdef CONFIG_NFS_FSCACHE
872 if (nfss->options & NFS_OPTION_FSCACHE) {
873 seq_printf(m, "\n\tfsc:\t");
874 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
875 seq_printf(m, "%Lu ", totals.bytes[i]);
876 }
877#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400878 seq_printf(m, "\n");
879
880 rpc_print_iostats(m, nfss->client);
881
882 return 0;
883}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400884EXPORT_SYMBOL_GPL(nfs_show_stats);
David Howellsf7b422b2006-06-09 09:34:33 -0400885
886/*
887 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400888 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400889 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -0400890void nfs_umount_begin(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -0400891{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200892 struct nfs_server *server;
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400893 struct rpc_clnt *rpc;
894
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200895 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400896 /* -EIO all pending I/O */
897 rpc = server->client_acl;
898 if (!IS_ERR(rpc))
899 rpc_killall_tasks(rpc);
900 rpc = server->client;
901 if (!IS_ERR(rpc))
902 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400903}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400904EXPORT_SYMBOL_GPL(nfs_umount_begin);
David Howellsf7b422b2006-06-09 09:34:33 -0400905
Bryan Schumakerdb833352012-05-10 15:07:38 -0400906static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(void)
Chuck Lever9423a082009-09-23 14:36:38 -0400907{
908 struct nfs_parsed_mount_data *data;
909
910 data = kzalloc(sizeof(*data), GFP_KERNEL);
911 if (data) {
Chuck Lever9423a082009-09-23 14:36:38 -0400912 data->acregmin = NFS_DEF_ACREGMIN;
913 data->acregmax = NFS_DEF_ACREGMAX;
914 data->acdirmin = NFS_DEF_ACDIRMIN;
915 data->acdirmax = NFS_DEF_ACDIRMAX;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400916 data->mount_server.port = NFS_UNSPEC_PORT;
Chuck Lever9423a082009-09-23 14:36:38 -0400917 data->nfs_server.port = NFS_UNSPEC_PORT;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400918 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Lever9423a082009-09-23 14:36:38 -0400919 data->auth_flavors[0] = RPC_AUTH_UNIX;
920 data->auth_flavor_len = 1;
921 data->minorversion = 0;
Bryan Schumakerb72e4f42012-05-10 15:07:40 -0400922 data->need_mount = true;
Trond Myklebust9937347a2012-02-19 08:44:07 +0100923 data->net = current->nsproxy->net_ns;
Jeff Layton8a0d5512011-12-20 06:57:45 -0500924 security_init_mnt_opts(&data->lsm_opts);
Chuck Lever9423a082009-09-23 14:36:38 -0400925 }
926 return data;
927}
928
Jeff Layton8a0d5512011-12-20 06:57:45 -0500929static void nfs_free_parsed_mount_data(struct nfs_parsed_mount_data *data)
930{
931 if (data) {
932 kfree(data->client_address);
933 kfree(data->mount_server.hostname);
934 kfree(data->nfs_server.export_path);
935 kfree(data->nfs_server.hostname);
936 kfree(data->fscache_uniq);
937 security_free_mnt_opts(&data->lsm_opts);
938 kfree(data);
939 }
940}
941
David Howellsf7b422b2006-06-09 09:34:33 -0400942/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500943 * Sanity-check a server address provided by the mount command.
944 *
945 * Address family must be initialized, and address must not be
946 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400947 */
948static int nfs_verify_server_address(struct sockaddr *addr)
949{
950 switch (addr->sa_family) {
951 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500952 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700953 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500954 }
955 case AF_INET6: {
956 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
957 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400958 }
959 }
960
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400961 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400962 return 0;
963}
964
Chuck Lever9412b922007-12-10 14:59:21 -0500965/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400966 * Select between a default port value and a user-specified port value.
967 * If a zero value is set, then autobind will be used.
968 */
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400969static void nfs_set_port(struct sockaddr *sap, int *port,
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400970 const unsigned short default_port)
971{
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400972 if (*port == NFS_UNSPEC_PORT)
973 *port = default_port;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400974
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400975 rpc_set_port(sap, *port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400976}
977
978/*
Trond Myklebust259875e2008-07-02 14:43:47 -0400979 * Sanity check the NFS transport protocol.
980 *
981 */
982static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
983{
984 switch (mnt->nfs_server.protocol) {
985 case XPRT_TRANSPORT_UDP:
986 case XPRT_TRANSPORT_TCP:
987 case XPRT_TRANSPORT_RDMA:
988 break;
989 default:
990 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
991 }
992}
993
994/*
995 * For text based NFSv2/v3 mounts, the mount protocol transport default
996 * settings should depend upon the specified NFS transport.
997 */
998static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
999{
1000 nfs_validate_transport_protocol(mnt);
1001
1002 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
1003 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
1004 return;
1005 switch (mnt->nfs_server.protocol) {
1006 case XPRT_TRANSPORT_UDP:
1007 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
1008 break;
1009 case XPRT_TRANSPORT_TCP:
1010 case XPRT_TRANSPORT_RDMA:
1011 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
1012 }
1013}
1014
1015/*
Chuck Lever01060c82008-06-24 16:33:38 -04001016 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -04001017 */
1018static int nfs_parse_security_flavors(char *value,
1019 struct nfs_parsed_mount_data *mnt)
1020{
1021 substring_t args[MAX_OPT_ARGS];
1022
1023 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
1024
1025 switch (match_token(value, nfs_secflavor_tokens, args)) {
1026 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -04001027 mnt->auth_flavors[0] = RPC_AUTH_NULL;
1028 break;
1029 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -04001030 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
1031 break;
1032 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -04001033 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
1034 break;
1035 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -04001036 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
1037 break;
1038 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -04001039 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
1040 break;
1041 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -04001042 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
1043 break;
1044 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -04001045 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
1046 break;
1047 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -04001048 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
1049 break;
1050 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -04001051 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
1052 break;
1053 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -04001054 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
1055 break;
1056 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -04001057 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
1058 break;
1059 default:
1060 return 0;
1061 }
1062
Bryan Schumaker9b7160c2011-04-13 14:31:30 -04001063 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
Chuck Lever059f90b2009-08-09 15:09:31 -04001064 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -04001065 return 1;
1066}
1067
Trond Myklebust0d71b052012-03-02 13:59:49 -05001068static int nfs_parse_version_string(char *string,
1069 struct nfs_parsed_mount_data *mnt,
1070 substring_t *args)
1071{
1072 mnt->flags &= ~NFS_MOUNT_VER3;
1073 switch (match_token(string, nfs_vers_tokens, args)) {
1074 case Opt_vers_2:
1075 mnt->version = 2;
1076 break;
1077 case Opt_vers_3:
1078 mnt->flags |= NFS_MOUNT_VER3;
1079 mnt->version = 3;
1080 break;
1081 case Opt_vers_4:
1082 /* Backward compatibility option. In future,
1083 * the mount program should always supply
1084 * a NFSv4 minor version number.
1085 */
1086 mnt->version = 4;
1087 break;
1088 case Opt_vers_4_0:
1089 mnt->version = 4;
1090 mnt->minorversion = 0;
1091 break;
1092 case Opt_vers_4_1:
1093 mnt->version = 4;
1094 mnt->minorversion = 1;
1095 break;
1096 default:
1097 return 0;
1098 }
1099 return 1;
1100}
1101
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001102static int nfs_get_option_str(substring_t args[], char **option)
1103{
1104 kfree(*option);
1105 *option = match_strdup(args);
Xi Wange25fbe32013-01-04 03:22:57 -05001106 return !*option;
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001107}
1108
1109static int nfs_get_option_ul(substring_t args[], unsigned long *option)
1110{
1111 int rc;
1112 char *string;
1113
1114 string = match_strdup(args);
1115 if (string == NULL)
1116 return -ENOMEM;
Daniel Walter7297cb62012-09-26 21:51:46 +02001117 rc = kstrtoul(string, 10, option);
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001118 kfree(string);
1119
1120 return rc;
1121}
1122
Chuck Lever01060c82008-06-24 16:33:38 -04001123/*
Chuck Leverbf0fd762007-07-01 12:13:44 -04001124 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -04001125 * a data structure. The whole mount string is processed; bad options are
1126 * skipped as they are encountered. If there were no errors, return 1;
1127 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -04001128 */
1129static int nfs_parse_mount_options(char *raw,
1130 struct nfs_parsed_mount_data *mnt)
1131{
Eric Parisf9c3a382008-03-05 14:20:18 -05001132 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001133 int rc, sloppy = 0, invalid_option = 0;
Jeff Laytonee671b02009-12-03 15:58:56 -05001134 unsigned short protofamily = AF_UNSPEC;
1135 unsigned short mountfamily = AF_UNSPEC;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001136
1137 if (!raw) {
1138 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
1139 return 1;
1140 }
1141 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
1142
Eric Parisf9c3a382008-03-05 14:20:18 -05001143 secdata = alloc_secdata();
1144 if (!secdata)
1145 goto out_nomem;
1146
1147 rc = security_sb_copy_data(raw, secdata);
1148 if (rc)
1149 goto out_security_failure;
1150
1151 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
1152 if (rc)
1153 goto out_security_failure;
1154
1155 free_secdata(secdata);
1156
Chuck Leverbf0fd762007-07-01 12:13:44 -04001157 while ((p = strsep(&raw, ",")) != NULL) {
1158 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -07001159 unsigned long option;
1160 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001161
1162 if (!*p)
1163 continue;
1164
1165 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
1166
1167 token = match_token(p, nfs_mount_option_tokens, args);
1168 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001169
1170 /*
1171 * boolean options: foo/nofoo
1172 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001173 case Opt_soft:
1174 mnt->flags |= NFS_MOUNT_SOFT;
1175 break;
1176 case Opt_hard:
1177 mnt->flags &= ~NFS_MOUNT_SOFT;
1178 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001179 case Opt_posix:
1180 mnt->flags |= NFS_MOUNT_POSIX;
1181 break;
1182 case Opt_noposix:
1183 mnt->flags &= ~NFS_MOUNT_POSIX;
1184 break;
1185 case Opt_cto:
1186 mnt->flags &= ~NFS_MOUNT_NOCTO;
1187 break;
1188 case Opt_nocto:
1189 mnt->flags |= NFS_MOUNT_NOCTO;
1190 break;
1191 case Opt_ac:
1192 mnt->flags &= ~NFS_MOUNT_NOAC;
1193 break;
1194 case Opt_noac:
1195 mnt->flags |= NFS_MOUNT_NOAC;
1196 break;
1197 case Opt_lock:
1198 mnt->flags &= ~NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001199 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1200 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001201 break;
1202 case Opt_nolock:
1203 mnt->flags |= NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001204 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1205 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001206 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001207 case Opt_udp:
1208 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001209 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001210 break;
1211 case Opt_tcp:
1212 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001213 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001214 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001215 case Opt_rdma:
1216 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
1217 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001218 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001219 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001220 case Opt_acl:
1221 mnt->flags &= ~NFS_MOUNT_NOACL;
1222 break;
1223 case Opt_noacl:
1224 mnt->flags |= NFS_MOUNT_NOACL;
1225 break;
1226 case Opt_rdirplus:
1227 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
1228 break;
1229 case Opt_nordirplus:
1230 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
1231 break;
Trond Myklebust75180df2007-05-16 16:53:28 -04001232 case Opt_sharecache:
1233 mnt->flags &= ~NFS_MOUNT_UNSHARED;
1234 break;
1235 case Opt_nosharecache:
1236 mnt->flags |= NFS_MOUNT_UNSHARED;
1237 break;
Chuck Leverd7403512008-12-23 15:21:37 -05001238 case Opt_resvport:
1239 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1240 break;
1241 case Opt_noresvport:
1242 mnt->flags |= NFS_MOUNT_NORESVPORT;
1243 break;
David Howellsb797cac2009-04-03 16:42:48 +01001244 case Opt_fscache:
1245 mnt->options |= NFS_OPTION_FSCACHE;
1246 kfree(mnt->fscache_uniq);
1247 mnt->fscache_uniq = NULL;
1248 break;
1249 case Opt_nofscache:
1250 mnt->options &= ~NFS_OPTION_FSCACHE;
1251 kfree(mnt->fscache_uniq);
1252 mnt->fscache_uniq = NULL;
1253 break;
Chuck Lever89652612012-09-14 17:24:11 -04001254 case Opt_migration:
1255 mnt->options |= NFS_OPTION_MIGRATION;
1256 break;
1257 case Opt_nomigration:
1258 mnt->options &= NFS_OPTION_MIGRATION;
1259 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001260
Chuck Leverf45663c2008-06-24 19:28:02 -04001261 /*
1262 * options that take numeric values
1263 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001264 case Opt_port:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001265 if (nfs_get_option_ul(args, &option) ||
1266 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001267 goto out_invalid_value;
1268 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001269 break;
1270 case Opt_rsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001271 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001272 goto out_invalid_value;
1273 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001274 break;
1275 case Opt_wsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001276 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001277 goto out_invalid_value;
1278 mnt->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001279 break;
1280 case Opt_bsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001281 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001282 goto out_invalid_value;
1283 mnt->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001284 break;
1285 case Opt_timeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001286 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001287 goto out_invalid_value;
1288 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001289 break;
1290 case Opt_retrans:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001291 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001292 goto out_invalid_value;
1293 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001294 break;
1295 case Opt_acregmin:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001296 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001297 goto out_invalid_value;
1298 mnt->acregmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001299 break;
1300 case Opt_acregmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001301 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001302 goto out_invalid_value;
1303 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001304 break;
1305 case Opt_acdirmin:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001306 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001307 goto out_invalid_value;
1308 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001309 break;
1310 case Opt_acdirmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001311 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001312 goto out_invalid_value;
1313 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001314 break;
1315 case Opt_actimeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001316 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001317 goto out_invalid_value;
1318 mnt->acregmin = mnt->acregmax =
1319 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001320 break;
1321 case Opt_namelen:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001322 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001323 goto out_invalid_value;
1324 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001325 break;
1326 case Opt_mountport:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001327 if (nfs_get_option_ul(args, &option) ||
1328 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001329 goto out_invalid_value;
1330 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001331 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001332 case Opt_mountvers:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001333 if (nfs_get_option_ul(args, &option) ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001334 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001335 option > NFS_MNT3_VERSION)
1336 goto out_invalid_value;
1337 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001338 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001339 case Opt_minorversion:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001340 if (nfs_get_option_ul(args, &option))
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001341 goto out_invalid_value;
1342 if (option > NFS4_MAX_MINOR_VERSION)
1343 goto out_invalid_value;
1344 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001345 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001346
Chuck Leverf45663c2008-06-24 19:28:02 -04001347 /*
1348 * options that take text values
1349 */
Trond Myklebust0d71b052012-03-02 13:59:49 -05001350 case Opt_nfsvers:
1351 string = match_strdup(args);
1352 if (string == NULL)
1353 goto out_nomem;
1354 rc = nfs_parse_version_string(string, mnt, args);
1355 kfree(string);
1356 if (!rc)
1357 goto out_invalid_value;
1358 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001359 case Opt_sec:
1360 string = match_strdup(args);
1361 if (string == NULL)
1362 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001363 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001364 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001365 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001366 dfprintk(MOUNT, "NFS: unrecognized "
1367 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001368 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001369 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001370 break;
1371 case Opt_proto:
1372 string = match_strdup(args);
1373 if (string == NULL)
1374 goto out_nomem;
1375 token = match_token(string,
1376 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001377
Jeff Laytonee671b02009-12-03 15:58:56 -05001378 protofamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001379 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001380 case Opt_xprt_udp6:
1381 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001382 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001383 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001384 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001385 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001386 case Opt_xprt_tcp6:
1387 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001388 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001389 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001390 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001391 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001392 case Opt_xprt_rdma:
1393 /* vector side protocols to TCP */
1394 mnt->flags |= NFS_MOUNT_TCP;
1395 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001396 xprt_load_transport(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001397 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001398 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001399 dfprintk(MOUNT, "NFS: unrecognized "
1400 "transport protocol\n");
Yinghai Lu4223a4a2009-10-20 14:13:46 +09001401 kfree(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001402 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001403 }
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001404 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001405 break;
1406 case Opt_mountproto:
1407 string = match_strdup(args);
1408 if (string == NULL)
1409 goto out_nomem;
1410 token = match_token(string,
1411 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001412 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001413
Jeff Laytonee671b02009-12-03 15:58:56 -05001414 mountfamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001415 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001416 case Opt_xprt_udp6:
1417 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001418 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001419 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001420 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001421 case Opt_xprt_tcp6:
1422 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001423 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001424 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001425 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001426 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001427 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001428 dfprintk(MOUNT, "NFS: unrecognized "
1429 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001430 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001431 }
1432 break;
1433 case Opt_addr:
1434 string = match_strdup(args);
1435 if (string == NULL)
1436 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001437 mnt->nfs_server.addrlen =
Stanislav Kinsburskyb48e1272012-01-26 15:11:57 +04001438 rpc_pton(mnt->net, string, strlen(string),
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001439 (struct sockaddr *)
1440 &mnt->nfs_server.address,
1441 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001442 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001443 if (mnt->nfs_server.addrlen == 0)
1444 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001445 break;
1446 case Opt_clientaddr:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001447 if (nfs_get_option_str(args, &mnt->client_address))
Chuck Leverbf0fd762007-07-01 12:13:44 -04001448 goto out_nomem;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001449 break;
Chuck Lever33832032007-12-10 14:59:13 -05001450 case Opt_mounthost:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001451 if (nfs_get_option_str(args,
1452 &mnt->mount_server.hostname))
Chuck Lever33832032007-12-10 14:59:13 -05001453 goto out_nomem;
Chuck Lever33832032007-12-10 14:59:13 -05001454 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001455 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001456 string = match_strdup(args);
1457 if (string == NULL)
1458 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001459 mnt->mount_server.addrlen =
Stanislav Kinsburskyb48e1272012-01-26 15:11:57 +04001460 rpc_pton(mnt->net, string, strlen(string),
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001461 (struct sockaddr *)
1462 &mnt->mount_server.address,
1463 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001464 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001465 if (mnt->mount_server.addrlen == 0)
1466 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001467 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001468 case Opt_lookupcache:
1469 string = match_strdup(args);
1470 if (string == NULL)
1471 goto out_nomem;
1472 token = match_token(string,
1473 nfs_lookupcache_tokens, args);
1474 kfree(string);
1475 switch (token) {
1476 case Opt_lookupcache_all:
1477 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1478 break;
1479 case Opt_lookupcache_positive:
1480 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1481 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1482 break;
1483 case Opt_lookupcache_none:
1484 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1485 break;
1486 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001487 dfprintk(MOUNT, "NFS: invalid "
1488 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001489 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001490 };
1491 break;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001492 case Opt_fscache_uniq:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001493 if (nfs_get_option_str(args, &mnt->fscache_uniq))
Chuck Levera6d5ff62010-05-07 13:33:58 -04001494 goto out_nomem;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001495 mnt->options |= NFS_OPTION_FSCACHE;
1496 break;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001497 case Opt_local_lock:
1498 string = match_strdup(args);
1499 if (string == NULL)
1500 goto out_nomem;
1501 token = match_token(string, nfs_local_lock_tokens,
1502 args);
1503 kfree(string);
1504 switch (token) {
1505 case Opt_local_lock_all:
1506 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1507 NFS_MOUNT_LOCAL_FCNTL);
1508 break;
1509 case Opt_local_lock_flock:
1510 mnt->flags |= NFS_MOUNT_LOCAL_FLOCK;
1511 break;
1512 case Opt_local_lock_posix:
1513 mnt->flags |= NFS_MOUNT_LOCAL_FCNTL;
1514 break;
1515 case Opt_local_lock_none:
1516 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1517 NFS_MOUNT_LOCAL_FCNTL);
1518 break;
1519 default:
1520 dfprintk(MOUNT, "NFS: invalid "
1521 "local_lock argument\n");
1522 return 0;
1523 };
1524 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001525
Chuck Leverf45663c2008-06-24 19:28:02 -04001526 /*
1527 * Special options
1528 */
1529 case Opt_sloppy:
1530 sloppy = 1;
1531 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1532 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001533 case Opt_userspace:
1534 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001535 dfprintk(MOUNT, "NFS: ignoring mount option "
1536 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001537 break;
1538
1539 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001540 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001541 dfprintk(MOUNT, "NFS: unrecognized mount option "
1542 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001543 }
1544 }
1545
Chuck Leverd23c45f2009-06-17 18:02:13 -07001546 if (!sloppy && invalid_option)
1547 return 0;
1548
Weston Andros Adamson571b7552012-02-01 14:06:41 -05001549 if (mnt->minorversion && mnt->version != 4)
1550 goto out_minorversion_mismatch;
1551
Chuck Lever89652612012-09-14 17:24:11 -04001552 if (mnt->options & NFS_OPTION_MIGRATION &&
1553 mnt->version != 4 && mnt->minorversion != 0)
1554 goto out_migration_misuse;
1555
Jeff Laytonee671b02009-12-03 15:58:56 -05001556 /*
1557 * verify that any proto=/mountproto= options match the address
Peter Meerwald1856b222012-08-18 17:38:54 +02001558 * families in the addr=/mountaddr= options.
Jeff Laytonee671b02009-12-03 15:58:56 -05001559 */
1560 if (protofamily != AF_UNSPEC &&
1561 protofamily != mnt->nfs_server.address.ss_family)
1562 goto out_proto_mismatch;
1563
1564 if (mountfamily != AF_UNSPEC) {
1565 if (mnt->mount_server.addrlen) {
1566 if (mountfamily != mnt->mount_server.address.ss_family)
1567 goto out_mountproto_mismatch;
1568 } else {
1569 if (mountfamily != mnt->nfs_server.address.ss_family)
1570 goto out_mountproto_mismatch;
1571 }
1572 }
1573
Chuck Leverbf0fd762007-07-01 12:13:44 -04001574 return 1;
1575
Jeff Laytonee671b02009-12-03 15:58:56 -05001576out_mountproto_mismatch:
1577 printk(KERN_INFO "NFS: mount server address does not match mountproto= "
1578 "option\n");
1579 return 0;
1580out_proto_mismatch:
1581 printk(KERN_INFO "NFS: server address does not match proto= option\n");
1582 return 0;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001583out_invalid_address:
1584 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1585 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001586out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001587 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001588 return 0;
Weston Andros Adamson571b7552012-02-01 14:06:41 -05001589out_minorversion_mismatch:
1590 printk(KERN_INFO "NFS: mount option vers=%u does not support "
1591 "minorversion=%u\n", mnt->version, mnt->minorversion);
1592 return 0;
Chuck Lever89652612012-09-14 17:24:11 -04001593out_migration_misuse:
1594 printk(KERN_INFO
1595 "NFS: 'migration' not supported for this NFS version\n");
1596 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001597out_nomem:
1598 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1599 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001600out_security_failure:
1601 free_secdata(secdata);
1602 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1603 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001604}
1605
1606/*
Chuck Leverec88f282009-08-09 15:09:32 -04001607 * Match the requested auth flavors with the list returned by
1608 * the server. Returns zero and sets the mount's authentication
1609 * flavor on success; returns -EACCES if server does not support
1610 * the requested flavor.
1611 */
1612static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1613 struct nfs_mount_request *request)
1614{
1615 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1616
1617 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001618 * Certain releases of Linux's mountd return an empty
1619 * flavor list. To prevent behavioral regression with
1620 * these servers (ie. rejecting mounts that used to
1621 * succeed), revert to pre-2.6.32 behavior (no checking)
1622 * if the returned flavor list is empty.
1623 */
1624 if (server_authlist_len == 0)
1625 return 0;
1626
1627 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001628 * We avoid sophisticated negotiating here, as there are
1629 * plenty of cases where we can get it wrong, providing
1630 * either too little or too much security.
1631 *
1632 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1633 * flavor listed first. However, some servers list
1634 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1635 * preferred default, in args->auth_flavors[0] if user
1636 * didn't specify sec= mount option.
1637 */
1638 for (i = 0; i < args->auth_flavor_len; i++)
1639 for (j = 0; j < server_authlist_len; j++)
1640 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1641 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1642 request->auth_flavs[j]);
1643 args->auth_flavors[0] = request->auth_flavs[j];
1644 return 0;
1645 }
1646
1647 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1648 nfs_umount(request);
1649 return -EACCES;
1650}
1651
1652/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001653 * Use the remote server's MOUNT service to request the NFS file handle
1654 * corresponding to the provided path.
1655 */
Bryan Schumaker486aa692012-05-10 15:07:39 -04001656static int nfs_request_mount(struct nfs_parsed_mount_data *args,
1657 struct nfs_fh *root_fh)
Chuck Lever0076d7b2007-07-01 12:13:49 -04001658{
Chuck Leverec88f282009-08-09 15:09:32 -04001659 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1660 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001661 struct nfs_mount_request request = {
1662 .sap = (struct sockaddr *)
1663 &args->mount_server.address,
1664 .dirpath = args->nfs_server.export_path,
1665 .protocol = args->mount_server.protocol,
1666 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001667 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001668 .auth_flav_len = &server_authlist_len,
1669 .auth_flavs = server_authlist,
Stanislav Kinsbursky6d59b8d2012-01-10 16:12:54 +04001670 .net = args->net,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001671 };
Chuck Lever4c568012007-12-10 14:59:28 -05001672 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001673
1674 if (args->mount_server.version == 0) {
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001675 switch (args->version) {
1676 default:
1677 args->mount_server.version = NFS_MNT3_VERSION;
1678 break;
1679 case 2:
1680 args->mount_server.version = NFS_MNT_VERSION;
1681 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001682 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001683 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001684
Chuck Lever33832032007-12-10 14:59:13 -05001685 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001686 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001687 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001688 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001689
Chuck Lever0076d7b2007-07-01 12:13:49 -04001690 /*
1691 * Construct the mount server's address.
1692 */
Chuck Lever4c568012007-12-10 14:59:28 -05001693 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001694 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001695 args->nfs_server.addrlen);
1696 args->mount_server.addrlen = args->nfs_server.addrlen;
1697 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001698 request.salen = args->mount_server.addrlen;
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001699 nfs_set_port(request.sap, &args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001700
1701 /*
1702 * Now ask the mount server to map our export path
1703 * to a file handle.
1704 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001705 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001706 if (status != 0) {
1707 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1708 request.hostname, status);
1709 return status;
1710 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001711
Chuck Leverec88f282009-08-09 15:09:32 -04001712 /*
1713 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1714 */
1715 if (args->mount_server.version != NFS_MNT3_VERSION)
1716 return 0;
1717 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001718}
1719
Bryan Schumakerff9099f22012-07-30 16:05:18 -04001720struct dentry *nfs_try_mount(int flags, const char *dev_name,
1721 struct nfs_mount_info *mount_info,
1722 struct nfs_subversion *nfs_mod)
Bryan Schumaker486aa692012-05-10 15:07:39 -04001723{
1724 int status;
1725 struct nfs_server *server;
1726
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001727 if (mount_info->parsed->need_mount) {
Bryan Schumaker87c70832012-05-10 15:07:43 -04001728 status = nfs_request_mount(mount_info->parsed, mount_info->mntfh);
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001729 if (status)
1730 return ERR_PTR(status);
1731 }
Bryan Schumaker486aa692012-05-10 15:07:39 -04001732
1733 /* Get a volume representation */
Bryan Schumaker1179acc2012-07-30 16:05:19 -04001734 server = nfs_mod->rpc_ops->create_server(mount_info, nfs_mod);
Bryan Schumaker486aa692012-05-10 15:07:39 -04001735 if (IS_ERR(server))
1736 return ERR_CAST(server);
1737
Bryan Schumakerab7017a2012-07-30 16:05:16 -04001738 return nfs_fs_mount_common(server, flags, dev_name, mount_info, nfs_mod);
Bryan Schumaker486aa692012-05-10 15:07:39 -04001739}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001740EXPORT_SYMBOL_GPL(nfs_try_mount);
Bryan Schumaker486aa692012-05-10 15:07:39 -04001741
Rob Landleyc12bace2011-03-09 15:54:13 -06001742/*
1743 * Split "dev_name" into "hostname:export_path".
1744 *
1745 * The leftmost colon demarks the split between the server's hostname
1746 * and the export path. If the hostname starts with a left square
1747 * bracket, then it may contain colons.
1748 *
1749 * Note: caller frees hostname and export path, even on error.
1750 */
1751static int nfs_parse_devname(const char *dev_name,
1752 char **hostname, size_t maxnamlen,
1753 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001754{
1755 size_t len;
Rob Landleyc12bace2011-03-09 15:54:13 -06001756 char *end;
Chuck Leverdc045892008-06-23 12:36:37 -04001757
Rob Landleyc12bace2011-03-09 15:54:13 -06001758 /* Is the host name protected with square brakcets? */
1759 if (*dev_name == '[') {
1760 end = strchr(++dev_name, ']');
1761 if (end == NULL || end[1] != ':')
1762 goto out_bad_devname;
Chuck Leverdc045892008-06-23 12:36:37 -04001763
Rob Landleyc12bace2011-03-09 15:54:13 -06001764 len = end - dev_name;
1765 end++;
1766 } else {
1767 char *comma;
1768
1769 end = strchr(dev_name, ':');
1770 if (end == NULL)
1771 goto out_bad_devname;
1772 len = end - dev_name;
1773
1774 /* kill possible hostname list: not supported */
1775 comma = strchr(dev_name, ',');
1776 if (comma != NULL && comma < end)
1777 *comma = 0;
1778 }
1779
Chuck Leverdc045892008-06-23 12:36:37 -04001780 if (len > maxnamlen)
1781 goto out_hostname;
1782
1783 /* N.B. caller will free nfs_server.hostname in all cases */
1784 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
Rob Landleyc12bace2011-03-09 15:54:13 -06001785 if (*hostname == NULL)
Chuck Leverdc045892008-06-23 12:36:37 -04001786 goto out_nomem;
Rob Landleyc12bace2011-03-09 15:54:13 -06001787 len = strlen(++end);
Chuck Leverdc045892008-06-23 12:36:37 -04001788 if (len > maxpathlen)
1789 goto out_path;
Rob Landleyc12bace2011-03-09 15:54:13 -06001790 *export_path = kstrndup(end, len, GFP_KERNEL);
Chuck Leverdc045892008-06-23 12:36:37 -04001791 if (!*export_path)
1792 goto out_nomem;
1793
1794 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1795 return 0;
1796
1797out_bad_devname:
1798 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1799 return -EINVAL;
1800
1801out_nomem:
1802 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1803 return -ENOMEM;
1804
1805out_hostname:
1806 dfprintk(MOUNT, "NFS: server hostname too long\n");
1807 return -ENAMETOOLONG;
1808
1809out_path:
1810 dfprintk(MOUNT, "NFS: export pathname too long\n");
1811 return -ENAMETOOLONG;
1812}
1813
1814/*
David Howells54ceac42006-08-22 20:06:13 -04001815 * Validate the NFS2/NFS3 mount data
1816 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001817 *
1818 * For option strings, user space handles the following behaviors:
1819 *
1820 * + DNS: mapping server host name to IP address ("addr=" option)
1821 *
1822 * + failure mode: how to behave if a mount request can't be handled
1823 * immediately ("fg/bg" option)
1824 *
1825 * + retry: how often to retry a mount request ("retry=" option)
1826 *
1827 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1828 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001829 */
Bryan Schumakerd72c7272012-05-10 15:07:41 -04001830static int nfs23_validate_mount_data(void *options,
1831 struct nfs_parsed_mount_data *args,
1832 struct nfs_fh *mntfh,
1833 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001834{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001835 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001836 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001837
Chuck Lever5df36e72007-07-01 12:12:56 -04001838 if (data == NULL)
1839 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001840
Bryan Schumakerc5afc8d2012-06-08 11:32:56 -04001841 args->version = NFS_DEFAULT_VERSION;
David Howellsf7b422b2006-06-09 09:34:33 -04001842 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001843 case 1:
1844 data->namlen = 0;
1845 case 2:
1846 data->bsize = 0;
1847 case 3:
1848 if (data->flags & NFS_MOUNT_VER3)
1849 goto out_no_v3;
1850 data->root.size = NFS2_FHSIZE;
1851 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1852 case 4:
1853 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1854 goto out_no_sec;
1855 case 5:
1856 memset(data->context, 0, sizeof(data->context));
1857 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001858 if (data->flags & NFS_MOUNT_VER3) {
1859 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1860 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001861 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001862 args->version = 3;
1863 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001864 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001865 args->version = 2;
1866 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001867
Chuck Lever5df36e72007-07-01 12:12:56 -04001868
1869 memcpy(mntfh->data, data->root.data, mntfh->size);
1870 if (mntfh->size < sizeof(mntfh->data))
1871 memset(mntfh->data + mntfh->size, 0,
1872 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001873
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001874 /*
1875 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1876 * can deal with.
1877 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001878 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -04001879 args->flags |= NFS_MOUNT_LEGACY_INTERFACE;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001880 args->rsize = data->rsize;
1881 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001882 args->timeo = data->timeo;
1883 args->retrans = data->retrans;
1884 args->acregmin = data->acregmin;
1885 args->acregmax = data->acregmax;
1886 args->acdirmin = data->acdirmin;
1887 args->acdirmax = data->acdirmax;
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001888 args->need_mount = false;
Chuck Lever4c568012007-12-10 14:59:28 -05001889
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001890 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001891 args->nfs_server.addrlen = sizeof(data->addr);
Trond Myklebust872ece82012-09-04 11:05:07 -04001892 args->nfs_server.port = ntohs(data->addr.sin_port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001893 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001894 goto out_no_address;
1895
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001896 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001897 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001898 /* N.B. caller will free nfs_server.hostname in all cases */
1899 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1900 args->namlen = data->namlen;
1901 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001902
1903 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1904 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001905 if (!args->nfs_server.hostname)
1906 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001907
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001908 if (!(data->flags & NFS_MOUNT_NONLM))
1909 args->flags &= ~(NFS_MOUNT_LOCAL_FLOCK|
1910 NFS_MOUNT_LOCAL_FCNTL);
1911 else
1912 args->flags |= (NFS_MOUNT_LOCAL_FLOCK|
1913 NFS_MOUNT_LOCAL_FCNTL);
Eric Parisf9c3a382008-03-05 14:20:18 -05001914 /*
1915 * The legacy version 6 binary mount data from userspace has a
1916 * field used only to transport selinux information into the
1917 * the kernel. To continue to support that functionality we
1918 * have a touch of selinux knowledge here in the NFS code. The
1919 * userspace code converted context=blah to just blah so we are
1920 * converting back to the full string selinux understands.
1921 */
1922 if (data->context[0]){
1923#ifdef CONFIG_SECURITY_SELINUX
1924 int rc;
1925 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1926 if (!opts_str)
1927 return -ENOMEM;
1928 strcpy(opts_str, "context=");
1929 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1930 strcat(opts_str, &data->context[0]);
1931 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1932 kfree(opts_str);
1933 if (rc)
1934 return rc;
1935#else
1936 return -EINVAL;
1937#endif
1938 }
1939
Chuck Lever5df36e72007-07-01 12:12:56 -04001940 break;
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04001941 default:
1942 return NFS_TEXT_DATA;
David Howellsf7b422b2006-06-09 09:34:33 -04001943 }
David Howells54ceac42006-08-22 20:06:13 -04001944
Bryan Schumaker1c606fb2012-07-30 16:05:24 -04001945#if !IS_ENABLED(CONFIG_NFS_V3)
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001946 if (args->version == 3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001947 goto out_v3_not_compiled;
1948#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001949
David Howells54ceac42006-08-22 20:06:13 -04001950 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001951
1952out_no_data:
1953 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1954 return -EINVAL;
1955
1956out_no_v3:
1957 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1958 data->version);
1959 return -EINVAL;
1960
1961out_no_sec:
1962 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1963 return -EINVAL;
1964
Bryan Schumaker1c606fb2012-07-30 16:05:24 -04001965#if !IS_ENABLED(CONFIG_NFS_V3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001966out_v3_not_compiled:
1967 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1968 return -EPROTONOSUPPORT;
1969#endif /* !CONFIG_NFS_V3 */
1970
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001971out_nomem:
1972 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
1973 return -ENOMEM;
1974
Chuck Lever5df36e72007-07-01 12:12:56 -04001975out_no_address:
1976 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1977 return -EINVAL;
1978
1979out_invalid_fh:
1980 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1981 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001982}
1983
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001984#if IS_ENABLED(CONFIG_NFS_V4)
Bryan Schumakerd72c7272012-05-10 15:07:41 -04001985static int nfs_validate_mount_data(struct file_system_type *fs_type,
1986 void *options,
1987 struct nfs_parsed_mount_data *args,
1988 struct nfs_fh *mntfh,
1989 const char *dev_name)
1990{
1991 if (fs_type == &nfs_fs_type)
1992 return nfs23_validate_mount_data(options, args, mntfh, dev_name);
1993 return nfs4_validate_mount_data(options, args, dev_name);
1994}
1995#else
1996static int nfs_validate_mount_data(struct file_system_type *fs_type,
1997 void *options,
1998 struct nfs_parsed_mount_data *args,
1999 struct nfs_fh *mntfh,
2000 const char *dev_name)
2001{
2002 return nfs23_validate_mount_data(options, args, mntfh, dev_name);
2003}
2004#endif
2005
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04002006static int nfs_validate_text_mount_data(void *options,
2007 struct nfs_parsed_mount_data *args,
2008 const char *dev_name)
2009{
2010 int port = 0;
2011 int max_namelen = PAGE_SIZE;
2012 int max_pathlen = NFS_MAXPATHLEN;
2013 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2014
2015 if (nfs_parse_mount_options((char *)options, args) == 0)
2016 return -EINVAL;
2017
2018 if (!nfs_verify_server_address(sap))
2019 goto out_no_address;
2020
2021 if (args->version == 4) {
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002022#if IS_ENABLED(CONFIG_NFS_V4)
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04002023 port = NFS_PORT;
2024 max_namelen = NFS4_MAXNAMLEN;
2025 max_pathlen = NFS4_MAXPATHLEN;
2026 nfs_validate_transport_protocol(args);
2027 nfs4_validate_mount_flags(args);
2028#else
2029 goto out_v4_not_compiled;
2030#endif /* CONFIG_NFS_V4 */
2031 } else
2032 nfs_set_mount_transport_protocol(args);
2033
2034 nfs_set_port(sap, &args->nfs_server.port, port);
2035
2036 if (args->auth_flavor_len > 1)
2037 goto out_bad_auth;
2038
2039 return nfs_parse_devname(dev_name,
2040 &args->nfs_server.hostname,
2041 max_namelen,
2042 &args->nfs_server.export_path,
2043 max_pathlen);
2044
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002045#if !IS_ENABLED(CONFIG_NFS_V4)
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04002046out_v4_not_compiled:
2047 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
2048 return -EPROTONOSUPPORT;
2049#endif /* !CONFIG_NFS_V4 */
2050
2051out_no_address:
2052 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
2053 return -EINVAL;
2054
2055out_bad_auth:
2056 dfprintk(MOUNT, "NFS: Too many RPC auth flavours specified\n");
2057 return -EINVAL;
2058}
2059
Jeff Layton48b605f2008-06-10 15:38:39 -04002060static int
2061nfs_compare_remount_data(struct nfs_server *nfss,
2062 struct nfs_parsed_mount_data *data)
2063{
2064 if (data->flags != nfss->flags ||
2065 data->rsize != nfss->rsize ||
2066 data->wsize != nfss->wsize ||
2067 data->retrans != nfss->client->cl_timeout->to_retries ||
2068 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
2069 data->acregmin != nfss->acregmin / HZ ||
2070 data->acregmax != nfss->acregmax / HZ ||
2071 data->acdirmin != nfss->acdirmin / HZ ||
2072 data->acdirmax != nfss->acdirmax / HZ ||
2073 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002074 data->nfs_server.port != nfss->port ||
Jeff Layton48b605f2008-06-10 15:38:39 -04002075 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
Stefan Richtera1be9ee2009-10-12 11:26:12 -04002076 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
2077 (struct sockaddr *)&nfss->nfs_client->cl_addr))
Jeff Layton48b605f2008-06-10 15:38:39 -04002078 return -EINVAL;
2079
2080 return 0;
2081}
2082
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002083int
Jeff Layton48b605f2008-06-10 15:38:39 -04002084nfs_remount(struct super_block *sb, int *flags, char *raw_data)
2085{
2086 int error;
2087 struct nfs_server *nfss = sb->s_fs_info;
2088 struct nfs_parsed_mount_data *data;
2089 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
2090 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04002091 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04002092
2093 /*
2094 * Userspace mount programs that send binary options generally send
2095 * them populated with default values. We have no way to know which
2096 * ones were explicitly specified. Fall back to legacy behavior and
2097 * just return success.
2098 */
Marc Zyngier31c94462008-07-17 13:21:55 +02002099 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
2100 (nfsvers <= 3 && (!options || (options->version >= 1 &&
2101 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04002102 return 0;
2103
2104 data = kzalloc(sizeof(*data), GFP_KERNEL);
2105 if (data == NULL)
2106 return -ENOMEM;
2107
2108 /* fill out struct with values from existing mount */
2109 data->flags = nfss->flags;
2110 data->rsize = nfss->rsize;
2111 data->wsize = nfss->wsize;
2112 data->retrans = nfss->client->cl_timeout->to_retries;
2113 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
2114 data->acregmin = nfss->acregmin / HZ;
2115 data->acregmax = nfss->acregmax / HZ;
2116 data->acdirmin = nfss->acdirmin / HZ;
2117 data->acdirmax = nfss->acdirmax / HZ;
2118 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002119 data->nfs_server.port = nfss->port;
Jeff Layton48b605f2008-06-10 15:38:39 -04002120 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
2121 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
2122 data->nfs_server.addrlen);
2123
2124 /* overwrite those values with any that were specified */
2125 error = nfs_parse_mount_options((char *)options, data);
2126 if (error < 0)
2127 goto out;
2128
Jeff Layton26c4c172011-04-27 11:49:09 -04002129 /*
2130 * noac is a special case. It implies -o sync, but that's not
2131 * necessarily reflected in the mtab options. do_remount_sb
2132 * will clear MS_SYNCHRONOUS if -o sync wasn't specified in the
2133 * remount options, so we have to explicitly reset it.
2134 */
2135 if (data->flags & NFS_MOUNT_NOAC)
2136 *flags |= MS_SYNCHRONOUS;
2137
Jeff Layton48b605f2008-06-10 15:38:39 -04002138 /* compare new mount options with old ones */
2139 error = nfs_compare_remount_data(nfss, data);
2140out:
2141 kfree(data);
2142 return error;
2143}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002144EXPORT_SYMBOL_GPL(nfs_remount);
Jeff Layton48b605f2008-06-10 15:38:39 -04002145
David Howells54ceac42006-08-22 20:06:13 -04002146/*
2147 * Initialise the common bits of the superblock
2148 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002149inline void nfs_initialise_sb(struct super_block *sb)
David Howells54ceac42006-08-22 20:06:13 -04002150{
2151 struct nfs_server *server = NFS_SB(sb);
2152
2153 sb->s_magic = NFS_SUPER_MAGIC;
2154
2155 /* We probably want something more informative here */
2156 snprintf(sb->s_id, sizeof(sb->s_id),
Vivek Trivedi5a7c9ee2012-03-15 23:58:52 +05302157 "%u:%u", MAJOR(sb->s_dev), MINOR(sb->s_dev));
David Howells54ceac42006-08-22 20:06:13 -04002158
2159 if (sb->s_blocksize == 0)
2160 sb->s_blocksize = nfs_block_bits(server->wsize,
2161 &sb->s_blocksize_bits);
2162
Jens Axboe32a88aa2009-09-16 15:02:33 +02002163 sb->s_bdi = &server->backing_dev_info;
2164
David Howells54ceac42006-08-22 20:06:13 -04002165 nfs_super_set_maxbytes(sb, server->maxfilesize);
2166}
2167
2168/*
2169 * Finish setting up an NFS2/3 superblock
2170 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002171void nfs_fill_super(struct super_block *sb, struct nfs_mount_info *mount_info)
David Howells54ceac42006-08-22 20:06:13 -04002172{
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002173 struct nfs_parsed_mount_data *data = mount_info->parsed;
David Howells54ceac42006-08-22 20:06:13 -04002174 struct nfs_server *server = NFS_SB(sb);
2175
2176 sb->s_blocksize_bits = 0;
2177 sb->s_blocksize = 0;
Bryan Schumaker6a744902012-07-30 16:05:20 -04002178 sb->s_xattr = server->nfs_client->cl_nfs_mod->xattr;
2179 sb->s_op = server->nfs_client->cl_nfs_mod->sops;
2180 if (data && data->bsize)
David Howells54ceac42006-08-22 20:06:13 -04002181 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
2182
Bryan Schumaker6a744902012-07-30 16:05:20 -04002183 if (server->nfs_client->rpc_ops->version != 2) {
David Howells54ceac42006-08-22 20:06:13 -04002184 /* The VFS shouldn't apply the umask to mode bits. We will do
2185 * so ourselves when necessary.
2186 */
2187 sb->s_flags |= MS_POSIXACL;
2188 sb->s_time_gran = 1;
2189 }
2190
David Howells54ceac42006-08-22 20:06:13 -04002191 nfs_initialise_sb(sb);
2192}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002193EXPORT_SYMBOL_GPL(nfs_fill_super);
David Howells54ceac42006-08-22 20:06:13 -04002194
2195/*
Bryan Schumaker3cadf4b2012-07-16 16:39:19 -04002196 * Finish setting up a cloned NFS2/3/4 superblock
David Howells54ceac42006-08-22 20:06:13 -04002197 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002198void nfs_clone_super(struct super_block *sb, struct nfs_mount_info *mount_info)
David Howells54ceac42006-08-22 20:06:13 -04002199{
Bryan Schumaker8c958e02012-05-10 15:07:35 -04002200 const struct super_block *old_sb = mount_info->cloned->sb;
David Howells54ceac42006-08-22 20:06:13 -04002201 struct nfs_server *server = NFS_SB(sb);
2202
2203 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2204 sb->s_blocksize = old_sb->s_blocksize;
2205 sb->s_maxbytes = old_sb->s_maxbytes;
Bryan Schumaker3cadf4b2012-07-16 16:39:19 -04002206 sb->s_xattr = old_sb->s_xattr;
2207 sb->s_op = old_sb->s_op;
2208 sb->s_time_gran = 1;
David Howells54ceac42006-08-22 20:06:13 -04002209
Bryan Schumaker3cadf4b2012-07-16 16:39:19 -04002210 if (server->nfs_client->rpc_ops->version != 2) {
David Howells54ceac42006-08-22 20:06:13 -04002211 /* The VFS shouldn't apply the umask to mode bits. We will do
2212 * so ourselves when necessary.
2213 */
2214 sb->s_flags |= MS_POSIXACL;
David Howells54ceac42006-08-22 20:06:13 -04002215 }
2216
David Howells54ceac42006-08-22 20:06:13 -04002217 nfs_initialise_sb(sb);
2218}
2219
Trond Myklebust275a5d22007-05-16 16:53:28 -04002220static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
2221{
2222 const struct nfs_server *a = s->s_fs_info;
2223 const struct rpc_clnt *clnt_a = a->client;
2224 const struct rpc_clnt *clnt_b = b->client;
2225
2226 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
2227 goto Ebusy;
2228 if (a->nfs_client != b->nfs_client)
2229 goto Ebusy;
2230 if (a->flags != b->flags)
2231 goto Ebusy;
2232 if (a->wsize != b->wsize)
2233 goto Ebusy;
2234 if (a->rsize != b->rsize)
2235 goto Ebusy;
2236 if (a->acregmin != b->acregmin)
2237 goto Ebusy;
2238 if (a->acregmax != b->acregmax)
2239 goto Ebusy;
2240 if (a->acdirmin != b->acdirmin)
2241 goto Ebusy;
2242 if (a->acdirmax != b->acdirmax)
2243 goto Ebusy;
2244 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2245 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002246 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002247Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002248 return 0;
2249}
2250
2251struct nfs_sb_mountdata {
2252 struct nfs_server *server;
2253 int mntflags;
2254};
2255
2256static int nfs_set_super(struct super_block *s, void *data)
2257{
2258 struct nfs_sb_mountdata *sb_mntdata = data;
2259 struct nfs_server *server = sb_mntdata->server;
2260 int ret;
2261
2262 s->s_flags = sb_mntdata->mntflags;
2263 s->s_fs_info = server;
Al Viro8b244ff2010-12-18 11:29:39 -05002264 s->s_d_op = server->nfs_client->rpc_ops->dentry_ops;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002265 ret = set_anon_super(s, server);
2266 if (ret == 0)
2267 server->s_dev = s->s_dev;
2268 return ret;
2269}
2270
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002271static int nfs_compare_super_address(struct nfs_server *server1,
2272 struct nfs_server *server2)
2273{
2274 struct sockaddr *sap1, *sap2;
2275
2276 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2277 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2278
2279 if (sap1->sa_family != sap2->sa_family)
2280 return 0;
2281
2282 switch (sap1->sa_family) {
2283 case AF_INET: {
2284 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2285 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2286 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2287 return 0;
2288 if (sin1->sin_port != sin2->sin_port)
2289 return 0;
2290 break;
2291 }
2292 case AF_INET6: {
2293 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2294 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2295 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2296 return 0;
2297 if (sin1->sin6_port != sin2->sin6_port)
2298 return 0;
2299 break;
2300 }
2301 default:
2302 return 0;
2303 }
2304
2305 return 1;
2306}
2307
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002308static int nfs_compare_super(struct super_block *sb, void *data)
2309{
2310 struct nfs_sb_mountdata *sb_mntdata = data;
2311 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2312 int mntflags = sb_mntdata->mntflags;
2313
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002314 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002315 return 0;
2316 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2317 if (old->flags & NFS_MOUNT_UNSHARED)
2318 return 0;
2319 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2320 return 0;
2321 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002322}
2323
Trond Myklebust39ffb922012-05-16 10:21:30 -07002324#ifdef CONFIG_NFS_FSCACHE
Bryan Schumaker2311b942012-05-10 15:07:32 -04002325static void nfs_get_cache_cookie(struct super_block *sb,
2326 struct nfs_parsed_mount_data *parsed,
2327 struct nfs_clone_mount *cloned)
2328{
Trond Myklebustc4271c62012-12-21 11:02:32 -05002329 struct nfs_server *nfss = NFS_SB(sb);
Bryan Schumaker2311b942012-05-10 15:07:32 -04002330 char *uniq = NULL;
2331 int ulen = 0;
2332
Trond Myklebustc4271c62012-12-21 11:02:32 -05002333 nfss->fscache_key = NULL;
2334 nfss->fscache = NULL;
2335
2336 if (parsed) {
2337 if (!(parsed->options & NFS_OPTION_FSCACHE))
2338 return;
2339 if (parsed->fscache_uniq) {
2340 uniq = parsed->fscache_uniq;
2341 ulen = strlen(parsed->fscache_uniq);
2342 }
Bryan Schumaker2311b942012-05-10 15:07:32 -04002343 } else if (cloned) {
2344 struct nfs_server *mnt_s = NFS_SB(cloned->sb);
Trond Myklebustc4271c62012-12-21 11:02:32 -05002345 if (!(mnt_s->options & NFS_OPTION_FSCACHE))
2346 return;
Bryan Schumaker2311b942012-05-10 15:07:32 -04002347 if (mnt_s->fscache_key) {
2348 uniq = mnt_s->fscache_key->key.uniquifier;
2349 ulen = mnt_s->fscache_key->key.uniq_len;
2350 };
Trond Myklebustc4271c62012-12-21 11:02:32 -05002351 } else
2352 return;
Bryan Schumaker2311b942012-05-10 15:07:32 -04002353
2354 nfs_fscache_get_super_cookie(sb, uniq, ulen);
2355}
Trond Myklebust39ffb922012-05-16 10:21:30 -07002356#else
2357static void nfs_get_cache_cookie(struct super_block *sb,
2358 struct nfs_parsed_mount_data *parsed,
2359 struct nfs_clone_mount *cloned)
2360{
2361}
2362#endif
Bryan Schumaker2311b942012-05-10 15:07:32 -04002363
Miklos Szeredifa799752008-04-30 00:54:33 -07002364static int nfs_bdi_register(struct nfs_server *server)
2365{
2366 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2367}
2368
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002369int nfs_set_sb_security(struct super_block *s, struct dentry *mntroot,
2370 struct nfs_mount_info *mount_info)
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002371{
2372 return security_sb_set_mnt_opts(s, &mount_info->parsed->lsm_opts);
2373}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002374EXPORT_SYMBOL_GPL(nfs_set_sb_security);
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002375
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002376int nfs_clone_sb_security(struct super_block *s, struct dentry *mntroot,
2377 struct nfs_mount_info *mount_info)
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002378{
2379 /* clone any lsm security options from the parent to the new sb */
2380 security_sb_clone_mnt_opts(mount_info->cloned->sb, s);
2381 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops)
2382 return -ESTALE;
2383 return 0;
2384}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002385EXPORT_SYMBOL_GPL(nfs_clone_sb_security);
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002386
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002387struct dentry *nfs_fs_mount_common(struct nfs_server *server,
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002388 int flags, const char *dev_name,
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002389 struct nfs_mount_info *mount_info,
2390 struct nfs_subversion *nfs_mod)
David Howells54ceac42006-08-22 20:06:13 -04002391{
David Howells54ceac42006-08-22 20:06:13 -04002392 struct super_block *s;
Al Viro01194982011-03-16 07:25:36 -04002393 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Trond Myklebust75180df2007-05-16 16:53:28 -04002394 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002395 struct nfs_sb_mountdata sb_mntdata = {
2396 .mntflags = flags,
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002397 .server = server,
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002398 };
Al Viro01194982011-03-16 07:25:36 -04002399 int error;
David Howells54ceac42006-08-22 20:06:13 -04002400
Trond Myklebust75180df2007-05-16 16:53:28 -04002401 if (server->flags & NFS_MOUNT_UNSHARED)
2402 compare_super = NULL;
2403
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002404 /* -o noac implies -o sync */
2405 if (server->flags & NFS_MOUNT_NOAC)
2406 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2407
David Howells54ceac42006-08-22 20:06:13 -04002408 /* Get a superblock - note that we may end up sharing one that already exists */
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002409 s = sget(nfs_mod->nfs_fs, compare_super, nfs_set_super, flags, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002410 if (IS_ERR(s)) {
Al Viro01194982011-03-16 07:25:36 -04002411 mntroot = ERR_CAST(s);
David Howells54ceac42006-08-22 20:06:13 -04002412 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002413 }
2414
David Howells54ceac42006-08-22 20:06:13 -04002415 if (s->s_fs_info != server) {
2416 nfs_free_server(server);
2417 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002418 } else {
2419 error = nfs_bdi_register(server);
Al Viro01194982011-03-16 07:25:36 -04002420 if (error) {
2421 mntroot = ERR_PTR(error);
NeilBrowncfbc0682010-03-11 11:20:17 +11002422 goto error_splat_bdi;
Al Viro01194982011-03-16 07:25:36 -04002423 }
David Howellsf7b422b2006-06-09 09:34:33 -04002424 }
David Howells54ceac42006-08-22 20:06:13 -04002425
2426 if (!s->s_root) {
2427 /* initial superblock/root creation */
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002428 mount_info->fill_super(s, mount_info);
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002429 nfs_get_cache_cookie(s, mount_info->parsed, mount_info->cloned);
David Howells54ceac42006-08-22 20:06:13 -04002430 }
2431
Bryan Schumaker87c70832012-05-10 15:07:43 -04002432 mntroot = nfs_get_root(s, mount_info->mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002433 if (IS_ERR(mntroot))
David Howells54ceac42006-08-22 20:06:13 -04002434 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002435
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002436 error = mount_info->set_security(s, mntroot, mount_info);
Eric Parisf9c3a382008-03-05 14:20:18 -05002437 if (error)
2438 goto error_splat_root;
2439
David Howellsf7b422b2006-06-09 09:34:33 -04002440 s->s_flags |= MS_ACTIVE;
Chuck Lever06559602007-07-01 12:12:35 -04002441
2442out:
Al Viro01194982011-03-16 07:25:36 -04002443 return mntroot;
Trond Myklebust816724e2006-06-24 08:41:41 -04002444
David Howells54ceac42006-08-22 20:06:13 -04002445out_err_nosb:
2446 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002447 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002448
Eric Parisf9c3a382008-03-05 14:20:18 -05002449error_splat_root:
2450 dput(mntroot);
Al Viro01194982011-03-16 07:25:36 -04002451 mntroot = ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002452error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002453 if (server && !s->s_root)
2454 bdi_unregister(&server->backing_dev_info);
2455error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002456 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002457 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002458}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002459EXPORT_SYMBOL_GPL(nfs_fs_mount_common);
David Howellsf7b422b2006-06-09 09:34:33 -04002460
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002461struct dentry *nfs_fs_mount(struct file_system_type *fs_type,
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002462 int flags, const char *dev_name, void *raw_data)
2463{
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002464 struct nfs_mount_info mount_info = {
2465 .fill_super = nfs_fill_super,
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002466 .set_security = nfs_set_sb_security,
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002467 };
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002468 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002469 struct nfs_subversion *nfs_mod;
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002470 int error;
2471
Bryan Schumaker46058d42012-05-10 15:07:42 -04002472 mount_info.parsed = nfs_alloc_parsed_mount_data();
Bryan Schumaker87c70832012-05-10 15:07:43 -04002473 mount_info.mntfh = nfs_alloc_fhandle();
2474 if (mount_info.parsed == NULL || mount_info.mntfh == NULL)
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002475 goto out;
2476
2477 /* Validate the mount data */
Bryan Schumaker87c70832012-05-10 15:07:43 -04002478 error = nfs_validate_mount_data(fs_type, raw_data, mount_info.parsed, mount_info.mntfh, dev_name);
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04002479 if (error == NFS_TEXT_DATA)
Bryan Schumaker46058d42012-05-10 15:07:42 -04002480 error = nfs_validate_text_mount_data(raw_data, mount_info.parsed, dev_name);
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002481 if (error < 0) {
2482 mntroot = ERR_PTR(error);
2483 goto out;
2484 }
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002485
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002486 nfs_mod = get_nfs_version(mount_info.parsed->version);
2487 if (IS_ERR(nfs_mod)) {
2488 mntroot = ERR_CAST(nfs_mod);
2489 goto out;
2490 }
2491
Bryan Schumakerff9099f22012-07-30 16:05:18 -04002492 mntroot = nfs_mod->rpc_ops->try_mount(flags, dev_name, &mount_info, nfs_mod);
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002493
2494 put_nfs_version(nfs_mod);
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002495out:
Bryan Schumaker46058d42012-05-10 15:07:42 -04002496 nfs_free_parsed_mount_data(mount_info.parsed);
Bryan Schumaker87c70832012-05-10 15:07:43 -04002497 nfs_free_fhandle(mount_info.mntfh);
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002498 return mntroot;
2499}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002500EXPORT_SYMBOL_GPL(nfs_fs_mount);
Bryan Schumakerc40f8d12012-05-10 15:07:34 -04002501
David Howells54ceac42006-08-22 20:06:13 -04002502/*
Trond Myklebust387c1492010-02-03 08:27:35 -05002503 * Ensure that we unregister the bdi before kill_anon_super
2504 * releases the device name
2505 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002506void nfs_put_super(struct super_block *s)
Trond Myklebust387c1492010-02-03 08:27:35 -05002507{
2508 struct nfs_server *server = NFS_SB(s);
2509
2510 bdi_unregister(&server->backing_dev_info);
2511}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002512EXPORT_SYMBOL_GPL(nfs_put_super);
Trond Myklebust387c1492010-02-03 08:27:35 -05002513
2514/*
David Howells54ceac42006-08-22 20:06:13 -04002515 * Destroy an NFS2/3 superblock
2516 */
Bryan Schumakerfbdefd62012-07-16 16:39:20 -04002517void nfs_kill_super(struct super_block *s)
David Howellsf7b422b2006-06-09 09:34:33 -04002518{
2519 struct nfs_server *server = NFS_SB(s);
2520
2521 kill_anon_super(s);
David Howells08734042009-04-03 16:42:42 +01002522 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002523 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002524}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002525EXPORT_SYMBOL_GPL(nfs_kill_super);
David Howellsf7b422b2006-06-09 09:34:33 -04002526
David Howells54ceac42006-08-22 20:06:13 -04002527/*
Bryan Schumaker8c958e02012-05-10 15:07:35 -04002528 * Clone an NFS2/3/4 server record on xdev traversal (FSID-change)
David Howells54ceac42006-08-22 20:06:13 -04002529 */
Stanislav Kinsbursky3dd4f8ef2012-10-02 14:19:04 +04002530static struct dentry *
Bryan Schumakere8f25e62012-07-30 16:05:17 -04002531nfs_xdev_mount(struct file_system_type *fs_type, int flags,
2532 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002533{
Bryan Schumakere8f25e62012-07-30 16:05:17 -04002534 struct nfs_clone_mount *data = raw_data;
2535 struct nfs_mount_info mount_info = {
2536 .fill_super = nfs_clone_super,
2537 .set_security = nfs_clone_sb_security,
2538 .cloned = data,
2539 };
David Howells54ceac42006-08-22 20:06:13 -04002540 struct nfs_server *server;
Bryan Schumaker3d176e32012-05-10 15:07:36 -04002541 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Bryan Schumakerab7017a2012-07-30 16:05:16 -04002542 struct nfs_subversion *nfs_mod = NFS_SB(data->sb)->nfs_client->cl_nfs_mod;
David Howells54ceac42006-08-22 20:06:13 -04002543
Trond Myklebustdee972b2013-01-16 15:05:44 -05002544 dprintk("--> nfs_xdev_mount()\n");
David Howells54ceac42006-08-22 20:06:13 -04002545
Bryan Schumakere8f25e62012-07-30 16:05:17 -04002546 mount_info.mntfh = mount_info.cloned->fh;
Bryan Schumaker87c70832012-05-10 15:07:43 -04002547
David Howells54ceac42006-08-22 20:06:13 -04002548 /* create a new volume representation */
Bryan Schumaker1179acc2012-07-30 16:05:19 -04002549 server = nfs_mod->rpc_ops->clone_server(NFS_SB(data->sb), data->fh, data->fattr, data->authflavor);
David Howells54ceac42006-08-22 20:06:13 -04002550
Trond Myklebustdee972b2013-01-16 15:05:44 -05002551 if (IS_ERR(server))
2552 mntroot = ERR_CAST(server);
2553 else
2554 mntroot = nfs_fs_mount_common(server, flags,
2555 dev_name, &mount_info, nfs_mod);
2556
2557 dprintk("<-- nfs_xdev_mount() = %ld\n",
2558 IS_ERR(mntroot) ? PTR_ERR(mntroot) : 0L);
Al Viro31f43472010-10-29 03:38:12 -04002559 return mntroot;
David Howellsf7b422b2006-06-09 09:34:33 -04002560}
2561
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002562#if IS_ENABLED(CONFIG_NFS_V4)
David Howells54ceac42006-08-22 20:06:13 -04002563
Trond Myklebust01c3f052009-06-17 13:22:58 -07002564static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2565{
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04002566 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3|
2567 NFS_MOUNT_LOCAL_FLOCK|NFS_MOUNT_LOCAL_FCNTL);
Trond Myklebust01c3f052009-06-17 13:22:58 -07002568}
2569
David Howells54ceac42006-08-22 20:06:13 -04002570/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002571 * Validate NFSv4 mount options
2572 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002573static int nfs4_validate_mount_data(void *options,
2574 struct nfs_parsed_mount_data *args,
2575 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002576{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002577 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002578 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002579 char *c;
2580
2581 if (data == NULL)
2582 goto out_no_data;
2583
Bryan Schumakercdf66442012-06-05 14:59:54 -04002584 args->version = 4;
2585
Chuck Leverf0768eb2007-07-01 12:13:01 -04002586 switch (data->version) {
2587 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002588 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002589 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002590 if (data->host_addrlen == 0)
2591 goto out_no_address;
2592 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002593 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002594 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002595 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002596 goto out_no_address;
Trond Myklebust872ece82012-09-04 11:05:07 -04002597 args->nfs_server.port = ntohs(((struct sockaddr_in *)sap)->sin_port);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002598
Chuck Lever6738b252008-06-24 16:33:54 -04002599 if (data->auth_flavourlen) {
2600 if (data->auth_flavourlen > 1)
2601 goto out_inval_auth;
Trond Myklebust20c71f52007-09-20 20:23:51 -04002602 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002603 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04002604 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002605 return -EFAULT;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002606 }
2607
2608 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2609 if (IS_ERR(c))
2610 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002611 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002612
2613 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2614 if (IS_ERR(c))
2615 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002616 args->nfs_server.export_path = c;
2617 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002618
2619 c = strndup_user(data->client_addr.data, 16);
2620 if (IS_ERR(c))
2621 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002622 args->client_address = c;
2623
2624 /*
2625 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2626 * can deal with.
2627 */
2628
2629 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2630 args->rsize = data->rsize;
2631 args->wsize = data->wsize;
2632 args->timeo = data->timeo;
2633 args->retrans = data->retrans;
2634 args->acregmin = data->acregmin;
2635 args->acregmax = data->acregmax;
2636 args->acdirmin = data->acdirmin;
2637 args->acdirmax = data->acdirmax;
2638 args->nfs_server.protocol = data->proto;
Trond Myklebust259875e2008-07-02 14:43:47 -04002639 nfs_validate_transport_protocol(args);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002640
2641 break;
Chuck Lever7630c852009-09-08 19:49:57 -04002642 default:
Bryan Schumakerb72e4f42012-05-10 15:07:40 -04002643 return NFS_TEXT_DATA;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002644 }
2645
2646 return 0;
2647
2648out_no_data:
2649 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2650 return -EINVAL;
2651
2652out_inval_auth:
2653 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2654 data->auth_flavourlen);
2655 return -EINVAL;
2656
2657out_no_address:
2658 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2659 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002660}
2661
Bryan Schumakerfac1e8e2012-07-30 16:05:22 -04002662/*
2663 * NFS v4 module parameters need to stay in the
2664 * NFS client for backwards compatibility
2665 */
2666unsigned int nfs_callback_set_tcpport;
2667unsigned short nfs_callback_tcpport;
2668/* Default cache timeout is 10 minutes */
2669unsigned int nfs_idmap_cache_timeout = 600;
2670/* Turn off NFSv4 uid/gid mapping when using AUTH_SYS */
2671bool nfs4_disable_idmapping = true;
2672unsigned short max_session_slots = NFS4_DEF_SLOT_TABLE_SIZE;
2673unsigned short send_implementation_id = 1;
Chuck Lever6f2ea7f2012-09-14 17:24:41 -04002674char nfs4_client_id_uniquifier[NFS4_CLIENT_ID_UNIQ_LEN] = "";
Bryan Schumakerfac1e8e2012-07-30 16:05:22 -04002675
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002676EXPORT_SYMBOL_GPL(nfs_callback_set_tcpport);
2677EXPORT_SYMBOL_GPL(nfs_callback_tcpport);
2678EXPORT_SYMBOL_GPL(nfs_idmap_cache_timeout);
2679EXPORT_SYMBOL_GPL(nfs4_disable_idmapping);
2680EXPORT_SYMBOL_GPL(max_session_slots);
2681EXPORT_SYMBOL_GPL(send_implementation_id);
Chuck Lever6f2ea7f2012-09-14 17:24:41 -04002682EXPORT_SYMBOL_GPL(nfs4_client_id_uniquifier);
Bryan Schumaker89d77c82012-07-30 16:05:25 -04002683
Bryan Schumakerfac1e8e2012-07-30 16:05:22 -04002684#define NFS_CALLBACK_MAXPORTNR (65535U)
2685
2686static int param_set_portnr(const char *val, const struct kernel_param *kp)
2687{
2688 unsigned long num;
2689 int ret;
2690
2691 if (!val)
2692 return -EINVAL;
Daniel Walter7297cb62012-09-26 21:51:46 +02002693 ret = kstrtoul(val, 0, &num);
Bryan Schumakerfac1e8e2012-07-30 16:05:22 -04002694 if (ret == -EINVAL || num > NFS_CALLBACK_MAXPORTNR)
2695 return -EINVAL;
2696 *((unsigned int *)kp->arg) = num;
2697 return 0;
2698}
2699static struct kernel_param_ops param_ops_portnr = {
2700 .set = param_set_portnr,
2701 .get = param_get_uint,
2702};
2703#define param_check_portnr(name, p) __param_check(name, p, unsigned int);
2704
2705module_param_named(callback_tcpport, nfs_callback_set_tcpport, portnr, 0644);
2706module_param(nfs_idmap_cache_timeout, int, 0644);
2707module_param(nfs4_disable_idmapping, bool, 0644);
Chuck Lever6f2ea7f2012-09-14 17:24:41 -04002708module_param_string(nfs4_unique_id, nfs4_client_id_uniquifier,
2709 NFS4_CLIENT_ID_UNIQ_LEN, 0600);
Bryan Schumakerfac1e8e2012-07-30 16:05:22 -04002710MODULE_PARM_DESC(nfs4_disable_idmapping,
2711 "Turn off NFSv4 idmapping when using 'sec=sys'");
2712module_param(max_session_slots, ushort, 0644);
2713MODULE_PARM_DESC(max_session_slots, "Maximum number of outstanding NFSv4.1 "
2714 "requests the client will negotiate");
2715module_param(send_implementation_id, ushort, 0644);
2716MODULE_PARM_DESC(send_implementation_id,
2717 "Send implementation ID with NFSv4.1 exchange_id");
Chuck Lever6f2ea7f2012-09-14 17:24:41 -04002718MODULE_PARM_DESC(nfs4_unique_id, "nfs_client_id4 uniquifier string");
bjschuma@gmail.com425e7762012-08-08 13:57:10 -04002719MODULE_ALIAS("nfs4");
2720
David Howells54ceac42006-08-22 20:06:13 -04002721#endif /* CONFIG_NFS_V4 */