blob: 7002be11d99f99c49d64279571d8db155eba8139 [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
58#include <asm/system.h>
59#include <asm/uaccess.h>
60
61#include "nfs4_fs.h"
62#include "callback.h"
63#include "delegation.h"
64#include "iostat.h"
65#include "internal.h"
David Howells08734042009-04-03 16:42:42 +010066#include "fscache.h"
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +030067#include "pnfs.h"
David Howellsf7b422b2006-06-09 09:34:33 -040068
69#define NFSDBG_FACILITY NFSDBG_VFS
70
Paulius Zaleckas1e657bd2010-10-31 18:21:05 +020071#ifdef CONFIG_NFS_V3
72#define NFS_DEFAULT_VERSION 3
73#else
74#define NFS_DEFAULT_VERSION 2
75#endif
76
Chuck Leverbf0fd762007-07-01 12:13:44 -040077enum {
78 /* Mount options that take no arguments */
79 Opt_soft, Opt_hard,
Chuck Leverbf0fd762007-07-01 12:13:44 -040080 Opt_posix, Opt_noposix,
81 Opt_cto, Opt_nocto,
82 Opt_ac, Opt_noac,
83 Opt_lock, Opt_nolock,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040084 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040085 Opt_acl, Opt_noacl,
86 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040087 Opt_sharecache, Opt_nosharecache,
Chuck Leverd7403512008-12-23 15:21:37 -050088 Opt_resvport, Opt_noresvport,
David Howellsb797cac2009-04-03 16:42:48 +010089 Opt_fscache, Opt_nofscache,
Chuck Leverbf0fd762007-07-01 12:13:44 -040090
91 /* Mount options that take integer arguments */
92 Opt_port,
93 Opt_rsize, Opt_wsize, Opt_bsize,
94 Opt_timeo, Opt_retrans,
95 Opt_acregmin, Opt_acregmax,
96 Opt_acdirmin, Opt_acdirmax,
97 Opt_actimeo,
98 Opt_namelen,
99 Opt_mountport,
Chuck Levere887cbc2007-10-26 13:32:29 -0400100 Opt_mountvers,
Mike Sager3fd5be92009-04-01 09:21:48 -0400101 Opt_minorversion,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400102
103 /* Mount options that take string arguments */
Trond Myklebust0d71b052012-03-02 13:59:49 -0500104 Opt_nfsvers,
Chuck Lever33832032007-12-10 14:59:13 -0500105 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
Chuck Lever0ac83772007-09-11 18:01:04 -0400106 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400107 Opt_lookupcache,
David Howellsb797cac2009-04-03 16:42:48 +0100108 Opt_fscache_uniq,
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400109 Opt_local_lock,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400110
Chuck Leverf45663c2008-06-24 19:28:02 -0400111 /* Special mount options */
112 Opt_userspace, Opt_deprecated, Opt_sloppy,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400113
114 Opt_err
115};
116
Steven Whitehousea447c092008-10-13 10:46:57 +0100117static const match_table_t nfs_mount_option_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400118 { Opt_userspace, "bg" },
119 { Opt_userspace, "fg" },
Chuck Leverecbb3842008-06-12 12:37:33 -0400120 { Opt_userspace, "retry=%s" },
121
Chuck Leverf45663c2008-06-24 19:28:02 -0400122 { Opt_sloppy, "sloppy" },
123
Chuck Leverbf0fd762007-07-01 12:13:44 -0400124 { Opt_soft, "soft" },
125 { Opt_hard, "hard" },
Chuck Leverd33e4df2008-06-12 12:37:41 -0400126 { Opt_deprecated, "intr" },
127 { Opt_deprecated, "nointr" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400128 { Opt_posix, "posix" },
129 { Opt_noposix, "noposix" },
130 { Opt_cto, "cto" },
131 { Opt_nocto, "nocto" },
132 { Opt_ac, "ac" },
133 { Opt_noac, "noac" },
134 { Opt_lock, "lock" },
135 { Opt_nolock, "nolock" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400136 { Opt_udp, "udp" },
137 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400138 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400139 { Opt_acl, "acl" },
140 { Opt_noacl, "noacl" },
141 { Opt_rdirplus, "rdirplus" },
142 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400143 { Opt_sharecache, "sharecache" },
144 { Opt_nosharecache, "nosharecache" },
Chuck Leverd7403512008-12-23 15:21:37 -0500145 { Opt_resvport, "resvport" },
146 { Opt_noresvport, "noresvport" },
David Howellsb797cac2009-04-03 16:42:48 +0100147 { Opt_fscache, "fsc" },
David Howellsb797cac2009-04-03 16:42:48 +0100148 { Opt_nofscache, "nofsc" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400149
Chuck Levera5a16ba2009-06-17 18:02:14 -0700150 { Opt_port, "port=%s" },
151 { Opt_rsize, "rsize=%s" },
152 { Opt_wsize, "wsize=%s" },
153 { Opt_bsize, "bsize=%s" },
154 { Opt_timeo, "timeo=%s" },
155 { Opt_retrans, "retrans=%s" },
156 { Opt_acregmin, "acregmin=%s" },
157 { Opt_acregmax, "acregmax=%s" },
158 { Opt_acdirmin, "acdirmin=%s" },
159 { Opt_acdirmax, "acdirmax=%s" },
160 { Opt_actimeo, "actimeo=%s" },
161 { Opt_namelen, "namlen=%s" },
162 { Opt_mountport, "mountport=%s" },
163 { Opt_mountvers, "mountvers=%s" },
Trond Myklebust0d71b052012-03-02 13:59:49 -0500164 { Opt_minorversion, "minorversion=%s" },
165
Chuck Levera5a16ba2009-06-17 18:02:14 -0700166 { Opt_nfsvers, "nfsvers=%s" },
167 { Opt_nfsvers, "vers=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400168
169 { Opt_sec, "sec=%s" },
170 { Opt_proto, "proto=%s" },
171 { Opt_mountproto, "mountproto=%s" },
172 { Opt_addr, "addr=%s" },
173 { Opt_clientaddr, "clientaddr=%s" },
Chuck Lever33832032007-12-10 14:59:13 -0500174 { Opt_mounthost, "mounthost=%s" },
Chuck Lever0ac83772007-09-11 18:01:04 -0400175 { Opt_mountaddr, "mountaddr=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400176
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400177 { Opt_lookupcache, "lookupcache=%s" },
Chuck Levera6d5ff62010-05-07 13:33:58 -0400178 { Opt_fscache_uniq, "fsc=%s" },
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400179 { Opt_local_lock, "local_lock=%s" },
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400180
Trond Myklebust38622792012-03-02 14:06:39 -0500181 /* The following needs to be listed after all other options */
182 { Opt_nfsvers, "v%s" },
183
Chuck Leverbf0fd762007-07-01 12:13:44 -0400184 { Opt_err, NULL }
185};
186
187enum {
Jeff Laytonee671b02009-12-03 15:58:56 -0500188 Opt_xprt_udp, Opt_xprt_udp6, Opt_xprt_tcp, Opt_xprt_tcp6, Opt_xprt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400189
190 Opt_xprt_err
191};
192
Steven Whitehousea447c092008-10-13 10:46:57 +0100193static const match_table_t nfs_xprt_protocol_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400194 { Opt_xprt_udp, "udp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500195 { Opt_xprt_udp6, "udp6" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400196 { Opt_xprt_tcp, "tcp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500197 { Opt_xprt_tcp6, "tcp6" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400198 { Opt_xprt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400199
200 { Opt_xprt_err, NULL }
201};
202
203enum {
204 Opt_sec_none, Opt_sec_sys,
205 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
206 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
207 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
208
209 Opt_sec_err
210};
211
Steven Whitehousea447c092008-10-13 10:46:57 +0100212static const match_table_t nfs_secflavor_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400213 { Opt_sec_none, "none" },
214 { Opt_sec_none, "null" },
215 { Opt_sec_sys, "sys" },
216
217 { Opt_sec_krb5, "krb5" },
218 { Opt_sec_krb5i, "krb5i" },
219 { Opt_sec_krb5p, "krb5p" },
220
221 { Opt_sec_lkey, "lkey" },
222 { Opt_sec_lkeyi, "lkeyi" },
223 { Opt_sec_lkeyp, "lkeyp" },
224
Olga Kornievskaia8d042212008-02-13 16:47:06 -0500225 { Opt_sec_spkm, "spkm3" },
226 { Opt_sec_spkmi, "spkm3i" },
227 { Opt_sec_spkmp, "spkm3p" },
228
Chuck Leverbf0fd762007-07-01 12:13:44 -0400229 { Opt_sec_err, NULL }
230};
231
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400232enum {
233 Opt_lookupcache_all, Opt_lookupcache_positive,
234 Opt_lookupcache_none,
235
236 Opt_lookupcache_err
237};
238
239static match_table_t nfs_lookupcache_tokens = {
240 { Opt_lookupcache_all, "all" },
241 { Opt_lookupcache_positive, "pos" },
242 { Opt_lookupcache_positive, "positive" },
243 { Opt_lookupcache_none, "none" },
244
245 { Opt_lookupcache_err, NULL }
246};
247
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400248enum {
249 Opt_local_lock_all, Opt_local_lock_flock, Opt_local_lock_posix,
250 Opt_local_lock_none,
251
252 Opt_local_lock_err
253};
254
255static match_table_t nfs_local_lock_tokens = {
256 { Opt_local_lock_all, "all" },
257 { Opt_local_lock_flock, "flock" },
258 { Opt_local_lock_posix, "posix" },
259 { Opt_local_lock_none, "none" },
260
261 { Opt_local_lock_err, NULL }
262};
263
Trond Myklebust0d71b052012-03-02 13:59:49 -0500264enum {
265 Opt_vers_2, Opt_vers_3, Opt_vers_4, Opt_vers_4_0,
266 Opt_vers_4_1,
267
268 Opt_vers_err
269};
270
271static match_table_t nfs_vers_tokens = {
272 { Opt_vers_2, "2" },
273 { Opt_vers_3, "3" },
274 { Opt_vers_4, "4" },
275 { Opt_vers_4_0, "4.0" },
276 { Opt_vers_4_1, "4.1" },
277
278 { Opt_vers_err, NULL }
279};
Chuck Leverbf0fd762007-07-01 12:13:44 -0400280
Al Viro42faad92008-04-24 07:21:56 -0400281static void nfs_umount_begin(struct super_block *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400282static int nfs_statfs(struct dentry *, struct kstatfs *);
Al Viro34c80b12011-12-08 21:32:45 -0500283static int nfs_show_options(struct seq_file *, struct dentry *);
Al Virod861c632011-12-08 21:32:45 -0500284static int nfs_show_devname(struct seq_file *, struct dentry *);
Al Viroa6322de2011-12-08 21:37:57 -0500285static int nfs_show_path(struct seq_file *, struct dentry *);
Al Viro64132372011-12-08 20:51:13 -0500286static int nfs_show_stats(struct seq_file *, struct dentry *);
Al Viro01194982011-03-16 07:25:36 -0400287static struct dentry *nfs_fs_mount(struct file_system_type *,
288 int, const char *, void *);
Al Viro31f43472010-10-29 03:38:12 -0400289static struct dentry *nfs_xdev_mount(struct file_system_type *fs_type,
290 int flags, const char *dev_name, void *raw_data);
Trond Myklebust387c1492010-02-03 08:27:35 -0500291static void nfs_put_super(struct super_block *);
David Howellsf7b422b2006-06-09 09:34:33 -0400292static void nfs_kill_super(struct super_block *);
Jeff Layton48b605f2008-06-10 15:38:39 -0400293static int nfs_remount(struct super_block *sb, int *flags, char *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400294
295static struct file_system_type nfs_fs_type = {
296 .owner = THIS_MODULE,
297 .name = "nfs",
Al Viro01194982011-03-16 07:25:36 -0400298 .mount = nfs_fs_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400299 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700300 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400301};
302
David Howells54ceac42006-08-22 20:06:13 -0400303struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400304 .owner = THIS_MODULE,
305 .name = "nfs",
Al Viro31f43472010-10-29 03:38:12 -0400306 .mount = nfs_xdev_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400307 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700308 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400309};
310
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800311static const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400312 .alloc_inode = nfs_alloc_inode,
313 .destroy_inode = nfs_destroy_inode,
314 .write_inode = nfs_write_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500315 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400316 .statfs = nfs_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400317 .evict_inode = nfs_evict_inode,
David Howellsf7b422b2006-06-09 09:34:33 -0400318 .umount_begin = nfs_umount_begin,
319 .show_options = nfs_show_options,
Al Viroc7f404b2011-03-16 06:59:40 -0400320 .show_devname = nfs_show_devname,
321 .show_path = nfs_show_path,
David Howellsf7b422b2006-06-09 09:34:33 -0400322 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400323 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400324};
325
326#ifdef CONFIG_NFS_V4
Chuck Lever7630c852009-09-08 19:49:57 -0400327static int nfs4_validate_text_mount_data(void *options,
328 struct nfs_parsed_mount_data *args, const char *dev_name);
Al Viro01194982011-03-16 07:25:36 -0400329static struct dentry *nfs4_try_mount(int flags, const char *dev_name,
330 struct nfs_parsed_mount_data *data);
331static struct dentry *nfs4_mount(struct file_system_type *fs_type,
332 int flags, const char *dev_name, void *raw_data);
Al Viro31f43472010-10-29 03:38:12 -0400333static struct dentry *nfs4_remote_mount(struct file_system_type *fs_type,
334 int flags, const char *dev_name, void *raw_data);
335static struct dentry *nfs4_xdev_mount(struct file_system_type *fs_type,
336 int flags, const char *dev_name, void *raw_data);
Al Viro01194982011-03-16 07:25:36 -0400337static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type,
338 int flags, const char *dev_name, void *raw_data);
Al Viro31f43472010-10-29 03:38:12 -0400339static struct dentry *nfs4_remote_referral_mount(struct file_system_type *fs_type,
340 int flags, const char *dev_name, void *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400341static void nfs4_kill_super(struct super_block *sb);
342
343static struct file_system_type nfs4_fs_type = {
344 .owner = THIS_MODULE,
345 .name = "nfs4",
Al Viro01194982011-03-16 07:25:36 -0400346 .mount = nfs4_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400347 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700348 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400349};
350
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400351static struct file_system_type nfs4_remote_fs_type = {
352 .owner = THIS_MODULE,
353 .name = "nfs4",
Al Viro31f43472010-10-29 03:38:12 -0400354 .mount = nfs4_remote_mount,
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400355 .kill_sb = nfs4_kill_super,
356 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
357};
358
David Howells54ceac42006-08-22 20:06:13 -0400359struct file_system_type nfs4_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400360 .owner = THIS_MODULE,
361 .name = "nfs4",
Al Viro31f43472010-10-29 03:38:12 -0400362 .mount = nfs4_xdev_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400363 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700364 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400365};
366
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400367static struct file_system_type nfs4_remote_referral_fs_type = {
368 .owner = THIS_MODULE,
369 .name = "nfs4",
Al Viro31f43472010-10-29 03:38:12 -0400370 .mount = nfs4_remote_referral_mount,
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400371 .kill_sb = nfs4_kill_super,
372 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
373};
374
David Howells54ceac42006-08-22 20:06:13 -0400375struct file_system_type nfs4_referral_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400376 .owner = THIS_MODULE,
377 .name = "nfs4",
Al Viro01194982011-03-16 07:25:36 -0400378 .mount = nfs4_referral_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400379 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700380 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400381};
382
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800383static const struct super_operations nfs4_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400384 .alloc_inode = nfs_alloc_inode,
385 .destroy_inode = nfs_destroy_inode,
386 .write_inode = nfs_write_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500387 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400388 .statfs = nfs_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400389 .evict_inode = nfs4_evict_inode,
David Howellsf7b422b2006-06-09 09:34:33 -0400390 .umount_begin = nfs_umount_begin,
391 .show_options = nfs_show_options,
Al Viroc7f404b2011-03-16 06:59:40 -0400392 .show_devname = nfs_show_devname,
393 .show_path = nfs_show_path,
David Howellsf7b422b2006-06-09 09:34:33 -0400394 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400395 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400396};
397#endif
398
Rusty Russell8e1f9362007-07-17 04:03:17 -0700399static struct shrinker acl_shrinker = {
400 .shrink = nfs_access_cache_shrinker,
401 .seeks = DEFAULT_SEEKS,
402};
Trond Myklebust979df722006-07-25 11:28:19 -0400403
David Howellsf7b422b2006-06-09 09:34:33 -0400404/*
405 * Register the NFS filesystems
406 */
407int __init register_nfs_fs(void)
408{
409 int ret;
410
411 ret = register_filesystem(&nfs_fs_type);
412 if (ret < 0)
413 goto error_0;
414
David Howellsf7b422b2006-06-09 09:34:33 -0400415 ret = nfs_register_sysctl();
416 if (ret < 0)
417 goto error_1;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800418#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400419 ret = register_filesystem(&nfs4_fs_type);
420 if (ret < 0)
421 goto error_2;
422#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700423 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400424 return 0;
425
426#ifdef CONFIG_NFS_V4
427error_2:
428 nfs_unregister_sysctl();
Peter Zijlstra89a09142007-03-16 13:38:26 -0800429#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400430error_1:
431 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400432error_0:
433 return ret;
434}
435
436/*
437 * Unregister the NFS filesystems
438 */
439void __exit unregister_nfs_fs(void)
440{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700441 unregister_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400442#ifdef CONFIG_NFS_V4
443 unregister_filesystem(&nfs4_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400444#endif
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700445 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400446 unregister_filesystem(&nfs_fs_type);
447}
448
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400449void nfs_sb_active(struct super_block *sb)
Steve Dicksonef818a22007-11-08 04:05:04 -0500450{
451 struct nfs_server *server = NFS_SB(sb);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400452
453 if (atomic_inc_return(&server->active) == 1)
454 atomic_inc(&sb->s_active);
455}
456
457void nfs_sb_deactive(struct super_block *sb)
458{
459 struct nfs_server *server = NFS_SB(sb);
460
461 if (atomic_dec_and_test(&server->active))
462 deactivate_super(sb);
Steve Dicksonef818a22007-11-08 04:05:04 -0500463}
464
David Howellsf7b422b2006-06-09 09:34:33 -0400465/*
466 * Deliver file system statistics to userspace
467 */
Trond Myklebust816724e2006-06-24 08:41:41 -0400468static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400469{
David Howells0c7d90c2006-08-22 20:06:10 -0400470 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400471 unsigned char blockbits;
472 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400473 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400474 struct nfs_fsstat res;
475 int error = -ENOMEM;
476
477 res.fattr = nfs_alloc_fattr();
478 if (res.fattr == NULL)
479 goto out_err;
David Howellsf7b422b2006-06-09 09:34:33 -0400480
David Howells8fa5c002006-08-22 20:06:12 -0400481 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400482 if (unlikely(error == -ESTALE)) {
483 struct dentry *pd_dentry;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400484
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400485 pd_dentry = dget_parent(dentry);
486 if (pd_dentry != NULL) {
487 nfs_zap_caches(pd_dentry->d_inode);
488 dput(pd_dentry);
489 }
490 }
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400491 nfs_free_fattr(res.fattr);
David Howellsf7b422b2006-06-09 09:34:33 -0400492 if (error < 0)
493 goto out_err;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400494
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700495 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400496
497 /*
498 * Current versions of glibc do not correctly handle the
499 * case where f_frsize != f_bsize. Eventually we want to
500 * report the value of wtmult in this field.
501 */
David Howells0c7d90c2006-08-22 20:06:10 -0400502 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400503
504 /*
505 * On most *nix systems, f_blocks, f_bfree, and f_bavail
506 * are reported in units of f_frsize. Linux hasn't had
507 * an f_frsize field in its statfs struct until recently,
508 * thus historically Linux's sys_statfs reports these
509 * fields in units of f_bsize.
510 */
David Howells0c7d90c2006-08-22 20:06:10 -0400511 buf->f_bsize = dentry->d_sb->s_blocksize;
512 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400513 blockres = (1 << blockbits) - 1;
514 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
515 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
516 buf->f_bavail = (res.abytes + blockres) >> blockbits;
517
518 buf->f_files = res.tfiles;
519 buf->f_ffree = res.afiles;
520
521 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700522
David Howellsf7b422b2006-06-09 09:34:33 -0400523 return 0;
524
525 out_err:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700526 dprintk("%s: statfs error = %d\n", __func__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700527 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400528}
529
David Howells7d4e2742006-08-22 20:06:07 -0400530/*
531 * Map the security flavour number to a name
532 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400533static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
534{
David Howells7d4e2742006-08-22 20:06:07 -0400535 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400536 rpc_authflavor_t flavour;
537 const char *str;
538 } sec_flavours[] = {
539 { RPC_AUTH_NULL, "null" },
540 { RPC_AUTH_UNIX, "sys" },
541 { RPC_AUTH_GSS_KRB5, "krb5" },
542 { RPC_AUTH_GSS_KRB5I, "krb5i" },
543 { RPC_AUTH_GSS_KRB5P, "krb5p" },
544 { RPC_AUTH_GSS_LKEY, "lkey" },
545 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
546 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
547 { RPC_AUTH_GSS_SPKM, "spkm" },
548 { RPC_AUTH_GSS_SPKMI, "spkmi" },
549 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400550 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400551 };
552 int i;
553
Chuck Lever4d81cd12007-07-01 12:12:40 -0400554 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400555 if (sec_flavours[i].flavour == flavour)
556 break;
557 }
558 return sec_flavours[i].str;
559}
560
Jeff Laytonee671b02009-12-03 15:58:56 -0500561static void nfs_show_mountd_netid(struct seq_file *m, struct nfs_server *nfss,
562 int showdefaults)
563{
564 struct sockaddr *sap = (struct sockaddr *) &nfss->mountd_address;
565
566 seq_printf(m, ",mountproto=");
567 switch (sap->sa_family) {
568 case AF_INET:
569 switch (nfss->mountd_protocol) {
570 case IPPROTO_UDP:
571 seq_printf(m, RPCBIND_NETID_UDP);
572 break;
573 case IPPROTO_TCP:
574 seq_printf(m, RPCBIND_NETID_TCP);
575 break;
576 default:
577 if (showdefaults)
578 seq_printf(m, "auto");
579 }
580 break;
581 case AF_INET6:
582 switch (nfss->mountd_protocol) {
583 case IPPROTO_UDP:
584 seq_printf(m, RPCBIND_NETID_UDP6);
585 break;
586 case IPPROTO_TCP:
587 seq_printf(m, RPCBIND_NETID_TCP6);
588 break;
589 default:
590 if (showdefaults)
591 seq_printf(m, "auto");
592 }
593 break;
594 default:
595 if (showdefaults)
596 seq_printf(m, "auto");
597 }
598}
599
Chuck Lever82d101d2008-03-14 14:10:37 -0400600static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss,
601 int showdefaults)
602{
603 struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address;
604
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -0400605 if (nfss->flags & NFS_MOUNT_LEGACY_INTERFACE)
606 return;
607
Chuck Lever82d101d2008-03-14 14:10:37 -0400608 switch (sap->sa_family) {
609 case AF_INET: {
610 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
Harvey Harrisonbe859402008-10-31 00:56:28 -0700611 seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400612 break;
613 }
614 case AF_INET6: {
615 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
Chuck Leverd250e192009-12-03 15:58:56 -0500616 seq_printf(m, ",mountaddr=%pI6c", &sin6->sin6_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400617 break;
618 }
619 default:
620 if (showdefaults)
621 seq_printf(m, ",mountaddr=unspecified");
622 }
623
624 if (nfss->mountd_version || showdefaults)
625 seq_printf(m, ",mountvers=%u", nfss->mountd_version);
Stanislav Kinsburskyaa699472010-12-08 12:40:13 +0300626 if ((nfss->mountd_port &&
627 nfss->mountd_port != (unsigned short)NFS_UNSPEC_PORT) ||
628 showdefaults)
Chuck Lever82d101d2008-03-14 14:10:37 -0400629 seq_printf(m, ",mountport=%u", nfss->mountd_port);
630
Jeff Laytonee671b02009-12-03 15:58:56 -0500631 nfs_show_mountd_netid(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400632}
633
Trond Myklebust0be81892010-06-18 12:23:58 -0400634#ifdef CONFIG_NFS_V4
635static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
636 int showdefaults)
637{
638 struct nfs_client *clp = nfss->nfs_client;
639
640 seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr);
Trond Myklebust0be81892010-06-18 12:23:58 -0400641}
642#else
643static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
644 int showdefaults)
645{
646}
647#endif
648
Trond Myklebust7bbceb62012-03-02 14:00:20 -0500649static void nfs_show_nfs_version(struct seq_file *m,
650 unsigned int version,
651 unsigned int minorversion)
652{
653 seq_printf(m, ",vers=%u", version);
654 if (version == 4)
655 seq_printf(m, ".%u", minorversion);
656}
657
David Howellsf7b422b2006-06-09 09:34:33 -0400658/*
659 * Describe the mount options in force on this server representation
660 */
Chuck Lever82d101d2008-03-14 14:10:37 -0400661static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
662 int showdefaults)
David Howellsf7b422b2006-06-09 09:34:33 -0400663{
David Howells509de812006-08-22 20:06:11 -0400664 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400665 int flag;
David Howells509de812006-08-22 20:06:11 -0400666 const char *str;
667 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400668 } nfs_info[] = {
669 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Lever82d101d2008-03-14 14:10:37 -0400670 { NFS_MOUNT_POSIX, ",posix", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400671 { NFS_MOUNT_NOCTO, ",nocto", "" },
672 { NFS_MOUNT_NOAC, ",noac", "" },
673 { NFS_MOUNT_NONLM, ",nolock", "" },
674 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400675 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Chuck Leverd7403512008-12-23 15:21:37 -0500676 { NFS_MOUNT_UNSHARED, ",nosharecache", "" },
677 { NFS_MOUNT_NORESVPORT, ",noresvport", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400678 { 0, NULL, NULL }
679 };
David Howells509de812006-08-22 20:06:11 -0400680 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400681 struct nfs_client *clp = nfss->nfs_client;
Chuck Lever82d101d2008-03-14 14:10:37 -0400682 u32 version = clp->rpc_ops->version;
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400683 int local_flock, local_fcntl;
David Howellsf7b422b2006-06-09 09:34:33 -0400684
Trond Myklebust7bbceb62012-03-02 14:00:20 -0500685 nfs_show_nfs_version(m, version, clp->cl_minorversion);
Chuck Lever2d767432008-03-14 14:10:08 -0400686 seq_printf(m, ",rsize=%u", nfss->rsize);
687 seq_printf(m, ",wsize=%u", nfss->wsize);
Chuck Lever82d101d2008-03-14 14:10:37 -0400688 if (nfss->bsize != 0)
689 seq_printf(m, ",bsize=%u", nfss->bsize);
690 seq_printf(m, ",namlen=%u", nfss->namelen);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400691 if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400692 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400693 if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400694 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400695 if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400696 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400697 if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400698 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400699 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
700 if (nfss->flags & nfs_infop->flag)
701 seq_puts(m, nfs_infop->str);
702 else
703 seq_puts(m, nfs_infop->nostr);
704 }
Trond Myklebust2446ab62012-03-01 17:00:56 -0500705 rcu_read_lock();
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400706 seq_printf(m, ",proto=%s",
Jeff Laytonee671b02009-12-03 15:58:56 -0500707 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_NETID));
Trond Myklebust2446ab62012-03-01 17:00:56 -0500708 rcu_read_unlock();
Chuck Lever82d101d2008-03-14 14:10:37 -0400709 if (version == 4) {
710 if (nfss->port != NFS_PORT)
711 seq_printf(m, ",port=%u", nfss->port);
712 } else
713 if (nfss->port)
714 seq_printf(m, ",port=%u", nfss->port);
715
Trond Myklebust33170232007-12-20 16:03:59 -0500716 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
717 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
Trond Myklebust81039f12006-06-09 09:34:34 -0400718 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
Chuck Lever82d101d2008-03-14 14:10:37 -0400719
720 if (version != 4)
721 nfs_show_mountd_options(m, nfss, showdefaults);
Trond Myklebust0be81892010-06-18 12:23:58 -0400722 else
723 nfs_show_nfsv4_options(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400724
David Howellsb797cac2009-04-03 16:42:48 +0100725 if (nfss->options & NFS_OPTION_FSCACHE)
726 seq_printf(m, ",fsc");
Patrick J. LoPresti9b00c642010-08-10 17:28:01 -0400727
728 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) {
729 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
730 seq_printf(m, ",lookupcache=none");
731 else
732 seq_printf(m, ",lookupcache=pos");
733 }
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400734
735 local_flock = nfss->flags & NFS_MOUNT_LOCAL_FLOCK;
736 local_fcntl = nfss->flags & NFS_MOUNT_LOCAL_FCNTL;
737
738 if (!local_flock && !local_fcntl)
739 seq_printf(m, ",local_lock=none");
740 else if (local_flock && local_fcntl)
741 seq_printf(m, ",local_lock=all");
742 else if (local_flock)
743 seq_printf(m, ",local_lock=flock");
744 else
745 seq_printf(m, ",local_lock=posix");
David Howellsf7b422b2006-06-09 09:34:33 -0400746}
747
748/*
749 * Describe the mount options on this VFS mountpoint
750 */
Al Viro34c80b12011-12-08 21:32:45 -0500751static int nfs_show_options(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400752{
Al Viro34c80b12011-12-08 21:32:45 -0500753 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400754
755 nfs_show_mount_options(m, nfss, 0);
756
Trond Myklebust2446ab62012-03-01 17:00:56 -0500757 rcu_read_lock();
Chuck Lever5d8515c2007-12-10 14:57:16 -0500758 seq_printf(m, ",addr=%s",
759 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
760 RPC_DISPLAY_ADDR));
Trond Myklebust2446ab62012-03-01 17:00:56 -0500761 rcu_read_unlock();
David Howellsf7b422b2006-06-09 09:34:33 -0400762
763 return 0;
764}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700765
766#ifdef CONFIG_NFS_V4
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300767#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700768static void show_sessions(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300769{
770 if (nfs4_has_session(server->nfs_client))
771 seq_printf(m, ",sessions");
772}
773#else
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700774static void show_sessions(struct seq_file *m, struct nfs_server *server) {}
775#endif
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300776#endif
777
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700778#ifdef CONFIG_NFS_V4
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300779#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700780static void show_pnfs(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300781{
782 seq_printf(m, ",pnfs=");
783 if (server->pnfs_curr_ld)
784 seq_printf(m, "%s", server->pnfs_curr_ld->name);
785 else
786 seq_printf(m, "not configured");
787}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700788#else
789static void show_pnfs(struct seq_file *m, struct nfs_server *server) {}
790#endif
791#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400792
Al Virod861c632011-12-08 21:32:45 -0500793static int nfs_show_devname(struct seq_file *m, struct dentry *root)
Al Viroc7f404b2011-03-16 06:59:40 -0400794{
795 char *page = (char *) __get_free_page(GFP_KERNEL);
796 char *devname, *dummy;
797 int err = 0;
798 if (!page)
799 return -ENOMEM;
Al Virod861c632011-12-08 21:32:45 -0500800 devname = nfs_path(&dummy, root, page, PAGE_SIZE);
Al Viroc7f404b2011-03-16 06:59:40 -0400801 if (IS_ERR(devname))
802 err = PTR_ERR(devname);
803 else
804 seq_escape(m, devname, " \t\n\\");
805 free_page((unsigned long)page);
806 return err;
807}
808
Al Viroa6322de2011-12-08 21:37:57 -0500809static int nfs_show_path(struct seq_file *m, struct dentry *dentry)
Al Viroc7f404b2011-03-16 06:59:40 -0400810{
811 seq_puts(m, "/");
812 return 0;
813}
814
David Howellsf7b422b2006-06-09 09:34:33 -0400815/*
816 * Present statistical information for this VFS mountpoint
817 */
Al Viro64132372011-12-08 20:51:13 -0500818static int nfs_show_stats(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400819{
820 int i, cpu;
Al Viro64132372011-12-08 20:51:13 -0500821 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400822 struct rpc_auth *auth = nfss->client->cl_auth;
823 struct nfs_iostats totals = { };
824
825 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
826
827 /*
828 * Display all mount option settings
829 */
830 seq_printf(m, "\n\topts:\t");
Al Viro64132372011-12-08 20:51:13 -0500831 seq_puts(m, root->d_sb->s_flags & MS_RDONLY ? "ro" : "rw");
832 seq_puts(m, root->d_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
833 seq_puts(m, root->d_sb->s_flags & MS_NOATIME ? ",noatime" : "");
834 seq_puts(m, root->d_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
David Howellsf7b422b2006-06-09 09:34:33 -0400835 nfs_show_mount_options(m, nfss, 1);
836
837 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
838
Weston Andros Adamson7d2ed9a2012-02-17 15:20:26 -0500839 if (nfss->nfs_client && nfss->nfs_client->impl_id) {
840 struct nfs41_impl_id *impl_id = nfss->nfs_client->impl_id;
841 seq_printf(m, "\n\timpl_id:\tname='%s',domain='%s',"
842 "date='%llu,%u'",
843 impl_id->name, impl_id->domain,
844 impl_id->date.seconds, impl_id->date.nseconds);
845 }
846
David Howellsf7b422b2006-06-09 09:34:33 -0400847 seq_printf(m, "\n\tcaps:\t");
848 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400849 seq_printf(m, ",wtmult=%u", nfss->wtmult);
850 seq_printf(m, ",dtsize=%u", nfss->dtsize);
851 seq_printf(m, ",bsize=%u", nfss->bsize);
852 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400853
854#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500855 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400856 seq_printf(m, "\n\tnfsv4:\t");
857 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
858 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
859 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300860 show_sessions(m, nfss);
861 show_pnfs(m, nfss);
David Howellsf7b422b2006-06-09 09:34:33 -0400862 }
863#endif
864
865 /*
866 * Display security flavor in effect for this mount
867 */
Chuck Lever2d767432008-03-14 14:10:08 -0400868 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400869 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400870 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400871
872 /*
873 * Display superblock I/O counters
874 */
875 for_each_possible_cpu(cpu) {
876 struct nfs_iostats *stats;
877
878 preempt_disable();
879 stats = per_cpu_ptr(nfss->io_stats, cpu);
880
881 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
882 totals.events[i] += stats->events[i];
883 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
884 totals.bytes[i] += stats->bytes[i];
David Howells6a510912009-04-03 16:42:43 +0100885#ifdef CONFIG_NFS_FSCACHE
886 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
887 totals.fscache[i] += stats->fscache[i];
888#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400889
890 preempt_enable();
891 }
892
893 seq_printf(m, "\n\tevents:\t");
894 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
895 seq_printf(m, "%lu ", totals.events[i]);
896 seq_printf(m, "\n\tbytes:\t");
897 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
898 seq_printf(m, "%Lu ", totals.bytes[i]);
David Howells6a510912009-04-03 16:42:43 +0100899#ifdef CONFIG_NFS_FSCACHE
900 if (nfss->options & NFS_OPTION_FSCACHE) {
901 seq_printf(m, "\n\tfsc:\t");
902 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
903 seq_printf(m, "%Lu ", totals.bytes[i]);
904 }
905#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400906 seq_printf(m, "\n");
907
908 rpc_print_iostats(m, nfss->client);
909
910 return 0;
911}
912
913/*
914 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400915 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400916 */
Al Viro42faad92008-04-24 07:21:56 -0400917static void nfs_umount_begin(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -0400918{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200919 struct nfs_server *server;
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400920 struct rpc_clnt *rpc;
921
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200922 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400923 /* -EIO all pending I/O */
924 rpc = server->client_acl;
925 if (!IS_ERR(rpc))
926 rpc_killall_tasks(rpc);
927 rpc = server->client;
928 if (!IS_ERR(rpc))
929 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400930}
931
Trond Myklebustc5811db2009-10-06 15:40:15 -0400932static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int version)
Chuck Lever9423a082009-09-23 14:36:38 -0400933{
934 struct nfs_parsed_mount_data *data;
935
936 data = kzalloc(sizeof(*data), GFP_KERNEL);
937 if (data) {
Chuck Lever9423a082009-09-23 14:36:38 -0400938 data->acregmin = NFS_DEF_ACREGMIN;
939 data->acregmax = NFS_DEF_ACREGMAX;
940 data->acdirmin = NFS_DEF_ACDIRMIN;
941 data->acdirmax = NFS_DEF_ACDIRMAX;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400942 data->mount_server.port = NFS_UNSPEC_PORT;
Chuck Lever9423a082009-09-23 14:36:38 -0400943 data->nfs_server.port = NFS_UNSPEC_PORT;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400944 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Lever9423a082009-09-23 14:36:38 -0400945 data->auth_flavors[0] = RPC_AUTH_UNIX;
946 data->auth_flavor_len = 1;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400947 data->version = version;
Chuck Lever9423a082009-09-23 14:36:38 -0400948 data->minorversion = 0;
Trond Myklebust9937347a2012-02-19 08:44:07 +0100949 data->net = current->nsproxy->net_ns;
Jeff Layton8a0d5512011-12-20 06:57:45 -0500950 security_init_mnt_opts(&data->lsm_opts);
Chuck Lever9423a082009-09-23 14:36:38 -0400951 }
952 return data;
953}
954
Jeff Layton8a0d5512011-12-20 06:57:45 -0500955static void nfs_free_parsed_mount_data(struct nfs_parsed_mount_data *data)
956{
957 if (data) {
958 kfree(data->client_address);
959 kfree(data->mount_server.hostname);
960 kfree(data->nfs_server.export_path);
961 kfree(data->nfs_server.hostname);
962 kfree(data->fscache_uniq);
963 security_free_mnt_opts(&data->lsm_opts);
964 kfree(data);
965 }
966}
967
David Howellsf7b422b2006-06-09 09:34:33 -0400968/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500969 * Sanity-check a server address provided by the mount command.
970 *
971 * Address family must be initialized, and address must not be
972 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400973 */
974static int nfs_verify_server_address(struct sockaddr *addr)
975{
976 switch (addr->sa_family) {
977 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500978 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700979 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500980 }
981 case AF_INET6: {
982 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
983 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400984 }
985 }
986
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400987 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400988 return 0;
989}
990
Chuck Lever9412b922007-12-10 14:59:21 -0500991/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400992 * Select between a default port value and a user-specified port value.
993 * If a zero value is set, then autobind will be used.
994 */
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400995static void nfs_set_port(struct sockaddr *sap, int *port,
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400996 const unsigned short default_port)
997{
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400998 if (*port == NFS_UNSPEC_PORT)
999 *port = default_port;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001000
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001001 rpc_set_port(sap, *port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001002}
1003
1004/*
Trond Myklebust259875e2008-07-02 14:43:47 -04001005 * Sanity check the NFS transport protocol.
1006 *
1007 */
1008static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
1009{
1010 switch (mnt->nfs_server.protocol) {
1011 case XPRT_TRANSPORT_UDP:
1012 case XPRT_TRANSPORT_TCP:
1013 case XPRT_TRANSPORT_RDMA:
1014 break;
1015 default:
1016 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
1017 }
1018}
1019
1020/*
1021 * For text based NFSv2/v3 mounts, the mount protocol transport default
1022 * settings should depend upon the specified NFS transport.
1023 */
1024static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
1025{
1026 nfs_validate_transport_protocol(mnt);
1027
1028 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
1029 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
1030 return;
1031 switch (mnt->nfs_server.protocol) {
1032 case XPRT_TRANSPORT_UDP:
1033 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
1034 break;
1035 case XPRT_TRANSPORT_TCP:
1036 case XPRT_TRANSPORT_RDMA:
1037 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
1038 }
1039}
1040
1041/*
Chuck Lever01060c82008-06-24 16:33:38 -04001042 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -04001043 */
1044static int nfs_parse_security_flavors(char *value,
1045 struct nfs_parsed_mount_data *mnt)
1046{
1047 substring_t args[MAX_OPT_ARGS];
1048
1049 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
1050
1051 switch (match_token(value, nfs_secflavor_tokens, args)) {
1052 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -04001053 mnt->auth_flavors[0] = RPC_AUTH_NULL;
1054 break;
1055 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -04001056 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
1057 break;
1058 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -04001059 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
1060 break;
1061 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -04001062 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
1063 break;
1064 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -04001065 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
1066 break;
1067 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -04001068 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
1069 break;
1070 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -04001071 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
1072 break;
1073 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -04001074 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
1075 break;
1076 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -04001077 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
1078 break;
1079 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -04001080 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
1081 break;
1082 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -04001083 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
1084 break;
1085 default:
1086 return 0;
1087 }
1088
Bryan Schumaker9b7160c2011-04-13 14:31:30 -04001089 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
Chuck Lever059f90b2009-08-09 15:09:31 -04001090 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -04001091 return 1;
1092}
1093
Trond Myklebust0d71b052012-03-02 13:59:49 -05001094static int nfs_parse_version_string(char *string,
1095 struct nfs_parsed_mount_data *mnt,
1096 substring_t *args)
1097{
1098 mnt->flags &= ~NFS_MOUNT_VER3;
1099 switch (match_token(string, nfs_vers_tokens, args)) {
1100 case Opt_vers_2:
1101 mnt->version = 2;
1102 break;
1103 case Opt_vers_3:
1104 mnt->flags |= NFS_MOUNT_VER3;
1105 mnt->version = 3;
1106 break;
1107 case Opt_vers_4:
1108 /* Backward compatibility option. In future,
1109 * the mount program should always supply
1110 * a NFSv4 minor version number.
1111 */
1112 mnt->version = 4;
1113 break;
1114 case Opt_vers_4_0:
1115 mnt->version = 4;
1116 mnt->minorversion = 0;
1117 break;
1118 case Opt_vers_4_1:
1119 mnt->version = 4;
1120 mnt->minorversion = 1;
1121 break;
1122 default:
1123 return 0;
1124 }
1125 return 1;
1126}
1127
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001128static int nfs_get_option_str(substring_t args[], char **option)
1129{
1130 kfree(*option);
1131 *option = match_strdup(args);
1132 return !option;
1133}
1134
1135static int nfs_get_option_ul(substring_t args[], unsigned long *option)
1136{
1137 int rc;
1138 char *string;
1139
1140 string = match_strdup(args);
1141 if (string == NULL)
1142 return -ENOMEM;
1143 rc = strict_strtoul(string, 10, option);
1144 kfree(string);
1145
1146 return rc;
1147}
1148
Chuck Lever01060c82008-06-24 16:33:38 -04001149/*
Chuck Leverbf0fd762007-07-01 12:13:44 -04001150 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -04001151 * a data structure. The whole mount string is processed; bad options are
1152 * skipped as they are encountered. If there were no errors, return 1;
1153 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -04001154 */
1155static int nfs_parse_mount_options(char *raw,
1156 struct nfs_parsed_mount_data *mnt)
1157{
Eric Parisf9c3a382008-03-05 14:20:18 -05001158 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001159 int rc, sloppy = 0, invalid_option = 0;
Jeff Laytonee671b02009-12-03 15:58:56 -05001160 unsigned short protofamily = AF_UNSPEC;
1161 unsigned short mountfamily = AF_UNSPEC;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001162
1163 if (!raw) {
1164 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
1165 return 1;
1166 }
1167 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
1168
Eric Parisf9c3a382008-03-05 14:20:18 -05001169 secdata = alloc_secdata();
1170 if (!secdata)
1171 goto out_nomem;
1172
1173 rc = security_sb_copy_data(raw, secdata);
1174 if (rc)
1175 goto out_security_failure;
1176
1177 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
1178 if (rc)
1179 goto out_security_failure;
1180
1181 free_secdata(secdata);
1182
Chuck Leverbf0fd762007-07-01 12:13:44 -04001183 while ((p = strsep(&raw, ",")) != NULL) {
1184 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -07001185 unsigned long option;
1186 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001187
1188 if (!*p)
1189 continue;
1190
1191 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
1192
1193 token = match_token(p, nfs_mount_option_tokens, args);
1194 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001195
1196 /*
1197 * boolean options: foo/nofoo
1198 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001199 case Opt_soft:
1200 mnt->flags |= NFS_MOUNT_SOFT;
1201 break;
1202 case Opt_hard:
1203 mnt->flags &= ~NFS_MOUNT_SOFT;
1204 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001205 case Opt_posix:
1206 mnt->flags |= NFS_MOUNT_POSIX;
1207 break;
1208 case Opt_noposix:
1209 mnt->flags &= ~NFS_MOUNT_POSIX;
1210 break;
1211 case Opt_cto:
1212 mnt->flags &= ~NFS_MOUNT_NOCTO;
1213 break;
1214 case Opt_nocto:
1215 mnt->flags |= NFS_MOUNT_NOCTO;
1216 break;
1217 case Opt_ac:
1218 mnt->flags &= ~NFS_MOUNT_NOAC;
1219 break;
1220 case Opt_noac:
1221 mnt->flags |= NFS_MOUNT_NOAC;
1222 break;
1223 case Opt_lock:
1224 mnt->flags &= ~NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001225 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1226 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001227 break;
1228 case Opt_nolock:
1229 mnt->flags |= NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001230 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1231 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001232 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001233 case Opt_udp:
1234 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001235 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001236 break;
1237 case Opt_tcp:
1238 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001239 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001240 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001241 case Opt_rdma:
1242 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
1243 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001244 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001245 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001246 case Opt_acl:
1247 mnt->flags &= ~NFS_MOUNT_NOACL;
1248 break;
1249 case Opt_noacl:
1250 mnt->flags |= NFS_MOUNT_NOACL;
1251 break;
1252 case Opt_rdirplus:
1253 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
1254 break;
1255 case Opt_nordirplus:
1256 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
1257 break;
Trond Myklebust75180df2007-05-16 16:53:28 -04001258 case Opt_sharecache:
1259 mnt->flags &= ~NFS_MOUNT_UNSHARED;
1260 break;
1261 case Opt_nosharecache:
1262 mnt->flags |= NFS_MOUNT_UNSHARED;
1263 break;
Chuck Leverd7403512008-12-23 15:21:37 -05001264 case Opt_resvport:
1265 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1266 break;
1267 case Opt_noresvport:
1268 mnt->flags |= NFS_MOUNT_NORESVPORT;
1269 break;
David Howellsb797cac2009-04-03 16:42:48 +01001270 case Opt_fscache:
1271 mnt->options |= NFS_OPTION_FSCACHE;
1272 kfree(mnt->fscache_uniq);
1273 mnt->fscache_uniq = NULL;
1274 break;
1275 case Opt_nofscache:
1276 mnt->options &= ~NFS_OPTION_FSCACHE;
1277 kfree(mnt->fscache_uniq);
1278 mnt->fscache_uniq = NULL;
1279 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001280
Chuck Leverf45663c2008-06-24 19:28:02 -04001281 /*
1282 * options that take numeric values
1283 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001284 case Opt_port:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001285 if (nfs_get_option_ul(args, &option) ||
1286 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001287 goto out_invalid_value;
1288 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001289 break;
1290 case Opt_rsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001291 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001292 goto out_invalid_value;
1293 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001294 break;
1295 case Opt_wsize:
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->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001299 break;
1300 case Opt_bsize:
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->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001304 break;
1305 case Opt_timeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001306 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001307 goto out_invalid_value;
1308 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001309 break;
1310 case Opt_retrans:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001311 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001312 goto out_invalid_value;
1313 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001314 break;
1315 case Opt_acregmin:
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 = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001319 break;
1320 case Opt_acregmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001321 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001322 goto out_invalid_value;
1323 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001324 break;
1325 case Opt_acdirmin:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001326 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001327 goto out_invalid_value;
1328 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001329 break;
1330 case Opt_acdirmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001331 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001332 goto out_invalid_value;
1333 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001334 break;
1335 case Opt_actimeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001336 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001337 goto out_invalid_value;
1338 mnt->acregmin = mnt->acregmax =
1339 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001340 break;
1341 case Opt_namelen:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001342 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001343 goto out_invalid_value;
1344 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001345 break;
1346 case Opt_mountport:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001347 if (nfs_get_option_ul(args, &option) ||
1348 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001349 goto out_invalid_value;
1350 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001351 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001352 case Opt_mountvers:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001353 if (nfs_get_option_ul(args, &option) ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001354 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001355 option > NFS_MNT3_VERSION)
1356 goto out_invalid_value;
1357 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001358 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001359 case Opt_minorversion:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001360 if (nfs_get_option_ul(args, &option))
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001361 goto out_invalid_value;
1362 if (option > NFS4_MAX_MINOR_VERSION)
1363 goto out_invalid_value;
1364 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001365 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001366
Chuck Leverf45663c2008-06-24 19:28:02 -04001367 /*
1368 * options that take text values
1369 */
Trond Myklebust0d71b052012-03-02 13:59:49 -05001370 case Opt_nfsvers:
1371 string = match_strdup(args);
1372 if (string == NULL)
1373 goto out_nomem;
1374 rc = nfs_parse_version_string(string, mnt, args);
1375 kfree(string);
1376 if (!rc)
1377 goto out_invalid_value;
1378 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001379 case Opt_sec:
1380 string = match_strdup(args);
1381 if (string == NULL)
1382 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001383 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001384 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001385 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001386 dfprintk(MOUNT, "NFS: unrecognized "
1387 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001388 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001389 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001390 break;
1391 case Opt_proto:
1392 string = match_strdup(args);
1393 if (string == NULL)
1394 goto out_nomem;
1395 token = match_token(string,
1396 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001397
Jeff Laytonee671b02009-12-03 15:58:56 -05001398 protofamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001399 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001400 case Opt_xprt_udp6:
1401 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001402 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001403 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001404 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001405 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001406 case Opt_xprt_tcp6:
1407 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001408 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001409 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001410 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001411 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001412 case Opt_xprt_rdma:
1413 /* vector side protocols to TCP */
1414 mnt->flags |= NFS_MOUNT_TCP;
1415 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001416 xprt_load_transport(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001417 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001418 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001419 dfprintk(MOUNT, "NFS: unrecognized "
1420 "transport protocol\n");
Yinghai Lu4223a4a2009-10-20 14:13:46 +09001421 kfree(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001422 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001423 }
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001424 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001425 break;
1426 case Opt_mountproto:
1427 string = match_strdup(args);
1428 if (string == NULL)
1429 goto out_nomem;
1430 token = match_token(string,
1431 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001432 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001433
Jeff Laytonee671b02009-12-03 15:58:56 -05001434 mountfamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001435 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001436 case Opt_xprt_udp6:
1437 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001438 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001439 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001440 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001441 case Opt_xprt_tcp6:
1442 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001443 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001444 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001445 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001446 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001447 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001448 dfprintk(MOUNT, "NFS: unrecognized "
1449 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001450 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001451 }
1452 break;
1453 case Opt_addr:
1454 string = match_strdup(args);
1455 if (string == NULL)
1456 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001457 mnt->nfs_server.addrlen =
Stanislav Kinsburskyb48e1272012-01-26 15:11:57 +04001458 rpc_pton(mnt->net, string, strlen(string),
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001459 (struct sockaddr *)
1460 &mnt->nfs_server.address,
1461 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001462 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001463 if (mnt->nfs_server.addrlen == 0)
1464 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001465 break;
1466 case Opt_clientaddr:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001467 if (nfs_get_option_str(args, &mnt->client_address))
Chuck Leverbf0fd762007-07-01 12:13:44 -04001468 goto out_nomem;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001469 break;
Chuck Lever33832032007-12-10 14:59:13 -05001470 case Opt_mounthost:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001471 if (nfs_get_option_str(args,
1472 &mnt->mount_server.hostname))
Chuck Lever33832032007-12-10 14:59:13 -05001473 goto out_nomem;
Chuck Lever33832032007-12-10 14:59:13 -05001474 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001475 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001476 string = match_strdup(args);
1477 if (string == NULL)
1478 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001479 mnt->mount_server.addrlen =
Stanislav Kinsburskyb48e1272012-01-26 15:11:57 +04001480 rpc_pton(mnt->net, string, strlen(string),
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001481 (struct sockaddr *)
1482 &mnt->mount_server.address,
1483 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001484 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001485 if (mnt->mount_server.addrlen == 0)
1486 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001487 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001488 case Opt_lookupcache:
1489 string = match_strdup(args);
1490 if (string == NULL)
1491 goto out_nomem;
1492 token = match_token(string,
1493 nfs_lookupcache_tokens, args);
1494 kfree(string);
1495 switch (token) {
1496 case Opt_lookupcache_all:
1497 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1498 break;
1499 case Opt_lookupcache_positive:
1500 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1501 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1502 break;
1503 case Opt_lookupcache_none:
1504 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1505 break;
1506 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001507 dfprintk(MOUNT, "NFS: invalid "
1508 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001509 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001510 };
1511 break;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001512 case Opt_fscache_uniq:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001513 if (nfs_get_option_str(args, &mnt->fscache_uniq))
Chuck Levera6d5ff62010-05-07 13:33:58 -04001514 goto out_nomem;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001515 mnt->options |= NFS_OPTION_FSCACHE;
1516 break;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001517 case Opt_local_lock:
1518 string = match_strdup(args);
1519 if (string == NULL)
1520 goto out_nomem;
1521 token = match_token(string, nfs_local_lock_tokens,
1522 args);
1523 kfree(string);
1524 switch (token) {
1525 case Opt_local_lock_all:
1526 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1527 NFS_MOUNT_LOCAL_FCNTL);
1528 break;
1529 case Opt_local_lock_flock:
1530 mnt->flags |= NFS_MOUNT_LOCAL_FLOCK;
1531 break;
1532 case Opt_local_lock_posix:
1533 mnt->flags |= NFS_MOUNT_LOCAL_FCNTL;
1534 break;
1535 case Opt_local_lock_none:
1536 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1537 NFS_MOUNT_LOCAL_FCNTL);
1538 break;
1539 default:
1540 dfprintk(MOUNT, "NFS: invalid "
1541 "local_lock argument\n");
1542 return 0;
1543 };
1544 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001545
Chuck Leverf45663c2008-06-24 19:28:02 -04001546 /*
1547 * Special options
1548 */
1549 case Opt_sloppy:
1550 sloppy = 1;
1551 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1552 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001553 case Opt_userspace:
1554 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001555 dfprintk(MOUNT, "NFS: ignoring mount option "
1556 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001557 break;
1558
1559 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001560 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001561 dfprintk(MOUNT, "NFS: unrecognized mount option "
1562 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001563 }
1564 }
1565
Chuck Leverd23c45f2009-06-17 18:02:13 -07001566 if (!sloppy && invalid_option)
1567 return 0;
1568
Weston Andros Adamson571b7552012-02-01 14:06:41 -05001569 if (mnt->minorversion && mnt->version != 4)
1570 goto out_minorversion_mismatch;
1571
Jeff Laytonee671b02009-12-03 15:58:56 -05001572 /*
1573 * verify that any proto=/mountproto= options match the address
1574 * familiies in the addr=/mountaddr= options.
1575 */
1576 if (protofamily != AF_UNSPEC &&
1577 protofamily != mnt->nfs_server.address.ss_family)
1578 goto out_proto_mismatch;
1579
1580 if (mountfamily != AF_UNSPEC) {
1581 if (mnt->mount_server.addrlen) {
1582 if (mountfamily != mnt->mount_server.address.ss_family)
1583 goto out_mountproto_mismatch;
1584 } else {
1585 if (mountfamily != mnt->nfs_server.address.ss_family)
1586 goto out_mountproto_mismatch;
1587 }
1588 }
1589
Chuck Leverbf0fd762007-07-01 12:13:44 -04001590 return 1;
1591
Jeff Laytonee671b02009-12-03 15:58:56 -05001592out_mountproto_mismatch:
1593 printk(KERN_INFO "NFS: mount server address does not match mountproto= "
1594 "option\n");
1595 return 0;
1596out_proto_mismatch:
1597 printk(KERN_INFO "NFS: server address does not match proto= option\n");
1598 return 0;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001599out_invalid_address:
1600 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1601 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001602out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001603 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001604 return 0;
Weston Andros Adamson571b7552012-02-01 14:06:41 -05001605out_minorversion_mismatch:
1606 printk(KERN_INFO "NFS: mount option vers=%u does not support "
1607 "minorversion=%u\n", mnt->version, mnt->minorversion);
1608 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001609out_nomem:
1610 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1611 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001612out_security_failure:
1613 free_secdata(secdata);
1614 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1615 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001616}
1617
1618/*
Chuck Leverec88f282009-08-09 15:09:32 -04001619 * Match the requested auth flavors with the list returned by
1620 * the server. Returns zero and sets the mount's authentication
1621 * flavor on success; returns -EACCES if server does not support
1622 * the requested flavor.
1623 */
1624static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1625 struct nfs_mount_request *request)
1626{
1627 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1628
1629 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001630 * Certain releases of Linux's mountd return an empty
1631 * flavor list. To prevent behavioral regression with
1632 * these servers (ie. rejecting mounts that used to
1633 * succeed), revert to pre-2.6.32 behavior (no checking)
1634 * if the returned flavor list is empty.
1635 */
1636 if (server_authlist_len == 0)
1637 return 0;
1638
1639 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001640 * We avoid sophisticated negotiating here, as there are
1641 * plenty of cases where we can get it wrong, providing
1642 * either too little or too much security.
1643 *
1644 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1645 * flavor listed first. However, some servers list
1646 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1647 * preferred default, in args->auth_flavors[0] if user
1648 * didn't specify sec= mount option.
1649 */
1650 for (i = 0; i < args->auth_flavor_len; i++)
1651 for (j = 0; j < server_authlist_len; j++)
1652 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1653 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1654 request->auth_flavs[j]);
1655 args->auth_flavors[0] = request->auth_flavs[j];
1656 return 0;
1657 }
1658
1659 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1660 nfs_umount(request);
1661 return -EACCES;
1662}
1663
1664/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001665 * Use the remote server's MOUNT service to request the NFS file handle
1666 * corresponding to the provided path.
1667 */
1668static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1669 struct nfs_fh *root_fh)
1670{
Chuck Leverec88f282009-08-09 15:09:32 -04001671 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1672 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001673 struct nfs_mount_request request = {
1674 .sap = (struct sockaddr *)
1675 &args->mount_server.address,
1676 .dirpath = args->nfs_server.export_path,
1677 .protocol = args->mount_server.protocol,
1678 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001679 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001680 .auth_flav_len = &server_authlist_len,
1681 .auth_flavs = server_authlist,
Stanislav Kinsbursky6d59b8d2012-01-10 16:12:54 +04001682 .net = args->net,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001683 };
Chuck Lever4c568012007-12-10 14:59:28 -05001684 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001685
1686 if (args->mount_server.version == 0) {
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001687 switch (args->version) {
1688 default:
1689 args->mount_server.version = NFS_MNT3_VERSION;
1690 break;
1691 case 2:
1692 args->mount_server.version = NFS_MNT_VERSION;
1693 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001694 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001695 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001696
Chuck Lever33832032007-12-10 14:59:13 -05001697 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001698 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001699 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001700 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001701
Chuck Lever0076d7b2007-07-01 12:13:49 -04001702 /*
1703 * Construct the mount server's address.
1704 */
Chuck Lever4c568012007-12-10 14:59:28 -05001705 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001706 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001707 args->nfs_server.addrlen);
1708 args->mount_server.addrlen = args->nfs_server.addrlen;
1709 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001710 request.salen = args->mount_server.addrlen;
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001711 nfs_set_port(request.sap, &args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001712
1713 /*
1714 * Now ask the mount server to map our export path
1715 * to a file handle.
1716 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001717 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001718 if (status != 0) {
1719 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1720 request.hostname, status);
1721 return status;
1722 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001723
Chuck Leverec88f282009-08-09 15:09:32 -04001724 /*
1725 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1726 */
1727 if (args->mount_server.version != NFS_MNT3_VERSION)
1728 return 0;
1729 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001730}
1731
Rob Landleyc12bace2011-03-09 15:54:13 -06001732/*
1733 * Split "dev_name" into "hostname:export_path".
1734 *
1735 * The leftmost colon demarks the split between the server's hostname
1736 * and the export path. If the hostname starts with a left square
1737 * bracket, then it may contain colons.
1738 *
1739 * Note: caller frees hostname and export path, even on error.
1740 */
1741static int nfs_parse_devname(const char *dev_name,
1742 char **hostname, size_t maxnamlen,
1743 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001744{
1745 size_t len;
Rob Landleyc12bace2011-03-09 15:54:13 -06001746 char *end;
Chuck Leverdc045892008-06-23 12:36:37 -04001747
Rob Landleyc12bace2011-03-09 15:54:13 -06001748 /* Is the host name protected with square brakcets? */
1749 if (*dev_name == '[') {
1750 end = strchr(++dev_name, ']');
1751 if (end == NULL || end[1] != ':')
1752 goto out_bad_devname;
Chuck Leverdc045892008-06-23 12:36:37 -04001753
Rob Landleyc12bace2011-03-09 15:54:13 -06001754 len = end - dev_name;
1755 end++;
1756 } else {
1757 char *comma;
1758
1759 end = strchr(dev_name, ':');
1760 if (end == NULL)
1761 goto out_bad_devname;
1762 len = end - dev_name;
1763
1764 /* kill possible hostname list: not supported */
1765 comma = strchr(dev_name, ',');
1766 if (comma != NULL && comma < end)
1767 *comma = 0;
1768 }
1769
Chuck Leverdc045892008-06-23 12:36:37 -04001770 if (len > maxnamlen)
1771 goto out_hostname;
1772
1773 /* N.B. caller will free nfs_server.hostname in all cases */
1774 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
Rob Landleyc12bace2011-03-09 15:54:13 -06001775 if (*hostname == NULL)
Chuck Leverdc045892008-06-23 12:36:37 -04001776 goto out_nomem;
Rob Landleyc12bace2011-03-09 15:54:13 -06001777 len = strlen(++end);
Chuck Leverdc045892008-06-23 12:36:37 -04001778 if (len > maxpathlen)
1779 goto out_path;
Rob Landleyc12bace2011-03-09 15:54:13 -06001780 *export_path = kstrndup(end, len, GFP_KERNEL);
Chuck Leverdc045892008-06-23 12:36:37 -04001781 if (!*export_path)
1782 goto out_nomem;
1783
1784 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1785 return 0;
1786
1787out_bad_devname:
1788 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1789 return -EINVAL;
1790
1791out_nomem:
1792 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1793 return -ENOMEM;
1794
1795out_hostname:
1796 dfprintk(MOUNT, "NFS: server hostname too long\n");
1797 return -ENAMETOOLONG;
1798
1799out_path:
1800 dfprintk(MOUNT, "NFS: export pathname too long\n");
1801 return -ENAMETOOLONG;
1802}
1803
1804/*
David Howells54ceac42006-08-22 20:06:13 -04001805 * Validate the NFS2/NFS3 mount data
1806 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001807 *
1808 * For option strings, user space handles the following behaviors:
1809 *
1810 * + DNS: mapping server host name to IP address ("addr=" option)
1811 *
1812 * + failure mode: how to behave if a mount request can't be handled
1813 * immediately ("fg/bg" option)
1814 *
1815 * + retry: how often to retry a mount request ("retry=" option)
1816 *
1817 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1818 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001819 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001820static int nfs_validate_mount_data(void *options,
1821 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001822 struct nfs_fh *mntfh,
1823 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001824{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001825 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001826 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001827
Chuck Lever5df36e72007-07-01 12:12:56 -04001828 if (data == NULL)
1829 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001830
David Howellsf7b422b2006-06-09 09:34:33 -04001831 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001832 case 1:
1833 data->namlen = 0;
1834 case 2:
1835 data->bsize = 0;
1836 case 3:
1837 if (data->flags & NFS_MOUNT_VER3)
1838 goto out_no_v3;
1839 data->root.size = NFS2_FHSIZE;
1840 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1841 case 4:
1842 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1843 goto out_no_sec;
1844 case 5:
1845 memset(data->context, 0, sizeof(data->context));
1846 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001847 if (data->flags & NFS_MOUNT_VER3) {
1848 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1849 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001850 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001851 args->version = 3;
1852 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001853 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001854 args->version = 2;
1855 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001856
Chuck Lever5df36e72007-07-01 12:12:56 -04001857
1858 memcpy(mntfh->data, data->root.data, mntfh->size);
1859 if (mntfh->size < sizeof(mntfh->data))
1860 memset(mntfh->data + mntfh->size, 0,
1861 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001862
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001863 /*
1864 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1865 * can deal with.
1866 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001867 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -04001868 args->flags |= NFS_MOUNT_LEGACY_INTERFACE;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001869 args->rsize = data->rsize;
1870 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001871 args->timeo = data->timeo;
1872 args->retrans = data->retrans;
1873 args->acregmin = data->acregmin;
1874 args->acregmax = data->acregmax;
1875 args->acdirmin = data->acdirmin;
1876 args->acdirmax = data->acdirmax;
Chuck Lever4c568012007-12-10 14:59:28 -05001877
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001878 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001879 args->nfs_server.addrlen = sizeof(data->addr);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001880 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001881 goto out_no_address;
1882
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001883 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001884 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001885 /* N.B. caller will free nfs_server.hostname in all cases */
1886 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1887 args->namlen = data->namlen;
1888 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001889
1890 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1891 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001892 if (!args->nfs_server.hostname)
1893 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001894
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001895 if (!(data->flags & NFS_MOUNT_NONLM))
1896 args->flags &= ~(NFS_MOUNT_LOCAL_FLOCK|
1897 NFS_MOUNT_LOCAL_FCNTL);
1898 else
1899 args->flags |= (NFS_MOUNT_LOCAL_FLOCK|
1900 NFS_MOUNT_LOCAL_FCNTL);
Eric Parisf9c3a382008-03-05 14:20:18 -05001901 /*
1902 * The legacy version 6 binary mount data from userspace has a
1903 * field used only to transport selinux information into the
1904 * the kernel. To continue to support that functionality we
1905 * have a touch of selinux knowledge here in the NFS code. The
1906 * userspace code converted context=blah to just blah so we are
1907 * converting back to the full string selinux understands.
1908 */
1909 if (data->context[0]){
1910#ifdef CONFIG_SECURITY_SELINUX
1911 int rc;
1912 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1913 if (!opts_str)
1914 return -ENOMEM;
1915 strcpy(opts_str, "context=");
1916 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1917 strcat(opts_str, &data->context[0]);
1918 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1919 kfree(opts_str);
1920 if (rc)
1921 return rc;
1922#else
1923 return -EINVAL;
1924#endif
1925 }
1926
Chuck Lever5df36e72007-07-01 12:12:56 -04001927 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001928 default: {
Chuck Lever136d5582007-07-01 12:13:54 -04001929 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001930
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001931 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001932 return -EINVAL;
1933
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001934 if (!nfs_verify_server_address(sap))
Chuck Lever6e88e062007-09-24 15:39:50 -04001935 goto out_no_address;
1936
Chuck Lever764302c2009-09-08 19:50:03 -04001937 if (args->version == 4)
1938#ifdef CONFIG_NFS_V4
1939 return nfs4_validate_text_mount_data(options,
1940 args, dev_name);
1941#else
1942 goto out_v4_not_compiled;
1943#endif
1944
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001945 nfs_set_port(sap, &args->nfs_server.port, 0);
Chuck Levered596a82008-06-26 17:47:05 -04001946
Trond Myklebust259875e2008-07-02 14:43:47 -04001947 nfs_set_mount_transport_protocol(args);
1948
Chuck Leverdc045892008-06-23 12:36:37 -04001949 status = nfs_parse_devname(dev_name,
1950 &args->nfs_server.hostname,
1951 PAGE_SIZE,
1952 &args->nfs_server.export_path,
1953 NFS_MAXPATHLEN);
1954 if (!status)
1955 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001956
Chuck Leverdc045892008-06-23 12:36:37 -04001957 kfree(args->nfs_server.export_path);
1958 args->nfs_server.export_path = NULL;
Chuck Lever136d5582007-07-01 12:13:54 -04001959
Chuck Lever136d5582007-07-01 12:13:54 -04001960 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001961 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001962
Chuck Lever136d5582007-07-01 12:13:54 -04001963 break;
1964 }
David Howellsf7b422b2006-06-09 09:34:33 -04001965 }
David Howells54ceac42006-08-22 20:06:13 -04001966
David Howellsf7b422b2006-06-09 09:34:33 -04001967#ifndef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001968 if (args->version == 3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001969 goto out_v3_not_compiled;
1970#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001971
David Howells54ceac42006-08-22 20:06:13 -04001972 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001973
1974out_no_data:
1975 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1976 return -EINVAL;
1977
1978out_no_v3:
1979 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1980 data->version);
1981 return -EINVAL;
1982
1983out_no_sec:
1984 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1985 return -EINVAL;
1986
Chuck Lever5df36e72007-07-01 12:12:56 -04001987#ifndef CONFIG_NFS_V3
1988out_v3_not_compiled:
1989 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1990 return -EPROTONOSUPPORT;
1991#endif /* !CONFIG_NFS_V3 */
1992
Chuck Lever764302c2009-09-08 19:50:03 -04001993#ifndef CONFIG_NFS_V4
1994out_v4_not_compiled:
1995 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
1996 return -EPROTONOSUPPORT;
1997#endif /* !CONFIG_NFS_V4 */
1998
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001999out_nomem:
2000 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
2001 return -ENOMEM;
2002
Chuck Lever5df36e72007-07-01 12:12:56 -04002003out_no_address:
2004 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
2005 return -EINVAL;
2006
2007out_invalid_fh:
2008 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
2009 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04002010}
2011
Jeff Layton48b605f2008-06-10 15:38:39 -04002012static int
2013nfs_compare_remount_data(struct nfs_server *nfss,
2014 struct nfs_parsed_mount_data *data)
2015{
2016 if (data->flags != nfss->flags ||
2017 data->rsize != nfss->rsize ||
2018 data->wsize != nfss->wsize ||
2019 data->retrans != nfss->client->cl_timeout->to_retries ||
2020 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
2021 data->acregmin != nfss->acregmin / HZ ||
2022 data->acregmax != nfss->acregmax / HZ ||
2023 data->acdirmin != nfss->acdirmin / HZ ||
2024 data->acdirmax != nfss->acdirmax / HZ ||
2025 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002026 data->nfs_server.port != nfss->port ||
Jeff Layton48b605f2008-06-10 15:38:39 -04002027 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
Stefan Richtera1be9ee2009-10-12 11:26:12 -04002028 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
2029 (struct sockaddr *)&nfss->nfs_client->cl_addr))
Jeff Layton48b605f2008-06-10 15:38:39 -04002030 return -EINVAL;
2031
2032 return 0;
2033}
2034
2035static int
2036nfs_remount(struct super_block *sb, int *flags, char *raw_data)
2037{
2038 int error;
2039 struct nfs_server *nfss = sb->s_fs_info;
2040 struct nfs_parsed_mount_data *data;
2041 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
2042 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04002043 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04002044
2045 /*
2046 * Userspace mount programs that send binary options generally send
2047 * them populated with default values. We have no way to know which
2048 * ones were explicitly specified. Fall back to legacy behavior and
2049 * just return success.
2050 */
Marc Zyngier31c94462008-07-17 13:21:55 +02002051 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
2052 (nfsvers <= 3 && (!options || (options->version >= 1 &&
2053 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04002054 return 0;
2055
2056 data = kzalloc(sizeof(*data), GFP_KERNEL);
2057 if (data == NULL)
2058 return -ENOMEM;
2059
2060 /* fill out struct with values from existing mount */
2061 data->flags = nfss->flags;
2062 data->rsize = nfss->rsize;
2063 data->wsize = nfss->wsize;
2064 data->retrans = nfss->client->cl_timeout->to_retries;
2065 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
2066 data->acregmin = nfss->acregmin / HZ;
2067 data->acregmax = nfss->acregmax / HZ;
2068 data->acdirmin = nfss->acdirmin / HZ;
2069 data->acdirmax = nfss->acdirmax / HZ;
2070 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002071 data->nfs_server.port = nfss->port;
Jeff Layton48b605f2008-06-10 15:38:39 -04002072 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
2073 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
2074 data->nfs_server.addrlen);
2075
2076 /* overwrite those values with any that were specified */
2077 error = nfs_parse_mount_options((char *)options, data);
2078 if (error < 0)
2079 goto out;
2080
Jeff Layton26c4c172011-04-27 11:49:09 -04002081 /*
2082 * noac is a special case. It implies -o sync, but that's not
2083 * necessarily reflected in the mtab options. do_remount_sb
2084 * will clear MS_SYNCHRONOUS if -o sync wasn't specified in the
2085 * remount options, so we have to explicitly reset it.
2086 */
2087 if (data->flags & NFS_MOUNT_NOAC)
2088 *flags |= MS_SYNCHRONOUS;
2089
Jeff Layton48b605f2008-06-10 15:38:39 -04002090 /* compare new mount options with old ones */
2091 error = nfs_compare_remount_data(nfss, data);
2092out:
2093 kfree(data);
2094 return error;
2095}
2096
David Howells54ceac42006-08-22 20:06:13 -04002097/*
2098 * Initialise the common bits of the superblock
2099 */
2100static inline void nfs_initialise_sb(struct super_block *sb)
2101{
2102 struct nfs_server *server = NFS_SB(sb);
2103
2104 sb->s_magic = NFS_SUPER_MAGIC;
2105
2106 /* We probably want something more informative here */
2107 snprintf(sb->s_id, sizeof(sb->s_id),
2108 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
2109
2110 if (sb->s_blocksize == 0)
2111 sb->s_blocksize = nfs_block_bits(server->wsize,
2112 &sb->s_blocksize_bits);
2113
Jens Axboe32a88aa2009-09-16 15:02:33 +02002114 sb->s_bdi = &server->backing_dev_info;
2115
David Howells54ceac42006-08-22 20:06:13 -04002116 nfs_super_set_maxbytes(sb, server->maxfilesize);
2117}
2118
2119/*
2120 * Finish setting up an NFS2/3 superblock
2121 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04002122static void nfs_fill_super(struct super_block *sb,
2123 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04002124{
2125 struct nfs_server *server = NFS_SB(sb);
2126
2127 sb->s_blocksize_bits = 0;
2128 sb->s_blocksize = 0;
2129 if (data->bsize)
2130 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
2131
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002132 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002133 /* The VFS shouldn't apply the umask to mode bits. We will do
2134 * so ourselves when necessary.
2135 */
2136 sb->s_flags |= MS_POSIXACL;
2137 sb->s_time_gran = 1;
2138 }
2139
2140 sb->s_op = &nfs_sops;
2141 nfs_initialise_sb(sb);
2142}
2143
2144/*
2145 * Finish setting up a cloned NFS2/3 superblock
2146 */
2147static void nfs_clone_super(struct super_block *sb,
2148 const struct super_block *old_sb)
2149{
2150 struct nfs_server *server = NFS_SB(sb);
2151
2152 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2153 sb->s_blocksize = old_sb->s_blocksize;
2154 sb->s_maxbytes = old_sb->s_maxbytes;
2155
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002156 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002157 /* The VFS shouldn't apply the umask to mode bits. We will do
2158 * so ourselves when necessary.
2159 */
2160 sb->s_flags |= MS_POSIXACL;
2161 sb->s_time_gran = 1;
2162 }
2163
2164 sb->s_op = old_sb->s_op;
2165 nfs_initialise_sb(sb);
2166}
2167
Trond Myklebust275a5d22007-05-16 16:53:28 -04002168static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
2169{
2170 const struct nfs_server *a = s->s_fs_info;
2171 const struct rpc_clnt *clnt_a = a->client;
2172 const struct rpc_clnt *clnt_b = b->client;
2173
2174 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
2175 goto Ebusy;
2176 if (a->nfs_client != b->nfs_client)
2177 goto Ebusy;
2178 if (a->flags != b->flags)
2179 goto Ebusy;
2180 if (a->wsize != b->wsize)
2181 goto Ebusy;
2182 if (a->rsize != b->rsize)
2183 goto Ebusy;
2184 if (a->acregmin != b->acregmin)
2185 goto Ebusy;
2186 if (a->acregmax != b->acregmax)
2187 goto Ebusy;
2188 if (a->acdirmin != b->acdirmin)
2189 goto Ebusy;
2190 if (a->acdirmax != b->acdirmax)
2191 goto Ebusy;
2192 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2193 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002194 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002195Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002196 return 0;
2197}
2198
2199struct nfs_sb_mountdata {
2200 struct nfs_server *server;
2201 int mntflags;
2202};
2203
2204static int nfs_set_super(struct super_block *s, void *data)
2205{
2206 struct nfs_sb_mountdata *sb_mntdata = data;
2207 struct nfs_server *server = sb_mntdata->server;
2208 int ret;
2209
2210 s->s_flags = sb_mntdata->mntflags;
2211 s->s_fs_info = server;
Al Viro8b244ff2010-12-18 11:29:39 -05002212 s->s_d_op = server->nfs_client->rpc_ops->dentry_ops;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002213 ret = set_anon_super(s, server);
2214 if (ret == 0)
2215 server->s_dev = s->s_dev;
2216 return ret;
2217}
2218
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002219static int nfs_compare_super_address(struct nfs_server *server1,
2220 struct nfs_server *server2)
2221{
2222 struct sockaddr *sap1, *sap2;
2223
2224 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2225 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2226
2227 if (sap1->sa_family != sap2->sa_family)
2228 return 0;
2229
2230 switch (sap1->sa_family) {
2231 case AF_INET: {
2232 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2233 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2234 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2235 return 0;
2236 if (sin1->sin_port != sin2->sin_port)
2237 return 0;
2238 break;
2239 }
2240 case AF_INET6: {
2241 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2242 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2243 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2244 return 0;
2245 if (sin1->sin6_port != sin2->sin6_port)
2246 return 0;
2247 break;
2248 }
2249 default:
2250 return 0;
2251 }
2252
2253 return 1;
2254}
2255
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002256static int nfs_compare_super(struct super_block *sb, void *data)
2257{
2258 struct nfs_sb_mountdata *sb_mntdata = data;
2259 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2260 int mntflags = sb_mntdata->mntflags;
2261
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002262 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002263 return 0;
2264 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2265 if (old->flags & NFS_MOUNT_UNSHARED)
2266 return 0;
2267 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2268 return 0;
2269 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002270}
2271
Miklos Szeredifa799752008-04-30 00:54:33 -07002272static int nfs_bdi_register(struct nfs_server *server)
2273{
2274 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2275}
2276
Al Viro01194982011-03-16 07:25:36 -04002277static struct dentry *nfs_fs_mount(struct file_system_type *fs_type,
2278 int flags, const char *dev_name, void *raw_data)
David Howells54ceac42006-08-22 20:06:13 -04002279{
2280 struct nfs_server *server = NULL;
2281 struct super_block *s;
Trond Myklebust33852a12008-06-19 14:20:11 -04002282 struct nfs_parsed_mount_data *data;
2283 struct nfs_fh *mntfh;
Al Viro01194982011-03-16 07:25:36 -04002284 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Trond Myklebust75180df2007-05-16 16:53:28 -04002285 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002286 struct nfs_sb_mountdata sb_mntdata = {
2287 .mntflags = flags,
2288 };
Al Viro01194982011-03-16 07:25:36 -04002289 int error;
David Howells54ceac42006-08-22 20:06:13 -04002290
Paulius Zaleckas1e657bd2010-10-31 18:21:05 +02002291 data = nfs_alloc_parsed_mount_data(NFS_DEFAULT_VERSION);
Trond Myklebustb157b062010-04-19 19:05:48 -04002292 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002293 if (data == NULL || mntfh == NULL)
Jeff Layton8a0d5512011-12-20 06:57:45 -05002294 goto out;
Eric Parisf9c3a382008-03-05 14:20:18 -05002295
David Howells54ceac42006-08-22 20:06:13 -04002296 /* Validate the mount data */
Trond Myklebust33852a12008-06-19 14:20:11 -04002297 error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002298 if (error < 0) {
2299 mntroot = ERR_PTR(error);
Chuck Lever06559602007-07-01 12:12:35 -04002300 goto out;
Al Viro01194982011-03-16 07:25:36 -04002301 }
David Howells54ceac42006-08-22 20:06:13 -04002302
Chuck Lever764302c2009-09-08 19:50:03 -04002303#ifdef CONFIG_NFS_V4
2304 if (data->version == 4) {
Al Viro01194982011-03-16 07:25:36 -04002305 mntroot = nfs4_try_mount(flags, dev_name, data);
Chuck Lever764302c2009-09-08 19:50:03 -04002306 goto out;
2307 }
2308#endif /* CONFIG_NFS_V4 */
2309
David Howells54ceac42006-08-22 20:06:13 -04002310 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002311 server = nfs_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002312 if (IS_ERR(server)) {
Al Viro01194982011-03-16 07:25:36 -04002313 mntroot = ERR_CAST(server);
Chuck Lever06559602007-07-01 12:12:35 -04002314 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002315 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002316 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002317
Trond Myklebust75180df2007-05-16 16:53:28 -04002318 if (server->flags & NFS_MOUNT_UNSHARED)
2319 compare_super = NULL;
2320
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002321 /* -o noac implies -o sync */
2322 if (server->flags & NFS_MOUNT_NOAC)
2323 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2324
David Howells54ceac42006-08-22 20:06:13 -04002325 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002326 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002327 if (IS_ERR(s)) {
Al Viro01194982011-03-16 07:25:36 -04002328 mntroot = ERR_CAST(s);
David Howells54ceac42006-08-22 20:06:13 -04002329 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002330 }
2331
David Howells54ceac42006-08-22 20:06:13 -04002332 if (s->s_fs_info != server) {
2333 nfs_free_server(server);
2334 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002335 } else {
2336 error = nfs_bdi_register(server);
Al Viro01194982011-03-16 07:25:36 -04002337 if (error) {
2338 mntroot = ERR_PTR(error);
NeilBrowncfbc0682010-03-11 11:20:17 +11002339 goto error_splat_bdi;
Al Viro01194982011-03-16 07:25:36 -04002340 }
David Howellsf7b422b2006-06-09 09:34:33 -04002341 }
David Howells54ceac42006-08-22 20:06:13 -04002342
2343 if (!s->s_root) {
2344 /* initial superblock/root creation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002345 nfs_fill_super(s, data);
Jesper Juhl160bc162011-04-10 17:57:07 +02002346 nfs_fscache_get_super_cookie(s, data->fscache_uniq, NULL);
David Howells54ceac42006-08-22 20:06:13 -04002347 }
2348
Al Viro0d5839a2011-03-16 05:27:27 -04002349 mntroot = nfs_get_root(s, mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002350 if (IS_ERR(mntroot))
David Howells54ceac42006-08-22 20:06:13 -04002351 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002352
Trond Myklebust33852a12008-06-19 14:20:11 -04002353 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002354 if (error)
2355 goto error_splat_root;
2356
David Howellsf7b422b2006-06-09 09:34:33 -04002357 s->s_flags |= MS_ACTIVE;
Chuck Lever06559602007-07-01 12:12:35 -04002358
2359out:
Jeff Layton8a0d5512011-12-20 06:57:45 -05002360 nfs_free_parsed_mount_data(data);
Trond Myklebustb157b062010-04-19 19:05:48 -04002361 nfs_free_fhandle(mntfh);
Al Viro01194982011-03-16 07:25:36 -04002362 return mntroot;
Trond Myklebust816724e2006-06-24 08:41:41 -04002363
David Howells54ceac42006-08-22 20:06:13 -04002364out_err_nosb:
2365 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002366 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002367
Eric Parisf9c3a382008-03-05 14:20:18 -05002368error_splat_root:
2369 dput(mntroot);
Al Viro01194982011-03-16 07:25:36 -04002370 mntroot = ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002371error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002372 if (server && !s->s_root)
2373 bdi_unregister(&server->backing_dev_info);
2374error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002375 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002376 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002377}
2378
David Howells54ceac42006-08-22 20:06:13 -04002379/*
Trond Myklebust387c1492010-02-03 08:27:35 -05002380 * Ensure that we unregister the bdi before kill_anon_super
2381 * releases the device name
2382 */
2383static void nfs_put_super(struct super_block *s)
2384{
2385 struct nfs_server *server = NFS_SB(s);
2386
2387 bdi_unregister(&server->backing_dev_info);
2388}
2389
2390/*
David Howells54ceac42006-08-22 20:06:13 -04002391 * Destroy an NFS2/3 superblock
2392 */
David Howellsf7b422b2006-06-09 09:34:33 -04002393static void nfs_kill_super(struct super_block *s)
2394{
2395 struct nfs_server *server = NFS_SB(s);
2396
2397 kill_anon_super(s);
David Howells08734042009-04-03 16:42:42 +01002398 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002399 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002400}
2401
David Howells54ceac42006-08-22 20:06:13 -04002402/*
2403 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2404 */
Al Viro31f43472010-10-29 03:38:12 -04002405static struct dentry *
2406nfs_xdev_mount(struct file_system_type *fs_type, int flags,
2407 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002408{
2409 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002410 struct super_block *s;
2411 struct nfs_server *server;
2412 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002413 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002414 struct nfs_sb_mountdata sb_mntdata = {
2415 .mntflags = flags,
2416 };
David Howells54ceac42006-08-22 20:06:13 -04002417 int error;
2418
Al Viro31f43472010-10-29 03:38:12 -04002419 dprintk("--> nfs_xdev_mount()\n");
David Howells54ceac42006-08-22 20:06:13 -04002420
2421 /* create a new volume representation */
2422 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2423 if (IS_ERR(server)) {
2424 error = PTR_ERR(server);
2425 goto out_err_noserver;
2426 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002427 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002428
Trond Myklebust75180df2007-05-16 16:53:28 -04002429 if (server->flags & NFS_MOUNT_UNSHARED)
2430 compare_super = NULL;
2431
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002432 /* -o noac implies -o sync */
2433 if (server->flags & NFS_MOUNT_NOAC)
2434 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2435
David Howells54ceac42006-08-22 20:06:13 -04002436 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002437 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002438 if (IS_ERR(s)) {
2439 error = PTR_ERR(s);
2440 goto out_err_nosb;
2441 }
2442
2443 if (s->s_fs_info != server) {
2444 nfs_free_server(server);
2445 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002446 } else {
2447 error = nfs_bdi_register(server);
2448 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002449 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04002450 }
2451
2452 if (!s->s_root) {
2453 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002454 nfs_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002455 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002456 }
2457
Al Viro0d5839a2011-03-16 05:27:27 -04002458 mntroot = nfs_get_root(s, data->fh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002459 if (IS_ERR(mntroot)) {
2460 error = PTR_ERR(mntroot);
2461 goto error_splat_super;
2462 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002463 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11002464 dput(mntroot);
2465 error = -ESTALE;
2466 goto error_splat_super;
2467 }
David Howells54ceac42006-08-22 20:06:13 -04002468
2469 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002470
Eric Parisf9c3a382008-03-05 14:20:18 -05002471 /* clone any lsm security options from the parent to the new sb */
2472 security_sb_clone_mnt_opts(data->sb, s);
2473
Al Viro31f43472010-10-29 03:38:12 -04002474 dprintk("<-- nfs_xdev_mount() = 0\n");
2475 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002476
2477out_err_nosb:
2478 nfs_free_server(server);
2479out_err_noserver:
Al Viro31f43472010-10-29 03:38:12 -04002480 dprintk("<-- nfs_xdev_mount() = %d [error]\n", error);
2481 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002482
2483error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002484 if (server && !s->s_root)
2485 bdi_unregister(&server->backing_dev_info);
2486error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002487 deactivate_locked_super(s);
Al Viro31f43472010-10-29 03:38:12 -04002488 dprintk("<-- nfs_xdev_mount() = %d [splat]\n", error);
2489 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04002490}
2491
2492#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04002493
2494/*
2495 * Finish setting up a cloned NFS4 superblock
2496 */
2497static void nfs4_clone_super(struct super_block *sb,
2498 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002499{
David Howells54ceac42006-08-22 20:06:13 -04002500 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2501 sb->s_blocksize = old_sb->s_blocksize;
2502 sb->s_maxbytes = old_sb->s_maxbytes;
2503 sb->s_time_gran = 1;
2504 sb->s_op = old_sb->s_op;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002505 /*
2506 * The VFS shouldn't apply the umask to mode bits. We will do
2507 * so ourselves when necessary.
2508 */
2509 sb->s_flags |= MS_POSIXACL;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00002510 sb->s_xattr = old_sb->s_xattr;
2511 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002512}
2513
2514/*
2515 * Set up an NFS4 superblock
2516 */
David Howells54ceac42006-08-22 20:06:13 -04002517static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002518{
David Howellsf7b422b2006-06-09 09:34:33 -04002519 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04002520 sb->s_op = &nfs4_sops;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002521 /*
2522 * The VFS shouldn't apply the umask to mode bits. We will do
2523 * so ourselves when necessary.
2524 */
2525 sb->s_flags |= MS_POSIXACL;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00002526 sb->s_xattr = nfs4_xattr_handlers;
David Howells54ceac42006-08-22 20:06:13 -04002527 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002528}
2529
Trond Myklebust01c3f052009-06-17 13:22:58 -07002530static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2531{
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04002532 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3|
2533 NFS_MOUNT_LOCAL_FLOCK|NFS_MOUNT_LOCAL_FCNTL);
Trond Myklebust01c3f052009-06-17 13:22:58 -07002534}
2535
Chuck Lever7630c852009-09-08 19:49:57 -04002536static int nfs4_validate_text_mount_data(void *options,
2537 struct nfs_parsed_mount_data *args,
2538 const char *dev_name)
2539{
2540 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2541
Trond Myklebustf5855fe2009-10-06 15:40:37 -04002542 nfs_set_port(sap, &args->nfs_server.port, NFS_PORT);
Chuck Lever7630c852009-09-08 19:49:57 -04002543
2544 nfs_validate_transport_protocol(args);
2545
2546 nfs4_validate_mount_flags(args);
2547
Trond Myklebust2ecda722009-09-08 19:50:07 -04002548 if (args->version != 4) {
2549 dfprintk(MOUNT,
2550 "NFS4: Illegal mount version\n");
2551 return -EINVAL;
2552 }
2553
Chuck Lever7630c852009-09-08 19:49:57 -04002554 if (args->auth_flavor_len > 1) {
2555 dfprintk(MOUNT,
2556 "NFS4: Too many RPC auth flavours specified\n");
2557 return -EINVAL;
2558 }
2559
2560 if (args->client_address == NULL) {
2561 dfprintk(MOUNT,
2562 "NFS4: mount program didn't pass callback address\n");
2563 return -EINVAL;
2564 }
2565
2566 return nfs_parse_devname(dev_name,
2567 &args->nfs_server.hostname,
2568 NFS4_MAXNAMLEN,
2569 &args->nfs_server.export_path,
2570 NFS4_MAXPATHLEN);
2571}
2572
David Howells54ceac42006-08-22 20:06:13 -04002573/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002574 * Validate NFSv4 mount options
2575 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002576static int nfs4_validate_mount_data(void *options,
2577 struct nfs_parsed_mount_data *args,
2578 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002579{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002580 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002581 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002582 char *c;
2583
2584 if (data == NULL)
2585 goto out_no_data;
2586
2587 switch (data->version) {
2588 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002589 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002590 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002591 if (data->host_addrlen == 0)
2592 goto out_no_address;
2593 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002594 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002595 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002596 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002597 goto out_no_address;
2598
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:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002643 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04002644 return -EINVAL;
2645
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002646 if (!nfs_verify_server_address(sap))
Chuck Lever80071222007-07-01 12:13:59 -04002647 return -EINVAL;
Chuck Levered596a82008-06-26 17:47:05 -04002648
Chuck Lever7630c852009-09-08 19:49:57 -04002649 return nfs4_validate_text_mount_data(options, args, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002650 }
2651
2652 return 0;
2653
2654out_no_data:
2655 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2656 return -EINVAL;
2657
2658out_inval_auth:
2659 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2660 data->auth_flavourlen);
2661 return -EINVAL;
2662
2663out_no_address:
2664 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2665 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002666}
2667
2668/*
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002669 * Get the superblock for the NFS4 root partition
David Howells54ceac42006-08-22 20:06:13 -04002670 */
Al Viro31f43472010-10-29 03:38:12 -04002671static struct dentry *
2672nfs4_remote_mount(struct file_system_type *fs_type, int flags,
2673 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002674{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002675 struct nfs_parsed_mount_data *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002676 struct super_block *s;
2677 struct nfs_server *server;
Trond Myklebust33852a12008-06-19 14:20:11 -04002678 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002679 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002680 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002681 struct nfs_sb_mountdata sb_mntdata = {
2682 .mntflags = flags,
2683 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002684 int error = -ENOMEM;
David Howellsf7b422b2006-06-09 09:34:33 -04002685
Trond Myklebustb157b062010-04-19 19:05:48 -04002686 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002687 if (data == NULL || mntfh == NULL)
Jeff Layton8a0d5512011-12-20 06:57:45 -05002688 goto out;
Eric Parisf9c3a382008-03-05 14:20:18 -05002689
David Howells54ceac42006-08-22 20:06:13 -04002690 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002691 server = nfs4_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002692 if (IS_ERR(server)) {
2693 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04002694 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002695 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002696 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04002697
Trond Myklebust75180df2007-05-16 16:53:28 -04002698 if (server->flags & NFS4_MOUNT_UNSHARED)
2699 compare_super = NULL;
2700
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002701 /* -o noac implies -o sync */
2702 if (server->flags & NFS_MOUNT_NOAC)
2703 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2704
David Howells54ceac42006-08-22 20:06:13 -04002705 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002706 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002707 if (IS_ERR(s)) {
2708 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04002709 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04002710 }
2711
Trond Myklebust5dd31772006-08-24 01:03:05 -04002712 if (s->s_fs_info != server) {
2713 nfs_free_server(server);
2714 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002715 } else {
2716 error = nfs_bdi_register(server);
2717 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002718 goto error_splat_bdi;
Trond Myklebust5dd31772006-08-24 01:03:05 -04002719 }
2720
David Howells54ceac42006-08-22 20:06:13 -04002721 if (!s->s_root) {
2722 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002723 nfs4_fill_super(s);
Jeff Laytonc15c9282012-01-24 16:35:00 +00002724 nfs_fscache_get_super_cookie(s, data->fscache_uniq, NULL);
Trond Myklebust816724e2006-06-24 08:41:41 -04002725 }
David Howellsf7b422b2006-06-09 09:34:33 -04002726
Al Viro0d5839a2011-03-16 05:27:27 -04002727 mntroot = nfs4_get_root(s, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002728 if (IS_ERR(mntroot)) {
2729 error = PTR_ERR(mntroot);
2730 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002731 }
David Howells54ceac42006-08-22 20:06:13 -04002732
Trond Myklebust33852a12008-06-19 14:20:11 -04002733 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Paris46c8ac72008-05-02 13:42:42 -07002734 if (error)
2735 goto error_splat_root;
2736
David Howellsf7b422b2006-06-09 09:34:33 -04002737 s->s_flags |= MS_ACTIVE;
Al Viro31f43472010-10-29 03:38:12 -04002738
Al Viro31f43472010-10-29 03:38:12 -04002739 nfs_free_fhandle(mntfh);
2740 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002741
Chuck Lever29eb9812007-07-01 12:12:30 -04002742out:
Trond Myklebustb157b062010-04-19 19:05:48 -04002743 nfs_free_fhandle(mntfh);
Al Viro31f43472010-10-29 03:38:12 -04002744 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002745
Chuck Lever29eb9812007-07-01 12:12:30 -04002746out_free:
2747 nfs_free_server(server);
2748 goto out;
2749
Eric Paris46c8ac72008-05-02 13:42:42 -07002750error_splat_root:
2751 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002752error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002753 if (server && !s->s_root)
2754 bdi_unregister(&server->backing_dev_info);
2755error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002756 deactivate_locked_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04002757 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002758}
2759
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002760static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type,
2761 int flags, void *data, const char *hostname)
2762{
2763 struct vfsmount *root_mnt;
2764 char *root_devname;
2765 size_t len;
2766
2767 len = strlen(hostname) + 3;
2768 root_devname = kmalloc(len, GFP_KERNEL);
2769 if (root_devname == NULL)
2770 return ERR_PTR(-ENOMEM);
2771 snprintf(root_devname, len, "%s:/", hostname);
2772 root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data);
2773 kfree(root_devname);
2774 return root_mnt;
2775}
2776
Trond Myklebustce587e02010-04-16 16:22:52 -04002777struct nfs_referral_count {
2778 struct list_head list;
2779 const struct task_struct *task;
2780 unsigned int referral_count;
2781};
2782
2783static LIST_HEAD(nfs_referral_count_list);
2784static DEFINE_SPINLOCK(nfs_referral_count_list_lock);
2785
2786static struct nfs_referral_count *nfs_find_referral_count(void)
2787{
2788 struct nfs_referral_count *p;
2789
2790 list_for_each_entry(p, &nfs_referral_count_list, list) {
2791 if (p->task == current)
2792 return p;
2793 }
2794 return NULL;
2795}
2796
2797#define NFS_MAX_NESTED_REFERRALS 2
2798
2799static int nfs_referral_loop_protect(void)
2800{
2801 struct nfs_referral_count *p, *new;
2802 int ret = -ENOMEM;
2803
2804 new = kmalloc(sizeof(*new), GFP_KERNEL);
2805 if (!new)
2806 goto out;
2807 new->task = current;
2808 new->referral_count = 1;
2809
2810 ret = 0;
2811 spin_lock(&nfs_referral_count_list_lock);
2812 p = nfs_find_referral_count();
2813 if (p != NULL) {
2814 if (p->referral_count >= NFS_MAX_NESTED_REFERRALS)
2815 ret = -ELOOP;
2816 else
2817 p->referral_count++;
2818 } else {
2819 list_add(&new->list, &nfs_referral_count_list);
2820 new = NULL;
2821 }
2822 spin_unlock(&nfs_referral_count_list_lock);
2823 kfree(new);
2824out:
2825 return ret;
2826}
2827
2828static void nfs_referral_loop_unprotect(void)
2829{
2830 struct nfs_referral_count *p;
2831
2832 spin_lock(&nfs_referral_count_list_lock);
2833 p = nfs_find_referral_count();
2834 p->referral_count--;
2835 if (p->referral_count == 0)
2836 list_del(&p->list);
2837 else
2838 p = NULL;
2839 spin_unlock(&nfs_referral_count_list_lock);
2840 kfree(p);
2841}
2842
Al Viro01194982011-03-16 07:25:36 -04002843static struct dentry *nfs_follow_remote_path(struct vfsmount *root_mnt,
2844 const char *export_path)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002845{
Al Viro01194982011-03-16 07:25:36 -04002846 struct dentry *dentry;
Al Viro5352d3b2011-11-16 21:52:06 -05002847 int err;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002848
Al Viro5352d3b2011-11-16 21:52:06 -05002849 if (IS_ERR(root_mnt))
2850 return ERR_CAST(root_mnt);
2851
2852 err = nfs_referral_loop_protect();
2853 if (err) {
Al Viroea441d12011-11-16 21:43:59 -05002854 mntput(root_mnt);
Al Viro5352d3b2011-11-16 21:52:06 -05002855 return ERR_PTR(err);
Al Viroc1334492011-11-16 16:12:14 -05002856 }
Trond Myklebustce587e02010-04-16 16:22:52 -04002857
Al Viroea441d12011-11-16 21:43:59 -05002858 dentry = mount_subtree(root_mnt, export_path);
2859 nfs_referral_loop_unprotect();
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002860
Al Viro01194982011-03-16 07:25:36 -04002861 return dentry;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002862}
2863
Al Viro01194982011-03-16 07:25:36 -04002864static struct dentry *nfs4_try_mount(int flags, const char *dev_name,
2865 struct nfs_parsed_mount_data *data)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002866{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002867 char *export_path;
2868 struct vfsmount *root_mnt;
Al Viro01194982011-03-16 07:25:36 -04002869 struct dentry *res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002870
Chuck Levera6fe23b2009-09-08 19:50:00 -04002871 dfprintk(MOUNT, "--> nfs4_try_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002872
2873 export_path = data->nfs_server.export_path;
2874 data->nfs_server.export_path = "/";
2875 root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data,
2876 data->nfs_server.hostname);
2877 data->nfs_server.export_path = export_path;
2878
Al Viro5352d3b2011-11-16 21:52:06 -05002879 res = nfs_follow_remote_path(root_mnt, export_path);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002880
Al Viro01194982011-03-16 07:25:36 -04002881 dfprintk(MOUNT, "<-- nfs4_try_mount() = %ld%s\n",
2882 IS_ERR(res) ? PTR_ERR(res) : 0,
2883 IS_ERR(res) ? " [error]" : "");
2884 return res;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002885}
2886
2887/*
2888 * Get the superblock for an NFS4 mountpoint
2889 */
Al Viro01194982011-03-16 07:25:36 -04002890static struct dentry *nfs4_mount(struct file_system_type *fs_type,
2891 int flags, const char *dev_name, void *raw_data)
Chuck Levera6fe23b2009-09-08 19:50:00 -04002892{
2893 struct nfs_parsed_mount_data *data;
2894 int error = -ENOMEM;
Al Viro01194982011-03-16 07:25:36 -04002895 struct dentry *res = ERR_PTR(-ENOMEM);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002896
Trond Myklebustc5811db2009-10-06 15:40:15 -04002897 data = nfs_alloc_parsed_mount_data(4);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002898 if (data == NULL)
Jeff Layton8a0d5512011-12-20 06:57:45 -05002899 goto out;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002900
2901 /* Validate the mount data */
2902 error = nfs4_validate_mount_data(raw_data, data, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002903 if (error < 0) {
2904 res = ERR_PTR(error);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002905 goto out;
Al Viro01194982011-03-16 07:25:36 -04002906 }
Chuck Levera6fe23b2009-09-08 19:50:00 -04002907
Al Viro01194982011-03-16 07:25:36 -04002908 res = nfs4_try_mount(flags, dev_name, data);
2909 if (IS_ERR(res))
2910 error = PTR_ERR(res);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002911
2912out:
Jeff Layton8a0d5512011-12-20 06:57:45 -05002913 nfs_free_parsed_mount_data(data);
Al Viro01194982011-03-16 07:25:36 -04002914 dprintk("<-- nfs4_mount() = %d%s\n", error,
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002915 error != 0 ? " [error]" : "");
Al Viro01194982011-03-16 07:25:36 -04002916 return res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002917}
2918
David Howellsf7b422b2006-06-09 09:34:33 -04002919static void nfs4_kill_super(struct super_block *sb)
2920{
2921 struct nfs_server *server = NFS_SB(sb);
2922
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002923 dprintk("--> %s\n", __func__);
Trond Myklebust515d8612008-12-23 15:21:46 -05002924 nfs_super_return_all_delegations(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002925 kill_anon_super(sb);
David Howells08734042009-04-03 16:42:42 +01002926 nfs_fscache_release_super_cookie(sb);
David Howells54ceac42006-08-22 20:06:13 -04002927 nfs_free_server(server);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002928 dprintk("<-- %s\n", __func__);
David Howellsf7b422b2006-06-09 09:34:33 -04002929}
2930
2931/*
David Howells54ceac42006-08-22 20:06:13 -04002932 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04002933 */
Al Viro31f43472010-10-29 03:38:12 -04002934static struct dentry *
2935nfs4_xdev_mount(struct file_system_type *fs_type, int flags,
2936 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002937{
2938 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002939 struct super_block *s;
2940 struct nfs_server *server;
2941 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002942 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002943 struct nfs_sb_mountdata sb_mntdata = {
2944 .mntflags = flags,
2945 };
David Howells54ceac42006-08-22 20:06:13 -04002946 int error;
2947
Al Viro31f43472010-10-29 03:38:12 -04002948 dprintk("--> nfs4_xdev_mount()\n");
David Howells54ceac42006-08-22 20:06:13 -04002949
2950 /* create a new volume representation */
2951 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2952 if (IS_ERR(server)) {
2953 error = PTR_ERR(server);
2954 goto out_err_noserver;
2955 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002956 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002957
Trond Myklebust75180df2007-05-16 16:53:28 -04002958 if (server->flags & NFS4_MOUNT_UNSHARED)
2959 compare_super = NULL;
2960
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002961 /* -o noac implies -o sync */
2962 if (server->flags & NFS_MOUNT_NOAC)
2963 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2964
David Howells54ceac42006-08-22 20:06:13 -04002965 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04002966 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002967 if (IS_ERR(s)) {
2968 error = PTR_ERR(s);
2969 goto out_err_nosb;
2970 }
2971
2972 if (s->s_fs_info != server) {
2973 nfs_free_server(server);
2974 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002975 } else {
2976 error = nfs_bdi_register(server);
2977 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002978 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04002979 }
2980
2981 if (!s->s_root) {
2982 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002983 nfs4_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002984 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002985 }
2986
Al Viro0d5839a2011-03-16 05:27:27 -04002987 mntroot = nfs4_get_root(s, data->fh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002988 if (IS_ERR(mntroot)) {
2989 error = PTR_ERR(mntroot);
2990 goto error_splat_super;
2991 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002992 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2993 dput(mntroot);
2994 error = -ESTALE;
2995 goto error_splat_super;
2996 }
David Howells54ceac42006-08-22 20:06:13 -04002997
2998 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002999
Eric Paris46c8ac72008-05-02 13:42:42 -07003000 security_sb_clone_mnt_opts(data->sb, s);
3001
Al Viro31f43472010-10-29 03:38:12 -04003002 dprintk("<-- nfs4_xdev_mount() = 0\n");
3003 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04003004
3005out_err_nosb:
3006 nfs_free_server(server);
3007out_err_noserver:
Al Viro31f43472010-10-29 03:38:12 -04003008 dprintk("<-- nfs4_xdev_mount() = %d [error]\n", error);
3009 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04003010
3011error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11003012 if (server && !s->s_root)
3013 bdi_unregister(&server->backing_dev_info);
3014error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04003015 deactivate_locked_super(s);
Al Viro31f43472010-10-29 03:38:12 -04003016 dprintk("<-- nfs4_xdev_mount() = %d [splat]\n", error);
3017 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04003018}
3019
Al Viro31f43472010-10-29 03:38:12 -04003020static struct dentry *
3021nfs4_remote_referral_mount(struct file_system_type *fs_type, int flags,
3022 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04003023{
3024 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04003025 struct super_block *s;
3026 struct nfs_server *server;
3027 struct dentry *mntroot;
Trond Myklebust4f727292010-04-16 16:22:48 -04003028 struct nfs_fh *mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04003029 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04003030 struct nfs_sb_mountdata sb_mntdata = {
3031 .mntflags = flags,
3032 };
Trond Myklebust4f727292010-04-16 16:22:48 -04003033 int error = -ENOMEM;
David Howells54ceac42006-08-22 20:06:13 -04003034
3035 dprintk("--> nfs4_referral_get_sb()\n");
3036
Trond Myklebust4f727292010-04-16 16:22:48 -04003037 mntfh = nfs_alloc_fhandle();
3038 if (mntfh == NULL)
3039 goto out_err_nofh;
3040
David Howells54ceac42006-08-22 20:06:13 -04003041 /* create a new volume representation */
Trond Myklebust4f727292010-04-16 16:22:48 -04003042 server = nfs4_create_referral_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003043 if (IS_ERR(server)) {
3044 error = PTR_ERR(server);
3045 goto out_err_noserver;
3046 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04003047 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04003048
Trond Myklebust75180df2007-05-16 16:53:28 -04003049 if (server->flags & NFS4_MOUNT_UNSHARED)
3050 compare_super = NULL;
3051
Sachin Prabhufb2088c2011-08-01 12:10:12 +01003052 /* -o noac implies -o sync */
3053 if (server->flags & NFS_MOUNT_NOAC)
3054 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
3055
David Howells54ceac42006-08-22 20:06:13 -04003056 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04003057 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04003058 if (IS_ERR(s)) {
3059 error = PTR_ERR(s);
3060 goto out_err_nosb;
3061 }
3062
3063 if (s->s_fs_info != server) {
3064 nfs_free_server(server);
3065 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07003066 } else {
3067 error = nfs_bdi_register(server);
3068 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11003069 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04003070 }
3071
3072 if (!s->s_root) {
3073 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04003074 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04003075 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04003076 }
3077
Al Viro0d5839a2011-03-16 05:27:27 -04003078 mntroot = nfs4_get_root(s, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04003079 if (IS_ERR(mntroot)) {
3080 error = PTR_ERR(mntroot);
3081 goto error_splat_super;
3082 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05003083 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
3084 dput(mntroot);
3085 error = -ESTALE;
3086 goto error_splat_super;
3087 }
David Howells54ceac42006-08-22 20:06:13 -04003088
3089 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04003090
Eric Paris46c8ac72008-05-02 13:42:42 -07003091 security_sb_clone_mnt_opts(data->sb, s);
3092
Trond Myklebust4f727292010-04-16 16:22:48 -04003093 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003094 dprintk("<-- nfs4_referral_get_sb() = 0\n");
Al Viro31f43472010-10-29 03:38:12 -04003095 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04003096
3097out_err_nosb:
3098 nfs_free_server(server);
3099out_err_noserver:
Trond Myklebust4f727292010-04-16 16:22:48 -04003100 nfs_free_fhandle(mntfh);
3101out_err_nofh:
David Howells54ceac42006-08-22 20:06:13 -04003102 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
Al Viro31f43472010-10-29 03:38:12 -04003103 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04003104
3105error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11003106 if (server && !s->s_root)
3107 bdi_unregister(&server->backing_dev_info);
3108error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04003109 deactivate_locked_super(s);
Trond Myklebust4f727292010-04-16 16:22:48 -04003110 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003111 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
Al Viro31f43472010-10-29 03:38:12 -04003112 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04003113}
3114
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003115/*
3116 * Create an NFS4 server record on referral traversal
3117 */
Al Viro01194982011-03-16 07:25:36 -04003118static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type,
3119 int flags, const char *dev_name, void *raw_data)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003120{
3121 struct nfs_clone_mount *data = raw_data;
3122 char *export_path;
3123 struct vfsmount *root_mnt;
Al Viro01194982011-03-16 07:25:36 -04003124 struct dentry *res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003125
Al Viro01194982011-03-16 07:25:36 -04003126 dprintk("--> nfs4_referral_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003127
3128 export_path = data->mnt_path;
3129 data->mnt_path = "/";
3130
3131 root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type,
3132 flags, data, data->hostname);
3133 data->mnt_path = export_path;
3134
Al Viro5352d3b2011-11-16 21:52:06 -05003135 res = nfs_follow_remote_path(root_mnt, export_path);
Al Viro01194982011-03-16 07:25:36 -04003136 dprintk("<-- nfs4_referral_mount() = %ld%s\n",
3137 IS_ERR(res) ? PTR_ERR(res) : 0,
3138 IS_ERR(res) ? " [error]" : "");
3139 return res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003140}
3141
David Howells54ceac42006-08-22 20:06:13 -04003142#endif /* CONFIG_NFS_V4 */