blob: d3286583009a85d27185d4074857a9b613c2d6c7 [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/mnt_namespace.h>
45#include <linux/namei.h>
David Howellsf7b422b2006-06-09 09:34:33 -040046#include <linux/nfs_idmap.h>
47#include <linux/vfs.h>
48#include <linux/inet.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050049#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090050#include <linux/slab.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050051#include <net/ipv6.h>
Chuck Leverd8e77482008-06-23 12:37:01 -040052#include <linux/netdevice.h>
David Howellsf7b422b2006-06-09 09:34:33 -040053#include <linux/nfs_xdr.h>
Adrian Bunkb5d5dfb2007-02-12 00:53:40 -080054#include <linux/magic.h>
Chuck Leverbf0fd762007-07-01 12:13:44 -040055#include <linux/parser.h>
David Howellsf7b422b2006-06-09 09:34:33 -040056
57#include <asm/system.h>
58#include <asm/uaccess.h>
59
60#include "nfs4_fs.h"
61#include "callback.h"
62#include "delegation.h"
63#include "iostat.h"
64#include "internal.h"
David Howells08734042009-04-03 16:42:42 +010065#include "fscache.h"
David Howellsf7b422b2006-06-09 09:34:33 -040066
67#define NFSDBG_FACILITY NFSDBG_VFS
68
Paulius Zaleckas1e657bd2010-10-31 18:21:05 +020069#ifdef CONFIG_NFS_V3
70#define NFS_DEFAULT_VERSION 3
71#else
72#define NFS_DEFAULT_VERSION 2
73#endif
74
Chuck Leverbf0fd762007-07-01 12:13:44 -040075enum {
76 /* Mount options that take no arguments */
77 Opt_soft, Opt_hard,
Chuck Leverbf0fd762007-07-01 12:13:44 -040078 Opt_posix, Opt_noposix,
79 Opt_cto, Opt_nocto,
80 Opt_ac, Opt_noac,
81 Opt_lock, Opt_nolock,
Chuck Lever764302c2009-09-08 19:50:03 -040082 Opt_v2, Opt_v3, Opt_v4,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040083 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040084 Opt_acl, Opt_noacl,
85 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040086 Opt_sharecache, Opt_nosharecache,
Chuck Leverd7403512008-12-23 15:21:37 -050087 Opt_resvport, Opt_noresvport,
David Howellsb797cac2009-04-03 16:42:48 +010088 Opt_fscache, Opt_nofscache,
Chuck Leverbf0fd762007-07-01 12:13:44 -040089
90 /* Mount options that take integer arguments */
91 Opt_port,
92 Opt_rsize, Opt_wsize, Opt_bsize,
93 Opt_timeo, Opt_retrans,
94 Opt_acregmin, Opt_acregmax,
95 Opt_acdirmin, Opt_acdirmax,
96 Opt_actimeo,
97 Opt_namelen,
98 Opt_mountport,
Chuck Levere887cbc2007-10-26 13:32:29 -040099 Opt_mountvers,
Chuck Leverad879ce2007-10-26 13:32:24 -0400100 Opt_nfsvers,
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 */
Chuck Lever33832032007-12-10 14:59:13 -0500104 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
Chuck Lever0ac83772007-09-11 18:01:04 -0400105 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400106 Opt_lookupcache,
David Howellsb797cac2009-04-03 16:42:48 +0100107 Opt_fscache_uniq,
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400108 Opt_local_lock,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400109
Chuck Leverf45663c2008-06-24 19:28:02 -0400110 /* Special mount options */
111 Opt_userspace, Opt_deprecated, Opt_sloppy,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400112
113 Opt_err
114};
115
Steven Whitehousea447c092008-10-13 10:46:57 +0100116static const match_table_t nfs_mount_option_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400117 { Opt_userspace, "bg" },
118 { Opt_userspace, "fg" },
Chuck Leverecbb3842008-06-12 12:37:33 -0400119 { Opt_userspace, "retry=%s" },
120
Chuck Leverf45663c2008-06-24 19:28:02 -0400121 { Opt_sloppy, "sloppy" },
122
Chuck Leverbf0fd762007-07-01 12:13:44 -0400123 { Opt_soft, "soft" },
124 { Opt_hard, "hard" },
Chuck Leverd33e4df2008-06-12 12:37:41 -0400125 { Opt_deprecated, "intr" },
126 { Opt_deprecated, "nointr" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400127 { Opt_posix, "posix" },
128 { Opt_noposix, "noposix" },
129 { Opt_cto, "cto" },
130 { Opt_nocto, "nocto" },
131 { Opt_ac, "ac" },
132 { Opt_noac, "noac" },
133 { Opt_lock, "lock" },
134 { Opt_nolock, "nolock" },
135 { Opt_v2, "v2" },
136 { Opt_v3, "v3" },
Chuck Lever764302c2009-09-08 19:50:03 -0400137 { Opt_v4, "v4" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400138 { Opt_udp, "udp" },
139 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400140 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400141 { Opt_acl, "acl" },
142 { Opt_noacl, "noacl" },
143 { Opt_rdirplus, "rdirplus" },
144 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400145 { Opt_sharecache, "sharecache" },
146 { Opt_nosharecache, "nosharecache" },
Chuck Leverd7403512008-12-23 15:21:37 -0500147 { Opt_resvport, "resvport" },
148 { Opt_noresvport, "noresvport" },
David Howellsb797cac2009-04-03 16:42:48 +0100149 { Opt_fscache, "fsc" },
David Howellsb797cac2009-04-03 16:42:48 +0100150 { Opt_nofscache, "nofsc" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400151
Chuck Levera5a16ba2009-06-17 18:02:14 -0700152 { Opt_port, "port=%s" },
153 { Opt_rsize, "rsize=%s" },
154 { Opt_wsize, "wsize=%s" },
155 { Opt_bsize, "bsize=%s" },
156 { Opt_timeo, "timeo=%s" },
157 { Opt_retrans, "retrans=%s" },
158 { Opt_acregmin, "acregmin=%s" },
159 { Opt_acregmax, "acregmax=%s" },
160 { Opt_acdirmin, "acdirmin=%s" },
161 { Opt_acdirmax, "acdirmax=%s" },
162 { Opt_actimeo, "actimeo=%s" },
163 { Opt_namelen, "namlen=%s" },
164 { Opt_mountport, "mountport=%s" },
165 { Opt_mountvers, "mountvers=%s" },
166 { Opt_nfsvers, "nfsvers=%s" },
167 { Opt_nfsvers, "vers=%s" },
Chuck Leverf3f4f4e2009-08-09 15:09:29 -0400168 { Opt_minorversion, "minorversion=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400169
170 { Opt_sec, "sec=%s" },
171 { Opt_proto, "proto=%s" },
172 { Opt_mountproto, "mountproto=%s" },
173 { Opt_addr, "addr=%s" },
174 { Opt_clientaddr, "clientaddr=%s" },
Chuck Lever33832032007-12-10 14:59:13 -0500175 { Opt_mounthost, "mounthost=%s" },
Chuck Lever0ac83772007-09-11 18:01:04 -0400176 { Opt_mountaddr, "mountaddr=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400177
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400178 { Opt_lookupcache, "lookupcache=%s" },
Chuck Levera6d5ff62010-05-07 13:33:58 -0400179 { Opt_fscache_uniq, "fsc=%s" },
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400180 { Opt_local_lock, "local_lock=%s" },
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400181
Chuck Leverbf0fd762007-07-01 12:13:44 -0400182 { Opt_err, NULL }
183};
184
185enum {
Jeff Laytonee671b02009-12-03 15:58:56 -0500186 Opt_xprt_udp, Opt_xprt_udp6, Opt_xprt_tcp, Opt_xprt_tcp6, Opt_xprt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400187
188 Opt_xprt_err
189};
190
Steven Whitehousea447c092008-10-13 10:46:57 +0100191static const match_table_t nfs_xprt_protocol_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400192 { Opt_xprt_udp, "udp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500193 { Opt_xprt_udp6, "udp6" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400194 { Opt_xprt_tcp, "tcp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500195 { Opt_xprt_tcp6, "tcp6" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400196 { Opt_xprt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400197
198 { Opt_xprt_err, NULL }
199};
200
201enum {
202 Opt_sec_none, Opt_sec_sys,
203 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
204 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
205 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
206
207 Opt_sec_err
208};
209
Steven Whitehousea447c092008-10-13 10:46:57 +0100210static const match_table_t nfs_secflavor_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400211 { Opt_sec_none, "none" },
212 { Opt_sec_none, "null" },
213 { Opt_sec_sys, "sys" },
214
215 { Opt_sec_krb5, "krb5" },
216 { Opt_sec_krb5i, "krb5i" },
217 { Opt_sec_krb5p, "krb5p" },
218
219 { Opt_sec_lkey, "lkey" },
220 { Opt_sec_lkeyi, "lkeyi" },
221 { Opt_sec_lkeyp, "lkeyp" },
222
Olga Kornievskaia8d042212008-02-13 16:47:06 -0500223 { Opt_sec_spkm, "spkm3" },
224 { Opt_sec_spkmi, "spkm3i" },
225 { Opt_sec_spkmp, "spkm3p" },
226
Chuck Leverbf0fd762007-07-01 12:13:44 -0400227 { Opt_sec_err, NULL }
228};
229
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400230enum {
231 Opt_lookupcache_all, Opt_lookupcache_positive,
232 Opt_lookupcache_none,
233
234 Opt_lookupcache_err
235};
236
237static match_table_t nfs_lookupcache_tokens = {
238 { Opt_lookupcache_all, "all" },
239 { Opt_lookupcache_positive, "pos" },
240 { Opt_lookupcache_positive, "positive" },
241 { Opt_lookupcache_none, "none" },
242
243 { Opt_lookupcache_err, NULL }
244};
245
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400246enum {
247 Opt_local_lock_all, Opt_local_lock_flock, Opt_local_lock_posix,
248 Opt_local_lock_none,
249
250 Opt_local_lock_err
251};
252
253static match_table_t nfs_local_lock_tokens = {
254 { Opt_local_lock_all, "all" },
255 { Opt_local_lock_flock, "flock" },
256 { Opt_local_lock_posix, "posix" },
257 { Opt_local_lock_none, "none" },
258
259 { Opt_local_lock_err, NULL }
260};
261
Chuck Leverbf0fd762007-07-01 12:13:44 -0400262
Al Viro42faad92008-04-24 07:21:56 -0400263static void nfs_umount_begin(struct super_block *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400264static int nfs_statfs(struct dentry *, struct kstatfs *);
David Howellsf7b422b2006-06-09 09:34:33 -0400265static int nfs_show_options(struct seq_file *, struct vfsmount *);
Al Viroc7f404b2011-03-16 06:59:40 -0400266static int nfs_show_devname(struct seq_file *, struct vfsmount *);
267static int nfs_show_path(struct seq_file *, struct vfsmount *);
David Howellsf7b422b2006-06-09 09:34:33 -0400268static int nfs_show_stats(struct seq_file *, struct vfsmount *);
Al Viro01194982011-03-16 07:25:36 -0400269static struct dentry *nfs_fs_mount(struct file_system_type *,
270 int, const char *, void *);
Al Viro31f43472010-10-29 03:38:12 -0400271static struct dentry *nfs_xdev_mount(struct file_system_type *fs_type,
272 int flags, const char *dev_name, void *raw_data);
Trond Myklebust387c1492010-02-03 08:27:35 -0500273static void nfs_put_super(struct super_block *);
David Howellsf7b422b2006-06-09 09:34:33 -0400274static void nfs_kill_super(struct super_block *);
Jeff Layton48b605f2008-06-10 15:38:39 -0400275static int nfs_remount(struct super_block *sb, int *flags, char *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400276
277static struct file_system_type nfs_fs_type = {
278 .owner = THIS_MODULE,
279 .name = "nfs",
Al Viro01194982011-03-16 07:25:36 -0400280 .mount = nfs_fs_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400281 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700282 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400283};
284
David Howells54ceac42006-08-22 20:06:13 -0400285struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400286 .owner = THIS_MODULE,
287 .name = "nfs",
Al Viro31f43472010-10-29 03:38:12 -0400288 .mount = nfs_xdev_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400289 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700290 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400291};
292
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800293static const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400294 .alloc_inode = nfs_alloc_inode,
295 .destroy_inode = nfs_destroy_inode,
296 .write_inode = nfs_write_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500297 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400298 .statfs = nfs_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400299 .evict_inode = nfs_evict_inode,
David Howellsf7b422b2006-06-09 09:34:33 -0400300 .umount_begin = nfs_umount_begin,
301 .show_options = nfs_show_options,
Al Viroc7f404b2011-03-16 06:59:40 -0400302 .show_devname = nfs_show_devname,
303 .show_path = nfs_show_path,
David Howellsf7b422b2006-06-09 09:34:33 -0400304 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400305 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400306};
307
308#ifdef CONFIG_NFS_V4
Chuck Lever7630c852009-09-08 19:49:57 -0400309static int nfs4_validate_text_mount_data(void *options,
310 struct nfs_parsed_mount_data *args, const char *dev_name);
Al Viro01194982011-03-16 07:25:36 -0400311static struct dentry *nfs4_try_mount(int flags, const char *dev_name,
312 struct nfs_parsed_mount_data *data);
313static struct dentry *nfs4_mount(struct file_system_type *fs_type,
314 int flags, const char *dev_name, void *raw_data);
Al Viro31f43472010-10-29 03:38:12 -0400315static struct dentry *nfs4_remote_mount(struct file_system_type *fs_type,
316 int flags, const char *dev_name, void *raw_data);
317static struct dentry *nfs4_xdev_mount(struct file_system_type *fs_type,
318 int flags, const char *dev_name, void *raw_data);
Al Viro01194982011-03-16 07:25:36 -0400319static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type,
320 int flags, const char *dev_name, void *raw_data);
Al Viro31f43472010-10-29 03:38:12 -0400321static struct dentry *nfs4_remote_referral_mount(struct file_system_type *fs_type,
322 int flags, const char *dev_name, void *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400323static void nfs4_kill_super(struct super_block *sb);
324
325static struct file_system_type nfs4_fs_type = {
326 .owner = THIS_MODULE,
327 .name = "nfs4",
Al Viro01194982011-03-16 07:25:36 -0400328 .mount = nfs4_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400329 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700330 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400331};
332
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400333static struct file_system_type nfs4_remote_fs_type = {
334 .owner = THIS_MODULE,
335 .name = "nfs4",
Al Viro31f43472010-10-29 03:38:12 -0400336 .mount = nfs4_remote_mount,
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400337 .kill_sb = nfs4_kill_super,
338 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
339};
340
David Howells54ceac42006-08-22 20:06:13 -0400341struct file_system_type nfs4_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400342 .owner = THIS_MODULE,
343 .name = "nfs4",
Al Viro31f43472010-10-29 03:38:12 -0400344 .mount = nfs4_xdev_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400345 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700346 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400347};
348
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400349static struct file_system_type nfs4_remote_referral_fs_type = {
350 .owner = THIS_MODULE,
351 .name = "nfs4",
Al Viro31f43472010-10-29 03:38:12 -0400352 .mount = nfs4_remote_referral_mount,
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400353 .kill_sb = nfs4_kill_super,
354 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
355};
356
David Howells54ceac42006-08-22 20:06:13 -0400357struct file_system_type nfs4_referral_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400358 .owner = THIS_MODULE,
359 .name = "nfs4",
Al Viro01194982011-03-16 07:25:36 -0400360 .mount = nfs4_referral_mount,
David Howellsf7b422b2006-06-09 09:34:33 -0400361 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700362 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400363};
364
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800365static const struct super_operations nfs4_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400366 .alloc_inode = nfs_alloc_inode,
367 .destroy_inode = nfs_destroy_inode,
368 .write_inode = nfs_write_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500369 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400370 .statfs = nfs_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400371 .evict_inode = nfs4_evict_inode,
David Howellsf7b422b2006-06-09 09:34:33 -0400372 .umount_begin = nfs_umount_begin,
373 .show_options = nfs_show_options,
Al Viroc7f404b2011-03-16 06:59:40 -0400374 .show_devname = nfs_show_devname,
375 .show_path = nfs_show_path,
David Howellsf7b422b2006-06-09 09:34:33 -0400376 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400377 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400378};
379#endif
380
Rusty Russell8e1f9362007-07-17 04:03:17 -0700381static struct shrinker acl_shrinker = {
382 .shrink = nfs_access_cache_shrinker,
383 .seeks = DEFAULT_SEEKS,
384};
Trond Myklebust979df722006-07-25 11:28:19 -0400385
David Howellsf7b422b2006-06-09 09:34:33 -0400386/*
387 * Register the NFS filesystems
388 */
389int __init register_nfs_fs(void)
390{
391 int ret;
392
393 ret = register_filesystem(&nfs_fs_type);
394 if (ret < 0)
395 goto error_0;
396
David Howellsf7b422b2006-06-09 09:34:33 -0400397 ret = nfs_register_sysctl();
398 if (ret < 0)
399 goto error_1;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800400#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400401 ret = register_filesystem(&nfs4_fs_type);
402 if (ret < 0)
403 goto error_2;
404#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700405 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400406 return 0;
407
408#ifdef CONFIG_NFS_V4
409error_2:
410 nfs_unregister_sysctl();
Peter Zijlstra89a09142007-03-16 13:38:26 -0800411#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400412error_1:
413 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400414error_0:
415 return ret;
416}
417
418/*
419 * Unregister the NFS filesystems
420 */
421void __exit unregister_nfs_fs(void)
422{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700423 unregister_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400424#ifdef CONFIG_NFS_V4
425 unregister_filesystem(&nfs4_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400426#endif
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700427 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400428 unregister_filesystem(&nfs_fs_type);
429}
430
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400431void nfs_sb_active(struct super_block *sb)
Steve Dicksonef818a22007-11-08 04:05:04 -0500432{
433 struct nfs_server *server = NFS_SB(sb);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400434
435 if (atomic_inc_return(&server->active) == 1)
436 atomic_inc(&sb->s_active);
437}
438
439void nfs_sb_deactive(struct super_block *sb)
440{
441 struct nfs_server *server = NFS_SB(sb);
442
443 if (atomic_dec_and_test(&server->active))
444 deactivate_super(sb);
Steve Dicksonef818a22007-11-08 04:05:04 -0500445}
446
David Howellsf7b422b2006-06-09 09:34:33 -0400447/*
448 * Deliver file system statistics to userspace
449 */
Trond Myklebust816724e2006-06-24 08:41:41 -0400450static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400451{
David Howells0c7d90c2006-08-22 20:06:10 -0400452 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400453 unsigned char blockbits;
454 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400455 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400456 struct nfs_fsstat res;
457 int error = -ENOMEM;
458
459 res.fattr = nfs_alloc_fattr();
460 if (res.fattr == NULL)
461 goto out_err;
David Howellsf7b422b2006-06-09 09:34:33 -0400462
David Howells8fa5c002006-08-22 20:06:12 -0400463 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400464 if (unlikely(error == -ESTALE)) {
465 struct dentry *pd_dentry;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400466
Menyhart Zoltanfbf3fdd2010-09-12 19:55:26 -0400467 pd_dentry = dget_parent(dentry);
468 if (pd_dentry != NULL) {
469 nfs_zap_caches(pd_dentry->d_inode);
470 dput(pd_dentry);
471 }
472 }
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400473 nfs_free_fattr(res.fattr);
David Howellsf7b422b2006-06-09 09:34:33 -0400474 if (error < 0)
475 goto out_err;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400476
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700477 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400478
479 /*
480 * Current versions of glibc do not correctly handle the
481 * case where f_frsize != f_bsize. Eventually we want to
482 * report the value of wtmult in this field.
483 */
David Howells0c7d90c2006-08-22 20:06:10 -0400484 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400485
486 /*
487 * On most *nix systems, f_blocks, f_bfree, and f_bavail
488 * are reported in units of f_frsize. Linux hasn't had
489 * an f_frsize field in its statfs struct until recently,
490 * thus historically Linux's sys_statfs reports these
491 * fields in units of f_bsize.
492 */
David Howells0c7d90c2006-08-22 20:06:10 -0400493 buf->f_bsize = dentry->d_sb->s_blocksize;
494 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400495 blockres = (1 << blockbits) - 1;
496 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
497 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
498 buf->f_bavail = (res.abytes + blockres) >> blockbits;
499
500 buf->f_files = res.tfiles;
501 buf->f_ffree = res.afiles;
502
503 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700504
David Howellsf7b422b2006-06-09 09:34:33 -0400505 return 0;
506
507 out_err:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700508 dprintk("%s: statfs error = %d\n", __func__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700509 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400510}
511
David Howells7d4e2742006-08-22 20:06:07 -0400512/*
513 * Map the security flavour number to a name
514 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400515static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
516{
David Howells7d4e2742006-08-22 20:06:07 -0400517 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400518 rpc_authflavor_t flavour;
519 const char *str;
520 } sec_flavours[] = {
521 { RPC_AUTH_NULL, "null" },
522 { RPC_AUTH_UNIX, "sys" },
523 { RPC_AUTH_GSS_KRB5, "krb5" },
524 { RPC_AUTH_GSS_KRB5I, "krb5i" },
525 { RPC_AUTH_GSS_KRB5P, "krb5p" },
526 { RPC_AUTH_GSS_LKEY, "lkey" },
527 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
528 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
529 { RPC_AUTH_GSS_SPKM, "spkm" },
530 { RPC_AUTH_GSS_SPKMI, "spkmi" },
531 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400532 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400533 };
534 int i;
535
Chuck Lever4d81cd12007-07-01 12:12:40 -0400536 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400537 if (sec_flavours[i].flavour == flavour)
538 break;
539 }
540 return sec_flavours[i].str;
541}
542
Jeff Laytonee671b02009-12-03 15:58:56 -0500543static void nfs_show_mountd_netid(struct seq_file *m, struct nfs_server *nfss,
544 int showdefaults)
545{
546 struct sockaddr *sap = (struct sockaddr *) &nfss->mountd_address;
547
548 seq_printf(m, ",mountproto=");
549 switch (sap->sa_family) {
550 case AF_INET:
551 switch (nfss->mountd_protocol) {
552 case IPPROTO_UDP:
553 seq_printf(m, RPCBIND_NETID_UDP);
554 break;
555 case IPPROTO_TCP:
556 seq_printf(m, RPCBIND_NETID_TCP);
557 break;
558 default:
559 if (showdefaults)
560 seq_printf(m, "auto");
561 }
562 break;
563 case AF_INET6:
564 switch (nfss->mountd_protocol) {
565 case IPPROTO_UDP:
566 seq_printf(m, RPCBIND_NETID_UDP6);
567 break;
568 case IPPROTO_TCP:
569 seq_printf(m, RPCBIND_NETID_TCP6);
570 break;
571 default:
572 if (showdefaults)
573 seq_printf(m, "auto");
574 }
575 break;
576 default:
577 if (showdefaults)
578 seq_printf(m, "auto");
579 }
580}
581
Chuck Lever82d101d2008-03-14 14:10:37 -0400582static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss,
583 int showdefaults)
584{
585 struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address;
586
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -0400587 if (nfss->flags & NFS_MOUNT_LEGACY_INTERFACE)
588 return;
589
Chuck Lever82d101d2008-03-14 14:10:37 -0400590 switch (sap->sa_family) {
591 case AF_INET: {
592 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
Harvey Harrisonbe859402008-10-31 00:56:28 -0700593 seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400594 break;
595 }
596 case AF_INET6: {
597 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
Chuck Leverd250e192009-12-03 15:58:56 -0500598 seq_printf(m, ",mountaddr=%pI6c", &sin6->sin6_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400599 break;
600 }
601 default:
602 if (showdefaults)
603 seq_printf(m, ",mountaddr=unspecified");
604 }
605
606 if (nfss->mountd_version || showdefaults)
607 seq_printf(m, ",mountvers=%u", nfss->mountd_version);
Stanislav Kinsburskyaa699472010-12-08 12:40:13 +0300608 if ((nfss->mountd_port &&
609 nfss->mountd_port != (unsigned short)NFS_UNSPEC_PORT) ||
610 showdefaults)
Chuck Lever82d101d2008-03-14 14:10:37 -0400611 seq_printf(m, ",mountport=%u", nfss->mountd_port);
612
Jeff Laytonee671b02009-12-03 15:58:56 -0500613 nfs_show_mountd_netid(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400614}
615
Trond Myklebust0be81892010-06-18 12:23:58 -0400616#ifdef CONFIG_NFS_V4
617static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
618 int showdefaults)
619{
620 struct nfs_client *clp = nfss->nfs_client;
621
622 seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr);
623 seq_printf(m, ",minorversion=%u", clp->cl_minorversion);
624}
625#else
626static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
627 int showdefaults)
628{
629}
630#endif
631
David Howellsf7b422b2006-06-09 09:34:33 -0400632/*
633 * Describe the mount options in force on this server representation
634 */
Chuck Lever82d101d2008-03-14 14:10:37 -0400635static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
636 int showdefaults)
David Howellsf7b422b2006-06-09 09:34:33 -0400637{
David Howells509de812006-08-22 20:06:11 -0400638 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400639 int flag;
David Howells509de812006-08-22 20:06:11 -0400640 const char *str;
641 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400642 } nfs_info[] = {
643 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Lever82d101d2008-03-14 14:10:37 -0400644 { NFS_MOUNT_POSIX, ",posix", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400645 { NFS_MOUNT_NOCTO, ",nocto", "" },
646 { NFS_MOUNT_NOAC, ",noac", "" },
647 { NFS_MOUNT_NONLM, ",nolock", "" },
648 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400649 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Chuck Leverd7403512008-12-23 15:21:37 -0500650 { NFS_MOUNT_UNSHARED, ",nosharecache", "" },
651 { NFS_MOUNT_NORESVPORT, ",noresvport", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400652 { 0, NULL, NULL }
653 };
David Howells509de812006-08-22 20:06:11 -0400654 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400655 struct nfs_client *clp = nfss->nfs_client;
Chuck Lever82d101d2008-03-14 14:10:37 -0400656 u32 version = clp->rpc_ops->version;
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400657 int local_flock, local_fcntl;
David Howellsf7b422b2006-06-09 09:34:33 -0400658
Chuck Lever82d101d2008-03-14 14:10:37 -0400659 seq_printf(m, ",vers=%u", version);
Chuck Lever2d767432008-03-14 14:10:08 -0400660 seq_printf(m, ",rsize=%u", nfss->rsize);
661 seq_printf(m, ",wsize=%u", nfss->wsize);
Chuck Lever82d101d2008-03-14 14:10:37 -0400662 if (nfss->bsize != 0)
663 seq_printf(m, ",bsize=%u", nfss->bsize);
664 seq_printf(m, ",namlen=%u", nfss->namelen);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400665 if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400666 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400667 if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400668 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400669 if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400670 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400671 if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400672 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400673 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
674 if (nfss->flags & nfs_infop->flag)
675 seq_puts(m, nfs_infop->str);
676 else
677 seq_puts(m, nfs_infop->nostr);
678 }
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400679 seq_printf(m, ",proto=%s",
Jeff Laytonee671b02009-12-03 15:58:56 -0500680 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_NETID));
Chuck Lever82d101d2008-03-14 14:10:37 -0400681 if (version == 4) {
682 if (nfss->port != NFS_PORT)
683 seq_printf(m, ",port=%u", nfss->port);
684 } else
685 if (nfss->port)
686 seq_printf(m, ",port=%u", nfss->port);
687
Trond Myklebust33170232007-12-20 16:03:59 -0500688 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
689 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
Trond Myklebust81039f12006-06-09 09:34:34 -0400690 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
Chuck Lever82d101d2008-03-14 14:10:37 -0400691
692 if (version != 4)
693 nfs_show_mountd_options(m, nfss, showdefaults);
Trond Myklebust0be81892010-06-18 12:23:58 -0400694 else
695 nfs_show_nfsv4_options(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400696
David Howellsb797cac2009-04-03 16:42:48 +0100697 if (nfss->options & NFS_OPTION_FSCACHE)
698 seq_printf(m, ",fsc");
Patrick J. LoPresti9b00c642010-08-10 17:28:01 -0400699
700 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) {
701 if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONE)
702 seq_printf(m, ",lookupcache=none");
703 else
704 seq_printf(m, ",lookupcache=pos");
705 }
Suresh Jayaraman7c563cc2010-09-23 14:26:48 -0400706
707 local_flock = nfss->flags & NFS_MOUNT_LOCAL_FLOCK;
708 local_fcntl = nfss->flags & NFS_MOUNT_LOCAL_FCNTL;
709
710 if (!local_flock && !local_fcntl)
711 seq_printf(m, ",local_lock=none");
712 else if (local_flock && local_fcntl)
713 seq_printf(m, ",local_lock=all");
714 else if (local_flock)
715 seq_printf(m, ",local_lock=flock");
716 else
717 seq_printf(m, ",local_lock=posix");
David Howellsf7b422b2006-06-09 09:34:33 -0400718}
719
720/*
721 * Describe the mount options on this VFS mountpoint
722 */
723static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
724{
725 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
726
727 nfs_show_mount_options(m, nfss, 0);
728
Chuck Lever5d8515c2007-12-10 14:57:16 -0500729 seq_printf(m, ",addr=%s",
730 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
731 RPC_DISPLAY_ADDR));
David Howellsf7b422b2006-06-09 09:34:33 -0400732
733 return 0;
734}
735
Al Viroc7f404b2011-03-16 06:59:40 -0400736static int nfs_show_devname(struct seq_file *m, struct vfsmount *mnt)
737{
738 char *page = (char *) __get_free_page(GFP_KERNEL);
739 char *devname, *dummy;
740 int err = 0;
741 if (!page)
742 return -ENOMEM;
743 devname = nfs_path(&dummy, mnt->mnt_root, page, PAGE_SIZE);
744 if (IS_ERR(devname))
745 err = PTR_ERR(devname);
746 else
747 seq_escape(m, devname, " \t\n\\");
748 free_page((unsigned long)page);
749 return err;
750}
751
752static int nfs_show_path(struct seq_file *m, struct vfsmount *mnt)
753{
754 seq_puts(m, "/");
755 return 0;
756}
757
David Howellsf7b422b2006-06-09 09:34:33 -0400758/*
759 * Present statistical information for this VFS mountpoint
760 */
761static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
762{
763 int i, cpu;
764 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
765 struct rpc_auth *auth = nfss->client->cl_auth;
766 struct nfs_iostats totals = { };
767
768 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
769
770 /*
771 * Display all mount option settings
772 */
773 seq_printf(m, "\n\topts:\t");
774 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
775 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
776 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
777 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
778 nfs_show_mount_options(m, nfss, 1);
779
780 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
781
782 seq_printf(m, "\n\tcaps:\t");
783 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400784 seq_printf(m, ",wtmult=%u", nfss->wtmult);
785 seq_printf(m, ",dtsize=%u", nfss->dtsize);
786 seq_printf(m, ",bsize=%u", nfss->bsize);
787 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400788
789#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500790 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400791 seq_printf(m, "\n\tnfsv4:\t");
792 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
793 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
794 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
795 }
796#endif
797
798 /*
799 * Display security flavor in effect for this mount
800 */
Chuck Lever2d767432008-03-14 14:10:08 -0400801 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400802 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400803 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400804
805 /*
806 * Display superblock I/O counters
807 */
808 for_each_possible_cpu(cpu) {
809 struct nfs_iostats *stats;
810
811 preempt_disable();
812 stats = per_cpu_ptr(nfss->io_stats, cpu);
813
814 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
815 totals.events[i] += stats->events[i];
816 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
817 totals.bytes[i] += stats->bytes[i];
David Howells6a510912009-04-03 16:42:43 +0100818#ifdef CONFIG_NFS_FSCACHE
819 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
820 totals.fscache[i] += stats->fscache[i];
821#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400822
823 preempt_enable();
824 }
825
826 seq_printf(m, "\n\tevents:\t");
827 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
828 seq_printf(m, "%lu ", totals.events[i]);
829 seq_printf(m, "\n\tbytes:\t");
830 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
831 seq_printf(m, "%Lu ", totals.bytes[i]);
David Howells6a510912009-04-03 16:42:43 +0100832#ifdef CONFIG_NFS_FSCACHE
833 if (nfss->options & NFS_OPTION_FSCACHE) {
834 seq_printf(m, "\n\tfsc:\t");
835 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
836 seq_printf(m, "%Lu ", totals.bytes[i]);
837 }
838#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400839 seq_printf(m, "\n");
840
841 rpc_print_iostats(m, nfss->client);
842
843 return 0;
844}
845
846/*
847 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400848 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400849 */
Al Viro42faad92008-04-24 07:21:56 -0400850static void nfs_umount_begin(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -0400851{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200852 struct nfs_server *server;
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400853 struct rpc_clnt *rpc;
854
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200855 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400856 /* -EIO all pending I/O */
857 rpc = server->client_acl;
858 if (!IS_ERR(rpc))
859 rpc_killall_tasks(rpc);
860 rpc = server->client;
861 if (!IS_ERR(rpc))
862 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400863}
864
Trond Myklebustc5811db2009-10-06 15:40:15 -0400865static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int version)
Chuck Lever9423a082009-09-23 14:36:38 -0400866{
867 struct nfs_parsed_mount_data *data;
868
869 data = kzalloc(sizeof(*data), GFP_KERNEL);
870 if (data) {
Chuck Lever9423a082009-09-23 14:36:38 -0400871 data->acregmin = NFS_DEF_ACREGMIN;
872 data->acregmax = NFS_DEF_ACREGMAX;
873 data->acdirmin = NFS_DEF_ACDIRMIN;
874 data->acdirmax = NFS_DEF_ACDIRMAX;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400875 data->mount_server.port = NFS_UNSPEC_PORT;
Chuck Lever9423a082009-09-23 14:36:38 -0400876 data->nfs_server.port = NFS_UNSPEC_PORT;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400877 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Lever9423a082009-09-23 14:36:38 -0400878 data->auth_flavors[0] = RPC_AUTH_UNIX;
879 data->auth_flavor_len = 1;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400880 data->version = version;
Chuck Lever9423a082009-09-23 14:36:38 -0400881 data->minorversion = 0;
882 }
883 return data;
884}
885
David Howellsf7b422b2006-06-09 09:34:33 -0400886/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500887 * Sanity-check a server address provided by the mount command.
888 *
889 * Address family must be initialized, and address must not be
890 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400891 */
892static int nfs_verify_server_address(struct sockaddr *addr)
893{
894 switch (addr->sa_family) {
895 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500896 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700897 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500898 }
899 case AF_INET6: {
900 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
901 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400902 }
903 }
904
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400905 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400906 return 0;
907}
908
Chuck Lever9412b922007-12-10 14:59:21 -0500909/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400910 * Select between a default port value and a user-specified port value.
911 * If a zero value is set, then autobind will be used.
912 */
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400913static void nfs_set_port(struct sockaddr *sap, int *port,
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400914 const unsigned short default_port)
915{
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400916 if (*port == NFS_UNSPEC_PORT)
917 *port = default_port;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400918
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400919 rpc_set_port(sap, *port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400920}
921
922/*
Trond Myklebust259875e2008-07-02 14:43:47 -0400923 * Sanity check the NFS transport protocol.
924 *
925 */
926static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
927{
928 switch (mnt->nfs_server.protocol) {
929 case XPRT_TRANSPORT_UDP:
930 case XPRT_TRANSPORT_TCP:
931 case XPRT_TRANSPORT_RDMA:
932 break;
933 default:
934 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
935 }
936}
937
938/*
939 * For text based NFSv2/v3 mounts, the mount protocol transport default
940 * settings should depend upon the specified NFS transport.
941 */
942static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
943{
944 nfs_validate_transport_protocol(mnt);
945
946 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
947 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
948 return;
949 switch (mnt->nfs_server.protocol) {
950 case XPRT_TRANSPORT_UDP:
951 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
952 break;
953 case XPRT_TRANSPORT_TCP:
954 case XPRT_TRANSPORT_RDMA:
955 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
956 }
957}
958
959/*
Chuck Lever01060c82008-06-24 16:33:38 -0400960 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -0400961 */
962static int nfs_parse_security_flavors(char *value,
963 struct nfs_parsed_mount_data *mnt)
964{
965 substring_t args[MAX_OPT_ARGS];
966
967 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
968
969 switch (match_token(value, nfs_secflavor_tokens, args)) {
970 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -0400971 mnt->auth_flavors[0] = RPC_AUTH_NULL;
972 break;
973 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -0400974 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
975 break;
976 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -0400977 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
978 break;
979 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -0400980 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
981 break;
982 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -0400983 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
984 break;
985 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -0400986 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
987 break;
988 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -0400989 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
990 break;
991 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -0400992 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
993 break;
994 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -0400995 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
996 break;
997 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -0400998 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
999 break;
1000 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -04001001 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
1002 break;
1003 default:
1004 return 0;
1005 }
1006
Chuck Lever059f90b2009-08-09 15:09:31 -04001007 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -04001008 return 1;
1009}
1010
1011/*
Chuck Leverbf0fd762007-07-01 12:13:44 -04001012 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -04001013 * a data structure. The whole mount string is processed; bad options are
1014 * skipped as they are encountered. If there were no errors, return 1;
1015 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -04001016 */
1017static int nfs_parse_mount_options(char *raw,
1018 struct nfs_parsed_mount_data *mnt)
1019{
Eric Parisf9c3a382008-03-05 14:20:18 -05001020 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001021 int rc, sloppy = 0, invalid_option = 0;
Jeff Laytonee671b02009-12-03 15:58:56 -05001022 unsigned short protofamily = AF_UNSPEC;
1023 unsigned short mountfamily = AF_UNSPEC;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001024
1025 if (!raw) {
1026 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
1027 return 1;
1028 }
1029 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
1030
Eric Parisf9c3a382008-03-05 14:20:18 -05001031 secdata = alloc_secdata();
1032 if (!secdata)
1033 goto out_nomem;
1034
1035 rc = security_sb_copy_data(raw, secdata);
1036 if (rc)
1037 goto out_security_failure;
1038
1039 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
1040 if (rc)
1041 goto out_security_failure;
1042
1043 free_secdata(secdata);
1044
Chuck Leverbf0fd762007-07-01 12:13:44 -04001045 while ((p = strsep(&raw, ",")) != NULL) {
1046 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -07001047 unsigned long option;
1048 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001049
1050 if (!*p)
1051 continue;
1052
1053 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
1054
1055 token = match_token(p, nfs_mount_option_tokens, args);
1056 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001057
1058 /*
1059 * boolean options: foo/nofoo
1060 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001061 case Opt_soft:
1062 mnt->flags |= NFS_MOUNT_SOFT;
1063 break;
1064 case Opt_hard:
1065 mnt->flags &= ~NFS_MOUNT_SOFT;
1066 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001067 case Opt_posix:
1068 mnt->flags |= NFS_MOUNT_POSIX;
1069 break;
1070 case Opt_noposix:
1071 mnt->flags &= ~NFS_MOUNT_POSIX;
1072 break;
1073 case Opt_cto:
1074 mnt->flags &= ~NFS_MOUNT_NOCTO;
1075 break;
1076 case Opt_nocto:
1077 mnt->flags |= NFS_MOUNT_NOCTO;
1078 break;
1079 case Opt_ac:
1080 mnt->flags &= ~NFS_MOUNT_NOAC;
1081 break;
1082 case Opt_noac:
1083 mnt->flags |= NFS_MOUNT_NOAC;
1084 break;
1085 case Opt_lock:
1086 mnt->flags &= ~NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001087 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1088 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001089 break;
1090 case Opt_nolock:
1091 mnt->flags |= NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001092 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1093 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001094 break;
1095 case Opt_v2:
1096 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001097 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001098 break;
1099 case Opt_v3:
1100 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001101 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001102 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001103 case Opt_v4:
1104 mnt->flags &= ~NFS_MOUNT_VER3;
1105 mnt->version = 4;
1106 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001107 case Opt_udp:
1108 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001109 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001110 break;
1111 case Opt_tcp:
1112 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001113 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001114 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001115 case Opt_rdma:
1116 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
1117 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001118 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001119 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001120 case Opt_acl:
1121 mnt->flags &= ~NFS_MOUNT_NOACL;
1122 break;
1123 case Opt_noacl:
1124 mnt->flags |= NFS_MOUNT_NOACL;
1125 break;
1126 case Opt_rdirplus:
1127 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
1128 break;
1129 case Opt_nordirplus:
1130 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
1131 break;
Trond Myklebust75180df2007-05-16 16:53:28 -04001132 case Opt_sharecache:
1133 mnt->flags &= ~NFS_MOUNT_UNSHARED;
1134 break;
1135 case Opt_nosharecache:
1136 mnt->flags |= NFS_MOUNT_UNSHARED;
1137 break;
Chuck Leverd7403512008-12-23 15:21:37 -05001138 case Opt_resvport:
1139 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1140 break;
1141 case Opt_noresvport:
1142 mnt->flags |= NFS_MOUNT_NORESVPORT;
1143 break;
David Howellsb797cac2009-04-03 16:42:48 +01001144 case Opt_fscache:
1145 mnt->options |= NFS_OPTION_FSCACHE;
1146 kfree(mnt->fscache_uniq);
1147 mnt->fscache_uniq = NULL;
1148 break;
1149 case Opt_nofscache:
1150 mnt->options &= ~NFS_OPTION_FSCACHE;
1151 kfree(mnt->fscache_uniq);
1152 mnt->fscache_uniq = NULL;
1153 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001154
Chuck Leverf45663c2008-06-24 19:28:02 -04001155 /*
1156 * options that take numeric values
1157 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001158 case Opt_port:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001159 string = match_strdup(args);
1160 if (string == NULL)
1161 goto out_nomem;
1162 rc = strict_strtoul(string, 10, &option);
1163 kfree(string);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07001164 if (rc != 0 || option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001165 goto out_invalid_value;
1166 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001167 break;
1168 case Opt_rsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001169 string = match_strdup(args);
1170 if (string == NULL)
1171 goto out_nomem;
1172 rc = strict_strtoul(string, 10, &option);
1173 kfree(string);
1174 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001175 goto out_invalid_value;
1176 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001177 break;
1178 case Opt_wsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001179 string = match_strdup(args);
1180 if (string == NULL)
1181 goto out_nomem;
1182 rc = strict_strtoul(string, 10, &option);
1183 kfree(string);
1184 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001185 goto out_invalid_value;
1186 mnt->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001187 break;
1188 case Opt_bsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001189 string = match_strdup(args);
1190 if (string == NULL)
1191 goto out_nomem;
1192 rc = strict_strtoul(string, 10, &option);
1193 kfree(string);
1194 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001195 goto out_invalid_value;
1196 mnt->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001197 break;
1198 case Opt_timeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001199 string = match_strdup(args);
1200 if (string == NULL)
1201 goto out_nomem;
1202 rc = strict_strtoul(string, 10, &option);
1203 kfree(string);
1204 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001205 goto out_invalid_value;
1206 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001207 break;
1208 case Opt_retrans:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001209 string = match_strdup(args);
1210 if (string == NULL)
1211 goto out_nomem;
1212 rc = strict_strtoul(string, 10, &option);
1213 kfree(string);
1214 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001215 goto out_invalid_value;
1216 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001217 break;
1218 case Opt_acregmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001219 string = match_strdup(args);
1220 if (string == NULL)
1221 goto out_nomem;
1222 rc = strict_strtoul(string, 10, &option);
1223 kfree(string);
1224 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001225 goto out_invalid_value;
1226 mnt->acregmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001227 break;
1228 case Opt_acregmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001229 string = match_strdup(args);
1230 if (string == NULL)
1231 goto out_nomem;
1232 rc = strict_strtoul(string, 10, &option);
1233 kfree(string);
1234 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001235 goto out_invalid_value;
1236 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001237 break;
1238 case Opt_acdirmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001239 string = match_strdup(args);
1240 if (string == NULL)
1241 goto out_nomem;
1242 rc = strict_strtoul(string, 10, &option);
1243 kfree(string);
1244 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001245 goto out_invalid_value;
1246 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001247 break;
1248 case Opt_acdirmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001249 string = match_strdup(args);
1250 if (string == NULL)
1251 goto out_nomem;
1252 rc = strict_strtoul(string, 10, &option);
1253 kfree(string);
1254 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001255 goto out_invalid_value;
1256 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001257 break;
1258 case Opt_actimeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001259 string = match_strdup(args);
1260 if (string == NULL)
1261 goto out_nomem;
1262 rc = strict_strtoul(string, 10, &option);
1263 kfree(string);
1264 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001265 goto out_invalid_value;
1266 mnt->acregmin = mnt->acregmax =
1267 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001268 break;
1269 case Opt_namelen:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001270 string = match_strdup(args);
1271 if (string == NULL)
1272 goto out_nomem;
1273 rc = strict_strtoul(string, 10, &option);
1274 kfree(string);
1275 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001276 goto out_invalid_value;
1277 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001278 break;
1279 case Opt_mountport:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001280 string = match_strdup(args);
1281 if (string == NULL)
1282 goto out_nomem;
1283 rc = strict_strtoul(string, 10, &option);
1284 kfree(string);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07001285 if (rc != 0 || option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001286 goto out_invalid_value;
1287 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001288 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001289 case Opt_mountvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001290 string = match_strdup(args);
1291 if (string == NULL)
1292 goto out_nomem;
1293 rc = strict_strtoul(string, 10, &option);
1294 kfree(string);
1295 if (rc != 0 ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001296 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001297 option > NFS_MNT3_VERSION)
1298 goto out_invalid_value;
1299 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001300 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001301 case Opt_nfsvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001302 string = match_strdup(args);
1303 if (string == NULL)
1304 goto out_nomem;
1305 rc = strict_strtoul(string, 10, &option);
1306 kfree(string);
1307 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001308 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001309 switch (option) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001310 case NFS2_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001311 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001312 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001313 break;
Chuck Leverf45663c2008-06-24 19:28:02 -04001314 case NFS3_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001315 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001316 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001317 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001318 case NFS4_VERSION:
1319 mnt->flags &= ~NFS_MOUNT_VER3;
1320 mnt->version = 4;
1321 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001322 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001323 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001324 }
1325 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001326 case Opt_minorversion:
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001327 string = match_strdup(args);
1328 if (string == NULL)
1329 goto out_nomem;
1330 rc = strict_strtoul(string, 10, &option);
1331 kfree(string);
1332 if (rc != 0)
1333 goto out_invalid_value;
1334 if (option > NFS4_MAX_MINOR_VERSION)
1335 goto out_invalid_value;
1336 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001337 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001338
Chuck Leverf45663c2008-06-24 19:28:02 -04001339 /*
1340 * options that take text values
1341 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001342 case Opt_sec:
1343 string = match_strdup(args);
1344 if (string == NULL)
1345 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001346 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001347 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001348 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001349 dfprintk(MOUNT, "NFS: unrecognized "
1350 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001351 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001352 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001353 break;
1354 case Opt_proto:
1355 string = match_strdup(args);
1356 if (string == NULL)
1357 goto out_nomem;
1358 token = match_token(string,
1359 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001360
Jeff Laytonee671b02009-12-03 15:58:56 -05001361 protofamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001362 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001363 case Opt_xprt_udp6:
1364 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001365 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001366 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001367 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001368 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001369 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001370 case Opt_xprt_tcp6:
1371 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001372 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001373 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001374 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001375 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001376 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001377 case Opt_xprt_rdma:
1378 /* vector side protocols to TCP */
1379 mnt->flags |= NFS_MOUNT_TCP;
1380 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001381 xprt_load_transport(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001382 kfree(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001383 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001384 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001385 dfprintk(MOUNT, "NFS: unrecognized "
1386 "transport protocol\n");
Yinghai Lu4223a4a2009-10-20 14:13:46 +09001387 kfree(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001388 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001389 }
1390 break;
1391 case Opt_mountproto:
1392 string = match_strdup(args);
1393 if (string == NULL)
1394 goto out_nomem;
1395 token = match_token(string,
1396 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001397 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001398
Jeff Laytonee671b02009-12-03 15:58:56 -05001399 mountfamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001400 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001401 case Opt_xprt_udp6:
1402 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001403 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001404 mnt->mount_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 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001408 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001409 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001410 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001411 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001412 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001413 dfprintk(MOUNT, "NFS: unrecognized "
1414 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001415 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001416 }
1417 break;
1418 case Opt_addr:
1419 string = match_strdup(args);
1420 if (string == NULL)
1421 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001422 mnt->nfs_server.addrlen =
1423 rpc_pton(string, strlen(string),
1424 (struct sockaddr *)
1425 &mnt->nfs_server.address,
1426 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001427 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001428 if (mnt->nfs_server.addrlen == 0)
1429 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001430 break;
1431 case Opt_clientaddr:
1432 string = match_strdup(args);
1433 if (string == NULL)
1434 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001435 kfree(mnt->client_address);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001436 mnt->client_address = string;
1437 break;
Chuck Lever33832032007-12-10 14:59:13 -05001438 case Opt_mounthost:
1439 string = match_strdup(args);
1440 if (string == NULL)
1441 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001442 kfree(mnt->mount_server.hostname);
Chuck Lever33832032007-12-10 14:59:13 -05001443 mnt->mount_server.hostname = string;
1444 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001445 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001446 string = match_strdup(args);
1447 if (string == NULL)
1448 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001449 mnt->mount_server.addrlen =
1450 rpc_pton(string, strlen(string),
1451 (struct sockaddr *)
1452 &mnt->mount_server.address,
1453 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001454 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001455 if (mnt->mount_server.addrlen == 0)
1456 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001457 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001458 case Opt_lookupcache:
1459 string = match_strdup(args);
1460 if (string == NULL)
1461 goto out_nomem;
1462 token = match_token(string,
1463 nfs_lookupcache_tokens, args);
1464 kfree(string);
1465 switch (token) {
1466 case Opt_lookupcache_all:
1467 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1468 break;
1469 case Opt_lookupcache_positive:
1470 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1471 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1472 break;
1473 case Opt_lookupcache_none:
1474 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1475 break;
1476 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001477 dfprintk(MOUNT, "NFS: invalid "
1478 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001479 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001480 };
1481 break;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001482 case Opt_fscache_uniq:
1483 string = match_strdup(args);
1484 if (string == NULL)
1485 goto out_nomem;
1486 kfree(mnt->fscache_uniq);
1487 mnt->fscache_uniq = string;
1488 mnt->options |= NFS_OPTION_FSCACHE;
1489 break;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001490 case Opt_local_lock:
1491 string = match_strdup(args);
1492 if (string == NULL)
1493 goto out_nomem;
1494 token = match_token(string, nfs_local_lock_tokens,
1495 args);
1496 kfree(string);
1497 switch (token) {
1498 case Opt_local_lock_all:
1499 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1500 NFS_MOUNT_LOCAL_FCNTL);
1501 break;
1502 case Opt_local_lock_flock:
1503 mnt->flags |= NFS_MOUNT_LOCAL_FLOCK;
1504 break;
1505 case Opt_local_lock_posix:
1506 mnt->flags |= NFS_MOUNT_LOCAL_FCNTL;
1507 break;
1508 case Opt_local_lock_none:
1509 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1510 NFS_MOUNT_LOCAL_FCNTL);
1511 break;
1512 default:
1513 dfprintk(MOUNT, "NFS: invalid "
1514 "local_lock argument\n");
1515 return 0;
1516 };
1517 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001518
Chuck Leverf45663c2008-06-24 19:28:02 -04001519 /*
1520 * Special options
1521 */
1522 case Opt_sloppy:
1523 sloppy = 1;
1524 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1525 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001526 case Opt_userspace:
1527 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001528 dfprintk(MOUNT, "NFS: ignoring mount option "
1529 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001530 break;
1531
1532 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001533 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001534 dfprintk(MOUNT, "NFS: unrecognized mount option "
1535 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001536 }
1537 }
1538
Chuck Leverd23c45f2009-06-17 18:02:13 -07001539 if (!sloppy && invalid_option)
1540 return 0;
1541
Jeff Laytonee671b02009-12-03 15:58:56 -05001542 /*
1543 * verify that any proto=/mountproto= options match the address
1544 * familiies in the addr=/mountaddr= options.
1545 */
1546 if (protofamily != AF_UNSPEC &&
1547 protofamily != mnt->nfs_server.address.ss_family)
1548 goto out_proto_mismatch;
1549
1550 if (mountfamily != AF_UNSPEC) {
1551 if (mnt->mount_server.addrlen) {
1552 if (mountfamily != mnt->mount_server.address.ss_family)
1553 goto out_mountproto_mismatch;
1554 } else {
1555 if (mountfamily != mnt->nfs_server.address.ss_family)
1556 goto out_mountproto_mismatch;
1557 }
1558 }
1559
Chuck Leverbf0fd762007-07-01 12:13:44 -04001560 return 1;
1561
Jeff Laytonee671b02009-12-03 15:58:56 -05001562out_mountproto_mismatch:
1563 printk(KERN_INFO "NFS: mount server address does not match mountproto= "
1564 "option\n");
1565 return 0;
1566out_proto_mismatch:
1567 printk(KERN_INFO "NFS: server address does not match proto= option\n");
1568 return 0;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001569out_invalid_address:
1570 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1571 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001572out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001573 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001574 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001575out_nomem:
1576 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1577 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001578out_security_failure:
1579 free_secdata(secdata);
1580 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1581 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001582}
1583
1584/*
Chuck Leverec88f282009-08-09 15:09:32 -04001585 * Match the requested auth flavors with the list returned by
1586 * the server. Returns zero and sets the mount's authentication
1587 * flavor on success; returns -EACCES if server does not support
1588 * the requested flavor.
1589 */
1590static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1591 struct nfs_mount_request *request)
1592{
1593 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1594
1595 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001596 * Certain releases of Linux's mountd return an empty
1597 * flavor list. To prevent behavioral regression with
1598 * these servers (ie. rejecting mounts that used to
1599 * succeed), revert to pre-2.6.32 behavior (no checking)
1600 * if the returned flavor list is empty.
1601 */
1602 if (server_authlist_len == 0)
1603 return 0;
1604
1605 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001606 * We avoid sophisticated negotiating here, as there are
1607 * plenty of cases where we can get it wrong, providing
1608 * either too little or too much security.
1609 *
1610 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1611 * flavor listed first. However, some servers list
1612 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1613 * preferred default, in args->auth_flavors[0] if user
1614 * didn't specify sec= mount option.
1615 */
1616 for (i = 0; i < args->auth_flavor_len; i++)
1617 for (j = 0; j < server_authlist_len; j++)
1618 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1619 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1620 request->auth_flavs[j]);
1621 args->auth_flavors[0] = request->auth_flavs[j];
1622 return 0;
1623 }
1624
1625 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1626 nfs_umount(request);
1627 return -EACCES;
1628}
1629
1630/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001631 * Use the remote server's MOUNT service to request the NFS file handle
1632 * corresponding to the provided path.
1633 */
1634static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1635 struct nfs_fh *root_fh)
1636{
Chuck Leverec88f282009-08-09 15:09:32 -04001637 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1638 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001639 struct nfs_mount_request request = {
1640 .sap = (struct sockaddr *)
1641 &args->mount_server.address,
1642 .dirpath = args->nfs_server.export_path,
1643 .protocol = args->mount_server.protocol,
1644 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001645 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001646 .auth_flav_len = &server_authlist_len,
1647 .auth_flavs = server_authlist,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001648 };
Chuck Lever4c568012007-12-10 14:59:28 -05001649 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001650
1651 if (args->mount_server.version == 0) {
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001652 switch (args->version) {
1653 default:
1654 args->mount_server.version = NFS_MNT3_VERSION;
1655 break;
1656 case 2:
1657 args->mount_server.version = NFS_MNT_VERSION;
1658 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001659 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001660 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001661
Chuck Lever33832032007-12-10 14:59:13 -05001662 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001663 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001664 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001665 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001666
Chuck Lever0076d7b2007-07-01 12:13:49 -04001667 /*
1668 * Construct the mount server's address.
1669 */
Chuck Lever4c568012007-12-10 14:59:28 -05001670 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001671 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001672 args->nfs_server.addrlen);
1673 args->mount_server.addrlen = args->nfs_server.addrlen;
1674 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001675 request.salen = args->mount_server.addrlen;
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001676 nfs_set_port(request.sap, &args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001677
1678 /*
1679 * Now ask the mount server to map our export path
1680 * to a file handle.
1681 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001682 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001683 if (status != 0) {
1684 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1685 request.hostname, status);
1686 return status;
1687 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001688
Chuck Leverec88f282009-08-09 15:09:32 -04001689 /*
1690 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1691 */
1692 if (args->mount_server.version != NFS_MNT3_VERSION)
1693 return 0;
1694 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001695}
1696
Chuck Leverd1aa0822008-06-23 12:36:45 -04001697static int nfs_parse_simple_hostname(const char *dev_name,
1698 char **hostname, size_t maxnamlen,
1699 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001700{
1701 size_t len;
1702 char *colon, *comma;
1703
1704 colon = strchr(dev_name, ':');
1705 if (colon == NULL)
1706 goto out_bad_devname;
1707
1708 len = colon - dev_name;
1709 if (len > maxnamlen)
1710 goto out_hostname;
1711
1712 /* N.B. caller will free nfs_server.hostname in all cases */
1713 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
1714 if (!*hostname)
1715 goto out_nomem;
1716
1717 /* kill possible hostname list: not supported */
1718 comma = strchr(*hostname, ',');
1719 if (comma != NULL) {
1720 if (comma == *hostname)
1721 goto out_bad_devname;
1722 *comma = '\0';
1723 }
1724
1725 colon++;
1726 len = strlen(colon);
1727 if (len > maxpathlen)
1728 goto out_path;
1729 *export_path = kstrndup(colon, len, GFP_KERNEL);
1730 if (!*export_path)
1731 goto out_nomem;
1732
1733 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1734 return 0;
1735
1736out_bad_devname:
1737 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1738 return -EINVAL;
1739
1740out_nomem:
1741 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1742 return -ENOMEM;
1743
1744out_hostname:
1745 dfprintk(MOUNT, "NFS: server hostname too long\n");
1746 return -ENAMETOOLONG;
1747
1748out_path:
1749 dfprintk(MOUNT, "NFS: export pathname too long\n");
1750 return -ENAMETOOLONG;
1751}
1752
1753/*
Chuck Leverd1aa0822008-06-23 12:36:45 -04001754 * Hostname has square brackets around it because it contains one or
1755 * more colons. We look for the first closing square bracket, and a
1756 * colon must follow it.
1757 */
1758static int nfs_parse_protected_hostname(const char *dev_name,
1759 char **hostname, size_t maxnamlen,
1760 char **export_path, size_t maxpathlen)
1761{
1762 size_t len;
1763 char *start, *end;
1764
1765 start = (char *)(dev_name + 1);
1766
1767 end = strchr(start, ']');
1768 if (end == NULL)
1769 goto out_bad_devname;
1770 if (*(end + 1) != ':')
1771 goto out_bad_devname;
1772
1773 len = end - start;
1774 if (len > maxnamlen)
1775 goto out_hostname;
1776
1777 /* N.B. caller will free nfs_server.hostname in all cases */
1778 *hostname = kstrndup(start, len, GFP_KERNEL);
1779 if (*hostname == NULL)
1780 goto out_nomem;
1781
1782 end += 2;
1783 len = strlen(end);
1784 if (len > maxpathlen)
1785 goto out_path;
1786 *export_path = kstrndup(end, len, GFP_KERNEL);
1787 if (!*export_path)
1788 goto out_nomem;
1789
1790 return 0;
1791
1792out_bad_devname:
1793 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1794 return -EINVAL;
1795
1796out_nomem:
1797 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1798 return -ENOMEM;
1799
1800out_hostname:
1801 dfprintk(MOUNT, "NFS: server hostname too long\n");
1802 return -ENAMETOOLONG;
1803
1804out_path:
1805 dfprintk(MOUNT, "NFS: export pathname too long\n");
1806 return -ENAMETOOLONG;
1807}
1808
1809/*
1810 * Split "dev_name" into "hostname:export_path".
1811 *
1812 * The leftmost colon demarks the split between the server's hostname
1813 * and the export path. If the hostname starts with a left square
1814 * bracket, then it may contain colons.
1815 *
1816 * Note: caller frees hostname and export path, even on error.
1817 */
1818static int nfs_parse_devname(const char *dev_name,
1819 char **hostname, size_t maxnamlen,
1820 char **export_path, size_t maxpathlen)
1821{
1822 if (*dev_name == '[')
1823 return nfs_parse_protected_hostname(dev_name,
1824 hostname, maxnamlen,
1825 export_path, maxpathlen);
1826
1827 return nfs_parse_simple_hostname(dev_name,
1828 hostname, maxnamlen,
1829 export_path, maxpathlen);
1830}
1831
1832/*
David Howells54ceac42006-08-22 20:06:13 -04001833 * Validate the NFS2/NFS3 mount data
1834 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001835 *
1836 * For option strings, user space handles the following behaviors:
1837 *
1838 * + DNS: mapping server host name to IP address ("addr=" option)
1839 *
1840 * + failure mode: how to behave if a mount request can't be handled
1841 * immediately ("fg/bg" option)
1842 *
1843 * + retry: how often to retry a mount request ("retry=" option)
1844 *
1845 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1846 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001847 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001848static int nfs_validate_mount_data(void *options,
1849 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001850 struct nfs_fh *mntfh,
1851 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001852{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001853 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001854 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001855
Chuck Lever5df36e72007-07-01 12:12:56 -04001856 if (data == NULL)
1857 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001858
David Howellsf7b422b2006-06-09 09:34:33 -04001859 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001860 case 1:
1861 data->namlen = 0;
1862 case 2:
1863 data->bsize = 0;
1864 case 3:
1865 if (data->flags & NFS_MOUNT_VER3)
1866 goto out_no_v3;
1867 data->root.size = NFS2_FHSIZE;
1868 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1869 case 4:
1870 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1871 goto out_no_sec;
1872 case 5:
1873 memset(data->context, 0, sizeof(data->context));
1874 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001875 if (data->flags & NFS_MOUNT_VER3) {
1876 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1877 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001878 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001879 args->version = 3;
1880 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001881 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001882 args->version = 2;
1883 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001884
Chuck Lever5df36e72007-07-01 12:12:56 -04001885
1886 memcpy(mntfh->data, data->root.data, mntfh->size);
1887 if (mntfh->size < sizeof(mntfh->data))
1888 memset(mntfh->data + mntfh->size, 0,
1889 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001890
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001891 /*
1892 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1893 * can deal with.
1894 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001895 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -04001896 args->flags |= NFS_MOUNT_LEGACY_INTERFACE;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001897 args->rsize = data->rsize;
1898 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001899 args->timeo = data->timeo;
1900 args->retrans = data->retrans;
1901 args->acregmin = data->acregmin;
1902 args->acregmax = data->acregmax;
1903 args->acdirmin = data->acdirmin;
1904 args->acdirmax = data->acdirmax;
Chuck Lever4c568012007-12-10 14:59:28 -05001905
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001906 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001907 args->nfs_server.addrlen = sizeof(data->addr);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001908 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001909 goto out_no_address;
1910
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001911 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001912 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001913 /* N.B. caller will free nfs_server.hostname in all cases */
1914 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1915 args->namlen = data->namlen;
1916 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001917
1918 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1919 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001920 if (!args->nfs_server.hostname)
1921 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001922
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001923 if (!(data->flags & NFS_MOUNT_NONLM))
1924 args->flags &= ~(NFS_MOUNT_LOCAL_FLOCK|
1925 NFS_MOUNT_LOCAL_FCNTL);
1926 else
1927 args->flags |= (NFS_MOUNT_LOCAL_FLOCK|
1928 NFS_MOUNT_LOCAL_FCNTL);
Eric Parisf9c3a382008-03-05 14:20:18 -05001929 /*
1930 * The legacy version 6 binary mount data from userspace has a
1931 * field used only to transport selinux information into the
1932 * the kernel. To continue to support that functionality we
1933 * have a touch of selinux knowledge here in the NFS code. The
1934 * userspace code converted context=blah to just blah so we are
1935 * converting back to the full string selinux understands.
1936 */
1937 if (data->context[0]){
1938#ifdef CONFIG_SECURITY_SELINUX
1939 int rc;
1940 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1941 if (!opts_str)
1942 return -ENOMEM;
1943 strcpy(opts_str, "context=");
1944 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1945 strcat(opts_str, &data->context[0]);
1946 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1947 kfree(opts_str);
1948 if (rc)
1949 return rc;
1950#else
1951 return -EINVAL;
1952#endif
1953 }
1954
Chuck Lever5df36e72007-07-01 12:12:56 -04001955 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001956 default: {
Chuck Lever136d5582007-07-01 12:13:54 -04001957 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001958
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001959 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001960 return -EINVAL;
1961
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001962 if (!nfs_verify_server_address(sap))
Chuck Lever6e88e062007-09-24 15:39:50 -04001963 goto out_no_address;
1964
Chuck Lever764302c2009-09-08 19:50:03 -04001965 if (args->version == 4)
1966#ifdef CONFIG_NFS_V4
1967 return nfs4_validate_text_mount_data(options,
1968 args, dev_name);
1969#else
1970 goto out_v4_not_compiled;
1971#endif
1972
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001973 nfs_set_port(sap, &args->nfs_server.port, 0);
Chuck Levered596a82008-06-26 17:47:05 -04001974
Trond Myklebust259875e2008-07-02 14:43:47 -04001975 nfs_set_mount_transport_protocol(args);
1976
Chuck Leverdc045892008-06-23 12:36:37 -04001977 status = nfs_parse_devname(dev_name,
1978 &args->nfs_server.hostname,
1979 PAGE_SIZE,
1980 &args->nfs_server.export_path,
1981 NFS_MAXPATHLEN);
1982 if (!status)
1983 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001984
Chuck Leverdc045892008-06-23 12:36:37 -04001985 kfree(args->nfs_server.export_path);
1986 args->nfs_server.export_path = NULL;
Chuck Lever136d5582007-07-01 12:13:54 -04001987
Chuck Lever136d5582007-07-01 12:13:54 -04001988 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001989 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001990
Chuck Lever136d5582007-07-01 12:13:54 -04001991 break;
1992 }
David Howellsf7b422b2006-06-09 09:34:33 -04001993 }
David Howells54ceac42006-08-22 20:06:13 -04001994
David Howellsf7b422b2006-06-09 09:34:33 -04001995#ifndef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001996 if (args->version == 3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001997 goto out_v3_not_compiled;
1998#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001999
David Howells54ceac42006-08-22 20:06:13 -04002000 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04002001
2002out_no_data:
2003 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
2004 return -EINVAL;
2005
2006out_no_v3:
2007 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
2008 data->version);
2009 return -EINVAL;
2010
2011out_no_sec:
2012 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
2013 return -EINVAL;
2014
Chuck Lever5df36e72007-07-01 12:12:56 -04002015#ifndef CONFIG_NFS_V3
2016out_v3_not_compiled:
2017 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
2018 return -EPROTONOSUPPORT;
2019#endif /* !CONFIG_NFS_V3 */
2020
Chuck Lever764302c2009-09-08 19:50:03 -04002021#ifndef CONFIG_NFS_V4
2022out_v4_not_compiled:
2023 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
2024 return -EPROTONOSUPPORT;
2025#endif /* !CONFIG_NFS_V4 */
2026
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04002027out_nomem:
2028 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
2029 return -ENOMEM;
2030
Chuck Lever5df36e72007-07-01 12:12:56 -04002031out_no_address:
2032 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
2033 return -EINVAL;
2034
2035out_invalid_fh:
2036 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
2037 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04002038}
2039
Jeff Layton48b605f2008-06-10 15:38:39 -04002040static int
2041nfs_compare_remount_data(struct nfs_server *nfss,
2042 struct nfs_parsed_mount_data *data)
2043{
2044 if (data->flags != nfss->flags ||
2045 data->rsize != nfss->rsize ||
2046 data->wsize != nfss->wsize ||
2047 data->retrans != nfss->client->cl_timeout->to_retries ||
2048 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
2049 data->acregmin != nfss->acregmin / HZ ||
2050 data->acregmax != nfss->acregmax / HZ ||
2051 data->acdirmin != nfss->acdirmin / HZ ||
2052 data->acdirmax != nfss->acdirmax / HZ ||
2053 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002054 data->nfs_server.port != nfss->port ||
Jeff Layton48b605f2008-06-10 15:38:39 -04002055 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
Stefan Richtera1be9ee2009-10-12 11:26:12 -04002056 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
2057 (struct sockaddr *)&nfss->nfs_client->cl_addr))
Jeff Layton48b605f2008-06-10 15:38:39 -04002058 return -EINVAL;
2059
2060 return 0;
2061}
2062
2063static int
2064nfs_remount(struct super_block *sb, int *flags, char *raw_data)
2065{
2066 int error;
2067 struct nfs_server *nfss = sb->s_fs_info;
2068 struct nfs_parsed_mount_data *data;
2069 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
2070 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04002071 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04002072
2073 /*
2074 * Userspace mount programs that send binary options generally send
2075 * them populated with default values. We have no way to know which
2076 * ones were explicitly specified. Fall back to legacy behavior and
2077 * just return success.
2078 */
Marc Zyngier31c94462008-07-17 13:21:55 +02002079 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
2080 (nfsvers <= 3 && (!options || (options->version >= 1 &&
2081 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04002082 return 0;
2083
2084 data = kzalloc(sizeof(*data), GFP_KERNEL);
2085 if (data == NULL)
2086 return -ENOMEM;
2087
2088 /* fill out struct with values from existing mount */
2089 data->flags = nfss->flags;
2090 data->rsize = nfss->rsize;
2091 data->wsize = nfss->wsize;
2092 data->retrans = nfss->client->cl_timeout->to_retries;
2093 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
2094 data->acregmin = nfss->acregmin / HZ;
2095 data->acregmax = nfss->acregmax / HZ;
2096 data->acdirmin = nfss->acdirmin / HZ;
2097 data->acdirmax = nfss->acdirmax / HZ;
2098 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002099 data->nfs_server.port = nfss->port;
Jeff Layton48b605f2008-06-10 15:38:39 -04002100 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
2101 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
2102 data->nfs_server.addrlen);
2103
2104 /* overwrite those values with any that were specified */
2105 error = nfs_parse_mount_options((char *)options, data);
2106 if (error < 0)
2107 goto out;
2108
2109 /* compare new mount options with old ones */
2110 error = nfs_compare_remount_data(nfss, data);
2111out:
2112 kfree(data);
2113 return error;
2114}
2115
David Howells54ceac42006-08-22 20:06:13 -04002116/*
2117 * Initialise the common bits of the superblock
2118 */
2119static inline void nfs_initialise_sb(struct super_block *sb)
2120{
2121 struct nfs_server *server = NFS_SB(sb);
2122
2123 sb->s_magic = NFS_SUPER_MAGIC;
2124
2125 /* We probably want something more informative here */
2126 snprintf(sb->s_id, sizeof(sb->s_id),
2127 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
2128
2129 if (sb->s_blocksize == 0)
2130 sb->s_blocksize = nfs_block_bits(server->wsize,
2131 &sb->s_blocksize_bits);
2132
2133 if (server->flags & NFS_MOUNT_NOAC)
2134 sb->s_flags |= MS_SYNCHRONOUS;
2135
Jens Axboe32a88aa2009-09-16 15:02:33 +02002136 sb->s_bdi = &server->backing_dev_info;
2137
David Howells54ceac42006-08-22 20:06:13 -04002138 nfs_super_set_maxbytes(sb, server->maxfilesize);
2139}
2140
2141/*
2142 * Finish setting up an NFS2/3 superblock
2143 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04002144static void nfs_fill_super(struct super_block *sb,
2145 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04002146{
2147 struct nfs_server *server = NFS_SB(sb);
2148
2149 sb->s_blocksize_bits = 0;
2150 sb->s_blocksize = 0;
2151 if (data->bsize)
2152 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
2153
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002154 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002155 /* The VFS shouldn't apply the umask to mode bits. We will do
2156 * so ourselves when necessary.
2157 */
2158 sb->s_flags |= MS_POSIXACL;
2159 sb->s_time_gran = 1;
2160 }
2161
2162 sb->s_op = &nfs_sops;
2163 nfs_initialise_sb(sb);
2164}
2165
2166/*
2167 * Finish setting up a cloned NFS2/3 superblock
2168 */
2169static void nfs_clone_super(struct super_block *sb,
2170 const struct super_block *old_sb)
2171{
2172 struct nfs_server *server = NFS_SB(sb);
2173
2174 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2175 sb->s_blocksize = old_sb->s_blocksize;
2176 sb->s_maxbytes = old_sb->s_maxbytes;
2177
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002178 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002179 /* The VFS shouldn't apply the umask to mode bits. We will do
2180 * so ourselves when necessary.
2181 */
2182 sb->s_flags |= MS_POSIXACL;
2183 sb->s_time_gran = 1;
2184 }
2185
2186 sb->s_op = old_sb->s_op;
2187 nfs_initialise_sb(sb);
2188}
2189
Trond Myklebust275a5d22007-05-16 16:53:28 -04002190static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
2191{
2192 const struct nfs_server *a = s->s_fs_info;
2193 const struct rpc_clnt *clnt_a = a->client;
2194 const struct rpc_clnt *clnt_b = b->client;
2195
2196 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
2197 goto Ebusy;
2198 if (a->nfs_client != b->nfs_client)
2199 goto Ebusy;
2200 if (a->flags != b->flags)
2201 goto Ebusy;
2202 if (a->wsize != b->wsize)
2203 goto Ebusy;
2204 if (a->rsize != b->rsize)
2205 goto Ebusy;
2206 if (a->acregmin != b->acregmin)
2207 goto Ebusy;
2208 if (a->acregmax != b->acregmax)
2209 goto Ebusy;
2210 if (a->acdirmin != b->acdirmin)
2211 goto Ebusy;
2212 if (a->acdirmax != b->acdirmax)
2213 goto Ebusy;
2214 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2215 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002216 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002217Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002218 return 0;
2219}
2220
2221struct nfs_sb_mountdata {
2222 struct nfs_server *server;
2223 int mntflags;
2224};
2225
2226static int nfs_set_super(struct super_block *s, void *data)
2227{
2228 struct nfs_sb_mountdata *sb_mntdata = data;
2229 struct nfs_server *server = sb_mntdata->server;
2230 int ret;
2231
2232 s->s_flags = sb_mntdata->mntflags;
2233 s->s_fs_info = server;
Al Viro8b244ff2010-12-18 11:29:39 -05002234 s->s_d_op = server->nfs_client->rpc_ops->dentry_ops;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002235 ret = set_anon_super(s, server);
2236 if (ret == 0)
2237 server->s_dev = s->s_dev;
2238 return ret;
2239}
2240
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002241static int nfs_compare_super_address(struct nfs_server *server1,
2242 struct nfs_server *server2)
2243{
2244 struct sockaddr *sap1, *sap2;
2245
2246 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2247 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2248
2249 if (sap1->sa_family != sap2->sa_family)
2250 return 0;
2251
2252 switch (sap1->sa_family) {
2253 case AF_INET: {
2254 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2255 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2256 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2257 return 0;
2258 if (sin1->sin_port != sin2->sin_port)
2259 return 0;
2260 break;
2261 }
2262 case AF_INET6: {
2263 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2264 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2265 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2266 return 0;
2267 if (sin1->sin6_port != sin2->sin6_port)
2268 return 0;
2269 break;
2270 }
2271 default:
2272 return 0;
2273 }
2274
2275 return 1;
2276}
2277
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002278static int nfs_compare_super(struct super_block *sb, void *data)
2279{
2280 struct nfs_sb_mountdata *sb_mntdata = data;
2281 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2282 int mntflags = sb_mntdata->mntflags;
2283
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002284 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002285 return 0;
2286 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2287 if (old->flags & NFS_MOUNT_UNSHARED)
2288 return 0;
2289 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2290 return 0;
2291 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002292}
2293
Miklos Szeredifa799752008-04-30 00:54:33 -07002294static int nfs_bdi_register(struct nfs_server *server)
2295{
2296 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2297}
2298
Al Viro01194982011-03-16 07:25:36 -04002299static struct dentry *nfs_fs_mount(struct file_system_type *fs_type,
2300 int flags, const char *dev_name, void *raw_data)
David Howells54ceac42006-08-22 20:06:13 -04002301{
2302 struct nfs_server *server = NULL;
2303 struct super_block *s;
Trond Myklebust33852a12008-06-19 14:20:11 -04002304 struct nfs_parsed_mount_data *data;
2305 struct nfs_fh *mntfh;
Al Viro01194982011-03-16 07:25:36 -04002306 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Trond Myklebust75180df2007-05-16 16:53:28 -04002307 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002308 struct nfs_sb_mountdata sb_mntdata = {
2309 .mntflags = flags,
2310 };
Al Viro01194982011-03-16 07:25:36 -04002311 int error;
David Howells54ceac42006-08-22 20:06:13 -04002312
Paulius Zaleckas1e657bd2010-10-31 18:21:05 +02002313 data = nfs_alloc_parsed_mount_data(NFS_DEFAULT_VERSION);
Trond Myklebustb157b062010-04-19 19:05:48 -04002314 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002315 if (data == NULL || mntfh == NULL)
2316 goto out_free_fh;
2317
2318 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002319
David Howells54ceac42006-08-22 20:06:13 -04002320 /* Validate the mount data */
Trond Myklebust33852a12008-06-19 14:20:11 -04002321 error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002322 if (error < 0) {
2323 mntroot = ERR_PTR(error);
Chuck Lever06559602007-07-01 12:12:35 -04002324 goto out;
Al Viro01194982011-03-16 07:25:36 -04002325 }
David Howells54ceac42006-08-22 20:06:13 -04002326
Chuck Lever764302c2009-09-08 19:50:03 -04002327#ifdef CONFIG_NFS_V4
2328 if (data->version == 4) {
Al Viro01194982011-03-16 07:25:36 -04002329 mntroot = nfs4_try_mount(flags, dev_name, data);
Chuck Lever764302c2009-09-08 19:50:03 -04002330 kfree(data->client_address);
Xiaotian Feng9699eda2010-04-22 18:56:17 +08002331 kfree(data->nfs_server.export_path);
Chuck Lever764302c2009-09-08 19:50:03 -04002332 goto out;
2333 }
2334#endif /* CONFIG_NFS_V4 */
2335
David Howells54ceac42006-08-22 20:06:13 -04002336 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002337 server = nfs_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002338 if (IS_ERR(server)) {
Al Viro01194982011-03-16 07:25:36 -04002339 mntroot = ERR_CAST(server);
Chuck Lever06559602007-07-01 12:12:35 -04002340 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002341 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002342 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002343
Trond Myklebust75180df2007-05-16 16:53:28 -04002344 if (server->flags & NFS_MOUNT_UNSHARED)
2345 compare_super = NULL;
2346
David Howells54ceac42006-08-22 20:06:13 -04002347 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002348 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002349 if (IS_ERR(s)) {
Al Viro01194982011-03-16 07:25:36 -04002350 mntroot = ERR_CAST(s);
David Howells54ceac42006-08-22 20:06:13 -04002351 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002352 }
2353
David Howells54ceac42006-08-22 20:06:13 -04002354 if (s->s_fs_info != server) {
2355 nfs_free_server(server);
2356 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002357 } else {
2358 error = nfs_bdi_register(server);
Al Viro01194982011-03-16 07:25:36 -04002359 if (error) {
2360 mntroot = ERR_PTR(error);
NeilBrowncfbc0682010-03-11 11:20:17 +11002361 goto error_splat_bdi;
Al Viro01194982011-03-16 07:25:36 -04002362 }
David Howellsf7b422b2006-06-09 09:34:33 -04002363 }
David Howells54ceac42006-08-22 20:06:13 -04002364
2365 if (!s->s_root) {
2366 /* initial superblock/root creation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002367 nfs_fill_super(s, data);
David Howells2df54802009-09-23 14:36:39 -04002368 nfs_fscache_get_super_cookie(
2369 s, data ? data->fscache_uniq : NULL, NULL);
David Howells54ceac42006-08-22 20:06:13 -04002370 }
2371
Al Viro0d5839a2011-03-16 05:27:27 -04002372 mntroot = nfs_get_root(s, mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002373 if (IS_ERR(mntroot))
David Howells54ceac42006-08-22 20:06:13 -04002374 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002375
Trond Myklebust33852a12008-06-19 14:20:11 -04002376 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002377 if (error)
2378 goto error_splat_root;
2379
David Howellsf7b422b2006-06-09 09:34:33 -04002380 s->s_flags |= MS_ACTIVE;
Chuck Lever06559602007-07-01 12:12:35 -04002381
2382out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002383 kfree(data->nfs_server.hostname);
2384 kfree(data->mount_server.hostname);
David Howells08734042009-04-03 16:42:42 +01002385 kfree(data->fscache_uniq);
Trond Myklebust33852a12008-06-19 14:20:11 -04002386 security_free_mnt_opts(&data->lsm_opts);
2387out_free_fh:
Trond Myklebustb157b062010-04-19 19:05:48 -04002388 nfs_free_fhandle(mntfh);
Trond Myklebust33852a12008-06-19 14:20:11 -04002389 kfree(data);
Al Viro01194982011-03-16 07:25:36 -04002390 return mntroot;
Trond Myklebust816724e2006-06-24 08:41:41 -04002391
David Howells54ceac42006-08-22 20:06:13 -04002392out_err_nosb:
2393 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002394 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002395
Eric Parisf9c3a382008-03-05 14:20:18 -05002396error_splat_root:
2397 dput(mntroot);
Al Viro01194982011-03-16 07:25:36 -04002398 mntroot = ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002399error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002400 if (server && !s->s_root)
2401 bdi_unregister(&server->backing_dev_info);
2402error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002403 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002404 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002405}
2406
David Howells54ceac42006-08-22 20:06:13 -04002407/*
Trond Myklebust387c1492010-02-03 08:27:35 -05002408 * Ensure that we unregister the bdi before kill_anon_super
2409 * releases the device name
2410 */
2411static void nfs_put_super(struct super_block *s)
2412{
2413 struct nfs_server *server = NFS_SB(s);
2414
2415 bdi_unregister(&server->backing_dev_info);
2416}
2417
2418/*
David Howells54ceac42006-08-22 20:06:13 -04002419 * Destroy an NFS2/3 superblock
2420 */
David Howellsf7b422b2006-06-09 09:34:33 -04002421static void nfs_kill_super(struct super_block *s)
2422{
2423 struct nfs_server *server = NFS_SB(s);
2424
2425 kill_anon_super(s);
David Howells08734042009-04-03 16:42:42 +01002426 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002427 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002428}
2429
David Howells54ceac42006-08-22 20:06:13 -04002430/*
2431 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2432 */
Al Viro31f43472010-10-29 03:38:12 -04002433static struct dentry *
2434nfs_xdev_mount(struct file_system_type *fs_type, int flags,
2435 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002436{
2437 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002438 struct super_block *s;
2439 struct nfs_server *server;
2440 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002441 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002442 struct nfs_sb_mountdata sb_mntdata = {
2443 .mntflags = flags,
2444 };
David Howells54ceac42006-08-22 20:06:13 -04002445 int error;
2446
Al Viro31f43472010-10-29 03:38:12 -04002447 dprintk("--> nfs_xdev_mount()\n");
David Howells54ceac42006-08-22 20:06:13 -04002448
2449 /* create a new volume representation */
2450 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2451 if (IS_ERR(server)) {
2452 error = PTR_ERR(server);
2453 goto out_err_noserver;
2454 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002455 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002456
Trond Myklebust75180df2007-05-16 16:53:28 -04002457 if (server->flags & NFS_MOUNT_UNSHARED)
2458 compare_super = NULL;
2459
David Howells54ceac42006-08-22 20:06:13 -04002460 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002461 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002462 if (IS_ERR(s)) {
2463 error = PTR_ERR(s);
2464 goto out_err_nosb;
2465 }
2466
2467 if (s->s_fs_info != server) {
2468 nfs_free_server(server);
2469 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002470 } else {
2471 error = nfs_bdi_register(server);
2472 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002473 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04002474 }
2475
2476 if (!s->s_root) {
2477 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002478 nfs_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002479 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002480 }
2481
Al Viro0d5839a2011-03-16 05:27:27 -04002482 mntroot = nfs_get_root(s, data->fh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002483 if (IS_ERR(mntroot)) {
2484 error = PTR_ERR(mntroot);
2485 goto error_splat_super;
2486 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002487 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11002488 dput(mntroot);
2489 error = -ESTALE;
2490 goto error_splat_super;
2491 }
David Howells54ceac42006-08-22 20:06:13 -04002492
2493 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002494
Eric Parisf9c3a382008-03-05 14:20:18 -05002495 /* clone any lsm security options from the parent to the new sb */
2496 security_sb_clone_mnt_opts(data->sb, s);
2497
Al Viro31f43472010-10-29 03:38:12 -04002498 dprintk("<-- nfs_xdev_mount() = 0\n");
2499 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002500
2501out_err_nosb:
2502 nfs_free_server(server);
2503out_err_noserver:
Al Viro31f43472010-10-29 03:38:12 -04002504 dprintk("<-- nfs_xdev_mount() = %d [error]\n", error);
2505 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002506
2507error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002508 if (server && !s->s_root)
2509 bdi_unregister(&server->backing_dev_info);
2510error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002511 deactivate_locked_super(s);
Al Viro31f43472010-10-29 03:38:12 -04002512 dprintk("<-- nfs_xdev_mount() = %d [splat]\n", error);
2513 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04002514}
2515
2516#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04002517
2518/*
2519 * Finish setting up a cloned NFS4 superblock
2520 */
2521static void nfs4_clone_super(struct super_block *sb,
2522 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002523{
David Howells54ceac42006-08-22 20:06:13 -04002524 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2525 sb->s_blocksize = old_sb->s_blocksize;
2526 sb->s_maxbytes = old_sb->s_maxbytes;
2527 sb->s_time_gran = 1;
2528 sb->s_op = old_sb->s_op;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002529 /*
2530 * The VFS shouldn't apply the umask to mode bits. We will do
2531 * so ourselves when necessary.
2532 */
2533 sb->s_flags |= MS_POSIXACL;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00002534 sb->s_xattr = old_sb->s_xattr;
2535 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002536}
2537
2538/*
2539 * Set up an NFS4 superblock
2540 */
David Howells54ceac42006-08-22 20:06:13 -04002541static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002542{
David Howellsf7b422b2006-06-09 09:34:33 -04002543 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04002544 sb->s_op = &nfs4_sops;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002545 /*
2546 * The VFS shouldn't apply the umask to mode bits. We will do
2547 * so ourselves when necessary.
2548 */
2549 sb->s_flags |= MS_POSIXACL;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00002550 sb->s_xattr = nfs4_xattr_handlers;
David Howells54ceac42006-08-22 20:06:13 -04002551 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002552}
2553
Trond Myklebust01c3f052009-06-17 13:22:58 -07002554static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2555{
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04002556 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3|
2557 NFS_MOUNT_LOCAL_FLOCK|NFS_MOUNT_LOCAL_FCNTL);
Trond Myklebust01c3f052009-06-17 13:22:58 -07002558}
2559
Chuck Lever7630c852009-09-08 19:49:57 -04002560static int nfs4_validate_text_mount_data(void *options,
2561 struct nfs_parsed_mount_data *args,
2562 const char *dev_name)
2563{
2564 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2565
Trond Myklebustf5855fe2009-10-06 15:40:37 -04002566 nfs_set_port(sap, &args->nfs_server.port, NFS_PORT);
Chuck Lever7630c852009-09-08 19:49:57 -04002567
2568 nfs_validate_transport_protocol(args);
2569
2570 nfs4_validate_mount_flags(args);
2571
Trond Myklebust2ecda722009-09-08 19:50:07 -04002572 if (args->version != 4) {
2573 dfprintk(MOUNT,
2574 "NFS4: Illegal mount version\n");
2575 return -EINVAL;
2576 }
2577
Chuck Lever7630c852009-09-08 19:49:57 -04002578 if (args->auth_flavor_len > 1) {
2579 dfprintk(MOUNT,
2580 "NFS4: Too many RPC auth flavours specified\n");
2581 return -EINVAL;
2582 }
2583
2584 if (args->client_address == NULL) {
2585 dfprintk(MOUNT,
2586 "NFS4: mount program didn't pass callback address\n");
2587 return -EINVAL;
2588 }
2589
2590 return nfs_parse_devname(dev_name,
2591 &args->nfs_server.hostname,
2592 NFS4_MAXNAMLEN,
2593 &args->nfs_server.export_path,
2594 NFS4_MAXPATHLEN);
2595}
2596
David Howells54ceac42006-08-22 20:06:13 -04002597/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002598 * Validate NFSv4 mount options
2599 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002600static int nfs4_validate_mount_data(void *options,
2601 struct nfs_parsed_mount_data *args,
2602 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002603{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002604 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002605 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002606 char *c;
2607
2608 if (data == NULL)
2609 goto out_no_data;
2610
2611 switch (data->version) {
2612 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002613 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002614 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002615 if (data->host_addrlen == 0)
2616 goto out_no_address;
2617 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002618 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002619 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002620 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002621 goto out_no_address;
2622
Chuck Lever6738b252008-06-24 16:33:54 -04002623 if (data->auth_flavourlen) {
2624 if (data->auth_flavourlen > 1)
2625 goto out_inval_auth;
Trond Myklebust20c71f52007-09-20 20:23:51 -04002626 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002627 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04002628 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002629 return -EFAULT;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002630 }
2631
2632 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2633 if (IS_ERR(c))
2634 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002635 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002636
2637 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2638 if (IS_ERR(c))
2639 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002640 args->nfs_server.export_path = c;
2641 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002642
2643 c = strndup_user(data->client_addr.data, 16);
2644 if (IS_ERR(c))
2645 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002646 args->client_address = c;
2647
2648 /*
2649 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2650 * can deal with.
2651 */
2652
2653 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2654 args->rsize = data->rsize;
2655 args->wsize = data->wsize;
2656 args->timeo = data->timeo;
2657 args->retrans = data->retrans;
2658 args->acregmin = data->acregmin;
2659 args->acregmax = data->acregmax;
2660 args->acdirmin = data->acdirmin;
2661 args->acdirmax = data->acdirmax;
2662 args->nfs_server.protocol = data->proto;
Trond Myklebust259875e2008-07-02 14:43:47 -04002663 nfs_validate_transport_protocol(args);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002664
2665 break;
Chuck Lever7630c852009-09-08 19:49:57 -04002666 default:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002667 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04002668 return -EINVAL;
2669
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002670 if (!nfs_verify_server_address(sap))
Chuck Lever80071222007-07-01 12:13:59 -04002671 return -EINVAL;
Chuck Levered596a82008-06-26 17:47:05 -04002672
Chuck Lever7630c852009-09-08 19:49:57 -04002673 return nfs4_validate_text_mount_data(options, args, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002674 }
2675
2676 return 0;
2677
2678out_no_data:
2679 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2680 return -EINVAL;
2681
2682out_inval_auth:
2683 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2684 data->auth_flavourlen);
2685 return -EINVAL;
2686
2687out_no_address:
2688 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2689 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002690}
2691
2692/*
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002693 * Get the superblock for the NFS4 root partition
David Howells54ceac42006-08-22 20:06:13 -04002694 */
Al Viro31f43472010-10-29 03:38:12 -04002695static struct dentry *
2696nfs4_remote_mount(struct file_system_type *fs_type, int flags,
2697 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002698{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002699 struct nfs_parsed_mount_data *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002700 struct super_block *s;
2701 struct nfs_server *server;
Trond Myklebust33852a12008-06-19 14:20:11 -04002702 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002703 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002704 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002705 struct nfs_sb_mountdata sb_mntdata = {
2706 .mntflags = flags,
2707 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002708 int error = -ENOMEM;
David Howellsf7b422b2006-06-09 09:34:33 -04002709
Trond Myklebustb157b062010-04-19 19:05:48 -04002710 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002711 if (data == NULL || mntfh == NULL)
2712 goto out_free_fh;
2713
2714 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002715
David Howells54ceac42006-08-22 20:06:13 -04002716 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002717 server = nfs4_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002718 if (IS_ERR(server)) {
2719 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04002720 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002721 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002722 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04002723
Trond Myklebust75180df2007-05-16 16:53:28 -04002724 if (server->flags & NFS4_MOUNT_UNSHARED)
2725 compare_super = NULL;
2726
David Howells54ceac42006-08-22 20:06:13 -04002727 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002728 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002729 if (IS_ERR(s)) {
2730 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04002731 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04002732 }
2733
Trond Myklebust5dd31772006-08-24 01:03:05 -04002734 if (s->s_fs_info != server) {
2735 nfs_free_server(server);
2736 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002737 } else {
2738 error = nfs_bdi_register(server);
2739 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002740 goto error_splat_bdi;
Trond Myklebust5dd31772006-08-24 01:03:05 -04002741 }
2742
David Howells54ceac42006-08-22 20:06:13 -04002743 if (!s->s_root) {
2744 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002745 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04002746 nfs_fscache_get_super_cookie(
2747 s, data ? data->fscache_uniq : NULL, NULL);
Trond Myklebust816724e2006-06-24 08:41:41 -04002748 }
David Howellsf7b422b2006-06-09 09:34:33 -04002749
Al Viro0d5839a2011-03-16 05:27:27 -04002750 mntroot = nfs4_get_root(s, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002751 if (IS_ERR(mntroot)) {
2752 error = PTR_ERR(mntroot);
2753 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002754 }
David Howells54ceac42006-08-22 20:06:13 -04002755
Trond Myklebust33852a12008-06-19 14:20:11 -04002756 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Paris46c8ac72008-05-02 13:42:42 -07002757 if (error)
2758 goto error_splat_root;
2759
David Howellsf7b422b2006-06-09 09:34:33 -04002760 s->s_flags |= MS_ACTIVE;
Al Viro31f43472010-10-29 03:38:12 -04002761
2762 security_free_mnt_opts(&data->lsm_opts);
2763 nfs_free_fhandle(mntfh);
2764 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002765
Chuck Lever29eb9812007-07-01 12:12:30 -04002766out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002767 security_free_mnt_opts(&data->lsm_opts);
2768out_free_fh:
Trond Myklebustb157b062010-04-19 19:05:48 -04002769 nfs_free_fhandle(mntfh);
Al Viro31f43472010-10-29 03:38:12 -04002770 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002771
Chuck Lever29eb9812007-07-01 12:12:30 -04002772out_free:
2773 nfs_free_server(server);
2774 goto out;
2775
Eric Paris46c8ac72008-05-02 13:42:42 -07002776error_splat_root:
2777 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002778error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002779 if (server && !s->s_root)
2780 bdi_unregister(&server->backing_dev_info);
2781error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002782 deactivate_locked_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04002783 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002784}
2785
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002786static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type,
2787 int flags, void *data, const char *hostname)
2788{
2789 struct vfsmount *root_mnt;
2790 char *root_devname;
2791 size_t len;
2792
2793 len = strlen(hostname) + 3;
2794 root_devname = kmalloc(len, GFP_KERNEL);
2795 if (root_devname == NULL)
2796 return ERR_PTR(-ENOMEM);
2797 snprintf(root_devname, len, "%s:/", hostname);
2798 root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data);
2799 kfree(root_devname);
2800 return root_mnt;
2801}
2802
Trond Myklebustce587e02010-04-16 16:22:52 -04002803struct nfs_referral_count {
2804 struct list_head list;
2805 const struct task_struct *task;
2806 unsigned int referral_count;
2807};
2808
2809static LIST_HEAD(nfs_referral_count_list);
2810static DEFINE_SPINLOCK(nfs_referral_count_list_lock);
2811
2812static struct nfs_referral_count *nfs_find_referral_count(void)
2813{
2814 struct nfs_referral_count *p;
2815
2816 list_for_each_entry(p, &nfs_referral_count_list, list) {
2817 if (p->task == current)
2818 return p;
2819 }
2820 return NULL;
2821}
2822
2823#define NFS_MAX_NESTED_REFERRALS 2
2824
2825static int nfs_referral_loop_protect(void)
2826{
2827 struct nfs_referral_count *p, *new;
2828 int ret = -ENOMEM;
2829
2830 new = kmalloc(sizeof(*new), GFP_KERNEL);
2831 if (!new)
2832 goto out;
2833 new->task = current;
2834 new->referral_count = 1;
2835
2836 ret = 0;
2837 spin_lock(&nfs_referral_count_list_lock);
2838 p = nfs_find_referral_count();
2839 if (p != NULL) {
2840 if (p->referral_count >= NFS_MAX_NESTED_REFERRALS)
2841 ret = -ELOOP;
2842 else
2843 p->referral_count++;
2844 } else {
2845 list_add(&new->list, &nfs_referral_count_list);
2846 new = NULL;
2847 }
2848 spin_unlock(&nfs_referral_count_list_lock);
2849 kfree(new);
2850out:
2851 return ret;
2852}
2853
2854static void nfs_referral_loop_unprotect(void)
2855{
2856 struct nfs_referral_count *p;
2857
2858 spin_lock(&nfs_referral_count_list_lock);
2859 p = nfs_find_referral_count();
2860 p->referral_count--;
2861 if (p->referral_count == 0)
2862 list_del(&p->list);
2863 else
2864 p = NULL;
2865 spin_unlock(&nfs_referral_count_list_lock);
2866 kfree(p);
2867}
2868
Al Viro01194982011-03-16 07:25:36 -04002869static struct dentry *nfs_follow_remote_path(struct vfsmount *root_mnt,
2870 const char *export_path)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002871{
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002872 struct nameidata *nd = NULL;
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002873 struct mnt_namespace *ns_private;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002874 struct super_block *s;
Al Viro01194982011-03-16 07:25:36 -04002875 struct dentry *dentry;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002876 int ret;
2877
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002878 nd = kmalloc(sizeof(*nd), GFP_KERNEL);
2879 if (nd == NULL)
Al Viro01194982011-03-16 07:25:36 -04002880 return ERR_PTR(-ENOMEM);
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002881
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002882 ns_private = create_mnt_ns(root_mnt);
2883 ret = PTR_ERR(ns_private);
2884 if (IS_ERR(ns_private))
2885 goto out_mntput;
2886
Trond Myklebustce587e02010-04-16 16:22:52 -04002887 ret = nfs_referral_loop_protect();
2888 if (ret != 0)
2889 goto out_put_mnt_ns;
2890
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002891 ret = vfs_path_lookup(root_mnt->mnt_root, root_mnt,
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002892 export_path, LOOKUP_FOLLOW, nd);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002893
Trond Myklebustce587e02010-04-16 16:22:52 -04002894 nfs_referral_loop_unprotect();
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002895 put_mnt_ns(ns_private);
2896
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002897 if (ret != 0)
2898 goto out_err;
2899
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002900 s = nd->path.mnt->mnt_sb;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002901 atomic_inc(&s->s_active);
Al Viro01194982011-03-16 07:25:36 -04002902 dentry = dget(nd->path.dentry);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002903
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002904 path_put(&nd->path);
2905 kfree(nd);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002906 down_write(&s->s_umount);
Al Viro01194982011-03-16 07:25:36 -04002907 return dentry;
Trond Myklebustce587e02010-04-16 16:22:52 -04002908out_put_mnt_ns:
2909 put_mnt_ns(ns_private);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002910out_mntput:
2911 mntput(root_mnt);
2912out_err:
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002913 kfree(nd);
Al Viro01194982011-03-16 07:25:36 -04002914 return ERR_PTR(ret);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002915}
2916
Al Viro01194982011-03-16 07:25:36 -04002917static struct dentry *nfs4_try_mount(int flags, const char *dev_name,
2918 struct nfs_parsed_mount_data *data)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002919{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002920 char *export_path;
2921 struct vfsmount *root_mnt;
Al Viro01194982011-03-16 07:25:36 -04002922 struct dentry *res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002923
Chuck Levera6fe23b2009-09-08 19:50:00 -04002924 dfprintk(MOUNT, "--> nfs4_try_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002925
2926 export_path = data->nfs_server.export_path;
2927 data->nfs_server.export_path = "/";
2928 root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data,
2929 data->nfs_server.hostname);
2930 data->nfs_server.export_path = export_path;
2931
Al Viro01194982011-03-16 07:25:36 -04002932 res = ERR_CAST(root_mnt);
2933 if (!IS_ERR(root_mnt))
2934 res = nfs_follow_remote_path(root_mnt, export_path);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002935
Al Viro01194982011-03-16 07:25:36 -04002936 dfprintk(MOUNT, "<-- nfs4_try_mount() = %ld%s\n",
2937 IS_ERR(res) ? PTR_ERR(res) : 0,
2938 IS_ERR(res) ? " [error]" : "");
2939 return res;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002940}
2941
2942/*
2943 * Get the superblock for an NFS4 mountpoint
2944 */
Al Viro01194982011-03-16 07:25:36 -04002945static struct dentry *nfs4_mount(struct file_system_type *fs_type,
2946 int flags, const char *dev_name, void *raw_data)
Chuck Levera6fe23b2009-09-08 19:50:00 -04002947{
2948 struct nfs_parsed_mount_data *data;
2949 int error = -ENOMEM;
Al Viro01194982011-03-16 07:25:36 -04002950 struct dentry *res = ERR_PTR(-ENOMEM);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002951
Trond Myklebustc5811db2009-10-06 15:40:15 -04002952 data = nfs_alloc_parsed_mount_data(4);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002953 if (data == NULL)
2954 goto out_free_data;
2955
2956 /* Validate the mount data */
2957 error = nfs4_validate_mount_data(raw_data, data, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002958 if (error < 0) {
2959 res = ERR_PTR(error);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002960 goto out;
Al Viro01194982011-03-16 07:25:36 -04002961 }
Chuck Levera6fe23b2009-09-08 19:50:00 -04002962
Al Viro01194982011-03-16 07:25:36 -04002963 res = nfs4_try_mount(flags, dev_name, data);
2964 if (IS_ERR(res))
2965 error = PTR_ERR(res);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002966
2967out:
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002968 kfree(data->client_address);
2969 kfree(data->nfs_server.export_path);
2970 kfree(data->nfs_server.hostname);
2971 kfree(data->fscache_uniq);
2972out_free_data:
2973 kfree(data);
Al Viro01194982011-03-16 07:25:36 -04002974 dprintk("<-- nfs4_mount() = %d%s\n", error,
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002975 error != 0 ? " [error]" : "");
Al Viro01194982011-03-16 07:25:36 -04002976 return res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002977}
2978
David Howellsf7b422b2006-06-09 09:34:33 -04002979static void nfs4_kill_super(struct super_block *sb)
2980{
2981 struct nfs_server *server = NFS_SB(sb);
2982
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002983 dprintk("--> %s\n", __func__);
Trond Myklebust515d8612008-12-23 15:21:46 -05002984 nfs_super_return_all_delegations(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002985 kill_anon_super(sb);
David Howells08734042009-04-03 16:42:42 +01002986 nfs_fscache_release_super_cookie(sb);
David Howells54ceac42006-08-22 20:06:13 -04002987 nfs_free_server(server);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002988 dprintk("<-- %s\n", __func__);
David Howellsf7b422b2006-06-09 09:34:33 -04002989}
2990
2991/*
David Howells54ceac42006-08-22 20:06:13 -04002992 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04002993 */
Al Viro31f43472010-10-29 03:38:12 -04002994static struct dentry *
2995nfs4_xdev_mount(struct file_system_type *fs_type, int flags,
2996 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002997{
2998 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002999 struct super_block *s;
3000 struct nfs_server *server;
3001 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04003002 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04003003 struct nfs_sb_mountdata sb_mntdata = {
3004 .mntflags = flags,
3005 };
David Howells54ceac42006-08-22 20:06:13 -04003006 int error;
3007
Al Viro31f43472010-10-29 03:38:12 -04003008 dprintk("--> nfs4_xdev_mount()\n");
David Howells54ceac42006-08-22 20:06:13 -04003009
3010 /* create a new volume representation */
3011 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
3012 if (IS_ERR(server)) {
3013 error = PTR_ERR(server);
3014 goto out_err_noserver;
3015 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04003016 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04003017
Trond Myklebust75180df2007-05-16 16:53:28 -04003018 if (server->flags & NFS4_MOUNT_UNSHARED)
3019 compare_super = NULL;
3020
David Howells54ceac42006-08-22 20:06:13 -04003021 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04003022 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04003023 if (IS_ERR(s)) {
3024 error = PTR_ERR(s);
3025 goto out_err_nosb;
3026 }
3027
3028 if (s->s_fs_info != server) {
3029 nfs_free_server(server);
3030 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07003031 } else {
3032 error = nfs_bdi_register(server);
3033 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11003034 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04003035 }
3036
3037 if (!s->s_root) {
3038 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04003039 nfs4_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04003040 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04003041 }
3042
Al Viro0d5839a2011-03-16 05:27:27 -04003043 mntroot = nfs4_get_root(s, data->fh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04003044 if (IS_ERR(mntroot)) {
3045 error = PTR_ERR(mntroot);
3046 goto error_splat_super;
3047 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05003048 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
3049 dput(mntroot);
3050 error = -ESTALE;
3051 goto error_splat_super;
3052 }
David Howells54ceac42006-08-22 20:06:13 -04003053
3054 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04003055
Eric Paris46c8ac72008-05-02 13:42:42 -07003056 security_sb_clone_mnt_opts(data->sb, s);
3057
Al Viro31f43472010-10-29 03:38:12 -04003058 dprintk("<-- nfs4_xdev_mount() = 0\n");
3059 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04003060
3061out_err_nosb:
3062 nfs_free_server(server);
3063out_err_noserver:
Al Viro31f43472010-10-29 03:38:12 -04003064 dprintk("<-- nfs4_xdev_mount() = %d [error]\n", error);
3065 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04003066
3067error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11003068 if (server && !s->s_root)
3069 bdi_unregister(&server->backing_dev_info);
3070error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04003071 deactivate_locked_super(s);
Al Viro31f43472010-10-29 03:38:12 -04003072 dprintk("<-- nfs4_xdev_mount() = %d [splat]\n", error);
3073 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04003074}
3075
Al Viro31f43472010-10-29 03:38:12 -04003076static struct dentry *
3077nfs4_remote_referral_mount(struct file_system_type *fs_type, int flags,
3078 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04003079{
3080 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04003081 struct super_block *s;
3082 struct nfs_server *server;
3083 struct dentry *mntroot;
Trond Myklebust4f727292010-04-16 16:22:48 -04003084 struct nfs_fh *mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04003085 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04003086 struct nfs_sb_mountdata sb_mntdata = {
3087 .mntflags = flags,
3088 };
Trond Myklebust4f727292010-04-16 16:22:48 -04003089 int error = -ENOMEM;
David Howells54ceac42006-08-22 20:06:13 -04003090
3091 dprintk("--> nfs4_referral_get_sb()\n");
3092
Trond Myklebust4f727292010-04-16 16:22:48 -04003093 mntfh = nfs_alloc_fhandle();
3094 if (mntfh == NULL)
3095 goto out_err_nofh;
3096
David Howells54ceac42006-08-22 20:06:13 -04003097 /* create a new volume representation */
Trond Myklebust4f727292010-04-16 16:22:48 -04003098 server = nfs4_create_referral_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003099 if (IS_ERR(server)) {
3100 error = PTR_ERR(server);
3101 goto out_err_noserver;
3102 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04003103 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04003104
Trond Myklebust75180df2007-05-16 16:53:28 -04003105 if (server->flags & NFS4_MOUNT_UNSHARED)
3106 compare_super = NULL;
3107
David Howells54ceac42006-08-22 20:06:13 -04003108 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04003109 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04003110 if (IS_ERR(s)) {
3111 error = PTR_ERR(s);
3112 goto out_err_nosb;
3113 }
3114
3115 if (s->s_fs_info != server) {
3116 nfs_free_server(server);
3117 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07003118 } else {
3119 error = nfs_bdi_register(server);
3120 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11003121 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04003122 }
3123
3124 if (!s->s_root) {
3125 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04003126 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04003127 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04003128 }
3129
Al Viro0d5839a2011-03-16 05:27:27 -04003130 mntroot = nfs4_get_root(s, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04003131 if (IS_ERR(mntroot)) {
3132 error = PTR_ERR(mntroot);
3133 goto error_splat_super;
3134 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05003135 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
3136 dput(mntroot);
3137 error = -ESTALE;
3138 goto error_splat_super;
3139 }
David Howells54ceac42006-08-22 20:06:13 -04003140
3141 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04003142
Eric Paris46c8ac72008-05-02 13:42:42 -07003143 security_sb_clone_mnt_opts(data->sb, s);
3144
Trond Myklebust4f727292010-04-16 16:22:48 -04003145 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003146 dprintk("<-- nfs4_referral_get_sb() = 0\n");
Al Viro31f43472010-10-29 03:38:12 -04003147 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04003148
3149out_err_nosb:
3150 nfs_free_server(server);
3151out_err_noserver:
Trond Myklebust4f727292010-04-16 16:22:48 -04003152 nfs_free_fhandle(mntfh);
3153out_err_nofh:
David Howells54ceac42006-08-22 20:06:13 -04003154 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
Al Viro31f43472010-10-29 03:38:12 -04003155 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04003156
3157error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11003158 if (server && !s->s_root)
3159 bdi_unregister(&server->backing_dev_info);
3160error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04003161 deactivate_locked_super(s);
Trond Myklebust4f727292010-04-16 16:22:48 -04003162 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003163 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
Al Viro31f43472010-10-29 03:38:12 -04003164 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04003165}
3166
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003167/*
3168 * Create an NFS4 server record on referral traversal
3169 */
Al Viro01194982011-03-16 07:25:36 -04003170static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type,
3171 int flags, const char *dev_name, void *raw_data)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003172{
3173 struct nfs_clone_mount *data = raw_data;
3174 char *export_path;
3175 struct vfsmount *root_mnt;
Al Viro01194982011-03-16 07:25:36 -04003176 struct dentry *res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003177
Al Viro01194982011-03-16 07:25:36 -04003178 dprintk("--> nfs4_referral_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003179
3180 export_path = data->mnt_path;
3181 data->mnt_path = "/";
3182
3183 root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type,
3184 flags, data, data->hostname);
3185 data->mnt_path = export_path;
3186
Al Viro01194982011-03-16 07:25:36 -04003187 res = ERR_CAST(root_mnt);
3188 if (!IS_ERR(root_mnt))
3189 res = nfs_follow_remote_path(root_mnt, export_path);
3190 dprintk("<-- nfs4_referral_mount() = %ld%s\n",
3191 IS_ERR(res) ? PTR_ERR(res) : 0,
3192 IS_ERR(res) ? " [error]" : "");
3193 return res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003194}
3195
David Howells54ceac42006-08-22 20:06:13 -04003196#endif /* CONFIG_NFS_V4 */