blob: c3d8fcf385238650ec63c157610fb08eea3d4862 [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 */
92 Opt_sec, Opt_proto, Opt_mountproto,
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 Lever0ac83772007-09-11 18:01:04 -0400151 { Opt_userspace, "mounthost=%s" },
152 { 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
193 { Opt_sec_err, NULL }
194};
195
196
David Howellsf7b422b2006-06-09 09:34:33 -0400197static void nfs_umount_begin(struct vfsmount *, int);
Trond Myklebust816724e2006-06-24 08:41:41 -0400198static int nfs_statfs(struct dentry *, struct kstatfs *);
David Howellsf7b422b2006-06-09 09:34:33 -0400199static int nfs_show_options(struct seq_file *, struct vfsmount *);
200static int nfs_show_stats(struct seq_file *, struct vfsmount *);
Trond Myklebust816724e2006-06-24 08:41:41 -0400201static int nfs_get_sb(struct file_system_type *, int, const char *, void *, struct vfsmount *);
David Howells54ceac42006-08-22 20:06:13 -0400202static int nfs_xdev_get_sb(struct file_system_type *fs_type,
Trond Myklebust816724e2006-06-24 08:41:41 -0400203 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400204static void nfs_kill_super(struct super_block *);
Steve Dicksonef818a22007-11-08 04:05:04 -0500205static void nfs_put_super(struct super_block *);
David Howellsf7b422b2006-06-09 09:34:33 -0400206
207static struct file_system_type nfs_fs_type = {
208 .owner = THIS_MODULE,
209 .name = "nfs",
210 .get_sb = nfs_get_sb,
211 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700212 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400213};
214
David Howells54ceac42006-08-22 20:06:13 -0400215struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400216 .owner = THIS_MODULE,
217 .name = "nfs",
David Howells54ceac42006-08-22 20:06:13 -0400218 .get_sb = nfs_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400219 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700220 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400221};
222
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800223static const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400224 .alloc_inode = nfs_alloc_inode,
225 .destroy_inode = nfs_destroy_inode,
226 .write_inode = nfs_write_inode,
Steve Dicksonef818a22007-11-08 04:05:04 -0500227 .put_super = nfs_put_super,
David Howellsf7b422b2006-06-09 09:34:33 -0400228 .statfs = nfs_statfs,
229 .clear_inode = nfs_clear_inode,
230 .umount_begin = nfs_umount_begin,
231 .show_options = nfs_show_options,
232 .show_stats = nfs_show_stats,
233};
234
235#ifdef CONFIG_NFS_V4
Trond Myklebust816724e2006-06-24 08:41:41 -0400236static int nfs4_get_sb(struct file_system_type *fs_type,
237 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howells54ceac42006-08-22 20:06:13 -0400238static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
239 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
240static int nfs4_referral_get_sb(struct file_system_type *fs_type,
241 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400242static void nfs4_kill_super(struct super_block *sb);
243
244static struct file_system_type nfs4_fs_type = {
245 .owner = THIS_MODULE,
246 .name = "nfs4",
247 .get_sb = nfs4_get_sb,
248 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700249 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400250};
251
David Howells54ceac42006-08-22 20:06:13 -0400252struct file_system_type nfs4_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400253 .owner = THIS_MODULE,
254 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400255 .get_sb = nfs4_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400256 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700257 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400258};
259
David Howells54ceac42006-08-22 20:06:13 -0400260struct file_system_type nfs4_referral_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400261 .owner = THIS_MODULE,
262 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400263 .get_sb = nfs4_referral_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400264 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700265 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400266};
267
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800268static const struct super_operations nfs4_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400269 .alloc_inode = nfs_alloc_inode,
270 .destroy_inode = nfs_destroy_inode,
271 .write_inode = nfs_write_inode,
272 .statfs = nfs_statfs,
273 .clear_inode = nfs4_clear_inode,
274 .umount_begin = nfs_umount_begin,
275 .show_options = nfs_show_options,
276 .show_stats = nfs_show_stats,
277};
278#endif
279
Rusty Russell8e1f9362007-07-17 04:03:17 -0700280static struct shrinker acl_shrinker = {
281 .shrink = nfs_access_cache_shrinker,
282 .seeks = DEFAULT_SEEKS,
283};
Trond Myklebust979df722006-07-25 11:28:19 -0400284
David Howellsf7b422b2006-06-09 09:34:33 -0400285/*
286 * Register the NFS filesystems
287 */
288int __init register_nfs_fs(void)
289{
290 int ret;
291
292 ret = register_filesystem(&nfs_fs_type);
293 if (ret < 0)
294 goto error_0;
295
David Howellsf7b422b2006-06-09 09:34:33 -0400296 ret = nfs_register_sysctl();
297 if (ret < 0)
298 goto error_1;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800299#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400300 ret = register_filesystem(&nfs4_fs_type);
301 if (ret < 0)
302 goto error_2;
303#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700304 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400305 return 0;
306
307#ifdef CONFIG_NFS_V4
308error_2:
309 nfs_unregister_sysctl();
Peter Zijlstra89a09142007-03-16 13:38:26 -0800310#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400311error_1:
312 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400313error_0:
314 return ret;
315}
316
317/*
318 * Unregister the NFS filesystems
319 */
320void __exit unregister_nfs_fs(void)
321{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700322 unregister_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400323#ifdef CONFIG_NFS_V4
324 unregister_filesystem(&nfs4_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400325#endif
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700326 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400327 unregister_filesystem(&nfs_fs_type);
328}
329
Steve Dicksonef818a22007-11-08 04:05:04 -0500330void nfs_sb_active(struct nfs_server *server)
331{
332 atomic_inc(&server->active);
333}
334
335void nfs_sb_deactive(struct nfs_server *server)
336{
337 if (atomic_dec_and_test(&server->active))
338 wake_up(&server->active_wq);
339}
340
341static void nfs_put_super(struct super_block *sb)
342{
343 struct nfs_server *server = NFS_SB(sb);
344 /*
345 * Make sure there are no outstanding ops to this server.
346 * If so, wait for them to finish before allowing the
347 * unmount to continue.
348 */
349 wait_event(server->active_wq, atomic_read(&server->active) == 0);
350}
351
David Howellsf7b422b2006-06-09 09:34:33 -0400352/*
353 * Deliver file system statistics to userspace
354 */
Trond Myklebust816724e2006-06-24 08:41:41 -0400355static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400356{
David Howells0c7d90c2006-08-22 20:06:10 -0400357 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400358 unsigned char blockbits;
359 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400360 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
David Howellsf7b422b2006-06-09 09:34:33 -0400361 struct nfs_fattr fattr;
362 struct nfs_fsstat res = {
363 .fattr = &fattr,
364 };
365 int error;
366
367 lock_kernel();
368
David Howells8fa5c002006-08-22 20:06:12 -0400369 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
David Howellsf7b422b2006-06-09 09:34:33 -0400370 if (error < 0)
371 goto out_err;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700372 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400373
374 /*
375 * Current versions of glibc do not correctly handle the
376 * case where f_frsize != f_bsize. Eventually we want to
377 * report the value of wtmult in this field.
378 */
David Howells0c7d90c2006-08-22 20:06:10 -0400379 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400380
381 /*
382 * On most *nix systems, f_blocks, f_bfree, and f_bavail
383 * are reported in units of f_frsize. Linux hasn't had
384 * an f_frsize field in its statfs struct until recently,
385 * thus historically Linux's sys_statfs reports these
386 * fields in units of f_bsize.
387 */
David Howells0c7d90c2006-08-22 20:06:10 -0400388 buf->f_bsize = dentry->d_sb->s_blocksize;
389 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400390 blockres = (1 << blockbits) - 1;
391 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
392 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
393 buf->f_bavail = (res.abytes + blockres) >> blockbits;
394
395 buf->f_files = res.tfiles;
396 buf->f_ffree = res.afiles;
397
398 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700399
David Howellsf7b422b2006-06-09 09:34:33 -0400400 unlock_kernel();
401 return 0;
402
403 out_err:
404 dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700405 unlock_kernel();
406 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400407}
408
David Howells7d4e2742006-08-22 20:06:07 -0400409/*
410 * Map the security flavour number to a name
411 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400412static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
413{
David Howells7d4e2742006-08-22 20:06:07 -0400414 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400415 rpc_authflavor_t flavour;
416 const char *str;
417 } sec_flavours[] = {
418 { RPC_AUTH_NULL, "null" },
419 { RPC_AUTH_UNIX, "sys" },
420 { RPC_AUTH_GSS_KRB5, "krb5" },
421 { RPC_AUTH_GSS_KRB5I, "krb5i" },
422 { RPC_AUTH_GSS_KRB5P, "krb5p" },
423 { RPC_AUTH_GSS_LKEY, "lkey" },
424 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
425 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
426 { RPC_AUTH_GSS_SPKM, "spkm" },
427 { RPC_AUTH_GSS_SPKMI, "spkmi" },
428 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400429 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400430 };
431 int i;
432
Chuck Lever4d81cd12007-07-01 12:12:40 -0400433 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400434 if (sec_flavours[i].flavour == flavour)
435 break;
436 }
437 return sec_flavours[i].str;
438}
439
David Howellsf7b422b2006-06-09 09:34:33 -0400440/*
441 * Describe the mount options in force on this server representation
442 */
443static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
444{
David Howells509de812006-08-22 20:06:11 -0400445 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400446 int flag;
David Howells509de812006-08-22 20:06:11 -0400447 const char *str;
448 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400449 } nfs_info[] = {
450 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Leverbcf35612007-09-24 15:39:55 -0400451 { NFS_MOUNT_INTR, ",intr", ",nointr" },
David Howellsf7b422b2006-06-09 09:34:33 -0400452 { NFS_MOUNT_NOCTO, ",nocto", "" },
453 { NFS_MOUNT_NOAC, ",noac", "" },
454 { NFS_MOUNT_NONLM, ",nolock", "" },
455 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400456 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400457 { NFS_MOUNT_UNSHARED, ",nosharecache", ""},
David Howellsf7b422b2006-06-09 09:34:33 -0400458 { 0, NULL, NULL }
459 };
David Howells509de812006-08-22 20:06:11 -0400460 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400461 struct nfs_client *clp = nfss->nfs_client;
David Howellsf7b422b2006-06-09 09:34:33 -0400462
David Howells8fa5c002006-08-22 20:06:12 -0400463 seq_printf(m, ",vers=%d", clp->rpc_ops->version);
David Howellsf7b422b2006-06-09 09:34:33 -0400464 seq_printf(m, ",rsize=%d", nfss->rsize);
465 seq_printf(m, ",wsize=%d", nfss->wsize);
466 if (nfss->acregmin != 3*HZ || showdefaults)
467 seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
468 if (nfss->acregmax != 60*HZ || showdefaults)
469 seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
470 if (nfss->acdirmin != 30*HZ || showdefaults)
471 seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
472 if (nfss->acdirmax != 60*HZ || showdefaults)
473 seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
474 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
475 if (nfss->flags & nfs_infop->flag)
476 seq_puts(m, nfs_infop->str);
477 else
478 seq_puts(m, nfs_infop->nostr);
479 }
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400480 seq_printf(m, ",proto=%s",
481 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_PROTO));
David Howells5006a762006-08-22 20:06:12 -0400482 seq_printf(m, ",timeo=%lu", 10U * clp->retrans_timeo / HZ);
483 seq_printf(m, ",retrans=%u", clp->retrans_count);
Trond Myklebust81039f12006-06-09 09:34:34 -0400484 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
David Howellsf7b422b2006-06-09 09:34:33 -0400485}
486
487/*
488 * Describe the mount options on this VFS mountpoint
489 */
490static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
491{
492 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
493
494 nfs_show_mount_options(m, nfss, 0);
495
Chuck Lever5d8515c2007-12-10 14:57:16 -0500496 seq_printf(m, ",addr=%s",
497 rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient,
498 RPC_DISPLAY_ADDR));
David Howellsf7b422b2006-06-09 09:34:33 -0400499
500 return 0;
501}
502
503/*
504 * Present statistical information for this VFS mountpoint
505 */
506static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
507{
508 int i, cpu;
509 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
510 struct rpc_auth *auth = nfss->client->cl_auth;
511 struct nfs_iostats totals = { };
512
513 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
514
515 /*
516 * Display all mount option settings
517 */
518 seq_printf(m, "\n\topts:\t");
519 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
520 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
521 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
522 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
523 nfs_show_mount_options(m, nfss, 1);
524
525 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
526
527 seq_printf(m, "\n\tcaps:\t");
528 seq_printf(m, "caps=0x%x", nfss->caps);
529 seq_printf(m, ",wtmult=%d", nfss->wtmult);
530 seq_printf(m, ",dtsize=%d", nfss->dtsize);
531 seq_printf(m, ",bsize=%d", nfss->bsize);
532 seq_printf(m, ",namelen=%d", nfss->namelen);
533
534#ifdef CONFIG_NFS_V4
Trond Myklebust40c553192007-12-14 14:56:07 -0500535 if (nfss->nfs_client->rpc_ops->version == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400536 seq_printf(m, "\n\tnfsv4:\t");
537 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
538 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
539 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
540 }
541#endif
542
543 /*
544 * Display security flavor in effect for this mount
545 */
546 seq_printf(m, "\n\tsec:\tflavor=%d", auth->au_ops->au_flavor);
547 if (auth->au_flavor)
548 seq_printf(m, ",pseudoflavor=%d", auth->au_flavor);
549
550 /*
551 * Display superblock I/O counters
552 */
553 for_each_possible_cpu(cpu) {
554 struct nfs_iostats *stats;
555
556 preempt_disable();
557 stats = per_cpu_ptr(nfss->io_stats, cpu);
558
559 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
560 totals.events[i] += stats->events[i];
561 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
562 totals.bytes[i] += stats->bytes[i];
563
564 preempt_enable();
565 }
566
567 seq_printf(m, "\n\tevents:\t");
568 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
569 seq_printf(m, "%lu ", totals.events[i]);
570 seq_printf(m, "\n\tbytes:\t");
571 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
572 seq_printf(m, "%Lu ", totals.bytes[i]);
573 seq_printf(m, "\n");
574
575 rpc_print_iostats(m, nfss->client);
576
577 return 0;
578}
579
580/*
581 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400582 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400583 */
584static void nfs_umount_begin(struct vfsmount *vfsmnt, int flags)
585{
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400586 struct nfs_server *server = NFS_SB(vfsmnt->mnt_sb);
587 struct rpc_clnt *rpc;
588
David Howellsf7b422b2006-06-09 09:34:33 -0400589 shrink_submounts(vfsmnt, &nfs_automount_list);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400590
591 if (!(flags & MNT_FORCE))
592 return;
593 /* -EIO all pending I/O */
594 rpc = server->client_acl;
595 if (!IS_ERR(rpc))
596 rpc_killall_tasks(rpc);
597 rpc = server->client;
598 if (!IS_ERR(rpc))
599 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400600}
601
602/*
Chuck Leverfc50d582007-07-01 12:12:46 -0400603 * Sanity-check a server address provided by the mount command
604 */
605static int nfs_verify_server_address(struct sockaddr *addr)
606{
607 switch (addr->sa_family) {
608 case AF_INET: {
609 struct sockaddr_in *sa = (struct sockaddr_in *) addr;
610 if (sa->sin_addr.s_addr != INADDR_ANY)
611 return 1;
612 break;
613 }
614 }
615
616 return 0;
617}
618
619/*
Chuck Leverbf0fd762007-07-01 12:13:44 -0400620 * Error-check and convert a string of mount options from user space into
621 * a data structure
622 */
623static int nfs_parse_mount_options(char *raw,
624 struct nfs_parsed_mount_data *mnt)
625{
626 char *p, *string;
627
628 if (!raw) {
629 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
630 return 1;
631 }
632 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
633
634 while ((p = strsep(&raw, ",")) != NULL) {
635 substring_t args[MAX_OPT_ARGS];
636 int option, token;
637
638 if (!*p)
639 continue;
640
641 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
642
643 token = match_token(p, nfs_mount_option_tokens, args);
644 switch (token) {
645 case Opt_soft:
646 mnt->flags |= NFS_MOUNT_SOFT;
647 break;
648 case Opt_hard:
649 mnt->flags &= ~NFS_MOUNT_SOFT;
650 break;
651 case Opt_intr:
652 mnt->flags |= NFS_MOUNT_INTR;
653 break;
654 case Opt_nointr:
655 mnt->flags &= ~NFS_MOUNT_INTR;
656 break;
657 case Opt_posix:
658 mnt->flags |= NFS_MOUNT_POSIX;
659 break;
660 case Opt_noposix:
661 mnt->flags &= ~NFS_MOUNT_POSIX;
662 break;
663 case Opt_cto:
664 mnt->flags &= ~NFS_MOUNT_NOCTO;
665 break;
666 case Opt_nocto:
667 mnt->flags |= NFS_MOUNT_NOCTO;
668 break;
669 case Opt_ac:
670 mnt->flags &= ~NFS_MOUNT_NOAC;
671 break;
672 case Opt_noac:
673 mnt->flags |= NFS_MOUNT_NOAC;
674 break;
675 case Opt_lock:
676 mnt->flags &= ~NFS_MOUNT_NONLM;
677 break;
678 case Opt_nolock:
679 mnt->flags |= NFS_MOUNT_NONLM;
680 break;
681 case Opt_v2:
682 mnt->flags &= ~NFS_MOUNT_VER3;
683 break;
684 case Opt_v3:
685 mnt->flags |= NFS_MOUNT_VER3;
686 break;
687 case Opt_udp:
688 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400689 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400690 mnt->timeo = 7;
691 mnt->retrans = 5;
692 break;
693 case Opt_tcp:
694 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400695 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400696 mnt->timeo = 600;
697 mnt->retrans = 2;
698 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400699 case Opt_rdma:
700 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
701 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
702 mnt->timeo = 600;
703 mnt->retrans = 2;
704 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400705 case Opt_acl:
706 mnt->flags &= ~NFS_MOUNT_NOACL;
707 break;
708 case Opt_noacl:
709 mnt->flags |= NFS_MOUNT_NOACL;
710 break;
711 case Opt_rdirplus:
712 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
713 break;
714 case Opt_nordirplus:
715 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
716 break;
Trond Myklebust75180df2007-05-16 16:53:28 -0400717 case Opt_sharecache:
718 mnt->flags &= ~NFS_MOUNT_UNSHARED;
719 break;
720 case Opt_nosharecache:
721 mnt->flags |= NFS_MOUNT_UNSHARED;
722 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400723
724 case Opt_port:
725 if (match_int(args, &option))
726 return 0;
727 if (option < 0 || option > 65535)
728 return 0;
Al Viro410896442007-07-22 10:59:06 +0100729 mnt->nfs_server.address.sin_port = htons(option);
Chuck Leverbf0fd762007-07-01 12:13:44 -0400730 break;
731 case Opt_rsize:
732 if (match_int(args, &mnt->rsize))
733 return 0;
734 break;
735 case Opt_wsize:
736 if (match_int(args, &mnt->wsize))
737 return 0;
738 break;
739 case Opt_bsize:
740 if (match_int(args, &option))
741 return 0;
742 if (option < 0)
743 return 0;
744 mnt->bsize = option;
745 break;
746 case Opt_timeo:
747 if (match_int(args, &mnt->timeo))
748 return 0;
749 break;
750 case Opt_retrans:
751 if (match_int(args, &mnt->retrans))
752 return 0;
753 break;
754 case Opt_acregmin:
755 if (match_int(args, &mnt->acregmin))
756 return 0;
757 break;
758 case Opt_acregmax:
759 if (match_int(args, &mnt->acregmax))
760 return 0;
761 break;
762 case Opt_acdirmin:
763 if (match_int(args, &mnt->acdirmin))
764 return 0;
765 break;
766 case Opt_acdirmax:
767 if (match_int(args, &mnt->acdirmax))
768 return 0;
769 break;
770 case Opt_actimeo:
771 if (match_int(args, &option))
772 return 0;
773 if (option < 0)
774 return 0;
775 mnt->acregmin =
776 mnt->acregmax =
777 mnt->acdirmin =
778 mnt->acdirmax = option;
779 break;
780 case Opt_namelen:
781 if (match_int(args, &mnt->namlen))
782 return 0;
783 break;
784 case Opt_mountport:
785 if (match_int(args, &option))
786 return 0;
787 if (option < 0 || option > 65535)
788 return 0;
789 mnt->mount_server.port = option;
790 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400791 case Opt_mountvers:
792 if (match_int(args, &option))
793 return 0;
794 if (option < 0)
795 return 0;
796 mnt->mount_server.version = option;
797 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400798 case Opt_nfsvers:
799 if (match_int(args, &option))
800 return 0;
801 switch (option) {
802 case 2:
803 mnt->flags &= ~NFS_MOUNT_VER3;
804 break;
805 case 3:
806 mnt->flags |= NFS_MOUNT_VER3;
807 break;
808 default:
809 goto out_unrec_vers;
810 }
811 break;
812
813 case Opt_sec:
814 string = match_strdup(args);
815 if (string == NULL)
816 goto out_nomem;
817 token = match_token(string, nfs_secflavor_tokens, args);
818 kfree(string);
819
820 /*
821 * The flags setting is for v2/v3. The flavor_len
822 * setting is for v4. v2/v3 also need to know the
823 * difference between NULL and UNIX.
824 */
825 switch (token) {
826 case Opt_sec_none:
827 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
828 mnt->auth_flavor_len = 0;
829 mnt->auth_flavors[0] = RPC_AUTH_NULL;
830 break;
831 case Opt_sec_sys:
832 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
833 mnt->auth_flavor_len = 0;
834 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
835 break;
836 case Opt_sec_krb5:
837 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
838 mnt->auth_flavor_len = 1;
839 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
840 break;
841 case Opt_sec_krb5i:
842 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
843 mnt->auth_flavor_len = 1;
844 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
845 break;
846 case Opt_sec_krb5p:
847 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
848 mnt->auth_flavor_len = 1;
849 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
850 break;
851 case Opt_sec_lkey:
852 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
853 mnt->auth_flavor_len = 1;
854 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
855 break;
856 case Opt_sec_lkeyi:
857 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
858 mnt->auth_flavor_len = 1;
859 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
860 break;
861 case Opt_sec_lkeyp:
862 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
863 mnt->auth_flavor_len = 1;
864 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
865 break;
866 case Opt_sec_spkm:
867 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
868 mnt->auth_flavor_len = 1;
869 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
870 break;
871 case Opt_sec_spkmi:
872 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
873 mnt->auth_flavor_len = 1;
874 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
875 break;
876 case Opt_sec_spkmp:
877 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
878 mnt->auth_flavor_len = 1;
879 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
880 break;
881 default:
882 goto out_unrec_sec;
883 }
884 break;
885 case Opt_proto:
886 string = match_strdup(args);
887 if (string == NULL)
888 goto out_nomem;
889 token = match_token(string,
890 nfs_xprt_protocol_tokens, args);
891 kfree(string);
892
893 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400894 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400895 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400896 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400897 mnt->timeo = 7;
898 mnt->retrans = 5;
899 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400900 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400901 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400902 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400903 mnt->timeo = 600;
904 mnt->retrans = 2;
905 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400906 case Opt_xprt_rdma:
907 /* vector side protocols to TCP */
908 mnt->flags |= NFS_MOUNT_TCP;
909 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
910 mnt->timeo = 600;
911 mnt->retrans = 2;
912 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400913 default:
914 goto out_unrec_xprt;
915 }
916 break;
917 case Opt_mountproto:
918 string = match_strdup(args);
919 if (string == NULL)
920 goto out_nomem;
921 token = match_token(string,
922 nfs_xprt_protocol_tokens, args);
923 kfree(string);
924
925 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400926 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400927 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400928 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400929 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400930 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400931 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400932 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -0400933 default:
934 goto out_unrec_xprt;
935 }
936 break;
937 case Opt_addr:
938 string = match_strdup(args);
939 if (string == NULL)
940 goto out_nomem;
941 mnt->nfs_server.address.sin_family = AF_INET;
942 mnt->nfs_server.address.sin_addr.s_addr =
943 in_aton(string);
944 kfree(string);
945 break;
946 case Opt_clientaddr:
947 string = match_strdup(args);
948 if (string == NULL)
949 goto out_nomem;
950 mnt->client_address = string;
951 break;
Chuck Lever0ac83772007-09-11 18:01:04 -0400952 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400953 string = match_strdup(args);
954 if (string == NULL)
955 goto out_nomem;
956 mnt->mount_server.address.sin_family = AF_INET;
957 mnt->mount_server.address.sin_addr.s_addr =
958 in_aton(string);
959 kfree(string);
960 break;
961
962 case Opt_userspace:
963 case Opt_deprecated:
964 break;
965
966 default:
967 goto out_unknown;
968 }
969 }
970
971 return 1;
972
973out_nomem:
974 printk(KERN_INFO "NFS: not enough memory to parse option\n");
975 return 0;
976
977out_unrec_vers:
978 printk(KERN_INFO "NFS: unrecognized NFS version number\n");
979 return 0;
980
981out_unrec_xprt:
982 printk(KERN_INFO "NFS: unrecognized transport protocol\n");
983 return 0;
984
985out_unrec_sec:
986 printk(KERN_INFO "NFS: unrecognized security flavor\n");
987 return 0;
988
989out_unknown:
990 printk(KERN_INFO "NFS: unknown mount option: %s\n", p);
991 return 0;
992}
993
994/*
Chuck Lever0076d7b2007-07-01 12:13:49 -0400995 * Use the remote server's MOUNT service to request the NFS file handle
996 * corresponding to the provided path.
997 */
998static int nfs_try_mount(struct nfs_parsed_mount_data *args,
999 struct nfs_fh *root_fh)
1000{
1001 struct sockaddr_in sin;
1002 int status;
1003
1004 if (args->mount_server.version == 0) {
1005 if (args->flags & NFS_MOUNT_VER3)
1006 args->mount_server.version = NFS_MNT3_VERSION;
1007 else
1008 args->mount_server.version = NFS_MNT_VERSION;
1009 }
1010
1011 /*
1012 * Construct the mount server's address.
1013 */
1014 if (args->mount_server.address.sin_addr.s_addr != INADDR_ANY)
1015 sin = args->mount_server.address;
1016 else
1017 sin = args->nfs_server.address;
James Lentiniaad70002007-09-24 17:32:49 -04001018 /*
1019 * autobind will be used if mount_server.port == 0
1020 */
1021 sin.sin_port = htons(args->mount_server.port);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001022
1023 /*
1024 * Now ask the mount server to map our export path
1025 * to a file handle.
1026 */
1027 status = nfs_mount((struct sockaddr *) &sin,
1028 sizeof(sin),
1029 args->nfs_server.hostname,
1030 args->nfs_server.export_path,
1031 args->mount_server.version,
1032 args->mount_server.protocol,
1033 root_fh);
Chuck Leverefd83402007-09-11 18:00:58 -04001034 if (status == 0)
1035 return 0;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001036
Chuck Leverefd83402007-09-11 18:00:58 -04001037 dfprintk(MOUNT, "NFS: unable to mount server " NIPQUAD_FMT
1038 ", error %d\n", NIPQUAD(sin.sin_addr.s_addr), status);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001039 return status;
1040}
1041
1042/*
David Howells54ceac42006-08-22 20:06:13 -04001043 * Validate the NFS2/NFS3 mount data
1044 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001045 *
1046 * For option strings, user space handles the following behaviors:
1047 *
1048 * + DNS: mapping server host name to IP address ("addr=" option)
1049 *
1050 * + failure mode: how to behave if a mount request can't be handled
1051 * immediately ("fg/bg" option)
1052 *
1053 * + retry: how often to retry a mount request ("retry=" option)
1054 *
1055 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1056 * mountproto=tcp after mountproto=udp, and so on
David Howellsf7b422b2006-06-09 09:34:33 -04001057 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001058static int nfs_validate_mount_data(void *options,
1059 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001060 struct nfs_fh *mntfh,
1061 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001062{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001063 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever136d5582007-07-01 12:13:54 -04001064
Russell Kingf16c9602007-11-16 22:13:24 +00001065 memset(args, 0, sizeof(*args));
1066
Chuck Lever5df36e72007-07-01 12:12:56 -04001067 if (data == NULL)
1068 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001069
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001070 args->flags = (NFS_MOUNT_VER3 | NFS_MOUNT_TCP);
1071 args->rsize = NFS_MAX_FILE_IO_SIZE;
1072 args->wsize = NFS_MAX_FILE_IO_SIZE;
1073 args->timeo = 600;
1074 args->retrans = 2;
1075 args->acregmin = 3;
1076 args->acregmax = 60;
1077 args->acdirmin = 30;
1078 args->acdirmax = 60;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001079 args->mount_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001080 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001081
David Howellsf7b422b2006-06-09 09:34:33 -04001082 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001083 case 1:
1084 data->namlen = 0;
1085 case 2:
1086 data->bsize = 0;
1087 case 3:
1088 if (data->flags & NFS_MOUNT_VER3)
1089 goto out_no_v3;
1090 data->root.size = NFS2_FHSIZE;
1091 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1092 case 4:
1093 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1094 goto out_no_sec;
1095 case 5:
1096 memset(data->context, 0, sizeof(data->context));
1097 case 6:
1098 if (data->flags & NFS_MOUNT_VER3)
1099 mntfh->size = data->root.size;
1100 else
1101 mntfh->size = NFS2_FHSIZE;
1102
1103 if (mntfh->size > sizeof(mntfh->data))
1104 goto out_invalid_fh;
1105
1106 memcpy(mntfh->data, data->root.data, mntfh->size);
1107 if (mntfh->size < sizeof(mntfh->data))
1108 memset(mntfh->data + mntfh->size, 0,
1109 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001110
1111 if (!nfs_verify_server_address((struct sockaddr *) &data->addr))
1112 goto out_no_address;
1113
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001114 /*
1115 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1116 * can deal with.
1117 */
1118 args->flags = data->flags;
1119 args->rsize = data->rsize;
1120 args->wsize = data->wsize;
1121 args->flags = data->flags;
1122 args->timeo = data->timeo;
1123 args->retrans = data->retrans;
1124 args->acregmin = data->acregmin;
1125 args->acregmax = data->acregmax;
1126 args->acdirmin = data->acdirmin;
1127 args->acdirmax = data->acdirmax;
1128 args->nfs_server.address = data->addr;
1129 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001130 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001131 /* N.B. caller will free nfs_server.hostname in all cases */
1132 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1133 args->namlen = data->namlen;
1134 args->bsize = data->bsize;
1135 args->auth_flavors[0] = data->pseudoflavor;
Chuck Lever5df36e72007-07-01 12:12:56 -04001136 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001137 default: {
1138 unsigned int len;
1139 char *c;
1140 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001141
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001142 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001143 return -EINVAL;
1144
Chuck Lever6e88e062007-09-24 15:39:50 -04001145 if (!nfs_verify_server_address((struct sockaddr *)
1146 &args->nfs_server.address))
1147 goto out_no_address;
1148
Chuck Lever136d5582007-07-01 12:13:54 -04001149 c = strchr(dev_name, ':');
1150 if (c == NULL)
1151 return -EINVAL;
Chuck Lever350c73a2007-08-29 17:59:01 -04001152 len = c - dev_name;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001153 /* N.B. caller will free nfs_server.hostname in all cases */
1154 args->nfs_server.hostname = kstrndup(dev_name, len, GFP_KERNEL);
Chuck Lever136d5582007-07-01 12:13:54 -04001155
1156 c++;
1157 if (strlen(c) > NFS_MAXPATHLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001158 return -ENAMETOOLONG;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001159 args->nfs_server.export_path = c;
Chuck Lever136d5582007-07-01 12:13:54 -04001160
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001161 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001162 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001163 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001164
Chuck Lever136d5582007-07-01 12:13:54 -04001165 break;
1166 }
David Howellsf7b422b2006-06-09 09:34:33 -04001167 }
David Howells54ceac42006-08-22 20:06:13 -04001168
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001169 if (!(args->flags & NFS_MOUNT_SECFLAVOUR))
1170 args->auth_flavors[0] = RPC_AUTH_UNIX;
Trond Myklebust36b15c52006-08-22 20:06:14 -04001171
David Howellsf7b422b2006-06-09 09:34:33 -04001172#ifndef CONFIG_NFS_V3
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001173 if (args->flags & NFS_MOUNT_VER3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001174 goto out_v3_not_compiled;
1175#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001176
David Howells54ceac42006-08-22 20:06:13 -04001177 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001178
1179out_no_data:
1180 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1181 return -EINVAL;
1182
1183out_no_v3:
1184 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1185 data->version);
1186 return -EINVAL;
1187
1188out_no_sec:
1189 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1190 return -EINVAL;
1191
Chuck Lever5df36e72007-07-01 12:12:56 -04001192#ifndef CONFIG_NFS_V3
1193out_v3_not_compiled:
1194 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1195 return -EPROTONOSUPPORT;
1196#endif /* !CONFIG_NFS_V3 */
1197
1198out_no_address:
1199 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1200 return -EINVAL;
1201
1202out_invalid_fh:
1203 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1204 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001205}
1206
1207/*
1208 * Initialise the common bits of the superblock
1209 */
1210static inline void nfs_initialise_sb(struct super_block *sb)
1211{
1212 struct nfs_server *server = NFS_SB(sb);
1213
1214 sb->s_magic = NFS_SUPER_MAGIC;
1215
1216 /* We probably want something more informative here */
1217 snprintf(sb->s_id, sizeof(sb->s_id),
1218 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
1219
1220 if (sb->s_blocksize == 0)
1221 sb->s_blocksize = nfs_block_bits(server->wsize,
1222 &sb->s_blocksize_bits);
1223
1224 if (server->flags & NFS_MOUNT_NOAC)
1225 sb->s_flags |= MS_SYNCHRONOUS;
1226
1227 nfs_super_set_maxbytes(sb, server->maxfilesize);
1228}
1229
1230/*
1231 * Finish setting up an NFS2/3 superblock
1232 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001233static void nfs_fill_super(struct super_block *sb,
1234 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001235{
1236 struct nfs_server *server = NFS_SB(sb);
1237
1238 sb->s_blocksize_bits = 0;
1239 sb->s_blocksize = 0;
1240 if (data->bsize)
1241 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
1242
1243 if (server->flags & NFS_MOUNT_VER3) {
1244 /* The VFS shouldn't apply the umask to mode bits. We will do
1245 * so ourselves when necessary.
1246 */
1247 sb->s_flags |= MS_POSIXACL;
1248 sb->s_time_gran = 1;
1249 }
1250
1251 sb->s_op = &nfs_sops;
1252 nfs_initialise_sb(sb);
1253}
1254
1255/*
1256 * Finish setting up a cloned NFS2/3 superblock
1257 */
1258static void nfs_clone_super(struct super_block *sb,
1259 const struct super_block *old_sb)
1260{
1261 struct nfs_server *server = NFS_SB(sb);
1262
1263 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1264 sb->s_blocksize = old_sb->s_blocksize;
1265 sb->s_maxbytes = old_sb->s_maxbytes;
1266
1267 if (server->flags & NFS_MOUNT_VER3) {
1268 /* The VFS shouldn't apply the umask to mode bits. We will do
1269 * so ourselves when necessary.
1270 */
1271 sb->s_flags |= MS_POSIXACL;
1272 sb->s_time_gran = 1;
1273 }
1274
1275 sb->s_op = old_sb->s_op;
1276 nfs_initialise_sb(sb);
1277}
1278
Trond Myklebust275a5d22007-05-16 16:53:28 -04001279#define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS)
1280
1281static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
1282{
1283 const struct nfs_server *a = s->s_fs_info;
1284 const struct rpc_clnt *clnt_a = a->client;
1285 const struct rpc_clnt *clnt_b = b->client;
1286
1287 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
1288 goto Ebusy;
1289 if (a->nfs_client != b->nfs_client)
1290 goto Ebusy;
1291 if (a->flags != b->flags)
1292 goto Ebusy;
1293 if (a->wsize != b->wsize)
1294 goto Ebusy;
1295 if (a->rsize != b->rsize)
1296 goto Ebusy;
1297 if (a->acregmin != b->acregmin)
1298 goto Ebusy;
1299 if (a->acregmax != b->acregmax)
1300 goto Ebusy;
1301 if (a->acdirmin != b->acdirmin)
1302 goto Ebusy;
1303 if (a->acdirmax != b->acdirmax)
1304 goto Ebusy;
1305 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
1306 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001307 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04001308Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001309 return 0;
1310}
1311
1312struct nfs_sb_mountdata {
1313 struct nfs_server *server;
1314 int mntflags;
1315};
1316
1317static int nfs_set_super(struct super_block *s, void *data)
1318{
1319 struct nfs_sb_mountdata *sb_mntdata = data;
1320 struct nfs_server *server = sb_mntdata->server;
1321 int ret;
1322
1323 s->s_flags = sb_mntdata->mntflags;
1324 s->s_fs_info = server;
1325 ret = set_anon_super(s, server);
1326 if (ret == 0)
1327 server->s_dev = s->s_dev;
1328 return ret;
1329}
1330
Chuck Leverfd00a8f2007-12-10 14:57:38 -05001331static int nfs_compare_super_address(struct nfs_server *server1,
1332 struct nfs_server *server2)
1333{
1334 struct sockaddr *sap1, *sap2;
1335
1336 sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr;
1337 sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr;
1338
1339 if (sap1->sa_family != sap2->sa_family)
1340 return 0;
1341
1342 switch (sap1->sa_family) {
1343 case AF_INET: {
1344 struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1;
1345 struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2;
1346 if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr)
1347 return 0;
1348 if (sin1->sin_port != sin2->sin_port)
1349 return 0;
1350 break;
1351 }
1352 case AF_INET6: {
1353 struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1;
1354 struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2;
1355 if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr))
1356 return 0;
1357 if (sin1->sin6_port != sin2->sin6_port)
1358 return 0;
1359 break;
1360 }
1361 default:
1362 return 0;
1363 }
1364
1365 return 1;
1366}
1367
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001368static int nfs_compare_super(struct super_block *sb, void *data)
1369{
1370 struct nfs_sb_mountdata *sb_mntdata = data;
1371 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
1372 int mntflags = sb_mntdata->mntflags;
1373
Chuck Leverfd00a8f2007-12-10 14:57:38 -05001374 if (!nfs_compare_super_address(old, server))
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001375 return 0;
1376 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
1377 if (old->flags & NFS_MOUNT_UNSHARED)
1378 return 0;
1379 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
1380 return 0;
1381 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04001382}
1383
David Howells54ceac42006-08-22 20:06:13 -04001384static int nfs_get_sb(struct file_system_type *fs_type,
1385 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
1386{
1387 struct nfs_server *server = NULL;
1388 struct super_block *s;
1389 struct nfs_fh mntfh;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001390 struct nfs_parsed_mount_data data;
David Howells54ceac42006-08-22 20:06:13 -04001391 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001392 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001393 struct nfs_sb_mountdata sb_mntdata = {
1394 .mntflags = flags,
1395 };
David Howells54ceac42006-08-22 20:06:13 -04001396 int error;
1397
1398 /* Validate the mount data */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001399 error = nfs_validate_mount_data(raw_data, &data, &mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04001400 if (error < 0)
Chuck Lever06559602007-07-01 12:12:35 -04001401 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001402
1403 /* Get a volume representation */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001404 server = nfs_create_server(&data, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001405 if (IS_ERR(server)) {
1406 error = PTR_ERR(server);
Chuck Lever06559602007-07-01 12:12:35 -04001407 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001408 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001409 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001410
Trond Myklebust75180df2007-05-16 16:53:28 -04001411 if (server->flags & NFS_MOUNT_UNSHARED)
1412 compare_super = NULL;
1413
David Howells54ceac42006-08-22 20:06:13 -04001414 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001415 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04001416 if (IS_ERR(s)) {
1417 error = PTR_ERR(s);
David Howells54ceac42006-08-22 20:06:13 -04001418 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04001419 }
1420
David Howells54ceac42006-08-22 20:06:13 -04001421 if (s->s_fs_info != server) {
1422 nfs_free_server(server);
1423 server = NULL;
David Howellsf7b422b2006-06-09 09:34:33 -04001424 }
David Howells54ceac42006-08-22 20:06:13 -04001425
1426 if (!s->s_root) {
1427 /* initial superblock/root creation */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001428 nfs_fill_super(s, &data);
David Howells54ceac42006-08-22 20:06:13 -04001429 }
1430
1431 mntroot = nfs_get_root(s, &mntfh);
1432 if (IS_ERR(mntroot)) {
1433 error = PTR_ERR(mntroot);
1434 goto error_splat_super;
1435 }
1436
David Howellsf7b422b2006-06-09 09:34:33 -04001437 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04001438 mnt->mnt_sb = s;
1439 mnt->mnt_root = mntroot;
Chuck Lever06559602007-07-01 12:12:35 -04001440 error = 0;
1441
1442out:
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001443 kfree(data.nfs_server.hostname);
Chuck Lever06559602007-07-01 12:12:35 -04001444 return error;
Trond Myklebust816724e2006-06-24 08:41:41 -04001445
David Howells54ceac42006-08-22 20:06:13 -04001446out_err_nosb:
1447 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04001448 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001449
1450error_splat_super:
1451 up_write(&s->s_umount);
1452 deactivate_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04001453 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001454}
1455
David Howells54ceac42006-08-22 20:06:13 -04001456/*
1457 * Destroy an NFS2/3 superblock
1458 */
David Howellsf7b422b2006-06-09 09:34:33 -04001459static void nfs_kill_super(struct super_block *s)
1460{
1461 struct nfs_server *server = NFS_SB(s);
1462
1463 kill_anon_super(s);
David Howells54ceac42006-08-22 20:06:13 -04001464 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04001465}
1466
David Howells54ceac42006-08-22 20:06:13 -04001467/*
1468 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
1469 */
1470static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
1471 const char *dev_name, void *raw_data,
1472 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001473{
1474 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001475 struct super_block *s;
1476 struct nfs_server *server;
1477 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001478 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001479 struct nfs_sb_mountdata sb_mntdata = {
1480 .mntflags = flags,
1481 };
David Howells54ceac42006-08-22 20:06:13 -04001482 int error;
1483
1484 dprintk("--> nfs_xdev_get_sb()\n");
1485
1486 /* create a new volume representation */
1487 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1488 if (IS_ERR(server)) {
1489 error = PTR_ERR(server);
1490 goto out_err_noserver;
1491 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001492 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001493
Trond Myklebust75180df2007-05-16 16:53:28 -04001494 if (server->flags & NFS_MOUNT_UNSHARED)
1495 compare_super = NULL;
1496
David Howells54ceac42006-08-22 20:06:13 -04001497 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001498 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001499 if (IS_ERR(s)) {
1500 error = PTR_ERR(s);
1501 goto out_err_nosb;
1502 }
1503
1504 if (s->s_fs_info != server) {
1505 nfs_free_server(server);
1506 server = NULL;
1507 }
1508
1509 if (!s->s_root) {
1510 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001511 nfs_clone_super(s, data->sb);
1512 }
1513
1514 mntroot = nfs_get_root(s, data->fh);
1515 if (IS_ERR(mntroot)) {
1516 error = PTR_ERR(mntroot);
1517 goto error_splat_super;
1518 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05001519 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
Neil Brown4c1fe2f2007-11-01 16:50:20 +11001520 dput(mntroot);
1521 error = -ESTALE;
1522 goto error_splat_super;
1523 }
David Howells54ceac42006-08-22 20:06:13 -04001524
1525 s->s_flags |= MS_ACTIVE;
1526 mnt->mnt_sb = s;
1527 mnt->mnt_root = mntroot;
1528
1529 dprintk("<-- nfs_xdev_get_sb() = 0\n");
1530 return 0;
1531
1532out_err_nosb:
1533 nfs_free_server(server);
1534out_err_noserver:
1535 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
1536 return error;
1537
1538error_splat_super:
1539 up_write(&s->s_umount);
1540 deactivate_super(s);
1541 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
1542 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04001543}
1544
1545#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04001546
1547/*
1548 * Finish setting up a cloned NFS4 superblock
1549 */
1550static void nfs4_clone_super(struct super_block *sb,
1551 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04001552{
David Howells54ceac42006-08-22 20:06:13 -04001553 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1554 sb->s_blocksize = old_sb->s_blocksize;
1555 sb->s_maxbytes = old_sb->s_maxbytes;
1556 sb->s_time_gran = 1;
1557 sb->s_op = old_sb->s_op;
1558 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04001559}
1560
1561/*
1562 * Set up an NFS4 superblock
1563 */
David Howells54ceac42006-08-22 20:06:13 -04001564static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04001565{
David Howellsf7b422b2006-06-09 09:34:33 -04001566 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04001567 sb->s_op = &nfs4_sops;
David Howells54ceac42006-08-22 20:06:13 -04001568 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04001569}
1570
David Howells54ceac42006-08-22 20:06:13 -04001571/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04001572 * Validate NFSv4 mount options
1573 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001574static int nfs4_validate_mount_data(void *options,
1575 struct nfs_parsed_mount_data *args,
1576 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04001577{
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001578 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001579 char *c;
1580
Russell Kingf16c9602007-11-16 22:13:24 +00001581 memset(args, 0, sizeof(*args));
1582
Chuck Leverf0768eb2007-07-01 12:13:01 -04001583 if (data == NULL)
1584 goto out_no_data;
1585
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001586 args->rsize = NFS_MAX_FILE_IO_SIZE;
1587 args->wsize = NFS_MAX_FILE_IO_SIZE;
1588 args->timeo = 600;
1589 args->retrans = 2;
1590 args->acregmin = 3;
1591 args->acregmax = 60;
1592 args->acdirmin = 30;
1593 args->acdirmax = 60;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001594 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001595
Chuck Leverf0768eb2007-07-01 12:13:01 -04001596 switch (data->version) {
1597 case 1:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001598 if (data->host_addrlen != sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001599 goto out_no_address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001600 if (copy_from_user(&args->nfs_server.address,
1601 data->host_addr,
Trond Myklebust20c71f52007-09-20 20:23:51 -04001602 sizeof(args->nfs_server.address)))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001603 return -EFAULT;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001604 if (args->nfs_server.address.sin_port == 0)
1605 args->nfs_server.address.sin_port = htons(NFS_PORT);
1606 if (!nfs_verify_server_address((struct sockaddr *)
1607 &args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001608 goto out_no_address;
1609
1610 switch (data->auth_flavourlen) {
1611 case 0:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001612 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001613 break;
1614 case 1:
Trond Myklebust20c71f52007-09-20 20:23:51 -04001615 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001616 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04001617 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001618 return -EFAULT;
1619 break;
1620 default:
1621 goto out_inval_auth;
1622 }
1623
1624 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
1625 if (IS_ERR(c))
1626 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001627 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001628
1629 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
1630 if (IS_ERR(c))
1631 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001632 args->nfs_server.export_path = c;
1633 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04001634
1635 c = strndup_user(data->client_addr.data, 16);
1636 if (IS_ERR(c))
1637 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001638 args->client_address = c;
1639
1640 /*
1641 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
1642 * can deal with.
1643 */
1644
1645 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
1646 args->rsize = data->rsize;
1647 args->wsize = data->wsize;
1648 args->timeo = data->timeo;
1649 args->retrans = data->retrans;
1650 args->acregmin = data->acregmin;
1651 args->acregmax = data->acregmax;
1652 args->acdirmin = data->acdirmin;
1653 args->acdirmax = data->acdirmax;
1654 args->nfs_server.protocol = data->proto;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001655
1656 break;
Chuck Lever80071222007-07-01 12:13:59 -04001657 default: {
1658 unsigned int len;
Chuck Lever80071222007-07-01 12:13:59 -04001659
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001660 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04001661 return -EINVAL;
1662
Chuck Lever0eb25742007-10-26 13:32:19 -04001663 if (args->nfs_server.address.sin_port == 0)
1664 args->nfs_server.address.sin_port = htons(NFS_PORT);
Chuck Lever80071222007-07-01 12:13:59 -04001665 if (!nfs_verify_server_address((struct sockaddr *)
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001666 &args->nfs_server.address))
Chuck Lever80071222007-07-01 12:13:59 -04001667 return -EINVAL;
Chuck Lever80071222007-07-01 12:13:59 -04001668
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001669 switch (args->auth_flavor_len) {
Chuck Lever80071222007-07-01 12:13:59 -04001670 case 0:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001671 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Lever80071222007-07-01 12:13:59 -04001672 break;
1673 case 1:
Chuck Lever80071222007-07-01 12:13:59 -04001674 break;
1675 default:
1676 goto out_inval_auth;
1677 }
1678
1679 /*
Chuck Lever80071222007-07-01 12:13:59 -04001680 * Split "dev_name" into "hostname:mntpath".
1681 */
1682 c = strchr(dev_name, ':');
1683 if (c == NULL)
1684 return -EINVAL;
1685 /* while calculating len, pretend ':' is '\0' */
1686 len = c - dev_name;
1687 if (len > NFS4_MAXNAMLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001688 return -ENAMETOOLONG;
Chuck Lever6a0ed1d2007-10-26 13:32:40 -04001689 /* N.B. caller will free nfs_server.hostname in all cases */
1690 args->nfs_server.hostname = kstrndup(dev_name, len, GFP_KERNEL);
Chuck Lever80071222007-07-01 12:13:59 -04001691
1692 c++; /* step over the ':' */
1693 len = strlen(c);
1694 if (len > NFS4_MAXPATHLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001695 return -ENAMETOOLONG;
Chuck Lever6a0ed1d2007-10-26 13:32:40 -04001696 args->nfs_server.export_path = kstrndup(c, len, GFP_KERNEL);
Chuck Lever80071222007-07-01 12:13:59 -04001697
Chuck Lever6a0ed1d2007-10-26 13:32:40 -04001698 dprintk("NFS: MNTPATH: '%s'\n", args->nfs_server.export_path);
Chuck Lever80071222007-07-01 12:13:59 -04001699
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001700 if (args->client_address == NULL)
Jeff Layton0a87cf12007-07-18 11:28:43 -04001701 goto out_no_client_address;
1702
Chuck Lever80071222007-07-01 12:13:59 -04001703 break;
1704 }
Chuck Leverf0768eb2007-07-01 12:13:01 -04001705 }
1706
1707 return 0;
1708
1709out_no_data:
1710 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
1711 return -EINVAL;
1712
1713out_inval_auth:
1714 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
1715 data->auth_flavourlen);
1716 return -EINVAL;
1717
1718out_no_address:
1719 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
1720 return -EINVAL;
Jeff Layton0a87cf12007-07-18 11:28:43 -04001721
1722out_no_client_address:
1723 dfprintk(MOUNT, "NFS4: mount program didn't pass callback address\n");
1724 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001725}
1726
1727/*
David Howells54ceac42006-08-22 20:06:13 -04001728 * Get the superblock for an NFS4 mountpoint
1729 */
Trond Myklebust816724e2006-06-24 08:41:41 -04001730static int nfs4_get_sb(struct file_system_type *fs_type,
1731 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001732{
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001733 struct nfs_parsed_mount_data data;
David Howells54ceac42006-08-22 20:06:13 -04001734 struct super_block *s;
1735 struct nfs_server *server;
David Howells54ceac42006-08-22 20:06:13 -04001736 struct nfs_fh mntfh;
1737 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001738 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001739 struct nfs_sb_mountdata sb_mntdata = {
1740 .mntflags = flags,
1741 };
David Howells54ceac42006-08-22 20:06:13 -04001742 int error;
David Howellsf7b422b2006-06-09 09:34:33 -04001743
Chuck Leverf0768eb2007-07-01 12:13:01 -04001744 /* Validate the mount data */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001745 error = nfs4_validate_mount_data(raw_data, &data, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04001746 if (error < 0)
1747 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001748
David Howells54ceac42006-08-22 20:06:13 -04001749 /* Get a volume representation */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001750 server = nfs4_create_server(&data, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001751 if (IS_ERR(server)) {
1752 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04001753 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001754 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001755 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04001756
Trond Myklebust75180df2007-05-16 16:53:28 -04001757 if (server->flags & NFS4_MOUNT_UNSHARED)
1758 compare_super = NULL;
1759
David Howells54ceac42006-08-22 20:06:13 -04001760 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001761 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04001762 if (IS_ERR(s)) {
1763 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04001764 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04001765 }
1766
Trond Myklebust5dd31772006-08-24 01:03:05 -04001767 if (s->s_fs_info != server) {
1768 nfs_free_server(server);
1769 server = NULL;
1770 }
1771
David Howells54ceac42006-08-22 20:06:13 -04001772 if (!s->s_root) {
1773 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001774 nfs4_fill_super(s);
Trond Myklebust816724e2006-06-24 08:41:41 -04001775 }
David Howellsf7b422b2006-06-09 09:34:33 -04001776
David Howells54ceac42006-08-22 20:06:13 -04001777 mntroot = nfs4_get_root(s, &mntfh);
1778 if (IS_ERR(mntroot)) {
1779 error = PTR_ERR(mntroot);
1780 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04001781 }
David Howells54ceac42006-08-22 20:06:13 -04001782
David Howellsf7b422b2006-06-09 09:34:33 -04001783 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04001784 mnt->mnt_sb = s;
1785 mnt->mnt_root = mntroot;
Chuck Lever29eb9812007-07-01 12:12:30 -04001786 error = 0;
David Howells54ceac42006-08-22 20:06:13 -04001787
Chuck Lever29eb9812007-07-01 12:12:30 -04001788out:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001789 kfree(data.client_address);
1790 kfree(data.nfs_server.export_path);
1791 kfree(data.nfs_server.hostname);
Trond Myklebust816724e2006-06-24 08:41:41 -04001792 return error;
David Howells54ceac42006-08-22 20:06:13 -04001793
Chuck Lever29eb9812007-07-01 12:12:30 -04001794out_free:
1795 nfs_free_server(server);
1796 goto out;
1797
David Howells54ceac42006-08-22 20:06:13 -04001798error_splat_super:
1799 up_write(&s->s_umount);
1800 deactivate_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04001801 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001802}
1803
1804static void nfs4_kill_super(struct super_block *sb)
1805{
1806 struct nfs_server *server = NFS_SB(sb);
1807
1808 nfs_return_all_delegations(sb);
1809 kill_anon_super(sb);
1810
1811 nfs4_renewd_prepare_shutdown(server);
David Howells54ceac42006-08-22 20:06:13 -04001812 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04001813}
1814
1815/*
David Howells54ceac42006-08-22 20:06:13 -04001816 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04001817 */
David Howells54ceac42006-08-22 20:06:13 -04001818static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
1819 const char *dev_name, void *raw_data,
1820 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001821{
1822 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001823 struct super_block *s;
1824 struct nfs_server *server;
1825 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001826 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001827 struct nfs_sb_mountdata sb_mntdata = {
1828 .mntflags = flags,
1829 };
David Howells54ceac42006-08-22 20:06:13 -04001830 int error;
1831
1832 dprintk("--> nfs4_xdev_get_sb()\n");
1833
1834 /* create a new volume representation */
1835 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1836 if (IS_ERR(server)) {
1837 error = PTR_ERR(server);
1838 goto out_err_noserver;
1839 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001840 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001841
Trond Myklebust75180df2007-05-16 16:53:28 -04001842 if (server->flags & NFS4_MOUNT_UNSHARED)
1843 compare_super = NULL;
1844
David Howells54ceac42006-08-22 20:06:13 -04001845 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001846 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001847 if (IS_ERR(s)) {
1848 error = PTR_ERR(s);
1849 goto out_err_nosb;
1850 }
1851
1852 if (s->s_fs_info != server) {
1853 nfs_free_server(server);
1854 server = NULL;
1855 }
1856
1857 if (!s->s_root) {
1858 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001859 nfs4_clone_super(s, data->sb);
1860 }
1861
1862 mntroot = nfs4_get_root(s, data->fh);
1863 if (IS_ERR(mntroot)) {
1864 error = PTR_ERR(mntroot);
1865 goto error_splat_super;
1866 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05001867 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
1868 dput(mntroot);
1869 error = -ESTALE;
1870 goto error_splat_super;
1871 }
David Howells54ceac42006-08-22 20:06:13 -04001872
1873 s->s_flags |= MS_ACTIVE;
1874 mnt->mnt_sb = s;
1875 mnt->mnt_root = mntroot;
1876
1877 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
1878 return 0;
1879
1880out_err_nosb:
1881 nfs_free_server(server);
1882out_err_noserver:
1883 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
1884 return error;
1885
1886error_splat_super:
1887 up_write(&s->s_umount);
1888 deactivate_super(s);
1889 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
1890 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04001891}
1892
David Howells54ceac42006-08-22 20:06:13 -04001893/*
1894 * Create an NFS4 server record on referral traversal
1895 */
1896static int nfs4_referral_get_sb(struct file_system_type *fs_type, int flags,
1897 const char *dev_name, void *raw_data,
1898 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001899{
1900 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001901 struct super_block *s;
1902 struct nfs_server *server;
1903 struct dentry *mntroot;
1904 struct nfs_fh mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04001905 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001906 struct nfs_sb_mountdata sb_mntdata = {
1907 .mntflags = flags,
1908 };
David Howells54ceac42006-08-22 20:06:13 -04001909 int error;
1910
1911 dprintk("--> nfs4_referral_get_sb()\n");
1912
1913 /* create a new volume representation */
1914 server = nfs4_create_referral_server(data, &mntfh);
1915 if (IS_ERR(server)) {
1916 error = PTR_ERR(server);
1917 goto out_err_noserver;
1918 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001919 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001920
Trond Myklebust75180df2007-05-16 16:53:28 -04001921 if (server->flags & NFS4_MOUNT_UNSHARED)
1922 compare_super = NULL;
1923
David Howells54ceac42006-08-22 20:06:13 -04001924 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001925 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001926 if (IS_ERR(s)) {
1927 error = PTR_ERR(s);
1928 goto out_err_nosb;
1929 }
1930
1931 if (s->s_fs_info != server) {
1932 nfs_free_server(server);
1933 server = NULL;
1934 }
1935
1936 if (!s->s_root) {
1937 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001938 nfs4_fill_super(s);
1939 }
1940
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001941 mntroot = nfs4_get_root(s, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001942 if (IS_ERR(mntroot)) {
1943 error = PTR_ERR(mntroot);
1944 goto error_splat_super;
1945 }
Trond Myklebuste9cc6c22008-01-02 13:28:57 -05001946 if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) {
1947 dput(mntroot);
1948 error = -ESTALE;
1949 goto error_splat_super;
1950 }
David Howells54ceac42006-08-22 20:06:13 -04001951
1952 s->s_flags |= MS_ACTIVE;
1953 mnt->mnt_sb = s;
1954 mnt->mnt_root = mntroot;
1955
1956 dprintk("<-- nfs4_referral_get_sb() = 0\n");
1957 return 0;
1958
1959out_err_nosb:
1960 nfs_free_server(server);
1961out_err_noserver:
1962 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
1963 return error;
1964
1965error_splat_super:
1966 up_write(&s->s_umount);
1967 deactivate_super(s);
1968 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
1969 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04001970}
1971
David Howells54ceac42006-08-22 20:06:13 -04001972#endif /* CONFIG_NFS_V4 */