blob: f1ae39f6cb023a187edc8bba9b87707457734e07 [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>
42#include <linux/smp_lock.h>
43#include <linux/seq_file.h>
44#include <linux/mount.h>
Trond Myklebustc02d7ad2009-06-22 15:09:14 -040045#include <linux/mnt_namespace.h>
46#include <linux/namei.h>
David Howellsf7b422b2006-06-09 09:34:33 -040047#include <linux/nfs_idmap.h>
48#include <linux/vfs.h>
49#include <linux/inet.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050050#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090051#include <linux/slab.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050052#include <net/ipv6.h>
Chuck Leverd8e77482008-06-23 12:37:01 -040053#include <linux/netdevice.h>
David Howellsf7b422b2006-06-09 09:34:33 -040054#include <linux/nfs_xdr.h>
Adrian Bunkb5d5dfb2007-02-12 00:53:40 -080055#include <linux/magic.h>
Chuck Leverbf0fd762007-07-01 12:13:44 -040056#include <linux/parser.h>
David Howellsf7b422b2006-06-09 09:34:33 -040057
58#include <asm/system.h>
59#include <asm/uaccess.h>
60
61#include "nfs4_fs.h"
62#include "callback.h"
63#include "delegation.h"
64#include "iostat.h"
65#include "internal.h"
David Howells08734042009-04-03 16:42:42 +010066#include "fscache.h"
David Howellsf7b422b2006-06-09 09:34:33 -040067
68#define NFSDBG_FACILITY NFSDBG_VFS
69
Chuck Leverbf0fd762007-07-01 12:13:44 -040070enum {
71 /* Mount options that take no arguments */
72 Opt_soft, Opt_hard,
Chuck Leverbf0fd762007-07-01 12:13:44 -040073 Opt_posix, Opt_noposix,
74 Opt_cto, Opt_nocto,
75 Opt_ac, Opt_noac,
76 Opt_lock, Opt_nolock,
Chuck Lever764302c2009-09-08 19:50:03 -040077 Opt_v2, Opt_v3, Opt_v4,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040078 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040079 Opt_acl, Opt_noacl,
80 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040081 Opt_sharecache, Opt_nosharecache,
Chuck Leverd7403512008-12-23 15:21:37 -050082 Opt_resvport, Opt_noresvport,
David Howellsb797cac2009-04-03 16:42:48 +010083 Opt_fscache, Opt_nofscache,
Chuck Leverbf0fd762007-07-01 12:13:44 -040084
85 /* Mount options that take integer arguments */
86 Opt_port,
87 Opt_rsize, Opt_wsize, Opt_bsize,
88 Opt_timeo, Opt_retrans,
89 Opt_acregmin, Opt_acregmax,
90 Opt_acdirmin, Opt_acdirmax,
91 Opt_actimeo,
92 Opt_namelen,
93 Opt_mountport,
Chuck Levere887cbc2007-10-26 13:32:29 -040094 Opt_mountvers,
Chuck Leverad879ce2007-10-26 13:32:24 -040095 Opt_nfsvers,
Mike Sager3fd5be92009-04-01 09:21:48 -040096 Opt_minorversion,
Chuck Leverbf0fd762007-07-01 12:13:44 -040097
98 /* Mount options that take string arguments */
Chuck Lever33832032007-12-10 14:59:13 -050099 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
Chuck Lever0ac83772007-09-11 18:01:04 -0400100 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400101 Opt_lookupcache,
David Howellsb797cac2009-04-03 16:42:48 +0100102 Opt_fscache_uniq,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400103
Chuck Leverf45663c2008-06-24 19:28:02 -0400104 /* Special mount options */
105 Opt_userspace, Opt_deprecated, Opt_sloppy,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400106
107 Opt_err
108};
109
Steven Whitehousea447c092008-10-13 10:46:57 +0100110static const match_table_t nfs_mount_option_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400111 { Opt_userspace, "bg" },
112 { Opt_userspace, "fg" },
Chuck Leverecbb3842008-06-12 12:37:33 -0400113 { Opt_userspace, "retry=%s" },
114
Chuck Leverf45663c2008-06-24 19:28:02 -0400115 { Opt_sloppy, "sloppy" },
116
Chuck Leverbf0fd762007-07-01 12:13:44 -0400117 { Opt_soft, "soft" },
118 { Opt_hard, "hard" },
Chuck Leverd33e4df2008-06-12 12:37:41 -0400119 { Opt_deprecated, "intr" },
120 { Opt_deprecated, "nointr" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400121 { Opt_posix, "posix" },
122 { Opt_noposix, "noposix" },
123 { Opt_cto, "cto" },
124 { Opt_nocto, "nocto" },
125 { Opt_ac, "ac" },
126 { Opt_noac, "noac" },
127 { Opt_lock, "lock" },
128 { Opt_nolock, "nolock" },
129 { Opt_v2, "v2" },
130 { Opt_v3, "v3" },
Chuck Lever764302c2009-09-08 19:50:03 -0400131 { Opt_v4, "v4" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400132 { Opt_udp, "udp" },
133 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400134 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400135 { Opt_acl, "acl" },
136 { Opt_noacl, "noacl" },
137 { Opt_rdirplus, "rdirplus" },
138 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400139 { Opt_sharecache, "sharecache" },
140 { Opt_nosharecache, "nosharecache" },
Chuck Leverd7403512008-12-23 15:21:37 -0500141 { Opt_resvport, "resvport" },
142 { Opt_noresvport, "noresvport" },
David Howellsb797cac2009-04-03 16:42:48 +0100143 { Opt_fscache, "fsc" },
David Howellsb797cac2009-04-03 16:42:48 +0100144 { Opt_nofscache, "nofsc" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400145
Chuck Levera5a16ba2009-06-17 18:02:14 -0700146 { Opt_port, "port=%s" },
147 { Opt_rsize, "rsize=%s" },
148 { Opt_wsize, "wsize=%s" },
149 { Opt_bsize, "bsize=%s" },
150 { Opt_timeo, "timeo=%s" },
151 { Opt_retrans, "retrans=%s" },
152 { Opt_acregmin, "acregmin=%s" },
153 { Opt_acregmax, "acregmax=%s" },
154 { Opt_acdirmin, "acdirmin=%s" },
155 { Opt_acdirmax, "acdirmax=%s" },
156 { Opt_actimeo, "actimeo=%s" },
157 { Opt_namelen, "namlen=%s" },
158 { Opt_mountport, "mountport=%s" },
159 { Opt_mountvers, "mountvers=%s" },
160 { Opt_nfsvers, "nfsvers=%s" },
161 { Opt_nfsvers, "vers=%s" },
Chuck Leverf3f4f4e2009-08-09 15:09:29 -0400162 { Opt_minorversion, "minorversion=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400163
164 { Opt_sec, "sec=%s" },
165 { Opt_proto, "proto=%s" },
166 { Opt_mountproto, "mountproto=%s" },
167 { Opt_addr, "addr=%s" },
168 { Opt_clientaddr, "clientaddr=%s" },
Chuck Lever33832032007-12-10 14:59:13 -0500169 { Opt_mounthost, "mounthost=%s" },
Chuck Lever0ac83772007-09-11 18:01:04 -0400170 { Opt_mountaddr, "mountaddr=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400171
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400172 { Opt_lookupcache, "lookupcache=%s" },
Chuck Levera6d5ff62010-05-07 13:33:58 -0400173 { Opt_fscache_uniq, "fsc=%s" },
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400174
Chuck Leverbf0fd762007-07-01 12:13:44 -0400175 { Opt_err, NULL }
176};
177
178enum {
Jeff Laytonee671b02009-12-03 15:58:56 -0500179 Opt_xprt_udp, Opt_xprt_udp6, Opt_xprt_tcp, Opt_xprt_tcp6, Opt_xprt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400180
181 Opt_xprt_err
182};
183
Steven Whitehousea447c092008-10-13 10:46:57 +0100184static const match_table_t nfs_xprt_protocol_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400185 { Opt_xprt_udp, "udp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500186 { Opt_xprt_udp6, "udp6" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400187 { Opt_xprt_tcp, "tcp" },
Jeff Laytonee671b02009-12-03 15:58:56 -0500188 { Opt_xprt_tcp6, "tcp6" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400189 { Opt_xprt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400190
191 { Opt_xprt_err, NULL }
192};
193
194enum {
195 Opt_sec_none, Opt_sec_sys,
196 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
197 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
198 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
199
200 Opt_sec_err
201};
202
Steven Whitehousea447c092008-10-13 10:46:57 +0100203static const match_table_t nfs_secflavor_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400204 { Opt_sec_none, "none" },
205 { Opt_sec_none, "null" },
206 { Opt_sec_sys, "sys" },
207
208 { Opt_sec_krb5, "krb5" },
209 { Opt_sec_krb5i, "krb5i" },
210 { Opt_sec_krb5p, "krb5p" },
211
212 { Opt_sec_lkey, "lkey" },
213 { Opt_sec_lkeyi, "lkeyi" },
214 { Opt_sec_lkeyp, "lkeyp" },
215
Olga Kornievskaia8d042212008-02-13 16:47:06 -0500216 { Opt_sec_spkm, "spkm3" },
217 { Opt_sec_spkmi, "spkm3i" },
218 { Opt_sec_spkmp, "spkm3p" },
219
Chuck Leverbf0fd762007-07-01 12:13:44 -0400220 { Opt_sec_err, NULL }
221};
222
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400223enum {
224 Opt_lookupcache_all, Opt_lookupcache_positive,
225 Opt_lookupcache_none,
226
227 Opt_lookupcache_err
228};
229
230static match_table_t nfs_lookupcache_tokens = {
231 { Opt_lookupcache_all, "all" },
232 { Opt_lookupcache_positive, "pos" },
233 { Opt_lookupcache_positive, "positive" },
234 { Opt_lookupcache_none, "none" },
235
236 { Opt_lookupcache_err, NULL }
237};
238
Chuck Leverbf0fd762007-07-01 12:13:44 -0400239
Al Viro42faad92008-04-24 07:21:56 -0400240static void nfs_umount_begin(struct super_block *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400241static int nfs_statfs(struct dentry *, struct kstatfs *);
David Howellsf7b422b2006-06-09 09:34:33 -0400242static int nfs_show_options(struct seq_file *, struct vfsmount *);
243static int nfs_show_stats(struct seq_file *, struct vfsmount *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400244static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
David Howells54ceac42006-08-22 20:06:13 -0400245static int nfs_xdev_get_sb(struct file_system_type *fs_type,
Trond Myklebust816724e2006-06-24 08:41:41 -0400246 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
Trond Myklebust387c1492010-02-03 08:27:35 -0500247static void nfs_put_super(struct super_block *);
David Howellsf7b422b2006-06-09 09:34:33 -0400248static void nfs_kill_super(struct super_block *);
Jeff Layton48b605f2008-06-10 15:38:39 -0400249static int nfs_remount(struct super_block *sb, int *flags, char *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400250
251static struct file_system_type nfs_fs_type = {
252 .owner = THIS_MODULE,
253 .name = "nfs",
254 .get_sb = nfs_get_sb,
255 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700256 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400257};
258
David Howells54ceac42006-08-22 20:06:13 -0400259struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400260 .owner = THIS_MODULE,
261 .name = "nfs",
David Howells54ceac42006-08-22 20:06:13 -0400262 .get_sb = nfs_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400263 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700264 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400265};
266
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800267static const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400268 .alloc_inode = nfs_alloc_inode,
269 .destroy_inode = nfs_destroy_inode,
270 .write_inode = nfs_write_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500271 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400272 .statfs = nfs_statfs,
273 .clear_inode = nfs_clear_inode,
274 .umount_begin = nfs_umount_begin,
275 .show_options = nfs_show_options,
276 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400277 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400278};
279
280#ifdef CONFIG_NFS_V4
Chuck Lever7630c852009-09-08 19:49:57 -0400281static int nfs4_validate_text_mount_data(void *options,
282 struct nfs_parsed_mount_data *args, const char *dev_name);
Chuck Levera6fe23b2009-09-08 19:50:00 -0400283static int nfs4_try_mount(int flags, const char *dev_name,
284 struct nfs_parsed_mount_data *data, struct vfsmount *mnt);
Trond Myklebust816724e2006-06-24 08:41:41 -0400285static int nfs4_get_sb(struct file_system_type *fs_type,
286 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400287static int nfs4_remote_get_sb(struct file_system_type *fs_type,
288 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howells54ceac42006-08-22 20:06:13 -0400289static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
290 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
291static int nfs4_referral_get_sb(struct file_system_type *fs_type,
292 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400293static int nfs4_remote_referral_get_sb(struct file_system_type *fs_type,
294 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400295static void nfs4_kill_super(struct super_block *sb);
296
297static struct file_system_type nfs4_fs_type = {
298 .owner = THIS_MODULE,
299 .name = "nfs4",
300 .get_sb = nfs4_get_sb,
301 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700302 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400303};
304
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400305static struct file_system_type nfs4_remote_fs_type = {
306 .owner = THIS_MODULE,
307 .name = "nfs4",
308 .get_sb = nfs4_remote_get_sb,
309 .kill_sb = nfs4_kill_super,
310 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
311};
312
David Howells54ceac42006-08-22 20:06:13 -0400313struct file_system_type nfs4_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400314 .owner = THIS_MODULE,
315 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400316 .get_sb = nfs4_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400317 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700318 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400319};
320
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400321static struct file_system_type nfs4_remote_referral_fs_type = {
322 .owner = THIS_MODULE,
323 .name = "nfs4",
324 .get_sb = nfs4_remote_referral_get_sb,
325 .kill_sb = nfs4_kill_super,
326 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
327};
328
David Howells54ceac42006-08-22 20:06:13 -0400329struct file_system_type nfs4_referral_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400330 .owner = THIS_MODULE,
331 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400332 .get_sb = nfs4_referral_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400333 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700334 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400335};
336
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800337static const struct super_operations nfs4_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400338 .alloc_inode = nfs_alloc_inode,
339 .destroy_inode = nfs_destroy_inode,
340 .write_inode = nfs_write_inode,
Trond Myklebust387c1492010-02-03 08:27:35 -0500341 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400342 .statfs = nfs_statfs,
343 .clear_inode = nfs4_clear_inode,
344 .umount_begin = nfs_umount_begin,
345 .show_options = nfs_show_options,
346 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400347 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400348};
349#endif
350
Rusty Russell8e1f9362007-07-17 04:03:17 -0700351static struct shrinker acl_shrinker = {
352 .shrink = nfs_access_cache_shrinker,
353 .seeks = DEFAULT_SEEKS,
354};
Trond Myklebust979df722006-07-25 11:28:19 -0400355
David Howellsf7b422b2006-06-09 09:34:33 -0400356/*
357 * Register the NFS filesystems
358 */
359int __init register_nfs_fs(void)
360{
361 int ret;
362
363 ret = register_filesystem(&nfs_fs_type);
364 if (ret < 0)
365 goto error_0;
366
David Howellsf7b422b2006-06-09 09:34:33 -0400367 ret = nfs_register_sysctl();
368 if (ret < 0)
369 goto error_1;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800370#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400371 ret = register_filesystem(&nfs4_fs_type);
372 if (ret < 0)
373 goto error_2;
374#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700375 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400376 return 0;
377
378#ifdef CONFIG_NFS_V4
379error_2:
380 nfs_unregister_sysctl();
Peter Zijlstra89a09142007-03-16 13:38:26 -0800381#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400382error_1:
383 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400384error_0:
385 return ret;
386}
387
388/*
389 * Unregister the NFS filesystems
390 */
391void __exit unregister_nfs_fs(void)
392{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700393 unregister_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400394#ifdef CONFIG_NFS_V4
395 unregister_filesystem(&nfs4_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400396#endif
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700397 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400398 unregister_filesystem(&nfs_fs_type);
399}
400
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400401void nfs_sb_active(struct super_block *sb)
Steve Dicksonef818a22007-11-08 04:05:04 -0500402{
403 struct nfs_server *server = NFS_SB(sb);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400404
405 if (atomic_inc_return(&server->active) == 1)
406 atomic_inc(&sb->s_active);
407}
408
409void nfs_sb_deactive(struct super_block *sb)
410{
411 struct nfs_server *server = NFS_SB(sb);
412
413 if (atomic_dec_and_test(&server->active))
414 deactivate_super(sb);
Steve Dicksonef818a22007-11-08 04:05:04 -0500415}
416
David Howellsf7b422b2006-06-09 09:34:33 -0400417/*
418 * Deliver file system statistics to userspace
419 */
Trond Myklebust816724e2006-06-24 08:41:41 -0400420static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400421{
David Howells0c7d90c2006-08-22 20:06:10 -0400422 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400423 unsigned char blockbits;
424 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400425 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400426 struct nfs_fsstat res;
427 int error = -ENOMEM;
428
429 res.fattr = nfs_alloc_fattr();
430 if (res.fattr == NULL)
431 goto out_err;
David Howellsf7b422b2006-06-09 09:34:33 -0400432
David Howells8fa5c002006-08-22 20:06:12 -0400433 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400434
435 nfs_free_fattr(res.fattr);
David Howellsf7b422b2006-06-09 09:34:33 -0400436 if (error < 0)
437 goto out_err;
Trond Myklebustca7e9a02010-04-16 16:22:52 -0400438
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700439 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400440
441 /*
442 * Current versions of glibc do not correctly handle the
443 * case where f_frsize != f_bsize. Eventually we want to
444 * report the value of wtmult in this field.
445 */
David Howells0c7d90c2006-08-22 20:06:10 -0400446 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400447
448 /*
449 * On most *nix systems, f_blocks, f_bfree, and f_bavail
450 * are reported in units of f_frsize. Linux hasn't had
451 * an f_frsize field in its statfs struct until recently,
452 * thus historically Linux's sys_statfs reports these
453 * fields in units of f_bsize.
454 */
David Howells0c7d90c2006-08-22 20:06:10 -0400455 buf->f_bsize = dentry->d_sb->s_blocksize;
456 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400457 blockres = (1 << blockbits) - 1;
458 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
459 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
460 buf->f_bavail = (res.abytes + blockres) >> blockbits;
461
462 buf->f_files = res.tfiles;
463 buf->f_ffree = res.afiles;
464
465 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700466
David Howellsf7b422b2006-06-09 09:34:33 -0400467 return 0;
468
469 out_err:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700470 dprintk("%s: statfs error = %d\n", __func__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700471 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400472}
473
David Howells7d4e2742006-08-22 20:06:07 -0400474/*
475 * Map the security flavour number to a name
476 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400477static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
478{
David Howells7d4e2742006-08-22 20:06:07 -0400479 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400480 rpc_authflavor_t flavour;
481 const char *str;
482 } sec_flavours[] = {
483 { RPC_AUTH_NULL, "null" },
484 { RPC_AUTH_UNIX, "sys" },
485 { RPC_AUTH_GSS_KRB5, "krb5" },
486 { RPC_AUTH_GSS_KRB5I, "krb5i" },
487 { RPC_AUTH_GSS_KRB5P, "krb5p" },
488 { RPC_AUTH_GSS_LKEY, "lkey" },
489 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
490 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
491 { RPC_AUTH_GSS_SPKM, "spkm" },
492 { RPC_AUTH_GSS_SPKMI, "spkmi" },
493 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400494 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400495 };
496 int i;
497
Chuck Lever4d81cd12007-07-01 12:12:40 -0400498 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400499 if (sec_flavours[i].flavour == flavour)
500 break;
501 }
502 return sec_flavours[i].str;
503}
504
Jeff Laytonee671b02009-12-03 15:58:56 -0500505static void nfs_show_mountd_netid(struct seq_file *m, struct nfs_server *nfss,
506 int showdefaults)
507{
508 struct sockaddr *sap = (struct sockaddr *) &nfss->mountd_address;
509
510 seq_printf(m, ",mountproto=");
511 switch (sap->sa_family) {
512 case AF_INET:
513 switch (nfss->mountd_protocol) {
514 case IPPROTO_UDP:
515 seq_printf(m, RPCBIND_NETID_UDP);
516 break;
517 case IPPROTO_TCP:
518 seq_printf(m, RPCBIND_NETID_TCP);
519 break;
520 default:
521 if (showdefaults)
522 seq_printf(m, "auto");
523 }
524 break;
525 case AF_INET6:
526 switch (nfss->mountd_protocol) {
527 case IPPROTO_UDP:
528 seq_printf(m, RPCBIND_NETID_UDP6);
529 break;
530 case IPPROTO_TCP:
531 seq_printf(m, RPCBIND_NETID_TCP6);
532 break;
533 default:
534 if (showdefaults)
535 seq_printf(m, "auto");
536 }
537 break;
538 default:
539 if (showdefaults)
540 seq_printf(m, "auto");
541 }
542}
543
Chuck Lever82d101d2008-03-14 14:10:37 -0400544static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss,
545 int showdefaults)
546{
547 struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address;
548
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -0400549 if (nfss->flags & NFS_MOUNT_LEGACY_INTERFACE)
550 return;
551
Chuck Lever82d101d2008-03-14 14:10:37 -0400552 switch (sap->sa_family) {
553 case AF_INET: {
554 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
Harvey Harrisonbe859402008-10-31 00:56:28 -0700555 seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400556 break;
557 }
558 case AF_INET6: {
559 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
Chuck Leverd250e192009-12-03 15:58:56 -0500560 seq_printf(m, ",mountaddr=%pI6c", &sin6->sin6_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400561 break;
562 }
563 default:
564 if (showdefaults)
565 seq_printf(m, ",mountaddr=unspecified");
566 }
567
568 if (nfss->mountd_version || showdefaults)
569 seq_printf(m, ",mountvers=%u", nfss->mountd_version);
570 if (nfss->mountd_port || showdefaults)
571 seq_printf(m, ",mountport=%u", nfss->mountd_port);
572
Jeff Laytonee671b02009-12-03 15:58:56 -0500573 nfs_show_mountd_netid(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400574}
575
Trond Myklebust0be81892010-06-18 12:23:58 -0400576#ifdef CONFIG_NFS_V4
577static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
578 int showdefaults)
579{
580 struct nfs_client *clp = nfss->nfs_client;
581
582 seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr);
583 seq_printf(m, ",minorversion=%u", clp->cl_minorversion);
584}
585#else
586static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss,
587 int showdefaults)
588{
589}
590#endif
591
David Howellsf7b422b2006-06-09 09:34:33 -0400592/*
593 * Describe the mount options in force on this server representation
594 */
Chuck Lever82d101d2008-03-14 14:10:37 -0400595static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
596 int showdefaults)
David Howellsf7b422b2006-06-09 09:34:33 -0400597{
David Howells509de812006-08-22 20:06:11 -0400598 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400599 int flag;
David Howells509de812006-08-22 20:06:11 -0400600 const char *str;
601 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400602 } nfs_info[] = {
603 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Lever82d101d2008-03-14 14:10:37 -0400604 { NFS_MOUNT_POSIX, ",posix", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400605 { NFS_MOUNT_NOCTO, ",nocto", "" },
606 { NFS_MOUNT_NOAC, ",noac", "" },
607 { NFS_MOUNT_NONLM, ",nolock", "" },
608 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400609 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Chuck Leverd7403512008-12-23 15:21:37 -0500610 { NFS_MOUNT_UNSHARED, ",nosharecache", "" },
611 { NFS_MOUNT_NORESVPORT, ",noresvport", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400612 { 0, NULL, NULL }
613 };
David Howells509de812006-08-22 20:06:11 -0400614 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400615 struct nfs_client *clp = nfss->nfs_client;
Chuck Lever82d101d2008-03-14 14:10:37 -0400616 u32 version = clp->rpc_ops->version;
David Howellsf7b422b2006-06-09 09:34:33 -0400617
Chuck Lever82d101d2008-03-14 14:10:37 -0400618 seq_printf(m, ",vers=%u", version);
Chuck Lever2d767432008-03-14 14:10:08 -0400619 seq_printf(m, ",rsize=%u", nfss->rsize);
620 seq_printf(m, ",wsize=%u", nfss->wsize);
Chuck Lever82d101d2008-03-14 14:10:37 -0400621 if (nfss->bsize != 0)
622 seq_printf(m, ",bsize=%u", nfss->bsize);
623 seq_printf(m, ",namlen=%u", nfss->namelen);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400624 if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400625 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400626 if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400627 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400628 if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400629 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400630 if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400631 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400632 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
633 if (nfss->flags & nfs_infop->flag)
634 seq_puts(m, nfs_infop->str);
635 else
636 seq_puts(m, nfs_infop->nostr);
637 }
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400638 seq_printf(m, ",proto=%s",
Jeff Laytonee671b02009-12-03 15:58:56 -0500639 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_NETID));
Chuck Lever82d101d2008-03-14 14:10:37 -0400640 if (version == 4) {
641 if (nfss->port != NFS_PORT)
642 seq_printf(m, ",port=%u", nfss->port);
643 } else
644 if (nfss->port)
645 seq_printf(m, ",port=%u", nfss->port);
646
Trond Myklebust33170232007-12-20 16:03:59 -0500647 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
648 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
Trond Myklebust81039f12006-06-09 09:34:34 -0400649 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
Chuck Lever82d101d2008-03-14 14:10:37 -0400650
651 if (version != 4)
652 nfs_show_mountd_options(m, nfss, showdefaults);
Trond Myklebust0be81892010-06-18 12:23:58 -0400653 else
654 nfs_show_nfsv4_options(m, nfss, showdefaults);
Chuck Lever82d101d2008-03-14 14:10:37 -0400655
David Howellsb797cac2009-04-03 16:42:48 +0100656 if (nfss->options & NFS_OPTION_FSCACHE)
657 seq_printf(m, ",fsc");
David Howellsf7b422b2006-06-09 09:34:33 -0400658}
659
660/*
661 * Describe the mount options on this VFS mountpoint
662 */
663static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
664{
665 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
666
667 nfs_show_mount_options(m, nfss, 0);
668
Chuck Lever5d8515c2007-12-10 14:57:16 -0500669 seq_printf(m, ",addr=%s",
670 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
671 RPC_DISPLAY_ADDR));
David Howellsf7b422b2006-06-09 09:34:33 -0400672
673 return 0;
674}
675
676/*
677 * Present statistical information for this VFS mountpoint
678 */
679static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
680{
681 int i, cpu;
682 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
683 struct rpc_auth *auth = nfss->client->cl_auth;
684 struct nfs_iostats totals = { };
685
686 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
687
688 /*
689 * Display all mount option settings
690 */
691 seq_printf(m, "\n\topts:\t");
692 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
693 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
694 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
695 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
696 nfs_show_mount_options(m, nfss, 1);
697
698 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
699
700 seq_printf(m, "\n\tcaps:\t");
701 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400702 seq_printf(m, ",wtmult=%u", nfss->wtmult);
703 seq_printf(m, ",dtsize=%u", nfss->dtsize);
704 seq_printf(m, ",bsize=%u", nfss->bsize);
705 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400706
707#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500708 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400709 seq_printf(m, "\n\tnfsv4:\t");
710 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
711 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
712 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
713 }
714#endif
715
716 /*
717 * Display security flavor in effect for this mount
718 */
Chuck Lever2d767432008-03-14 14:10:08 -0400719 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400720 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400721 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400722
723 /*
724 * Display superblock I/O counters
725 */
726 for_each_possible_cpu(cpu) {
727 struct nfs_iostats *stats;
728
729 preempt_disable();
730 stats = per_cpu_ptr(nfss->io_stats, cpu);
731
732 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
733 totals.events[i] += stats->events[i];
734 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
735 totals.bytes[i] += stats->bytes[i];
David Howells6a510912009-04-03 16:42:43 +0100736#ifdef CONFIG_NFS_FSCACHE
737 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
738 totals.fscache[i] += stats->fscache[i];
739#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400740
741 preempt_enable();
742 }
743
744 seq_printf(m, "\n\tevents:\t");
745 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
746 seq_printf(m, "%lu ", totals.events[i]);
747 seq_printf(m, "\n\tbytes:\t");
748 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
749 seq_printf(m, "%Lu ", totals.bytes[i]);
David Howells6a510912009-04-03 16:42:43 +0100750#ifdef CONFIG_NFS_FSCACHE
751 if (nfss->options & NFS_OPTION_FSCACHE) {
752 seq_printf(m, "\n\tfsc:\t");
753 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
754 seq_printf(m, "%Lu ", totals.bytes[i]);
755 }
756#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400757 seq_printf(m, "\n");
758
759 rpc_print_iostats(m, nfss->client);
760
761 return 0;
762}
763
764/*
765 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400766 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400767 */
Al Viro42faad92008-04-24 07:21:56 -0400768static void nfs_umount_begin(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -0400769{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200770 struct nfs_server *server;
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400771 struct rpc_clnt *rpc;
772
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200773 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400774 /* -EIO all pending I/O */
775 rpc = server->client_acl;
776 if (!IS_ERR(rpc))
777 rpc_killall_tasks(rpc);
778 rpc = server->client;
779 if (!IS_ERR(rpc))
780 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400781}
782
Trond Myklebustc5811db2009-10-06 15:40:15 -0400783static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int version)
Chuck Lever9423a082009-09-23 14:36:38 -0400784{
785 struct nfs_parsed_mount_data *data;
786
787 data = kzalloc(sizeof(*data), GFP_KERNEL);
788 if (data) {
Chuck Lever9423a082009-09-23 14:36:38 -0400789 data->acregmin = NFS_DEF_ACREGMIN;
790 data->acregmax = NFS_DEF_ACREGMAX;
791 data->acdirmin = NFS_DEF_ACDIRMIN;
792 data->acdirmax = NFS_DEF_ACDIRMAX;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400793 data->mount_server.port = NFS_UNSPEC_PORT;
Chuck Lever9423a082009-09-23 14:36:38 -0400794 data->nfs_server.port = NFS_UNSPEC_PORT;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400795 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Lever9423a082009-09-23 14:36:38 -0400796 data->auth_flavors[0] = RPC_AUTH_UNIX;
797 data->auth_flavor_len = 1;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400798 data->version = version;
Chuck Lever9423a082009-09-23 14:36:38 -0400799 data->minorversion = 0;
800 }
801 return data;
802}
803
David Howellsf7b422b2006-06-09 09:34:33 -0400804/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500805 * Sanity-check a server address provided by the mount command.
806 *
807 * Address family must be initialized, and address must not be
808 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400809 */
810static int nfs_verify_server_address(struct sockaddr *addr)
811{
812 switch (addr->sa_family) {
813 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500814 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700815 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500816 }
817 case AF_INET6: {
818 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
819 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400820 }
821 }
822
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400823 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400824 return 0;
825}
826
Chuck Lever9412b922007-12-10 14:59:21 -0500827/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400828 * Select between a default port value and a user-specified port value.
829 * If a zero value is set, then autobind will be used.
830 */
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400831static void nfs_set_port(struct sockaddr *sap, int *port,
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400832 const unsigned short default_port)
833{
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400834 if (*port == NFS_UNSPEC_PORT)
835 *port = default_port;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400836
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400837 rpc_set_port(sap, *port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400838}
839
840/*
Trond Myklebust259875e2008-07-02 14:43:47 -0400841 * Sanity check the NFS transport protocol.
842 *
843 */
844static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
845{
846 switch (mnt->nfs_server.protocol) {
847 case XPRT_TRANSPORT_UDP:
848 case XPRT_TRANSPORT_TCP:
849 case XPRT_TRANSPORT_RDMA:
850 break;
851 default:
852 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
853 }
854}
855
856/*
857 * For text based NFSv2/v3 mounts, the mount protocol transport default
858 * settings should depend upon the specified NFS transport.
859 */
860static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
861{
862 nfs_validate_transport_protocol(mnt);
863
864 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
865 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
866 return;
867 switch (mnt->nfs_server.protocol) {
868 case XPRT_TRANSPORT_UDP:
869 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
870 break;
871 case XPRT_TRANSPORT_TCP:
872 case XPRT_TRANSPORT_RDMA:
873 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
874 }
875}
876
877/*
Chuck Lever01060c82008-06-24 16:33:38 -0400878 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -0400879 */
880static int nfs_parse_security_flavors(char *value,
881 struct nfs_parsed_mount_data *mnt)
882{
883 substring_t args[MAX_OPT_ARGS];
884
885 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
886
887 switch (match_token(value, nfs_secflavor_tokens, args)) {
888 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -0400889 mnt->auth_flavors[0] = RPC_AUTH_NULL;
890 break;
891 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -0400892 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
893 break;
894 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -0400895 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
896 break;
897 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -0400898 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
899 break;
900 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -0400901 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
902 break;
903 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -0400904 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
905 break;
906 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -0400907 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
908 break;
909 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -0400910 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
911 break;
912 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -0400913 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
914 break;
915 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -0400916 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
917 break;
918 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -0400919 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
920 break;
921 default:
922 return 0;
923 }
924
Chuck Lever059f90b2009-08-09 15:09:31 -0400925 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -0400926 return 1;
927}
928
929/*
Chuck Leverbf0fd762007-07-01 12:13:44 -0400930 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -0400931 * a data structure. The whole mount string is processed; bad options are
932 * skipped as they are encountered. If there were no errors, return 1;
933 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -0400934 */
935static int nfs_parse_mount_options(char *raw,
936 struct nfs_parsed_mount_data *mnt)
937{
Eric Parisf9c3a382008-03-05 14:20:18 -0500938 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -0700939 int rc, sloppy = 0, invalid_option = 0;
Jeff Laytonee671b02009-12-03 15:58:56 -0500940 unsigned short protofamily = AF_UNSPEC;
941 unsigned short mountfamily = AF_UNSPEC;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400942
943 if (!raw) {
944 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
945 return 1;
946 }
947 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
948
Eric Parisf9c3a382008-03-05 14:20:18 -0500949 secdata = alloc_secdata();
950 if (!secdata)
951 goto out_nomem;
952
953 rc = security_sb_copy_data(raw, secdata);
954 if (rc)
955 goto out_security_failure;
956
957 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
958 if (rc)
959 goto out_security_failure;
960
961 free_secdata(secdata);
962
Chuck Leverbf0fd762007-07-01 12:13:44 -0400963 while ((p = strsep(&raw, ",")) != NULL) {
964 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -0700965 unsigned long option;
966 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400967
968 if (!*p)
969 continue;
970
971 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
972
973 token = match_token(p, nfs_mount_option_tokens, args);
974 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -0400975
976 /*
977 * boolean options: foo/nofoo
978 */
Chuck Leverbf0fd762007-07-01 12:13:44 -0400979 case Opt_soft:
980 mnt->flags |= NFS_MOUNT_SOFT;
981 break;
982 case Opt_hard:
983 mnt->flags &= ~NFS_MOUNT_SOFT;
984 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400985 case Opt_posix:
986 mnt->flags |= NFS_MOUNT_POSIX;
987 break;
988 case Opt_noposix:
989 mnt->flags &= ~NFS_MOUNT_POSIX;
990 break;
991 case Opt_cto:
992 mnt->flags &= ~NFS_MOUNT_NOCTO;
993 break;
994 case Opt_nocto:
995 mnt->flags |= NFS_MOUNT_NOCTO;
996 break;
997 case Opt_ac:
998 mnt->flags &= ~NFS_MOUNT_NOAC;
999 break;
1000 case Opt_noac:
1001 mnt->flags |= NFS_MOUNT_NOAC;
1002 break;
1003 case Opt_lock:
1004 mnt->flags &= ~NFS_MOUNT_NONLM;
1005 break;
1006 case Opt_nolock:
1007 mnt->flags |= NFS_MOUNT_NONLM;
1008 break;
1009 case Opt_v2:
1010 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001011 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001012 break;
1013 case Opt_v3:
1014 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001015 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001016 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001017#ifdef CONFIG_NFS_V4
1018 case Opt_v4:
1019 mnt->flags &= ~NFS_MOUNT_VER3;
1020 mnt->version = 4;
1021 break;
1022#endif
Chuck Leverbf0fd762007-07-01 12:13:44 -04001023 case Opt_udp:
1024 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001025 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001026 break;
1027 case Opt_tcp:
1028 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001029 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001030 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001031 case Opt_rdma:
1032 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
1033 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001034 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001035 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001036 case Opt_acl:
1037 mnt->flags &= ~NFS_MOUNT_NOACL;
1038 break;
1039 case Opt_noacl:
1040 mnt->flags |= NFS_MOUNT_NOACL;
1041 break;
1042 case Opt_rdirplus:
1043 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
1044 break;
1045 case Opt_nordirplus:
1046 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
1047 break;
Trond Myklebust75180df2007-05-16 16:53:28 -04001048 case Opt_sharecache:
1049 mnt->flags &= ~NFS_MOUNT_UNSHARED;
1050 break;
1051 case Opt_nosharecache:
1052 mnt->flags |= NFS_MOUNT_UNSHARED;
1053 break;
Chuck Leverd7403512008-12-23 15:21:37 -05001054 case Opt_resvport:
1055 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1056 break;
1057 case Opt_noresvport:
1058 mnt->flags |= NFS_MOUNT_NORESVPORT;
1059 break;
David Howellsb797cac2009-04-03 16:42:48 +01001060 case Opt_fscache:
1061 mnt->options |= NFS_OPTION_FSCACHE;
1062 kfree(mnt->fscache_uniq);
1063 mnt->fscache_uniq = NULL;
1064 break;
1065 case Opt_nofscache:
1066 mnt->options &= ~NFS_OPTION_FSCACHE;
1067 kfree(mnt->fscache_uniq);
1068 mnt->fscache_uniq = NULL;
1069 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001070
Chuck Leverf45663c2008-06-24 19:28:02 -04001071 /*
1072 * options that take numeric values
1073 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001074 case Opt_port:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001075 string = match_strdup(args);
1076 if (string == NULL)
1077 goto out_nomem;
1078 rc = strict_strtoul(string, 10, &option);
1079 kfree(string);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07001080 if (rc != 0 || option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001081 goto out_invalid_value;
1082 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001083 break;
1084 case Opt_rsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001085 string = match_strdup(args);
1086 if (string == NULL)
1087 goto out_nomem;
1088 rc = strict_strtoul(string, 10, &option);
1089 kfree(string);
1090 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001091 goto out_invalid_value;
1092 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001093 break;
1094 case Opt_wsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001095 string = match_strdup(args);
1096 if (string == NULL)
1097 goto out_nomem;
1098 rc = strict_strtoul(string, 10, &option);
1099 kfree(string);
1100 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001101 goto out_invalid_value;
1102 mnt->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001103 break;
1104 case Opt_bsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001105 string = match_strdup(args);
1106 if (string == NULL)
1107 goto out_nomem;
1108 rc = strict_strtoul(string, 10, &option);
1109 kfree(string);
1110 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001111 goto out_invalid_value;
1112 mnt->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001113 break;
1114 case Opt_timeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001115 string = match_strdup(args);
1116 if (string == NULL)
1117 goto out_nomem;
1118 rc = strict_strtoul(string, 10, &option);
1119 kfree(string);
1120 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001121 goto out_invalid_value;
1122 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001123 break;
1124 case Opt_retrans:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001125 string = match_strdup(args);
1126 if (string == NULL)
1127 goto out_nomem;
1128 rc = strict_strtoul(string, 10, &option);
1129 kfree(string);
1130 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001131 goto out_invalid_value;
1132 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001133 break;
1134 case Opt_acregmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001135 string = match_strdup(args);
1136 if (string == NULL)
1137 goto out_nomem;
1138 rc = strict_strtoul(string, 10, &option);
1139 kfree(string);
1140 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001141 goto out_invalid_value;
1142 mnt->acregmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001143 break;
1144 case Opt_acregmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001145 string = match_strdup(args);
1146 if (string == NULL)
1147 goto out_nomem;
1148 rc = strict_strtoul(string, 10, &option);
1149 kfree(string);
1150 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001151 goto out_invalid_value;
1152 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001153 break;
1154 case Opt_acdirmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001155 string = match_strdup(args);
1156 if (string == NULL)
1157 goto out_nomem;
1158 rc = strict_strtoul(string, 10, &option);
1159 kfree(string);
1160 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001161 goto out_invalid_value;
1162 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001163 break;
1164 case Opt_acdirmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001165 string = match_strdup(args);
1166 if (string == NULL)
1167 goto out_nomem;
1168 rc = strict_strtoul(string, 10, &option);
1169 kfree(string);
1170 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001171 goto out_invalid_value;
1172 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001173 break;
1174 case Opt_actimeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001175 string = match_strdup(args);
1176 if (string == NULL)
1177 goto out_nomem;
1178 rc = strict_strtoul(string, 10, &option);
1179 kfree(string);
1180 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001181 goto out_invalid_value;
1182 mnt->acregmin = mnt->acregmax =
1183 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001184 break;
1185 case Opt_namelen:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001186 string = match_strdup(args);
1187 if (string == NULL)
1188 goto out_nomem;
1189 rc = strict_strtoul(string, 10, &option);
1190 kfree(string);
1191 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001192 goto out_invalid_value;
1193 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001194 break;
1195 case Opt_mountport:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001196 string = match_strdup(args);
1197 if (string == NULL)
1198 goto out_nomem;
1199 rc = strict_strtoul(string, 10, &option);
1200 kfree(string);
Alexey Dobriyan4be929b2010-05-24 14:33:03 -07001201 if (rc != 0 || option > USHRT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001202 goto out_invalid_value;
1203 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001204 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001205 case Opt_mountvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001206 string = match_strdup(args);
1207 if (string == NULL)
1208 goto out_nomem;
1209 rc = strict_strtoul(string, 10, &option);
1210 kfree(string);
1211 if (rc != 0 ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001212 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001213 option > NFS_MNT3_VERSION)
1214 goto out_invalid_value;
1215 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001216 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001217 case Opt_nfsvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001218 string = match_strdup(args);
1219 if (string == NULL)
1220 goto out_nomem;
1221 rc = strict_strtoul(string, 10, &option);
1222 kfree(string);
1223 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001224 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001225 switch (option) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001226 case NFS2_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001227 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001228 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001229 break;
Chuck Leverf45663c2008-06-24 19:28:02 -04001230 case NFS3_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001231 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001232 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001233 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001234#ifdef CONFIG_NFS_V4
1235 case NFS4_VERSION:
1236 mnt->flags &= ~NFS_MOUNT_VER3;
1237 mnt->version = 4;
1238 break;
1239#endif
Chuck Leverbf0fd762007-07-01 12:13:44 -04001240 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001241 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001242 }
1243 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001244 case Opt_minorversion:
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001245 string = match_strdup(args);
1246 if (string == NULL)
1247 goto out_nomem;
1248 rc = strict_strtoul(string, 10, &option);
1249 kfree(string);
1250 if (rc != 0)
1251 goto out_invalid_value;
1252 if (option > NFS4_MAX_MINOR_VERSION)
1253 goto out_invalid_value;
1254 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001255 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001256
Chuck Leverf45663c2008-06-24 19:28:02 -04001257 /*
1258 * options that take text values
1259 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001260 case Opt_sec:
1261 string = match_strdup(args);
1262 if (string == NULL)
1263 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001264 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001265 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001266 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001267 dfprintk(MOUNT, "NFS: unrecognized "
1268 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001269 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001270 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001271 break;
1272 case Opt_proto:
1273 string = match_strdup(args);
1274 if (string == NULL)
1275 goto out_nomem;
1276 token = match_token(string,
1277 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001278
Jeff Laytonee671b02009-12-03 15:58:56 -05001279 protofamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001280 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001281 case Opt_xprt_udp6:
1282 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001283 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001284 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001285 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001286 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001287 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001288 case Opt_xprt_tcp6:
1289 protofamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001290 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001291 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001292 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001293 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001294 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001295 case Opt_xprt_rdma:
1296 /* vector side protocols to TCP */
1297 mnt->flags |= NFS_MOUNT_TCP;
1298 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001299 xprt_load_transport(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001300 kfree(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001301 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001302 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001303 dfprintk(MOUNT, "NFS: unrecognized "
1304 "transport protocol\n");
Yinghai Lu4223a4a2009-10-20 14:13:46 +09001305 kfree(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001306 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001307 }
1308 break;
1309 case Opt_mountproto:
1310 string = match_strdup(args);
1311 if (string == NULL)
1312 goto out_nomem;
1313 token = match_token(string,
1314 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001315 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001316
Jeff Laytonee671b02009-12-03 15:58:56 -05001317 mountfamily = AF_INET;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001318 switch (token) {
Jeff Laytonee671b02009-12-03 15:58:56 -05001319 case Opt_xprt_udp6:
1320 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001321 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001322 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001323 break;
Jeff Laytonee671b02009-12-03 15:58:56 -05001324 case Opt_xprt_tcp6:
1325 mountfamily = AF_INET6;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001326 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001327 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001328 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001329 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001330 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001331 dfprintk(MOUNT, "NFS: unrecognized "
1332 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001333 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001334 }
1335 break;
1336 case Opt_addr:
1337 string = match_strdup(args);
1338 if (string == NULL)
1339 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001340 mnt->nfs_server.addrlen =
1341 rpc_pton(string, strlen(string),
1342 (struct sockaddr *)
1343 &mnt->nfs_server.address,
1344 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001345 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001346 if (mnt->nfs_server.addrlen == 0)
1347 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001348 break;
1349 case Opt_clientaddr:
1350 string = match_strdup(args);
1351 if (string == NULL)
1352 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001353 kfree(mnt->client_address);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001354 mnt->client_address = string;
1355 break;
Chuck Lever33832032007-12-10 14:59:13 -05001356 case Opt_mounthost:
1357 string = match_strdup(args);
1358 if (string == NULL)
1359 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001360 kfree(mnt->mount_server.hostname);
Chuck Lever33832032007-12-10 14:59:13 -05001361 mnt->mount_server.hostname = string;
1362 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001363 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001364 string = match_strdup(args);
1365 if (string == NULL)
1366 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001367 mnt->mount_server.addrlen =
1368 rpc_pton(string, strlen(string),
1369 (struct sockaddr *)
1370 &mnt->mount_server.address,
1371 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001372 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001373 if (mnt->mount_server.addrlen == 0)
1374 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001375 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001376 case Opt_lookupcache:
1377 string = match_strdup(args);
1378 if (string == NULL)
1379 goto out_nomem;
1380 token = match_token(string,
1381 nfs_lookupcache_tokens, args);
1382 kfree(string);
1383 switch (token) {
1384 case Opt_lookupcache_all:
1385 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1386 break;
1387 case Opt_lookupcache_positive:
1388 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1389 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1390 break;
1391 case Opt_lookupcache_none:
1392 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1393 break;
1394 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001395 dfprintk(MOUNT, "NFS: invalid "
1396 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001397 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001398 };
1399 break;
Chuck Levera6d5ff62010-05-07 13:33:58 -04001400 case Opt_fscache_uniq:
1401 string = match_strdup(args);
1402 if (string == NULL)
1403 goto out_nomem;
1404 kfree(mnt->fscache_uniq);
1405 mnt->fscache_uniq = string;
1406 mnt->options |= NFS_OPTION_FSCACHE;
1407 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001408
Chuck Leverf45663c2008-06-24 19:28:02 -04001409 /*
1410 * Special options
1411 */
1412 case Opt_sloppy:
1413 sloppy = 1;
1414 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1415 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001416 case Opt_userspace:
1417 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001418 dfprintk(MOUNT, "NFS: ignoring mount option "
1419 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001420 break;
1421
1422 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001423 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001424 dfprintk(MOUNT, "NFS: unrecognized mount option "
1425 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001426 }
1427 }
1428
Chuck Leverd23c45f2009-06-17 18:02:13 -07001429 if (!sloppy && invalid_option)
1430 return 0;
1431
Jeff Laytonee671b02009-12-03 15:58:56 -05001432 /*
1433 * verify that any proto=/mountproto= options match the address
1434 * familiies in the addr=/mountaddr= options.
1435 */
1436 if (protofamily != AF_UNSPEC &&
1437 protofamily != mnt->nfs_server.address.ss_family)
1438 goto out_proto_mismatch;
1439
1440 if (mountfamily != AF_UNSPEC) {
1441 if (mnt->mount_server.addrlen) {
1442 if (mountfamily != mnt->mount_server.address.ss_family)
1443 goto out_mountproto_mismatch;
1444 } else {
1445 if (mountfamily != mnt->nfs_server.address.ss_family)
1446 goto out_mountproto_mismatch;
1447 }
1448 }
1449
Chuck Leverbf0fd762007-07-01 12:13:44 -04001450 return 1;
1451
Jeff Laytonee671b02009-12-03 15:58:56 -05001452out_mountproto_mismatch:
1453 printk(KERN_INFO "NFS: mount server address does not match mountproto= "
1454 "option\n");
1455 return 0;
1456out_proto_mismatch:
1457 printk(KERN_INFO "NFS: server address does not match proto= option\n");
1458 return 0;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001459out_invalid_address:
1460 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1461 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001462out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001463 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001464 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001465out_nomem:
1466 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1467 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001468out_security_failure:
1469 free_secdata(secdata);
1470 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1471 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001472}
1473
1474/*
Chuck Leverec88f282009-08-09 15:09:32 -04001475 * Match the requested auth flavors with the list returned by
1476 * the server. Returns zero and sets the mount's authentication
1477 * flavor on success; returns -EACCES if server does not support
1478 * the requested flavor.
1479 */
1480static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1481 struct nfs_mount_request *request)
1482{
1483 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1484
1485 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001486 * Certain releases of Linux's mountd return an empty
1487 * flavor list. To prevent behavioral regression with
1488 * these servers (ie. rejecting mounts that used to
1489 * succeed), revert to pre-2.6.32 behavior (no checking)
1490 * if the returned flavor list is empty.
1491 */
1492 if (server_authlist_len == 0)
1493 return 0;
1494
1495 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001496 * We avoid sophisticated negotiating here, as there are
1497 * plenty of cases where we can get it wrong, providing
1498 * either too little or too much security.
1499 *
1500 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1501 * flavor listed first. However, some servers list
1502 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1503 * preferred default, in args->auth_flavors[0] if user
1504 * didn't specify sec= mount option.
1505 */
1506 for (i = 0; i < args->auth_flavor_len; i++)
1507 for (j = 0; j < server_authlist_len; j++)
1508 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1509 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1510 request->auth_flavs[j]);
1511 args->auth_flavors[0] = request->auth_flavs[j];
1512 return 0;
1513 }
1514
1515 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1516 nfs_umount(request);
1517 return -EACCES;
1518}
1519
1520/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001521 * Use the remote server's MOUNT service to request the NFS file handle
1522 * corresponding to the provided path.
1523 */
1524static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1525 struct nfs_fh *root_fh)
1526{
Chuck Leverec88f282009-08-09 15:09:32 -04001527 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1528 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001529 struct nfs_mount_request request = {
1530 .sap = (struct sockaddr *)
1531 &args->mount_server.address,
1532 .dirpath = args->nfs_server.export_path,
1533 .protocol = args->mount_server.protocol,
1534 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001535 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001536 .auth_flav_len = &server_authlist_len,
1537 .auth_flavs = server_authlist,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001538 };
Chuck Lever4c568012007-12-10 14:59:28 -05001539 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001540
1541 if (args->mount_server.version == 0) {
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001542 switch (args->version) {
1543 default:
1544 args->mount_server.version = NFS_MNT3_VERSION;
1545 break;
1546 case 2:
1547 args->mount_server.version = NFS_MNT_VERSION;
1548 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001549 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001550 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001551
Chuck Lever33832032007-12-10 14:59:13 -05001552 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001553 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001554 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001555 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001556
Chuck Lever0076d7b2007-07-01 12:13:49 -04001557 /*
1558 * Construct the mount server's address.
1559 */
Chuck Lever4c568012007-12-10 14:59:28 -05001560 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001561 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001562 args->nfs_server.addrlen);
1563 args->mount_server.addrlen = args->nfs_server.addrlen;
1564 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001565 request.salen = args->mount_server.addrlen;
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001566 nfs_set_port(request.sap, &args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001567
1568 /*
1569 * Now ask the mount server to map our export path
1570 * to a file handle.
1571 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001572 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001573 if (status != 0) {
1574 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1575 request.hostname, status);
1576 return status;
1577 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001578
Chuck Leverec88f282009-08-09 15:09:32 -04001579 /*
1580 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1581 */
1582 if (args->mount_server.version != NFS_MNT3_VERSION)
1583 return 0;
1584 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001585}
1586
Chuck Leverd1aa0822008-06-23 12:36:45 -04001587static int nfs_parse_simple_hostname(const char *dev_name,
1588 char **hostname, size_t maxnamlen,
1589 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001590{
1591 size_t len;
1592 char *colon, *comma;
1593
1594 colon = strchr(dev_name, ':');
1595 if (colon == NULL)
1596 goto out_bad_devname;
1597
1598 len = colon - dev_name;
1599 if (len > maxnamlen)
1600 goto out_hostname;
1601
1602 /* N.B. caller will free nfs_server.hostname in all cases */
1603 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
1604 if (!*hostname)
1605 goto out_nomem;
1606
1607 /* kill possible hostname list: not supported */
1608 comma = strchr(*hostname, ',');
1609 if (comma != NULL) {
1610 if (comma == *hostname)
1611 goto out_bad_devname;
1612 *comma = '\0';
1613 }
1614
1615 colon++;
1616 len = strlen(colon);
1617 if (len > maxpathlen)
1618 goto out_path;
1619 *export_path = kstrndup(colon, len, GFP_KERNEL);
1620 if (!*export_path)
1621 goto out_nomem;
1622
1623 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1624 return 0;
1625
1626out_bad_devname:
1627 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1628 return -EINVAL;
1629
1630out_nomem:
1631 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1632 return -ENOMEM;
1633
1634out_hostname:
1635 dfprintk(MOUNT, "NFS: server hostname too long\n");
1636 return -ENAMETOOLONG;
1637
1638out_path:
1639 dfprintk(MOUNT, "NFS: export pathname too long\n");
1640 return -ENAMETOOLONG;
1641}
1642
1643/*
Chuck Leverd1aa0822008-06-23 12:36:45 -04001644 * Hostname has square brackets around it because it contains one or
1645 * more colons. We look for the first closing square bracket, and a
1646 * colon must follow it.
1647 */
1648static int nfs_parse_protected_hostname(const char *dev_name,
1649 char **hostname, size_t maxnamlen,
1650 char **export_path, size_t maxpathlen)
1651{
1652 size_t len;
1653 char *start, *end;
1654
1655 start = (char *)(dev_name + 1);
1656
1657 end = strchr(start, ']');
1658 if (end == NULL)
1659 goto out_bad_devname;
1660 if (*(end + 1) != ':')
1661 goto out_bad_devname;
1662
1663 len = end - start;
1664 if (len > maxnamlen)
1665 goto out_hostname;
1666
1667 /* N.B. caller will free nfs_server.hostname in all cases */
1668 *hostname = kstrndup(start, len, GFP_KERNEL);
1669 if (*hostname == NULL)
1670 goto out_nomem;
1671
1672 end += 2;
1673 len = strlen(end);
1674 if (len > maxpathlen)
1675 goto out_path;
1676 *export_path = kstrndup(end, len, GFP_KERNEL);
1677 if (!*export_path)
1678 goto out_nomem;
1679
1680 return 0;
1681
1682out_bad_devname:
1683 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1684 return -EINVAL;
1685
1686out_nomem:
1687 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1688 return -ENOMEM;
1689
1690out_hostname:
1691 dfprintk(MOUNT, "NFS: server hostname too long\n");
1692 return -ENAMETOOLONG;
1693
1694out_path:
1695 dfprintk(MOUNT, "NFS: export pathname too long\n");
1696 return -ENAMETOOLONG;
1697}
1698
1699/*
1700 * Split "dev_name" into "hostname:export_path".
1701 *
1702 * The leftmost colon demarks the split between the server's hostname
1703 * and the export path. If the hostname starts with a left square
1704 * bracket, then it may contain colons.
1705 *
1706 * Note: caller frees hostname and export path, even on error.
1707 */
1708static int nfs_parse_devname(const char *dev_name,
1709 char **hostname, size_t maxnamlen,
1710 char **export_path, size_t maxpathlen)
1711{
1712 if (*dev_name == '[')
1713 return nfs_parse_protected_hostname(dev_name,
1714 hostname, maxnamlen,
1715 export_path, maxpathlen);
1716
1717 return nfs_parse_simple_hostname(dev_name,
1718 hostname, maxnamlen,
1719 export_path, maxpathlen);
1720}
1721
1722/*
David Howells54ceac42006-08-22 20:06:13 -04001723 * Validate the NFS2/NFS3 mount data
1724 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001725 *
1726 * For option strings, user space handles the following behaviors:
1727 *
1728 * + DNS: mapping server host name to IP address ("addr=" option)
1729 *
1730 * + failure mode: how to behave if a mount request can't be handled
1731 * immediately ("fg/bg" option)
1732 *
1733 * + retry: how often to retry a mount request ("retry=" option)
1734 *
1735 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1736 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001737 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001738static int nfs_validate_mount_data(void *options,
1739 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001740 struct nfs_fh *mntfh,
1741 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001742{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001743 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001744 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001745
Chuck Lever5df36e72007-07-01 12:12:56 -04001746 if (data == NULL)
1747 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001748
David Howellsf7b422b2006-06-09 09:34:33 -04001749 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001750 case 1:
1751 data->namlen = 0;
1752 case 2:
1753 data->bsize = 0;
1754 case 3:
1755 if (data->flags & NFS_MOUNT_VER3)
1756 goto out_no_v3;
1757 data->root.size = NFS2_FHSIZE;
1758 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1759 case 4:
1760 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1761 goto out_no_sec;
1762 case 5:
1763 memset(data->context, 0, sizeof(data->context));
1764 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001765 if (data->flags & NFS_MOUNT_VER3) {
1766 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1767 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001768 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001769 args->version = 3;
1770 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001771 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001772 args->version = 2;
1773 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001774
Chuck Lever5df36e72007-07-01 12:12:56 -04001775
1776 memcpy(mntfh->data, data->root.data, mntfh->size);
1777 if (mntfh->size < sizeof(mntfh->data))
1778 memset(mntfh->data + mntfh->size, 0,
1779 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001780
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001781 /*
1782 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1783 * can deal with.
1784 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001785 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
Bryan Schumakerd5eff1a2010-08-03 13:04:00 -04001786 args->flags |= NFS_MOUNT_LEGACY_INTERFACE;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001787 args->rsize = data->rsize;
1788 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001789 args->timeo = data->timeo;
1790 args->retrans = data->retrans;
1791 args->acregmin = data->acregmin;
1792 args->acregmax = data->acregmax;
1793 args->acdirmin = data->acdirmin;
1794 args->acdirmax = data->acdirmax;
Chuck Lever4c568012007-12-10 14:59:28 -05001795
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001796 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001797 args->nfs_server.addrlen = sizeof(data->addr);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001798 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001799 goto out_no_address;
1800
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001801 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001802 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001803 /* N.B. caller will free nfs_server.hostname in all cases */
1804 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1805 args->namlen = data->namlen;
1806 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001807
1808 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1809 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001810 if (!args->nfs_server.hostname)
1811 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001812
1813 /*
1814 * The legacy version 6 binary mount data from userspace has a
1815 * field used only to transport selinux information into the
1816 * the kernel. To continue to support that functionality we
1817 * have a touch of selinux knowledge here in the NFS code. The
1818 * userspace code converted context=blah to just blah so we are
1819 * converting back to the full string selinux understands.
1820 */
1821 if (data->context[0]){
1822#ifdef CONFIG_SECURITY_SELINUX
1823 int rc;
1824 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1825 if (!opts_str)
1826 return -ENOMEM;
1827 strcpy(opts_str, "context=");
1828 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1829 strcat(opts_str, &data->context[0]);
1830 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1831 kfree(opts_str);
1832 if (rc)
1833 return rc;
1834#else
1835 return -EINVAL;
1836#endif
1837 }
1838
Chuck Lever5df36e72007-07-01 12:12:56 -04001839 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001840 default: {
Chuck Lever136d5582007-07-01 12:13:54 -04001841 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001842
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001843 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001844 return -EINVAL;
1845
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001846 if (!nfs_verify_server_address(sap))
Chuck Lever6e88e062007-09-24 15:39:50 -04001847 goto out_no_address;
1848
Chuck Lever764302c2009-09-08 19:50:03 -04001849 if (args->version == 4)
1850#ifdef CONFIG_NFS_V4
1851 return nfs4_validate_text_mount_data(options,
1852 args, dev_name);
1853#else
1854 goto out_v4_not_compiled;
1855#endif
1856
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001857 nfs_set_port(sap, &args->nfs_server.port, 0);
Chuck Levered596a82008-06-26 17:47:05 -04001858
Trond Myklebust259875e2008-07-02 14:43:47 -04001859 nfs_set_mount_transport_protocol(args);
1860
Chuck Leverdc045892008-06-23 12:36:37 -04001861 status = nfs_parse_devname(dev_name,
1862 &args->nfs_server.hostname,
1863 PAGE_SIZE,
1864 &args->nfs_server.export_path,
1865 NFS_MAXPATHLEN);
1866 if (!status)
1867 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001868
Chuck Leverdc045892008-06-23 12:36:37 -04001869 kfree(args->nfs_server.export_path);
1870 args->nfs_server.export_path = NULL;
Chuck Lever136d5582007-07-01 12:13:54 -04001871
Chuck Lever136d5582007-07-01 12:13:54 -04001872 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001873 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001874
Chuck Lever136d5582007-07-01 12:13:54 -04001875 break;
1876 }
David Howellsf7b422b2006-06-09 09:34:33 -04001877 }
David Howells54ceac42006-08-22 20:06:13 -04001878
David Howellsf7b422b2006-06-09 09:34:33 -04001879#ifndef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001880 if (args->version == 3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001881 goto out_v3_not_compiled;
1882#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001883
David Howells54ceac42006-08-22 20:06:13 -04001884 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001885
1886out_no_data:
1887 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1888 return -EINVAL;
1889
1890out_no_v3:
1891 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1892 data->version);
1893 return -EINVAL;
1894
1895out_no_sec:
1896 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1897 return -EINVAL;
1898
Chuck Lever5df36e72007-07-01 12:12:56 -04001899#ifndef CONFIG_NFS_V3
1900out_v3_not_compiled:
1901 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1902 return -EPROTONOSUPPORT;
1903#endif /* !CONFIG_NFS_V3 */
1904
Chuck Lever764302c2009-09-08 19:50:03 -04001905#ifndef CONFIG_NFS_V4
1906out_v4_not_compiled:
1907 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
1908 return -EPROTONOSUPPORT;
1909#endif /* !CONFIG_NFS_V4 */
1910
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001911out_nomem:
1912 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
1913 return -ENOMEM;
1914
Chuck Lever5df36e72007-07-01 12:12:56 -04001915out_no_address:
1916 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1917 return -EINVAL;
1918
1919out_invalid_fh:
1920 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1921 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001922}
1923
Jeff Layton48b605f2008-06-10 15:38:39 -04001924static int
1925nfs_compare_remount_data(struct nfs_server *nfss,
1926 struct nfs_parsed_mount_data *data)
1927{
1928 if (data->flags != nfss->flags ||
1929 data->rsize != nfss->rsize ||
1930 data->wsize != nfss->wsize ||
1931 data->retrans != nfss->client->cl_timeout->to_retries ||
1932 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
1933 data->acregmin != nfss->acregmin / HZ ||
1934 data->acregmax != nfss->acregmax / HZ ||
1935 data->acdirmin != nfss->acdirmin / HZ ||
1936 data->acdirmax != nfss->acdirmax / HZ ||
1937 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04001938 data->nfs_server.port != nfss->port ||
Jeff Layton48b605f2008-06-10 15:38:39 -04001939 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
Stefan Richtera1be9ee2009-10-12 11:26:12 -04001940 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
1941 (struct sockaddr *)&nfss->nfs_client->cl_addr))
Jeff Layton48b605f2008-06-10 15:38:39 -04001942 return -EINVAL;
1943
1944 return 0;
1945}
1946
1947static int
1948nfs_remount(struct super_block *sb, int *flags, char *raw_data)
1949{
1950 int error;
1951 struct nfs_server *nfss = sb->s_fs_info;
1952 struct nfs_parsed_mount_data *data;
1953 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
1954 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04001955 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04001956
1957 /*
1958 * Userspace mount programs that send binary options generally send
1959 * them populated with default values. We have no way to know which
1960 * ones were explicitly specified. Fall back to legacy behavior and
1961 * just return success.
1962 */
Marc Zyngier31c94462008-07-17 13:21:55 +02001963 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
1964 (nfsvers <= 3 && (!options || (options->version >= 1 &&
1965 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04001966 return 0;
1967
1968 data = kzalloc(sizeof(*data), GFP_KERNEL);
1969 if (data == NULL)
1970 return -ENOMEM;
1971
1972 /* fill out struct with values from existing mount */
1973 data->flags = nfss->flags;
1974 data->rsize = nfss->rsize;
1975 data->wsize = nfss->wsize;
1976 data->retrans = nfss->client->cl_timeout->to_retries;
1977 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
1978 data->acregmin = nfss->acregmin / HZ;
1979 data->acregmax = nfss->acregmax / HZ;
1980 data->acdirmin = nfss->acdirmin / HZ;
1981 data->acdirmax = nfss->acdirmax / HZ;
1982 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04001983 data->nfs_server.port = nfss->port;
Jeff Layton48b605f2008-06-10 15:38:39 -04001984 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
1985 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
1986 data->nfs_server.addrlen);
1987
1988 /* overwrite those values with any that were specified */
1989 error = nfs_parse_mount_options((char *)options, data);
1990 if (error < 0)
1991 goto out;
1992
1993 /* compare new mount options with old ones */
1994 error = nfs_compare_remount_data(nfss, data);
1995out:
1996 kfree(data);
1997 return error;
1998}
1999
David Howells54ceac42006-08-22 20:06:13 -04002000/*
2001 * Initialise the common bits of the superblock
2002 */
2003static inline void nfs_initialise_sb(struct super_block *sb)
2004{
2005 struct nfs_server *server = NFS_SB(sb);
2006
2007 sb->s_magic = NFS_SUPER_MAGIC;
2008
2009 /* We probably want something more informative here */
2010 snprintf(sb->s_id, sizeof(sb->s_id),
2011 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
2012
2013 if (sb->s_blocksize == 0)
2014 sb->s_blocksize = nfs_block_bits(server->wsize,
2015 &sb->s_blocksize_bits);
2016
2017 if (server->flags & NFS_MOUNT_NOAC)
2018 sb->s_flags |= MS_SYNCHRONOUS;
2019
Jens Axboe32a88aa2009-09-16 15:02:33 +02002020 sb->s_bdi = &server->backing_dev_info;
2021
David Howells54ceac42006-08-22 20:06:13 -04002022 nfs_super_set_maxbytes(sb, server->maxfilesize);
2023}
2024
2025/*
2026 * Finish setting up an NFS2/3 superblock
2027 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04002028static void nfs_fill_super(struct super_block *sb,
2029 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04002030{
2031 struct nfs_server *server = NFS_SB(sb);
2032
2033 sb->s_blocksize_bits = 0;
2034 sb->s_blocksize = 0;
2035 if (data->bsize)
2036 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
2037
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002038 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002039 /* The VFS shouldn't apply the umask to mode bits. We will do
2040 * so ourselves when necessary.
2041 */
2042 sb->s_flags |= MS_POSIXACL;
2043 sb->s_time_gran = 1;
2044 }
2045
2046 sb->s_op = &nfs_sops;
2047 nfs_initialise_sb(sb);
2048}
2049
2050/*
2051 * Finish setting up a cloned NFS2/3 superblock
2052 */
2053static void nfs_clone_super(struct super_block *sb,
2054 const struct super_block *old_sb)
2055{
2056 struct nfs_server *server = NFS_SB(sb);
2057
2058 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2059 sb->s_blocksize = old_sb->s_blocksize;
2060 sb->s_maxbytes = old_sb->s_maxbytes;
2061
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04002062 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04002063 /* The VFS shouldn't apply the umask to mode bits. We will do
2064 * so ourselves when necessary.
2065 */
2066 sb->s_flags |= MS_POSIXACL;
2067 sb->s_time_gran = 1;
2068 }
2069
2070 sb->s_op = old_sb->s_op;
2071 nfs_initialise_sb(sb);
2072}
2073
Trond Myklebust275a5d22007-05-16 16:53:28 -04002074static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
2075{
2076 const struct nfs_server *a = s->s_fs_info;
2077 const struct rpc_clnt *clnt_a = a->client;
2078 const struct rpc_clnt *clnt_b = b->client;
2079
2080 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
2081 goto Ebusy;
2082 if (a->nfs_client != b->nfs_client)
2083 goto Ebusy;
2084 if (a->flags != b->flags)
2085 goto Ebusy;
2086 if (a->wsize != b->wsize)
2087 goto Ebusy;
2088 if (a->rsize != b->rsize)
2089 goto Ebusy;
2090 if (a->acregmin != b->acregmin)
2091 goto Ebusy;
2092 if (a->acregmax != b->acregmax)
2093 goto Ebusy;
2094 if (a->acdirmin != b->acdirmin)
2095 goto Ebusy;
2096 if (a->acdirmax != b->acdirmax)
2097 goto Ebusy;
2098 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2099 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002100 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002101Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002102 return 0;
2103}
2104
2105struct nfs_sb_mountdata {
2106 struct nfs_server *server;
2107 int mntflags;
2108};
2109
2110static int nfs_set_super(struct super_block *s, void *data)
2111{
2112 struct nfs_sb_mountdata *sb_mntdata = data;
2113 struct nfs_server *server = sb_mntdata->server;
2114 int ret;
2115
2116 s->s_flags = sb_mntdata->mntflags;
2117 s->s_fs_info = server;
2118 ret = set_anon_super(s, server);
2119 if (ret == 0)
2120 server->s_dev = s->s_dev;
2121 return ret;
2122}
2123
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002124static int nfs_compare_super_address(struct nfs_server *server1,
2125 struct nfs_server *server2)
2126{
2127 struct sockaddr *sap1, *sap2;
2128
2129 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2130 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2131
2132 if (sap1->sa_family != sap2->sa_family)
2133 return 0;
2134
2135 switch (sap1->sa_family) {
2136 case AF_INET: {
2137 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2138 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2139 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2140 return 0;
2141 if (sin1->sin_port != sin2->sin_port)
2142 return 0;
2143 break;
2144 }
2145 case AF_INET6: {
2146 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2147 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2148 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2149 return 0;
2150 if (sin1->sin6_port != sin2->sin6_port)
2151 return 0;
2152 break;
2153 }
2154 default:
2155 return 0;
2156 }
2157
2158 return 1;
2159}
2160
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002161static int nfs_compare_super(struct super_block *sb, void *data)
2162{
2163 struct nfs_sb_mountdata *sb_mntdata = data;
2164 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2165 int mntflags = sb_mntdata->mntflags;
2166
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002167 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002168 return 0;
2169 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2170 if (old->flags & NFS_MOUNT_UNSHARED)
2171 return 0;
2172 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2173 return 0;
2174 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002175}
2176
Miklos Szeredifa799752008-04-30 00:54:33 -07002177static int nfs_bdi_register(struct nfs_server *server)
2178{
2179 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2180}
2181
David Howells54ceac42006-08-22 20:06:13 -04002182static int nfs_get_sb(struct file_system_type *fs_type,
2183 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2184{
2185 struct nfs_server *server = NULL;
2186 struct super_block *s;
Trond Myklebust33852a12008-06-19 14:20:11 -04002187 struct nfs_parsed_mount_data *data;
2188 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002189 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002190 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002191 struct nfs_sb_mountdata sb_mntdata = {
2192 .mntflags = flags,
2193 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002194 int error = -ENOMEM;
David Howells54ceac42006-08-22 20:06:13 -04002195
Trond Myklebustc5811db2009-10-06 15:40:15 -04002196 data = nfs_alloc_parsed_mount_data(3);
Trond Myklebustb157b062010-04-19 19:05:48 -04002197 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002198 if (data == NULL || mntfh == NULL)
2199 goto out_free_fh;
2200
2201 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002202
David Howells54ceac42006-08-22 20:06:13 -04002203 /* Validate the mount data */
Trond Myklebust33852a12008-06-19 14:20:11 -04002204 error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002205 if (error < 0)
Chuck Lever06559602007-07-01 12:12:35 -04002206 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002207
Chuck Lever764302c2009-09-08 19:50:03 -04002208#ifdef CONFIG_NFS_V4
2209 if (data->version == 4) {
2210 error = nfs4_try_mount(flags, dev_name, data, mnt);
2211 kfree(data->client_address);
Xiaotian Feng9699eda2010-04-22 18:56:17 +08002212 kfree(data->nfs_server.export_path);
Chuck Lever764302c2009-09-08 19:50:03 -04002213 goto out;
2214 }
2215#endif /* CONFIG_NFS_V4 */
2216
David Howells54ceac42006-08-22 20:06:13 -04002217 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002218 server = nfs_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002219 if (IS_ERR(server)) {
2220 error = PTR_ERR(server);
Chuck Lever06559602007-07-01 12:12:35 -04002221 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002222 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002223 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002224
Trond Myklebust75180df2007-05-16 16:53:28 -04002225 if (server->flags & NFS_MOUNT_UNSHARED)
2226 compare_super = NULL;
2227
David Howells54ceac42006-08-22 20:06:13 -04002228 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002229 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002230 if (IS_ERR(s)) {
2231 error = PTR_ERR(s);
David Howells54ceac42006-08-22 20:06:13 -04002232 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002233 }
2234
David Howells54ceac42006-08-22 20:06:13 -04002235 if (s->s_fs_info != server) {
2236 nfs_free_server(server);
2237 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002238 } else {
2239 error = nfs_bdi_register(server);
2240 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002241 goto error_splat_bdi;
David Howellsf7b422b2006-06-09 09:34:33 -04002242 }
David Howells54ceac42006-08-22 20:06:13 -04002243
2244 if (!s->s_root) {
2245 /* initial superblock/root creation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002246 nfs_fill_super(s, data);
David Howells2df54802009-09-23 14:36:39 -04002247 nfs_fscache_get_super_cookie(
2248 s, data ? data->fscache_uniq : NULL, NULL);
David Howells54ceac42006-08-22 20:06:13 -04002249 }
2250
Trond Myklebust33852a12008-06-19 14:20:11 -04002251 mntroot = nfs_get_root(s, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002252 if (IS_ERR(mntroot)) {
2253 error = PTR_ERR(mntroot);
2254 goto error_splat_super;
2255 }
2256
Trond Myklebust33852a12008-06-19 14:20:11 -04002257 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002258 if (error)
2259 goto error_splat_root;
2260
David Howellsf7b422b2006-06-09 09:34:33 -04002261 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002262 mnt->mnt_sb = s;
2263 mnt->mnt_root = mntroot;
Chuck Lever06559602007-07-01 12:12:35 -04002264 error = 0;
2265
2266out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002267 kfree(data->nfs_server.hostname);
2268 kfree(data->mount_server.hostname);
David Howells08734042009-04-03 16:42:42 +01002269 kfree(data->fscache_uniq);
Trond Myklebust33852a12008-06-19 14:20:11 -04002270 security_free_mnt_opts(&data->lsm_opts);
2271out_free_fh:
Trond Myklebustb157b062010-04-19 19:05:48 -04002272 nfs_free_fhandle(mntfh);
Trond Myklebust33852a12008-06-19 14:20:11 -04002273 kfree(data);
Chuck Lever06559602007-07-01 12:12:35 -04002274 return error;
Trond Myklebust816724e2006-06-24 08:41:41 -04002275
David Howells54ceac42006-08-22 20:06:13 -04002276out_err_nosb:
2277 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002278 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002279
Eric Parisf9c3a382008-03-05 14:20:18 -05002280error_splat_root:
2281 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002282error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002283 if (server && !s->s_root)
2284 bdi_unregister(&server->backing_dev_info);
2285error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002286 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002287 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002288}
2289
David Howells54ceac42006-08-22 20:06:13 -04002290/*
Trond Myklebust387c1492010-02-03 08:27:35 -05002291 * Ensure that we unregister the bdi before kill_anon_super
2292 * releases the device name
2293 */
2294static void nfs_put_super(struct super_block *s)
2295{
2296 struct nfs_server *server = NFS_SB(s);
2297
2298 bdi_unregister(&server->backing_dev_info);
2299}
2300
2301/*
David Howells54ceac42006-08-22 20:06:13 -04002302 * Destroy an NFS2/3 superblock
2303 */
David Howellsf7b422b2006-06-09 09:34:33 -04002304static void nfs_kill_super(struct super_block *s)
2305{
2306 struct nfs_server *server = NFS_SB(s);
2307
2308 kill_anon_super(s);
David Howells08734042009-04-03 16:42:42 +01002309 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002310 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002311}
2312
David Howells54ceac42006-08-22 20:06:13 -04002313/*
2314 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2315 */
2316static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
2317 const char *dev_name, void *raw_data,
2318 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002319{
2320 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002321 struct super_block *s;
2322 struct nfs_server *server;
2323 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002324 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002325 struct nfs_sb_mountdata sb_mntdata = {
2326 .mntflags = flags,
2327 };
David Howells54ceac42006-08-22 20:06:13 -04002328 int error;
2329
2330 dprintk("--> nfs_xdev_get_sb()\n");
2331
2332 /* create a new volume representation */
2333 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2334 if (IS_ERR(server)) {
2335 error = PTR_ERR(server);
2336 goto out_err_noserver;
2337 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002338 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002339
Trond Myklebust75180df2007-05-16 16:53:28 -04002340 if (server->flags & NFS_MOUNT_UNSHARED)
2341 compare_super = NULL;
2342
David Howells54ceac42006-08-22 20:06:13 -04002343 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002344 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002345 if (IS_ERR(s)) {
2346 error = PTR_ERR(s);
2347 goto out_err_nosb;
2348 }
2349
2350 if (s->s_fs_info != server) {
2351 nfs_free_server(server);
2352 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002353 } else {
2354 error = nfs_bdi_register(server);
2355 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002356 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04002357 }
2358
2359 if (!s->s_root) {
2360 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002361 nfs_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002362 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002363 }
2364
2365 mntroot = nfs_get_root(s, data->fh);
2366 if (IS_ERR(mntroot)) {
2367 error = PTR_ERR(mntroot);
2368 goto error_splat_super;
2369 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002370 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11002371 dput(mntroot);
2372 error = -ESTALE;
2373 goto error_splat_super;
2374 }
David Howells54ceac42006-08-22 20:06:13 -04002375
2376 s->s_flags |= MS_ACTIVE;
2377 mnt->mnt_sb = s;
2378 mnt->mnt_root = mntroot;
2379
Eric Parisf9c3a382008-03-05 14:20:18 -05002380 /* clone any lsm security options from the parent to the new sb */
2381 security_sb_clone_mnt_opts(data->sb, s);
2382
David Howells54ceac42006-08-22 20:06:13 -04002383 dprintk("<-- nfs_xdev_get_sb() = 0\n");
2384 return 0;
2385
2386out_err_nosb:
2387 nfs_free_server(server);
2388out_err_noserver:
2389 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
2390 return error;
2391
2392error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002393 if (server && !s->s_root)
2394 bdi_unregister(&server->backing_dev_info);
2395error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002396 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002397 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
2398 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002399}
2400
2401#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04002402
2403/*
2404 * Finish setting up a cloned NFS4 superblock
2405 */
2406static void nfs4_clone_super(struct super_block *sb,
2407 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002408{
David Howells54ceac42006-08-22 20:06:13 -04002409 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2410 sb->s_blocksize = old_sb->s_blocksize;
2411 sb->s_maxbytes = old_sb->s_maxbytes;
2412 sb->s_time_gran = 1;
2413 sb->s_op = old_sb->s_op;
2414 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002415}
2416
2417/*
2418 * Set up an NFS4 superblock
2419 */
David Howells54ceac42006-08-22 20:06:13 -04002420static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002421{
David Howellsf7b422b2006-06-09 09:34:33 -04002422 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04002423 sb->s_op = &nfs4_sops;
David Howells54ceac42006-08-22 20:06:13 -04002424 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002425}
2426
Trond Myklebust01c3f052009-06-17 13:22:58 -07002427static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2428{
2429 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3);
2430}
2431
Chuck Lever7630c852009-09-08 19:49:57 -04002432static int nfs4_validate_text_mount_data(void *options,
2433 struct nfs_parsed_mount_data *args,
2434 const char *dev_name)
2435{
2436 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2437
Trond Myklebustf5855fe2009-10-06 15:40:37 -04002438 nfs_set_port(sap, &args->nfs_server.port, NFS_PORT);
Chuck Lever7630c852009-09-08 19:49:57 -04002439
2440 nfs_validate_transport_protocol(args);
2441
2442 nfs4_validate_mount_flags(args);
2443
Trond Myklebust2ecda722009-09-08 19:50:07 -04002444 if (args->version != 4) {
2445 dfprintk(MOUNT,
2446 "NFS4: Illegal mount version\n");
2447 return -EINVAL;
2448 }
2449
Chuck Lever7630c852009-09-08 19:49:57 -04002450 if (args->auth_flavor_len > 1) {
2451 dfprintk(MOUNT,
2452 "NFS4: Too many RPC auth flavours specified\n");
2453 return -EINVAL;
2454 }
2455
2456 if (args->client_address == NULL) {
2457 dfprintk(MOUNT,
2458 "NFS4: mount program didn't pass callback address\n");
2459 return -EINVAL;
2460 }
2461
2462 return nfs_parse_devname(dev_name,
2463 &args->nfs_server.hostname,
2464 NFS4_MAXNAMLEN,
2465 &args->nfs_server.export_path,
2466 NFS4_MAXPATHLEN);
2467}
2468
David Howells54ceac42006-08-22 20:06:13 -04002469/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002470 * Validate NFSv4 mount options
2471 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002472static int nfs4_validate_mount_data(void *options,
2473 struct nfs_parsed_mount_data *args,
2474 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002475{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002476 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002477 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002478 char *c;
2479
2480 if (data == NULL)
2481 goto out_no_data;
2482
2483 switch (data->version) {
2484 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002485 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002486 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002487 if (data->host_addrlen == 0)
2488 goto out_no_address;
2489 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002490 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002491 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002492 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002493 goto out_no_address;
2494
Chuck Lever6738b252008-06-24 16:33:54 -04002495 if (data->auth_flavourlen) {
2496 if (data->auth_flavourlen > 1)
2497 goto out_inval_auth;
Trond Myklebust20c71f52007-09-20 20:23:51 -04002498 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002499 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04002500 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002501 return -EFAULT;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002502 }
2503
2504 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2505 if (IS_ERR(c))
2506 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002507 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002508
2509 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2510 if (IS_ERR(c))
2511 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002512 args->nfs_server.export_path = c;
2513 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002514
2515 c = strndup_user(data->client_addr.data, 16);
2516 if (IS_ERR(c))
2517 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002518 args->client_address = c;
2519
2520 /*
2521 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2522 * can deal with.
2523 */
2524
2525 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2526 args->rsize = data->rsize;
2527 args->wsize = data->wsize;
2528 args->timeo = data->timeo;
2529 args->retrans = data->retrans;
2530 args->acregmin = data->acregmin;
2531 args->acregmax = data->acregmax;
2532 args->acdirmin = data->acdirmin;
2533 args->acdirmax = data->acdirmax;
2534 args->nfs_server.protocol = data->proto;
Trond Myklebust259875e2008-07-02 14:43:47 -04002535 nfs_validate_transport_protocol(args);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002536
2537 break;
Chuck Lever7630c852009-09-08 19:49:57 -04002538 default:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002539 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04002540 return -EINVAL;
2541
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002542 if (!nfs_verify_server_address(sap))
Chuck Lever80071222007-07-01 12:13:59 -04002543 return -EINVAL;
Chuck Levered596a82008-06-26 17:47:05 -04002544
Chuck Lever7630c852009-09-08 19:49:57 -04002545 return nfs4_validate_text_mount_data(options, args, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002546 }
2547
2548 return 0;
2549
2550out_no_data:
2551 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2552 return -EINVAL;
2553
2554out_inval_auth:
2555 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2556 data->auth_flavourlen);
2557 return -EINVAL;
2558
2559out_no_address:
2560 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2561 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002562}
2563
2564/*
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002565 * Get the superblock for the NFS4 root partition
David Howells54ceac42006-08-22 20:06:13 -04002566 */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002567static int nfs4_remote_get_sb(struct file_system_type *fs_type,
Trond Myklebust816724e2006-06-24 08:41:41 -04002568 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002569{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002570 struct nfs_parsed_mount_data *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002571 struct super_block *s;
2572 struct nfs_server *server;
Trond Myklebust33852a12008-06-19 14:20:11 -04002573 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002574 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002575 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002576 struct nfs_sb_mountdata sb_mntdata = {
2577 .mntflags = flags,
2578 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002579 int error = -ENOMEM;
David Howellsf7b422b2006-06-09 09:34:33 -04002580
Trond Myklebustb157b062010-04-19 19:05:48 -04002581 mntfh = nfs_alloc_fhandle();
Trond Myklebust33852a12008-06-19 14:20:11 -04002582 if (data == NULL || mntfh == NULL)
2583 goto out_free_fh;
2584
2585 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002586
David Howells54ceac42006-08-22 20:06:13 -04002587 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002588 server = nfs4_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002589 if (IS_ERR(server)) {
2590 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04002591 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002592 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002593 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04002594
Trond Myklebust75180df2007-05-16 16:53:28 -04002595 if (server->flags & NFS4_MOUNT_UNSHARED)
2596 compare_super = NULL;
2597
David Howells54ceac42006-08-22 20:06:13 -04002598 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002599 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002600 if (IS_ERR(s)) {
2601 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04002602 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04002603 }
2604
Trond Myklebust5dd31772006-08-24 01:03:05 -04002605 if (s->s_fs_info != server) {
2606 nfs_free_server(server);
2607 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002608 } else {
2609 error = nfs_bdi_register(server);
2610 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002611 goto error_splat_bdi;
Trond Myklebust5dd31772006-08-24 01:03:05 -04002612 }
2613
David Howells54ceac42006-08-22 20:06:13 -04002614 if (!s->s_root) {
2615 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002616 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04002617 nfs_fscache_get_super_cookie(
2618 s, data ? data->fscache_uniq : NULL, NULL);
Trond Myklebust816724e2006-06-24 08:41:41 -04002619 }
David Howellsf7b422b2006-06-09 09:34:33 -04002620
Trond Myklebust33852a12008-06-19 14:20:11 -04002621 mntroot = nfs4_get_root(s, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002622 if (IS_ERR(mntroot)) {
2623 error = PTR_ERR(mntroot);
2624 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002625 }
David Howells54ceac42006-08-22 20:06:13 -04002626
Trond Myklebust33852a12008-06-19 14:20:11 -04002627 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Paris46c8ac72008-05-02 13:42:42 -07002628 if (error)
2629 goto error_splat_root;
2630
David Howellsf7b422b2006-06-09 09:34:33 -04002631 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002632 mnt->mnt_sb = s;
2633 mnt->mnt_root = mntroot;
Chuck Lever29eb9812007-07-01 12:12:30 -04002634 error = 0;
David Howells54ceac42006-08-22 20:06:13 -04002635
Chuck Lever29eb9812007-07-01 12:12:30 -04002636out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002637 security_free_mnt_opts(&data->lsm_opts);
2638out_free_fh:
Trond Myklebustb157b062010-04-19 19:05:48 -04002639 nfs_free_fhandle(mntfh);
Trond Myklebust816724e2006-06-24 08:41:41 -04002640 return error;
David Howells54ceac42006-08-22 20:06:13 -04002641
Chuck Lever29eb9812007-07-01 12:12:30 -04002642out_free:
2643 nfs_free_server(server);
2644 goto out;
2645
Eric Paris46c8ac72008-05-02 13:42:42 -07002646error_splat_root:
2647 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002648error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002649 if (server && !s->s_root)
2650 bdi_unregister(&server->backing_dev_info);
2651error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002652 deactivate_locked_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04002653 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002654}
2655
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002656static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type,
2657 int flags, void *data, const char *hostname)
2658{
2659 struct vfsmount *root_mnt;
2660 char *root_devname;
2661 size_t len;
2662
2663 len = strlen(hostname) + 3;
2664 root_devname = kmalloc(len, GFP_KERNEL);
2665 if (root_devname == NULL)
2666 return ERR_PTR(-ENOMEM);
2667 snprintf(root_devname, len, "%s:/", hostname);
2668 root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data);
2669 kfree(root_devname);
2670 return root_mnt;
2671}
2672
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002673static void nfs_fix_devname(const struct path *path, struct vfsmount *mnt)
2674{
2675 char *page = (char *) __get_free_page(GFP_KERNEL);
2676 char *devname, *tmp;
2677
2678 if (page == NULL)
2679 return;
2680 devname = nfs_path(path->mnt->mnt_devname,
2681 path->mnt->mnt_root, path->dentry,
2682 page, PAGE_SIZE);
Dan Carpentercdd29ec2010-04-22 15:35:56 -04002683 if (IS_ERR(devname))
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002684 goto out_freepage;
2685 tmp = kstrdup(devname, GFP_KERNEL);
2686 if (tmp == NULL)
2687 goto out_freepage;
2688 kfree(mnt->mnt_devname);
2689 mnt->mnt_devname = tmp;
2690out_freepage:
2691 free_page((unsigned long)page);
2692}
2693
Trond Myklebustce587e02010-04-16 16:22:52 -04002694struct nfs_referral_count {
2695 struct list_head list;
2696 const struct task_struct *task;
2697 unsigned int referral_count;
2698};
2699
2700static LIST_HEAD(nfs_referral_count_list);
2701static DEFINE_SPINLOCK(nfs_referral_count_list_lock);
2702
2703static struct nfs_referral_count *nfs_find_referral_count(void)
2704{
2705 struct nfs_referral_count *p;
2706
2707 list_for_each_entry(p, &nfs_referral_count_list, list) {
2708 if (p->task == current)
2709 return p;
2710 }
2711 return NULL;
2712}
2713
2714#define NFS_MAX_NESTED_REFERRALS 2
2715
2716static int nfs_referral_loop_protect(void)
2717{
2718 struct nfs_referral_count *p, *new;
2719 int ret = -ENOMEM;
2720
2721 new = kmalloc(sizeof(*new), GFP_KERNEL);
2722 if (!new)
2723 goto out;
2724 new->task = current;
2725 new->referral_count = 1;
2726
2727 ret = 0;
2728 spin_lock(&nfs_referral_count_list_lock);
2729 p = nfs_find_referral_count();
2730 if (p != NULL) {
2731 if (p->referral_count >= NFS_MAX_NESTED_REFERRALS)
2732 ret = -ELOOP;
2733 else
2734 p->referral_count++;
2735 } else {
2736 list_add(&new->list, &nfs_referral_count_list);
2737 new = NULL;
2738 }
2739 spin_unlock(&nfs_referral_count_list_lock);
2740 kfree(new);
2741out:
2742 return ret;
2743}
2744
2745static void nfs_referral_loop_unprotect(void)
2746{
2747 struct nfs_referral_count *p;
2748
2749 spin_lock(&nfs_referral_count_list_lock);
2750 p = nfs_find_referral_count();
2751 p->referral_count--;
2752 if (p->referral_count == 0)
2753 list_del(&p->list);
2754 else
2755 p = NULL;
2756 spin_unlock(&nfs_referral_count_list_lock);
2757 kfree(p);
2758}
2759
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002760static int nfs_follow_remote_path(struct vfsmount *root_mnt,
2761 const char *export_path, struct vfsmount *mnt_target)
2762{
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002763 struct nameidata *nd = NULL;
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002764 struct mnt_namespace *ns_private;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002765 struct super_block *s;
2766 int ret;
2767
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002768 nd = kmalloc(sizeof(*nd), GFP_KERNEL);
2769 if (nd == NULL)
2770 return -ENOMEM;
2771
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002772 ns_private = create_mnt_ns(root_mnt);
2773 ret = PTR_ERR(ns_private);
2774 if (IS_ERR(ns_private))
2775 goto out_mntput;
2776
Trond Myklebustce587e02010-04-16 16:22:52 -04002777 ret = nfs_referral_loop_protect();
2778 if (ret != 0)
2779 goto out_put_mnt_ns;
2780
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002781 ret = vfs_path_lookup(root_mnt->mnt_root, root_mnt,
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002782 export_path, LOOKUP_FOLLOW, nd);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002783
Trond Myklebustce587e02010-04-16 16:22:52 -04002784 nfs_referral_loop_unprotect();
Linus Torvaldsa2770d82009-12-17 12:51:05 -08002785 put_mnt_ns(ns_private);
2786
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002787 if (ret != 0)
2788 goto out_err;
2789
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002790 s = nd->path.mnt->mnt_sb;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002791 atomic_inc(&s->s_active);
2792 mnt_target->mnt_sb = s;
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002793 mnt_target->mnt_root = dget(nd->path.dentry);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002794
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002795 /* Correct the device pathname */
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002796 nfs_fix_devname(&nd->path, mnt_target);
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002797
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002798 path_put(&nd->path);
2799 kfree(nd);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002800 down_write(&s->s_umount);
2801 return 0;
Trond Myklebustce587e02010-04-16 16:22:52 -04002802out_put_mnt_ns:
2803 put_mnt_ns(ns_private);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002804out_mntput:
2805 mntput(root_mnt);
2806out_err:
Trond Myklebust04ffdbe2010-04-16 16:22:48 -04002807 kfree(nd);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002808 return ret;
2809}
2810
Chuck Levera6fe23b2009-09-08 19:50:00 -04002811static int nfs4_try_mount(int flags, const char *dev_name,
2812 struct nfs_parsed_mount_data *data,
2813 struct vfsmount *mnt)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002814{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002815 char *export_path;
2816 struct vfsmount *root_mnt;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002817 int error;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002818
Chuck Levera6fe23b2009-09-08 19:50:00 -04002819 dfprintk(MOUNT, "--> nfs4_try_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002820
2821 export_path = data->nfs_server.export_path;
2822 data->nfs_server.export_path = "/";
2823 root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data,
2824 data->nfs_server.hostname);
2825 data->nfs_server.export_path = export_path;
2826
2827 error = PTR_ERR(root_mnt);
2828 if (IS_ERR(root_mnt))
2829 goto out;
2830
2831 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
2832
2833out:
Chuck Levera6fe23b2009-09-08 19:50:00 -04002834 dfprintk(MOUNT, "<-- nfs4_try_mount() = %d%s\n", error,
2835 error != 0 ? " [error]" : "");
2836 return error;
2837}
2838
2839/*
2840 * Get the superblock for an NFS4 mountpoint
2841 */
2842static int nfs4_get_sb(struct file_system_type *fs_type,
2843 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2844{
2845 struct nfs_parsed_mount_data *data;
2846 int error = -ENOMEM;
2847
Trond Myklebustc5811db2009-10-06 15:40:15 -04002848 data = nfs_alloc_parsed_mount_data(4);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002849 if (data == NULL)
2850 goto out_free_data;
2851
2852 /* Validate the mount data */
2853 error = nfs4_validate_mount_data(raw_data, data, dev_name);
2854 if (error < 0)
2855 goto out;
2856
2857 error = nfs4_try_mount(flags, dev_name, data, mnt);
2858
2859out:
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002860 kfree(data->client_address);
2861 kfree(data->nfs_server.export_path);
2862 kfree(data->nfs_server.hostname);
2863 kfree(data->fscache_uniq);
2864out_free_data:
2865 kfree(data);
2866 dprintk("<-- nfs4_get_sb() = %d%s\n", error,
2867 error != 0 ? " [error]" : "");
2868 return error;
2869}
2870
David Howellsf7b422b2006-06-09 09:34:33 -04002871static void nfs4_kill_super(struct super_block *sb)
2872{
2873 struct nfs_server *server = NFS_SB(sb);
2874
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002875 dprintk("--> %s\n", __func__);
Trond Myklebust515d8612008-12-23 15:21:46 -05002876 nfs_super_return_all_delegations(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002877 kill_anon_super(sb);
David Howells08734042009-04-03 16:42:42 +01002878 nfs_fscache_release_super_cookie(sb);
David Howells54ceac42006-08-22 20:06:13 -04002879 nfs_free_server(server);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002880 dprintk("<-- %s\n", __func__);
David Howellsf7b422b2006-06-09 09:34:33 -04002881}
2882
2883/*
David Howells54ceac42006-08-22 20:06:13 -04002884 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04002885 */
David Howells54ceac42006-08-22 20:06:13 -04002886static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
2887 const char *dev_name, void *raw_data,
2888 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002889{
2890 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002891 struct super_block *s;
2892 struct nfs_server *server;
2893 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002894 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002895 struct nfs_sb_mountdata sb_mntdata = {
2896 .mntflags = flags,
2897 };
David Howells54ceac42006-08-22 20:06:13 -04002898 int error;
2899
2900 dprintk("--> nfs4_xdev_get_sb()\n");
2901
2902 /* create a new volume representation */
2903 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2904 if (IS_ERR(server)) {
2905 error = PTR_ERR(server);
2906 goto out_err_noserver;
2907 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002908 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002909
Trond Myklebust75180df2007-05-16 16:53:28 -04002910 if (server->flags & NFS4_MOUNT_UNSHARED)
2911 compare_super = NULL;
2912
David Howells54ceac42006-08-22 20:06:13 -04002913 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04002914 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002915 if (IS_ERR(s)) {
2916 error = PTR_ERR(s);
2917 goto out_err_nosb;
2918 }
2919
2920 if (s->s_fs_info != server) {
2921 nfs_free_server(server);
2922 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002923 } else {
2924 error = nfs_bdi_register(server);
2925 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11002926 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04002927 }
2928
2929 if (!s->s_root) {
2930 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002931 nfs4_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002932 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002933 }
2934
2935 mntroot = nfs4_get_root(s, data->fh);
2936 if (IS_ERR(mntroot)) {
2937 error = PTR_ERR(mntroot);
2938 goto error_splat_super;
2939 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002940 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2941 dput(mntroot);
2942 error = -ESTALE;
2943 goto error_splat_super;
2944 }
David Howells54ceac42006-08-22 20:06:13 -04002945
2946 s->s_flags |= MS_ACTIVE;
2947 mnt->mnt_sb = s;
2948 mnt->mnt_root = mntroot;
2949
Eric Paris46c8ac72008-05-02 13:42:42 -07002950 security_sb_clone_mnt_opts(data->sb, s);
2951
David Howells54ceac42006-08-22 20:06:13 -04002952 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
2953 return 0;
2954
2955out_err_nosb:
2956 nfs_free_server(server);
2957out_err_noserver:
2958 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
2959 return error;
2960
2961error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11002962 if (server && !s->s_root)
2963 bdi_unregister(&server->backing_dev_info);
2964error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04002965 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002966 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
2967 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002968}
2969
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002970static int nfs4_remote_referral_get_sb(struct file_system_type *fs_type,
2971 int flags, const char *dev_name, void *raw_data,
2972 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002973{
2974 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002975 struct super_block *s;
2976 struct nfs_server *server;
2977 struct dentry *mntroot;
Trond Myklebust4f727292010-04-16 16:22:48 -04002978 struct nfs_fh *mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04002979 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002980 struct nfs_sb_mountdata sb_mntdata = {
2981 .mntflags = flags,
2982 };
Trond Myklebust4f727292010-04-16 16:22:48 -04002983 int error = -ENOMEM;
David Howells54ceac42006-08-22 20:06:13 -04002984
2985 dprintk("--> nfs4_referral_get_sb()\n");
2986
Trond Myklebust4f727292010-04-16 16:22:48 -04002987 mntfh = nfs_alloc_fhandle();
2988 if (mntfh == NULL)
2989 goto out_err_nofh;
2990
David Howells54ceac42006-08-22 20:06:13 -04002991 /* create a new volume representation */
Trond Myklebust4f727292010-04-16 16:22:48 -04002992 server = nfs4_create_referral_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002993 if (IS_ERR(server)) {
2994 error = PTR_ERR(server);
2995 goto out_err_noserver;
2996 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002997 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002998
Trond Myklebust75180df2007-05-16 16:53:28 -04002999 if (server->flags & NFS4_MOUNT_UNSHARED)
3000 compare_super = NULL;
3001
David Howells54ceac42006-08-22 20:06:13 -04003002 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04003003 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04003004 if (IS_ERR(s)) {
3005 error = PTR_ERR(s);
3006 goto out_err_nosb;
3007 }
3008
3009 if (s->s_fs_info != server) {
3010 nfs_free_server(server);
3011 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07003012 } else {
3013 error = nfs_bdi_register(server);
3014 if (error)
NeilBrowncfbc0682010-03-11 11:20:17 +11003015 goto error_splat_bdi;
David Howells54ceac42006-08-22 20:06:13 -04003016 }
3017
3018 if (!s->s_root) {
3019 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04003020 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04003021 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04003022 }
3023
Trond Myklebust4f727292010-04-16 16:22:48 -04003024 mntroot = nfs4_get_root(s, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003025 if (IS_ERR(mntroot)) {
3026 error = PTR_ERR(mntroot);
3027 goto error_splat_super;
3028 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05003029 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
3030 dput(mntroot);
3031 error = -ESTALE;
3032 goto error_splat_super;
3033 }
David Howells54ceac42006-08-22 20:06:13 -04003034
3035 s->s_flags |= MS_ACTIVE;
3036 mnt->mnt_sb = s;
3037 mnt->mnt_root = mntroot;
3038
Eric Paris46c8ac72008-05-02 13:42:42 -07003039 security_sb_clone_mnt_opts(data->sb, s);
3040
Trond Myklebust4f727292010-04-16 16:22:48 -04003041 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003042 dprintk("<-- nfs4_referral_get_sb() = 0\n");
3043 return 0;
3044
3045out_err_nosb:
3046 nfs_free_server(server);
3047out_err_noserver:
Trond Myklebust4f727292010-04-16 16:22:48 -04003048 nfs_free_fhandle(mntfh);
3049out_err_nofh:
David Howells54ceac42006-08-22 20:06:13 -04003050 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
3051 return error;
3052
3053error_splat_super:
NeilBrowncfbc0682010-03-11 11:20:17 +11003054 if (server && !s->s_root)
3055 bdi_unregister(&server->backing_dev_info);
3056error_splat_bdi:
Al Viro6f5bbff2009-05-06 01:34:22 -04003057 deactivate_locked_super(s);
Trond Myklebust4f727292010-04-16 16:22:48 -04003058 nfs_free_fhandle(mntfh);
David Howells54ceac42006-08-22 20:06:13 -04003059 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
3060 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04003061}
3062
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04003063/*
3064 * Create an NFS4 server record on referral traversal
3065 */
3066static int nfs4_referral_get_sb(struct file_system_type *fs_type,
3067 int flags, const char *dev_name, void *raw_data,
3068 struct vfsmount *mnt)
3069{
3070 struct nfs_clone_mount *data = raw_data;
3071 char *export_path;
3072 struct vfsmount *root_mnt;
3073 int error;
3074
3075 dprintk("--> nfs4_referral_get_sb()\n");
3076
3077 export_path = data->mnt_path;
3078 data->mnt_path = "/";
3079
3080 root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type,
3081 flags, data, data->hostname);
3082 data->mnt_path = export_path;
3083
3084 error = PTR_ERR(root_mnt);
3085 if (IS_ERR(root_mnt))
3086 goto out;
3087
3088 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
3089out:
3090 dprintk("<-- nfs4_referral_get_sb() = %d%s\n", error,
3091 error != 0 ? " [error]" : "");
3092 return error;
3093}
3094
David Howells54ceac42006-08-22 20:06:13 -04003095#endif /* CONFIG_NFS_V4 */