blob: 3c6f53aa73170e4800fd2257ff2b456aae33e74f [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 *
8 * Modularised by Alan Cox <Alan.Cox@linux.org>, while hacking some
9 * 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>
45#include <linux/nfs_idmap.h>
46#include <linux/vfs.h>
47#include <linux/inet.h>
Chuck Leverfd00a8f2007-12-10 14:57:38 -050048#include <linux/in6.h>
49#include <net/ipv6.h>
David Howellsf7b422b2006-06-09 09:34:33 -040050#include <linux/nfs_xdr.h>
Adrian Bunkb5d5dfb2007-02-12 00:53:40 -080051#include <linux/magic.h>
Chuck Leverbf0fd762007-07-01 12:13:44 -040052#include <linux/parser.h>
David Howellsf7b422b2006-06-09 09:34:33 -040053
54#include <asm/system.h>
55#include <asm/uaccess.h>
56
57#include "nfs4_fs.h"
58#include "callback.h"
59#include "delegation.h"
60#include "iostat.h"
61#include "internal.h"
62
63#define NFSDBG_FACILITY NFSDBG_VFS
64
Chuck Leverbf0fd762007-07-01 12:13:44 -040065enum {
66 /* Mount options that take no arguments */
67 Opt_soft, Opt_hard,
68 Opt_intr, Opt_nointr,
69 Opt_posix, Opt_noposix,
70 Opt_cto, Opt_nocto,
71 Opt_ac, Opt_noac,
72 Opt_lock, Opt_nolock,
73 Opt_v2, Opt_v3,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040074 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040075 Opt_acl, Opt_noacl,
76 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040077 Opt_sharecache, Opt_nosharecache,
Chuck Leverbf0fd762007-07-01 12:13:44 -040078
79 /* Mount options that take integer arguments */
80 Opt_port,
81 Opt_rsize, Opt_wsize, Opt_bsize,
82 Opt_timeo, Opt_retrans,
83 Opt_acregmin, Opt_acregmax,
84 Opt_acdirmin, Opt_acdirmax,
85 Opt_actimeo,
86 Opt_namelen,
87 Opt_mountport,
Chuck Levere887cbc2007-10-26 13:32:29 -040088 Opt_mountvers,
Chuck Leverad879ce2007-10-26 13:32:24 -040089 Opt_nfsvers,
Chuck Leverbf0fd762007-07-01 12:13:44 -040090
91 /* Mount options that take string arguments */
Chuck Lever33832032007-12-10 14:59:13 -050092 Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost,
Chuck Lever0ac83772007-09-11 18:01:04 -040093 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Chuck Leverbf0fd762007-07-01 12:13:44 -040094
95 /* Mount options that are ignored */
96 Opt_userspace, Opt_deprecated,
97
98 Opt_err
99};
100
101static match_table_t nfs_mount_option_tokens = {
102 { Opt_userspace, "bg" },
103 { Opt_userspace, "fg" },
104 { Opt_soft, "soft" },
105 { Opt_hard, "hard" },
106 { Opt_intr, "intr" },
107 { Opt_nointr, "nointr" },
108 { Opt_posix, "posix" },
109 { Opt_noposix, "noposix" },
110 { Opt_cto, "cto" },
111 { Opt_nocto, "nocto" },
112 { Opt_ac, "ac" },
113 { Opt_noac, "noac" },
114 { Opt_lock, "lock" },
115 { Opt_nolock, "nolock" },
116 { Opt_v2, "v2" },
117 { Opt_v3, "v3" },
118 { Opt_udp, "udp" },
119 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400120 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400121 { Opt_acl, "acl" },
122 { Opt_noacl, "noacl" },
123 { Opt_rdirplus, "rdirplus" },
124 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400125 { Opt_sharecache, "sharecache" },
126 { Opt_nosharecache, "nosharecache" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400127
128 { Opt_port, "port=%u" },
129 { Opt_rsize, "rsize=%u" },
130 { Opt_wsize, "wsize=%u" },
131 { Opt_bsize, "bsize=%u" },
132 { Opt_timeo, "timeo=%u" },
133 { Opt_retrans, "retrans=%u" },
134 { Opt_acregmin, "acregmin=%u" },
135 { Opt_acregmax, "acregmax=%u" },
136 { Opt_acdirmin, "acdirmin=%u" },
137 { Opt_acdirmax, "acdirmax=%u" },
138 { Opt_actimeo, "actimeo=%u" },
139 { Opt_userspace, "retry=%u" },
140 { Opt_namelen, "namlen=%u" },
141 { Opt_mountport, "mountport=%u" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400142 { Opt_mountvers, "mountvers=%u" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400143 { Opt_nfsvers, "nfsvers=%u" },
144 { Opt_nfsvers, "vers=%u" },
145
146 { Opt_sec, "sec=%s" },
147 { Opt_proto, "proto=%s" },
148 { Opt_mountproto, "mountproto=%s" },
149 { Opt_addr, "addr=%s" },
150 { Opt_clientaddr, "clientaddr=%s" },
Chuck Lever33832032007-12-10 14:59:13 -0500151 { Opt_mounthost, "mounthost=%s" },
Chuck Lever0ac83772007-09-11 18:01:04 -0400152 { Opt_mountaddr, "mountaddr=%s" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400153
154 { Opt_err, NULL }
155};
156
157enum {
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400158 Opt_xprt_udp, Opt_xprt_tcp, Opt_xprt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -0400159
160 Opt_xprt_err
161};
162
163static match_table_t nfs_xprt_protocol_tokens = {
164 { Opt_xprt_udp, "udp" },
165 { Opt_xprt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400166 { Opt_xprt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400167
168 { Opt_xprt_err, NULL }
169};
170
171enum {
172 Opt_sec_none, Opt_sec_sys,
173 Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p,
174 Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp,
175 Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp,
176
177 Opt_sec_err
178};
179
180static match_table_t nfs_secflavor_tokens = {
181 { Opt_sec_none, "none" },
182 { Opt_sec_none, "null" },
183 { Opt_sec_sys, "sys" },
184
185 { Opt_sec_krb5, "krb5" },
186 { Opt_sec_krb5i, "krb5i" },
187 { Opt_sec_krb5p, "krb5p" },
188
189 { Opt_sec_lkey, "lkey" },
190 { Opt_sec_lkeyi, "lkeyi" },
191 { Opt_sec_lkeyp, "lkeyp" },
192
Olga Kornievskaia8d042212008-02-13 16:47:06 -0500193 { Opt_sec_spkm, "spkm3" },
194 { Opt_sec_spkmi, "spkm3i" },
195 { Opt_sec_spkmp, "spkm3p" },
196
Chuck Leverbf0fd762007-07-01 12:13:44 -0400197 { Opt_sec_err, NULL }
198};
199
200
David Howellsf7b422b2006-06-09 09:34:33 -0400201static void nfs_umount_begin(struct vfsmount *, int);
Trond Myklebust816724e2006-06-24 08:41:41 -0400202static int nfs_statfs(struct dentry *, struct kstatfs *);
David Howellsf7b422b2006-06-09 09:34:33 -0400203static int nfs_show_options(struct seq_file *, struct vfsmount *);
204static int nfs_show_stats(struct seq_file *, struct vfsmount *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400205static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
David Howells54ceac42006-08-22 20:06:13 -0400206static int nfs_xdev_get_sb(struct file_system_type *fs_type,
Trond Myklebust816724e2006-06-24 08:41:41 -0400207 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400208static void nfs_kill_super(struct super_block *);
Steve Dicksonef818a22007-11-08 04:05:04 -0500209static void nfs_put_super(struct super_block *);
David Howellsf7b422b2006-06-09 09:34:33 -0400210
211static struct file_system_type nfs_fs_type = {
212 .owner = THIS_MODULE,
213 .name = "nfs",
214 .get_sb = nfs_get_sb,
215 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700216 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400217};
218
David Howells54ceac42006-08-22 20:06:13 -0400219struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400220 .owner = THIS_MODULE,
221 .name = "nfs",
David Howells54ceac42006-08-22 20:06:13 -0400222 .get_sb = nfs_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400223 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700224 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400225};
226
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800227static const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400228 .alloc_inode = nfs_alloc_inode,
229 .destroy_inode = nfs_destroy_inode,
230 .write_inode = nfs_write_inode,
Steve Dicksonef818a22007-11-08 04:05:04 -0500231 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400232 .statfs = nfs_statfs,
233 .clear_inode = nfs_clear_inode,
234 .umount_begin = nfs_umount_begin,
235 .show_options = nfs_show_options,
236 .show_stats = nfs_show_stats,
237};
238
239#ifdef CONFIG_NFS_V4
Trond Myklebust816724e2006-06-24 08:41:41 -0400240static int nfs4_get_sb(struct file_system_type *fs_type,
241 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howells54ceac42006-08-22 20:06:13 -0400242static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
243 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
244static int nfs4_referral_get_sb(struct file_system_type *fs_type,
245 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400246static void nfs4_kill_super(struct super_block *sb);
247
248static struct file_system_type nfs4_fs_type = {
249 .owner = THIS_MODULE,
250 .name = "nfs4",
251 .get_sb = nfs4_get_sb,
252 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700253 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400254};
255
David Howells54ceac42006-08-22 20:06:13 -0400256struct file_system_type nfs4_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400257 .owner = THIS_MODULE,
258 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400259 .get_sb = nfs4_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400260 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700261 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400262};
263
David Howells54ceac42006-08-22 20:06:13 -0400264struct file_system_type nfs4_referral_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400265 .owner = THIS_MODULE,
266 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400267 .get_sb = nfs4_referral_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400268 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700269 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400270};
271
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800272static const struct super_operations nfs4_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400273 .alloc_inode = nfs_alloc_inode,
274 .destroy_inode = nfs_destroy_inode,
275 .write_inode = nfs_write_inode,
276 .statfs = nfs_statfs,
277 .clear_inode = nfs4_clear_inode,
278 .umount_begin = nfs_umount_begin,
279 .show_options = nfs_show_options,
280 .show_stats = nfs_show_stats,
281};
282#endif
283
Rusty Russell8e1f9362007-07-17 04:03:17 -0700284static struct shrinker acl_shrinker = {
285 .shrink = nfs_access_cache_shrinker,
286 .seeks = DEFAULT_SEEKS,
287};
Trond Myklebust979df722006-07-25 11:28:19 -0400288
David Howellsf7b422b2006-06-09 09:34:33 -0400289/*
290 * Register the NFS filesystems
291 */
292int __init register_nfs_fs(void)
293{
294 int ret;
295
296 ret = register_filesystem(&nfs_fs_type);
297 if (ret < 0)
298 goto error_0;
299
David Howellsf7b422b2006-06-09 09:34:33 -0400300 ret = nfs_register_sysctl();
301 if (ret < 0)
302 goto error_1;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800303#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400304 ret = register_filesystem(&nfs4_fs_type);
305 if (ret < 0)
306 goto error_2;
307#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700308 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400309 return 0;
310
311#ifdef CONFIG_NFS_V4
312error_2:
313 nfs_unregister_sysctl();
Peter Zijlstra89a09142007-03-16 13:38:26 -0800314#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400315error_1:
316 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400317error_0:
318 return ret;
319}
320
321/*
322 * Unregister the NFS filesystems
323 */
324void __exit unregister_nfs_fs(void)
325{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700326 unregister_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400327#ifdef CONFIG_NFS_V4
328 unregister_filesystem(&nfs4_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400329#endif
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700330 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400331 unregister_filesystem(&nfs_fs_type);
332}
333
Steve Dicksonef818a22007-11-08 04:05:04 -0500334void nfs_sb_active(struct nfs_server *server)
335{
336 atomic_inc(&server->active);
337}
338
339void nfs_sb_deactive(struct nfs_server *server)
340{
341 if (atomic_dec_and_test(&server->active))
342 wake_up(&server->active_wq);
343}
344
345static void nfs_put_super(struct super_block *sb)
346{
347 struct nfs_server *server = NFS_SB(sb);
348 /*
349 * Make sure there are no outstanding ops to this server.
350 * If so, wait for them to finish before allowing the
351 * unmount to continue.
352 */
353 wait_event(server->active_wq, atomic_read(&server->active) == 0);
354}
355
David Howellsf7b422b2006-06-09 09:34:33 -0400356/*
357 * Deliver file system statistics to userspace
358 */
Trond Myklebust816724e2006-06-24 08:41:41 -0400359static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400360{
David Howells0c7d90c2006-08-22 20:06:10 -0400361 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400362 unsigned char blockbits;
363 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400364 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
David Howellsf7b422b2006-06-09 09:34:33 -0400365 struct nfs_fattr fattr;
366 struct nfs_fsstat res = {
367 .fattr = &fattr,
368 };
369 int error;
370
371 lock_kernel();
372
David Howells8fa5c002006-08-22 20:06:12 -0400373 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
David Howellsf7b422b2006-06-09 09:34:33 -0400374 if (error < 0)
375 goto out_err;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700376 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400377
378 /*
379 * Current versions of glibc do not correctly handle the
380 * case where f_frsize != f_bsize. Eventually we want to
381 * report the value of wtmult in this field.
382 */
David Howells0c7d90c2006-08-22 20:06:10 -0400383 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400384
385 /*
386 * On most *nix systems, f_blocks, f_bfree, and f_bavail
387 * are reported in units of f_frsize. Linux hasn't had
388 * an f_frsize field in its statfs struct until recently,
389 * thus historically Linux's sys_statfs reports these
390 * fields in units of f_bsize.
391 */
David Howells0c7d90c2006-08-22 20:06:10 -0400392 buf->f_bsize = dentry->d_sb->s_blocksize;
393 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400394 blockres = (1 << blockbits) - 1;
395 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
396 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
397 buf->f_bavail = (res.abytes + blockres) >> blockbits;
398
399 buf->f_files = res.tfiles;
400 buf->f_ffree = res.afiles;
401
402 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700403
David Howellsf7b422b2006-06-09 09:34:33 -0400404 unlock_kernel();
405 return 0;
406
407 out_err:
408 dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700409 unlock_kernel();
410 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400411}
412
David Howells7d4e2742006-08-22 20:06:07 -0400413/*
414 * Map the security flavour number to a name
415 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400416static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
417{
David Howells7d4e2742006-08-22 20:06:07 -0400418 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400419 rpc_authflavor_t flavour;
420 const char *str;
421 } sec_flavours[] = {
422 { RPC_AUTH_NULL, "null" },
423 { RPC_AUTH_UNIX, "sys" },
424 { RPC_AUTH_GSS_KRB5, "krb5" },
425 { RPC_AUTH_GSS_KRB5I, "krb5i" },
426 { RPC_AUTH_GSS_KRB5P, "krb5p" },
427 { RPC_AUTH_GSS_LKEY, "lkey" },
428 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
429 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
430 { RPC_AUTH_GSS_SPKM, "spkm" },
431 { RPC_AUTH_GSS_SPKMI, "spkmi" },
432 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400433 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400434 };
435 int i;
436
Chuck Lever4d81cd12007-07-01 12:12:40 -0400437 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400438 if (sec_flavours[i].flavour == flavour)
439 break;
440 }
441 return sec_flavours[i].str;
442}
443
David Howellsf7b422b2006-06-09 09:34:33 -0400444/*
445 * Describe the mount options in force on this server representation
446 */
447static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
448{
David Howells509de812006-08-22 20:06:11 -0400449 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400450 int flag;
David Howells509de812006-08-22 20:06:11 -0400451 const char *str;
452 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400453 } nfs_info[] = {
454 { NFS_MOUNT_SOFT, ",soft", ",hard" },
David Howellsf7b422b2006-06-09 09:34:33 -0400455 { NFS_MOUNT_NOCTO, ",nocto", "" },
456 { NFS_MOUNT_NOAC, ",noac", "" },
457 { NFS_MOUNT_NONLM, ",nolock", "" },
458 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400459 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400460 { NFS_MOUNT_UNSHARED, ",nosharecache", ""},
David Howellsf7b422b2006-06-09 09:34:33 -0400461 { 0, NULL, NULL }
462 };
David Howells509de812006-08-22 20:06:11 -0400463 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400464 struct nfs_client *clp = nfss->nfs_client;
David Howellsf7b422b2006-06-09 09:34:33 -0400465
Chuck Lever2d767432008-03-14 14:10:08 -0400466 seq_printf(m, ",vers=%u", clp->rpc_ops->version);
467 seq_printf(m, ",rsize=%u", nfss->rsize);
468 seq_printf(m, ",wsize=%u", nfss->wsize);
David Howellsf7b422b2006-06-09 09:34:33 -0400469 if (nfss->acregmin != 3*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400470 seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400471 if (nfss->acregmax != 60*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400472 seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400473 if (nfss->acdirmin != 30*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400474 seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400475 if (nfss->acdirmax != 60*HZ || showdefaults)
Chuck Lever2d767432008-03-14 14:10:08 -0400476 seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ);
David Howellsf7b422b2006-06-09 09:34:33 -0400477 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
478 if (nfss->flags & nfs_infop->flag)
479 seq_puts(m, nfs_infop->str);
480 else
481 seq_puts(m, nfs_infop->nostr);
482 }
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400483 seq_printf(m, ",proto=%s",
484 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_PROTO));
Trond Myklebust33170232007-12-20 16:03:59 -0500485 seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ);
486 seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries);
Trond Myklebust81039f12006-06-09 09:34:34 -0400487 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
David Howellsf7b422b2006-06-09 09:34:33 -0400488}
489
490/*
491 * Describe the mount options on this VFS mountpoint
492 */
493static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
494{
495 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
496
497 nfs_show_mount_options(m, nfss, 0);
498
Chuck Lever5d8515c2007-12-10 14:57:16 -0500499 seq_printf(m, ",addr=%s",
500 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
501 RPC_DISPLAY_ADDR));
David Howellsf7b422b2006-06-09 09:34:33 -0400502
503 return 0;
504}
505
506/*
507 * Present statistical information for this VFS mountpoint
508 */
509static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
510{
511 int i, cpu;
512 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
513 struct rpc_auth *auth = nfss->client->cl_auth;
514 struct nfs_iostats totals = { };
515
516 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
517
518 /*
519 * Display all mount option settings
520 */
521 seq_printf(m, "\n\topts:\t");
522 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
523 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
524 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
525 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
526 nfs_show_mount_options(m, nfss, 1);
527
528 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
529
530 seq_printf(m, "\n\tcaps:\t");
531 seq_printf(m, "caps=0x%x", nfss->caps);
Chuck Lever2d767432008-03-14 14:10:08 -0400532 seq_printf(m, ",wtmult=%u", nfss->wtmult);
533 seq_printf(m, ",dtsize=%u", nfss->dtsize);
534 seq_printf(m, ",bsize=%u", nfss->bsize);
535 seq_printf(m, ",namlen=%u", nfss->namelen);
David Howellsf7b422b2006-06-09 09:34:33 -0400536
537#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500538 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400539 seq_printf(m, "\n\tnfsv4:\t");
540 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
541 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
542 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
543 }
544#endif
545
546 /*
547 * Display security flavor in effect for this mount
548 */
Chuck Lever2d767432008-03-14 14:10:08 -0400549 seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400550 if (auth->au_flavor)
Chuck Lever2d767432008-03-14 14:10:08 -0400551 seq_printf(m, ",pseudoflavor=%u", auth->au_flavor);
David Howellsf7b422b2006-06-09 09:34:33 -0400552
553 /*
554 * Display superblock I/O counters
555 */
556 for_each_possible_cpu(cpu) {
557 struct nfs_iostats *stats;
558
559 preempt_disable();
560 stats = per_cpu_ptr(nfss->io_stats, cpu);
561
562 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
563 totals.events[i] += stats->events[i];
564 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
565 totals.bytes[i] += stats->bytes[i];
566
567 preempt_enable();
568 }
569
570 seq_printf(m, "\n\tevents:\t");
571 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
572 seq_printf(m, "%lu ", totals.events[i]);
573 seq_printf(m, "\n\tbytes:\t");
574 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
575 seq_printf(m, "%Lu ", totals.bytes[i]);
576 seq_printf(m, "\n");
577
578 rpc_print_iostats(m, nfss->client);
579
580 return 0;
581}
582
583/*
584 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400585 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400586 */
587static void nfs_umount_begin(struct vfsmount *vfsmnt, int flags)
588{
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400589 struct nfs_server *server = NFS_SB(vfsmnt->mnt_sb);
590 struct rpc_clnt *rpc;
591
David Howellsf7b422b2006-06-09 09:34:33 -0400592 shrink_submounts(vfsmnt, &nfs_automount_list);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400593
594 if (!(flags & MNT_FORCE))
595 return;
596 /* -EIO all pending I/O */
597 rpc = server->client_acl;
598 if (!IS_ERR(rpc))
599 rpc_killall_tasks(rpc);
600 rpc = server->client;
601 if (!IS_ERR(rpc))
602 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400603}
604
605/*
Chuck Lever04dcd6e2007-12-10 14:57:53 -0500606 * Set the port number in an address. Be agnostic about the address family.
607 */
608static void nfs_set_port(struct sockaddr *sap, unsigned short port)
609{
610 switch (sap->sa_family) {
611 case AF_INET: {
612 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
613 ap->sin_port = htons(port);
614 break;
615 }
616 case AF_INET6: {
617 struct sockaddr_in6 *ap = (struct sockaddr_in6 *)sap;
618 ap->sin6_port = htons(port);
619 break;
620 }
621 }
622}
623
624/*
Chuck Levercdcd7f92007-12-10 14:57:45 -0500625 * Sanity-check a server address provided by the mount command.
626 *
627 * Address family must be initialized, and address must not be
628 * the ANY address for that family.
Chuck Leverfc50d582007-07-01 12:12:46 -0400629 */
630static int nfs_verify_server_address(struct sockaddr *addr)
631{
632 switch (addr->sa_family) {
633 case AF_INET: {
Chuck Levercdcd7f92007-12-10 14:57:45 -0500634 struct sockaddr_in *sa = (struct sockaddr_in *)addr;
635 return sa->sin_addr.s_addr != INADDR_ANY;
636 }
637 case AF_INET6: {
638 struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr;
639 return !ipv6_addr_any(sa);
Chuck Leverfc50d582007-07-01 12:12:46 -0400640 }
641 }
642
643 return 0;
644}
645
646/*
Chuck Lever9412b922007-12-10 14:59:21 -0500647 * Parse string addresses passed in via a mount option,
648 * and construct a sockaddr based on the result.
649 *
650 * If address parsing fails, set the sockaddr's address
651 * family to AF_UNSPEC to force nfs_verify_server_address()
652 * to punt the mount.
653 */
654static void nfs_parse_server_address(char *value,
Chuck Lever4c568012007-12-10 14:59:28 -0500655 struct sockaddr *sap,
656 size_t *len)
Chuck Lever9412b922007-12-10 14:59:21 -0500657{
Chuck Lever3c7c7e42007-12-10 14:59:35 -0500658 if (strchr(value, ':')) {
659 struct sockaddr_in6 *ap = (struct sockaddr_in6 *)sap;
660 u8 *addr = (u8 *)&ap->sin6_addr.in6_u;
Chuck Lever9412b922007-12-10 14:59:21 -0500661
Chuck Lever3c7c7e42007-12-10 14:59:35 -0500662 ap->sin6_family = AF_INET6;
663 *len = sizeof(*ap);
664 if (in6_pton(value, -1, addr, '\0', NULL))
665 return;
666 } else {
667 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
668 u8 *addr = (u8 *)&ap->sin_addr.s_addr;
669
670 ap->sin_family = AF_INET;
671 *len = sizeof(*ap);
672 if (in4_pton(value, -1, addr, '\0', NULL))
673 return;
674 }
Chuck Lever9412b922007-12-10 14:59:21 -0500675
676 sap->sa_family = AF_UNSPEC;
Chuck Lever4c568012007-12-10 14:59:28 -0500677 *len = 0;
Chuck Lever9412b922007-12-10 14:59:21 -0500678}
679
680/*
Chuck Leverbf0fd762007-07-01 12:13:44 -0400681 * Error-check and convert a string of mount options from user space into
682 * a data structure
683 */
684static int nfs_parse_mount_options(char *raw,
685 struct nfs_parsed_mount_data *mnt)
686{
Eric Parisf9c3a382008-03-05 14:20:18 -0500687 char *p, *string, *secdata;
Eric Parisf9c3a382008-03-05 14:20:18 -0500688 int rc;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400689
690 if (!raw) {
691 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
692 return 1;
693 }
694 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
695
Eric Parisf9c3a382008-03-05 14:20:18 -0500696 secdata = alloc_secdata();
697 if (!secdata)
698 goto out_nomem;
699
700 rc = security_sb_copy_data(raw, secdata);
701 if (rc)
702 goto out_security_failure;
703
704 rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts);
705 if (rc)
706 goto out_security_failure;
707
708 free_secdata(secdata);
709
Chuck Leverbf0fd762007-07-01 12:13:44 -0400710 while ((p = strsep(&raw, ",")) != NULL) {
711 substring_t args[MAX_OPT_ARGS];
712 int option, token;
713
714 if (!*p)
715 continue;
716
717 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
718
719 token = match_token(p, nfs_mount_option_tokens, args);
720 switch (token) {
721 case Opt_soft:
722 mnt->flags |= NFS_MOUNT_SOFT;
723 break;
724 case Opt_hard:
725 mnt->flags &= ~NFS_MOUNT_SOFT;
726 break;
727 case Opt_intr:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400728 case Opt_nointr:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400729 break;
730 case Opt_posix:
731 mnt->flags |= NFS_MOUNT_POSIX;
732 break;
733 case Opt_noposix:
734 mnt->flags &= ~NFS_MOUNT_POSIX;
735 break;
736 case Opt_cto:
737 mnt->flags &= ~NFS_MOUNT_NOCTO;
738 break;
739 case Opt_nocto:
740 mnt->flags |= NFS_MOUNT_NOCTO;
741 break;
742 case Opt_ac:
743 mnt->flags &= ~NFS_MOUNT_NOAC;
744 break;
745 case Opt_noac:
746 mnt->flags |= NFS_MOUNT_NOAC;
747 break;
748 case Opt_lock:
749 mnt->flags &= ~NFS_MOUNT_NONLM;
750 break;
751 case Opt_nolock:
752 mnt->flags |= NFS_MOUNT_NONLM;
753 break;
754 case Opt_v2:
755 mnt->flags &= ~NFS_MOUNT_VER3;
756 break;
757 case Opt_v3:
758 mnt->flags |= NFS_MOUNT_VER3;
759 break;
760 case Opt_udp:
761 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400762 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400763 mnt->timeo = 7;
764 mnt->retrans = 5;
765 break;
766 case Opt_tcp:
767 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400768 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400769 mnt->timeo = 600;
770 mnt->retrans = 2;
771 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400772 case Opt_rdma:
773 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
774 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
775 mnt->timeo = 600;
776 mnt->retrans = 2;
777 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400778 case Opt_acl:
779 mnt->flags &= ~NFS_MOUNT_NOACL;
780 break;
781 case Opt_noacl:
782 mnt->flags |= NFS_MOUNT_NOACL;
783 break;
784 case Opt_rdirplus:
785 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
786 break;
787 case Opt_nordirplus:
788 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
789 break;
Trond Myklebust75180df2007-05-16 16:53:28 -0400790 case Opt_sharecache:
791 mnt->flags &= ~NFS_MOUNT_UNSHARED;
792 break;
793 case Opt_nosharecache:
794 mnt->flags |= NFS_MOUNT_UNSHARED;
795 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400796
797 case Opt_port:
798 if (match_int(args, &option))
799 return 0;
800 if (option < 0 || option > 65535)
801 return 0;
Chuck Leverf22d6d72008-03-14 14:10:22 -0400802 mnt->nfs_server.port = option;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400803 break;
804 case Opt_rsize:
805 if (match_int(args, &mnt->rsize))
806 return 0;
807 break;
808 case Opt_wsize:
809 if (match_int(args, &mnt->wsize))
810 return 0;
811 break;
812 case Opt_bsize:
813 if (match_int(args, &option))
814 return 0;
815 if (option < 0)
816 return 0;
817 mnt->bsize = option;
818 break;
819 case Opt_timeo:
820 if (match_int(args, &mnt->timeo))
821 return 0;
822 break;
823 case Opt_retrans:
824 if (match_int(args, &mnt->retrans))
825 return 0;
826 break;
827 case Opt_acregmin:
828 if (match_int(args, &mnt->acregmin))
829 return 0;
830 break;
831 case Opt_acregmax:
832 if (match_int(args, &mnt->acregmax))
833 return 0;
834 break;
835 case Opt_acdirmin:
836 if (match_int(args, &mnt->acdirmin))
837 return 0;
838 break;
839 case Opt_acdirmax:
840 if (match_int(args, &mnt->acdirmax))
841 return 0;
842 break;
843 case Opt_actimeo:
844 if (match_int(args, &option))
845 return 0;
846 if (option < 0)
847 return 0;
848 mnt->acregmin =
849 mnt->acregmax =
850 mnt->acdirmin =
851 mnt->acdirmax = option;
852 break;
853 case Opt_namelen:
854 if (match_int(args, &mnt->namlen))
855 return 0;
856 break;
857 case Opt_mountport:
858 if (match_int(args, &option))
859 return 0;
860 if (option < 0 || option > 65535)
861 return 0;
862 mnt->mount_server.port = option;
863 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400864 case Opt_mountvers:
865 if (match_int(args, &option))
866 return 0;
867 if (option < 0)
868 return 0;
869 mnt->mount_server.version = option;
870 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400871 case Opt_nfsvers:
872 if (match_int(args, &option))
873 return 0;
874 switch (option) {
875 case 2:
876 mnt->flags &= ~NFS_MOUNT_VER3;
877 break;
878 case 3:
879 mnt->flags |= NFS_MOUNT_VER3;
880 break;
881 default:
882 goto out_unrec_vers;
883 }
884 break;
885
886 case Opt_sec:
887 string = match_strdup(args);
888 if (string == NULL)
889 goto out_nomem;
890 token = match_token(string, nfs_secflavor_tokens, args);
891 kfree(string);
892
893 /*
894 * The flags setting is for v2/v3. The flavor_len
895 * setting is for v4. v2/v3 also need to know the
896 * difference between NULL and UNIX.
897 */
898 switch (token) {
899 case Opt_sec_none:
900 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
901 mnt->auth_flavor_len = 0;
902 mnt->auth_flavors[0] = RPC_AUTH_NULL;
903 break;
904 case Opt_sec_sys:
905 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
906 mnt->auth_flavor_len = 0;
907 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
908 break;
909 case Opt_sec_krb5:
910 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
911 mnt->auth_flavor_len = 1;
912 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
913 break;
914 case Opt_sec_krb5i:
915 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
916 mnt->auth_flavor_len = 1;
917 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
918 break;
919 case Opt_sec_krb5p:
920 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
921 mnt->auth_flavor_len = 1;
922 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
923 break;
924 case Opt_sec_lkey:
925 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
926 mnt->auth_flavor_len = 1;
927 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
928 break;
929 case Opt_sec_lkeyi:
930 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
931 mnt->auth_flavor_len = 1;
932 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
933 break;
934 case Opt_sec_lkeyp:
935 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
936 mnt->auth_flavor_len = 1;
937 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
938 break;
939 case Opt_sec_spkm:
940 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
941 mnt->auth_flavor_len = 1;
942 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
943 break;
944 case Opt_sec_spkmi:
945 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
946 mnt->auth_flavor_len = 1;
947 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
948 break;
949 case Opt_sec_spkmp:
950 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
951 mnt->auth_flavor_len = 1;
952 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
953 break;
954 default:
955 goto out_unrec_sec;
956 }
957 break;
958 case Opt_proto:
959 string = match_strdup(args);
960 if (string == NULL)
961 goto out_nomem;
962 token = match_token(string,
963 nfs_xprt_protocol_tokens, args);
964 kfree(string);
965
966 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400967 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400968 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 mnt->timeo = 7;
971 mnt->retrans = 5;
972 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400973 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400974 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400975 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400976 mnt->timeo = 600;
977 mnt->retrans = 2;
978 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400979 case Opt_xprt_rdma:
980 /* vector side protocols to TCP */
981 mnt->flags |= NFS_MOUNT_TCP;
982 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
983 mnt->timeo = 600;
984 mnt->retrans = 2;
985 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400986 default:
987 goto out_unrec_xprt;
988 }
989 break;
990 case Opt_mountproto:
991 string = match_strdup(args);
992 if (string == NULL)
993 goto out_nomem;
994 token = match_token(string,
995 nfs_xprt_protocol_tokens, args);
996 kfree(string);
997
998 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400999 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001000 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001001 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -04001002 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001003 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001004 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -04001005 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -04001006 default:
1007 goto out_unrec_xprt;
1008 }
1009 break;
1010 case Opt_addr:
1011 string = match_strdup(args);
1012 if (string == NULL)
1013 goto out_nomem;
Chuck Lever9412b922007-12-10 14:59:21 -05001014 nfs_parse_server_address(string, (struct sockaddr *)
Chuck Lever4c568012007-12-10 14:59:28 -05001015 &mnt->nfs_server.address,
1016 &mnt->nfs_server.addrlen);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001017 kfree(string);
1018 break;
1019 case Opt_clientaddr:
1020 string = match_strdup(args);
1021 if (string == NULL)
1022 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001023 kfree(mnt->client_address);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001024 mnt->client_address = string;
1025 break;
Chuck Lever33832032007-12-10 14:59:13 -05001026 case Opt_mounthost:
1027 string = match_strdup(args);
1028 if (string == NULL)
1029 goto out_nomem;
Chuck Leverfc601472008-01-16 16:38:10 -05001030 kfree(mnt->mount_server.hostname);
Chuck Lever33832032007-12-10 14:59:13 -05001031 mnt->mount_server.hostname = string;
1032 break;
Chuck Lever0ac83772007-09-11 18:01:04 -04001033 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -04001034 string = match_strdup(args);
1035 if (string == NULL)
1036 goto out_nomem;
Chuck Lever9412b922007-12-10 14:59:21 -05001037 nfs_parse_server_address(string, (struct sockaddr *)
Chuck Lever4c568012007-12-10 14:59:28 -05001038 &mnt->mount_server.address,
1039 &mnt->mount_server.addrlen);
Chuck Leverbf0fd762007-07-01 12:13:44 -04001040 kfree(string);
1041 break;
1042
1043 case Opt_userspace:
1044 case Opt_deprecated:
1045 break;
1046
1047 default:
1048 goto out_unknown;
1049 }
1050 }
1051
Chuck Leverf22d6d72008-03-14 14:10:22 -04001052 nfs_set_port((struct sockaddr *)&mnt->nfs_server.address,
1053 mnt->nfs_server.port);
Chuck Lever04dcd6e2007-12-10 14:57:53 -05001054
Chuck Leverbf0fd762007-07-01 12:13:44 -04001055 return 1;
1056
1057out_nomem:
1058 printk(KERN_INFO "NFS: not enough memory to parse option\n");
1059 return 0;
Eric Parisf9c3a382008-03-05 14:20:18 -05001060out_security_failure:
1061 free_secdata(secdata);
1062 printk(KERN_INFO "NFS: security options invalid: %d\n", rc);
1063 return 0;
Chuck Leverbf0fd762007-07-01 12:13:44 -04001064out_unrec_vers:
1065 printk(KERN_INFO "NFS: unrecognized NFS version number\n");
1066 return 0;
1067
1068out_unrec_xprt:
1069 printk(KERN_INFO "NFS: unrecognized transport protocol\n");
1070 return 0;
1071
1072out_unrec_sec:
1073 printk(KERN_INFO "NFS: unrecognized security flavor\n");
1074 return 0;
1075
1076out_unknown:
1077 printk(KERN_INFO "NFS: unknown mount option: %s\n", p);
1078 return 0;
1079}
1080
1081/*
Chuck Lever0076d7b2007-07-01 12:13:49 -04001082 * Use the remote server's MOUNT service to request the NFS file handle
1083 * corresponding to the provided path.
1084 */
1085static int nfs_try_mount(struct nfs_parsed_mount_data *args,
1086 struct nfs_fh *root_fh)
1087{
Chuck Lever4c568012007-12-10 14:59:28 -05001088 struct sockaddr *sap = (struct sockaddr *)&args->mount_server.address;
Chuck Lever33832032007-12-10 14:59:13 -05001089 char *hostname;
Chuck Lever4c568012007-12-10 14:59:28 -05001090 int status;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001091
1092 if (args->mount_server.version == 0) {
1093 if (args->flags & NFS_MOUNT_VER3)
1094 args->mount_server.version = NFS_MNT3_VERSION;
1095 else
1096 args->mount_server.version = NFS_MNT_VERSION;
1097 }
1098
Chuck Lever33832032007-12-10 14:59:13 -05001099 if (args->mount_server.hostname)
1100 hostname = args->mount_server.hostname;
1101 else
1102 hostname = args->nfs_server.hostname;
1103
Chuck Lever0076d7b2007-07-01 12:13:49 -04001104 /*
1105 * Construct the mount server's address.
1106 */
Chuck Lever4c568012007-12-10 14:59:28 -05001107 if (args->mount_server.address.ss_family == AF_UNSPEC) {
1108 memcpy(sap, &args->nfs_server.address,
1109 args->nfs_server.addrlen);
1110 args->mount_server.addrlen = args->nfs_server.addrlen;
1111 }
1112
James Lentiniaad70002007-09-24 17:32:49 -04001113 /*
1114 * autobind will be used if mount_server.port == 0
1115 */
Chuck Lever4c568012007-12-10 14:59:28 -05001116 nfs_set_port(sap, args->mount_server.port);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001117
1118 /*
1119 * Now ask the mount server to map our export path
1120 * to a file handle.
1121 */
Chuck Lever4c568012007-12-10 14:59:28 -05001122 status = nfs_mount(sap,
1123 args->mount_server.addrlen,
Chuck Lever33832032007-12-10 14:59:13 -05001124 hostname,
Chuck Lever0076d7b2007-07-01 12:13:49 -04001125 args->nfs_server.export_path,
1126 args->mount_server.version,
1127 args->mount_server.protocol,
1128 root_fh);
Chuck Leverefd83402007-09-11 18:00:58 -04001129 if (status == 0)
1130 return 0;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001131
Chuck Lever33832032007-12-10 14:59:13 -05001132 dfprintk(MOUNT, "NFS: unable to mount server %s, error %d",
1133 hostname, status);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001134 return status;
1135}
1136
1137/*
David Howells54ceac42006-08-22 20:06:13 -04001138 * Validate the NFS2/NFS3 mount data
1139 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001140 *
1141 * For option strings, user space handles the following behaviors:
1142 *
1143 * + DNS: mapping server host name to IP address ("addr=" option)
1144 *
1145 * + failure mode: how to behave if a mount request can't be handled
1146 * immediately ("fg/bg" option)
1147 *
1148 * + retry: how often to retry a mount request ("retry=" option)
1149 *
1150 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1151 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001152 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001153static int nfs_validate_mount_data(void *options,
1154 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001155 struct nfs_fh *mntfh,
1156 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001157{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001158 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever136d5582007-07-01 12:13:54 -04001159
Russell Kingf16c9602007-11-16 22:13:24 +00001160 memset(args, 0, sizeof(*args));
1161
Chuck Lever5df36e72007-07-01 12:12:56 -04001162 if (data == NULL)
1163 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001164
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001165 args->flags = (NFS_MOUNT_VER3 | NFS_MOUNT_TCP);
1166 args->rsize = NFS_MAX_FILE_IO_SIZE;
1167 args->wsize = NFS_MAX_FILE_IO_SIZE;
1168 args->timeo = 600;
1169 args->retrans = 2;
1170 args->acregmin = 3;
1171 args->acregmax = 60;
1172 args->acdirmin = 30;
1173 args->acdirmax = 60;
Chuck Leverf22d6d72008-03-14 14:10:22 -04001174 args->mount_server.port = 0; /* autobind unless user sets port */
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001175 args->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverf22d6d72008-03-14 14:10:22 -04001176 args->nfs_server.port = 0; /* autobind unless user sets port */
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001177 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001178
David Howellsf7b422b2006-06-09 09:34:33 -04001179 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001180 case 1:
1181 data->namlen = 0;
1182 case 2:
1183 data->bsize = 0;
1184 case 3:
1185 if (data->flags & NFS_MOUNT_VER3)
1186 goto out_no_v3;
1187 data->root.size = NFS2_FHSIZE;
1188 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1189 case 4:
1190 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1191 goto out_no_sec;
1192 case 5:
1193 memset(data->context, 0, sizeof(data->context));
1194 case 6:
1195 if (data->flags & NFS_MOUNT_VER3)
1196 mntfh->size = data->root.size;
1197 else
1198 mntfh->size = NFS2_FHSIZE;
1199
1200 if (mntfh->size > sizeof(mntfh->data))
1201 goto out_invalid_fh;
1202
1203 memcpy(mntfh->data, data->root.data, mntfh->size);
1204 if (mntfh->size < sizeof(mntfh->data))
1205 memset(mntfh->data + mntfh->size, 0,
1206 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001207
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001208 /*
1209 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1210 * can deal with.
1211 */
1212 args->flags = data->flags;
1213 args->rsize = data->rsize;
1214 args->wsize = data->wsize;
1215 args->flags = data->flags;
1216 args->timeo = data->timeo;
1217 args->retrans = data->retrans;
1218 args->acregmin = data->acregmin;
1219 args->acregmax = data->acregmax;
1220 args->acdirmin = data->acdirmin;
1221 args->acdirmax = data->acdirmax;
Chuck Lever4c568012007-12-10 14:59:28 -05001222
1223 memcpy(&args->nfs_server.address, &data->addr,
1224 sizeof(data->addr));
1225 args->nfs_server.addrlen = sizeof(data->addr);
1226 if (!nfs_verify_server_address((struct sockaddr *)
1227 &args->nfs_server.address))
1228 goto out_no_address;
1229
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001230 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001231 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001232 /* N.B. caller will free nfs_server.hostname in all cases */
1233 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1234 args->namlen = data->namlen;
1235 args->bsize = data->bsize;
1236 args->auth_flavors[0] = data->pseudoflavor;
Eric Parisf9c3a382008-03-05 14:20:18 -05001237
1238 /*
1239 * The legacy version 6 binary mount data from userspace has a
1240 * field used only to transport selinux information into the
1241 * the kernel. To continue to support that functionality we
1242 * have a touch of selinux knowledge here in the NFS code. The
1243 * userspace code converted context=blah to just blah so we are
1244 * converting back to the full string selinux understands.
1245 */
1246 if (data->context[0]){
1247#ifdef CONFIG_SECURITY_SELINUX
1248 int rc;
1249 char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL);
1250 if (!opts_str)
1251 return -ENOMEM;
1252 strcpy(opts_str, "context=");
1253 data->context[NFS_MAX_CONTEXT_LEN] = '\0';
1254 strcat(opts_str, &data->context[0]);
1255 rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts);
1256 kfree(opts_str);
1257 if (rc)
1258 return rc;
1259#else
1260 return -EINVAL;
1261#endif
1262 }
1263
Chuck Lever5df36e72007-07-01 12:12:56 -04001264 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001265 default: {
1266 unsigned int len;
1267 char *c;
1268 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001269
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001270 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001271 return -EINVAL;
1272
Chuck Lever6e88e062007-09-24 15:39:50 -04001273 if (!nfs_verify_server_address((struct sockaddr *)
1274 &args->nfs_server.address))
1275 goto out_no_address;
1276
Chuck Lever136d5582007-07-01 12:13:54 -04001277 c = strchr(dev_name, ':');
1278 if (c == NULL)
1279 return -EINVAL;
Chuck Lever350c73a2007-08-29 17:59:01 -04001280 len = c - dev_name;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001281 /* N.B. caller will free nfs_server.hostname in all cases */
1282 args->nfs_server.hostname = kstrndup(dev_name, len, GFP_KERNEL);
Chuck Lever136d5582007-07-01 12:13:54 -04001283
1284 c++;
1285 if (strlen(c) > NFS_MAXPATHLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001286 return -ENAMETOOLONG;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001287 args->nfs_server.export_path = c;
Chuck Lever136d5582007-07-01 12:13:54 -04001288
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001289 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001290 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001291 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001292
Chuck Lever136d5582007-07-01 12:13:54 -04001293 break;
1294 }
David Howellsf7b422b2006-06-09 09:34:33 -04001295 }
David Howells54ceac42006-08-22 20:06:13 -04001296
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001297 if (!(args->flags & NFS_MOUNT_SECFLAVOUR))
1298 args->auth_flavors[0] = RPC_AUTH_UNIX;
Trond Myklebust36b15c52006-08-22 20:06:14 -04001299
David Howellsf7b422b2006-06-09 09:34:33 -04001300#ifndef CONFIG_NFS_V3
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001301 if (args->flags & NFS_MOUNT_VER3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001302 goto out_v3_not_compiled;
1303#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001304
David Howells54ceac42006-08-22 20:06:13 -04001305 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001306
1307out_no_data:
1308 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1309 return -EINVAL;
1310
1311out_no_v3:
1312 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1313 data->version);
1314 return -EINVAL;
1315
1316out_no_sec:
1317 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1318 return -EINVAL;
1319
Chuck Lever5df36e72007-07-01 12:12:56 -04001320#ifndef CONFIG_NFS_V3
1321out_v3_not_compiled:
1322 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1323 return -EPROTONOSUPPORT;
1324#endif /* !CONFIG_NFS_V3 */
1325
1326out_no_address:
1327 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1328 return -EINVAL;
1329
1330out_invalid_fh:
1331 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1332 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001333}
1334
1335/*
1336 * Initialise the common bits of the superblock
1337 */
1338static inline void nfs_initialise_sb(struct super_block *sb)
1339{
1340 struct nfs_server *server = NFS_SB(sb);
1341
1342 sb->s_magic = NFS_SUPER_MAGIC;
1343
1344 /* We probably want something more informative here */
1345 snprintf(sb->s_id, sizeof(sb->s_id),
1346 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
1347
1348 if (sb->s_blocksize == 0)
1349 sb->s_blocksize = nfs_block_bits(server->wsize,
1350 &sb->s_blocksize_bits);
1351
1352 if (server->flags & NFS_MOUNT_NOAC)
1353 sb->s_flags |= MS_SYNCHRONOUS;
1354
1355 nfs_super_set_maxbytes(sb, server->maxfilesize);
1356}
1357
1358/*
1359 * Finish setting up an NFS2/3 superblock
1360 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001361static void nfs_fill_super(struct super_block *sb,
1362 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001363{
1364 struct nfs_server *server = NFS_SB(sb);
1365
1366 sb->s_blocksize_bits = 0;
1367 sb->s_blocksize = 0;
1368 if (data->bsize)
1369 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
1370
1371 if (server->flags & NFS_MOUNT_VER3) {
1372 /* The VFS shouldn't apply the umask to mode bits. We will do
1373 * so ourselves when necessary.
1374 */
1375 sb->s_flags |= MS_POSIXACL;
1376 sb->s_time_gran = 1;
1377 }
1378
1379 sb->s_op = &nfs_sops;
1380 nfs_initialise_sb(sb);
1381}
1382
1383/*
1384 * Finish setting up a cloned NFS2/3 superblock
1385 */
1386static void nfs_clone_super(struct super_block *sb,
1387 const struct super_block *old_sb)
1388{
1389 struct nfs_server *server = NFS_SB(sb);
1390
1391 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1392 sb->s_blocksize = old_sb->s_blocksize;
1393 sb->s_maxbytes = old_sb->s_maxbytes;
1394
1395 if (server->flags & NFS_MOUNT_VER3) {
1396 /* The VFS shouldn't apply the umask to mode bits. We will do
1397 * so ourselves when necessary.
1398 */
1399 sb->s_flags |= MS_POSIXACL;
1400 sb->s_time_gran = 1;
1401 }
1402
1403 sb->s_op = old_sb->s_op;
1404 nfs_initialise_sb(sb);
1405}
1406
Trond Myklebust275a5d22007-05-16 16:53:28 -04001407#define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS)
1408
1409static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
1410{
1411 const struct nfs_server *a = s->s_fs_info;
1412 const struct rpc_clnt *clnt_a = a->client;
1413 const struct rpc_clnt *clnt_b = b->client;
1414
1415 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
1416 goto Ebusy;
1417 if (a->nfs_client != b->nfs_client)
1418 goto Ebusy;
1419 if (a->flags != b->flags)
1420 goto Ebusy;
1421 if (a->wsize != b->wsize)
1422 goto Ebusy;
1423 if (a->rsize != b->rsize)
1424 goto Ebusy;
1425 if (a->acregmin != b->acregmin)
1426 goto Ebusy;
1427 if (a->acregmax != b->acregmax)
1428 goto Ebusy;
1429 if (a->acdirmin != b->acdirmin)
1430 goto Ebusy;
1431 if (a->acdirmax != b->acdirmax)
1432 goto Ebusy;
1433 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
1434 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001435 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04001436Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001437 return 0;
1438}
1439
1440struct nfs_sb_mountdata {
1441 struct nfs_server *server;
1442 int mntflags;
1443};
1444
1445static int nfs_set_super(struct super_block *s, void *data)
1446{
1447 struct nfs_sb_mountdata *sb_mntdata = data;
1448 struct nfs_server *server = sb_mntdata->server;
1449 int ret;
1450
1451 s->s_flags = sb_mntdata->mntflags;
1452 s->s_fs_info = server;
1453 ret = set_anon_super(s, server);
1454 if (ret == 0)
1455 server->s_dev = s->s_dev;
1456 return ret;
1457}
1458
Chuck Leverfd00a8f2007-12-10 14:57:38 -05001459static int nfs_compare_super_address(struct nfs_server *server1,
1460 struct nfs_server *server2)
1461{
1462 struct sockaddr *sap1, *sap2;
1463
1464 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
1465 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
1466
1467 if (sap1->sa_family != sap2->sa_family)
1468 return 0;
1469
1470 switch (sap1->sa_family) {
1471 case AF_INET: {
1472 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
1473 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
1474 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
1475 return 0;
1476 if (sin1->sin_port != sin2->sin_port)
1477 return 0;
1478 break;
1479 }
1480 case AF_INET6: {
1481 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
1482 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
1483 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
1484 return 0;
1485 if (sin1->sin6_port != sin2->sin6_port)
1486 return 0;
1487 break;
1488 }
1489 default:
1490 return 0;
1491 }
1492
1493 return 1;
1494}
1495
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001496static int nfs_compare_super(struct super_block *sb, void *data)
1497{
1498 struct nfs_sb_mountdata *sb_mntdata = data;
1499 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
1500 int mntflags = sb_mntdata->mntflags;
1501
Chuck Leverfd00a8f2007-12-10 14:57:38 -05001502 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001503 return 0;
1504 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
1505 if (old->flags & NFS_MOUNT_UNSHARED)
1506 return 0;
1507 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
1508 return 0;
1509 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04001510}
1511
David Howells54ceac42006-08-22 20:06:13 -04001512static int nfs_get_sb(struct file_system_type *fs_type,
1513 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
1514{
1515 struct nfs_server *server = NULL;
1516 struct super_block *s;
1517 struct nfs_fh mntfh;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001518 struct nfs_parsed_mount_data data;
David Howells54ceac42006-08-22 20:06:13 -04001519 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001520 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001521 struct nfs_sb_mountdata sb_mntdata = {
1522 .mntflags = flags,
1523 };
David Howells54ceac42006-08-22 20:06:13 -04001524 int error;
1525
Eric Parisf9c3a382008-03-05 14:20:18 -05001526 security_init_mnt_opts(&data.lsm_opts);
1527
David Howells54ceac42006-08-22 20:06:13 -04001528 /* Validate the mount data */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001529 error = nfs_validate_mount_data(raw_data, &data, &mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04001530 if (error < 0)
Chuck Lever06559602007-07-01 12:12:35 -04001531 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001532
1533 /* Get a volume representation */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001534 server = nfs_create_server(&data, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001535 if (IS_ERR(server)) {
1536 error = PTR_ERR(server);
Chuck Lever06559602007-07-01 12:12:35 -04001537 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001538 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001539 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001540
Trond Myklebust75180df2007-05-16 16:53:28 -04001541 if (server->flags & NFS_MOUNT_UNSHARED)
1542 compare_super = NULL;
1543
David Howells54ceac42006-08-22 20:06:13 -04001544 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001545 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04001546 if (IS_ERR(s)) {
1547 error = PTR_ERR(s);
David Howells54ceac42006-08-22 20:06:13 -04001548 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04001549 }
1550
David Howells54ceac42006-08-22 20:06:13 -04001551 if (s->s_fs_info != server) {
1552 nfs_free_server(server);
1553 server = NULL;
David Howellsf7b422b2006-06-09 09:34:33 -04001554 }
David Howells54ceac42006-08-22 20:06:13 -04001555
1556 if (!s->s_root) {
1557 /* initial superblock/root creation */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001558 nfs_fill_super(s, &data);
David Howells54ceac42006-08-22 20:06:13 -04001559 }
1560
1561 mntroot = nfs_get_root(s, &mntfh);
1562 if (IS_ERR(mntroot)) {
1563 error = PTR_ERR(mntroot);
1564 goto error_splat_super;
1565 }
1566
Eric Parisf9c3a382008-03-05 14:20:18 -05001567 error = security_sb_set_mnt_opts(s, &data.lsm_opts);
1568 if (error)
1569 goto error_splat_root;
1570
David Howellsf7b422b2006-06-09 09:34:33 -04001571 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04001572 mnt->mnt_sb = s;
1573 mnt->mnt_root = mntroot;
Chuck Lever06559602007-07-01 12:12:35 -04001574 error = 0;
1575
1576out:
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001577 kfree(data.nfs_server.hostname);
Chuck Lever33832032007-12-10 14:59:13 -05001578 kfree(data.mount_server.hostname);
Eric Parisf9c3a382008-03-05 14:20:18 -05001579 security_free_mnt_opts(&data.lsm_opts);
Chuck Lever06559602007-07-01 12:12:35 -04001580 return error;
Trond Myklebust816724e2006-06-24 08:41:41 -04001581
David Howells54ceac42006-08-22 20:06:13 -04001582out_err_nosb:
1583 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04001584 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001585
Eric Parisf9c3a382008-03-05 14:20:18 -05001586error_splat_root:
1587 dput(mntroot);
David Howells54ceac42006-08-22 20:06:13 -04001588error_splat_super:
1589 up_write(&s->s_umount);
1590 deactivate_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04001591 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001592}
1593
David Howells54ceac42006-08-22 20:06:13 -04001594/*
1595 * Destroy an NFS2/3 superblock
1596 */
David Howellsf7b422b2006-06-09 09:34:33 -04001597static void nfs_kill_super(struct super_block *s)
1598{
1599 struct nfs_server *server = NFS_SB(s);
1600
1601 kill_anon_super(s);
David Howells54ceac42006-08-22 20:06:13 -04001602 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04001603}
1604
David Howells54ceac42006-08-22 20:06:13 -04001605/*
1606 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
1607 */
1608static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
1609 const char *dev_name, void *raw_data,
1610 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001611{
1612 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001613 struct super_block *s;
1614 struct nfs_server *server;
1615 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001616 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001617 struct nfs_sb_mountdata sb_mntdata = {
1618 .mntflags = flags,
1619 };
David Howells54ceac42006-08-22 20:06:13 -04001620 int error;
1621
1622 dprintk("--> nfs_xdev_get_sb()\n");
1623
1624 /* create a new volume representation */
1625 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1626 if (IS_ERR(server)) {
1627 error = PTR_ERR(server);
1628 goto out_err_noserver;
1629 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001630 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001631
Trond Myklebust75180df2007-05-16 16:53:28 -04001632 if (server->flags & NFS_MOUNT_UNSHARED)
1633 compare_super = NULL;
1634
David Howells54ceac42006-08-22 20:06:13 -04001635 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001636 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001637 if (IS_ERR(s)) {
1638 error = PTR_ERR(s);
1639 goto out_err_nosb;
1640 }
1641
1642 if (s->s_fs_info != server) {
1643 nfs_free_server(server);
1644 server = NULL;
1645 }
1646
1647 if (!s->s_root) {
1648 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001649 nfs_clone_super(s, data->sb);
1650 }
1651
1652 mntroot = nfs_get_root(s, data->fh);
1653 if (IS_ERR(mntroot)) {
1654 error = PTR_ERR(mntroot);
1655 goto error_splat_super;
1656 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05001657 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11001658 dput(mntroot);
1659 error = -ESTALE;
1660 goto error_splat_super;
1661 }
David Howells54ceac42006-08-22 20:06:13 -04001662
1663 s->s_flags |= MS_ACTIVE;
1664 mnt->mnt_sb = s;
1665 mnt->mnt_root = mntroot;
1666
Eric Parisf9c3a382008-03-05 14:20:18 -05001667 /* clone any lsm security options from the parent to the new sb */
1668 security_sb_clone_mnt_opts(data->sb, s);
1669
David Howells54ceac42006-08-22 20:06:13 -04001670 dprintk("<-- nfs_xdev_get_sb() = 0\n");
1671 return 0;
1672
1673out_err_nosb:
1674 nfs_free_server(server);
1675out_err_noserver:
1676 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
1677 return error;
1678
1679error_splat_super:
1680 up_write(&s->s_umount);
1681 deactivate_super(s);
1682 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
1683 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04001684}
1685
1686#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04001687
1688/*
1689 * Finish setting up a cloned NFS4 superblock
1690 */
1691static void nfs4_clone_super(struct super_block *sb,
1692 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04001693{
David Howells54ceac42006-08-22 20:06:13 -04001694 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1695 sb->s_blocksize = old_sb->s_blocksize;
1696 sb->s_maxbytes = old_sb->s_maxbytes;
1697 sb->s_time_gran = 1;
1698 sb->s_op = old_sb->s_op;
1699 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04001700}
1701
1702/*
1703 * Set up an NFS4 superblock
1704 */
David Howells54ceac42006-08-22 20:06:13 -04001705static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04001706{
David Howellsf7b422b2006-06-09 09:34:33 -04001707 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04001708 sb->s_op = &nfs4_sops;
David Howells54ceac42006-08-22 20:06:13 -04001709 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04001710}
1711
David Howells54ceac42006-08-22 20:06:13 -04001712/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04001713 * Validate NFSv4 mount options
1714 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001715static int nfs4_validate_mount_data(void *options,
1716 struct nfs_parsed_mount_data *args,
1717 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04001718{
Chuck Lever4c568012007-12-10 14:59:28 -05001719 struct sockaddr_in *ap;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001720 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001721 char *c;
1722
Russell Kingf16c9602007-11-16 22:13:24 +00001723 memset(args, 0, sizeof(*args));
1724
Chuck Leverf0768eb2007-07-01 12:13:01 -04001725 if (data == NULL)
1726 goto out_no_data;
1727
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001728 args->rsize = NFS_MAX_FILE_IO_SIZE;
1729 args->wsize = NFS_MAX_FILE_IO_SIZE;
1730 args->timeo = 600;
1731 args->retrans = 2;
1732 args->acregmin = 3;
1733 args->acregmax = 60;
1734 args->acdirmin = 30;
1735 args->acdirmax = 60;
Chuck Leverf22d6d72008-03-14 14:10:22 -04001736 args->nfs_server.port = NFS_PORT; /* 2049 unless user set port= */
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001737 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001738
Chuck Leverf0768eb2007-07-01 12:13:01 -04001739 switch (data->version) {
1740 case 1:
Chuck Lever4c568012007-12-10 14:59:28 -05001741 ap = (struct sockaddr_in *)&args->nfs_server.address;
1742 if (data->host_addrlen > sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001743 goto out_no_address;
Chuck Lever4c568012007-12-10 14:59:28 -05001744 if (data->host_addrlen == 0)
1745 goto out_no_address;
1746 args->nfs_server.addrlen = data->host_addrlen;
1747 if (copy_from_user(ap, data->host_addr, data->host_addrlen))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001748 return -EFAULT;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001749 if (!nfs_verify_server_address((struct sockaddr *)
1750 &args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001751 goto out_no_address;
1752
1753 switch (data->auth_flavourlen) {
1754 case 0:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001755 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001756 break;
1757 case 1:
Trond Myklebust20c71f52007-09-20 20:23:51 -04001758 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001759 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04001760 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001761 return -EFAULT;
1762 break;
1763 default:
1764 goto out_inval_auth;
1765 }
1766
1767 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
1768 if (IS_ERR(c))
1769 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001770 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001771
1772 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
1773 if (IS_ERR(c))
1774 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001775 args->nfs_server.export_path = c;
1776 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04001777
1778 c = strndup_user(data->client_addr.data, 16);
1779 if (IS_ERR(c))
1780 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001781 args->client_address = c;
1782
1783 /*
1784 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
1785 * can deal with.
1786 */
1787
1788 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
1789 args->rsize = data->rsize;
1790 args->wsize = data->wsize;
1791 args->timeo = data->timeo;
1792 args->retrans = data->retrans;
1793 args->acregmin = data->acregmin;
1794 args->acregmax = data->acregmax;
1795 args->acdirmin = data->acdirmin;
1796 args->acdirmax = data->acdirmax;
1797 args->nfs_server.protocol = data->proto;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001798
1799 break;
Chuck Lever80071222007-07-01 12:13:59 -04001800 default: {
1801 unsigned int len;
Chuck Lever80071222007-07-01 12:13:59 -04001802
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001803 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04001804 return -EINVAL;
1805
1806 if (!nfs_verify_server_address((struct sockaddr *)
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001807 &args->nfs_server.address))
Chuck Lever80071222007-07-01 12:13:59 -04001808 return -EINVAL;
Chuck Lever80071222007-07-01 12:13:59 -04001809
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001810 switch (args->auth_flavor_len) {
Chuck Lever80071222007-07-01 12:13:59 -04001811 case 0:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001812 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Lever80071222007-07-01 12:13:59 -04001813 break;
1814 case 1:
Chuck Lever80071222007-07-01 12:13:59 -04001815 break;
1816 default:
1817 goto out_inval_auth;
1818 }
1819
1820 /*
Chuck Lever80071222007-07-01 12:13:59 -04001821 * Split "dev_name" into "hostname:mntpath".
1822 */
1823 c = strchr(dev_name, ':');
1824 if (c == NULL)
1825 return -EINVAL;
1826 /* while calculating len, pretend ':' is '\0' */
1827 len = c - dev_name;
1828 if (len > NFS4_MAXNAMLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001829 return -ENAMETOOLONG;
Chuck Lever6a0ed1d2007-10-26 13:32:40 -04001830 /* N.B. caller will free nfs_server.hostname in all cases */
1831 args->nfs_server.hostname = kstrndup(dev_name, len, GFP_KERNEL);
Chuck Lever80071222007-07-01 12:13:59 -04001832
1833 c++; /* step over the ':' */
1834 len = strlen(c);
1835 if (len > NFS4_MAXPATHLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001836 return -ENAMETOOLONG;
Chuck Lever6a0ed1d2007-10-26 13:32:40 -04001837 args->nfs_server.export_path = kstrndup(c, len, GFP_KERNEL);
Chuck Lever80071222007-07-01 12:13:59 -04001838
Chuck Lever6a0ed1d2007-10-26 13:32:40 -04001839 dprintk("NFS: MNTPATH: '%s'\n", args->nfs_server.export_path);
Chuck Lever80071222007-07-01 12:13:59 -04001840
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001841 if (args->client_address == NULL)
Jeff Layton0a87cf12007-07-18 11:28:43 -04001842 goto out_no_client_address;
1843
Chuck Lever80071222007-07-01 12:13:59 -04001844 break;
1845 }
Chuck Leverf0768eb2007-07-01 12:13:01 -04001846 }
1847
1848 return 0;
1849
1850out_no_data:
1851 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
1852 return -EINVAL;
1853
1854out_inval_auth:
1855 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
1856 data->auth_flavourlen);
1857 return -EINVAL;
1858
1859out_no_address:
1860 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
1861 return -EINVAL;
Jeff Layton0a87cf12007-07-18 11:28:43 -04001862
1863out_no_client_address:
1864 dfprintk(MOUNT, "NFS4: mount program didn't pass callback address\n");
1865 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001866}
1867
1868/*
David Howells54ceac42006-08-22 20:06:13 -04001869 * Get the superblock for an NFS4 mountpoint
1870 */
Trond Myklebust816724e2006-06-24 08:41:41 -04001871static int nfs4_get_sb(struct file_system_type *fs_type,
1872 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001873{
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001874 struct nfs_parsed_mount_data data;
David Howells54ceac42006-08-22 20:06:13 -04001875 struct super_block *s;
1876 struct nfs_server *server;
David Howells54ceac42006-08-22 20:06:13 -04001877 struct nfs_fh mntfh;
1878 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001879 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001880 struct nfs_sb_mountdata sb_mntdata = {
1881 .mntflags = flags,
1882 };
David Howells54ceac42006-08-22 20:06:13 -04001883 int error;
David Howellsf7b422b2006-06-09 09:34:33 -04001884
Eric Parisf9c3a382008-03-05 14:20:18 -05001885 security_init_mnt_opts(&data.lsm_opts);
1886
Chuck Leverf0768eb2007-07-01 12:13:01 -04001887 /* Validate the mount data */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001888 error = nfs4_validate_mount_data(raw_data, &data, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04001889 if (error < 0)
1890 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001891
David Howells54ceac42006-08-22 20:06:13 -04001892 /* Get a volume representation */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001893 server = nfs4_create_server(&data, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001894 if (IS_ERR(server)) {
1895 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04001896 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001897 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001898 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04001899
Trond Myklebust75180df2007-05-16 16:53:28 -04001900 if (server->flags & NFS4_MOUNT_UNSHARED)
1901 compare_super = NULL;
1902
David Howells54ceac42006-08-22 20:06:13 -04001903 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001904 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04001905 if (IS_ERR(s)) {
1906 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04001907 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04001908 }
1909
Trond Myklebust5dd31772006-08-24 01:03:05 -04001910 if (s->s_fs_info != server) {
1911 nfs_free_server(server);
1912 server = NULL;
1913 }
1914
David Howells54ceac42006-08-22 20:06:13 -04001915 if (!s->s_root) {
1916 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001917 nfs4_fill_super(s);
Trond Myklebust816724e2006-06-24 08:41:41 -04001918 }
David Howellsf7b422b2006-06-09 09:34:33 -04001919
David Howells54ceac42006-08-22 20:06:13 -04001920 mntroot = nfs4_get_root(s, &mntfh);
1921 if (IS_ERR(mntroot)) {
1922 error = PTR_ERR(mntroot);
1923 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04001924 }
David Howells54ceac42006-08-22 20:06:13 -04001925
David Howellsf7b422b2006-06-09 09:34:33 -04001926 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04001927 mnt->mnt_sb = s;
1928 mnt->mnt_root = mntroot;
Chuck Lever29eb9812007-07-01 12:12:30 -04001929 error = 0;
David Howells54ceac42006-08-22 20:06:13 -04001930
Chuck Lever29eb9812007-07-01 12:12:30 -04001931out:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001932 kfree(data.client_address);
1933 kfree(data.nfs_server.export_path);
1934 kfree(data.nfs_server.hostname);
Eric Parisf9c3a382008-03-05 14:20:18 -05001935 security_free_mnt_opts(&data.lsm_opts);
Trond Myklebust816724e2006-06-24 08:41:41 -04001936 return error;
David Howells54ceac42006-08-22 20:06:13 -04001937
Chuck Lever29eb9812007-07-01 12:12:30 -04001938out_free:
1939 nfs_free_server(server);
1940 goto out;
1941
David Howells54ceac42006-08-22 20:06:13 -04001942error_splat_super:
1943 up_write(&s->s_umount);
1944 deactivate_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04001945 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001946}
1947
1948static void nfs4_kill_super(struct super_block *sb)
1949{
1950 struct nfs_server *server = NFS_SB(sb);
1951
1952 nfs_return_all_delegations(sb);
1953 kill_anon_super(sb);
1954
1955 nfs4_renewd_prepare_shutdown(server);
David Howells54ceac42006-08-22 20:06:13 -04001956 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04001957}
1958
1959/*
David Howells54ceac42006-08-22 20:06:13 -04001960 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04001961 */
David Howells54ceac42006-08-22 20:06:13 -04001962static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
1963 const char *dev_name, void *raw_data,
1964 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001965{
1966 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001967 struct super_block *s;
1968 struct nfs_server *server;
1969 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001970 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001971 struct nfs_sb_mountdata sb_mntdata = {
1972 .mntflags = flags,
1973 };
David Howells54ceac42006-08-22 20:06:13 -04001974 int error;
1975
1976 dprintk("--> nfs4_xdev_get_sb()\n");
1977
1978 /* create a new volume representation */
1979 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1980 if (IS_ERR(server)) {
1981 error = PTR_ERR(server);
1982 goto out_err_noserver;
1983 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001984 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001985
Trond Myklebust75180df2007-05-16 16:53:28 -04001986 if (server->flags & NFS4_MOUNT_UNSHARED)
1987 compare_super = NULL;
1988
David Howells54ceac42006-08-22 20:06:13 -04001989 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001990 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001991 if (IS_ERR(s)) {
1992 error = PTR_ERR(s);
1993 goto out_err_nosb;
1994 }
1995
1996 if (s->s_fs_info != server) {
1997 nfs_free_server(server);
1998 server = NULL;
1999 }
2000
2001 if (!s->s_root) {
2002 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002003 nfs4_clone_super(s, data->sb);
2004 }
2005
2006 mntroot = nfs4_get_root(s, data->fh);
2007 if (IS_ERR(mntroot)) {
2008 error = PTR_ERR(mntroot);
2009 goto error_splat_super;
2010 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002011 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2012 dput(mntroot);
2013 error = -ESTALE;
2014 goto error_splat_super;
2015 }
David Howells54ceac42006-08-22 20:06:13 -04002016
2017 s->s_flags |= MS_ACTIVE;
2018 mnt->mnt_sb = s;
2019 mnt->mnt_root = mntroot;
2020
2021 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
2022 return 0;
2023
2024out_err_nosb:
2025 nfs_free_server(server);
2026out_err_noserver:
2027 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
2028 return error;
2029
2030error_splat_super:
2031 up_write(&s->s_umount);
2032 deactivate_super(s);
2033 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
2034 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002035}
2036
David Howells54ceac42006-08-22 20:06:13 -04002037/*
2038 * Create an NFS4 server record on referral traversal
2039 */
2040static int nfs4_referral_get_sb(struct file_system_type *fs_type, int flags,
2041 const char *dev_name, void *raw_data,
2042 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04002043{
2044 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04002045 struct super_block *s;
2046 struct nfs_server *server;
2047 struct dentry *mntroot;
2048 struct nfs_fh mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04002049 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002050 struct nfs_sb_mountdata sb_mntdata = {
2051 .mntflags = flags,
2052 };
David Howells54ceac42006-08-22 20:06:13 -04002053 int error;
2054
2055 dprintk("--> nfs4_referral_get_sb()\n");
2056
2057 /* create a new volume representation */
2058 server = nfs4_create_referral_server(data, &mntfh);
2059 if (IS_ERR(server)) {
2060 error = PTR_ERR(server);
2061 goto out_err_noserver;
2062 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002063 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04002064
Trond Myklebust75180df2007-05-16 16:53:28 -04002065 if (server->flags & NFS4_MOUNT_UNSHARED)
2066 compare_super = NULL;
2067
David Howells54ceac42006-08-22 20:06:13 -04002068 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04002069 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04002070 if (IS_ERR(s)) {
2071 error = PTR_ERR(s);
2072 goto out_err_nosb;
2073 }
2074
2075 if (s->s_fs_info != server) {
2076 nfs_free_server(server);
2077 server = NULL;
2078 }
2079
2080 if (!s->s_root) {
2081 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04002082 nfs4_fill_super(s);
2083 }
2084
Trond Myklebustf2d0d852007-02-02 14:46:09 -08002085 mntroot = nfs4_get_root(s, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04002086 if (IS_ERR(mntroot)) {
2087 error = PTR_ERR(mntroot);
2088 goto error_splat_super;
2089 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05002090 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
2091 dput(mntroot);
2092 error = -ESTALE;
2093 goto error_splat_super;
2094 }
David Howells54ceac42006-08-22 20:06:13 -04002095
2096 s->s_flags |= MS_ACTIVE;
2097 mnt->mnt_sb = s;
2098 mnt->mnt_root = mntroot;
2099
2100 dprintk("<-- nfs4_referral_get_sb() = 0\n");
2101 return 0;
2102
2103out_err_nosb:
2104 nfs_free_server(server);
2105out_err_noserver:
2106 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
2107 return error;
2108
2109error_splat_super:
2110 up_write(&s->s_umount);
2111 deactivate_super(s);
2112 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
2113 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04002114}
2115
David Howells54ceac42006-08-22 20:06:13 -04002116#endif /* CONFIG_NFS_V4 */