blob: 3dfa4f112c0ab8be8d5b3f897173a68502406b6c [file] [log] [blame]
David Howellsf7b422b2006-06-09 09:34:33 -04001/*
2 * linux/fs/nfs/super.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 *
6 * nfs superblock handling functions
7 *
Alan Cox526719b2008-10-27 15:19:48 +00008 * Modularised by Alan Cox <alan@lxorguk.ukuu.org.uk>, while hacking some
David Howellsf7b422b2006-06-09 09:34:33 -04009 * experimental NFS changes. Modularisation taken straight from SYS5 fs.
10 *
11 * Change to nfs_read_super() to permit NFS mounts to multi-homed hosts.
12 * J.S.Peatfield@damtp.cam.ac.uk
13 *
14 * Split from inode.c by David Howells <dhowells@redhat.com>
15 *
David Howells54ceac42006-08-22 20:06:13 -040016 * - superblocks are indexed on server only - all inodes, dentries, etc. associated with a
17 * particular server are held in the same superblock
18 * - NFS superblocks can have several effective roots to the dentry tree
19 * - directory type roots are spliced into the tree when a path from one root reaches the root
20 * of another (see nfs_lookup())
David Howellsf7b422b2006-06-09 09:34:33 -040021 */
22
David Howellsf7b422b2006-06-09 09:34:33 -040023#include <linux/module.h>
24#include <linux/init.h>
25
26#include <linux/time.h>
27#include <linux/kernel.h>
28#include <linux/mm.h>
29#include <linux/string.h>
30#include <linux/stat.h>
31#include <linux/errno.h>
32#include <linux/unistd.h>
33#include <linux/sunrpc/clnt.h>
34#include <linux/sunrpc/stats.h>
35#include <linux/sunrpc/metrics.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040036#include <linux/sunrpc/xprtsock.h>
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040037#include <linux/sunrpc/xprtrdma.h>
David Howellsf7b422b2006-06-09 09:34:33 -040038#include <linux/nfs_fs.h>
39#include <linux/nfs_mount.h>
40#include <linux/nfs4_mount.h>
41#include <linux/lockd/bind.h>
David Howellsf7b422b2006-06-09 09:34:33 -040042#include <linux/seq_file.h>
43#include <linux/mount.h>
Trond Myklebustc02d7ad2009-06-22 15:09:14 -040044#include <linux/namei.h>
David Howellsf7b422b2006-06-09 09:34:33 -040045#include <linux/nfs_idmap.h>
46#include <linux/vfs.h>
47#include <linux/inet.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050048#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050050#include <net/ipv6.h>
Chuck Leverd8e77482008-06-23 12:37:01 -040051#include <linux/netdevice.h>
David Howellsf7b422b2006-06-09 09:34:33 -040052#include <linux/nfs_xdr.h>
Adrian Bunkb5d5dfb2007-02-12 00:53:40 -080053#include <linux/magic.h>
Chuck Leverbf0fd762007-07-01 12:13:44 -040054#include <linux/parser.h>
David Howellsf7b422b2006-06-09 09:34:33 -040055
56#include <asm/system.h>
57#include <asm/uaccess.h>
58
59#include "nfs4_fs.h"
60#include "callback.h"
61#include "delegation.h"
62#include "iostat.h"
63#include "internal.h"
David Howells08734042009-04-03 16:42:42 +010064#include "fscache.h"
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +030065#include "pnfs.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 *);
Al Viro34c80b12011-12-08 21:32:45 -0500265static int nfs_show_options(struct seq_file *, struct dentry *);
Al Virod861c632011-12-08 21:32:45 -0500266static int nfs_show_devname(struct seq_file *, struct dentry *);
Al Viroa6322de2011-12-08 21:37:57 -0500267static int nfs_show_path(struct seq_file *, struct dentry *);
Al Viro64132372011-12-08 20:51:13 -0500268static int nfs_show_stats(struct seq_file *, struct dentry *);
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 */
Al Viro34c80b12011-12-08 21:32:45 -0500723static int nfs_show_options(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400724{
Al Viro34c80b12011-12-08 21:32:45 -0500725 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400726
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}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700735
736#ifdef CONFIG_NFS_V4
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300737#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700738static void show_sessions(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300739{
740 if (nfs4_has_session(server->nfs_client))
741 seq_printf(m, ",sessions");
742}
743#else
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700744static void show_sessions(struct seq_file *m, struct nfs_server *server) {}
745#endif
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300746#endif
747
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700748#ifdef CONFIG_NFS_V4
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300749#ifdef CONFIG_NFS_V4_1
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700750static void show_pnfs(struct seq_file *m, struct nfs_server *server)
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300751{
752 seq_printf(m, ",pnfs=");
753 if (server->pnfs_curr_ld)
754 seq_printf(m, "%s", server->pnfs_curr_ld->name);
755 else
756 seq_printf(m, "not configured");
757}
H Hartley Sweeten45402c382011-09-02 14:39:12 -0700758#else
759static void show_pnfs(struct seq_file *m, struct nfs_server *server) {}
760#endif
761#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400762
Al Virod861c632011-12-08 21:32:45 -0500763static int nfs_show_devname(struct seq_file *m, struct dentry *root)
Al Viroc7f404b2011-03-16 06:59:40 -0400764{
765 char *page = (char *) __get_free_page(GFP_KERNEL);
766 char *devname, *dummy;
767 int err = 0;
768 if (!page)
769 return -ENOMEM;
Al Virod861c632011-12-08 21:32:45 -0500770 devname = nfs_path(&dummy, root, page, PAGE_SIZE);
Al Viroc7f404b2011-03-16 06:59:40 -0400771 if (IS_ERR(devname))
772 err = PTR_ERR(devname);
773 else
774 seq_escape(m, devname, " \t\n\\");
775 free_page((unsigned long)page);
776 return err;
777}
778
Al Viroa6322de2011-12-08 21:37:57 -0500779static int nfs_show_path(struct seq_file *m, struct dentry *dentry)
Al Viroc7f404b2011-03-16 06:59:40 -0400780{
781 seq_puts(m, "/");
782 return 0;
783}
784
David Howellsf7b422b2006-06-09 09:34:33 -0400785/*
786 * Present statistical information for this VFS mountpoint
787 */
Al Viro64132372011-12-08 20:51:13 -0500788static int nfs_show_stats(struct seq_file *m, struct dentry *root)
David Howellsf7b422b2006-06-09 09:34:33 -0400789{
790 int i, cpu;
Al Viro64132372011-12-08 20:51:13 -0500791 struct nfs_server *nfss = NFS_SB(root->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400792 struct rpc_auth *auth = nfss->client->cl_auth;
793 struct nfs_iostats totals = { };
794
795 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
796
797 /*
798 * Display all mount option settings
799 */
800 seq_printf(m, "\n\topts:\t");
Al Viro64132372011-12-08 20:51:13 -0500801 seq_puts(m, root->d_sb->s_flags & MS_RDONLY ? "ro" : "rw");
802 seq_puts(m, root->d_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
803 seq_puts(m, root->d_sb->s_flags & MS_NOATIME ? ",noatime" : "");
804 seq_puts(m, root->d_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
David Howellsf7b422b2006-06-09 09:34:33 -0400805 nfs_show_mount_options(m, nfss, 1);
806
807 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
808
809 seq_printf(m, "\n\tcaps:\t");
810 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400811 seq_printf(m, ",wtmult=%u", nfss->wtmult);
812 seq_printf(m, ",dtsize=%u", nfss->dtsize);
813 seq_printf(m, ",bsize=%u", nfss->bsize);
814 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400815
816#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500817 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400818 seq_printf(m, "\n\tnfsv4:\t");
819 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
820 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
821 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
J. Bruce Fieldsae50c0b2011-05-22 19:48:21 +0300822 show_sessions(m, nfss);
823 show_pnfs(m, nfss);
David Howellsf7b422b2006-06-09 09:34:33 -0400824 }
825#endif
826
827 /*
828 * Display security flavor in effect for this mount
829 */
Chuck Lever2d767432008-03-14 14:10:08 -0400830 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400831 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400832 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400833
834 /*
835 * Display superblock I/O counters
836 */
837 for_each_possible_cpu(cpu) {
838 struct nfs_iostats *stats;
839
840 preempt_disable();
841 stats = per_cpu_ptr(nfss->io_stats, cpu);
842
843 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
844 totals.events[i] += stats->events[i];
845 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
846 totals.bytes[i] += stats->bytes[i];
David Howells6a510912009-04-03 16:42:43 +0100847#ifdef CONFIG_NFS_FSCACHE
848 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
849 totals.fscache[i] += stats->fscache[i];
850#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400851
852 preempt_enable();
853 }
854
855 seq_printf(m, "\n\tevents:\t");
856 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
857 seq_printf(m, "%lu ", totals.events[i]);
858 seq_printf(m, "\n\tbytes:\t");
859 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
860 seq_printf(m, "%Lu ", totals.bytes[i]);
David Howells6a510912009-04-03 16:42:43 +0100861#ifdef CONFIG_NFS_FSCACHE
862 if (nfss->options & NFS_OPTION_FSCACHE) {
863 seq_printf(m, "\n\tfsc:\t");
864 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
865 seq_printf(m, "%Lu ", totals.bytes[i]);
866 }
867#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400868 seq_printf(m, "\n");
869
870 rpc_print_iostats(m, nfss->client);
871
872 return 0;
873}
874
875/*
876 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400877 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400878 */
Al Viro42faad92008-04-24 07:21:56 -0400879static void nfs_umount_begin(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -0400880{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200881 struct nfs_server *server;
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400882 struct rpc_clnt *rpc;
883
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200884 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400885 /* -EIO all pending I/O */
886 rpc = server->client_acl;
887 if (!IS_ERR(rpc))
888 rpc_killall_tasks(rpc);
889 rpc = server->client;
890 if (!IS_ERR(rpc))
891 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400892}
893
Trond Myklebustc5811db2009-10-06 15:40:15 -0400894static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int version)
Chuck Lever9423a082009-09-23 14:36:38 -0400895{
896 struct nfs_parsed_mount_data *data;
897
898 data = kzalloc(sizeof(*data), GFP_KERNEL);
899 if (data) {
Chuck Lever9423a082009-09-23 14:36:38 -0400900 data->acregmin = NFS_DEF_ACREGMIN;
901 data->acregmax = NFS_DEF_ACREGMAX;
902 data->acdirmin = NFS_DEF_ACDIRMIN;
903 data->acdirmax = NFS_DEF_ACDIRMAX;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400904 data->mount_server.port = NFS_UNSPEC_PORT;
Chuck Lever9423a082009-09-23 14:36:38 -0400905 data->nfs_server.port = NFS_UNSPEC_PORT;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400906 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Lever9423a082009-09-23 14:36:38 -0400907 data->auth_flavors[0] = RPC_AUTH_UNIX;
908 data->auth_flavor_len = 1;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400909 data->version = version;
Chuck Lever9423a082009-09-23 14:36:38 -0400910 data->minorversion = 0;
Jeff Layton8a0d5512011-12-20 06:57:45 -0500911 security_init_mnt_opts(&data->lsm_opts);
Chuck Lever9423a082009-09-23 14:36:38 -0400912 }
913 return data;
914}
915
Jeff Layton8a0d5512011-12-20 06:57:45 -0500916static void nfs_free_parsed_mount_data(struct nfs_parsed_mount_data *data)
917{
918 if (data) {
919 kfree(data->client_address);
920 kfree(data->mount_server.hostname);
921 kfree(data->nfs_server.export_path);
922 kfree(data->nfs_server.hostname);
923 kfree(data->fscache_uniq);
924 security_free_mnt_opts(&data->lsm_opts);
925 kfree(data);
926 }
927}
928
David Howellsf7b422b2006-06-09 09:34:33 -0400929/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500930 * Sanity-check a server address provided by the mount command.
931 *
932 * Address family must be initialized, and address must not be
933 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400934 */
935static int nfs_verify_server_address(struct sockaddr *addr)
936{
937 switch (addr->sa_family) {
938 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500939 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700940 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500941 }
942 case AF_INET6: {
943 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
944 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400945 }
946 }
947
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400948 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400949 return 0;
950}
951
Chuck Lever9412b922007-12-10 14:59:21 -0500952/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400953 * Select between a default port value and a user-specified port value.
954 * If a zero value is set, then autobind will be used.
955 */
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400956static void nfs_set_port(struct sockaddr *sap, int *port,
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400957 const unsigned short default_port)
958{
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400959 if (*port == NFS_UNSPEC_PORT)
960 *port = default_port;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400961
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400962 rpc_set_port(sap, *port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400963}
964
965/*
Trond Myklebust259875e2008-07-02 14:43:47 -0400966 * Sanity check the NFS transport protocol.
967 *
968 */
969static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
970{
971 switch (mnt->nfs_server.protocol) {
972 case XPRT_TRANSPORT_UDP:
973 case XPRT_TRANSPORT_TCP:
974 case XPRT_TRANSPORT_RDMA:
975 break;
976 default:
977 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
978 }
979}
980
981/*
982 * For text based NFSv2/v3 mounts, the mount protocol transport default
983 * settings should depend upon the specified NFS transport.
984 */
985static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
986{
987 nfs_validate_transport_protocol(mnt);
988
989 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
990 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
991 return;
992 switch (mnt->nfs_server.protocol) {
993 case XPRT_TRANSPORT_UDP:
994 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
995 break;
996 case XPRT_TRANSPORT_TCP:
997 case XPRT_TRANSPORT_RDMA:
998 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
999 }
1000}
1001
1002/*
Chuck Lever01060c82008-06-24 16:33:38 -04001003 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -04001004 */
1005static int nfs_parse_security_flavors(char *value,
1006 struct nfs_parsed_mount_data *mnt)
1007{
1008 substring_t args[MAX_OPT_ARGS];
1009
1010 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
1011
1012 switch (match_token(value, nfs_secflavor_tokens, args)) {
1013 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -04001014 mnt->auth_flavors[0] = RPC_AUTH_NULL;
1015 break;
1016 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -04001017 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
1018 break;
1019 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -04001020 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
1021 break;
1022 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -04001023 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
1024 break;
1025 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -04001026 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
1027 break;
1028 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -04001029 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
1030 break;
1031 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -04001032 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
1033 break;
1034 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -04001035 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
1036 break;
1037 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -04001038 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
1039 break;
1040 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -04001041 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
1042 break;
1043 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -04001044 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
1045 break;
1046 default:
1047 return 0;
1048 }
1049
Bryan Schumaker9b7160c2011-04-13 14:31:30 -04001050 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
Chuck Lever059f90b2009-08-09 15:09:31 -04001051 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -04001052 return 1;
1053}
1054
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001055static int nfs_get_option_str(substring_t args[], char **option)
1056{
1057 kfree(*option);
1058 *option = match_strdup(args);
1059 return !option;
1060}
1061
1062static int nfs_get_option_ul(substring_t args[], unsigned long *option)
1063{
1064 int rc;
1065 char *string;
1066
1067 string = match_strdup(args);
1068 if (string == NULL)
1069 return -ENOMEM;
1070 rc = strict_strtoul(string, 10, option);
1071 kfree(string);
1072
1073 return rc;
1074}
1075
Chuck Lever01060c82008-06-24 16:33:38 -04001076/*
Chuck Leverbf0fd762007-07-01 12:13:44 -04001077 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -04001078 * a data structure. The whole mount string is processed; bad options are
1079 * skipped as they are encountered. If there were no errors, return 1;
1080 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -04001081 */
1082static int nfs_parse_mount_options(char *raw,
1083 struct nfs_parsed_mount_data *mnt)
1084{
Eric Parisf9c3a382008-03-05 14:20:18 -05001085 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001086 int rc, sloppy = 0, invalid_option = 0;
Jeff Laytonee671b02009-12-03 15:58:56 -05001087 unsigned short protofamily = AF_UNSPEC;
1088 unsigned short mountfamily = AF_UNSPEC;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001089
1090 if (!raw) {
1091 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
1092 return 1;
1093 }
1094 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
1095
Eric Parisf9c3a382008-03-05 14:20:18 -05001096 secdata = alloc_secdata();
1097 if (!secdata)
1098 goto out_nomem;
1099
1100 rc = security_sb_copy_data(raw, secdata);
1101 if (rc)
1102 goto out_security_failure;
1103
1104 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
1105 if (rc)
1106 goto out_security_failure;
1107
1108 free_secdata(secdata);
1109
Chuck Leverbf0fd762007-07-01 12:13:44 -04001110 while ((p = strsep(&raw, ",")) != NULL) {
1111 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -07001112 unsigned long option;
1113 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001114
1115 if (!*p)
1116 continue;
1117
1118 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
1119
1120 token = match_token(p, nfs_mount_option_tokens, args);
1121 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001122
1123 /*
1124 * boolean options: foo/nofoo
1125 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001126 case Opt_soft:
1127 mnt->flags |= NFS_MOUNT_SOFT;
1128 break;
1129 case Opt_hard:
1130 mnt->flags &= ~NFS_MOUNT_SOFT;
1131 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001132 case Opt_posix:
1133 mnt->flags |= NFS_MOUNT_POSIX;
1134 break;
1135 case Opt_noposix:
1136 mnt->flags &= ~NFS_MOUNT_POSIX;
1137 break;
1138 case Opt_cto:
1139 mnt->flags &= ~NFS_MOUNT_NOCTO;
1140 break;
1141 case Opt_nocto:
1142 mnt->flags |= NFS_MOUNT_NOCTO;
1143 break;
1144 case Opt_ac:
1145 mnt->flags &= ~NFS_MOUNT_NOAC;
1146 break;
1147 case Opt_noac:
1148 mnt->flags |= NFS_MOUNT_NOAC;
1149 break;
1150 case Opt_lock:
1151 mnt->flags &= ~NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001152 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1153 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001154 break;
1155 case Opt_nolock:
1156 mnt->flags |= NFS_MOUNT_NONLM;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001157 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1158 NFS_MOUNT_LOCAL_FCNTL);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001159 break;
1160 case Opt_v2:
1161 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001162 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001163 break;
1164 case Opt_v3:
1165 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001166 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001167 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001168 case Opt_v4:
1169 mnt->flags &= ~NFS_MOUNT_VER3;
1170 mnt->version = 4;
1171 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001172 case Opt_udp:
1173 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001174 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001175 break;
1176 case Opt_tcp:
1177 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001178 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001179 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001180 case Opt_rdma:
1181 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
1182 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001183 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001184 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001185 case Opt_acl:
1186 mnt->flags &= ~NFS_MOUNT_NOACL;
1187 break;
1188 case Opt_noacl:
1189 mnt->flags |= NFS_MOUNT_NOACL;
1190 break;
1191 case Opt_rdirplus:
1192 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
1193 break;
1194 case Opt_nordirplus:
1195 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
1196 break;
Trond Myklebust75180df2007-05-16 16:53:28 -04001197 case Opt_sharecache:
1198 mnt->flags &= ~NFS_MOUNT_UNSHARED;
1199 break;
1200 case Opt_nosharecache:
1201 mnt->flags |= NFS_MOUNT_UNSHARED;
1202 break;
Chuck Leverd7403512008-12-23 15:21:37 -05001203 case Opt_resvport:
1204 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1205 break;
1206 case Opt_noresvport:
1207 mnt->flags |= NFS_MOUNT_NORESVPORT;
1208 break;
David Howellsb797cac2009-04-03 16:42:48 +01001209 case Opt_fscache:
1210 mnt->options |= NFS_OPTION_FSCACHE;
1211 kfree(mnt->fscache_uniq);
1212 mnt->fscache_uniq = NULL;
1213 break;
1214 case Opt_nofscache:
1215 mnt->options &= ~NFS_OPTION_FSCACHE;
1216 kfree(mnt->fscache_uniq);
1217 mnt->fscache_uniq = NULL;
1218 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001219
Chuck Leverf45663c2008-06-24 19:28:02 -04001220 /*
1221 * options that take numeric values
1222 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001223 case Opt_port:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001224 if (nfs_get_option_ul(args, &option) ||
1225 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001226 goto out_invalid_value;
1227 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001228 break;
1229 case Opt_rsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001230 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001231 goto out_invalid_value;
1232 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001233 break;
1234 case Opt_wsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001235 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001236 goto out_invalid_value;
1237 mnt->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001238 break;
1239 case Opt_bsize:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001240 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001241 goto out_invalid_value;
1242 mnt->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001243 break;
1244 case Opt_timeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001245 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001246 goto out_invalid_value;
1247 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001248 break;
1249 case Opt_retrans:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001250 if (nfs_get_option_ul(args, &option) || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001251 goto out_invalid_value;
1252 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001253 break;
1254 case Opt_acregmin:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001255 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001256 goto out_invalid_value;
1257 mnt->acregmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001258 break;
1259 case Opt_acregmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001260 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001261 goto out_invalid_value;
1262 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001263 break;
1264 case Opt_acdirmin:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001265 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001266 goto out_invalid_value;
1267 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001268 break;
1269 case Opt_acdirmax:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001270 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001271 goto out_invalid_value;
1272 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001273 break;
1274 case Opt_actimeo:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001275 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001276 goto out_invalid_value;
1277 mnt->acregmin = mnt->acregmax =
1278 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001279 break;
1280 case Opt_namelen:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001281 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001282 goto out_invalid_value;
1283 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001284 break;
1285 case Opt_mountport:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001286 if (nfs_get_option_ul(args, &option) ||
1287 option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001288 goto out_invalid_value;
1289 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001290 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001291 case Opt_mountvers:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001292 if (nfs_get_option_ul(args, &option) ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001293 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001294 option > NFS_MNT3_VERSION)
1295 goto out_invalid_value;
1296 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001297 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001298 case Opt_nfsvers:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001299 if (nfs_get_option_ul(args, &option))
Chuck Leverd23c45f2009-06-17 18:02:13 -07001300 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001301 switch (option) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001302 case NFS2_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001303 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001304 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001305 break;
Chuck Leverf45663c2008-06-24 19:28:02 -04001306 case NFS3_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001307 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001308 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001309 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001310 case NFS4_VERSION:
1311 mnt->flags &= ~NFS_MOUNT_VER3;
1312 mnt->version = 4;
1313 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001314 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001315 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001316 }
1317 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001318 case Opt_minorversion:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001319 if (nfs_get_option_ul(args, &option))
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001320 goto out_invalid_value;
1321 if (option > NFS4_MAX_MINOR_VERSION)
1322 goto out_invalid_value;
1323 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001324 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001325
Chuck Leverf45663c2008-06-24 19:28:02 -04001326 /*
1327 * options that take text values
1328 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001329 case Opt_sec:
1330 string = match_strdup(args);
1331 if (string == NULL)
1332 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001333 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001334 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001335 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001336 dfprintk(MOUNT, "NFS: unrecognized "
1337 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001338 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001339 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001340 break;
1341 case Opt_proto:
1342 string = match_strdup(args);
1343 if (string == NULL)
1344 goto out_nomem;
1345 token = match_token(string,
1346 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001347
Jeff Laytonee671b02009-12-03 15:58:56 -05001348 protofamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001349 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001350 case Opt_xprt_udp6:
1351 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001352 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001353 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001354 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001355 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001356 case Opt_xprt_tcp6:
1357 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001358 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001359 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001360 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001361 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001362 case Opt_xprt_rdma:
1363 /* vector side protocols to TCP */
1364 mnt->flags |= NFS_MOUNT_TCP;
1365 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001366 xprt_load_transport(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001367 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001368 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001369 dfprintk(MOUNT, "NFS: unrecognized "
1370 "transport protocol\n");
Yinghai Lu4223a4a2009-10-20 14:13:46 +09001371 kfree(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001372 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001373 }
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001374 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001375 break;
1376 case Opt_mountproto:
1377 string = match_strdup(args);
1378 if (string == NULL)
1379 goto out_nomem;
1380 token = match_token(string,
1381 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001382 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001383
Jeff Laytonee671b02009-12-03 15:58:56 -05001384 mountfamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001385 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001386 case Opt_xprt_udp6:
1387 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001388 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001389 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001390 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001391 case Opt_xprt_tcp6:
1392 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001393 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001394 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001395 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001396 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001397 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001398 dfprintk(MOUNT, "NFS: unrecognized "
1399 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001400 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001401 }
1402 break;
1403 case Opt_addr:
1404 string = match_strdup(args);
1405 if (string == NULL)
1406 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001407 mnt->nfs_server.addrlen =
1408 rpc_pton(string, strlen(string),
1409 (struct sockaddr *)
1410 &mnt->nfs_server.address,
1411 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001412 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001413 if (mnt->nfs_server.addrlen == 0)
1414 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001415 break;
1416 case Opt_clientaddr:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001417 if (nfs_get_option_str(args, &mnt->client_address))
Chuck Leverbf0fd762007-07-01 12:13:44 -04001418 goto out_nomem;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001419 break;
Chuck Lever33832032007-12-10 14:59:13 -05001420 case Opt_mounthost:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001421 if (nfs_get_option_str(args,
1422 &mnt->mount_server.hostname))
Chuck Lever33832032007-12-10 14:59:13 -05001423 goto out_nomem;
Chuck Lever33832032007-12-10 14:59:13 -05001424 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001425 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001426 string = match_strdup(args);
1427 if (string == NULL)
1428 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001429 mnt->mount_server.addrlen =
1430 rpc_pton(string, strlen(string),
1431 (struct sockaddr *)
1432 &mnt->mount_server.address,
1433 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001434 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001435 if (mnt->mount_server.addrlen == 0)
1436 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001437 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001438 case Opt_lookupcache:
1439 string = match_strdup(args);
1440 if (string == NULL)
1441 goto out_nomem;
1442 token = match_token(string,
1443 nfs_lookupcache_tokens, args);
1444 kfree(string);
1445 switch (token) {
1446 case Opt_lookupcache_all:
1447 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1448 break;
1449 case Opt_lookupcache_positive:
1450 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1451 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1452 break;
1453 case Opt_lookupcache_none:
1454 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1455 break;
1456 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001457 dfprintk(MOUNT, "NFS: invalid "
1458 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001459 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001460 };
1461 break;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001462 case Opt_fscache_uniq:
Rob Landleyc5cb09b2011-03-09 16:02:37 -06001463 if (nfs_get_option_str(args, &mnt->fscache_uniq))
Chuck Levera6d5ff62010-05-07 13:33:58 -04001464 goto out_nomem;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001465 mnt->options |= NFS_OPTION_FSCACHE;
1466 break;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001467 case Opt_local_lock:
1468 string = match_strdup(args);
1469 if (string == NULL)
1470 goto out_nomem;
1471 token = match_token(string, nfs_local_lock_tokens,
1472 args);
1473 kfree(string);
1474 switch (token) {
1475 case Opt_local_lock_all:
1476 mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK |
1477 NFS_MOUNT_LOCAL_FCNTL);
1478 break;
1479 case Opt_local_lock_flock:
1480 mnt->flags |= NFS_MOUNT_LOCAL_FLOCK;
1481 break;
1482 case Opt_local_lock_posix:
1483 mnt->flags |= NFS_MOUNT_LOCAL_FCNTL;
1484 break;
1485 case Opt_local_lock_none:
1486 mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK |
1487 NFS_MOUNT_LOCAL_FCNTL);
1488 break;
1489 default:
1490 dfprintk(MOUNT, "NFS: invalid "
1491 "local_lock argument\n");
1492 return 0;
1493 };
1494 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001495
Chuck Leverf45663c2008-06-24 19:28:02 -04001496 /*
1497 * Special options
1498 */
1499 case Opt_sloppy:
1500 sloppy = 1;
1501 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1502 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001503 case Opt_userspace:
1504 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001505 dfprintk(MOUNT, "NFS: ignoring mount option "
1506 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001507 break;
1508
1509 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001510 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001511 dfprintk(MOUNT, "NFS: unrecognized mount option "
1512 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001513 }
1514 }
1515
Chuck Leverd23c45f2009-06-17 18:02:13 -07001516 if (!sloppy && invalid_option)
1517 return 0;
1518
Jeff Laytonee671b02009-12-03 15:58:56 -05001519 /*
1520 * verify that any proto=/mountproto= options match the address
1521 * familiies in the addr=/mountaddr= options.
1522 */
1523 if (protofamily != AF_UNSPEC &&
1524 protofamily != mnt->nfs_server.address.ss_family)
1525 goto out_proto_mismatch;
1526
1527 if (mountfamily != AF_UNSPEC) {
1528 if (mnt->mount_server.addrlen) {
1529 if (mountfamily != mnt->mount_server.address.ss_family)
1530 goto out_mountproto_mismatch;
1531 } else {
1532 if (mountfamily != mnt->nfs_server.address.ss_family)
1533 goto out_mountproto_mismatch;
1534 }
1535 }
1536
Chuck Leverbf0fd762007-07-01 12:13:44 -04001537 return 1;
1538
Jeff Laytonee671b02009-12-03 15:58:56 -05001539out_mountproto_mismatch:
1540 printk(KERN_INFO "NFS: mount server address does not match mountproto= "
1541 "option\n");
1542 return 0;
1543out_proto_mismatch:
1544 printk(KERN_INFO "NFS: server address does not match proto= option\n");
1545 return 0;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001546out_invalid_address:
1547 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1548 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001549out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001550 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001551 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001552out_nomem:
1553 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1554 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001555out_security_failure:
1556 free_secdata(secdata);
1557 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1558 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001559}
1560
1561/*
Chuck Leverec88f282009-08-09 15:09:32 -04001562 * Match the requested auth flavors with the list returned by
1563 * the server. Returns zero and sets the mount's authentication
1564 * flavor on success; returns -EACCES if server does not support
1565 * the requested flavor.
1566 */
1567static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1568 struct nfs_mount_request *request)
1569{
1570 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1571
1572 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001573 * Certain releases of Linux's mountd return an empty
1574 * flavor list. To prevent behavioral regression with
1575 * these servers (ie. rejecting mounts that used to
1576 * succeed), revert to pre-2.6.32 behavior (no checking)
1577 * if the returned flavor list is empty.
1578 */
1579 if (server_authlist_len == 0)
1580 return 0;
1581
1582 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001583 * We avoid sophisticated negotiating here, as there are
1584 * plenty of cases where we can get it wrong, providing
1585 * either too little or too much security.
1586 *
1587 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1588 * flavor listed first. However, some servers list
1589 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1590 * preferred default, in args->auth_flavors[0] if user
1591 * didn't specify sec= mount option.
1592 */
1593 for (i = 0; i < args->auth_flavor_len; i++)
1594 for (j = 0; j < server_authlist_len; j++)
1595 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1596 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1597 request->auth_flavs[j]);
1598 args->auth_flavors[0] = request->auth_flavs[j];
1599 return 0;
1600 }
1601
1602 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1603 nfs_umount(request);
1604 return -EACCES;
1605}
1606
1607/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001608 * Use the remote server's MOUNT service to request the NFS file handle
1609 * corresponding to the provided path.
1610 */
1611static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1612 struct nfs_fh *root_fh)
1613{
Chuck Leverec88f282009-08-09 15:09:32 -04001614 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1615 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001616 struct nfs_mount_request request = {
1617 .sap = (struct sockaddr *)
1618 &args->mount_server.address,
1619 .dirpath = args->nfs_server.export_path,
1620 .protocol = args->mount_server.protocol,
1621 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001622 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001623 .auth_flav_len = &server_authlist_len,
1624 .auth_flavs = server_authlist,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001625 };
Chuck Lever4c568012007-12-10 14:59:28 -05001626 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001627
1628 if (args->mount_server.version == 0) {
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001629 switch (args->version) {
1630 default:
1631 args->mount_server.version = NFS_MNT3_VERSION;
1632 break;
1633 case 2:
1634 args->mount_server.version = NFS_MNT_VERSION;
1635 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001636 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001637 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001638
Chuck Lever33832032007-12-10 14:59:13 -05001639 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001640 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001641 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001642 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001643
Chuck Lever0076d7b2007-07-01 12:13:49 -04001644 /*
1645 * Construct the mount server's address.
1646 */
Chuck Lever4c568012007-12-10 14:59:28 -05001647 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001648 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001649 args->nfs_server.addrlen);
1650 args->mount_server.addrlen = args->nfs_server.addrlen;
1651 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001652 request.salen = args->mount_server.addrlen;
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001653 nfs_set_port(request.sap, &args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001654
1655 /*
1656 * Now ask the mount server to map our export path
1657 * to a file handle.
1658 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001659 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001660 if (status != 0) {
1661 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1662 request.hostname, status);
1663 return status;
1664 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001665
Chuck Leverec88f282009-08-09 15:09:32 -04001666 /*
1667 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1668 */
1669 if (args->mount_server.version != NFS_MNT3_VERSION)
1670 return 0;
1671 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001672}
1673
Rob Landleyc12bace2011-03-09 15:54:13 -06001674/*
1675 * Split "dev_name" into "hostname:export_path".
1676 *
1677 * The leftmost colon demarks the split between the server's hostname
1678 * and the export path. If the hostname starts with a left square
1679 * bracket, then it may contain colons.
1680 *
1681 * Note: caller frees hostname and export path, even on error.
1682 */
1683static int nfs_parse_devname(const char *dev_name,
1684 char **hostname, size_t maxnamlen,
1685 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001686{
1687 size_t len;
Rob Landleyc12bace2011-03-09 15:54:13 -06001688 char *end;
Chuck Leverdc045892008-06-23 12:36:37 -04001689
Rob Landleyc12bace2011-03-09 15:54:13 -06001690 /* Is the host name protected with square brakcets? */
1691 if (*dev_name == '[') {
1692 end = strchr(++dev_name, ']');
1693 if (end == NULL || end[1] != ':')
1694 goto out_bad_devname;
Chuck Leverdc045892008-06-23 12:36:37 -04001695
Rob Landleyc12bace2011-03-09 15:54:13 -06001696 len = end - dev_name;
1697 end++;
1698 } else {
1699 char *comma;
1700
1701 end = strchr(dev_name, ':');
1702 if (end == NULL)
1703 goto out_bad_devname;
1704 len = end - dev_name;
1705
1706 /* kill possible hostname list: not supported */
1707 comma = strchr(dev_name, ',');
1708 if (comma != NULL && comma < end)
1709 *comma = 0;
1710 }
1711
Chuck Leverdc045892008-06-23 12:36:37 -04001712 if (len > maxnamlen)
1713 goto out_hostname;
1714
1715 /* N.B. caller will free nfs_server.hostname in all cases */
1716 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
Rob Landleyc12bace2011-03-09 15:54:13 -06001717 if (*hostname == NULL)
Chuck Leverdc045892008-06-23 12:36:37 -04001718 goto out_nomem;
Rob Landleyc12bace2011-03-09 15:54:13 -06001719 len = strlen(++end);
Chuck Leverdc045892008-06-23 12:36:37 -04001720 if (len > maxpathlen)
1721 goto out_path;
Rob Landleyc12bace2011-03-09 15:54:13 -06001722 *export_path = kstrndup(end, len, GFP_KERNEL);
Chuck Leverdc045892008-06-23 12:36:37 -04001723 if (!*export_path)
1724 goto out_nomem;
1725
1726 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1727 return 0;
1728
1729out_bad_devname:
1730 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1731 return -EINVAL;
1732
1733out_nomem:
1734 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1735 return -ENOMEM;
1736
1737out_hostname:
1738 dfprintk(MOUNT, "NFS: server hostname too long\n");
1739 return -ENAMETOOLONG;
1740
1741out_path:
1742 dfprintk(MOUNT, "NFS: export pathname too long\n");
1743 return -ENAMETOOLONG;
1744}
1745
1746/*
David Howells54ceac42006-08-22 20:06:13 -04001747 * Validate the NFS2/NFS3 mount data
1748 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001749 *
1750 * For option strings, user space handles the following behaviors:
1751 *
1752 * + DNS: mapping server host name to IP address ("addr=" option)
1753 *
1754 * + failure mode: how to behave if a mount request can't be handled
1755 * immediately ("fg/bg" option)
1756 *
1757 * + retry: how often to retry a mount request ("retry=" option)
1758 *
1759 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1760 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001761 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001762static int nfs_validate_mount_data(void *options,
1763 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001764 struct nfs_fh *mntfh,
1765 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001766{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001767 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001768 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001769
Chuck Lever5df36e72007-07-01 12:12:56 -04001770 if (data == NULL)
1771 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001772
David Howellsf7b422b2006-06-09 09:34:33 -04001773 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001774 case 1:
1775 data->namlen = 0;
1776 case 2:
1777 data->bsize = 0;
1778 case 3:
1779 if (data->flags & NFS_MOUNT_VER3)
1780 goto out_no_v3;
1781 data->root.size = NFS2_FHSIZE;
1782 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1783 case 4:
1784 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1785 goto out_no_sec;
1786 case 5:
1787 memset(data->context, 0, sizeof(data->context));
1788 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001789 if (data->flags & NFS_MOUNT_VER3) {
1790 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1791 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001792 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001793 args->version = 3;
1794 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001795 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001796 args->version = 2;
1797 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001798
Chuck Lever5df36e72007-07-01 12:12:56 -04001799
1800 memcpy(mntfh->data, data->root.data, mntfh->size);
1801 if (mntfh->size < sizeof(mntfh->data))
1802 memset(mntfh->data + mntfh->size, 0,
1803 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001804
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001805 /*
1806 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1807 * can deal with.
1808 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001809 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -04001810 args->flags |= NFS_MOUNT_LEGACY_INTERFACE;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001811 args->rsize = data->rsize;
1812 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001813 args->timeo = data->timeo;
1814 args->retrans = data->retrans;
1815 args->acregmin = data->acregmin;
1816 args->acregmax = data->acregmax;
1817 args->acdirmin = data->acdirmin;
1818 args->acdirmax = data->acdirmax;
Chuck Lever4c568012007-12-10 14:59:28 -05001819
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001820 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001821 args->nfs_server.addrlen = sizeof(data->addr);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001822 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001823 goto out_no_address;
1824
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001825 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001826 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001827 /* N.B. caller will free nfs_server.hostname in all cases */
1828 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1829 args->namlen = data->namlen;
1830 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001831
1832 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1833 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001834 if (!args->nfs_server.hostname)
1835 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001836
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04001837 if (!(data->flags & NFS_MOUNT_NONLM))
1838 args->flags &= ~(NFS_MOUNT_LOCAL_FLOCK|
1839 NFS_MOUNT_LOCAL_FCNTL);
1840 else
1841 args->flags |= (NFS_MOUNT_LOCAL_FLOCK|
1842 NFS_MOUNT_LOCAL_FCNTL);
Eric Parisf9c3a382008-03-05 14:20:18 -05001843 /*
1844 * The legacy version 6 binary mount data from userspace has a
1845 * field used only to transport selinux information into the
1846 * the kernel. To continue to support that functionality we
1847 * have a touch of selinux knowledge here in the NFS code. The
1848 * userspace code converted context=blah to just blah so we are
1849 * converting back to the full string selinux understands.
1850 */
1851 if (data->context[0]){
1852#ifdef CONFIG_SECURITY_SELINUX
1853 int rc;
1854 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1855 if (!opts_str)
1856 return -ENOMEM;
1857 strcpy(opts_str, "context=");
1858 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1859 strcat(opts_str, &data->context[0]);
1860 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1861 kfree(opts_str);
1862 if (rc)
1863 return rc;
1864#else
1865 return -EINVAL;
1866#endif
1867 }
1868
Chuck Lever5df36e72007-07-01 12:12:56 -04001869 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001870 default: {
Chuck Lever136d5582007-07-01 12:13:54 -04001871 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001872
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001873 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001874 return -EINVAL;
1875
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001876 if (!nfs_verify_server_address(sap))
Chuck Lever6e88e062007-09-24 15:39:50 -04001877 goto out_no_address;
1878
Chuck Lever764302c2009-09-08 19:50:03 -04001879 if (args->version == 4)
1880#ifdef CONFIG_NFS_V4
1881 return nfs4_validate_text_mount_data(options,
1882 args, dev_name);
1883#else
1884 goto out_v4_not_compiled;
1885#endif
1886
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001887 nfs_set_port(sap, &args->nfs_server.port, 0);
Chuck Levered596a82008-06-26 17:47:05 -04001888
Trond Myklebust259875e2008-07-02 14:43:47 -04001889 nfs_set_mount_transport_protocol(args);
1890
Chuck Leverdc045892008-06-23 12:36:37 -04001891 status = nfs_parse_devname(dev_name,
1892 &args->nfs_server.hostname,
1893 PAGE_SIZE,
1894 &args->nfs_server.export_path,
1895 NFS_MAXPATHLEN);
1896 if (!status)
1897 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001898
Chuck Leverdc045892008-06-23 12:36:37 -04001899 kfree(args->nfs_server.export_path);
1900 args->nfs_server.export_path = NULL;
Chuck Lever136d5582007-07-01 12:13:54 -04001901
Chuck Lever136d5582007-07-01 12:13:54 -04001902 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001903 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001904
Chuck Lever136d5582007-07-01 12:13:54 -04001905 break;
1906 }
David Howellsf7b422b2006-06-09 09:34:33 -04001907 }
David Howells54ceac42006-08-22 20:06:13 -04001908
David Howellsf7b422b2006-06-09 09:34:33 -04001909#ifndef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001910 if (args->version == 3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001911 goto out_v3_not_compiled;
1912#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001913
David Howells54ceac42006-08-22 20:06:13 -04001914 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001915
1916out_no_data:
1917 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1918 return -EINVAL;
1919
1920out_no_v3:
1921 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1922 data->version);
1923 return -EINVAL;
1924
1925out_no_sec:
1926 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1927 return -EINVAL;
1928
Chuck Lever5df36e72007-07-01 12:12:56 -04001929#ifndef CONFIG_NFS_V3
1930out_v3_not_compiled:
1931 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1932 return -EPROTONOSUPPORT;
1933#endif /* !CONFIG_NFS_V3 */
1934
Chuck Lever764302c2009-09-08 19:50:03 -04001935#ifndef CONFIG_NFS_V4
1936out_v4_not_compiled:
1937 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
1938 return -EPROTONOSUPPORT;
1939#endif /* !CONFIG_NFS_V4 */
1940
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001941out_nomem:
1942 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
1943 return -ENOMEM;
1944
Chuck Lever5df36e72007-07-01 12:12:56 -04001945out_no_address:
1946 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1947 return -EINVAL;
1948
1949out_invalid_fh:
1950 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1951 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001952}
1953
Jeff Layton48b605f2008-06-10 15:38:39 -04001954static int
1955nfs_compare_remount_data(struct nfs_server *nfss,
1956 struct nfs_parsed_mount_data *data)
1957{
1958 if (data->flags != nfss->flags ||
1959 data->rsize != nfss->rsize ||
1960 data->wsize != nfss->wsize ||
1961 data->retrans != nfss->client->cl_timeout->to_retries ||
1962 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
1963 data->acregmin != nfss->acregmin / HZ ||
1964 data->acregmax != nfss->acregmax / HZ ||
1965 data->acdirmin != nfss->acdirmin / HZ ||
1966 data->acdirmax != nfss->acdirmax / HZ ||
1967 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04001968 data->nfs_server.port != nfss->port ||
Jeff Layton48b605f2008-06-10 15:38:39 -04001969 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
Stefan Richtera1be9ee2009-10-12 11:26:12 -04001970 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
1971 (struct sockaddr *)&nfss->nfs_client->cl_addr))
Jeff Layton48b605f2008-06-10 15:38:39 -04001972 return -EINVAL;
1973
1974 return 0;
1975}
1976
1977static int
1978nfs_remount(struct super_block *sb, int *flags, char *raw_data)
1979{
1980 int error;
1981 struct nfs_server *nfss = sb->s_fs_info;
1982 struct nfs_parsed_mount_data *data;
1983 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
1984 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04001985 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04001986
1987 /*
1988 * Userspace mount programs that send binary options generally send
1989 * them populated with default values. We have no way to know which
1990 * ones were explicitly specified. Fall back to legacy behavior and
1991 * just return success.
1992 */
Marc Zyngier31c94462008-07-17 13:21:55 +02001993 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
1994 (nfsvers <= 3 && (!options || (options->version >= 1 &&
1995 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04001996 return 0;
1997
1998 data = kzalloc(sizeof(*data), GFP_KERNEL);
1999 if (data == NULL)
2000 return -ENOMEM;
2001
2002 /* fill out struct with values from existing mount */
2003 data->flags = nfss->flags;
2004 data->rsize = nfss->rsize;
2005 data->wsize = nfss->wsize;
2006 data->retrans = nfss->client->cl_timeout->to_retries;
2007 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
2008 data->acregmin = nfss->acregmin / HZ;
2009 data->acregmax = nfss->acregmax / HZ;
2010 data->acdirmin = nfss->acdirmin / HZ;
2011 data->acdirmax = nfss->acdirmax / HZ;
2012 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04002013 data->nfs_server.port = nfss->port;
Jeff Layton48b605f2008-06-10 15:38:39 -04002014 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
2015 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
2016 data->nfs_server.addrlen);
2017
2018 /* overwrite those values with any that were specified */
2019 error = nfs_parse_mount_options((char *)options, data);
2020 if (error < 0)
2021 goto out;
2022
Jeff Layton26c4c172011-04-27 11:49:09 -04002023 /*
2024 * noac is a special case. It implies -o sync, but that's not
2025 * necessarily reflected in the mtab options. do_remount_sb
2026 * will clear MS_SYNCHRONOUS if -o sync wasn't specified in the
2027 * remount options, so we have to explicitly reset it.
2028 */
2029 if (data->flags & NFS_MOUNT_NOAC)
2030 *flags |= MS_SYNCHRONOUS;
2031
Jeff Layton48b605f2008-06-10 15:38:39 -04002032 /* compare new mount options with old ones */
2033 error = nfs_compare_remount_data(nfss, data);
2034out:
2035 kfree(data);
2036 return error;
2037}
2038
David Howells54ceac42006-08-22 20:06:13 -04002039/*
2040 * Initialise the common bits of the superblock
2041 */
2042static inline void nfs_initialise_sb(struct super_block *sb)
2043{
2044 struct nfs_server *server = NFS_SB(sb);
2045
2046 sb->s_magic = NFS_SUPER_MAGIC;
2047
2048 /* We probably want something more informative here */
2049 snprintf(sb->s_id, sizeof(sb->s_id),
2050 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
2051
2052 if (sb->s_blocksize == 0)
2053 sb->s_blocksize = nfs_block_bits(server->wsize,
2054 &sb->s_blocksize_bits);
2055
Jens Axboe32a88aa2009-09-16 15:02:33 +02002056 sb->s_bdi = &server->backing_dev_info;
2057
David Howells54ceac42006-08-22 20:06:13 -04002058 nfs_super_set_maxbytes(sb, server->maxfilesize);
2059}
2060
2061/*
2062 * Finish setting up an NFS2/3 superblock
2063 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04002064static void nfs_fill_super(struct super_block *sb,
2065 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04002066{
2067 struct nfs_server *server = NFS_SB(sb);
2068
2069 sb->s_blocksize_bits = 0;
2070 sb->s_blocksize = 0;
2071 if (data->bsize)
2072 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
2073
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002074 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002075 /* The VFS shouldn't apply the umask to mode bits. We will do
2076 * so ourselves when necessary.
2077 */
2078 sb->s_flags |= MS_POSIXACL;
2079 sb->s_time_gran = 1;
2080 }
2081
2082 sb->s_op = &nfs_sops;
2083 nfs_initialise_sb(sb);
2084}
2085
2086/*
2087 * Finish setting up a cloned NFS2/3 superblock
2088 */
2089static void nfs_clone_super(struct super_block *sb,
2090 const struct super_block *old_sb)
2091{
2092 struct nfs_server *server = NFS_SB(sb);
2093
2094 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2095 sb->s_blocksize = old_sb->s_blocksize;
2096 sb->s_maxbytes = old_sb->s_maxbytes;
2097
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002098 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002099 /* The VFS shouldn't apply the umask to mode bits. We will do
2100 * so ourselves when necessary.
2101 */
2102 sb->s_flags |= MS_POSIXACL;
2103 sb->s_time_gran = 1;
2104 }
2105
2106 sb->s_op = old_sb->s_op;
2107 nfs_initialise_sb(sb);
2108}
2109
Trond Myklebust275a5d22007-05-16 16:53:28 -04002110static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
2111{
2112 const struct nfs_server *a = s->s_fs_info;
2113 const struct rpc_clnt *clnt_a = a->client;
2114 const struct rpc_clnt *clnt_b = b->client;
2115
2116 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
2117 goto Ebusy;
2118 if (a->nfs_client != b->nfs_client)
2119 goto Ebusy;
2120 if (a->flags != b->flags)
2121 goto Ebusy;
2122 if (a->wsize != b->wsize)
2123 goto Ebusy;
2124 if (a->rsize != b->rsize)
2125 goto Ebusy;
2126 if (a->acregmin != b->acregmin)
2127 goto Ebusy;
2128 if (a->acregmax != b->acregmax)
2129 goto Ebusy;
2130 if (a->acdirmin != b->acdirmin)
2131 goto Ebusy;
2132 if (a->acdirmax != b->acdirmax)
2133 goto Ebusy;
2134 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2135 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002136 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002137Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002138 return 0;
2139}
2140
2141struct nfs_sb_mountdata {
2142 struct nfs_server *server;
2143 int mntflags;
2144};
2145
2146static int nfs_set_super(struct super_block *s, void *data)
2147{
2148 struct nfs_sb_mountdata *sb_mntdata = data;
2149 struct nfs_server *server = sb_mntdata->server;
2150 int ret;
2151
2152 s->s_flags = sb_mntdata->mntflags;
2153 s->s_fs_info = server;
Al Viro8b244ff2010-12-18 11:29:39 -05002154 s->s_d_op = server->nfs_client->rpc_ops->dentry_ops;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002155 ret = set_anon_super(s, server);
2156 if (ret == 0)
2157 server->s_dev = s->s_dev;
2158 return ret;
2159}
2160
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002161static int nfs_compare_super_address(struct nfs_server *server1,
2162 struct nfs_server *server2)
2163{
2164 struct sockaddr *sap1, *sap2;
2165
2166 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2167 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2168
2169 if (sap1->sa_family != sap2->sa_family)
2170 return 0;
2171
2172 switch (sap1->sa_family) {
2173 case AF_INET: {
2174 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2175 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2176 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2177 return 0;
2178 if (sin1->sin_port != sin2->sin_port)
2179 return 0;
2180 break;
2181 }
2182 case AF_INET6: {
2183 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2184 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2185 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2186 return 0;
2187 if (sin1->sin6_port != sin2->sin6_port)
2188 return 0;
2189 break;
2190 }
2191 default:
2192 return 0;
2193 }
2194
2195 return 1;
2196}
2197
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002198static int nfs_compare_super(struct super_block *sb, void *data)
2199{
2200 struct nfs_sb_mountdata *sb_mntdata = data;
2201 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2202 int mntflags = sb_mntdata->mntflags;
2203
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002204 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002205 return 0;
2206 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2207 if (old->flags & NFS_MOUNT_UNSHARED)
2208 return 0;
2209 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2210 return 0;
2211 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002212}
2213
Miklos Szeredifa799752008-04-30 00:54:33 -07002214static int nfs_bdi_register(struct nfs_server *server)
2215{
2216 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2217}
2218
Al Viro01194982011-03-16 07:25:36 -04002219static struct dentry *nfs_fs_mount(struct file_system_type *fs_type,
2220 int flags, const char *dev_name, void *raw_data)
David Howells54ceac42006-08-22 20:06:13 -04002221{
2222 struct nfs_server *server = NULL;
2223 struct super_block *s;
Trond Myklebust33852a12008-06-19 14:20:11 -04002224 struct nfs_parsed_mount_data *data;
2225 struct nfs_fh *mntfh;
Al Viro01194982011-03-16 07:25:36 -04002226 struct dentry *mntroot = ERR_PTR(-ENOMEM);
Trond Myklebust75180df2007-05-16 16:53:28 -04002227 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002228 struct nfs_sb_mountdata sb_mntdata = {
2229 .mntflags = flags,
2230 };
Al Viro01194982011-03-16 07:25:36 -04002231 int error;
David Howells54ceac42006-08-22 20:06:13 -04002232
Paulius Zaleckas1e657bd2010-10-31 18:21:05 +02002233 data = nfs_alloc_parsed_mount_data(NFS_DEFAULT_VERSION);
Trond Myklebustb157b062010-04-19 19:05:48 -04002234 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002235 if (data == NULL || mntfh == NULL)
Jeff Layton8a0d5512011-12-20 06:57:45 -05002236 goto out;
Eric Parisf9c3a382008-03-05 14:20:18 -05002237
David Howells54ceac42006-08-22 20:06:13 -04002238 /* Validate the mount data */
Trond Myklebust33852a12008-06-19 14:20:11 -04002239 error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002240 if (error < 0) {
2241 mntroot = ERR_PTR(error);
Chuck Lever06559602007-07-01 12:12:35 -04002242 goto out;
Al Viro01194982011-03-16 07:25:36 -04002243 }
David Howells54ceac42006-08-22 20:06:13 -04002244
Chuck Lever764302c2009-09-08 19:50:03 -04002245#ifdef CONFIG_NFS_V4
2246 if (data->version == 4) {
Al Viro01194982011-03-16 07:25:36 -04002247 mntroot = nfs4_try_mount(flags, dev_name, data);
Chuck Lever764302c2009-09-08 19:50:03 -04002248 goto out;
2249 }
2250#endif /* CONFIG_NFS_V4 */
2251
David Howells54ceac42006-08-22 20:06:13 -04002252 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002253 server = nfs_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002254 if (IS_ERR(server)) {
Al Viro01194982011-03-16 07:25:36 -04002255 mntroot = ERR_CAST(server);
Chuck Lever06559602007-07-01 12:12:35 -04002256 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002257 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002258 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002259
Trond Myklebust75180df2007-05-16 16:53:28 -04002260 if (server->flags & NFS_MOUNT_UNSHARED)
2261 compare_super = NULL;
2262
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002263 /* -o noac implies -o sync */
2264 if (server->flags & NFS_MOUNT_NOAC)
2265 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2266
David Howells54ceac42006-08-22 20:06:13 -04002267 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002268 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002269 if (IS_ERR(s)) {
Al Viro01194982011-03-16 07:25:36 -04002270 mntroot = ERR_CAST(s);
David Howells54ceac42006-08-22 20:06:13 -04002271 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002272 }
2273
David Howells54ceac42006-08-22 20:06:13 -04002274 if (s->s_fs_info != server) {
2275 nfs_free_server(server);
2276 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002277 } else {
2278 error = nfs_bdi_register(server);
Al Viro01194982011-03-16 07:25:36 -04002279 if (error) {
2280 mntroot = ERR_PTR(error);
NeilBrowncfbc0682010-03-11 11:20:17 +11002281 goto error_splat_bdi;
Al Viro01194982011-03-16 07:25:36 -04002282 }
David Howellsf7b422b2006-06-09 09:34:33 -04002283 }
David Howells54ceac42006-08-22 20:06:13 -04002284
2285 if (!s->s_root) {
2286 /* initial superblock/root creation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002287 nfs_fill_super(s, data);
Jesper Juhl160bc162011-04-10 17:57:07 +02002288 nfs_fscache_get_super_cookie(s, data->fscache_uniq, NULL);
David Howells54ceac42006-08-22 20:06:13 -04002289 }
2290
Al Viro0d5839a2011-03-16 05:27:27 -04002291 mntroot = nfs_get_root(s, mntfh, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002292 if (IS_ERR(mntroot))
David Howells54ceac42006-08-22 20:06:13 -04002293 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002294
Trond Myklebust33852a12008-06-19 14:20:11 -04002295 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002296 if (error)
2297 goto error_splat_root;
2298
David Howellsf7b422b2006-06-09 09:34:33 -04002299 s->s_flags |= MS_ACTIVE;
Chuck Lever06559602007-07-01 12:12:35 -04002300
2301out:
Jeff Layton8a0d5512011-12-20 06:57:45 -05002302 nfs_free_parsed_mount_data(data);
Trond Myklebustb157b062010-04-19 19:05:48 -04002303 nfs_free_fhandle(mntfh);
Al Viro01194982011-03-16 07:25:36 -04002304 return mntroot;
Trond Myklebust816724e2006-06-24 08:41:41 -04002305
David Howells54ceac42006-08-22 20:06:13 -04002306out_err_nosb:
2307 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002308 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002309
Eric Parisf9c3a382008-03-05 14:20:18 -05002310error_splat_root:
2311 dput(mntroot);
Al Viro01194982011-03-16 07:25:36 -04002312 mntroot = ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002313error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002314 if (server && !s->s_root)
2315 bdi_unregister(&server->backing_dev_info);
2316error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002317 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002318 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002319}
2320
David Howells54ceac42006-08-22 20:06:13 -04002321/*
Trond Myklebust387c1492010-02-03 08:27:35 -05002322 * Ensure that we unregister the bdi before kill_anon_super
2323 * releases the device name
2324 */
2325static void nfs_put_super(struct super_block *s)
2326{
2327 struct nfs_server *server = NFS_SB(s);
2328
2329 bdi_unregister(&server->backing_dev_info);
2330}
2331
2332/*
David Howells54ceac42006-08-22 20:06:13 -04002333 * Destroy an NFS2/3 superblock
2334 */
David Howellsf7b422b2006-06-09 09:34:33 -04002335static void nfs_kill_super(struct super_block *s)
2336{
2337 struct nfs_server *server = NFS_SB(s);
2338
2339 kill_anon_super(s);
David Howells08734042009-04-03 16:42:42 +01002340 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002341 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002342}
2343
David Howells54ceac42006-08-22 20:06:13 -04002344/*
2345 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2346 */
Al Viro31f43472010-10-29 03:38:12 -04002347static struct dentry *
2348nfs_xdev_mount(struct file_system_type *fs_type, int flags,
2349 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002350{
2351 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002352 struct super_block *s;
2353 struct nfs_server *server;
2354 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002355 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002356 struct nfs_sb_mountdata sb_mntdata = {
2357 .mntflags = flags,
2358 };
David Howells54ceac42006-08-22 20:06:13 -04002359 int error;
2360
Al Viro31f43472010-10-29 03:38:12 -04002361 dprintk("--> nfs_xdev_mount()\n");
David Howells54ceac42006-08-22 20:06:13 -04002362
2363 /* create a new volume representation */
2364 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2365 if (IS_ERR(server)) {
2366 error = PTR_ERR(server);
2367 goto out_err_noserver;
2368 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002369 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002370
Trond Myklebust75180df2007-05-16 16:53:28 -04002371 if (server->flags & NFS_MOUNT_UNSHARED)
2372 compare_super = NULL;
2373
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002374 /* -o noac implies -o sync */
2375 if (server->flags & NFS_MOUNT_NOAC)
2376 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2377
David Howells54ceac42006-08-22 20:06:13 -04002378 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002379 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002380 if (IS_ERR(s)) {
2381 error = PTR_ERR(s);
2382 goto out_err_nosb;
2383 }
2384
2385 if (s->s_fs_info != server) {
2386 nfs_free_server(server);
2387 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002388 } else {
2389 error = nfs_bdi_register(server);
2390 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002391 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04002392 }
2393
2394 if (!s->s_root) {
2395 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002396 nfs_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002397 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002398 }
2399
Al Viro0d5839a2011-03-16 05:27:27 -04002400 mntroot = nfs_get_root(s, data->fh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002401 if (IS_ERR(mntroot)) {
2402 error = PTR_ERR(mntroot);
2403 goto error_splat_super;
2404 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002405 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11002406 dput(mntroot);
2407 error = -ESTALE;
2408 goto error_splat_super;
2409 }
David Howells54ceac42006-08-22 20:06:13 -04002410
2411 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002412
Eric Parisf9c3a382008-03-05 14:20:18 -05002413 /* clone any lsm security options from the parent to the new sb */
2414 security_sb_clone_mnt_opts(data->sb, s);
2415
Al Viro31f43472010-10-29 03:38:12 -04002416 dprintk("<-- nfs_xdev_mount() = 0\n");
2417 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002418
2419out_err_nosb:
2420 nfs_free_server(server);
2421out_err_noserver:
Al Viro31f43472010-10-29 03:38:12 -04002422 dprintk("<-- nfs_xdev_mount() = %d [error]\n", error);
2423 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002424
2425error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002426 if (server && !s->s_root)
2427 bdi_unregister(&server->backing_dev_info);
2428error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002429 deactivate_locked_super(s);
Al Viro31f43472010-10-29 03:38:12 -04002430 dprintk("<-- nfs_xdev_mount() = %d [splat]\n", error);
2431 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04002432}
2433
2434#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04002435
2436/*
2437 * Finish setting up a cloned NFS4 superblock
2438 */
2439static void nfs4_clone_super(struct super_block *sb,
2440 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002441{
David Howells54ceac42006-08-22 20:06:13 -04002442 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2443 sb->s_blocksize = old_sb->s_blocksize;
2444 sb->s_maxbytes = old_sb->s_maxbytes;
2445 sb->s_time_gran = 1;
2446 sb->s_op = old_sb->s_op;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002447 /*
2448 * The VFS shouldn't apply the umask to mode bits. We will do
2449 * so ourselves when necessary.
2450 */
2451 sb->s_flags |= MS_POSIXACL;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00002452 sb->s_xattr = old_sb->s_xattr;
2453 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002454}
2455
2456/*
2457 * Set up an NFS4 superblock
2458 */
David Howells54ceac42006-08-22 20:06:13 -04002459static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002460{
David Howellsf7b422b2006-06-09 09:34:33 -04002461 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04002462 sb->s_op = &nfs4_sops;
Aneesh Kumar K.Va8a5da92010-12-09 11:35:14 +00002463 /*
2464 * The VFS shouldn't apply the umask to mode bits. We will do
2465 * so ourselves when necessary.
2466 */
2467 sb->s_flags |= MS_POSIXACL;
Aneesh Kumar K.V64c2ce82010-12-09 11:35:25 +00002468 sb->s_xattr = nfs4_xattr_handlers;
David Howells54ceac42006-08-22 20:06:13 -04002469 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002470}
2471
Trond Myklebust01c3f052009-06-17 13:22:58 -07002472static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2473{
Suresh Jayaraman5eebde22010-09-23 08:55:58 -04002474 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3|
2475 NFS_MOUNT_LOCAL_FLOCK|NFS_MOUNT_LOCAL_FCNTL);
Trond Myklebust01c3f052009-06-17 13:22:58 -07002476}
2477
Chuck Lever7630c852009-09-08 19:49:57 -04002478static int nfs4_validate_text_mount_data(void *options,
2479 struct nfs_parsed_mount_data *args,
2480 const char *dev_name)
2481{
2482 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2483
Trond Myklebustf5855fe2009-10-06 15:40:37 -04002484 nfs_set_port(sap, &args->nfs_server.port, NFS_PORT);
Chuck Lever7630c852009-09-08 19:49:57 -04002485
2486 nfs_validate_transport_protocol(args);
2487
2488 nfs4_validate_mount_flags(args);
2489
Trond Myklebust2ecda722009-09-08 19:50:07 -04002490 if (args->version != 4) {
2491 dfprintk(MOUNT,
2492 "NFS4: Illegal mount version\n");
2493 return -EINVAL;
2494 }
2495
Chuck Lever7630c852009-09-08 19:49:57 -04002496 if (args->auth_flavor_len > 1) {
2497 dfprintk(MOUNT,
2498 "NFS4: Too many RPC auth flavours specified\n");
2499 return -EINVAL;
2500 }
2501
2502 if (args->client_address == NULL) {
2503 dfprintk(MOUNT,
2504 "NFS4: mount program didn't pass callback address\n");
2505 return -EINVAL;
2506 }
2507
2508 return nfs_parse_devname(dev_name,
2509 &args->nfs_server.hostname,
2510 NFS4_MAXNAMLEN,
2511 &args->nfs_server.export_path,
2512 NFS4_MAXPATHLEN);
2513}
2514
David Howells54ceac42006-08-22 20:06:13 -04002515/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002516 * Validate NFSv4 mount options
2517 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002518static int nfs4_validate_mount_data(void *options,
2519 struct nfs_parsed_mount_data *args,
2520 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002521{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002522 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002523 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002524 char *c;
2525
2526 if (data == NULL)
2527 goto out_no_data;
2528
2529 switch (data->version) {
2530 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002531 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002532 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002533 if (data->host_addrlen == 0)
2534 goto out_no_address;
2535 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002536 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002537 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002538 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002539 goto out_no_address;
2540
Chuck Lever6738b252008-06-24 16:33:54 -04002541 if (data->auth_flavourlen) {
2542 if (data->auth_flavourlen > 1)
2543 goto out_inval_auth;
Trond Myklebust20c71f52007-09-20 20:23:51 -04002544 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002545 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04002546 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002547 return -EFAULT;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002548 }
2549
2550 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2551 if (IS_ERR(c))
2552 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002553 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002554
2555 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2556 if (IS_ERR(c))
2557 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002558 args->nfs_server.export_path = c;
2559 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002560
2561 c = strndup_user(data->client_addr.data, 16);
2562 if (IS_ERR(c))
2563 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002564 args->client_address = c;
2565
2566 /*
2567 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2568 * can deal with.
2569 */
2570
2571 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2572 args->rsize = data->rsize;
2573 args->wsize = data->wsize;
2574 args->timeo = data->timeo;
2575 args->retrans = data->retrans;
2576 args->acregmin = data->acregmin;
2577 args->acregmax = data->acregmax;
2578 args->acdirmin = data->acdirmin;
2579 args->acdirmax = data->acdirmax;
2580 args->nfs_server.protocol = data->proto;
Trond Myklebust259875e2008-07-02 14:43:47 -04002581 nfs_validate_transport_protocol(args);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002582
2583 break;
Chuck Lever7630c852009-09-08 19:49:57 -04002584 default:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002585 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04002586 return -EINVAL;
2587
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002588 if (!nfs_verify_server_address(sap))
Chuck Lever80071222007-07-01 12:13:59 -04002589 return -EINVAL;
Chuck Levered596a82008-06-26 17:47:05 -04002590
Chuck Lever7630c852009-09-08 19:49:57 -04002591 return nfs4_validate_text_mount_data(options, args, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002592 }
2593
2594 return 0;
2595
2596out_no_data:
2597 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2598 return -EINVAL;
2599
2600out_inval_auth:
2601 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2602 data->auth_flavourlen);
2603 return -EINVAL;
2604
2605out_no_address:
2606 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2607 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002608}
2609
2610/*
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002611 * Get the superblock for the NFS4 root partition
David Howells54ceac42006-08-22 20:06:13 -04002612 */
Al Viro31f43472010-10-29 03:38:12 -04002613static struct dentry *
2614nfs4_remote_mount(struct file_system_type *fs_type, int flags,
2615 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002616{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002617 struct nfs_parsed_mount_data *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002618 struct super_block *s;
2619 struct nfs_server *server;
Trond Myklebust33852a12008-06-19 14:20:11 -04002620 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002621 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002622 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002623 struct nfs_sb_mountdata sb_mntdata = {
2624 .mntflags = flags,
2625 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002626 int error = -ENOMEM;
David Howellsf7b422b2006-06-09 09:34:33 -04002627
Trond Myklebustb157b062010-04-19 19:05:48 -04002628 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002629 if (data == NULL || mntfh == NULL)
Jeff Layton8a0d5512011-12-20 06:57:45 -05002630 goto out;
Eric Parisf9c3a382008-03-05 14:20:18 -05002631
David Howells54ceac42006-08-22 20:06:13 -04002632 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002633 server = nfs4_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002634 if (IS_ERR(server)) {
2635 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04002636 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002637 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002638 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04002639
Trond Myklebust75180df2007-05-16 16:53:28 -04002640 if (server->flags & NFS4_MOUNT_UNSHARED)
2641 compare_super = NULL;
2642
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002643 /* -o noac implies -o sync */
2644 if (server->flags & NFS_MOUNT_NOAC)
2645 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2646
David Howells54ceac42006-08-22 20:06:13 -04002647 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002648 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002649 if (IS_ERR(s)) {
2650 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04002651 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04002652 }
2653
Trond Myklebust5dd31772006-08-24 01:03:05 -04002654 if (s->s_fs_info != server) {
2655 nfs_free_server(server);
2656 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002657 } else {
2658 error = nfs_bdi_register(server);
2659 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002660 goto error_splat_bdi;
Trond Myklebust5dd31772006-08-24 01:03:05 -04002661 }
2662
David Howells54ceac42006-08-22 20:06:13 -04002663 if (!s->s_root) {
2664 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002665 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04002666 nfs_fscache_get_super_cookie(
2667 s, data ? data->fscache_uniq : NULL, NULL);
Trond Myklebust816724e2006-06-24 08:41:41 -04002668 }
David Howellsf7b422b2006-06-09 09:34:33 -04002669
Al Viro0d5839a2011-03-16 05:27:27 -04002670 mntroot = nfs4_get_root(s, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002671 if (IS_ERR(mntroot)) {
2672 error = PTR_ERR(mntroot);
2673 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002674 }
David Howells54ceac42006-08-22 20:06:13 -04002675
Trond Myklebust33852a12008-06-19 14:20:11 -04002676 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Paris46c8ac72008-05-02 13:42:42 -07002677 if (error)
2678 goto error_splat_root;
2679
David Howellsf7b422b2006-06-09 09:34:33 -04002680 s->s_flags |= MS_ACTIVE;
Al Viro31f43472010-10-29 03:38:12 -04002681
Al Viro31f43472010-10-29 03:38:12 -04002682 nfs_free_fhandle(mntfh);
2683 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002684
Chuck Lever29eb9812007-07-01 12:12:30 -04002685out:
Trond Myklebustb157b062010-04-19 19:05:48 -04002686 nfs_free_fhandle(mntfh);
Al Viro31f43472010-10-29 03:38:12 -04002687 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002688
Chuck Lever29eb9812007-07-01 12:12:30 -04002689out_free:
2690 nfs_free_server(server);
2691 goto out;
2692
Eric Paris46c8ac72008-05-02 13:42:42 -07002693error_splat_root:
2694 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002695error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002696 if (server && !s->s_root)
2697 bdi_unregister(&server->backing_dev_info);
2698error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002699 deactivate_locked_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04002700 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002701}
2702
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002703static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type,
2704 int flags, void *data, const char *hostname)
2705{
2706 struct vfsmount *root_mnt;
2707 char *root_devname;
2708 size_t len;
2709
2710 len = strlen(hostname) + 3;
2711 root_devname = kmalloc(len, GFP_KERNEL);
2712 if (root_devname == NULL)
2713 return ERR_PTR(-ENOMEM);
2714 snprintf(root_devname, len, "%s:/", hostname);
2715 root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data);
2716 kfree(root_devname);
2717 return root_mnt;
2718}
2719
Trond Myklebustce587e02010-04-16 16:22:52 -04002720struct nfs_referral_count {
2721 struct list_head list;
2722 const struct task_struct *task;
2723 unsigned int referral_count;
2724};
2725
2726static LIST_HEAD(nfs_referral_count_list);
2727static DEFINE_SPINLOCK(nfs_referral_count_list_lock);
2728
2729static struct nfs_referral_count *nfs_find_referral_count(void)
2730{
2731 struct nfs_referral_count *p;
2732
2733 list_for_each_entry(p, &nfs_referral_count_list, list) {
2734 if (p->task == current)
2735 return p;
2736 }
2737 return NULL;
2738}
2739
2740#define NFS_MAX_NESTED_REFERRALS 2
2741
2742static int nfs_referral_loop_protect(void)
2743{
2744 struct nfs_referral_count *p, *new;
2745 int ret = -ENOMEM;
2746
2747 new = kmalloc(sizeof(*new), GFP_KERNEL);
2748 if (!new)
2749 goto out;
2750 new->task = current;
2751 new->referral_count = 1;
2752
2753 ret = 0;
2754 spin_lock(&nfs_referral_count_list_lock);
2755 p = nfs_find_referral_count();
2756 if (p != NULL) {
2757 if (p->referral_count >= NFS_MAX_NESTED_REFERRALS)
2758 ret = -ELOOP;
2759 else
2760 p->referral_count++;
2761 } else {
2762 list_add(&new->list, &nfs_referral_count_list);
2763 new = NULL;
2764 }
2765 spin_unlock(&nfs_referral_count_list_lock);
2766 kfree(new);
2767out:
2768 return ret;
2769}
2770
2771static void nfs_referral_loop_unprotect(void)
2772{
2773 struct nfs_referral_count *p;
2774
2775 spin_lock(&nfs_referral_count_list_lock);
2776 p = nfs_find_referral_count();
2777 p->referral_count--;
2778 if (p->referral_count == 0)
2779 list_del(&p->list);
2780 else
2781 p = NULL;
2782 spin_unlock(&nfs_referral_count_list_lock);
2783 kfree(p);
2784}
2785
Al Viro01194982011-03-16 07:25:36 -04002786static struct dentry *nfs_follow_remote_path(struct vfsmount *root_mnt,
2787 const char *export_path)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002788{
Al Viro01194982011-03-16 07:25:36 -04002789 struct dentry *dentry;
Al Viro5352d3b2011-11-16 21:52:06 -05002790 int err;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002791
Al Viro5352d3b2011-11-16 21:52:06 -05002792 if (IS_ERR(root_mnt))
2793 return ERR_CAST(root_mnt);
2794
2795 err = nfs_referral_loop_protect();
2796 if (err) {
Al Viroea441d12011-11-16 21:43:59 -05002797 mntput(root_mnt);
Al Viro5352d3b2011-11-16 21:52:06 -05002798 return ERR_PTR(err);
Al Viroc1334492011-11-16 16:12:14 -05002799 }
Trond Myklebustce587e02010-04-16 16:22:52 -04002800
Al Viroea441d12011-11-16 21:43:59 -05002801 dentry = mount_subtree(root_mnt, export_path);
2802 nfs_referral_loop_unprotect();
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002803
Al Viro01194982011-03-16 07:25:36 -04002804 return dentry;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002805}
2806
Al Viro01194982011-03-16 07:25:36 -04002807static struct dentry *nfs4_try_mount(int flags, const char *dev_name,
2808 struct nfs_parsed_mount_data *data)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002809{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002810 char *export_path;
2811 struct vfsmount *root_mnt;
Al Viro01194982011-03-16 07:25:36 -04002812 struct dentry *res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002813
Chuck Levera6fe23b2009-09-08 19:50:00 -04002814 dfprintk(MOUNT, "--> nfs4_try_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002815
2816 export_path = data->nfs_server.export_path;
2817 data->nfs_server.export_path = "/";
2818 root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data,
2819 data->nfs_server.hostname);
2820 data->nfs_server.export_path = export_path;
2821
Al Viro5352d3b2011-11-16 21:52:06 -05002822 res = nfs_follow_remote_path(root_mnt, export_path);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002823
Al Viro01194982011-03-16 07:25:36 -04002824 dfprintk(MOUNT, "<-- nfs4_try_mount() = %ld%s\n",
2825 IS_ERR(res) ? PTR_ERR(res) : 0,
2826 IS_ERR(res) ? " [error]" : "");
2827 return res;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002828}
2829
2830/*
2831 * Get the superblock for an NFS4 mountpoint
2832 */
Al Viro01194982011-03-16 07:25:36 -04002833static struct dentry *nfs4_mount(struct file_system_type *fs_type,
2834 int flags, const char *dev_name, void *raw_data)
Chuck Levera6fe23b2009-09-08 19:50:00 -04002835{
2836 struct nfs_parsed_mount_data *data;
2837 int error = -ENOMEM;
Al Viro01194982011-03-16 07:25:36 -04002838 struct dentry *res = ERR_PTR(-ENOMEM);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002839
Trond Myklebustc5811db2009-10-06 15:40:15 -04002840 data = nfs_alloc_parsed_mount_data(4);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002841 if (data == NULL)
Jeff Layton8a0d5512011-12-20 06:57:45 -05002842 goto out;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002843
2844 /* Validate the mount data */
2845 error = nfs4_validate_mount_data(raw_data, data, dev_name);
Al Viro01194982011-03-16 07:25:36 -04002846 if (error < 0) {
2847 res = ERR_PTR(error);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002848 goto out;
Al Viro01194982011-03-16 07:25:36 -04002849 }
Chuck Levera6fe23b2009-09-08 19:50:00 -04002850
Al Viro01194982011-03-16 07:25:36 -04002851 res = nfs4_try_mount(flags, dev_name, data);
2852 if (IS_ERR(res))
2853 error = PTR_ERR(res);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002854
2855out:
Jeff Layton8a0d5512011-12-20 06:57:45 -05002856 nfs_free_parsed_mount_data(data);
Al Viro01194982011-03-16 07:25:36 -04002857 dprintk("<-- nfs4_mount() = %d%s\n", error,
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002858 error != 0 ? " [error]" : "");
Al Viro01194982011-03-16 07:25:36 -04002859 return res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002860}
2861
David Howellsf7b422b2006-06-09 09:34:33 -04002862static void nfs4_kill_super(struct super_block *sb)
2863{
2864 struct nfs_server *server = NFS_SB(sb);
2865
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002866 dprintk("--> %s\n", __func__);
Trond Myklebust515d8612008-12-23 15:21:46 -05002867 nfs_super_return_all_delegations(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002868 kill_anon_super(sb);
David Howells08734042009-04-03 16:42:42 +01002869 nfs_fscache_release_super_cookie(sb);
David Howells54ceac42006-08-22 20:06:13 -04002870 nfs_free_server(server);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002871 dprintk("<-- %s\n", __func__);
David Howellsf7b422b2006-06-09 09:34:33 -04002872}
2873
2874/*
David Howells54ceac42006-08-22 20:06:13 -04002875 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04002876 */
Al Viro31f43472010-10-29 03:38:12 -04002877static struct dentry *
2878nfs4_xdev_mount(struct file_system_type *fs_type, int flags,
2879 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002880{
2881 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002882 struct super_block *s;
2883 struct nfs_server *server;
2884 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002885 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002886 struct nfs_sb_mountdata sb_mntdata = {
2887 .mntflags = flags,
2888 };
David Howells54ceac42006-08-22 20:06:13 -04002889 int error;
2890
Al Viro31f43472010-10-29 03:38:12 -04002891 dprintk("--> nfs4_xdev_mount()\n");
David Howells54ceac42006-08-22 20:06:13 -04002892
2893 /* create a new volume representation */
2894 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2895 if (IS_ERR(server)) {
2896 error = PTR_ERR(server);
2897 goto out_err_noserver;
2898 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002899 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002900
Trond Myklebust75180df2007-05-16 16:53:28 -04002901 if (server->flags & NFS4_MOUNT_UNSHARED)
2902 compare_super = NULL;
2903
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002904 /* -o noac implies -o sync */
2905 if (server->flags & NFS_MOUNT_NOAC)
2906 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2907
David Howells54ceac42006-08-22 20:06:13 -04002908 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04002909 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002910 if (IS_ERR(s)) {
2911 error = PTR_ERR(s);
2912 goto out_err_nosb;
2913 }
2914
2915 if (s->s_fs_info != server) {
2916 nfs_free_server(server);
2917 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002918 } else {
2919 error = nfs_bdi_register(server);
2920 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002921 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04002922 }
2923
2924 if (!s->s_root) {
2925 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002926 nfs4_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002927 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002928 }
2929
Al Viro0d5839a2011-03-16 05:27:27 -04002930 mntroot = nfs4_get_root(s, data->fh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002931 if (IS_ERR(mntroot)) {
2932 error = PTR_ERR(mntroot);
2933 goto error_splat_super;
2934 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002935 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2936 dput(mntroot);
2937 error = -ESTALE;
2938 goto error_splat_super;
2939 }
David Howells54ceac42006-08-22 20:06:13 -04002940
2941 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002942
Eric Paris46c8ac72008-05-02 13:42:42 -07002943 security_sb_clone_mnt_opts(data->sb, s);
2944
Al Viro31f43472010-10-29 03:38:12 -04002945 dprintk("<-- nfs4_xdev_mount() = 0\n");
2946 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04002947
2948out_err_nosb:
2949 nfs_free_server(server);
2950out_err_noserver:
Al Viro31f43472010-10-29 03:38:12 -04002951 dprintk("<-- nfs4_xdev_mount() = %d [error]\n", error);
2952 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04002953
2954error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002955 if (server && !s->s_root)
2956 bdi_unregister(&server->backing_dev_info);
2957error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002958 deactivate_locked_super(s);
Al Viro31f43472010-10-29 03:38:12 -04002959 dprintk("<-- nfs4_xdev_mount() = %d [splat]\n", error);
2960 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04002961}
2962
Al Viro31f43472010-10-29 03:38:12 -04002963static struct dentry *
2964nfs4_remote_referral_mount(struct file_system_type *fs_type, int flags,
2965 const char *dev_name, void *raw_data)
David Howellsf7b422b2006-06-09 09:34:33 -04002966{
2967 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002968 struct super_block *s;
2969 struct nfs_server *server;
2970 struct dentry *mntroot;
Trond Myklebust4f727292010-04-16 16:22:48 -04002971 struct nfs_fh *mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04002972 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002973 struct nfs_sb_mountdata sb_mntdata = {
2974 .mntflags = flags,
2975 };
Trond Myklebust4f727292010-04-16 16:22:48 -04002976 int error = -ENOMEM;
David Howells54ceac42006-08-22 20:06:13 -04002977
2978 dprintk("--> nfs4_referral_get_sb()\n");
2979
Trond Myklebust4f727292010-04-16 16:22:48 -04002980 mntfh = nfs_alloc_fhandle();
2981 if (mntfh == NULL)
2982 goto out_err_nofh;
2983
David Howells54ceac42006-08-22 20:06:13 -04002984 /* create a new volume representation */
Trond Myklebust4f727292010-04-16 16:22:48 -04002985 server = nfs4_create_referral_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002986 if (IS_ERR(server)) {
2987 error = PTR_ERR(server);
2988 goto out_err_noserver;
2989 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002990 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002991
Trond Myklebust75180df2007-05-16 16:53:28 -04002992 if (server->flags & NFS4_MOUNT_UNSHARED)
2993 compare_super = NULL;
2994
Sachin Prabhufb2088c2011-08-01 12:10:12 +01002995 /* -o noac implies -o sync */
2996 if (server->flags & NFS_MOUNT_NOAC)
2997 sb_mntdata.mntflags |= MS_SYNCHRONOUS;
2998
David Howells54ceac42006-08-22 20:06:13 -04002999 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04003000 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04003001 if (IS_ERR(s)) {
3002 error = PTR_ERR(s);
3003 goto out_err_nosb;
3004 }
3005
3006 if (s->s_fs_info != server) {
3007 nfs_free_server(server);
3008 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07003009 } else {
3010 error = nfs_bdi_register(server);
3011 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11003012 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04003013 }
3014
3015 if (!s->s_root) {
3016 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04003017 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04003018 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04003019 }
3020
Al Viro0d5839a2011-03-16 05:27:27 -04003021 mntroot = nfs4_get_root(s, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04003022 if (IS_ERR(mntroot)) {
3023 error = PTR_ERR(mntroot);
3024 goto error_splat_super;
3025 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05003026 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
3027 dput(mntroot);
3028 error = -ESTALE;
3029 goto error_splat_super;
3030 }
David Howells54ceac42006-08-22 20:06:13 -04003031
3032 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04003033
Eric Paris46c8ac72008-05-02 13:42:42 -07003034 security_sb_clone_mnt_opts(data->sb, s);
3035
Trond Myklebust4f727292010-04-16 16:22:48 -04003036 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003037 dprintk("<-- nfs4_referral_get_sb() = 0\n");
Al Viro31f43472010-10-29 03:38:12 -04003038 return mntroot;
David Howells54ceac42006-08-22 20:06:13 -04003039
3040out_err_nosb:
3041 nfs_free_server(server);
3042out_err_noserver:
Trond Myklebust4f727292010-04-16 16:22:48 -04003043 nfs_free_fhandle(mntfh);
3044out_err_nofh:
David Howells54ceac42006-08-22 20:06:13 -04003045 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
Al Viro31f43472010-10-29 03:38:12 -04003046 return ERR_PTR(error);
David Howells54ceac42006-08-22 20:06:13 -04003047
3048error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11003049 if (server && !s->s_root)
3050 bdi_unregister(&server->backing_dev_info);
3051error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04003052 deactivate_locked_super(s);
Trond Myklebust4f727292010-04-16 16:22:48 -04003053 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003054 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
Al Viro31f43472010-10-29 03:38:12 -04003055 return ERR_PTR(error);
David Howellsf7b422b2006-06-09 09:34:33 -04003056}
3057
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003058/*
3059 * Create an NFS4 server record on referral traversal
3060 */
Al Viro01194982011-03-16 07:25:36 -04003061static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type,
3062 int flags, const char *dev_name, void *raw_data)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003063{
3064 struct nfs_clone_mount *data = raw_data;
3065 char *export_path;
3066 struct vfsmount *root_mnt;
Al Viro01194982011-03-16 07:25:36 -04003067 struct dentry *res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003068
Al Viro01194982011-03-16 07:25:36 -04003069 dprintk("--> nfs4_referral_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003070
3071 export_path = data->mnt_path;
3072 data->mnt_path = "/";
3073
3074 root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type,
3075 flags, data, data->hostname);
3076 data->mnt_path = export_path;
3077
Al Viro5352d3b2011-11-16 21:52:06 -05003078 res = nfs_follow_remote_path(root_mnt, export_path);
Al Viro01194982011-03-16 07:25:36 -04003079 dprintk("<-- nfs4_referral_mount() = %ld%s\n",
3080 IS_ERR(res) ? PTR_ERR(res) : 0,
3081 IS_ERR(res) ? " [error]" : "");
3082 return res;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003083}
3084
David Howells54ceac42006-08-22 20:06:13 -04003085#endif /* CONFIG_NFS_V4 */