blob: f1cc0587cfef3f2a02fe8c22b5226b014e0321a2 [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>
51#include <net/ipv6.h>
Chuck Leverd8e77482008-06-23 12:37:01 -040052#include <linux/netdevice.h>
David Howellsf7b422b2006-06-09 09:34:33 -040053#include <linux/nfs_xdr.h>
Adrian Bunkb5d5dfb2007-02-12 00:53:40 -080054#include <linux/magic.h>
Chuck Leverbf0fd762007-07-01 12:13:44 -040055#include <linux/parser.h>
David Howellsf7b422b2006-06-09 09:34:33 -040056
57#include <asm/system.h>
58#include <asm/uaccess.h>
59
60#include "nfs4_fs.h"
61#include "callback.h"
62#include "delegation.h"
63#include "iostat.h"
64#include "internal.h"
David Howells08734042009-04-03 16:42:42 +010065#include "fscache.h"
David Howellsf7b422b2006-06-09 09:34:33 -040066
67#define NFSDBG_FACILITY NFSDBG_VFS
68
Chuck Leverbf0fd762007-07-01 12:13:44 -040069enum {
70 /* Mount options that take no arguments */
71 Opt_soft, Opt_hard,
Chuck Leverbf0fd762007-07-01 12:13:44 -040072 Opt_posix, Opt_noposix,
73 Opt_cto, Opt_nocto,
74 Opt_ac, Opt_noac,
75 Opt_lock, Opt_nolock,
Chuck Lever764302c2009-09-08 19:50:03 -040076 Opt_v2, Opt_v3, Opt_v4,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040077 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040078 Opt_acl, Opt_noacl,
79 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040080 Opt_sharecache, Opt_nosharecache,
Chuck Leverd7403512008-12-23 15:21:37 -050081 Opt_resvport, Opt_noresvport,
David Howellsb797cac2009-04-03 16:42:48 +010082 Opt_fscache, Opt_nofscache,
Chuck Leverbf0fd762007-07-01 12:13:44 -040083
84 /* Mount options that take integer arguments */
85 Opt_port,
86 Opt_rsize, Opt_wsize, Opt_bsize,
87 Opt_timeo, Opt_retrans,
88 Opt_acregmin, Opt_acregmax,
89 Opt_acdirmin, Opt_acdirmax,
90 Opt_actimeo,
91 Opt_namelen,
92 Opt_mountport,
Chuck Levere887cbc2007-10-26 13:32:29 -040093 Opt_mountvers,
Chuck Leverad879ce2007-10-26 13:32:24 -040094 Opt_nfsvers,
Mike Sager3fd5be92009-04-01 09:21:48 -040095 Opt_minorversion,
Chuck Leverbf0fd762007-07-01 12:13:44 -040096
97 /* Mount options that take string arguments */
Chuck Lever33832032007-12-10 14:59:13 -050098 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
Chuck Lever0ac83772007-09-11 18:01:04 -040099 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400100 Opt_lookupcache,
David Howellsb797cac2009-04-03 16:42:48 +0100101 Opt_fscache_uniq,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400102
Chuck Leverf45663c2008-06-24 19:28:02 -0400103 /* Special mount options */
104 Opt_userspace, Opt_deprecated, Opt_sloppy,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400105
106 Opt_err
107};
108
Steven Whitehousea447c092008-10-13 10:46:57 +0100109static const match_table_t nfs_mount_option_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400110 { Opt_userspace, "bg" },
111 { Opt_userspace, "fg" },
Chuck Leverecbb3842008-06-12 12:37:33 -0400112 { Opt_userspace, "retry=%s" },
113
Chuck Leverf45663c2008-06-24 19:28:02 -0400114 { Opt_sloppy, "sloppy" },
115
Chuck Leverbf0fd762007-07-01 12:13:44 -0400116 { Opt_soft, "soft" },
117 { Opt_hard, "hard" },
Chuck Leverd33e4df2008-06-12 12:37:41 -0400118 { Opt_deprecated, "intr" },
119 { Opt_deprecated, "nointr" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400120 { Opt_posix, "posix" },
121 { Opt_noposix, "noposix" },
122 { Opt_cto, "cto" },
123 { Opt_nocto, "nocto" },
124 { Opt_ac, "ac" },
125 { Opt_noac, "noac" },
126 { Opt_lock, "lock" },
127 { Opt_nolock, "nolock" },
128 { Opt_v2, "v2" },
129 { Opt_v3, "v3" },
Chuck Lever764302c2009-09-08 19:50:03 -0400130 { Opt_v4, "v4" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400131 { Opt_udp, "udp" },
132 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400133 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400134 { Opt_acl, "acl" },
135 { Opt_noacl, "noacl" },
136 { Opt_rdirplus, "rdirplus" },
137 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400138 { Opt_sharecache, "sharecache" },
139 { Opt_nosharecache, "nosharecache" },
Chuck Leverd7403512008-12-23 15:21:37 -0500140 { Opt_resvport, "resvport" },
141 { Opt_noresvport, "noresvport" },
David Howellsb797cac2009-04-03 16:42:48 +0100142 { Opt_fscache, "fsc" },
143 { Opt_fscache_uniq, "fsc=%s" },
144 { 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" },
173
Chuck Leverbf0fd762007-07-01 12:13:44 -0400174 { Opt_err, NULL }
175};
176
177enum {
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400178 Opt_xprt_udp, Opt_xprt_tcp, Opt_xprt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400179
180 Opt_xprt_err
181};
182
Steven Whitehousea447c092008-10-13 10:46:57 +0100183static const match_table_t nfs_xprt_protocol_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400184 { Opt_xprt_udp, "udp" },
185 { Opt_xprt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400186 { Opt_xprt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400187
188 { Opt_xprt_err, NULL }
189};
190
191enum {
192 Opt_sec_none, Opt_sec_sys,
193 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
194 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
195 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
196
197 Opt_sec_err
198};
199
Steven Whitehousea447c092008-10-13 10:46:57 +0100200static const match_table_t nfs_secflavor_tokens = {
Chuck Leverbf0fd762007-07-01 12:13:44 -0400201 { Opt_sec_none, "none" },
202 { Opt_sec_none, "null" },
203 { Opt_sec_sys, "sys" },
204
205 { Opt_sec_krb5, "krb5" },
206 { Opt_sec_krb5i, "krb5i" },
207 { Opt_sec_krb5p, "krb5p" },
208
209 { Opt_sec_lkey, "lkey" },
210 { Opt_sec_lkeyi, "lkeyi" },
211 { Opt_sec_lkeyp, "lkeyp" },
212
Olga Kornievskaia8d042212008-02-13 16:47:06 -0500213 { Opt_sec_spkm, "spkm3" },
214 { Opt_sec_spkmi, "spkm3i" },
215 { Opt_sec_spkmp, "spkm3p" },
216
Chuck Leverbf0fd762007-07-01 12:13:44 -0400217 { Opt_sec_err, NULL }
218};
219
Trond Myklebust7973c1f2008-07-15 17:58:14 -0400220enum {
221 Opt_lookupcache_all, Opt_lookupcache_positive,
222 Opt_lookupcache_none,
223
224 Opt_lookupcache_err
225};
226
227static match_table_t nfs_lookupcache_tokens = {
228 { Opt_lookupcache_all, "all" },
229 { Opt_lookupcache_positive, "pos" },
230 { Opt_lookupcache_positive, "positive" },
231 { Opt_lookupcache_none, "none" },
232
233 { Opt_lookupcache_err, NULL }
234};
235
Chuck Leverbf0fd762007-07-01 12:13:44 -0400236
Al Viro42faad92008-04-24 07:21:56 -0400237static void nfs_umount_begin(struct super_block *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400238static int nfs_statfs(struct dentry *, struct kstatfs *);
David Howellsf7b422b2006-06-09 09:34:33 -0400239static int nfs_show_options(struct seq_file *, struct vfsmount *);
240static int nfs_show_stats(struct seq_file *, struct vfsmount *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400241static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
David Howells54ceac42006-08-22 20:06:13 -0400242static int nfs_xdev_get_sb(struct file_system_type *fs_type,
Trond Myklebust816724e2006-06-24 08:41:41 -0400243 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400244static void nfs_kill_super(struct super_block *);
Jeff Layton48b605f2008-06-10 15:38:39 -0400245static int nfs_remount(struct super_block *sb, int *flags, char *raw_data);
David Howellsf7b422b2006-06-09 09:34:33 -0400246
247static struct file_system_type nfs_fs_type = {
248 .owner = THIS_MODULE,
249 .name = "nfs",
250 .get_sb = nfs_get_sb,
251 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700252 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400253};
254
David Howells54ceac42006-08-22 20:06:13 -0400255struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400256 .owner = THIS_MODULE,
257 .name = "nfs",
David Howells54ceac42006-08-22 20:06:13 -0400258 .get_sb = nfs_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400259 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700260 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400261};
262
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800263static const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400264 .alloc_inode = nfs_alloc_inode,
265 .destroy_inode = nfs_destroy_inode,
266 .write_inode = nfs_write_inode,
267 .statfs = nfs_statfs,
268 .clear_inode = nfs_clear_inode,
269 .umount_begin = nfs_umount_begin,
270 .show_options = nfs_show_options,
271 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400272 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400273};
274
275#ifdef CONFIG_NFS_V4
Chuck Lever7630c852009-09-08 19:49:57 -0400276static int nfs4_validate_text_mount_data(void *options,
277 struct nfs_parsed_mount_data *args, const char *dev_name);
Chuck Levera6fe23b2009-09-08 19:50:00 -0400278static int nfs4_try_mount(int flags, const char *dev_name,
279 struct nfs_parsed_mount_data *data, struct vfsmount *mnt);
Trond Myklebust816724e2006-06-24 08:41:41 -0400280static int nfs4_get_sb(struct file_system_type *fs_type,
281 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400282static int nfs4_remote_get_sb(struct file_system_type *fs_type,
283 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howells54ceac42006-08-22 20:06:13 -0400284static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
285 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
286static int nfs4_referral_get_sb(struct file_system_type *fs_type,
287 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400288static int nfs4_remote_referral_get_sb(struct file_system_type *fs_type,
289 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400290static void nfs4_kill_super(struct super_block *sb);
291
292static struct file_system_type nfs4_fs_type = {
293 .owner = THIS_MODULE,
294 .name = "nfs4",
295 .get_sb = nfs4_get_sb,
296 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700297 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400298};
299
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400300static struct file_system_type nfs4_remote_fs_type = {
301 .owner = THIS_MODULE,
302 .name = "nfs4",
303 .get_sb = nfs4_remote_get_sb,
304 .kill_sb = nfs4_kill_super,
305 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
306};
307
David Howells54ceac42006-08-22 20:06:13 -0400308struct file_system_type nfs4_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400309 .owner = THIS_MODULE,
310 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400311 .get_sb = nfs4_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400312 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700313 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400314};
315
Trond Myklebustc02d7ad2009-06-22 15:09:14 -0400316static struct file_system_type nfs4_remote_referral_fs_type = {
317 .owner = THIS_MODULE,
318 .name = "nfs4",
319 .get_sb = nfs4_remote_referral_get_sb,
320 .kill_sb = nfs4_kill_super,
321 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
322};
323
David Howells54ceac42006-08-22 20:06:13 -0400324struct file_system_type nfs4_referral_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400325 .owner = THIS_MODULE,
326 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400327 .get_sb = nfs4_referral_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400328 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700329 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400330};
331
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800332static const struct super_operations nfs4_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400333 .alloc_inode = nfs_alloc_inode,
334 .destroy_inode = nfs_destroy_inode,
335 .write_inode = nfs_write_inode,
336 .statfs = nfs_statfs,
337 .clear_inode = nfs4_clear_inode,
338 .umount_begin = nfs_umount_begin,
339 .show_options = nfs_show_options,
340 .show_stats = nfs_show_stats,
Jeff Layton48b605f2008-06-10 15:38:39 -0400341 .remount_fs = nfs_remount,
David Howellsf7b422b2006-06-09 09:34:33 -0400342};
343#endif
344
Rusty Russell8e1f9362007-07-17 04:03:17 -0700345static struct shrinker acl_shrinker = {
346 .shrink = nfs_access_cache_shrinker,
347 .seeks = DEFAULT_SEEKS,
348};
Trond Myklebust979df722006-07-25 11:28:19 -0400349
David Howellsf7b422b2006-06-09 09:34:33 -0400350/*
351 * Register the NFS filesystems
352 */
353int __init register_nfs_fs(void)
354{
355 int ret;
356
357 ret = register_filesystem(&nfs_fs_type);
358 if (ret < 0)
359 goto error_0;
360
David Howellsf7b422b2006-06-09 09:34:33 -0400361 ret = nfs_register_sysctl();
362 if (ret < 0)
363 goto error_1;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800364#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400365 ret = register_filesystem(&nfs4_fs_type);
366 if (ret < 0)
367 goto error_2;
368#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700369 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400370 return 0;
371
372#ifdef CONFIG_NFS_V4
373error_2:
374 nfs_unregister_sysctl();
Peter Zijlstra89a09142007-03-16 13:38:26 -0800375#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400376error_1:
377 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400378error_0:
379 return ret;
380}
381
382/*
383 * Unregister the NFS filesystems
384 */
385void __exit unregister_nfs_fs(void)
386{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700387 unregister_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400388#ifdef CONFIG_NFS_V4
389 unregister_filesystem(&nfs4_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400390#endif
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700391 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400392 unregister_filesystem(&nfs_fs_type);
393}
394
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400395void nfs_sb_active(struct super_block *sb)
Steve Dicksonef818a22007-11-08 04:05:04 -0500396{
397 struct nfs_server *server = NFS_SB(sb);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400398
399 if (atomic_inc_return(&server->active) == 1)
400 atomic_inc(&sb->s_active);
401}
402
403void nfs_sb_deactive(struct super_block *sb)
404{
405 struct nfs_server *server = NFS_SB(sb);
406
407 if (atomic_dec_and_test(&server->active))
408 deactivate_super(sb);
Steve Dicksonef818a22007-11-08 04:05:04 -0500409}
410
David Howellsf7b422b2006-06-09 09:34:33 -0400411/*
412 * Deliver file system statistics to userspace
413 */
Trond Myklebust816724e2006-06-24 08:41:41 -0400414static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400415{
David Howells0c7d90c2006-08-22 20:06:10 -0400416 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400417 unsigned char blockbits;
418 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400419 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
David Howellsf7b422b2006-06-09 09:34:33 -0400420 struct nfs_fattr fattr;
421 struct nfs_fsstat res = {
422 .fattr = &fattr,
423 };
424 int error;
425
David Howells8fa5c002006-08-22 20:06:12 -0400426 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
David Howellsf7b422b2006-06-09 09:34:33 -0400427 if (error < 0)
428 goto out_err;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700429 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400430
431 /*
432 * Current versions of glibc do not correctly handle the
433 * case where f_frsize != f_bsize. Eventually we want to
434 * report the value of wtmult in this field.
435 */
David Howells0c7d90c2006-08-22 20:06:10 -0400436 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400437
438 /*
439 * On most *nix systems, f_blocks, f_bfree, and f_bavail
440 * are reported in units of f_frsize. Linux hasn't had
441 * an f_frsize field in its statfs struct until recently,
442 * thus historically Linux's sys_statfs reports these
443 * fields in units of f_bsize.
444 */
David Howells0c7d90c2006-08-22 20:06:10 -0400445 buf->f_bsize = dentry->d_sb->s_blocksize;
446 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400447 blockres = (1 << blockbits) - 1;
448 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
449 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
450 buf->f_bavail = (res.abytes + blockres) >> blockbits;
451
452 buf->f_files = res.tfiles;
453 buf->f_ffree = res.afiles;
454
455 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700456
David Howellsf7b422b2006-06-09 09:34:33 -0400457 return 0;
458
459 out_err:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700460 dprintk("%s: statfs error = %d\n", __func__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700461 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400462}
463
David Howells7d4e2742006-08-22 20:06:07 -0400464/*
465 * Map the security flavour number to a name
466 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400467static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
468{
David Howells7d4e2742006-08-22 20:06:07 -0400469 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400470 rpc_authflavor_t flavour;
471 const char *str;
472 } sec_flavours[] = {
473 { RPC_AUTH_NULL, "null" },
474 { RPC_AUTH_UNIX, "sys" },
475 { RPC_AUTH_GSS_KRB5, "krb5" },
476 { RPC_AUTH_GSS_KRB5I, "krb5i" },
477 { RPC_AUTH_GSS_KRB5P, "krb5p" },
478 { RPC_AUTH_GSS_LKEY, "lkey" },
479 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
480 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
481 { RPC_AUTH_GSS_SPKM, "spkm" },
482 { RPC_AUTH_GSS_SPKMI, "spkmi" },
483 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400484 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400485 };
486 int i;
487
Chuck Lever4d81cd12007-07-01 12:12:40 -0400488 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400489 if (sec_flavours[i].flavour == flavour)
490 break;
491 }
492 return sec_flavours[i].str;
493}
494
Chuck Lever82d101d2008-03-14 14:10:37 -0400495static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss,
496 int showdefaults)
497{
498 struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address;
499
500 switch (sap->sa_family) {
501 case AF_INET: {
502 struct sockaddr_in *sin = (struct sockaddr_in *)sap;
Harvey Harrisonbe859402008-10-31 00:56:28 -0700503 seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400504 break;
505 }
506 case AF_INET6: {
507 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap;
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700508 seq_printf(m, ",mountaddr=%pI6", &sin6->sin6_addr);
Chuck Lever82d101d2008-03-14 14:10:37 -0400509 break;
510 }
511 default:
512 if (showdefaults)
513 seq_printf(m, ",mountaddr=unspecified");
514 }
515
516 if (nfss->mountd_version || showdefaults)
517 seq_printf(m, ",mountvers=%u", nfss->mountd_version);
518 if (nfss->mountd_port || showdefaults)
519 seq_printf(m, ",mountport=%u", nfss->mountd_port);
520
521 switch (nfss->mountd_protocol) {
522 case IPPROTO_UDP:
523 seq_printf(m, ",mountproto=udp");
524 break;
525 case IPPROTO_TCP:
526 seq_printf(m, ",mountproto=tcp");
527 break;
528 default:
529 if (showdefaults)
530 seq_printf(m, ",mountproto=auto");
531 }
532}
533
David Howellsf7b422b2006-06-09 09:34:33 -0400534/*
535 * Describe the mount options in force on this server representation
536 */
Chuck Lever82d101d2008-03-14 14:10:37 -0400537static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss,
538 int showdefaults)
David Howellsf7b422b2006-06-09 09:34:33 -0400539{
David Howells509de812006-08-22 20:06:11 -0400540 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400541 int flag;
David Howells509de812006-08-22 20:06:11 -0400542 const char *str;
543 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400544 } nfs_info[] = {
545 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Lever82d101d2008-03-14 14:10:37 -0400546 { NFS_MOUNT_POSIX, ",posix", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400547 { NFS_MOUNT_NOCTO, ",nocto", "" },
548 { NFS_MOUNT_NOAC, ",noac", "" },
549 { NFS_MOUNT_NONLM, ",nolock", "" },
550 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400551 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Chuck Leverd7403512008-12-23 15:21:37 -0500552 { NFS_MOUNT_UNSHARED, ",nosharecache", "" },
553 { NFS_MOUNT_NORESVPORT, ",noresvport", "" },
David Howellsf7b422b2006-06-09 09:34:33 -0400554 { 0, NULL, NULL }
555 };
David Howells509de812006-08-22 20:06:11 -0400556 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400557 struct nfs_client *clp = nfss->nfs_client;
Chuck Lever82d101d2008-03-14 14:10:37 -0400558 u32 version = clp->rpc_ops->version;
David Howellsf7b422b2006-06-09 09:34:33 -0400559
Chuck Lever82d101d2008-03-14 14:10:37 -0400560 seq_printf(m, ",vers=%u", version);
Chuck Lever2d767432008-03-14 14:10:08 -0400561 seq_printf(m, ",rsize=%u", nfss->rsize);
562 seq_printf(m, ",wsize=%u", nfss->wsize);
Chuck Lever82d101d2008-03-14 14:10:37 -0400563 if (nfss->bsize != 0)
564 seq_printf(m, ",bsize=%u", nfss->bsize);
565 seq_printf(m, ",namlen=%u", nfss->namelen);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400566 if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400567 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400568 if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400569 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400570 if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400571 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
Chuck Lever0e0cab72008-06-26 17:47:12 -0400572 if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400573 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400574 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
575 if (nfss->flags & nfs_infop->flag)
576 seq_puts(m, nfs_infop->str);
577 else
578 seq_puts(m, nfs_infop->nostr);
579 }
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400580 seq_printf(m, ",proto=%s",
581 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_PROTO));
Chuck Lever82d101d2008-03-14 14:10:37 -0400582 if (version == 4) {
583 if (nfss->port != NFS_PORT)
584 seq_printf(m, ",port=%u", nfss->port);
585 } else
586 if (nfss->port)
587 seq_printf(m, ",port=%u", nfss->port);
588
Trond Myklebust33170232007-12-20 16:03:59 -0500589 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
590 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
Trond Myklebust81039f12006-06-09 09:34:34 -0400591 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
Chuck Lever82d101d2008-03-14 14:10:37 -0400592
593 if (version != 4)
594 nfs_show_mountd_options(m, nfss, showdefaults);
595
596#ifdef CONFIG_NFS_V4
597 if (clp->rpc_ops->version == 4)
598 seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr);
599#endif
David Howellsb797cac2009-04-03 16:42:48 +0100600 if (nfss->options & NFS_OPTION_FSCACHE)
601 seq_printf(m, ",fsc");
David Howellsf7b422b2006-06-09 09:34:33 -0400602}
603
604/*
605 * Describe the mount options on this VFS mountpoint
606 */
607static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
608{
609 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
610
611 nfs_show_mount_options(m, nfss, 0);
612
Chuck Lever5d8515c2007-12-10 14:57:16 -0500613 seq_printf(m, ",addr=%s",
614 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
615 RPC_DISPLAY_ADDR));
David Howellsf7b422b2006-06-09 09:34:33 -0400616
617 return 0;
618}
619
620/*
621 * Present statistical information for this VFS mountpoint
622 */
623static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
624{
625 int i, cpu;
626 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
627 struct rpc_auth *auth = nfss->client->cl_auth;
628 struct nfs_iostats totals = { };
629
630 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
631
632 /*
633 * Display all mount option settings
634 */
635 seq_printf(m, "\n\topts:\t");
636 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
637 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
638 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
639 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
640 nfs_show_mount_options(m, nfss, 1);
641
642 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
643
644 seq_printf(m, "\n\tcaps:\t");
645 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400646 seq_printf(m, ",wtmult=%u", nfss->wtmult);
647 seq_printf(m, ",dtsize=%u", nfss->dtsize);
648 seq_printf(m, ",bsize=%u", nfss->bsize);
649 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400650
651#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500652 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400653 seq_printf(m, "\n\tnfsv4:\t");
654 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
655 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
656 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
657 }
658#endif
659
660 /*
661 * Display security flavor in effect for this mount
662 */
Chuck Lever2d767432008-03-14 14:10:08 -0400663 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400664 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400665 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400666
667 /*
668 * Display superblock I/O counters
669 */
670 for_each_possible_cpu(cpu) {
671 struct nfs_iostats *stats;
672
673 preempt_disable();
674 stats = per_cpu_ptr(nfss->io_stats, cpu);
675
676 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
677 totals.events[i] += stats->events[i];
678 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
679 totals.bytes[i] += stats->bytes[i];
David Howells6a510912009-04-03 16:42:43 +0100680#ifdef CONFIG_NFS_FSCACHE
681 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
682 totals.fscache[i] += stats->fscache[i];
683#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400684
685 preempt_enable();
686 }
687
688 seq_printf(m, "\n\tevents:\t");
689 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
690 seq_printf(m, "%lu ", totals.events[i]);
691 seq_printf(m, "\n\tbytes:\t");
692 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
693 seq_printf(m, "%Lu ", totals.bytes[i]);
David Howells6a510912009-04-03 16:42:43 +0100694#ifdef CONFIG_NFS_FSCACHE
695 if (nfss->options & NFS_OPTION_FSCACHE) {
696 seq_printf(m, "\n\tfsc:\t");
697 for (i = 0; i < __NFSIOS_FSCACHEMAX; i++)
698 seq_printf(m, "%Lu ", totals.bytes[i]);
699 }
700#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400701 seq_printf(m, "\n");
702
703 rpc_print_iostats(m, nfss->client);
704
705 return 0;
706}
707
708/*
709 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400710 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400711 */
Al Viro42faad92008-04-24 07:21:56 -0400712static void nfs_umount_begin(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -0400713{
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200714 struct nfs_server *server;
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400715 struct rpc_clnt *rpc;
716
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200717 lock_kernel();
718
719 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400720 /* -EIO all pending I/O */
721 rpc = server->client_acl;
722 if (!IS_ERR(rpc))
723 rpc_killall_tasks(rpc);
724 rpc = server->client;
725 if (!IS_ERR(rpc))
726 rpc_killall_tasks(rpc);
Alessio Igor Bogani67e55202009-04-24 09:06:53 +0200727
728 unlock_kernel();
David Howellsf7b422b2006-06-09 09:34:33 -0400729}
730
731/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500732 * Sanity-check a server address provided by the mount command.
733 *
734 * Address family must be initialized, and address must not be
735 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400736 */
737static int nfs_verify_server_address(struct sockaddr *addr)
738{
739 switch (addr->sa_family) {
740 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500741 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700742 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500743 }
744 case AF_INET6: {
745 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
746 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400747 }
748 }
749
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400750 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400751 return 0;
752}
753
Chuck Lever9412b922007-12-10 14:59:21 -0500754/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400755 * Select between a default port value and a user-specified port value.
756 * If a zero value is set, then autobind will be used.
757 */
758static void nfs_set_default_port(struct sockaddr *sap, const int parsed_port,
759 const unsigned short default_port)
760{
761 unsigned short port = default_port;
762
763 if (parsed_port != NFS_UNSPEC_PORT)
764 port = parsed_port;
765
766 rpc_set_port(sap, port);
767}
768
769/*
Trond Myklebust259875e2008-07-02 14:43:47 -0400770 * Sanity check the NFS transport protocol.
771 *
772 */
773static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
774{
775 switch (mnt->nfs_server.protocol) {
776 case XPRT_TRANSPORT_UDP:
777 case XPRT_TRANSPORT_TCP:
778 case XPRT_TRANSPORT_RDMA:
779 break;
780 default:
781 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
782 }
783}
784
785/*
786 * For text based NFSv2/v3 mounts, the mount protocol transport default
787 * settings should depend upon the specified NFS transport.
788 */
789static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
790{
791 nfs_validate_transport_protocol(mnt);
792
793 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
794 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
795 return;
796 switch (mnt->nfs_server.protocol) {
797 case XPRT_TRANSPORT_UDP:
798 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
799 break;
800 case XPRT_TRANSPORT_TCP:
801 case XPRT_TRANSPORT_RDMA:
802 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
803 }
804}
805
806/*
Chuck Lever01060c82008-06-24 16:33:38 -0400807 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -0400808 */
809static int nfs_parse_security_flavors(char *value,
810 struct nfs_parsed_mount_data *mnt)
811{
812 substring_t args[MAX_OPT_ARGS];
813
814 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
815
816 switch (match_token(value, nfs_secflavor_tokens, args)) {
817 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -0400818 mnt->auth_flavors[0] = RPC_AUTH_NULL;
819 break;
820 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -0400821 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
822 break;
823 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -0400824 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
825 break;
826 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -0400827 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
828 break;
829 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -0400830 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
831 break;
832 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -0400833 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
834 break;
835 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -0400836 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
837 break;
838 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -0400839 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
840 break;
841 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -0400842 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
843 break;
844 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -0400845 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
846 break;
847 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -0400848 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
849 break;
850 default:
851 return 0;
852 }
853
Chuck Lever059f90b2009-08-09 15:09:31 -0400854 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -0400855 return 1;
856}
857
858/*
Chuck Leverbf0fd762007-07-01 12:13:44 -0400859 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -0400860 * a data structure. The whole mount string is processed; bad options are
861 * skipped as they are encountered. If there were no errors, return 1;
862 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -0400863 */
864static int nfs_parse_mount_options(char *raw,
865 struct nfs_parsed_mount_data *mnt)
866{
Eric Parisf9c3a382008-03-05 14:20:18 -0500867 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -0700868 int rc, sloppy = 0, invalid_option = 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400869
870 if (!raw) {
871 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
872 return 1;
873 }
874 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
875
Eric Parisf9c3a382008-03-05 14:20:18 -0500876 secdata = alloc_secdata();
877 if (!secdata)
878 goto out_nomem;
879
880 rc = security_sb_copy_data(raw, secdata);
881 if (rc)
882 goto out_security_failure;
883
884 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
885 if (rc)
886 goto out_security_failure;
887
888 free_secdata(secdata);
889
Chuck Leverbf0fd762007-07-01 12:13:44 -0400890 while ((p = strsep(&raw, ",")) != NULL) {
891 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -0700892 unsigned long option;
893 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400894
895 if (!*p)
896 continue;
897
898 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
899
900 token = match_token(p, nfs_mount_option_tokens, args);
901 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -0400902
903 /*
904 * boolean options: foo/nofoo
905 */
Chuck Leverbf0fd762007-07-01 12:13:44 -0400906 case Opt_soft:
907 mnt->flags |= NFS_MOUNT_SOFT;
908 break;
909 case Opt_hard:
910 mnt->flags &= ~NFS_MOUNT_SOFT;
911 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400912 case Opt_posix:
913 mnt->flags |= NFS_MOUNT_POSIX;
914 break;
915 case Opt_noposix:
916 mnt->flags &= ~NFS_MOUNT_POSIX;
917 break;
918 case Opt_cto:
919 mnt->flags &= ~NFS_MOUNT_NOCTO;
920 break;
921 case Opt_nocto:
922 mnt->flags |= NFS_MOUNT_NOCTO;
923 break;
924 case Opt_ac:
925 mnt->flags &= ~NFS_MOUNT_NOAC;
926 break;
927 case Opt_noac:
928 mnt->flags |= NFS_MOUNT_NOAC;
929 break;
930 case Opt_lock:
931 mnt->flags &= ~NFS_MOUNT_NONLM;
932 break;
933 case Opt_nolock:
934 mnt->flags |= NFS_MOUNT_NONLM;
935 break;
936 case Opt_v2:
937 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -0400938 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400939 break;
940 case Opt_v3:
941 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -0400942 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400943 break;
Chuck Lever764302c2009-09-08 19:50:03 -0400944#ifdef CONFIG_NFS_V4
945 case Opt_v4:
946 mnt->flags &= ~NFS_MOUNT_VER3;
947 mnt->version = 4;
948 break;
949#endif
Chuck Leverbf0fd762007-07-01 12:13:44 -0400950 case Opt_udp:
951 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400952 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400953 break;
954 case Opt_tcp:
955 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400956 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400957 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400958 case Opt_rdma:
959 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
960 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -0400961 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400962 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400963 case Opt_acl:
964 mnt->flags &= ~NFS_MOUNT_NOACL;
965 break;
966 case Opt_noacl:
967 mnt->flags |= NFS_MOUNT_NOACL;
968 break;
969 case Opt_rdirplus:
970 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
971 break;
972 case Opt_nordirplus:
973 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
974 break;
Trond Myklebust75180df2007-05-16 16:53:28 -0400975 case Opt_sharecache:
976 mnt->flags &= ~NFS_MOUNT_UNSHARED;
977 break;
978 case Opt_nosharecache:
979 mnt->flags |= NFS_MOUNT_UNSHARED;
980 break;
Chuck Leverd7403512008-12-23 15:21:37 -0500981 case Opt_resvport:
982 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
983 break;
984 case Opt_noresvport:
985 mnt->flags |= NFS_MOUNT_NORESVPORT;
986 break;
David Howellsb797cac2009-04-03 16:42:48 +0100987 case Opt_fscache:
988 mnt->options |= NFS_OPTION_FSCACHE;
989 kfree(mnt->fscache_uniq);
990 mnt->fscache_uniq = NULL;
991 break;
992 case Opt_nofscache:
993 mnt->options &= ~NFS_OPTION_FSCACHE;
994 kfree(mnt->fscache_uniq);
995 mnt->fscache_uniq = NULL;
996 break;
997 case Opt_fscache_uniq:
998 string = match_strdup(args);
999 if (!string)
1000 goto out_nomem;
1001 kfree(mnt->fscache_uniq);
1002 mnt->fscache_uniq = string;
1003 mnt->options |= NFS_OPTION_FSCACHE;
1004 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001005
Chuck Leverf45663c2008-06-24 19:28:02 -04001006 /*
1007 * options that take numeric values
1008 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001009 case Opt_port:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001010 string = match_strdup(args);
1011 if (string == NULL)
1012 goto out_nomem;
1013 rc = strict_strtoul(string, 10, &option);
1014 kfree(string);
1015 if (rc != 0 || option > USHORT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001016 goto out_invalid_value;
1017 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001018 break;
1019 case Opt_rsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001020 string = match_strdup(args);
1021 if (string == NULL)
1022 goto out_nomem;
1023 rc = strict_strtoul(string, 10, &option);
1024 kfree(string);
1025 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001026 goto out_invalid_value;
1027 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001028 break;
1029 case Opt_wsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001030 string = match_strdup(args);
1031 if (string == NULL)
1032 goto out_nomem;
1033 rc = strict_strtoul(string, 10, &option);
1034 kfree(string);
1035 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001036 goto out_invalid_value;
1037 mnt->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001038 break;
1039 case Opt_bsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001040 string = match_strdup(args);
1041 if (string == NULL)
1042 goto out_nomem;
1043 rc = strict_strtoul(string, 10, &option);
1044 kfree(string);
1045 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001046 goto out_invalid_value;
1047 mnt->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001048 break;
1049 case Opt_timeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001050 string = match_strdup(args);
1051 if (string == NULL)
1052 goto out_nomem;
1053 rc = strict_strtoul(string, 10, &option);
1054 kfree(string);
1055 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001056 goto out_invalid_value;
1057 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001058 break;
1059 case Opt_retrans:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001060 string = match_strdup(args);
1061 if (string == NULL)
1062 goto out_nomem;
1063 rc = strict_strtoul(string, 10, &option);
1064 kfree(string);
1065 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001066 goto out_invalid_value;
1067 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001068 break;
1069 case Opt_acregmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001070 string = match_strdup(args);
1071 if (string == NULL)
1072 goto out_nomem;
1073 rc = strict_strtoul(string, 10, &option);
1074 kfree(string);
1075 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001076 goto out_invalid_value;
1077 mnt->acregmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001078 break;
1079 case Opt_acregmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001080 string = match_strdup(args);
1081 if (string == NULL)
1082 goto out_nomem;
1083 rc = strict_strtoul(string, 10, &option);
1084 kfree(string);
1085 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001086 goto out_invalid_value;
1087 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001088 break;
1089 case Opt_acdirmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001090 string = match_strdup(args);
1091 if (string == NULL)
1092 goto out_nomem;
1093 rc = strict_strtoul(string, 10, &option);
1094 kfree(string);
1095 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001096 goto out_invalid_value;
1097 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001098 break;
1099 case Opt_acdirmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001100 string = match_strdup(args);
1101 if (string == NULL)
1102 goto out_nomem;
1103 rc = strict_strtoul(string, 10, &option);
1104 kfree(string);
1105 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001106 goto out_invalid_value;
1107 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001108 break;
1109 case Opt_actimeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001110 string = match_strdup(args);
1111 if (string == NULL)
1112 goto out_nomem;
1113 rc = strict_strtoul(string, 10, &option);
1114 kfree(string);
1115 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001116 goto out_invalid_value;
1117 mnt->acregmin = mnt->acregmax =
1118 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001119 break;
1120 case Opt_namelen:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001121 string = match_strdup(args);
1122 if (string == NULL)
1123 goto out_nomem;
1124 rc = strict_strtoul(string, 10, &option);
1125 kfree(string);
1126 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001127 goto out_invalid_value;
1128 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001129 break;
1130 case Opt_mountport:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001131 string = match_strdup(args);
1132 if (string == NULL)
1133 goto out_nomem;
1134 rc = strict_strtoul(string, 10, &option);
1135 kfree(string);
1136 if (rc != 0 || option > USHORT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001137 goto out_invalid_value;
1138 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001139 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001140 case Opt_mountvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001141 string = match_strdup(args);
1142 if (string == NULL)
1143 goto out_nomem;
1144 rc = strict_strtoul(string, 10, &option);
1145 kfree(string);
1146 if (rc != 0 ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001147 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001148 option > NFS_MNT3_VERSION)
1149 goto out_invalid_value;
1150 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001151 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001152 case Opt_nfsvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001153 string = match_strdup(args);
1154 if (string == NULL)
1155 goto out_nomem;
1156 rc = strict_strtoul(string, 10, &option);
1157 kfree(string);
1158 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001159 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001160 switch (option) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001161 case NFS2_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001162 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001163 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001164 break;
Chuck Leverf45663c2008-06-24 19:28:02 -04001165 case NFS3_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001166 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001167 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001168 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001169#ifdef CONFIG_NFS_V4
1170 case NFS4_VERSION:
1171 mnt->flags &= ~NFS_MOUNT_VER3;
1172 mnt->version = 4;
1173 break;
1174#endif
Chuck Leverbf0fd762007-07-01 12:13:44 -04001175 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001176 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001177 }
1178 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001179 case Opt_minorversion:
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001180 string = match_strdup(args);
1181 if (string == NULL)
1182 goto out_nomem;
1183 rc = strict_strtoul(string, 10, &option);
1184 kfree(string);
1185 if (rc != 0)
1186 goto out_invalid_value;
1187 if (option > NFS4_MAX_MINOR_VERSION)
1188 goto out_invalid_value;
1189 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001190 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001191
Chuck Leverf45663c2008-06-24 19:28:02 -04001192 /*
1193 * options that take text values
1194 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001195 case Opt_sec:
1196 string = match_strdup(args);
1197 if (string == NULL)
1198 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001199 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001200 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001201 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001202 dfprintk(MOUNT, "NFS: unrecognized "
1203 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001204 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001205 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001206 break;
1207 case Opt_proto:
1208 string = match_strdup(args);
1209 if (string == NULL)
1210 goto out_nomem;
1211 token = match_token(string,
1212 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001213
1214 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001215 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001216 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001217 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001218 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001219 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001220 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001221 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001222 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001223 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001224 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001225 case Opt_xprt_rdma:
1226 /* vector side protocols to TCP */
1227 mnt->flags |= NFS_MOUNT_TCP;
1228 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001229 xprt_load_transport(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001230 kfree(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001231 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001232 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001233 dfprintk(MOUNT, "NFS: unrecognized "
1234 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001235 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001236 }
1237 break;
1238 case Opt_mountproto:
1239 string = match_strdup(args);
1240 if (string == NULL)
1241 goto out_nomem;
1242 token = match_token(string,
1243 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001244 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001245
1246 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001247 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001248 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001249 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001250 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001251 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001252 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001253 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001254 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001255 dfprintk(MOUNT, "NFS: unrecognized "
1256 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001257 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001258 }
1259 break;
1260 case Opt_addr:
1261 string = match_strdup(args);
1262 if (string == NULL)
1263 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001264 mnt->nfs_server.addrlen =
1265 rpc_pton(string, strlen(string),
1266 (struct sockaddr *)
1267 &mnt->nfs_server.address,
1268 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001269 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001270 if (mnt->nfs_server.addrlen == 0)
1271 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001272 break;
1273 case Opt_clientaddr:
1274 string = match_strdup(args);
1275 if (string == NULL)
1276 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001277 kfree(mnt->client_address);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001278 mnt->client_address = string;
1279 break;
Chuck Lever33832032007-12-10 14:59:13 -05001280 case Opt_mounthost:
1281 string = match_strdup(args);
1282 if (string == NULL)
1283 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001284 kfree(mnt->mount_server.hostname);
Chuck Lever33832032007-12-10 14:59:13 -05001285 mnt->mount_server.hostname = string;
1286 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001287 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001288 string = match_strdup(args);
1289 if (string == NULL)
1290 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001291 mnt->mount_server.addrlen =
1292 rpc_pton(string, strlen(string),
1293 (struct sockaddr *)
1294 &mnt->mount_server.address,
1295 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001296 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001297 if (mnt->mount_server.addrlen == 0)
1298 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001299 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001300 case Opt_lookupcache:
1301 string = match_strdup(args);
1302 if (string == NULL)
1303 goto out_nomem;
1304 token = match_token(string,
1305 nfs_lookupcache_tokens, args);
1306 kfree(string);
1307 switch (token) {
1308 case Opt_lookupcache_all:
1309 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1310 break;
1311 case Opt_lookupcache_positive:
1312 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1313 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1314 break;
1315 case Opt_lookupcache_none:
1316 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1317 break;
1318 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001319 dfprintk(MOUNT, "NFS: invalid "
1320 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001321 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001322 };
1323 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001324
Chuck Leverf45663c2008-06-24 19:28:02 -04001325 /*
1326 * Special options
1327 */
1328 case Opt_sloppy:
1329 sloppy = 1;
1330 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1331 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001332 case Opt_userspace:
1333 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001334 dfprintk(MOUNT, "NFS: ignoring mount option "
1335 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001336 break;
1337
1338 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001339 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001340 dfprintk(MOUNT, "NFS: unrecognized mount option "
1341 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001342 }
1343 }
1344
Chuck Leverd23c45f2009-06-17 18:02:13 -07001345 if (!sloppy && invalid_option)
1346 return 0;
1347
Chuck Leverbf0fd762007-07-01 12:13:44 -04001348 return 1;
1349
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001350out_invalid_address:
1351 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1352 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001353out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001354 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001355 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001356out_nomem:
1357 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1358 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001359out_security_failure:
1360 free_secdata(secdata);
1361 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1362 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001363}
1364
1365/*
Chuck Leverec88f282009-08-09 15:09:32 -04001366 * Match the requested auth flavors with the list returned by
1367 * the server. Returns zero and sets the mount's authentication
1368 * flavor on success; returns -EACCES if server does not support
1369 * the requested flavor.
1370 */
1371static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1372 struct nfs_mount_request *request)
1373{
1374 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1375
1376 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001377 * Certain releases of Linux's mountd return an empty
1378 * flavor list. To prevent behavioral regression with
1379 * these servers (ie. rejecting mounts that used to
1380 * succeed), revert to pre-2.6.32 behavior (no checking)
1381 * if the returned flavor list is empty.
1382 */
1383 if (server_authlist_len == 0)
1384 return 0;
1385
1386 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001387 * We avoid sophisticated negotiating here, as there are
1388 * plenty of cases where we can get it wrong, providing
1389 * either too little or too much security.
1390 *
1391 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1392 * flavor listed first. However, some servers list
1393 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1394 * preferred default, in args->auth_flavors[0] if user
1395 * didn't specify sec= mount option.
1396 */
1397 for (i = 0; i < args->auth_flavor_len; i++)
1398 for (j = 0; j < server_authlist_len; j++)
1399 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1400 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1401 request->auth_flavs[j]);
1402 args->auth_flavors[0] = request->auth_flavs[j];
1403 return 0;
1404 }
1405
1406 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1407 nfs_umount(request);
1408 return -EACCES;
1409}
1410
1411/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001412 * Use the remote server's MOUNT service to request the NFS file handle
1413 * corresponding to the provided path.
1414 */
1415static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1416 struct nfs_fh *root_fh)
1417{
Chuck Leverec88f282009-08-09 15:09:32 -04001418 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1419 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001420 struct nfs_mount_request request = {
1421 .sap = (struct sockaddr *)
1422 &args->mount_server.address,
1423 .dirpath = args->nfs_server.export_path,
1424 .protocol = args->mount_server.protocol,
1425 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001426 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001427 .auth_flav_len = &server_authlist_len,
1428 .auth_flavs = server_authlist,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001429 };
Chuck Lever4c568012007-12-10 14:59:28 -05001430 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001431
1432 if (args->mount_server.version == 0) {
1433 if (args->flags & NFS_MOUNT_VER3)
1434 args->mount_server.version = NFS_MNT3_VERSION;
1435 else
1436 args->mount_server.version = NFS_MNT_VERSION;
1437 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001438 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001439
Chuck Lever33832032007-12-10 14:59:13 -05001440 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001441 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001442 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001443 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001444
Chuck Lever0076d7b2007-07-01 12:13:49 -04001445 /*
1446 * Construct the mount server's address.
1447 */
Chuck Lever4c568012007-12-10 14:59:28 -05001448 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001449 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001450 args->nfs_server.addrlen);
1451 args->mount_server.addrlen = args->nfs_server.addrlen;
1452 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001453 request.salen = args->mount_server.addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001454 nfs_set_default_port(request.sap, args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001455
1456 /*
1457 * Now ask the mount server to map our export path
1458 * to a file handle.
1459 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001460 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001461 if (status != 0) {
1462 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1463 request.hostname, status);
1464 return status;
1465 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001466
Chuck Leverec88f282009-08-09 15:09:32 -04001467 /*
1468 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1469 */
1470 if (args->mount_server.version != NFS_MNT3_VERSION)
1471 return 0;
1472 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001473}
1474
Chuck Leverd1aa0822008-06-23 12:36:45 -04001475static int nfs_parse_simple_hostname(const char *dev_name,
1476 char **hostname, size_t maxnamlen,
1477 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001478{
1479 size_t len;
1480 char *colon, *comma;
1481
1482 colon = strchr(dev_name, ':');
1483 if (colon == NULL)
1484 goto out_bad_devname;
1485
1486 len = colon - dev_name;
1487 if (len > maxnamlen)
1488 goto out_hostname;
1489
1490 /* N.B. caller will free nfs_server.hostname in all cases */
1491 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
1492 if (!*hostname)
1493 goto out_nomem;
1494
1495 /* kill possible hostname list: not supported */
1496 comma = strchr(*hostname, ',');
1497 if (comma != NULL) {
1498 if (comma == *hostname)
1499 goto out_bad_devname;
1500 *comma = '\0';
1501 }
1502
1503 colon++;
1504 len = strlen(colon);
1505 if (len > maxpathlen)
1506 goto out_path;
1507 *export_path = kstrndup(colon, len, GFP_KERNEL);
1508 if (!*export_path)
1509 goto out_nomem;
1510
1511 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1512 return 0;
1513
1514out_bad_devname:
1515 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1516 return -EINVAL;
1517
1518out_nomem:
1519 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1520 return -ENOMEM;
1521
1522out_hostname:
1523 dfprintk(MOUNT, "NFS: server hostname too long\n");
1524 return -ENAMETOOLONG;
1525
1526out_path:
1527 dfprintk(MOUNT, "NFS: export pathname too long\n");
1528 return -ENAMETOOLONG;
1529}
1530
1531/*
Chuck Leverd1aa0822008-06-23 12:36:45 -04001532 * Hostname has square brackets around it because it contains one or
1533 * more colons. We look for the first closing square bracket, and a
1534 * colon must follow it.
1535 */
1536static int nfs_parse_protected_hostname(const char *dev_name,
1537 char **hostname, size_t maxnamlen,
1538 char **export_path, size_t maxpathlen)
1539{
1540 size_t len;
1541 char *start, *end;
1542
1543 start = (char *)(dev_name + 1);
1544
1545 end = strchr(start, ']');
1546 if (end == NULL)
1547 goto out_bad_devname;
1548 if (*(end + 1) != ':')
1549 goto out_bad_devname;
1550
1551 len = end - start;
1552 if (len > maxnamlen)
1553 goto out_hostname;
1554
1555 /* N.B. caller will free nfs_server.hostname in all cases */
1556 *hostname = kstrndup(start, len, GFP_KERNEL);
1557 if (*hostname == NULL)
1558 goto out_nomem;
1559
1560 end += 2;
1561 len = strlen(end);
1562 if (len > maxpathlen)
1563 goto out_path;
1564 *export_path = kstrndup(end, len, GFP_KERNEL);
1565 if (!*export_path)
1566 goto out_nomem;
1567
1568 return 0;
1569
1570out_bad_devname:
1571 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1572 return -EINVAL;
1573
1574out_nomem:
1575 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1576 return -ENOMEM;
1577
1578out_hostname:
1579 dfprintk(MOUNT, "NFS: server hostname too long\n");
1580 return -ENAMETOOLONG;
1581
1582out_path:
1583 dfprintk(MOUNT, "NFS: export pathname too long\n");
1584 return -ENAMETOOLONG;
1585}
1586
1587/*
1588 * Split "dev_name" into "hostname:export_path".
1589 *
1590 * The leftmost colon demarks the split between the server's hostname
1591 * and the export path. If the hostname starts with a left square
1592 * bracket, then it may contain colons.
1593 *
1594 * Note: caller frees hostname and export path, even on error.
1595 */
1596static int nfs_parse_devname(const char *dev_name,
1597 char **hostname, size_t maxnamlen,
1598 char **export_path, size_t maxpathlen)
1599{
1600 if (*dev_name == '[')
1601 return nfs_parse_protected_hostname(dev_name,
1602 hostname, maxnamlen,
1603 export_path, maxpathlen);
1604
1605 return nfs_parse_simple_hostname(dev_name,
1606 hostname, maxnamlen,
1607 export_path, maxpathlen);
1608}
1609
1610/*
David Howells54ceac42006-08-22 20:06:13 -04001611 * Validate the NFS2/NFS3 mount data
1612 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001613 *
1614 * For option strings, user space handles the following behaviors:
1615 *
1616 * + DNS: mapping server host name to IP address ("addr=" option)
1617 *
1618 * + failure mode: how to behave if a mount request can't be handled
1619 * immediately ("fg/bg" option)
1620 *
1621 * + retry: how often to retry a mount request ("retry=" option)
1622 *
1623 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1624 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001625 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001626static int nfs_validate_mount_data(void *options,
1627 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001628 struct nfs_fh *mntfh,
1629 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001630{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001631 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001632 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001633
Chuck Lever5df36e72007-07-01 12:12:56 -04001634 if (data == NULL)
1635 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001636
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001637 args->flags = (NFS_MOUNT_VER3 | NFS_MOUNT_TCP);
1638 args->rsize = NFS_MAX_FILE_IO_SIZE;
1639 args->wsize = NFS_MAX_FILE_IO_SIZE;
Chuck Lever0e0cab72008-06-26 17:47:12 -04001640 args->acregmin = NFS_DEF_ACREGMIN;
1641 args->acregmax = NFS_DEF_ACREGMAX;
1642 args->acdirmin = NFS_DEF_ACDIRMIN;
1643 args->acdirmax = NFS_DEF_ACDIRMAX;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001644 args->mount_server.port = NFS_UNSPEC_PORT;
1645 args->nfs_server.port = NFS_UNSPEC_PORT;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001646 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverdd07c942008-06-24 16:33:46 -04001647 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Lever059f90b2009-08-09 15:09:31 -04001648 args->auth_flavor_len = 1;
Chuck Lever764302c2009-09-08 19:50:03 -04001649 args->minorversion = 0;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001650
David Howellsf7b422b2006-06-09 09:34:33 -04001651 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001652 case 1:
1653 data->namlen = 0;
1654 case 2:
1655 data->bsize = 0;
1656 case 3:
1657 if (data->flags & NFS_MOUNT_VER3)
1658 goto out_no_v3;
1659 data->root.size = NFS2_FHSIZE;
1660 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1661 case 4:
1662 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1663 goto out_no_sec;
1664 case 5:
1665 memset(data->context, 0, sizeof(data->context));
1666 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001667 if (data->flags & NFS_MOUNT_VER3) {
1668 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1669 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001670 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001671 args->version = 3;
1672 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001673 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001674 args->version = 2;
1675 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001676
Chuck Lever5df36e72007-07-01 12:12:56 -04001677
1678 memcpy(mntfh->data, data->root.data, mntfh->size);
1679 if (mntfh->size < sizeof(mntfh->data))
1680 memset(mntfh->data + mntfh->size, 0,
1681 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001682
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001683 /*
1684 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1685 * can deal with.
1686 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001687 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001688 args->rsize = data->rsize;
1689 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001690 args->timeo = data->timeo;
1691 args->retrans = data->retrans;
1692 args->acregmin = data->acregmin;
1693 args->acregmax = data->acregmax;
1694 args->acdirmin = data->acdirmin;
1695 args->acdirmax = data->acdirmax;
Chuck Lever4c568012007-12-10 14:59:28 -05001696
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001697 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001698 args->nfs_server.addrlen = sizeof(data->addr);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001699 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001700 goto out_no_address;
1701
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001702 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001703 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001704 /* N.B. caller will free nfs_server.hostname in all cases */
1705 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1706 args->namlen = data->namlen;
1707 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001708
1709 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1710 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001711 if (!args->nfs_server.hostname)
1712 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001713
1714 /*
1715 * The legacy version 6 binary mount data from userspace has a
1716 * field used only to transport selinux information into the
1717 * the kernel. To continue to support that functionality we
1718 * have a touch of selinux knowledge here in the NFS code. The
1719 * userspace code converted context=blah to just blah so we are
1720 * converting back to the full string selinux understands.
1721 */
1722 if (data->context[0]){
1723#ifdef CONFIG_SECURITY_SELINUX
1724 int rc;
1725 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1726 if (!opts_str)
1727 return -ENOMEM;
1728 strcpy(opts_str, "context=");
1729 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1730 strcat(opts_str, &data->context[0]);
1731 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1732 kfree(opts_str);
1733 if (rc)
1734 return rc;
1735#else
1736 return -EINVAL;
1737#endif
1738 }
1739
Chuck Lever5df36e72007-07-01 12:12:56 -04001740 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001741 default: {
Chuck Lever136d5582007-07-01 12:13:54 -04001742 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001743
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001744 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001745 return -EINVAL;
1746
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001747 if (!nfs_verify_server_address(sap))
Chuck Lever6e88e062007-09-24 15:39:50 -04001748 goto out_no_address;
1749
Chuck Lever764302c2009-09-08 19:50:03 -04001750 if (args->version == 4)
1751#ifdef CONFIG_NFS_V4
1752 return nfs4_validate_text_mount_data(options,
1753 args, dev_name);
1754#else
1755 goto out_v4_not_compiled;
1756#endif
1757
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001758 nfs_set_default_port(sap, args->nfs_server.port, 0);
Chuck Levered596a82008-06-26 17:47:05 -04001759
Trond Myklebust259875e2008-07-02 14:43:47 -04001760 nfs_set_mount_transport_protocol(args);
1761
Chuck Leverdc045892008-06-23 12:36:37 -04001762 status = nfs_parse_devname(dev_name,
1763 &args->nfs_server.hostname,
1764 PAGE_SIZE,
1765 &args->nfs_server.export_path,
1766 NFS_MAXPATHLEN);
1767 if (!status)
1768 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001769
Chuck Leverdc045892008-06-23 12:36:37 -04001770 kfree(args->nfs_server.export_path);
1771 args->nfs_server.export_path = NULL;
Chuck Lever136d5582007-07-01 12:13:54 -04001772
Chuck Lever136d5582007-07-01 12:13:54 -04001773 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001774 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001775
Chuck Lever136d5582007-07-01 12:13:54 -04001776 break;
1777 }
David Howellsf7b422b2006-06-09 09:34:33 -04001778 }
David Howells54ceac42006-08-22 20:06:13 -04001779
David Howellsf7b422b2006-06-09 09:34:33 -04001780#ifndef CONFIG_NFS_V3
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001781 if (args->flags & NFS_MOUNT_VER3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001782 goto out_v3_not_compiled;
1783#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001784
David Howells54ceac42006-08-22 20:06:13 -04001785 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001786
1787out_no_data:
1788 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1789 return -EINVAL;
1790
1791out_no_v3:
1792 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1793 data->version);
1794 return -EINVAL;
1795
1796out_no_sec:
1797 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1798 return -EINVAL;
1799
Chuck Lever5df36e72007-07-01 12:12:56 -04001800#ifndef CONFIG_NFS_V3
1801out_v3_not_compiled:
1802 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1803 return -EPROTONOSUPPORT;
1804#endif /* !CONFIG_NFS_V3 */
1805
Chuck Lever764302c2009-09-08 19:50:03 -04001806#ifndef CONFIG_NFS_V4
1807out_v4_not_compiled:
1808 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
1809 return -EPROTONOSUPPORT;
1810#endif /* !CONFIG_NFS_V4 */
1811
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001812out_nomem:
1813 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
1814 return -ENOMEM;
1815
Chuck Lever5df36e72007-07-01 12:12:56 -04001816out_no_address:
1817 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1818 return -EINVAL;
1819
1820out_invalid_fh:
1821 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1822 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001823}
1824
Jeff Layton48b605f2008-06-10 15:38:39 -04001825static int
1826nfs_compare_remount_data(struct nfs_server *nfss,
1827 struct nfs_parsed_mount_data *data)
1828{
1829 if (data->flags != nfss->flags ||
1830 data->rsize != nfss->rsize ||
1831 data->wsize != nfss->wsize ||
1832 data->retrans != nfss->client->cl_timeout->to_retries ||
1833 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
1834 data->acregmin != nfss->acregmin / HZ ||
1835 data->acregmax != nfss->acregmax / HZ ||
1836 data->acdirmin != nfss->acdirmin / HZ ||
1837 data->acdirmax != nfss->acdirmax / HZ ||
1838 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
1839 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
1840 memcmp(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
1841 data->nfs_server.addrlen) != 0)
1842 return -EINVAL;
1843
1844 return 0;
1845}
1846
1847static int
1848nfs_remount(struct super_block *sb, int *flags, char *raw_data)
1849{
1850 int error;
1851 struct nfs_server *nfss = sb->s_fs_info;
1852 struct nfs_parsed_mount_data *data;
1853 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
1854 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04001855 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04001856
1857 /*
1858 * Userspace mount programs that send binary options generally send
1859 * them populated with default values. We have no way to know which
1860 * ones were explicitly specified. Fall back to legacy behavior and
1861 * just return success.
1862 */
Marc Zyngier31c94462008-07-17 13:21:55 +02001863 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
1864 (nfsvers <= 3 && (!options || (options->version >= 1 &&
1865 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04001866 return 0;
1867
1868 data = kzalloc(sizeof(*data), GFP_KERNEL);
1869 if (data == NULL)
1870 return -ENOMEM;
1871
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001872 lock_kernel();
Jeff Layton48b605f2008-06-10 15:38:39 -04001873 /* fill out struct with values from existing mount */
1874 data->flags = nfss->flags;
1875 data->rsize = nfss->rsize;
1876 data->wsize = nfss->wsize;
1877 data->retrans = nfss->client->cl_timeout->to_retries;
1878 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
1879 data->acregmin = nfss->acregmin / HZ;
1880 data->acregmax = nfss->acregmax / HZ;
1881 data->acdirmin = nfss->acdirmin / HZ;
1882 data->acdirmax = nfss->acdirmax / HZ;
1883 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
1884 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
1885 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
1886 data->nfs_server.addrlen);
1887
1888 /* overwrite those values with any that were specified */
1889 error = nfs_parse_mount_options((char *)options, data);
1890 if (error < 0)
1891 goto out;
1892
1893 /* compare new mount options with old ones */
1894 error = nfs_compare_remount_data(nfss, data);
1895out:
1896 kfree(data);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001897 unlock_kernel();
Jeff Layton48b605f2008-06-10 15:38:39 -04001898 return error;
1899}
1900
David Howells54ceac42006-08-22 20:06:13 -04001901/*
1902 * Initialise the common bits of the superblock
1903 */
1904static inline void nfs_initialise_sb(struct super_block *sb)
1905{
1906 struct nfs_server *server = NFS_SB(sb);
1907
1908 sb->s_magic = NFS_SUPER_MAGIC;
1909
1910 /* We probably want something more informative here */
1911 snprintf(sb->s_id, sizeof(sb->s_id),
1912 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
1913
1914 if (sb->s_blocksize == 0)
1915 sb->s_blocksize = nfs_block_bits(server->wsize,
1916 &sb->s_blocksize_bits);
1917
1918 if (server->flags & NFS_MOUNT_NOAC)
1919 sb->s_flags |= MS_SYNCHRONOUS;
1920
Jens Axboe32a88aa2009-09-16 15:02:33 +02001921 sb->s_bdi = &server->backing_dev_info;
1922
David Howells54ceac42006-08-22 20:06:13 -04001923 nfs_super_set_maxbytes(sb, server->maxfilesize);
1924}
1925
1926/*
1927 * Finish setting up an NFS2/3 superblock
1928 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001929static void nfs_fill_super(struct super_block *sb,
1930 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001931{
1932 struct nfs_server *server = NFS_SB(sb);
1933
1934 sb->s_blocksize_bits = 0;
1935 sb->s_blocksize = 0;
1936 if (data->bsize)
1937 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
1938
1939 if (server->flags & NFS_MOUNT_VER3) {
1940 /* The VFS shouldn't apply the umask to mode bits. We will do
1941 * so ourselves when necessary.
1942 */
1943 sb->s_flags |= MS_POSIXACL;
1944 sb->s_time_gran = 1;
1945 }
1946
1947 sb->s_op = &nfs_sops;
1948 nfs_initialise_sb(sb);
1949}
1950
1951/*
1952 * Finish setting up a cloned NFS2/3 superblock
1953 */
1954static void nfs_clone_super(struct super_block *sb,
1955 const struct super_block *old_sb)
1956{
1957 struct nfs_server *server = NFS_SB(sb);
1958
1959 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1960 sb->s_blocksize = old_sb->s_blocksize;
1961 sb->s_maxbytes = old_sb->s_maxbytes;
1962
1963 if (server->flags & NFS_MOUNT_VER3) {
1964 /* The VFS shouldn't apply the umask to mode bits. We will do
1965 * so ourselves when necessary.
1966 */
1967 sb->s_flags |= MS_POSIXACL;
1968 sb->s_time_gran = 1;
1969 }
1970
1971 sb->s_op = old_sb->s_op;
1972 nfs_initialise_sb(sb);
1973}
1974
Trond Myklebust275a5d22007-05-16 16:53:28 -04001975static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
1976{
1977 const struct nfs_server *a = s->s_fs_info;
1978 const struct rpc_clnt *clnt_a = a->client;
1979 const struct rpc_clnt *clnt_b = b->client;
1980
1981 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
1982 goto Ebusy;
1983 if (a->nfs_client != b->nfs_client)
1984 goto Ebusy;
1985 if (a->flags != b->flags)
1986 goto Ebusy;
1987 if (a->wsize != b->wsize)
1988 goto Ebusy;
1989 if (a->rsize != b->rsize)
1990 goto Ebusy;
1991 if (a->acregmin != b->acregmin)
1992 goto Ebusy;
1993 if (a->acregmax != b->acregmax)
1994 goto Ebusy;
1995 if (a->acdirmin != b->acdirmin)
1996 goto Ebusy;
1997 if (a->acdirmax != b->acdirmax)
1998 goto Ebusy;
1999 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2000 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002001 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002002Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002003 return 0;
2004}
2005
2006struct nfs_sb_mountdata {
2007 struct nfs_server *server;
2008 int mntflags;
2009};
2010
2011static int nfs_set_super(struct super_block *s, void *data)
2012{
2013 struct nfs_sb_mountdata *sb_mntdata = data;
2014 struct nfs_server *server = sb_mntdata->server;
2015 int ret;
2016
2017 s->s_flags = sb_mntdata->mntflags;
2018 s->s_fs_info = server;
2019 ret = set_anon_super(s, server);
2020 if (ret == 0)
2021 server->s_dev = s->s_dev;
2022 return ret;
2023}
2024
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002025static int nfs_compare_super_address(struct nfs_server *server1,
2026 struct nfs_server *server2)
2027{
2028 struct sockaddr *sap1, *sap2;
2029
2030 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2031 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2032
2033 if (sap1->sa_family != sap2->sa_family)
2034 return 0;
2035
2036 switch (sap1->sa_family) {
2037 case AF_INET: {
2038 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2039 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2040 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2041 return 0;
2042 if (sin1->sin_port != sin2->sin_port)
2043 return 0;
2044 break;
2045 }
2046 case AF_INET6: {
2047 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2048 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2049 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2050 return 0;
2051 if (sin1->sin6_port != sin2->sin6_port)
2052 return 0;
2053 break;
2054 }
2055 default:
2056 return 0;
2057 }
2058
2059 return 1;
2060}
2061
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002062static int nfs_compare_super(struct super_block *sb, void *data)
2063{
2064 struct nfs_sb_mountdata *sb_mntdata = data;
2065 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2066 int mntflags = sb_mntdata->mntflags;
2067
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002068 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002069 return 0;
2070 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2071 if (old->flags & NFS_MOUNT_UNSHARED)
2072 return 0;
2073 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2074 return 0;
2075 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002076}
2077
Miklos Szeredifa799752008-04-30 00:54:33 -07002078static int nfs_bdi_register(struct nfs_server *server)
2079{
2080 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2081}
2082
David Howells54ceac42006-08-22 20:06:13 -04002083static int nfs_get_sb(struct file_system_type *fs_type,
2084 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2085{
2086 struct nfs_server *server = NULL;
2087 struct super_block *s;
Trond Myklebust33852a12008-06-19 14:20:11 -04002088 struct nfs_parsed_mount_data *data;
2089 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002090 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002091 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002092 struct nfs_sb_mountdata sb_mntdata = {
2093 .mntflags = flags,
2094 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002095 int error = -ENOMEM;
David Howells54ceac42006-08-22 20:06:13 -04002096
Trond Myklebust33852a12008-06-19 14:20:11 -04002097 data = kzalloc(sizeof(*data), GFP_KERNEL);
2098 mntfh = kzalloc(sizeof(*mntfh), GFP_KERNEL);
2099 if (data == NULL || mntfh == NULL)
2100 goto out_free_fh;
2101
2102 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002103
David Howells54ceac42006-08-22 20:06:13 -04002104 /* Validate the mount data */
Trond Myklebust33852a12008-06-19 14:20:11 -04002105 error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002106 if (error < 0)
Chuck Lever06559602007-07-01 12:12:35 -04002107 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002108
Chuck Lever764302c2009-09-08 19:50:03 -04002109#ifdef CONFIG_NFS_V4
2110 if (data->version == 4) {
2111 error = nfs4_try_mount(flags, dev_name, data, mnt);
2112 kfree(data->client_address);
2113 goto out;
2114 }
2115#endif /* CONFIG_NFS_V4 */
2116
David Howells54ceac42006-08-22 20:06:13 -04002117 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002118 server = nfs_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002119 if (IS_ERR(server)) {
2120 error = PTR_ERR(server);
Chuck Lever06559602007-07-01 12:12:35 -04002121 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002122 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002123 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002124
Trond Myklebust75180df2007-05-16 16:53:28 -04002125 if (server->flags & NFS_MOUNT_UNSHARED)
2126 compare_super = NULL;
2127
David Howells54ceac42006-08-22 20:06:13 -04002128 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002129 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002130 if (IS_ERR(s)) {
2131 error = PTR_ERR(s);
David Howells54ceac42006-08-22 20:06:13 -04002132 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002133 }
2134
David Howells54ceac42006-08-22 20:06:13 -04002135 if (s->s_fs_info != server) {
2136 nfs_free_server(server);
2137 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002138 } else {
2139 error = nfs_bdi_register(server);
2140 if (error)
2141 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002142 }
David Howells54ceac42006-08-22 20:06:13 -04002143
2144 if (!s->s_root) {
2145 /* initial superblock/root creation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002146 nfs_fill_super(s, data);
David Howells08734042009-04-03 16:42:42 +01002147 nfs_fscache_get_super_cookie(s, data);
David Howells54ceac42006-08-22 20:06:13 -04002148 }
2149
Trond Myklebust33852a12008-06-19 14:20:11 -04002150 mntroot = nfs_get_root(s, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002151 if (IS_ERR(mntroot)) {
2152 error = PTR_ERR(mntroot);
2153 goto error_splat_super;
2154 }
2155
Trond Myklebust33852a12008-06-19 14:20:11 -04002156 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002157 if (error)
2158 goto error_splat_root;
2159
David Howellsf7b422b2006-06-09 09:34:33 -04002160 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002161 mnt->mnt_sb = s;
2162 mnt->mnt_root = mntroot;
Chuck Lever06559602007-07-01 12:12:35 -04002163 error = 0;
2164
2165out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002166 kfree(data->nfs_server.hostname);
2167 kfree(data->mount_server.hostname);
David Howells08734042009-04-03 16:42:42 +01002168 kfree(data->fscache_uniq);
Trond Myklebust33852a12008-06-19 14:20:11 -04002169 security_free_mnt_opts(&data->lsm_opts);
2170out_free_fh:
2171 kfree(mntfh);
2172 kfree(data);
Chuck Lever06559602007-07-01 12:12:35 -04002173 return error;
Trond Myklebust816724e2006-06-24 08:41:41 -04002174
David Howells54ceac42006-08-22 20:06:13 -04002175out_err_nosb:
2176 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002177 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002178
Eric Parisf9c3a382008-03-05 14:20:18 -05002179error_splat_root:
2180 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002181error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002182 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002183 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002184}
2185
David Howells54ceac42006-08-22 20:06:13 -04002186/*
2187 * Destroy an NFS2/3 superblock
2188 */
David Howellsf7b422b2006-06-09 09:34:33 -04002189static void nfs_kill_super(struct super_block *s)
2190{
2191 struct nfs_server *server = NFS_SB(s);
2192
2193 kill_anon_super(s);
Jens Axboe92f25052009-09-17 14:51:44 +02002194 bdi_unregister(&server->backing_dev_info);
David Howells08734042009-04-03 16:42:42 +01002195 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002196 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002197}
2198
David Howells54ceac42006-08-22 20:06:13 -04002199/*
2200 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2201 */
2202static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
2203 const char *dev_name, void *raw_data,
2204 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002205{
2206 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002207 struct super_block *s;
2208 struct nfs_server *server;
2209 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002210 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002211 struct nfs_sb_mountdata sb_mntdata = {
2212 .mntflags = flags,
2213 };
David Howells54ceac42006-08-22 20:06:13 -04002214 int error;
2215
2216 dprintk("--> nfs_xdev_get_sb()\n");
2217
2218 /* create a new volume representation */
2219 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2220 if (IS_ERR(server)) {
2221 error = PTR_ERR(server);
2222 goto out_err_noserver;
2223 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002224 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002225
Trond Myklebust75180df2007-05-16 16:53:28 -04002226 if (server->flags & NFS_MOUNT_UNSHARED)
2227 compare_super = NULL;
2228
David Howells54ceac42006-08-22 20:06:13 -04002229 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002230 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002231 if (IS_ERR(s)) {
2232 error = PTR_ERR(s);
2233 goto out_err_nosb;
2234 }
2235
2236 if (s->s_fs_info != server) {
2237 nfs_free_server(server);
2238 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002239 } else {
2240 error = nfs_bdi_register(server);
2241 if (error)
2242 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002243 }
2244
2245 if (!s->s_root) {
2246 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002247 nfs_clone_super(s, data->sb);
2248 }
2249
2250 mntroot = nfs_get_root(s, data->fh);
2251 if (IS_ERR(mntroot)) {
2252 error = PTR_ERR(mntroot);
2253 goto error_splat_super;
2254 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002255 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11002256 dput(mntroot);
2257 error = -ESTALE;
2258 goto error_splat_super;
2259 }
David Howells54ceac42006-08-22 20:06:13 -04002260
2261 s->s_flags |= MS_ACTIVE;
2262 mnt->mnt_sb = s;
2263 mnt->mnt_root = mntroot;
2264
Eric Parisf9c3a382008-03-05 14:20:18 -05002265 /* clone any lsm security options from the parent to the new sb */
2266 security_sb_clone_mnt_opts(data->sb, s);
2267
David Howells54ceac42006-08-22 20:06:13 -04002268 dprintk("<-- nfs_xdev_get_sb() = 0\n");
2269 return 0;
2270
2271out_err_nosb:
2272 nfs_free_server(server);
2273out_err_noserver:
2274 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
2275 return error;
2276
2277error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002278 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002279 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
2280 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002281}
2282
2283#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04002284
2285/*
2286 * Finish setting up a cloned NFS4 superblock
2287 */
2288static void nfs4_clone_super(struct super_block *sb,
2289 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002290{
David Howells54ceac42006-08-22 20:06:13 -04002291 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2292 sb->s_blocksize = old_sb->s_blocksize;
2293 sb->s_maxbytes = old_sb->s_maxbytes;
2294 sb->s_time_gran = 1;
2295 sb->s_op = old_sb->s_op;
2296 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002297}
2298
2299/*
2300 * Set up an NFS4 superblock
2301 */
David Howells54ceac42006-08-22 20:06:13 -04002302static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002303{
David Howellsf7b422b2006-06-09 09:34:33 -04002304 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04002305 sb->s_op = &nfs4_sops;
David Howells54ceac42006-08-22 20:06:13 -04002306 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002307}
2308
Trond Myklebust01c3f052009-06-17 13:22:58 -07002309static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2310{
2311 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3);
2312}
2313
Chuck Lever7630c852009-09-08 19:49:57 -04002314static int nfs4_validate_text_mount_data(void *options,
2315 struct nfs_parsed_mount_data *args,
2316 const char *dev_name)
2317{
2318 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2319
2320 nfs_set_default_port(sap, args->nfs_server.port, NFS_PORT);
2321
2322 nfs_validate_transport_protocol(args);
2323
2324 nfs4_validate_mount_flags(args);
2325
Trond Myklebust2ecda722009-09-08 19:50:07 -04002326 if (args->version != 4) {
2327 dfprintk(MOUNT,
2328 "NFS4: Illegal mount version\n");
2329 return -EINVAL;
2330 }
2331
Chuck Lever7630c852009-09-08 19:49:57 -04002332 if (args->auth_flavor_len > 1) {
2333 dfprintk(MOUNT,
2334 "NFS4: Too many RPC auth flavours specified\n");
2335 return -EINVAL;
2336 }
2337
2338 if (args->client_address == NULL) {
2339 dfprintk(MOUNT,
2340 "NFS4: mount program didn't pass callback address\n");
2341 return -EINVAL;
2342 }
2343
2344 return nfs_parse_devname(dev_name,
2345 &args->nfs_server.hostname,
2346 NFS4_MAXNAMLEN,
2347 &args->nfs_server.export_path,
2348 NFS4_MAXPATHLEN);
2349}
2350
David Howells54ceac42006-08-22 20:06:13 -04002351/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002352 * Validate NFSv4 mount options
2353 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002354static int nfs4_validate_mount_data(void *options,
2355 struct nfs_parsed_mount_data *args,
2356 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002357{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002358 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002359 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002360 char *c;
2361
2362 if (data == NULL)
2363 goto out_no_data;
2364
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002365 args->rsize = NFS_MAX_FILE_IO_SIZE;
2366 args->wsize = NFS_MAX_FILE_IO_SIZE;
Chuck Lever0e0cab72008-06-26 17:47:12 -04002367 args->acregmin = NFS_DEF_ACREGMIN;
2368 args->acregmax = NFS_DEF_ACREGMAX;
2369 args->acdirmin = NFS_DEF_ACDIRMIN;
2370 args->acdirmax = NFS_DEF_ACDIRMAX;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002371 args->nfs_server.port = NFS_UNSPEC_PORT;
Chuck Lever6738b252008-06-24 16:33:54 -04002372 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Lever059f90b2009-08-09 15:09:31 -04002373 args->auth_flavor_len = 1;
Chuck Lever764302c2009-09-08 19:50:03 -04002374 args->version = 4;
Mike Sager3fd5be92009-04-01 09:21:48 -04002375 args->minorversion = 0;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002376
Chuck Leverf0768eb2007-07-01 12:13:01 -04002377 switch (data->version) {
2378 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002379 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002380 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002381 if (data->host_addrlen == 0)
2382 goto out_no_address;
2383 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002384 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002385 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002386 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002387 goto out_no_address;
2388
Chuck Lever6738b252008-06-24 16:33:54 -04002389 if (data->auth_flavourlen) {
2390 if (data->auth_flavourlen > 1)
2391 goto out_inval_auth;
Trond Myklebust20c71f52007-09-20 20:23:51 -04002392 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002393 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04002394 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002395 return -EFAULT;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002396 }
2397
2398 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2399 if (IS_ERR(c))
2400 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002401 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002402
2403 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2404 if (IS_ERR(c))
2405 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002406 args->nfs_server.export_path = c;
2407 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002408
2409 c = strndup_user(data->client_addr.data, 16);
2410 if (IS_ERR(c))
2411 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002412 args->client_address = c;
2413
2414 /*
2415 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2416 * can deal with.
2417 */
2418
2419 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2420 args->rsize = data->rsize;
2421 args->wsize = data->wsize;
2422 args->timeo = data->timeo;
2423 args->retrans = data->retrans;
2424 args->acregmin = data->acregmin;
2425 args->acregmax = data->acregmax;
2426 args->acdirmin = data->acdirmin;
2427 args->acdirmax = data->acdirmax;
2428 args->nfs_server.protocol = data->proto;
Trond Myklebust259875e2008-07-02 14:43:47 -04002429 nfs_validate_transport_protocol(args);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002430
2431 break;
Chuck Lever7630c852009-09-08 19:49:57 -04002432 default:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002433 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04002434 return -EINVAL;
2435
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002436 if (!nfs_verify_server_address(sap))
Chuck Lever80071222007-07-01 12:13:59 -04002437 return -EINVAL;
Chuck Levered596a82008-06-26 17:47:05 -04002438
Chuck Lever7630c852009-09-08 19:49:57 -04002439 return nfs4_validate_text_mount_data(options, args, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002440 }
2441
2442 return 0;
2443
2444out_no_data:
2445 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2446 return -EINVAL;
2447
2448out_inval_auth:
2449 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2450 data->auth_flavourlen);
2451 return -EINVAL;
2452
2453out_no_address:
2454 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2455 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002456}
2457
2458/*
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002459 * Get the superblock for the NFS4 root partition
David Howells54ceac42006-08-22 20:06:13 -04002460 */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002461static int nfs4_remote_get_sb(struct file_system_type *fs_type,
Trond Myklebust816724e2006-06-24 08:41:41 -04002462 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002463{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002464 struct nfs_parsed_mount_data *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002465 struct super_block *s;
2466 struct nfs_server *server;
Trond Myklebust33852a12008-06-19 14:20:11 -04002467 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002468 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002469 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002470 struct nfs_sb_mountdata sb_mntdata = {
2471 .mntflags = flags,
2472 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002473 int error = -ENOMEM;
David Howellsf7b422b2006-06-09 09:34:33 -04002474
Trond Myklebust33852a12008-06-19 14:20:11 -04002475 mntfh = kzalloc(sizeof(*mntfh), GFP_KERNEL);
2476 if (data == NULL || mntfh == NULL)
2477 goto out_free_fh;
2478
2479 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002480
David Howells54ceac42006-08-22 20:06:13 -04002481 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002482 server = nfs4_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002483 if (IS_ERR(server)) {
2484 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04002485 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002486 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002487 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04002488
Trond Myklebust75180df2007-05-16 16:53:28 -04002489 if (server->flags & NFS4_MOUNT_UNSHARED)
2490 compare_super = NULL;
2491
David Howells54ceac42006-08-22 20:06:13 -04002492 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002493 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002494 if (IS_ERR(s)) {
2495 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04002496 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04002497 }
2498
Trond Myklebust5dd31772006-08-24 01:03:05 -04002499 if (s->s_fs_info != server) {
2500 nfs_free_server(server);
2501 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002502 } else {
2503 error = nfs_bdi_register(server);
2504 if (error)
2505 goto error_splat_super;
Trond Myklebust5dd31772006-08-24 01:03:05 -04002506 }
2507
David Howells54ceac42006-08-22 20:06:13 -04002508 if (!s->s_root) {
2509 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002510 nfs4_fill_super(s);
David Howells08734042009-04-03 16:42:42 +01002511 nfs_fscache_get_super_cookie(s, data);
Trond Myklebust816724e2006-06-24 08:41:41 -04002512 }
David Howellsf7b422b2006-06-09 09:34:33 -04002513
Trond Myklebust33852a12008-06-19 14:20:11 -04002514 mntroot = nfs4_get_root(s, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002515 if (IS_ERR(mntroot)) {
2516 error = PTR_ERR(mntroot);
2517 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002518 }
David Howells54ceac42006-08-22 20:06:13 -04002519
Trond Myklebust33852a12008-06-19 14:20:11 -04002520 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Paris46c8ac72008-05-02 13:42:42 -07002521 if (error)
2522 goto error_splat_root;
2523
David Howellsf7b422b2006-06-09 09:34:33 -04002524 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002525 mnt->mnt_sb = s;
2526 mnt->mnt_root = mntroot;
Chuck Lever29eb9812007-07-01 12:12:30 -04002527 error = 0;
David Howells54ceac42006-08-22 20:06:13 -04002528
Chuck Lever29eb9812007-07-01 12:12:30 -04002529out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002530 security_free_mnt_opts(&data->lsm_opts);
2531out_free_fh:
2532 kfree(mntfh);
Trond Myklebust816724e2006-06-24 08:41:41 -04002533 return error;
David Howells54ceac42006-08-22 20:06:13 -04002534
Chuck Lever29eb9812007-07-01 12:12:30 -04002535out_free:
2536 nfs_free_server(server);
2537 goto out;
2538
Eric Paris46c8ac72008-05-02 13:42:42 -07002539error_splat_root:
2540 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002541error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002542 deactivate_locked_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04002543 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002544}
2545
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002546static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type,
2547 int flags, void *data, const char *hostname)
2548{
2549 struct vfsmount *root_mnt;
2550 char *root_devname;
2551 size_t len;
2552
2553 len = strlen(hostname) + 3;
2554 root_devname = kmalloc(len, GFP_KERNEL);
2555 if (root_devname == NULL)
2556 return ERR_PTR(-ENOMEM);
2557 snprintf(root_devname, len, "%s:/", hostname);
2558 root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data);
2559 kfree(root_devname);
2560 return root_mnt;
2561}
2562
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002563static void nfs_fix_devname(const struct path *path, struct vfsmount *mnt)
2564{
2565 char *page = (char *) __get_free_page(GFP_KERNEL);
2566 char *devname, *tmp;
2567
2568 if (page == NULL)
2569 return;
2570 devname = nfs_path(path->mnt->mnt_devname,
2571 path->mnt->mnt_root, path->dentry,
2572 page, PAGE_SIZE);
2573 if (devname == NULL)
2574 goto out_freepage;
2575 tmp = kstrdup(devname, GFP_KERNEL);
2576 if (tmp == NULL)
2577 goto out_freepage;
2578 kfree(mnt->mnt_devname);
2579 mnt->mnt_devname = tmp;
2580out_freepage:
2581 free_page((unsigned long)page);
2582}
2583
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002584static int nfs_follow_remote_path(struct vfsmount *root_mnt,
2585 const char *export_path, struct vfsmount *mnt_target)
2586{
2587 struct mnt_namespace *ns_private;
2588 struct nameidata nd;
2589 struct super_block *s;
2590 int ret;
2591
2592 ns_private = create_mnt_ns(root_mnt);
2593 ret = PTR_ERR(ns_private);
2594 if (IS_ERR(ns_private))
2595 goto out_mntput;
2596
2597 ret = vfs_path_lookup(root_mnt->mnt_root, root_mnt,
2598 export_path, LOOKUP_FOLLOW, &nd);
2599
2600 put_mnt_ns(ns_private);
2601
2602 if (ret != 0)
2603 goto out_err;
2604
2605 s = nd.path.mnt->mnt_sb;
2606 atomic_inc(&s->s_active);
2607 mnt_target->mnt_sb = s;
2608 mnt_target->mnt_root = dget(nd.path.dentry);
2609
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002610 /* Correct the device pathname */
2611 nfs_fix_devname(&nd.path, mnt_target);
2612
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002613 path_put(&nd.path);
2614 down_write(&s->s_umount);
2615 return 0;
2616out_mntput:
2617 mntput(root_mnt);
2618out_err:
2619 return ret;
2620}
2621
Chuck Levera6fe23b2009-09-08 19:50:00 -04002622static int nfs4_try_mount(int flags, const char *dev_name,
2623 struct nfs_parsed_mount_data *data,
2624 struct vfsmount *mnt)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002625{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002626 char *export_path;
2627 struct vfsmount *root_mnt;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002628 int error;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002629
Chuck Levera6fe23b2009-09-08 19:50:00 -04002630 dfprintk(MOUNT, "--> nfs4_try_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002631
2632 export_path = data->nfs_server.export_path;
2633 data->nfs_server.export_path = "/";
2634 root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data,
2635 data->nfs_server.hostname);
2636 data->nfs_server.export_path = export_path;
2637
2638 error = PTR_ERR(root_mnt);
2639 if (IS_ERR(root_mnt))
2640 goto out;
2641
2642 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
2643
2644out:
Chuck Levera6fe23b2009-09-08 19:50:00 -04002645 dfprintk(MOUNT, "<-- nfs4_try_mount() = %d%s\n", error,
2646 error != 0 ? " [error]" : "");
2647 return error;
2648}
2649
2650/*
2651 * Get the superblock for an NFS4 mountpoint
2652 */
2653static int nfs4_get_sb(struct file_system_type *fs_type,
2654 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2655{
2656 struct nfs_parsed_mount_data *data;
2657 int error = -ENOMEM;
2658
2659 data = kzalloc(sizeof(*data), GFP_KERNEL);
2660 if (data == NULL)
2661 goto out_free_data;
2662
2663 /* Validate the mount data */
2664 error = nfs4_validate_mount_data(raw_data, data, dev_name);
2665 if (error < 0)
2666 goto out;
2667
2668 error = nfs4_try_mount(flags, dev_name, data, mnt);
2669
2670out:
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002671 kfree(data->client_address);
2672 kfree(data->nfs_server.export_path);
2673 kfree(data->nfs_server.hostname);
2674 kfree(data->fscache_uniq);
2675out_free_data:
2676 kfree(data);
2677 dprintk("<-- nfs4_get_sb() = %d%s\n", error,
2678 error != 0 ? " [error]" : "");
2679 return error;
2680}
2681
David Howellsf7b422b2006-06-09 09:34:33 -04002682static void nfs4_kill_super(struct super_block *sb)
2683{
2684 struct nfs_server *server = NFS_SB(sb);
2685
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002686 dprintk("--> %s\n", __func__);
Trond Myklebust515d8612008-12-23 15:21:46 -05002687 nfs_super_return_all_delegations(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002688 kill_anon_super(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002689 nfs4_renewd_prepare_shutdown(server);
David Howells08734042009-04-03 16:42:42 +01002690 nfs_fscache_release_super_cookie(sb);
David Howells54ceac42006-08-22 20:06:13 -04002691 nfs_free_server(server);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002692 dprintk("<-- %s\n", __func__);
David Howellsf7b422b2006-06-09 09:34:33 -04002693}
2694
2695/*
David Howells54ceac42006-08-22 20:06:13 -04002696 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04002697 */
David Howells54ceac42006-08-22 20:06:13 -04002698static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
2699 const char *dev_name, void *raw_data,
2700 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002701{
2702 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002703 struct super_block *s;
2704 struct nfs_server *server;
2705 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002706 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002707 struct nfs_sb_mountdata sb_mntdata = {
2708 .mntflags = flags,
2709 };
David Howells54ceac42006-08-22 20:06:13 -04002710 int error;
2711
2712 dprintk("--> nfs4_xdev_get_sb()\n");
2713
2714 /* create a new volume representation */
2715 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2716 if (IS_ERR(server)) {
2717 error = PTR_ERR(server);
2718 goto out_err_noserver;
2719 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002720 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002721
Trond Myklebust75180df2007-05-16 16:53:28 -04002722 if (server->flags & NFS4_MOUNT_UNSHARED)
2723 compare_super = NULL;
2724
David Howells54ceac42006-08-22 20:06:13 -04002725 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04002726 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002727 if (IS_ERR(s)) {
2728 error = PTR_ERR(s);
2729 goto out_err_nosb;
2730 }
2731
2732 if (s->s_fs_info != server) {
2733 nfs_free_server(server);
2734 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002735 } else {
2736 error = nfs_bdi_register(server);
2737 if (error)
2738 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002739 }
2740
2741 if (!s->s_root) {
2742 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002743 nfs4_clone_super(s, data->sb);
2744 }
2745
2746 mntroot = nfs4_get_root(s, data->fh);
2747 if (IS_ERR(mntroot)) {
2748 error = PTR_ERR(mntroot);
2749 goto error_splat_super;
2750 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002751 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2752 dput(mntroot);
2753 error = -ESTALE;
2754 goto error_splat_super;
2755 }
David Howells54ceac42006-08-22 20:06:13 -04002756
2757 s->s_flags |= MS_ACTIVE;
2758 mnt->mnt_sb = s;
2759 mnt->mnt_root = mntroot;
2760
Eric Paris46c8ac72008-05-02 13:42:42 -07002761 security_sb_clone_mnt_opts(data->sb, s);
2762
David Howells54ceac42006-08-22 20:06:13 -04002763 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
2764 return 0;
2765
2766out_err_nosb:
2767 nfs_free_server(server);
2768out_err_noserver:
2769 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
2770 return error;
2771
2772error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002773 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002774 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
2775 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002776}
2777
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002778static int nfs4_remote_referral_get_sb(struct file_system_type *fs_type,
2779 int flags, const char *dev_name, void *raw_data,
2780 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002781{
2782 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002783 struct super_block *s;
2784 struct nfs_server *server;
2785 struct dentry *mntroot;
2786 struct nfs_fh mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04002787 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002788 struct nfs_sb_mountdata sb_mntdata = {
2789 .mntflags = flags,
2790 };
David Howells54ceac42006-08-22 20:06:13 -04002791 int error;
2792
2793 dprintk("--> nfs4_referral_get_sb()\n");
2794
2795 /* create a new volume representation */
2796 server = nfs4_create_referral_server(data, &mntfh);
2797 if (IS_ERR(server)) {
2798 error = PTR_ERR(server);
2799 goto out_err_noserver;
2800 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002801 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002802
Trond Myklebust75180df2007-05-16 16:53:28 -04002803 if (server->flags & NFS4_MOUNT_UNSHARED)
2804 compare_super = NULL;
2805
David Howells54ceac42006-08-22 20:06:13 -04002806 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04002807 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002808 if (IS_ERR(s)) {
2809 error = PTR_ERR(s);
2810 goto out_err_nosb;
2811 }
2812
2813 if (s->s_fs_info != server) {
2814 nfs_free_server(server);
2815 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002816 } else {
2817 error = nfs_bdi_register(server);
2818 if (error)
2819 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002820 }
2821
2822 if (!s->s_root) {
2823 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002824 nfs4_fill_super(s);
2825 }
2826
Trond Myklebustf2d0d852007-02-02 14:46:09 -08002827 mntroot = nfs4_get_root(s, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002828 if (IS_ERR(mntroot)) {
2829 error = PTR_ERR(mntroot);
2830 goto error_splat_super;
2831 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002832 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2833 dput(mntroot);
2834 error = -ESTALE;
2835 goto error_splat_super;
2836 }
David Howells54ceac42006-08-22 20:06:13 -04002837
2838 s->s_flags |= MS_ACTIVE;
2839 mnt->mnt_sb = s;
2840 mnt->mnt_root = mntroot;
2841
Eric Paris46c8ac72008-05-02 13:42:42 -07002842 security_sb_clone_mnt_opts(data->sb, s);
2843
David Howells54ceac42006-08-22 20:06:13 -04002844 dprintk("<-- nfs4_referral_get_sb() = 0\n");
2845 return 0;
2846
2847out_err_nosb:
2848 nfs_free_server(server);
2849out_err_noserver:
2850 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
2851 return error;
2852
2853error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002854 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002855 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
2856 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002857}
2858
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002859/*
2860 * Create an NFS4 server record on referral traversal
2861 */
2862static int nfs4_referral_get_sb(struct file_system_type *fs_type,
2863 int flags, const char *dev_name, void *raw_data,
2864 struct vfsmount *mnt)
2865{
2866 struct nfs_clone_mount *data = raw_data;
2867 char *export_path;
2868 struct vfsmount *root_mnt;
2869 int error;
2870
2871 dprintk("--> nfs4_referral_get_sb()\n");
2872
2873 export_path = data->mnt_path;
2874 data->mnt_path = "/";
2875
2876 root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type,
2877 flags, data, data->hostname);
2878 data->mnt_path = export_path;
2879
2880 error = PTR_ERR(root_mnt);
2881 if (IS_ERR(root_mnt))
2882 goto out;
2883
2884 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
2885out:
2886 dprintk("<-- nfs4_referral_get_sb() = %d%s\n", error,
2887 error != 0 ? " [error]" : "");
2888 return error;
2889}
2890
David Howells54ceac42006-08-22 20:06:13 -04002891#endif /* CONFIG_NFS_V4 */