blob: f0188eaf37265dc891d3fca84fb70b6266ca821e [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 server = NFS_SB(sb);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400718 /* -EIO all pending I/O */
719 rpc = server->client_acl;
720 if (!IS_ERR(rpc))
721 rpc_killall_tasks(rpc);
722 rpc = server->client;
723 if (!IS_ERR(rpc))
724 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400725}
726
Trond Myklebustc5811db2009-10-06 15:40:15 -0400727static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int version)
Chuck Lever9423a082009-09-23 14:36:38 -0400728{
729 struct nfs_parsed_mount_data *data;
730
731 data = kzalloc(sizeof(*data), GFP_KERNEL);
732 if (data) {
Chuck Lever9423a082009-09-23 14:36:38 -0400733 data->rsize = NFS_MAX_FILE_IO_SIZE;
734 data->wsize = NFS_MAX_FILE_IO_SIZE;
735 data->acregmin = NFS_DEF_ACREGMIN;
736 data->acregmax = NFS_DEF_ACREGMAX;
737 data->acdirmin = NFS_DEF_ACDIRMIN;
738 data->acdirmax = NFS_DEF_ACDIRMAX;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400739 data->mount_server.port = NFS_UNSPEC_PORT;
Chuck Lever9423a082009-09-23 14:36:38 -0400740 data->nfs_server.port = NFS_UNSPEC_PORT;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400741 data->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Lever9423a082009-09-23 14:36:38 -0400742 data->auth_flavors[0] = RPC_AUTH_UNIX;
743 data->auth_flavor_len = 1;
Trond Myklebustc5811db2009-10-06 15:40:15 -0400744 data->version = version;
Chuck Lever9423a082009-09-23 14:36:38 -0400745 data->minorversion = 0;
746 }
747 return data;
748}
749
David Howellsf7b422b2006-06-09 09:34:33 -0400750/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500751 * Sanity-check a server address provided by the mount command.
752 *
753 * Address family must be initialized, and address must not be
754 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400755 */
756static int nfs_verify_server_address(struct sockaddr *addr)
757{
758 switch (addr->sa_family) {
759 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500760 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700761 return sa->sin_addr.s_addr != htonl(INADDR_ANY);
Chuck Levercdcd7f92007-12-10 14:57:45 -0500762 }
763 case AF_INET6: {
764 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
765 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400766 }
767 }
768
Chuck Lever53a0b9c2009-08-09 15:09:36 -0400769 dfprintk(MOUNT, "NFS: Invalid IP address specified\n");
Chuck Leverfc50d582007-07-01 12:12:46 -0400770 return 0;
771}
772
Chuck Lever9412b922007-12-10 14:59:21 -0500773/*
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400774 * Select between a default port value and a user-specified port value.
775 * If a zero value is set, then autobind will be used.
776 */
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400777static void nfs_set_port(struct sockaddr *sap, int *port,
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400778 const unsigned short default_port)
779{
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400780 if (*port == NFS_UNSPEC_PORT)
781 *port = default_port;
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400782
Trond Myklebustf5855fe2009-10-06 15:40:37 -0400783 rpc_set_port(sap, *port);
Chuck Lever4cfd74f2009-09-08 19:49:47 -0400784}
785
786/*
Trond Myklebust259875e2008-07-02 14:43:47 -0400787 * Sanity check the NFS transport protocol.
788 *
789 */
790static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt)
791{
792 switch (mnt->nfs_server.protocol) {
793 case XPRT_TRANSPORT_UDP:
794 case XPRT_TRANSPORT_TCP:
795 case XPRT_TRANSPORT_RDMA:
796 break;
797 default:
798 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
799 }
800}
801
802/*
803 * For text based NFSv2/v3 mounts, the mount protocol transport default
804 * settings should depend upon the specified NFS transport.
805 */
806static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt)
807{
808 nfs_validate_transport_protocol(mnt);
809
810 if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP ||
811 mnt->mount_server.protocol == XPRT_TRANSPORT_TCP)
812 return;
813 switch (mnt->nfs_server.protocol) {
814 case XPRT_TRANSPORT_UDP:
815 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
816 break;
817 case XPRT_TRANSPORT_TCP:
818 case XPRT_TRANSPORT_RDMA:
819 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
820 }
821}
822
823/*
Chuck Lever01060c82008-06-24 16:33:38 -0400824 * Parse the value of the 'sec=' option.
Chuck Lever01060c82008-06-24 16:33:38 -0400825 */
826static int nfs_parse_security_flavors(char *value,
827 struct nfs_parsed_mount_data *mnt)
828{
829 substring_t args[MAX_OPT_ARGS];
830
831 dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value);
832
833 switch (match_token(value, nfs_secflavor_tokens, args)) {
834 case Opt_sec_none:
Chuck Lever01060c82008-06-24 16:33:38 -0400835 mnt->auth_flavors[0] = RPC_AUTH_NULL;
836 break;
837 case Opt_sec_sys:
Chuck Lever01060c82008-06-24 16:33:38 -0400838 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
839 break;
840 case Opt_sec_krb5:
Chuck Lever01060c82008-06-24 16:33:38 -0400841 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
842 break;
843 case Opt_sec_krb5i:
Chuck Lever01060c82008-06-24 16:33:38 -0400844 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
845 break;
846 case Opt_sec_krb5p:
Chuck Lever01060c82008-06-24 16:33:38 -0400847 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
848 break;
849 case Opt_sec_lkey:
Chuck Lever01060c82008-06-24 16:33:38 -0400850 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
851 break;
852 case Opt_sec_lkeyi:
Chuck Lever01060c82008-06-24 16:33:38 -0400853 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
854 break;
855 case Opt_sec_lkeyp:
Chuck Lever01060c82008-06-24 16:33:38 -0400856 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
857 break;
858 case Opt_sec_spkm:
Chuck Lever01060c82008-06-24 16:33:38 -0400859 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
860 break;
861 case Opt_sec_spkmi:
Chuck Lever01060c82008-06-24 16:33:38 -0400862 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
863 break;
864 case Opt_sec_spkmp:
Chuck Lever01060c82008-06-24 16:33:38 -0400865 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
866 break;
867 default:
868 return 0;
869 }
870
Chuck Lever059f90b2009-08-09 15:09:31 -0400871 mnt->auth_flavor_len = 1;
Chuck Lever01060c82008-06-24 16:33:38 -0400872 return 1;
873}
874
875/*
Chuck Leverbf0fd762007-07-01 12:13:44 -0400876 * Error-check and convert a string of mount options from user space into
Chuck Leverf45663c2008-06-24 19:28:02 -0400877 * a data structure. The whole mount string is processed; bad options are
878 * skipped as they are encountered. If there were no errors, return 1;
879 * otherwise return 0 (zero).
Chuck Leverbf0fd762007-07-01 12:13:44 -0400880 */
881static int nfs_parse_mount_options(char *raw,
882 struct nfs_parsed_mount_data *mnt)
883{
Eric Parisf9c3a382008-03-05 14:20:18 -0500884 char *p, *string, *secdata;
Chuck Leverd23c45f2009-06-17 18:02:13 -0700885 int rc, sloppy = 0, invalid_option = 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400886
887 if (!raw) {
888 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
889 return 1;
890 }
891 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
892
Eric Parisf9c3a382008-03-05 14:20:18 -0500893 secdata = alloc_secdata();
894 if (!secdata)
895 goto out_nomem;
896
897 rc = security_sb_copy_data(raw, secdata);
898 if (rc)
899 goto out_security_failure;
900
901 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
902 if (rc)
903 goto out_security_failure;
904
905 free_secdata(secdata);
906
Chuck Leverbf0fd762007-07-01 12:13:44 -0400907 while ((p = strsep(&raw, ",")) != NULL) {
908 substring_t args[MAX_OPT_ARGS];
Chuck Levera5a16ba2009-06-17 18:02:14 -0700909 unsigned long option;
910 int token;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400911
912 if (!*p)
913 continue;
914
915 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
916
917 token = match_token(p, nfs_mount_option_tokens, args);
918 switch (token) {
Chuck Leverf45663c2008-06-24 19:28:02 -0400919
920 /*
921 * boolean options: foo/nofoo
922 */
Chuck Leverbf0fd762007-07-01 12:13:44 -0400923 case Opt_soft:
924 mnt->flags |= NFS_MOUNT_SOFT;
925 break;
926 case Opt_hard:
927 mnt->flags &= ~NFS_MOUNT_SOFT;
928 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400929 case Opt_posix:
930 mnt->flags |= NFS_MOUNT_POSIX;
931 break;
932 case Opt_noposix:
933 mnt->flags &= ~NFS_MOUNT_POSIX;
934 break;
935 case Opt_cto:
936 mnt->flags &= ~NFS_MOUNT_NOCTO;
937 break;
938 case Opt_nocto:
939 mnt->flags |= NFS_MOUNT_NOCTO;
940 break;
941 case Opt_ac:
942 mnt->flags &= ~NFS_MOUNT_NOAC;
943 break;
944 case Opt_noac:
945 mnt->flags |= NFS_MOUNT_NOAC;
946 break;
947 case Opt_lock:
948 mnt->flags &= ~NFS_MOUNT_NONLM;
949 break;
950 case Opt_nolock:
951 mnt->flags |= NFS_MOUNT_NONLM;
952 break;
953 case Opt_v2:
954 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -0400955 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400956 break;
957 case Opt_v3:
958 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -0400959 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400960 break;
Chuck Lever764302c2009-09-08 19:50:03 -0400961#ifdef CONFIG_NFS_V4
962 case Opt_v4:
963 mnt->flags &= ~NFS_MOUNT_VER3;
964 mnt->version = 4;
965 break;
966#endif
Chuck Leverbf0fd762007-07-01 12:13:44 -0400967 case Opt_udp:
968 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400969 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400970 break;
971 case Opt_tcp:
972 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400973 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400974 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400975 case Opt_rdma:
976 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
977 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -0400978 xprt_load_transport(p);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400979 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400980 case Opt_acl:
981 mnt->flags &= ~NFS_MOUNT_NOACL;
982 break;
983 case Opt_noacl:
984 mnt->flags |= NFS_MOUNT_NOACL;
985 break;
986 case Opt_rdirplus:
987 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
988 break;
989 case Opt_nordirplus:
990 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
991 break;
Trond Myklebust75180df2007-05-16 16:53:28 -0400992 case Opt_sharecache:
993 mnt->flags &= ~NFS_MOUNT_UNSHARED;
994 break;
995 case Opt_nosharecache:
996 mnt->flags |= NFS_MOUNT_UNSHARED;
997 break;
Chuck Leverd7403512008-12-23 15:21:37 -0500998 case Opt_resvport:
999 mnt->flags &= ~NFS_MOUNT_NORESVPORT;
1000 break;
1001 case Opt_noresvport:
1002 mnt->flags |= NFS_MOUNT_NORESVPORT;
1003 break;
David Howellsb797cac2009-04-03 16:42:48 +01001004 case Opt_fscache:
1005 mnt->options |= NFS_OPTION_FSCACHE;
1006 kfree(mnt->fscache_uniq);
1007 mnt->fscache_uniq = NULL;
1008 break;
1009 case Opt_nofscache:
1010 mnt->options &= ~NFS_OPTION_FSCACHE;
1011 kfree(mnt->fscache_uniq);
1012 mnt->fscache_uniq = NULL;
1013 break;
1014 case Opt_fscache_uniq:
1015 string = match_strdup(args);
1016 if (!string)
1017 goto out_nomem;
1018 kfree(mnt->fscache_uniq);
1019 mnt->fscache_uniq = string;
1020 mnt->options |= NFS_OPTION_FSCACHE;
1021 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001022
Chuck Leverf45663c2008-06-24 19:28:02 -04001023 /*
1024 * options that take numeric values
1025 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001026 case Opt_port:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001027 string = match_strdup(args);
1028 if (string == NULL)
1029 goto out_nomem;
1030 rc = strict_strtoul(string, 10, &option);
1031 kfree(string);
1032 if (rc != 0 || option > USHORT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001033 goto out_invalid_value;
1034 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001035 break;
1036 case Opt_rsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001037 string = match_strdup(args);
1038 if (string == NULL)
1039 goto out_nomem;
1040 rc = strict_strtoul(string, 10, &option);
1041 kfree(string);
1042 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001043 goto out_invalid_value;
1044 mnt->rsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001045 break;
1046 case Opt_wsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001047 string = match_strdup(args);
1048 if (string == NULL)
1049 goto out_nomem;
1050 rc = strict_strtoul(string, 10, &option);
1051 kfree(string);
1052 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001053 goto out_invalid_value;
1054 mnt->wsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001055 break;
1056 case Opt_bsize:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001057 string = match_strdup(args);
1058 if (string == NULL)
1059 goto out_nomem;
1060 rc = strict_strtoul(string, 10, &option);
1061 kfree(string);
1062 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001063 goto out_invalid_value;
1064 mnt->bsize = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001065 break;
1066 case Opt_timeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001067 string = match_strdup(args);
1068 if (string == NULL)
1069 goto out_nomem;
1070 rc = strict_strtoul(string, 10, &option);
1071 kfree(string);
1072 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001073 goto out_invalid_value;
1074 mnt->timeo = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001075 break;
1076 case Opt_retrans:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001077 string = match_strdup(args);
1078 if (string == NULL)
1079 goto out_nomem;
1080 rc = strict_strtoul(string, 10, &option);
1081 kfree(string);
1082 if (rc != 0 || option == 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001083 goto out_invalid_value;
1084 mnt->retrans = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001085 break;
1086 case Opt_acregmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001087 string = match_strdup(args);
1088 if (string == NULL)
1089 goto out_nomem;
1090 rc = strict_strtoul(string, 10, &option);
1091 kfree(string);
1092 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001093 goto out_invalid_value;
1094 mnt->acregmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001095 break;
1096 case Opt_acregmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001097 string = match_strdup(args);
1098 if (string == NULL)
1099 goto out_nomem;
1100 rc = strict_strtoul(string, 10, &option);
1101 kfree(string);
1102 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001103 goto out_invalid_value;
1104 mnt->acregmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001105 break;
1106 case Opt_acdirmin:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001107 string = match_strdup(args);
1108 if (string == NULL)
1109 goto out_nomem;
1110 rc = strict_strtoul(string, 10, &option);
1111 kfree(string);
1112 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001113 goto out_invalid_value;
1114 mnt->acdirmin = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001115 break;
1116 case Opt_acdirmax:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001117 string = match_strdup(args);
1118 if (string == NULL)
1119 goto out_nomem;
1120 rc = strict_strtoul(string, 10, &option);
1121 kfree(string);
1122 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001123 goto out_invalid_value;
1124 mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001125 break;
1126 case Opt_actimeo:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001127 string = match_strdup(args);
1128 if (string == NULL)
1129 goto out_nomem;
1130 rc = strict_strtoul(string, 10, &option);
1131 kfree(string);
1132 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001133 goto out_invalid_value;
1134 mnt->acregmin = mnt->acregmax =
1135 mnt->acdirmin = mnt->acdirmax = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001136 break;
1137 case Opt_namelen:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001138 string = match_strdup(args);
1139 if (string == NULL)
1140 goto out_nomem;
1141 rc = strict_strtoul(string, 10, &option);
1142 kfree(string);
1143 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001144 goto out_invalid_value;
1145 mnt->namlen = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001146 break;
1147 case Opt_mountport:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001148 string = match_strdup(args);
1149 if (string == NULL)
1150 goto out_nomem;
1151 rc = strict_strtoul(string, 10, &option);
1152 kfree(string);
1153 if (rc != 0 || option > USHORT_MAX)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001154 goto out_invalid_value;
1155 mnt->mount_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001156 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001157 case Opt_mountvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001158 string = match_strdup(args);
1159 if (string == NULL)
1160 goto out_nomem;
1161 rc = strict_strtoul(string, 10, &option);
1162 kfree(string);
1163 if (rc != 0 ||
Chuck Leverf45663c2008-06-24 19:28:02 -04001164 option < NFS_MNT_VERSION ||
Chuck Leverd23c45f2009-06-17 18:02:13 -07001165 option > NFS_MNT3_VERSION)
1166 goto out_invalid_value;
1167 mnt->mount_server.version = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001168 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001169 case Opt_nfsvers:
Chuck Levera5a16ba2009-06-17 18:02:14 -07001170 string = match_strdup(args);
1171 if (string == NULL)
1172 goto out_nomem;
1173 rc = strict_strtoul(string, 10, &option);
1174 kfree(string);
1175 if (rc != 0)
Chuck Leverd23c45f2009-06-17 18:02:13 -07001176 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001177 switch (option) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001178 case NFS2_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001179 mnt->flags &= ~NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001180 mnt->version = 2;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001181 break;
Chuck Leverf45663c2008-06-24 19:28:02 -04001182 case NFS3_VERSION:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001183 mnt->flags |= NFS_MOUNT_VER3;
Chuck Lever764302c2009-09-08 19:50:03 -04001184 mnt->version = 3;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001185 break;
Chuck Lever764302c2009-09-08 19:50:03 -04001186#ifdef CONFIG_NFS_V4
1187 case NFS4_VERSION:
1188 mnt->flags &= ~NFS_MOUNT_VER3;
1189 mnt->version = 4;
1190 break;
1191#endif
Chuck Leverbf0fd762007-07-01 12:13:44 -04001192 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001193 goto out_invalid_value;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001194 }
1195 break;
Mike Sager3fd5be92009-04-01 09:21:48 -04001196 case Opt_minorversion:
Chuck Leverf3f4f4e2009-08-09 15:09:29 -04001197 string = match_strdup(args);
1198 if (string == NULL)
1199 goto out_nomem;
1200 rc = strict_strtoul(string, 10, &option);
1201 kfree(string);
1202 if (rc != 0)
1203 goto out_invalid_value;
1204 if (option > NFS4_MAX_MINOR_VERSION)
1205 goto out_invalid_value;
1206 mnt->minorversion = option;
Mike Sager3fd5be92009-04-01 09:21:48 -04001207 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001208
Chuck Leverf45663c2008-06-24 19:28:02 -04001209 /*
1210 * options that take text values
1211 */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001212 case Opt_sec:
1213 string = match_strdup(args);
1214 if (string == NULL)
1215 goto out_nomem;
Chuck Lever01060c82008-06-24 16:33:38 -04001216 rc = nfs_parse_security_flavors(string, mnt);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001217 kfree(string);
Chuck Leverf45663c2008-06-24 19:28:02 -04001218 if (!rc) {
Chuck Leverf45663c2008-06-24 19:28:02 -04001219 dfprintk(MOUNT, "NFS: unrecognized "
1220 "security flavor\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001221 return 0;
Chuck Leverf45663c2008-06-24 19:28:02 -04001222 }
Chuck Leverbf0fd762007-07-01 12:13:44 -04001223 break;
1224 case Opt_proto:
1225 string = match_strdup(args);
1226 if (string == NULL)
1227 goto out_nomem;
1228 token = match_token(string,
1229 nfs_xprt_protocol_tokens, args);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001230
1231 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001232 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001233 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001234 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001235 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001236 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001237 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001238 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001239 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001240 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001241 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001242 case Opt_xprt_rdma:
1243 /* vector side protocols to TCP */
1244 mnt->flags |= NFS_MOUNT_TCP;
1245 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
Tom Talpeya67d18f2009-03-11 14:37:56 -04001246 xprt_load_transport(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001247 kfree(string);
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001248 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001249 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001250 dfprintk(MOUNT, "NFS: unrecognized "
1251 "transport protocol\n");
Yinghai Lu4223a4a2009-10-20 14:13:46 +09001252 kfree(string);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001253 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001254 }
1255 break;
1256 case Opt_mountproto:
1257 string = match_strdup(args);
1258 if (string == NULL)
1259 goto out_nomem;
1260 token = match_token(string,
1261 nfs_xprt_protocol_tokens, args);
Trond Myklebustd508afb2009-04-06 16:41:35 -07001262 kfree(string);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001263
1264 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001265 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001266 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001267 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001268 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001269 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001270 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001271 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001272 default:
Chuck Leverf45663c2008-06-24 19:28:02 -04001273 dfprintk(MOUNT, "NFS: unrecognized "
1274 "transport protocol\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001275 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001276 }
1277 break;
1278 case Opt_addr:
1279 string = match_strdup(args);
1280 if (string == NULL)
1281 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001282 mnt->nfs_server.addrlen =
1283 rpc_pton(string, strlen(string),
1284 (struct sockaddr *)
1285 &mnt->nfs_server.address,
1286 sizeof(mnt->nfs_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001287 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001288 if (mnt->nfs_server.addrlen == 0)
1289 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001290 break;
1291 case Opt_clientaddr:
1292 string = match_strdup(args);
1293 if (string == NULL)
1294 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001295 kfree(mnt->client_address);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001296 mnt->client_address = string;
1297 break;
Chuck Lever33832032007-12-10 14:59:13 -05001298 case Opt_mounthost:
1299 string = match_strdup(args);
1300 if (string == NULL)
1301 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001302 kfree(mnt->mount_server.hostname);
Chuck Lever33832032007-12-10 14:59:13 -05001303 mnt->mount_server.hostname = string;
1304 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001305 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001306 string = match_strdup(args);
1307 if (string == NULL)
1308 goto out_nomem;
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001309 mnt->mount_server.addrlen =
1310 rpc_pton(string, strlen(string),
1311 (struct sockaddr *)
1312 &mnt->mount_server.address,
1313 sizeof(mnt->mount_server.address));
Chuck Leverbf0fd762007-07-01 12:13:44 -04001314 kfree(string);
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001315 if (mnt->mount_server.addrlen == 0)
1316 goto out_invalid_address;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001317 break;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001318 case Opt_lookupcache:
1319 string = match_strdup(args);
1320 if (string == NULL)
1321 goto out_nomem;
1322 token = match_token(string,
1323 nfs_lookupcache_tokens, args);
1324 kfree(string);
1325 switch (token) {
1326 case Opt_lookupcache_all:
1327 mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE);
1328 break;
1329 case Opt_lookupcache_positive:
1330 mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE;
1331 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG;
1332 break;
1333 case Opt_lookupcache_none:
1334 mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE;
1335 break;
1336 default:
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001337 dfprintk(MOUNT, "NFS: invalid "
1338 "lookupcache argument\n");
Chuck Leverd23c45f2009-06-17 18:02:13 -07001339 return 0;
Trond Myklebust7973c1f2008-07-15 17:58:14 -04001340 };
1341 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001342
Chuck Leverf45663c2008-06-24 19:28:02 -04001343 /*
1344 * Special options
1345 */
1346 case Opt_sloppy:
1347 sloppy = 1;
1348 dfprintk(MOUNT, "NFS: relaxing parsing rules\n");
1349 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001350 case Opt_userspace:
1351 case Opt_deprecated:
Chuck Leverd33e4df2008-06-12 12:37:41 -04001352 dfprintk(MOUNT, "NFS: ignoring mount option "
1353 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001354 break;
1355
1356 default:
Chuck Leverd23c45f2009-06-17 18:02:13 -07001357 invalid_option = 1;
Chuck Leverf45663c2008-06-24 19:28:02 -04001358 dfprintk(MOUNT, "NFS: unrecognized mount option "
1359 "'%s'\n", p);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001360 }
1361 }
1362
Chuck Leverd23c45f2009-06-17 18:02:13 -07001363 if (!sloppy && invalid_option)
1364 return 0;
1365
Chuck Leverbf0fd762007-07-01 12:13:44 -04001366 return 1;
1367
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001368out_invalid_address:
1369 printk(KERN_INFO "NFS: bad IP address specified: %s\n", p);
1370 return 0;
Chuck Leverd23c45f2009-06-17 18:02:13 -07001371out_invalid_value:
Chuck Lever53a0b9c2009-08-09 15:09:36 -04001372 printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p);
Chuck Leverd23c45f2009-06-17 18:02:13 -07001373 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001374out_nomem:
1375 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1376 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001377out_security_failure:
1378 free_secdata(secdata);
1379 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1380 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001381}
1382
1383/*
Chuck Leverec88f282009-08-09 15:09:32 -04001384 * Match the requested auth flavors with the list returned by
1385 * the server. Returns zero and sets the mount's authentication
1386 * flavor on success; returns -EACCES if server does not support
1387 * the requested flavor.
1388 */
1389static int nfs_walk_authlist(struct nfs_parsed_mount_data *args,
1390 struct nfs_mount_request *request)
1391{
1392 unsigned int i, j, server_authlist_len = *(request->auth_flav_len);
1393
1394 /*
Chuck Lever5eecfde2009-08-21 17:50:30 -04001395 * Certain releases of Linux's mountd return an empty
1396 * flavor list. To prevent behavioral regression with
1397 * these servers (ie. rejecting mounts that used to
1398 * succeed), revert to pre-2.6.32 behavior (no checking)
1399 * if the returned flavor list is empty.
1400 */
1401 if (server_authlist_len == 0)
1402 return 0;
1403
1404 /*
Chuck Leverec88f282009-08-09 15:09:32 -04001405 * We avoid sophisticated negotiating here, as there are
1406 * plenty of cases where we can get it wrong, providing
1407 * either too little or too much security.
1408 *
1409 * RFC 2623, section 2.7 suggests we SHOULD prefer the
1410 * flavor listed first. However, some servers list
1411 * AUTH_NULL first. Our caller plants AUTH_SYS, the
1412 * preferred default, in args->auth_flavors[0] if user
1413 * didn't specify sec= mount option.
1414 */
1415 for (i = 0; i < args->auth_flavor_len; i++)
1416 for (j = 0; j < server_authlist_len; j++)
1417 if (args->auth_flavors[i] == request->auth_flavs[j]) {
1418 dfprintk(MOUNT, "NFS: using auth flavor %d\n",
1419 request->auth_flavs[j]);
1420 args->auth_flavors[0] = request->auth_flavs[j];
1421 return 0;
1422 }
1423
1424 dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n");
1425 nfs_umount(request);
1426 return -EACCES;
1427}
1428
1429/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001430 * Use the remote server's MOUNT service to request the NFS file handle
1431 * corresponding to the provided path.
1432 */
1433static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1434 struct nfs_fh *root_fh)
1435{
Chuck Leverec88f282009-08-09 15:09:32 -04001436 rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS];
1437 unsigned int server_authlist_len = ARRAY_SIZE(server_authlist);
Chuck Leverc5d120f2008-12-23 15:21:35 -05001438 struct nfs_mount_request request = {
1439 .sap = (struct sockaddr *)
1440 &args->mount_server.address,
1441 .dirpath = args->nfs_server.export_path,
1442 .protocol = args->mount_server.protocol,
1443 .fh = root_fh,
Chuck Lever50a737f2008-12-23 15:21:37 -05001444 .noresvport = args->flags & NFS_MOUNT_NORESVPORT,
Chuck Leverec88f282009-08-09 15:09:32 -04001445 .auth_flav_len = &server_authlist_len,
1446 .auth_flavs = server_authlist,
Chuck Leverc5d120f2008-12-23 15:21:35 -05001447 };
Chuck Lever4c568012007-12-10 14:59:28 -05001448 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001449
1450 if (args->mount_server.version == 0) {
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001451 switch (args->version) {
1452 default:
1453 args->mount_server.version = NFS_MNT3_VERSION;
1454 break;
1455 case 2:
1456 args->mount_server.version = NFS_MNT_VERSION;
1457 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001458 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001459 request.version = args->mount_server.version;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001460
Chuck Lever33832032007-12-10 14:59:13 -05001461 if (args->mount_server.hostname)
Chuck Leverc5d120f2008-12-23 15:21:35 -05001462 request.hostname = args->mount_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001463 else
Chuck Leverc5d120f2008-12-23 15:21:35 -05001464 request.hostname = args->nfs_server.hostname;
Chuck Lever33832032007-12-10 14:59:13 -05001465
Chuck Lever0076d7b2007-07-01 12:13:49 -04001466 /*
1467 * Construct the mount server's address.
1468 */
Chuck Lever4c568012007-12-10 14:59:28 -05001469 if (args->mount_server.address.ss_family == AF_UNSPEC) {
Chuck Leverc5d120f2008-12-23 15:21:35 -05001470 memcpy(request.sap, &args->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -05001471 args->nfs_server.addrlen);
1472 args->mount_server.addrlen = args->nfs_server.addrlen;
1473 }
Chuck Leverc5d120f2008-12-23 15:21:35 -05001474 request.salen = args->mount_server.addrlen;
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001475 nfs_set_port(request.sap, &args->mount_server.port, 0);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001476
1477 /*
1478 * Now ask the mount server to map our export path
1479 * to a file handle.
1480 */
Chuck Leverc5d120f2008-12-23 15:21:35 -05001481 status = nfs_mount(&request);
Chuck Leverec88f282009-08-09 15:09:32 -04001482 if (status != 0) {
1483 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n",
1484 request.hostname, status);
1485 return status;
1486 }
Chuck Lever0076d7b2007-07-01 12:13:49 -04001487
Chuck Leverec88f282009-08-09 15:09:32 -04001488 /*
1489 * MNTv1 (NFSv2) does not support auth flavor negotiation.
1490 */
1491 if (args->mount_server.version != NFS_MNT3_VERSION)
1492 return 0;
1493 return nfs_walk_authlist(args, &request);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001494}
1495
Chuck Leverd1aa0822008-06-23 12:36:45 -04001496static int nfs_parse_simple_hostname(const char *dev_name,
1497 char **hostname, size_t maxnamlen,
1498 char **export_path, size_t maxpathlen)
Chuck Leverdc045892008-06-23 12:36:37 -04001499{
1500 size_t len;
1501 char *colon, *comma;
1502
1503 colon = strchr(dev_name, ':');
1504 if (colon == NULL)
1505 goto out_bad_devname;
1506
1507 len = colon - dev_name;
1508 if (len > maxnamlen)
1509 goto out_hostname;
1510
1511 /* N.B. caller will free nfs_server.hostname in all cases */
1512 *hostname = kstrndup(dev_name, len, GFP_KERNEL);
1513 if (!*hostname)
1514 goto out_nomem;
1515
1516 /* kill possible hostname list: not supported */
1517 comma = strchr(*hostname, ',');
1518 if (comma != NULL) {
1519 if (comma == *hostname)
1520 goto out_bad_devname;
1521 *comma = '\0';
1522 }
1523
1524 colon++;
1525 len = strlen(colon);
1526 if (len > maxpathlen)
1527 goto out_path;
1528 *export_path = kstrndup(colon, len, GFP_KERNEL);
1529 if (!*export_path)
1530 goto out_nomem;
1531
1532 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path);
1533 return 0;
1534
1535out_bad_devname:
1536 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1537 return -EINVAL;
1538
1539out_nomem:
1540 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1541 return -ENOMEM;
1542
1543out_hostname:
1544 dfprintk(MOUNT, "NFS: server hostname too long\n");
1545 return -ENAMETOOLONG;
1546
1547out_path:
1548 dfprintk(MOUNT, "NFS: export pathname too long\n");
1549 return -ENAMETOOLONG;
1550}
1551
1552/*
Chuck Leverd1aa0822008-06-23 12:36:45 -04001553 * Hostname has square brackets around it because it contains one or
1554 * more colons. We look for the first closing square bracket, and a
1555 * colon must follow it.
1556 */
1557static int nfs_parse_protected_hostname(const char *dev_name,
1558 char **hostname, size_t maxnamlen,
1559 char **export_path, size_t maxpathlen)
1560{
1561 size_t len;
1562 char *start, *end;
1563
1564 start = (char *)(dev_name + 1);
1565
1566 end = strchr(start, ']');
1567 if (end == NULL)
1568 goto out_bad_devname;
1569 if (*(end + 1) != ':')
1570 goto out_bad_devname;
1571
1572 len = end - start;
1573 if (len > maxnamlen)
1574 goto out_hostname;
1575
1576 /* N.B. caller will free nfs_server.hostname in all cases */
1577 *hostname = kstrndup(start, len, GFP_KERNEL);
1578 if (*hostname == NULL)
1579 goto out_nomem;
1580
1581 end += 2;
1582 len = strlen(end);
1583 if (len > maxpathlen)
1584 goto out_path;
1585 *export_path = kstrndup(end, len, GFP_KERNEL);
1586 if (!*export_path)
1587 goto out_nomem;
1588
1589 return 0;
1590
1591out_bad_devname:
1592 dfprintk(MOUNT, "NFS: device name not in host:path format\n");
1593 return -EINVAL;
1594
1595out_nomem:
1596 dfprintk(MOUNT, "NFS: not enough memory to parse device name\n");
1597 return -ENOMEM;
1598
1599out_hostname:
1600 dfprintk(MOUNT, "NFS: server hostname too long\n");
1601 return -ENAMETOOLONG;
1602
1603out_path:
1604 dfprintk(MOUNT, "NFS: export pathname too long\n");
1605 return -ENAMETOOLONG;
1606}
1607
1608/*
1609 * Split "dev_name" into "hostname:export_path".
1610 *
1611 * The leftmost colon demarks the split between the server's hostname
1612 * and the export path. If the hostname starts with a left square
1613 * bracket, then it may contain colons.
1614 *
1615 * Note: caller frees hostname and export path, even on error.
1616 */
1617static int nfs_parse_devname(const char *dev_name,
1618 char **hostname, size_t maxnamlen,
1619 char **export_path, size_t maxpathlen)
1620{
1621 if (*dev_name == '[')
1622 return nfs_parse_protected_hostname(dev_name,
1623 hostname, maxnamlen,
1624 export_path, maxpathlen);
1625
1626 return nfs_parse_simple_hostname(dev_name,
1627 hostname, maxnamlen,
1628 export_path, maxpathlen);
1629}
1630
1631/*
David Howells54ceac42006-08-22 20:06:13 -04001632 * Validate the NFS2/NFS3 mount data
1633 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001634 *
1635 * For option strings, user space handles the following behaviors:
1636 *
1637 * + DNS: mapping server host name to IP address ("addr=" option)
1638 *
1639 * + failure mode: how to behave if a mount request can't be handled
1640 * immediately ("fg/bg" option)
1641 *
1642 * + retry: how often to retry a mount request ("retry=" option)
1643 *
1644 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1645 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001646 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001647static int nfs_validate_mount_data(void *options,
1648 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001649 struct nfs_fh *mntfh,
1650 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001651{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001652 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001653 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
Chuck Lever136d5582007-07-01 12:13:54 -04001654
Chuck Lever5df36e72007-07-01 12:12:56 -04001655 if (data == NULL)
1656 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001657
David Howellsf7b422b2006-06-09 09:34:33 -04001658 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001659 case 1:
1660 data->namlen = 0;
1661 case 2:
1662 data->bsize = 0;
1663 case 3:
1664 if (data->flags & NFS_MOUNT_VER3)
1665 goto out_no_v3;
1666 data->root.size = NFS2_FHSIZE;
1667 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1668 case 4:
1669 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1670 goto out_no_sec;
1671 case 5:
1672 memset(data->context, 0, sizeof(data->context));
1673 case 6:
Trond Myklebustb7e24452008-06-19 15:21:11 -04001674 if (data->flags & NFS_MOUNT_VER3) {
1675 if (data->root.size > NFS3_FHSIZE || data->root.size == 0)
1676 goto out_invalid_fh;
Chuck Lever5df36e72007-07-01 12:12:56 -04001677 mntfh->size = data->root.size;
Chuck Lever764302c2009-09-08 19:50:03 -04001678 args->version = 3;
1679 } else {
Chuck Lever5df36e72007-07-01 12:12:56 -04001680 mntfh->size = NFS2_FHSIZE;
Chuck Lever764302c2009-09-08 19:50:03 -04001681 args->version = 2;
1682 }
Chuck Lever5df36e72007-07-01 12:12:56 -04001683
Chuck Lever5df36e72007-07-01 12:12:56 -04001684
1685 memcpy(mntfh->data, data->root.data, mntfh->size);
1686 if (mntfh->size < sizeof(mntfh->data))
1687 memset(mntfh->data + mntfh->size, 0,
1688 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001689
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001690 /*
1691 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1692 * can deal with.
1693 */
Trond Myklebustff3525a2008-08-15 16:59:14 -04001694 args->flags = data->flags & NFS_MOUNT_FLAGMASK;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001695 args->rsize = data->rsize;
1696 args->wsize = data->wsize;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001697 args->timeo = data->timeo;
1698 args->retrans = data->retrans;
1699 args->acregmin = data->acregmin;
1700 args->acregmax = data->acregmax;
1701 args->acdirmin = data->acdirmin;
1702 args->acdirmax = data->acdirmax;
Chuck Lever4c568012007-12-10 14:59:28 -05001703
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001704 memcpy(sap, &data->addr, sizeof(data->addr));
Chuck Lever4c568012007-12-10 14:59:28 -05001705 args->nfs_server.addrlen = sizeof(data->addr);
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001706 if (!nfs_verify_server_address(sap))
Chuck Lever4c568012007-12-10 14:59:28 -05001707 goto out_no_address;
1708
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001709 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001710 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001711 /* N.B. caller will free nfs_server.hostname in all cases */
1712 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1713 args->namlen = data->namlen;
1714 args->bsize = data->bsize;
Chuck Leverdd07c942008-06-24 16:33:46 -04001715
1716 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1717 args->auth_flavors[0] = data->pseudoflavor;
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001718 if (!args->nfs_server.hostname)
1719 goto out_nomem;
Eric Parisf9c3a382008-03-05 14:20:18 -05001720
1721 /*
1722 * The legacy version 6 binary mount data from userspace has a
1723 * field used only to transport selinux information into the
1724 * the kernel. To continue to support that functionality we
1725 * have a touch of selinux knowledge here in the NFS code. The
1726 * userspace code converted context=blah to just blah so we are
1727 * converting back to the full string selinux understands.
1728 */
1729 if (data->context[0]){
1730#ifdef CONFIG_SECURITY_SELINUX
1731 int rc;
1732 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1733 if (!opts_str)
1734 return -ENOMEM;
1735 strcpy(opts_str, "context=");
1736 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1737 strcat(opts_str, &data->context[0]);
1738 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1739 kfree(opts_str);
1740 if (rc)
1741 return rc;
1742#else
1743 return -EINVAL;
1744#endif
1745 }
1746
Chuck Lever5df36e72007-07-01 12:12:56 -04001747 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001748 default: {
Chuck Lever136d5582007-07-01 12:13:54 -04001749 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001750
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001751 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001752 return -EINVAL;
1753
Chuck Lever4cfd74f2009-09-08 19:49:47 -04001754 if (!nfs_verify_server_address(sap))
Chuck Lever6e88e062007-09-24 15:39:50 -04001755 goto out_no_address;
1756
Chuck Lever764302c2009-09-08 19:50:03 -04001757 if (args->version == 4)
1758#ifdef CONFIG_NFS_V4
1759 return nfs4_validate_text_mount_data(options,
1760 args, dev_name);
1761#else
1762 goto out_v4_not_compiled;
1763#endif
1764
Trond Myklebustf5855fe2009-10-06 15:40:37 -04001765 nfs_set_port(sap, &args->nfs_server.port, 0);
Chuck Levered596a82008-06-26 17:47:05 -04001766
Trond Myklebust259875e2008-07-02 14:43:47 -04001767 nfs_set_mount_transport_protocol(args);
1768
Chuck Leverdc045892008-06-23 12:36:37 -04001769 status = nfs_parse_devname(dev_name,
1770 &args->nfs_server.hostname,
1771 PAGE_SIZE,
1772 &args->nfs_server.export_path,
1773 NFS_MAXPATHLEN);
1774 if (!status)
1775 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001776
Chuck Leverdc045892008-06-23 12:36:37 -04001777 kfree(args->nfs_server.export_path);
1778 args->nfs_server.export_path = NULL;
Chuck Lever136d5582007-07-01 12:13:54 -04001779
Chuck Lever136d5582007-07-01 12:13:54 -04001780 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001781 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001782
Chuck Lever136d5582007-07-01 12:13:54 -04001783 break;
1784 }
David Howellsf7b422b2006-06-09 09:34:33 -04001785 }
David Howells54ceac42006-08-22 20:06:13 -04001786
David Howellsf7b422b2006-06-09 09:34:33 -04001787#ifndef CONFIG_NFS_V3
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001788 if (args->version == 3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001789 goto out_v3_not_compiled;
1790#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001791
David Howells54ceac42006-08-22 20:06:13 -04001792 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001793
1794out_no_data:
1795 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1796 return -EINVAL;
1797
1798out_no_v3:
1799 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1800 data->version);
1801 return -EINVAL;
1802
1803out_no_sec:
1804 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1805 return -EINVAL;
1806
Chuck Lever5df36e72007-07-01 12:12:56 -04001807#ifndef CONFIG_NFS_V3
1808out_v3_not_compiled:
1809 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1810 return -EPROTONOSUPPORT;
1811#endif /* !CONFIG_NFS_V3 */
1812
Chuck Lever764302c2009-09-08 19:50:03 -04001813#ifndef CONFIG_NFS_V4
1814out_v4_not_compiled:
1815 dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n");
1816 return -EPROTONOSUPPORT;
1817#endif /* !CONFIG_NFS_V4 */
1818
Cyrill Gorcunov63649bd2008-04-17 20:42:09 +04001819out_nomem:
1820 dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n");
1821 return -ENOMEM;
1822
Chuck Lever5df36e72007-07-01 12:12:56 -04001823out_no_address:
1824 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1825 return -EINVAL;
1826
1827out_invalid_fh:
1828 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1829 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001830}
1831
Jeff Layton48b605f2008-06-10 15:38:39 -04001832static int
1833nfs_compare_remount_data(struct nfs_server *nfss,
1834 struct nfs_parsed_mount_data *data)
1835{
1836 if (data->flags != nfss->flags ||
1837 data->rsize != nfss->rsize ||
1838 data->wsize != nfss->wsize ||
1839 data->retrans != nfss->client->cl_timeout->to_retries ||
1840 data->auth_flavors[0] != nfss->client->cl_auth->au_flavor ||
1841 data->acregmin != nfss->acregmin / HZ ||
1842 data->acregmax != nfss->acregmax / HZ ||
1843 data->acdirmin != nfss->acdirmin / HZ ||
1844 data->acdirmax != nfss->acdirmax / HZ ||
1845 data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) ||
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04001846 data->nfs_server.port != nfss->port ||
Jeff Layton48b605f2008-06-10 15:38:39 -04001847 data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen ||
Stefan Richtera1be9ee2009-10-12 11:26:12 -04001848 !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address,
1849 (struct sockaddr *)&nfss->nfs_client->cl_addr))
Jeff Layton48b605f2008-06-10 15:38:39 -04001850 return -EINVAL;
1851
1852 return 0;
1853}
1854
1855static int
1856nfs_remount(struct super_block *sb, int *flags, char *raw_data)
1857{
1858 int error;
1859 struct nfs_server *nfss = sb->s_fs_info;
1860 struct nfs_parsed_mount_data *data;
1861 struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data;
1862 struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data;
Trond Myklebustcd100722008-06-17 16:12:00 -04001863 u32 nfsvers = nfss->nfs_client->rpc_ops->version;
Jeff Layton48b605f2008-06-10 15:38:39 -04001864
1865 /*
1866 * Userspace mount programs that send binary options generally send
1867 * them populated with default values. We have no way to know which
1868 * ones were explicitly specified. Fall back to legacy behavior and
1869 * just return success.
1870 */
Marc Zyngier31c94462008-07-17 13:21:55 +02001871 if ((nfsvers == 4 && (!options4 || options4->version == 1)) ||
1872 (nfsvers <= 3 && (!options || (options->version >= 1 &&
1873 options->version <= 6))))
Jeff Layton48b605f2008-06-10 15:38:39 -04001874 return 0;
1875
1876 data = kzalloc(sizeof(*data), GFP_KERNEL);
1877 if (data == NULL)
1878 return -ENOMEM;
1879
1880 /* fill out struct with values from existing mount */
1881 data->flags = nfss->flags;
1882 data->rsize = nfss->rsize;
1883 data->wsize = nfss->wsize;
1884 data->retrans = nfss->client->cl_timeout->to_retries;
1885 data->auth_flavors[0] = nfss->client->cl_auth->au_flavor;
1886 data->acregmin = nfss->acregmin / HZ;
1887 data->acregmax = nfss->acregmax / HZ;
1888 data->acdirmin = nfss->acdirmin / HZ;
1889 data->acdirmax = nfss->acdirmax / HZ;
1890 data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ;
Trond Myklebustbcd2ea12009-10-06 15:41:22 -04001891 data->nfs_server.port = nfss->port;
Jeff Layton48b605f2008-06-10 15:38:39 -04001892 data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen;
1893 memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr,
1894 data->nfs_server.addrlen);
1895
1896 /* overwrite those values with any that were specified */
1897 error = nfs_parse_mount_options((char *)options, data);
1898 if (error < 0)
1899 goto out;
1900
1901 /* compare new mount options with old ones */
1902 error = nfs_compare_remount_data(nfss, data);
1903out:
1904 kfree(data);
1905 return error;
1906}
1907
David Howells54ceac42006-08-22 20:06:13 -04001908/*
1909 * Initialise the common bits of the superblock
1910 */
1911static inline void nfs_initialise_sb(struct super_block *sb)
1912{
1913 struct nfs_server *server = NFS_SB(sb);
1914
1915 sb->s_magic = NFS_SUPER_MAGIC;
1916
1917 /* We probably want something more informative here */
1918 snprintf(sb->s_id, sizeof(sb->s_id),
1919 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
1920
1921 if (sb->s_blocksize == 0)
1922 sb->s_blocksize = nfs_block_bits(server->wsize,
1923 &sb->s_blocksize_bits);
1924
1925 if (server->flags & NFS_MOUNT_NOAC)
1926 sb->s_flags |= MS_SYNCHRONOUS;
1927
Jens Axboe32a88aa2009-09-16 15:02:33 +02001928 sb->s_bdi = &server->backing_dev_info;
1929
David Howells54ceac42006-08-22 20:06:13 -04001930 nfs_super_set_maxbytes(sb, server->maxfilesize);
1931}
1932
1933/*
1934 * Finish setting up an NFS2/3 superblock
1935 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001936static void nfs_fill_super(struct super_block *sb,
1937 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001938{
1939 struct nfs_server *server = NFS_SB(sb);
1940
1941 sb->s_blocksize_bits = 0;
1942 sb->s_blocksize = 0;
1943 if (data->bsize)
1944 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
1945
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001946 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04001947 /* The VFS shouldn't apply the umask to mode bits. We will do
1948 * so ourselves when necessary.
1949 */
1950 sb->s_flags |= MS_POSIXACL;
1951 sb->s_time_gran = 1;
1952 }
1953
1954 sb->s_op = &nfs_sops;
1955 nfs_initialise_sb(sb);
1956}
1957
1958/*
1959 * Finish setting up a cloned NFS2/3 superblock
1960 */
1961static void nfs_clone_super(struct super_block *sb,
1962 const struct super_block *old_sb)
1963{
1964 struct nfs_server *server = NFS_SB(sb);
1965
1966 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1967 sb->s_blocksize = old_sb->s_blocksize;
1968 sb->s_maxbytes = old_sb->s_maxbytes;
1969
Trond Myklebust8a6e5de2009-09-23 14:36:37 -04001970 if (server->nfs_client->rpc_ops->version == 3) {
David Howells54ceac42006-08-22 20:06:13 -04001971 /* The VFS shouldn't apply the umask to mode bits. We will do
1972 * so ourselves when necessary.
1973 */
1974 sb->s_flags |= MS_POSIXACL;
1975 sb->s_time_gran = 1;
1976 }
1977
1978 sb->s_op = old_sb->s_op;
1979 nfs_initialise_sb(sb);
1980}
1981
Trond Myklebust275a5d22007-05-16 16:53:28 -04001982static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
1983{
1984 const struct nfs_server *a = s->s_fs_info;
1985 const struct rpc_clnt *clnt_a = a->client;
1986 const struct rpc_clnt *clnt_b = b->client;
1987
1988 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
1989 goto Ebusy;
1990 if (a->nfs_client != b->nfs_client)
1991 goto Ebusy;
1992 if (a->flags != b->flags)
1993 goto Ebusy;
1994 if (a->wsize != b->wsize)
1995 goto Ebusy;
1996 if (a->rsize != b->rsize)
1997 goto Ebusy;
1998 if (a->acregmin != b->acregmin)
1999 goto Ebusy;
2000 if (a->acregmax != b->acregmax)
2001 goto Ebusy;
2002 if (a->acdirmin != b->acdirmin)
2003 goto Ebusy;
2004 if (a->acdirmax != b->acdirmax)
2005 goto Ebusy;
2006 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
2007 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002008 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04002009Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002010 return 0;
2011}
2012
2013struct nfs_sb_mountdata {
2014 struct nfs_server *server;
2015 int mntflags;
2016};
2017
2018static int nfs_set_super(struct super_block *s, void *data)
2019{
2020 struct nfs_sb_mountdata *sb_mntdata = data;
2021 struct nfs_server *server = sb_mntdata->server;
2022 int ret;
2023
2024 s->s_flags = sb_mntdata->mntflags;
2025 s->s_fs_info = server;
2026 ret = set_anon_super(s, server);
2027 if (ret == 0)
2028 server->s_dev = s->s_dev;
2029 return ret;
2030}
2031
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002032static int nfs_compare_super_address(struct nfs_server *server1,
2033 struct nfs_server *server2)
2034{
2035 struct sockaddr *sap1, *sap2;
2036
2037 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
2038 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
2039
2040 if (sap1->sa_family != sap2->sa_family)
2041 return 0;
2042
2043 switch (sap1->sa_family) {
2044 case AF_INET: {
2045 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
2046 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
2047 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
2048 return 0;
2049 if (sin1->sin_port != sin2->sin_port)
2050 return 0;
2051 break;
2052 }
2053 case AF_INET6: {
2054 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
2055 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
2056 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
2057 return 0;
2058 if (sin1->sin6_port != sin2->sin6_port)
2059 return 0;
2060 break;
2061 }
2062 default:
2063 return 0;
2064 }
2065
2066 return 1;
2067}
2068
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002069static int nfs_compare_super(struct super_block *sb, void *data)
2070{
2071 struct nfs_sb_mountdata *sb_mntdata = data;
2072 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
2073 int mntflags = sb_mntdata->mntflags;
2074
Chuck Leverfd00a8f2007-12-10 14:57:38 -05002075 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002076 return 0;
2077 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
2078 if (old->flags & NFS_MOUNT_UNSHARED)
2079 return 0;
2080 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
2081 return 0;
2082 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04002083}
2084
Miklos Szeredifa799752008-04-30 00:54:33 -07002085static int nfs_bdi_register(struct nfs_server *server)
2086{
2087 return bdi_register_dev(&server->backing_dev_info, server->s_dev);
2088}
2089
David Howells54ceac42006-08-22 20:06:13 -04002090static int nfs_get_sb(struct file_system_type *fs_type,
2091 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2092{
2093 struct nfs_server *server = NULL;
2094 struct super_block *s;
Trond Myklebust33852a12008-06-19 14:20:11 -04002095 struct nfs_parsed_mount_data *data;
2096 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002097 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002098 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002099 struct nfs_sb_mountdata sb_mntdata = {
2100 .mntflags = flags,
2101 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002102 int error = -ENOMEM;
David Howells54ceac42006-08-22 20:06:13 -04002103
Trond Myklebustc5811db2009-10-06 15:40:15 -04002104 data = nfs_alloc_parsed_mount_data(3);
Trond Myklebust33852a12008-06-19 14:20:11 -04002105 mntfh = kzalloc(sizeof(*mntfh), GFP_KERNEL);
2106 if (data == NULL || mntfh == NULL)
2107 goto out_free_fh;
2108
2109 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002110
David Howells54ceac42006-08-22 20:06:13 -04002111 /* Validate the mount data */
Trond Myklebust33852a12008-06-19 14:20:11 -04002112 error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04002113 if (error < 0)
Chuck Lever06559602007-07-01 12:12:35 -04002114 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002115
Chuck Lever764302c2009-09-08 19:50:03 -04002116#ifdef CONFIG_NFS_V4
2117 if (data->version == 4) {
2118 error = nfs4_try_mount(flags, dev_name, data, mnt);
2119 kfree(data->client_address);
2120 goto out;
2121 }
2122#endif /* CONFIG_NFS_V4 */
2123
David Howells54ceac42006-08-22 20:06:13 -04002124 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002125 server = nfs_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002126 if (IS_ERR(server)) {
2127 error = PTR_ERR(server);
Chuck Lever06559602007-07-01 12:12:35 -04002128 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002129 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002130 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002131
Trond Myklebust75180df2007-05-16 16:53:28 -04002132 if (server->flags & NFS_MOUNT_UNSHARED)
2133 compare_super = NULL;
2134
David Howells54ceac42006-08-22 20:06:13 -04002135 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002136 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002137 if (IS_ERR(s)) {
2138 error = PTR_ERR(s);
David Howells54ceac42006-08-22 20:06:13 -04002139 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04002140 }
2141
David Howells54ceac42006-08-22 20:06:13 -04002142 if (s->s_fs_info != server) {
2143 nfs_free_server(server);
2144 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002145 } else {
2146 error = nfs_bdi_register(server);
2147 if (error)
2148 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002149 }
David Howells54ceac42006-08-22 20:06:13 -04002150
2151 if (!s->s_root) {
2152 /* initial superblock/root creation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002153 nfs_fill_super(s, data);
David Howells2df54802009-09-23 14:36:39 -04002154 nfs_fscache_get_super_cookie(
2155 s, data ? data->fscache_uniq : NULL, NULL);
David Howells54ceac42006-08-22 20:06:13 -04002156 }
2157
Trond Myklebust33852a12008-06-19 14:20:11 -04002158 mntroot = nfs_get_root(s, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002159 if (IS_ERR(mntroot)) {
2160 error = PTR_ERR(mntroot);
2161 goto error_splat_super;
2162 }
2163
Trond Myklebust33852a12008-06-19 14:20:11 -04002164 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002165 if (error)
2166 goto error_splat_root;
2167
David Howellsf7b422b2006-06-09 09:34:33 -04002168 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002169 mnt->mnt_sb = s;
2170 mnt->mnt_root = mntroot;
Chuck Lever06559602007-07-01 12:12:35 -04002171 error = 0;
2172
2173out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002174 kfree(data->nfs_server.hostname);
2175 kfree(data->mount_server.hostname);
David Howells08734042009-04-03 16:42:42 +01002176 kfree(data->fscache_uniq);
Trond Myklebust33852a12008-06-19 14:20:11 -04002177 security_free_mnt_opts(&data->lsm_opts);
2178out_free_fh:
2179 kfree(mntfh);
2180 kfree(data);
Chuck Lever06559602007-07-01 12:12:35 -04002181 return error;
Trond Myklebust816724e2006-06-24 08:41:41 -04002182
David Howells54ceac42006-08-22 20:06:13 -04002183out_err_nosb:
2184 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04002185 goto out;
David Howells54ceac42006-08-22 20:06:13 -04002186
Eric Parisf9c3a382008-03-05 14:20:18 -05002187error_splat_root:
2188 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002189error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002190 deactivate_locked_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04002191 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002192}
2193
David Howells54ceac42006-08-22 20:06:13 -04002194/*
2195 * Destroy an NFS2/3 superblock
2196 */
David Howellsf7b422b2006-06-09 09:34:33 -04002197static void nfs_kill_super(struct super_block *s)
2198{
2199 struct nfs_server *server = NFS_SB(s);
2200
2201 kill_anon_super(s);
Jens Axboe92f25052009-09-17 14:51:44 +02002202 bdi_unregister(&server->backing_dev_info);
David Howells08734042009-04-03 16:42:42 +01002203 nfs_fscache_release_super_cookie(s);
David Howells54ceac42006-08-22 20:06:13 -04002204 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04002205}
2206
David Howells54ceac42006-08-22 20:06:13 -04002207/*
2208 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
2209 */
2210static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
2211 const char *dev_name, void *raw_data,
2212 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002213{
2214 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002215 struct super_block *s;
2216 struct nfs_server *server;
2217 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002218 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002219 struct nfs_sb_mountdata sb_mntdata = {
2220 .mntflags = flags,
2221 };
David Howells54ceac42006-08-22 20:06:13 -04002222 int error;
2223
2224 dprintk("--> nfs_xdev_get_sb()\n");
2225
2226 /* create a new volume representation */
2227 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2228 if (IS_ERR(server)) {
2229 error = PTR_ERR(server);
2230 goto out_err_noserver;
2231 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002232 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002233
Trond Myklebust75180df2007-05-16 16:53:28 -04002234 if (server->flags & NFS_MOUNT_UNSHARED)
2235 compare_super = NULL;
2236
David Howells54ceac42006-08-22 20:06:13 -04002237 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002238 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002239 if (IS_ERR(s)) {
2240 error = PTR_ERR(s);
2241 goto out_err_nosb;
2242 }
2243
2244 if (s->s_fs_info != server) {
2245 nfs_free_server(server);
2246 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002247 } else {
2248 error = nfs_bdi_register(server);
2249 if (error)
2250 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002251 }
2252
2253 if (!s->s_root) {
2254 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002255 nfs_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002256 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002257 }
2258
2259 mntroot = nfs_get_root(s, data->fh);
2260 if (IS_ERR(mntroot)) {
2261 error = PTR_ERR(mntroot);
2262 goto error_splat_super;
2263 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002264 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11002265 dput(mntroot);
2266 error = -ESTALE;
2267 goto error_splat_super;
2268 }
David Howells54ceac42006-08-22 20:06:13 -04002269
2270 s->s_flags |= MS_ACTIVE;
2271 mnt->mnt_sb = s;
2272 mnt->mnt_root = mntroot;
2273
Eric Parisf9c3a382008-03-05 14:20:18 -05002274 /* clone any lsm security options from the parent to the new sb */
2275 security_sb_clone_mnt_opts(data->sb, s);
2276
David Howells54ceac42006-08-22 20:06:13 -04002277 dprintk("<-- nfs_xdev_get_sb() = 0\n");
2278 return 0;
2279
2280out_err_nosb:
2281 nfs_free_server(server);
2282out_err_noserver:
2283 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
2284 return error;
2285
2286error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002287 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002288 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
2289 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002290}
2291
2292#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04002293
2294/*
2295 * Finish setting up a cloned NFS4 superblock
2296 */
2297static void nfs4_clone_super(struct super_block *sb,
2298 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002299{
David Howells54ceac42006-08-22 20:06:13 -04002300 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
2301 sb->s_blocksize = old_sb->s_blocksize;
2302 sb->s_maxbytes = old_sb->s_maxbytes;
2303 sb->s_time_gran = 1;
2304 sb->s_op = old_sb->s_op;
2305 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002306}
2307
2308/*
2309 * Set up an NFS4 superblock
2310 */
David Howells54ceac42006-08-22 20:06:13 -04002311static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04002312{
David Howellsf7b422b2006-06-09 09:34:33 -04002313 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04002314 sb->s_op = &nfs4_sops;
David Howells54ceac42006-08-22 20:06:13 -04002315 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002316}
2317
Trond Myklebust01c3f052009-06-17 13:22:58 -07002318static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args)
2319{
2320 args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3);
2321}
2322
Chuck Lever7630c852009-09-08 19:49:57 -04002323static int nfs4_validate_text_mount_data(void *options,
2324 struct nfs_parsed_mount_data *args,
2325 const char *dev_name)
2326{
2327 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
2328
Trond Myklebustf5855fe2009-10-06 15:40:37 -04002329 nfs_set_port(sap, &args->nfs_server.port, NFS_PORT);
Chuck Lever7630c852009-09-08 19:49:57 -04002330
2331 nfs_validate_transport_protocol(args);
2332
2333 nfs4_validate_mount_flags(args);
2334
Trond Myklebust2ecda722009-09-08 19:50:07 -04002335 if (args->version != 4) {
2336 dfprintk(MOUNT,
2337 "NFS4: Illegal mount version\n");
2338 return -EINVAL;
2339 }
2340
Chuck Lever7630c852009-09-08 19:49:57 -04002341 if (args->auth_flavor_len > 1) {
2342 dfprintk(MOUNT,
2343 "NFS4: Too many RPC auth flavours specified\n");
2344 return -EINVAL;
2345 }
2346
2347 if (args->client_address == NULL) {
2348 dfprintk(MOUNT,
2349 "NFS4: mount program didn't pass callback address\n");
2350 return -EINVAL;
2351 }
2352
2353 return nfs_parse_devname(dev_name,
2354 &args->nfs_server.hostname,
2355 NFS4_MAXNAMLEN,
2356 &args->nfs_server.export_path,
2357 NFS4_MAXPATHLEN);
2358}
2359
David Howells54ceac42006-08-22 20:06:13 -04002360/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04002361 * Validate NFSv4 mount options
2362 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002363static int nfs4_validate_mount_data(void *options,
2364 struct nfs_parsed_mount_data *args,
2365 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04002366{
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002367 struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002368 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002369 char *c;
2370
2371 if (data == NULL)
2372 goto out_no_data;
2373
2374 switch (data->version) {
2375 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05002376 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002377 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05002378 if (data->host_addrlen == 0)
2379 goto out_no_address;
2380 args->nfs_server.addrlen = data->host_addrlen;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002381 if (copy_from_user(sap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002382 return -EFAULT;
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002383 if (!nfs_verify_server_address(sap))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002384 goto out_no_address;
2385
Chuck Lever6738b252008-06-24 16:33:54 -04002386 if (data->auth_flavourlen) {
2387 if (data->auth_flavourlen > 1)
2388 goto out_inval_auth;
Trond Myklebust20c71f52007-09-20 20:23:51 -04002389 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002390 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04002391 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04002392 return -EFAULT;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002393 }
2394
2395 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
2396 if (IS_ERR(c))
2397 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002398 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002399
2400 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
2401 if (IS_ERR(c))
2402 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002403 args->nfs_server.export_path = c;
2404 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002405
2406 c = strndup_user(data->client_addr.data, 16);
2407 if (IS_ERR(c))
2408 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002409 args->client_address = c;
2410
2411 /*
2412 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
2413 * can deal with.
2414 */
2415
2416 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
2417 args->rsize = data->rsize;
2418 args->wsize = data->wsize;
2419 args->timeo = data->timeo;
2420 args->retrans = data->retrans;
2421 args->acregmin = data->acregmin;
2422 args->acregmax = data->acregmax;
2423 args->acdirmin = data->acdirmin;
2424 args->acdirmax = data->acdirmax;
2425 args->nfs_server.protocol = data->proto;
Trond Myklebust259875e2008-07-02 14:43:47 -04002426 nfs_validate_transport_protocol(args);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002427
2428 break;
Chuck Lever7630c852009-09-08 19:49:57 -04002429 default:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04002430 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04002431 return -EINVAL;
2432
Chuck Lever4cfd74f2009-09-08 19:49:47 -04002433 if (!nfs_verify_server_address(sap))
Chuck Lever80071222007-07-01 12:13:59 -04002434 return -EINVAL;
Chuck Levered596a82008-06-26 17:47:05 -04002435
Chuck Lever7630c852009-09-08 19:49:57 -04002436 return nfs4_validate_text_mount_data(options, args, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04002437 }
2438
2439 return 0;
2440
2441out_no_data:
2442 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
2443 return -EINVAL;
2444
2445out_inval_auth:
2446 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
2447 data->auth_flavourlen);
2448 return -EINVAL;
2449
2450out_no_address:
2451 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
2452 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04002453}
2454
2455/*
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002456 * Get the superblock for the NFS4 root partition
David Howells54ceac42006-08-22 20:06:13 -04002457 */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002458static int nfs4_remote_get_sb(struct file_system_type *fs_type,
Trond Myklebust816724e2006-06-24 08:41:41 -04002459 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002460{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002461 struct nfs_parsed_mount_data *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002462 struct super_block *s;
2463 struct nfs_server *server;
Trond Myklebust33852a12008-06-19 14:20:11 -04002464 struct nfs_fh *mntfh;
David Howells54ceac42006-08-22 20:06:13 -04002465 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002466 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002467 struct nfs_sb_mountdata sb_mntdata = {
2468 .mntflags = flags,
2469 };
Trond Myklebust33852a12008-06-19 14:20:11 -04002470 int error = -ENOMEM;
David Howellsf7b422b2006-06-09 09:34:33 -04002471
Trond Myklebust33852a12008-06-19 14:20:11 -04002472 mntfh = kzalloc(sizeof(*mntfh), GFP_KERNEL);
2473 if (data == NULL || mntfh == NULL)
2474 goto out_free_fh;
2475
2476 security_init_mnt_opts(&data->lsm_opts);
Eric Parisf9c3a382008-03-05 14:20:18 -05002477
David Howells54ceac42006-08-22 20:06:13 -04002478 /* Get a volume representation */
Trond Myklebust33852a12008-06-19 14:20:11 -04002479 server = nfs4_create_server(data, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002480 if (IS_ERR(server)) {
2481 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04002482 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002483 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002484 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04002485
Trond Myklebust75180df2007-05-16 16:53:28 -04002486 if (server->flags & NFS4_MOUNT_UNSHARED)
2487 compare_super = NULL;
2488
David Howells54ceac42006-08-22 20:06:13 -04002489 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002490 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04002491 if (IS_ERR(s)) {
2492 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04002493 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04002494 }
2495
Trond Myklebust5dd31772006-08-24 01:03:05 -04002496 if (s->s_fs_info != server) {
2497 nfs_free_server(server);
2498 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002499 } else {
2500 error = nfs_bdi_register(server);
2501 if (error)
2502 goto error_splat_super;
Trond Myklebust5dd31772006-08-24 01:03:05 -04002503 }
2504
David Howells54ceac42006-08-22 20:06:13 -04002505 if (!s->s_root) {
2506 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002507 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04002508 nfs_fscache_get_super_cookie(
2509 s, data ? data->fscache_uniq : NULL, NULL);
Trond Myklebust816724e2006-06-24 08:41:41 -04002510 }
David Howellsf7b422b2006-06-09 09:34:33 -04002511
Trond Myklebust33852a12008-06-19 14:20:11 -04002512 mntroot = nfs4_get_root(s, mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002513 if (IS_ERR(mntroot)) {
2514 error = PTR_ERR(mntroot);
2515 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04002516 }
David Howells54ceac42006-08-22 20:06:13 -04002517
Trond Myklebust33852a12008-06-19 14:20:11 -04002518 error = security_sb_set_mnt_opts(s, &data->lsm_opts);
Eric Paris46c8ac72008-05-02 13:42:42 -07002519 if (error)
2520 goto error_splat_root;
2521
David Howellsf7b422b2006-06-09 09:34:33 -04002522 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04002523 mnt->mnt_sb = s;
2524 mnt->mnt_root = mntroot;
Chuck Lever29eb9812007-07-01 12:12:30 -04002525 error = 0;
David Howells54ceac42006-08-22 20:06:13 -04002526
Chuck Lever29eb9812007-07-01 12:12:30 -04002527out:
Trond Myklebust33852a12008-06-19 14:20:11 -04002528 security_free_mnt_opts(&data->lsm_opts);
2529out_free_fh:
2530 kfree(mntfh);
Trond Myklebust816724e2006-06-24 08:41:41 -04002531 return error;
David Howells54ceac42006-08-22 20:06:13 -04002532
Chuck Lever29eb9812007-07-01 12:12:30 -04002533out_free:
2534 nfs_free_server(server);
2535 goto out;
2536
Eric Paris46c8ac72008-05-02 13:42:42 -07002537error_splat_root:
2538 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04002539error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002540 deactivate_locked_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04002541 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04002542}
2543
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002544static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type,
2545 int flags, void *data, const char *hostname)
2546{
2547 struct vfsmount *root_mnt;
2548 char *root_devname;
2549 size_t len;
2550
2551 len = strlen(hostname) + 3;
2552 root_devname = kmalloc(len, GFP_KERNEL);
2553 if (root_devname == NULL)
2554 return ERR_PTR(-ENOMEM);
2555 snprintf(root_devname, len, "%s:/", hostname);
2556 root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data);
2557 kfree(root_devname);
2558 return root_mnt;
2559}
2560
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002561static void nfs_fix_devname(const struct path *path, struct vfsmount *mnt)
2562{
2563 char *page = (char *) __get_free_page(GFP_KERNEL);
2564 char *devname, *tmp;
2565
2566 if (page == NULL)
2567 return;
2568 devname = nfs_path(path->mnt->mnt_devname,
2569 path->mnt->mnt_root, path->dentry,
2570 page, PAGE_SIZE);
2571 if (devname == NULL)
2572 goto out_freepage;
2573 tmp = kstrdup(devname, GFP_KERNEL);
2574 if (tmp == NULL)
2575 goto out_freepage;
2576 kfree(mnt->mnt_devname);
2577 mnt->mnt_devname = tmp;
2578out_freepage:
2579 free_page((unsigned long)page);
2580}
2581
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002582static int nfs_follow_remote_path(struct vfsmount *root_mnt,
2583 const char *export_path, struct vfsmount *mnt_target)
2584{
2585 struct mnt_namespace *ns_private;
2586 struct nameidata nd;
2587 struct super_block *s;
2588 int ret;
2589
2590 ns_private = create_mnt_ns(root_mnt);
2591 ret = PTR_ERR(ns_private);
2592 if (IS_ERR(ns_private))
2593 goto out_mntput;
2594
2595 ret = vfs_path_lookup(root_mnt->mnt_root, root_mnt,
2596 export_path, LOOKUP_FOLLOW, &nd);
2597
2598 put_mnt_ns(ns_private);
2599
2600 if (ret != 0)
2601 goto out_err;
2602
2603 s = nd.path.mnt->mnt_sb;
2604 atomic_inc(&s->s_active);
2605 mnt_target->mnt_sb = s;
2606 mnt_target->mnt_root = dget(nd.path.dentry);
2607
Trond Myklebustb88f8a52009-06-22 15:09:14 -04002608 /* Correct the device pathname */
2609 nfs_fix_devname(&nd.path, mnt_target);
2610
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002611 path_put(&nd.path);
2612 down_write(&s->s_umount);
2613 return 0;
2614out_mntput:
2615 mntput(root_mnt);
2616out_err:
2617 return ret;
2618}
2619
Chuck Levera6fe23b2009-09-08 19:50:00 -04002620static int nfs4_try_mount(int flags, const char *dev_name,
2621 struct nfs_parsed_mount_data *data,
2622 struct vfsmount *mnt)
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002623{
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002624 char *export_path;
2625 struct vfsmount *root_mnt;
Chuck Levera6fe23b2009-09-08 19:50:00 -04002626 int error;
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002627
Chuck Levera6fe23b2009-09-08 19:50:00 -04002628 dfprintk(MOUNT, "--> nfs4_try_mount()\n");
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002629
2630 export_path = data->nfs_server.export_path;
2631 data->nfs_server.export_path = "/";
2632 root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data,
2633 data->nfs_server.hostname);
2634 data->nfs_server.export_path = export_path;
2635
2636 error = PTR_ERR(root_mnt);
2637 if (IS_ERR(root_mnt))
2638 goto out;
2639
2640 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
2641
2642out:
Chuck Levera6fe23b2009-09-08 19:50:00 -04002643 dfprintk(MOUNT, "<-- nfs4_try_mount() = %d%s\n", error,
2644 error != 0 ? " [error]" : "");
2645 return error;
2646}
2647
2648/*
2649 * Get the superblock for an NFS4 mountpoint
2650 */
2651static int nfs4_get_sb(struct file_system_type *fs_type,
2652 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
2653{
2654 struct nfs_parsed_mount_data *data;
2655 int error = -ENOMEM;
2656
Trond Myklebustc5811db2009-10-06 15:40:15 -04002657 data = nfs_alloc_parsed_mount_data(4);
Chuck Levera6fe23b2009-09-08 19:50:00 -04002658 if (data == NULL)
2659 goto out_free_data;
2660
2661 /* Validate the mount data */
2662 error = nfs4_validate_mount_data(raw_data, data, dev_name);
2663 if (error < 0)
2664 goto out;
2665
2666 error = nfs4_try_mount(flags, dev_name, data, mnt);
2667
2668out:
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002669 kfree(data->client_address);
2670 kfree(data->nfs_server.export_path);
2671 kfree(data->nfs_server.hostname);
2672 kfree(data->fscache_uniq);
2673out_free_data:
2674 kfree(data);
2675 dprintk("<-- nfs4_get_sb() = %d%s\n", error,
2676 error != 0 ? " [error]" : "");
2677 return error;
2678}
2679
David Howellsf7b422b2006-06-09 09:34:33 -04002680static void nfs4_kill_super(struct super_block *sb)
2681{
2682 struct nfs_server *server = NFS_SB(sb);
2683
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002684 dprintk("--> %s\n", __func__);
Trond Myklebust515d8612008-12-23 15:21:46 -05002685 nfs_super_return_all_delegations(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04002686 kill_anon_super(sb);
David Howells08734042009-04-03 16:42:42 +01002687 nfs_fscache_release_super_cookie(sb);
David Howells54ceac42006-08-22 20:06:13 -04002688 nfs_free_server(server);
Andy Adamson0f3e66c2009-04-01 09:22:34 -04002689 dprintk("<-- %s\n", __func__);
David Howellsf7b422b2006-06-09 09:34:33 -04002690}
2691
2692/*
David Howells54ceac42006-08-22 20:06:13 -04002693 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04002694 */
David Howells54ceac42006-08-22 20:06:13 -04002695static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
2696 const char *dev_name, void *raw_data,
2697 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002698{
2699 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002700 struct super_block *s;
2701 struct nfs_server *server;
2702 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04002703 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002704 struct nfs_sb_mountdata sb_mntdata = {
2705 .mntflags = flags,
2706 };
David Howells54ceac42006-08-22 20:06:13 -04002707 int error;
2708
2709 dprintk("--> nfs4_xdev_get_sb()\n");
2710
2711 /* create a new volume representation */
2712 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
2713 if (IS_ERR(server)) {
2714 error = PTR_ERR(server);
2715 goto out_err_noserver;
2716 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002717 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002718
Trond Myklebust75180df2007-05-16 16:53:28 -04002719 if (server->flags & NFS4_MOUNT_UNSHARED)
2720 compare_super = NULL;
2721
David Howells54ceac42006-08-22 20:06:13 -04002722 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04002723 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002724 if (IS_ERR(s)) {
2725 error = PTR_ERR(s);
2726 goto out_err_nosb;
2727 }
2728
2729 if (s->s_fs_info != server) {
2730 nfs_free_server(server);
2731 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002732 } else {
2733 error = nfs_bdi_register(server);
2734 if (error)
2735 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002736 }
2737
2738 if (!s->s_root) {
2739 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002740 nfs4_clone_super(s, data->sb);
David Howells2df54802009-09-23 14:36:39 -04002741 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002742 }
2743
2744 mntroot = nfs4_get_root(s, data->fh);
2745 if (IS_ERR(mntroot)) {
2746 error = PTR_ERR(mntroot);
2747 goto error_splat_super;
2748 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002749 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2750 dput(mntroot);
2751 error = -ESTALE;
2752 goto error_splat_super;
2753 }
David Howells54ceac42006-08-22 20:06:13 -04002754
2755 s->s_flags |= MS_ACTIVE;
2756 mnt->mnt_sb = s;
2757 mnt->mnt_root = mntroot;
2758
Eric Paris46c8ac72008-05-02 13:42:42 -07002759 security_sb_clone_mnt_opts(data->sb, s);
2760
David Howells54ceac42006-08-22 20:06:13 -04002761 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
2762 return 0;
2763
2764out_err_nosb:
2765 nfs_free_server(server);
2766out_err_noserver:
2767 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
2768 return error;
2769
2770error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002771 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002772 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
2773 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002774}
2775
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002776static int nfs4_remote_referral_get_sb(struct file_system_type *fs_type,
2777 int flags, const char *dev_name, void *raw_data,
2778 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002779{
2780 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002781 struct super_block *s;
2782 struct nfs_server *server;
2783 struct dentry *mntroot;
2784 struct nfs_fh mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04002785 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002786 struct nfs_sb_mountdata sb_mntdata = {
2787 .mntflags = flags,
2788 };
David Howells54ceac42006-08-22 20:06:13 -04002789 int error;
2790
2791 dprintk("--> nfs4_referral_get_sb()\n");
2792
2793 /* create a new volume representation */
2794 server = nfs4_create_referral_server(data, &mntfh);
2795 if (IS_ERR(server)) {
2796 error = PTR_ERR(server);
2797 goto out_err_noserver;
2798 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002799 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002800
Trond Myklebust75180df2007-05-16 16:53:28 -04002801 if (server->flags & NFS4_MOUNT_UNSHARED)
2802 compare_super = NULL;
2803
David Howells54ceac42006-08-22 20:06:13 -04002804 /* Get a superblock - note that we may end up sharing one that already exists */
Andy Adamsonec9a05c2008-10-17 10:44:37 -04002805 s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002806 if (IS_ERR(s)) {
2807 error = PTR_ERR(s);
2808 goto out_err_nosb;
2809 }
2810
2811 if (s->s_fs_info != server) {
2812 nfs_free_server(server);
2813 server = NULL;
Miklos Szeredifa799752008-04-30 00:54:33 -07002814 } else {
2815 error = nfs_bdi_register(server);
2816 if (error)
2817 goto error_splat_super;
David Howells54ceac42006-08-22 20:06:13 -04002818 }
2819
2820 if (!s->s_root) {
2821 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002822 nfs4_fill_super(s);
David Howells2df54802009-09-23 14:36:39 -04002823 nfs_fscache_get_super_cookie(s, NULL, data);
David Howells54ceac42006-08-22 20:06:13 -04002824 }
2825
Trond Myklebustf2d0d852007-02-02 14:46:09 -08002826 mntroot = nfs4_get_root(s, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002827 if (IS_ERR(mntroot)) {
2828 error = PTR_ERR(mntroot);
2829 goto error_splat_super;
2830 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002831 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2832 dput(mntroot);
2833 error = -ESTALE;
2834 goto error_splat_super;
2835 }
David Howells54ceac42006-08-22 20:06:13 -04002836
2837 s->s_flags |= MS_ACTIVE;
2838 mnt->mnt_sb = s;
2839 mnt->mnt_root = mntroot;
2840
Eric Paris46c8ac72008-05-02 13:42:42 -07002841 security_sb_clone_mnt_opts(data->sb, s);
2842
David Howells54ceac42006-08-22 20:06:13 -04002843 dprintk("<-- nfs4_referral_get_sb() = 0\n");
2844 return 0;
2845
2846out_err_nosb:
2847 nfs_free_server(server);
2848out_err_noserver:
2849 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
2850 return error;
2851
2852error_splat_super:
Al Viro6f5bbff2009-05-06 01:34:22 -04002853 deactivate_locked_super(s);
David Howells54ceac42006-08-22 20:06:13 -04002854 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
2855 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002856}
2857
Trond Myklebustc02d7ad2009-06-22 15:09:14 -04002858/*
2859 * Create an NFS4 server record on referral traversal
2860 */
2861static int nfs4_referral_get_sb(struct file_system_type *fs_type,
2862 int flags, const char *dev_name, void *raw_data,
2863 struct vfsmount *mnt)
2864{
2865 struct nfs_clone_mount *data = raw_data;
2866 char *export_path;
2867 struct vfsmount *root_mnt;
2868 int error;
2869
2870 dprintk("--> nfs4_referral_get_sb()\n");
2871
2872 export_path = data->mnt_path;
2873 data->mnt_path = "/";
2874
2875 root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type,
2876 flags, data, data->hostname);
2877 data->mnt_path = export_path;
2878
2879 error = PTR_ERR(root_mnt);
2880 if (IS_ERR(root_mnt))
2881 goto out;
2882
2883 error = nfs_follow_remote_path(root_mnt, export_path, mnt);
2884out:
2885 dprintk("<-- nfs4_referral_get_sb() = %d%s\n", error,
2886 error != 0 ? " [error]" : "");
2887 return error;
2888}
2889
David Howells54ceac42006-08-22 20:06:13 -04002890#endif /* CONFIG_NFS_V4 */