blob: 71067d1ac9d9a2007d30bc235b236b1ccf1daf7e [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>
48#include <linux/nfs_xdr.h>
Adrian Bunkb5d5dfb2007-02-12 00:53:40 -080049#include <linux/magic.h>
Chuck Leverbf0fd762007-07-01 12:13:44 -040050#include <linux/parser.h>
David Howellsf7b422b2006-06-09 09:34:33 -040051
52#include <asm/system.h>
53#include <asm/uaccess.h>
54
55#include "nfs4_fs.h"
56#include "callback.h"
57#include "delegation.h"
58#include "iostat.h"
59#include "internal.h"
60
61#define NFSDBG_FACILITY NFSDBG_VFS
62
Chuck Leverbf0fd762007-07-01 12:13:44 -040063enum {
64 /* Mount options that take no arguments */
65 Opt_soft, Opt_hard,
66 Opt_intr, Opt_nointr,
67 Opt_posix, Opt_noposix,
68 Opt_cto, Opt_nocto,
69 Opt_ac, Opt_noac,
70 Opt_lock, Opt_nolock,
71 Opt_v2, Opt_v3,
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040072 Opt_udp, Opt_tcp, Opt_rdma,
Chuck Leverbf0fd762007-07-01 12:13:44 -040073 Opt_acl, Opt_noacl,
74 Opt_rdirplus, Opt_nordirplus,
Trond Myklebust75180df2007-05-16 16:53:28 -040075 Opt_sharecache, Opt_nosharecache,
Chuck Leverbf0fd762007-07-01 12:13:44 -040076
77 /* Mount options that take integer arguments */
78 Opt_port,
79 Opt_rsize, Opt_wsize, Opt_bsize,
80 Opt_timeo, Opt_retrans,
81 Opt_acregmin, Opt_acregmax,
82 Opt_acdirmin, Opt_acdirmax,
83 Opt_actimeo,
84 Opt_namelen,
85 Opt_mountport,
86 Opt_mountprog, Opt_mountvers,
87 Opt_nfsprog, Opt_nfsvers,
88
89 /* Mount options that take string arguments */
90 Opt_sec, Opt_proto, Opt_mountproto,
Chuck Lever0ac83772007-09-11 18:01:04 -040091 Opt_addr, Opt_mountaddr, Opt_clientaddr,
Chuck Leverbf0fd762007-07-01 12:13:44 -040092
93 /* Mount options that are ignored */
94 Opt_userspace, Opt_deprecated,
95
96 Opt_err
97};
98
99static match_table_t nfs_mount_option_tokens = {
100 { Opt_userspace, "bg" },
101 { Opt_userspace, "fg" },
102 { Opt_soft, "soft" },
103 { Opt_hard, "hard" },
104 { Opt_intr, "intr" },
105 { Opt_nointr, "nointr" },
106 { Opt_posix, "posix" },
107 { Opt_noposix, "noposix" },
108 { Opt_cto, "cto" },
109 { Opt_nocto, "nocto" },
110 { Opt_ac, "ac" },
111 { Opt_noac, "noac" },
112 { Opt_lock, "lock" },
113 { Opt_nolock, "nolock" },
114 { Opt_v2, "v2" },
115 { Opt_v3, "v3" },
116 { Opt_udp, "udp" },
117 { Opt_tcp, "tcp" },
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400118 { Opt_rdma, "rdma" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400119 { Opt_acl, "acl" },
120 { Opt_noacl, "noacl" },
121 { Opt_rdirplus, "rdirplus" },
122 { Opt_nordirplus, "nordirplus" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400123 { Opt_sharecache, "sharecache" },
124 { Opt_nosharecache, "nosharecache" },
Chuck Leverbf0fd762007-07-01 12:13:44 -0400125
126 { Opt_port, "port=%u" },
127 { Opt_rsize, "rsize=%u" },
128 { Opt_wsize, "wsize=%u" },
129 { Opt_bsize, "bsize=%u" },
130 { Opt_timeo, "timeo=%u" },
131 { Opt_retrans, "retrans=%u" },
132 { Opt_acregmin, "acregmin=%u" },
133 { Opt_acregmax, "acregmax=%u" },
134 { Opt_acdirmin, "acdirmin=%u" },
135 { Opt_acdirmax, "acdirmax=%u" },
136 { Opt_actimeo, "actimeo=%u" },
137 { Opt_userspace, "retry=%u" },
138 { Opt_namelen, "namlen=%u" },
139 { Opt_mountport, "mountport=%u" },
140 { Opt_mountprog, "mountprog=%u" },
141 { Opt_mountvers, "mountvers=%u" },
142 { Opt_nfsprog, "nfsprog=%u" },
143 { 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 *);
205
206static struct file_system_type nfs_fs_type = {
207 .owner = THIS_MODULE,
208 .name = "nfs",
209 .get_sb = nfs_get_sb,
210 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700211 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400212};
213
David Howells54ceac42006-08-22 20:06:13 -0400214struct file_system_type nfs_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400215 .owner = THIS_MODULE,
216 .name = "nfs",
David Howells54ceac42006-08-22 20:06:13 -0400217 .get_sb = nfs_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400218 .kill_sb = nfs_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700219 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400220};
221
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800222static const struct super_operations nfs_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400223 .alloc_inode = nfs_alloc_inode,
224 .destroy_inode = nfs_destroy_inode,
225 .write_inode = nfs_write_inode,
226 .statfs = nfs_statfs,
227 .clear_inode = nfs_clear_inode,
228 .umount_begin = nfs_umount_begin,
229 .show_options = nfs_show_options,
230 .show_stats = nfs_show_stats,
231};
232
233#ifdef CONFIG_NFS_V4
Trond Myklebust816724e2006-06-24 08:41:41 -0400234static int nfs4_get_sb(struct file_system_type *fs_type,
235 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howells54ceac42006-08-22 20:06:13 -0400236static int nfs4_xdev_get_sb(struct file_system_type *fs_type,
237 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
238static int nfs4_referral_get_sb(struct file_system_type *fs_type,
239 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400240static void nfs4_kill_super(struct super_block *sb);
241
242static struct file_system_type nfs4_fs_type = {
243 .owner = THIS_MODULE,
244 .name = "nfs4",
245 .get_sb = nfs4_get_sb,
246 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700247 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400248};
249
David Howells54ceac42006-08-22 20:06:13 -0400250struct file_system_type nfs4_xdev_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400251 .owner = THIS_MODULE,
252 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400253 .get_sb = nfs4_xdev_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400254 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700255 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400256};
257
David Howells54ceac42006-08-22 20:06:13 -0400258struct file_system_type nfs4_referral_fs_type = {
David Howellsf7b422b2006-06-09 09:34:33 -0400259 .owner = THIS_MODULE,
260 .name = "nfs4",
David Howells54ceac42006-08-22 20:06:13 -0400261 .get_sb = nfs4_referral_get_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400262 .kill_sb = nfs4_kill_super,
Mark Fasheh349457c2006-09-08 14:22:21 -0700263 .fs_flags = FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
David Howellsf7b422b2006-06-09 09:34:33 -0400264};
265
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800266static const struct super_operations nfs4_sops = {
David Howellsf7b422b2006-06-09 09:34:33 -0400267 .alloc_inode = nfs_alloc_inode,
268 .destroy_inode = nfs_destroy_inode,
269 .write_inode = nfs_write_inode,
270 .statfs = nfs_statfs,
271 .clear_inode = nfs4_clear_inode,
272 .umount_begin = nfs_umount_begin,
273 .show_options = nfs_show_options,
274 .show_stats = nfs_show_stats,
275};
276#endif
277
Rusty Russell8e1f9362007-07-17 04:03:17 -0700278static struct shrinker acl_shrinker = {
279 .shrink = nfs_access_cache_shrinker,
280 .seeks = DEFAULT_SEEKS,
281};
Trond Myklebust979df722006-07-25 11:28:19 -0400282
David Howellsf7b422b2006-06-09 09:34:33 -0400283/*
284 * Register the NFS filesystems
285 */
286int __init register_nfs_fs(void)
287{
288 int ret;
289
290 ret = register_filesystem(&nfs_fs_type);
291 if (ret < 0)
292 goto error_0;
293
David Howellsf7b422b2006-06-09 09:34:33 -0400294 ret = nfs_register_sysctl();
295 if (ret < 0)
296 goto error_1;
Peter Zijlstra89a09142007-03-16 13:38:26 -0800297#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400298 ret = register_filesystem(&nfs4_fs_type);
299 if (ret < 0)
300 goto error_2;
301#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700302 register_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400303 return 0;
304
305#ifdef CONFIG_NFS_V4
306error_2:
307 nfs_unregister_sysctl();
Peter Zijlstra89a09142007-03-16 13:38:26 -0800308#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400309error_1:
310 unregister_filesystem(&nfs_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400311error_0:
312 return ret;
313}
314
315/*
316 * Unregister the NFS filesystems
317 */
318void __exit unregister_nfs_fs(void)
319{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700320 unregister_shrinker(&acl_shrinker);
David Howellsf7b422b2006-06-09 09:34:33 -0400321#ifdef CONFIG_NFS_V4
322 unregister_filesystem(&nfs4_fs_type);
David Howellsf7b422b2006-06-09 09:34:33 -0400323#endif
Alexey Dobriyan49af7ee2007-09-18 22:46:40 -0700324 nfs_unregister_sysctl();
David Howellsf7b422b2006-06-09 09:34:33 -0400325 unregister_filesystem(&nfs_fs_type);
326}
327
328/*
329 * Deliver file system statistics to userspace
330 */
Trond Myklebust816724e2006-06-24 08:41:41 -0400331static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf)
David Howellsf7b422b2006-06-09 09:34:33 -0400332{
David Howells0c7d90c2006-08-22 20:06:10 -0400333 struct nfs_server *server = NFS_SB(dentry->d_sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400334 unsigned char blockbits;
335 unsigned long blockres;
David Howells0c7d90c2006-08-22 20:06:10 -0400336 struct nfs_fh *fh = NFS_FH(dentry->d_inode);
David Howellsf7b422b2006-06-09 09:34:33 -0400337 struct nfs_fattr fattr;
338 struct nfs_fsstat res = {
339 .fattr = &fattr,
340 };
341 int error;
342
343 lock_kernel();
344
David Howells8fa5c002006-08-22 20:06:12 -0400345 error = server->nfs_client->rpc_ops->statfs(server, fh, &res);
David Howellsf7b422b2006-06-09 09:34:33 -0400346 if (error < 0)
347 goto out_err;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700348 buf->f_type = NFS_SUPER_MAGIC;
David Howellsf7b422b2006-06-09 09:34:33 -0400349
350 /*
351 * Current versions of glibc do not correctly handle the
352 * case where f_frsize != f_bsize. Eventually we want to
353 * report the value of wtmult in this field.
354 */
David Howells0c7d90c2006-08-22 20:06:10 -0400355 buf->f_frsize = dentry->d_sb->s_blocksize;
David Howellsf7b422b2006-06-09 09:34:33 -0400356
357 /*
358 * On most *nix systems, f_blocks, f_bfree, and f_bavail
359 * are reported in units of f_frsize. Linux hasn't had
360 * an f_frsize field in its statfs struct until recently,
361 * thus historically Linux's sys_statfs reports these
362 * fields in units of f_bsize.
363 */
David Howells0c7d90c2006-08-22 20:06:10 -0400364 buf->f_bsize = dentry->d_sb->s_blocksize;
365 blockbits = dentry->d_sb->s_blocksize_bits;
David Howellsf7b422b2006-06-09 09:34:33 -0400366 blockres = (1 << blockbits) - 1;
367 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
368 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
369 buf->f_bavail = (res.abytes + blockres) >> blockbits;
370
371 buf->f_files = res.tfiles;
372 buf->f_ffree = res.afiles;
373
374 buf->f_namelen = server->namelen;
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700375
David Howellsf7b422b2006-06-09 09:34:33 -0400376 unlock_kernel();
377 return 0;
378
379 out_err:
380 dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
Amnon Aaronsohn1a0ba9a2007-04-09 22:05:26 -0700381 unlock_kernel();
382 return error;
David Howellsf7b422b2006-06-09 09:34:33 -0400383}
384
David Howells7d4e2742006-08-22 20:06:07 -0400385/*
386 * Map the security flavour number to a name
387 */
Trond Myklebust81039f12006-06-09 09:34:34 -0400388static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour)
389{
David Howells7d4e2742006-08-22 20:06:07 -0400390 static const struct {
Trond Myklebust81039f12006-06-09 09:34:34 -0400391 rpc_authflavor_t flavour;
392 const char *str;
393 } sec_flavours[] = {
394 { RPC_AUTH_NULL, "null" },
395 { RPC_AUTH_UNIX, "sys" },
396 { RPC_AUTH_GSS_KRB5, "krb5" },
397 { RPC_AUTH_GSS_KRB5I, "krb5i" },
398 { RPC_AUTH_GSS_KRB5P, "krb5p" },
399 { RPC_AUTH_GSS_LKEY, "lkey" },
400 { RPC_AUTH_GSS_LKEYI, "lkeyi" },
401 { RPC_AUTH_GSS_LKEYP, "lkeyp" },
402 { RPC_AUTH_GSS_SPKM, "spkm" },
403 { RPC_AUTH_GSS_SPKMI, "spkmi" },
404 { RPC_AUTH_GSS_SPKMP, "spkmp" },
Chuck Lever4d81cd12007-07-01 12:12:40 -0400405 { UINT_MAX, "unknown" }
Trond Myklebust81039f12006-06-09 09:34:34 -0400406 };
407 int i;
408
Chuck Lever4d81cd12007-07-01 12:12:40 -0400409 for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) {
Trond Myklebust81039f12006-06-09 09:34:34 -0400410 if (sec_flavours[i].flavour == flavour)
411 break;
412 }
413 return sec_flavours[i].str;
414}
415
David Howellsf7b422b2006-06-09 09:34:33 -0400416/*
417 * Describe the mount options in force on this server representation
418 */
419static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
420{
David Howells509de812006-08-22 20:06:11 -0400421 static const struct proc_nfs_info {
David Howellsf7b422b2006-06-09 09:34:33 -0400422 int flag;
David Howells509de812006-08-22 20:06:11 -0400423 const char *str;
424 const char *nostr;
David Howellsf7b422b2006-06-09 09:34:33 -0400425 } nfs_info[] = {
426 { NFS_MOUNT_SOFT, ",soft", ",hard" },
Chuck Leverbcf35612007-09-24 15:39:55 -0400427 { NFS_MOUNT_INTR, ",intr", ",nointr" },
David Howellsf7b422b2006-06-09 09:34:33 -0400428 { NFS_MOUNT_NOCTO, ",nocto", "" },
429 { NFS_MOUNT_NOAC, ",noac", "" },
430 { NFS_MOUNT_NONLM, ",nolock", "" },
431 { NFS_MOUNT_NOACL, ",noacl", "" },
Steve Dickson74dd34e2007-04-14 17:01:15 -0400432 { NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" },
Trond Myklebust75180df2007-05-16 16:53:28 -0400433 { NFS_MOUNT_UNSHARED, ",nosharecache", ""},
David Howellsf7b422b2006-06-09 09:34:33 -0400434 { 0, NULL, NULL }
435 };
David Howells509de812006-08-22 20:06:11 -0400436 const struct proc_nfs_info *nfs_infop;
David Howells8fa5c002006-08-22 20:06:12 -0400437 struct nfs_client *clp = nfss->nfs_client;
David Howellsf7b422b2006-06-09 09:34:33 -0400438
David Howells8fa5c002006-08-22 20:06:12 -0400439 seq_printf(m, ",vers=%d", clp->rpc_ops->version);
David Howellsf7b422b2006-06-09 09:34:33 -0400440 seq_printf(m, ",rsize=%d", nfss->rsize);
441 seq_printf(m, ",wsize=%d", nfss->wsize);
442 if (nfss->acregmin != 3*HZ || showdefaults)
443 seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
444 if (nfss->acregmax != 60*HZ || showdefaults)
445 seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
446 if (nfss->acdirmin != 30*HZ || showdefaults)
447 seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
448 if (nfss->acdirmax != 60*HZ || showdefaults)
449 seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
450 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
451 if (nfss->flags & nfs_infop->flag)
452 seq_puts(m, nfs_infop->str);
453 else
454 seq_puts(m, nfs_infop->nostr);
455 }
\"Talpey, Thomas\56928ed2007-09-10 13:48:47 -0400456 seq_printf(m, ",proto=%s",
457 rpc_peeraddr2str(nfss->client, RPC_DISPLAY_PROTO));
David Howells5006a762006-08-22 20:06:12 -0400458 seq_printf(m, ",timeo=%lu", 10U * clp->retrans_timeo / HZ);
459 seq_printf(m, ",retrans=%u", clp->retrans_count);
Trond Myklebust81039f12006-06-09 09:34:34 -0400460 seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor));
David Howellsf7b422b2006-06-09 09:34:33 -0400461}
462
463/*
464 * Describe the mount options on this VFS mountpoint
465 */
466static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
467{
468 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
469
470 nfs_show_mount_options(m, nfss, 0);
471
Jeff Laytonddc01c02007-07-30 08:47:38 -0400472 seq_printf(m, ",addr="NIPQUAD_FMT,
473 NIPQUAD(nfss->nfs_client->cl_addr.sin_addr));
David Howellsf7b422b2006-06-09 09:34:33 -0400474
475 return 0;
476}
477
478/*
479 * Present statistical information for this VFS mountpoint
480 */
481static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
482{
483 int i, cpu;
484 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
485 struct rpc_auth *auth = nfss->client->cl_auth;
486 struct nfs_iostats totals = { };
487
488 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
489
490 /*
491 * Display all mount option settings
492 */
493 seq_printf(m, "\n\topts:\t");
494 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
495 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
496 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
497 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
498 nfs_show_mount_options(m, nfss, 1);
499
500 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
501
502 seq_printf(m, "\n\tcaps:\t");
503 seq_printf(m, "caps=0x%x", nfss->caps);
504 seq_printf(m, ",wtmult=%d", nfss->wtmult);
505 seq_printf(m, ",dtsize=%d", nfss->dtsize);
506 seq_printf(m, ",bsize=%d", nfss->bsize);
507 seq_printf(m, ",namelen=%d", nfss->namelen);
508
509#ifdef CONFIG_NFS_V4
David Howells8fa5c002006-08-22 20:06:12 -0400510 if (nfss->nfs_client->cl_nfsversion == 4) {
David Howellsf7b422b2006-06-09 09:34:33 -0400511 seq_printf(m, "\n\tnfsv4:\t");
512 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
513 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
514 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
515 }
516#endif
517
518 /*
519 * Display security flavor in effect for this mount
520 */
521 seq_printf(m, "\n\tsec:\tflavor=%d", auth->au_ops->au_flavor);
522 if (auth->au_flavor)
523 seq_printf(m, ",pseudoflavor=%d", auth->au_flavor);
524
525 /*
526 * Display superblock I/O counters
527 */
528 for_each_possible_cpu(cpu) {
529 struct nfs_iostats *stats;
530
531 preempt_disable();
532 stats = per_cpu_ptr(nfss->io_stats, cpu);
533
534 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
535 totals.events[i] += stats->events[i];
536 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
537 totals.bytes[i] += stats->bytes[i];
538
539 preempt_enable();
540 }
541
542 seq_printf(m, "\n\tevents:\t");
543 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
544 seq_printf(m, "%lu ", totals.events[i]);
545 seq_printf(m, "\n\tbytes:\t");
546 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
547 seq_printf(m, "%Lu ", totals.bytes[i]);
548 seq_printf(m, "\n");
549
550 rpc_print_iostats(m, nfss->client);
551
552 return 0;
553}
554
555/*
556 * Begin unmount by attempting to remove all automounted mountpoints we added
David Howells54ceac42006-08-22 20:06:13 -0400557 * in response to xdev traversals and referrals
David Howellsf7b422b2006-06-09 09:34:33 -0400558 */
559static void nfs_umount_begin(struct vfsmount *vfsmnt, int flags)
560{
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400561 struct nfs_server *server = NFS_SB(vfsmnt->mnt_sb);
562 struct rpc_clnt *rpc;
563
David Howellsf7b422b2006-06-09 09:34:33 -0400564 shrink_submounts(vfsmnt, &nfs_automount_list);
Trond Myklebustfc6ae3c2007-06-05 19:13:47 -0400565
566 if (!(flags & MNT_FORCE))
567 return;
568 /* -EIO all pending I/O */
569 rpc = server->client_acl;
570 if (!IS_ERR(rpc))
571 rpc_killall_tasks(rpc);
572 rpc = server->client;
573 if (!IS_ERR(rpc))
574 rpc_killall_tasks(rpc);
David Howellsf7b422b2006-06-09 09:34:33 -0400575}
576
577/*
Chuck Leverfc50d582007-07-01 12:12:46 -0400578 * Sanity-check a server address provided by the mount command
579 */
580static int nfs_verify_server_address(struct sockaddr *addr)
581{
582 switch (addr->sa_family) {
583 case AF_INET: {
584 struct sockaddr_in *sa = (struct sockaddr_in *) addr;
585 if (sa->sin_addr.s_addr != INADDR_ANY)
586 return 1;
587 break;
588 }
589 }
590
591 return 0;
592}
593
594/*
Chuck Leverbf0fd762007-07-01 12:13:44 -0400595 * Error-check and convert a string of mount options from user space into
596 * a data structure
597 */
598static int nfs_parse_mount_options(char *raw,
599 struct nfs_parsed_mount_data *mnt)
600{
601 char *p, *string;
602
603 if (!raw) {
604 dfprintk(MOUNT, "NFS: mount options string was NULL.\n");
605 return 1;
606 }
607 dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw);
608
609 while ((p = strsep(&raw, ",")) != NULL) {
610 substring_t args[MAX_OPT_ARGS];
611 int option, token;
612
613 if (!*p)
614 continue;
615
616 dfprintk(MOUNT, "NFS: parsing nfs mount option '%s'\n", p);
617
618 token = match_token(p, nfs_mount_option_tokens, args);
619 switch (token) {
620 case Opt_soft:
621 mnt->flags |= NFS_MOUNT_SOFT;
622 break;
623 case Opt_hard:
624 mnt->flags &= ~NFS_MOUNT_SOFT;
625 break;
626 case Opt_intr:
627 mnt->flags |= NFS_MOUNT_INTR;
628 break;
629 case Opt_nointr:
630 mnt->flags &= ~NFS_MOUNT_INTR;
631 break;
632 case Opt_posix:
633 mnt->flags |= NFS_MOUNT_POSIX;
634 break;
635 case Opt_noposix:
636 mnt->flags &= ~NFS_MOUNT_POSIX;
637 break;
638 case Opt_cto:
639 mnt->flags &= ~NFS_MOUNT_NOCTO;
640 break;
641 case Opt_nocto:
642 mnt->flags |= NFS_MOUNT_NOCTO;
643 break;
644 case Opt_ac:
645 mnt->flags &= ~NFS_MOUNT_NOAC;
646 break;
647 case Opt_noac:
648 mnt->flags |= NFS_MOUNT_NOAC;
649 break;
650 case Opt_lock:
651 mnt->flags &= ~NFS_MOUNT_NONLM;
652 break;
653 case Opt_nolock:
654 mnt->flags |= NFS_MOUNT_NONLM;
655 break;
656 case Opt_v2:
657 mnt->flags &= ~NFS_MOUNT_VER3;
658 break;
659 case Opt_v3:
660 mnt->flags |= NFS_MOUNT_VER3;
661 break;
662 case Opt_udp:
663 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400664 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400665 mnt->timeo = 7;
666 mnt->retrans = 5;
667 break;
668 case Opt_tcp:
669 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400670 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400671 mnt->timeo = 600;
672 mnt->retrans = 2;
673 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400674 case Opt_rdma:
675 mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */
676 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
677 mnt->timeo = 600;
678 mnt->retrans = 2;
679 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400680 case Opt_acl:
681 mnt->flags &= ~NFS_MOUNT_NOACL;
682 break;
683 case Opt_noacl:
684 mnt->flags |= NFS_MOUNT_NOACL;
685 break;
686 case Opt_rdirplus:
687 mnt->flags &= ~NFS_MOUNT_NORDIRPLUS;
688 break;
689 case Opt_nordirplus:
690 mnt->flags |= NFS_MOUNT_NORDIRPLUS;
691 break;
Trond Myklebust75180df2007-05-16 16:53:28 -0400692 case Opt_sharecache:
693 mnt->flags &= ~NFS_MOUNT_UNSHARED;
694 break;
695 case Opt_nosharecache:
696 mnt->flags |= NFS_MOUNT_UNSHARED;
697 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400698
699 case Opt_port:
700 if (match_int(args, &option))
701 return 0;
702 if (option < 0 || option > 65535)
703 return 0;
Al Viro410896442007-07-22 10:59:06 +0100704 mnt->nfs_server.address.sin_port = htons(option);
Chuck Leverbf0fd762007-07-01 12:13:44 -0400705 break;
706 case Opt_rsize:
707 if (match_int(args, &mnt->rsize))
708 return 0;
709 break;
710 case Opt_wsize:
711 if (match_int(args, &mnt->wsize))
712 return 0;
713 break;
714 case Opt_bsize:
715 if (match_int(args, &option))
716 return 0;
717 if (option < 0)
718 return 0;
719 mnt->bsize = option;
720 break;
721 case Opt_timeo:
722 if (match_int(args, &mnt->timeo))
723 return 0;
724 break;
725 case Opt_retrans:
726 if (match_int(args, &mnt->retrans))
727 return 0;
728 break;
729 case Opt_acregmin:
730 if (match_int(args, &mnt->acregmin))
731 return 0;
732 break;
733 case Opt_acregmax:
734 if (match_int(args, &mnt->acregmax))
735 return 0;
736 break;
737 case Opt_acdirmin:
738 if (match_int(args, &mnt->acdirmin))
739 return 0;
740 break;
741 case Opt_acdirmax:
742 if (match_int(args, &mnt->acdirmax))
743 return 0;
744 break;
745 case Opt_actimeo:
746 if (match_int(args, &option))
747 return 0;
748 if (option < 0)
749 return 0;
750 mnt->acregmin =
751 mnt->acregmax =
752 mnt->acdirmin =
753 mnt->acdirmax = option;
754 break;
755 case Opt_namelen:
756 if (match_int(args, &mnt->namlen))
757 return 0;
758 break;
759 case Opt_mountport:
760 if (match_int(args, &option))
761 return 0;
762 if (option < 0 || option > 65535)
763 return 0;
764 mnt->mount_server.port = option;
765 break;
766 case Opt_mountprog:
767 if (match_int(args, &option))
768 return 0;
769 if (option < 0)
770 return 0;
771 mnt->mount_server.program = option;
772 break;
773 case Opt_mountvers:
774 if (match_int(args, &option))
775 return 0;
776 if (option < 0)
777 return 0;
778 mnt->mount_server.version = option;
779 break;
780 case Opt_nfsprog:
781 if (match_int(args, &option))
782 return 0;
783 if (option < 0)
784 return 0;
785 mnt->nfs_server.program = option;
786 break;
787 case Opt_nfsvers:
788 if (match_int(args, &option))
789 return 0;
790 switch (option) {
791 case 2:
792 mnt->flags &= ~NFS_MOUNT_VER3;
793 break;
794 case 3:
795 mnt->flags |= NFS_MOUNT_VER3;
796 break;
797 default:
798 goto out_unrec_vers;
799 }
800 break;
801
802 case Opt_sec:
803 string = match_strdup(args);
804 if (string == NULL)
805 goto out_nomem;
806 token = match_token(string, nfs_secflavor_tokens, args);
807 kfree(string);
808
809 /*
810 * The flags setting is for v2/v3. The flavor_len
811 * setting is for v4. v2/v3 also need to know the
812 * difference between NULL and UNIX.
813 */
814 switch (token) {
815 case Opt_sec_none:
816 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
817 mnt->auth_flavor_len = 0;
818 mnt->auth_flavors[0] = RPC_AUTH_NULL;
819 break;
820 case Opt_sec_sys:
821 mnt->flags &= ~NFS_MOUNT_SECFLAVOUR;
822 mnt->auth_flavor_len = 0;
823 mnt->auth_flavors[0] = RPC_AUTH_UNIX;
824 break;
825 case Opt_sec_krb5:
826 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
827 mnt->auth_flavor_len = 1;
828 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5;
829 break;
830 case Opt_sec_krb5i:
831 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
832 mnt->auth_flavor_len = 1;
833 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I;
834 break;
835 case Opt_sec_krb5p:
836 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
837 mnt->auth_flavor_len = 1;
838 mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P;
839 break;
840 case Opt_sec_lkey:
841 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
842 mnt->auth_flavor_len = 1;
843 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY;
844 break;
845 case Opt_sec_lkeyi:
846 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
847 mnt->auth_flavor_len = 1;
848 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI;
849 break;
850 case Opt_sec_lkeyp:
851 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
852 mnt->auth_flavor_len = 1;
853 mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP;
854 break;
855 case Opt_sec_spkm:
856 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
857 mnt->auth_flavor_len = 1;
858 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM;
859 break;
860 case Opt_sec_spkmi:
861 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
862 mnt->auth_flavor_len = 1;
863 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI;
864 break;
865 case Opt_sec_spkmp:
866 mnt->flags |= NFS_MOUNT_SECFLAVOUR;
867 mnt->auth_flavor_len = 1;
868 mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP;
869 break;
870 default:
871 goto out_unrec_sec;
872 }
873 break;
874 case Opt_proto:
875 string = match_strdup(args);
876 if (string == NULL)
877 goto out_nomem;
878 token = match_token(string,
879 nfs_xprt_protocol_tokens, args);
880 kfree(string);
881
882 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400883 case Opt_xprt_udp:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400884 mnt->flags &= ~NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400885 mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400886 mnt->timeo = 7;
887 mnt->retrans = 5;
888 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400889 case Opt_xprt_tcp:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400890 mnt->flags |= NFS_MOUNT_TCP;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400891 mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400892 mnt->timeo = 600;
893 mnt->retrans = 2;
894 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400895 case Opt_xprt_rdma:
896 /* vector side protocols to TCP */
897 mnt->flags |= NFS_MOUNT_TCP;
898 mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA;
899 mnt->timeo = 600;
900 mnt->retrans = 2;
901 break;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400902 default:
903 goto out_unrec_xprt;
904 }
905 break;
906 case Opt_mountproto:
907 string = match_strdup(args);
908 if (string == NULL)
909 goto out_nomem;
910 token = match_token(string,
911 nfs_xprt_protocol_tokens, args);
912 kfree(string);
913
914 switch (token) {
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400915 case Opt_xprt_udp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400916 mnt->mount_server.protocol = XPRT_TRANSPORT_UDP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400917 break;
Chuck Leverfdb66ff2007-08-29 17:58:57 -0400918 case Opt_xprt_tcp:
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400919 mnt->mount_server.protocol = XPRT_TRANSPORT_TCP;
Chuck Leverbf0fd762007-07-01 12:13:44 -0400920 break;
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400921 case Opt_xprt_rdma: /* not used for side protocols */
Chuck Leverbf0fd762007-07-01 12:13:44 -0400922 default:
923 goto out_unrec_xprt;
924 }
925 break;
926 case Opt_addr:
927 string = match_strdup(args);
928 if (string == NULL)
929 goto out_nomem;
930 mnt->nfs_server.address.sin_family = AF_INET;
931 mnt->nfs_server.address.sin_addr.s_addr =
932 in_aton(string);
933 kfree(string);
934 break;
935 case Opt_clientaddr:
936 string = match_strdup(args);
937 if (string == NULL)
938 goto out_nomem;
939 mnt->client_address = string;
940 break;
Chuck Lever0ac83772007-09-11 18:01:04 -0400941 case Opt_mountaddr:
Chuck Leverbf0fd762007-07-01 12:13:44 -0400942 string = match_strdup(args);
943 if (string == NULL)
944 goto out_nomem;
945 mnt->mount_server.address.sin_family = AF_INET;
946 mnt->mount_server.address.sin_addr.s_addr =
947 in_aton(string);
948 kfree(string);
949 break;
950
951 case Opt_userspace:
952 case Opt_deprecated:
953 break;
954
955 default:
956 goto out_unknown;
957 }
958 }
959
960 return 1;
961
962out_nomem:
963 printk(KERN_INFO "NFS: not enough memory to parse option\n");
964 return 0;
965
966out_unrec_vers:
967 printk(KERN_INFO "NFS: unrecognized NFS version number\n");
968 return 0;
969
970out_unrec_xprt:
971 printk(KERN_INFO "NFS: unrecognized transport protocol\n");
972 return 0;
973
974out_unrec_sec:
975 printk(KERN_INFO "NFS: unrecognized security flavor\n");
976 return 0;
977
978out_unknown:
979 printk(KERN_INFO "NFS: unknown mount option: %s\n", p);
980 return 0;
981}
982
983/*
Chuck Lever0076d7b2007-07-01 12:13:49 -0400984 * Use the remote server's MOUNT service to request the NFS file handle
985 * corresponding to the provided path.
986 */
987static int nfs_try_mount(struct nfs_parsed_mount_data *args,
988 struct nfs_fh *root_fh)
989{
990 struct sockaddr_in sin;
991 int status;
992
993 if (args->mount_server.version == 0) {
994 if (args->flags & NFS_MOUNT_VER3)
995 args->mount_server.version = NFS_MNT3_VERSION;
996 else
997 args->mount_server.version = NFS_MNT_VERSION;
998 }
999
1000 /*
1001 * Construct the mount server's address.
1002 */
1003 if (args->mount_server.address.sin_addr.s_addr != INADDR_ANY)
1004 sin = args->mount_server.address;
1005 else
1006 sin = args->nfs_server.address;
James Lentiniaad70002007-09-24 17:32:49 -04001007 /*
1008 * autobind will be used if mount_server.port == 0
1009 */
1010 sin.sin_port = htons(args->mount_server.port);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001011
1012 /*
1013 * Now ask the mount server to map our export path
1014 * to a file handle.
1015 */
1016 status = nfs_mount((struct sockaddr *) &sin,
1017 sizeof(sin),
1018 args->nfs_server.hostname,
1019 args->nfs_server.export_path,
1020 args->mount_server.version,
1021 args->mount_server.protocol,
1022 root_fh);
Chuck Leverefd83402007-09-11 18:00:58 -04001023 if (status == 0)
1024 return 0;
Chuck Lever0076d7b2007-07-01 12:13:49 -04001025
Chuck Leverefd83402007-09-11 18:00:58 -04001026 dfprintk(MOUNT, "NFS: unable to mount server " NIPQUAD_FMT
1027 ", error %d\n", NIPQUAD(sin.sin_addr.s_addr), status);
Chuck Lever0076d7b2007-07-01 12:13:49 -04001028 return status;
1029}
1030
1031/*
David Howells54ceac42006-08-22 20:06:13 -04001032 * Validate the NFS2/NFS3 mount data
1033 * - fills in the mount root filehandle
Chuck Lever136d5582007-07-01 12:13:54 -04001034 *
1035 * For option strings, user space handles the following behaviors:
1036 *
1037 * + DNS: mapping server host name to IP address ("addr=" option)
1038 *
1039 * + failure mode: how to behave if a mount request can't be handled
1040 * immediately ("fg/bg" option)
1041 *
1042 * + retry: how often to retry a mount request ("retry=" option)
1043 *
1044 * + breaking back: trying proto=udp after proto=tcp, v2 after v3,
1045 * mountproto=tcp after mountproto=udp, and so on
1046 *
1047 * XXX: as far as I can tell, changing the NFS program number is not
1048 * supported in the NFS client.
David Howellsf7b422b2006-06-09 09:34:33 -04001049 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001050static int nfs_validate_mount_data(void *options,
1051 struct nfs_parsed_mount_data *args,
Chuck Lever136d5582007-07-01 12:13:54 -04001052 struct nfs_fh *mntfh,
1053 const char *dev_name)
David Howellsf7b422b2006-06-09 09:34:33 -04001054{
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001055 struct nfs_mount_data *data = (struct nfs_mount_data *)options;
Chuck Lever136d5582007-07-01 12:13:54 -04001056
Chuck Lever5df36e72007-07-01 12:12:56 -04001057 if (data == NULL)
1058 goto out_no_data;
David Howells54ceac42006-08-22 20:06:13 -04001059
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001060 memset(args, 0, sizeof(*args));
1061 args->flags = (NFS_MOUNT_VER3 | NFS_MOUNT_TCP);
1062 args->rsize = NFS_MAX_FILE_IO_SIZE;
1063 args->wsize = NFS_MAX_FILE_IO_SIZE;
1064 args->timeo = 600;
1065 args->retrans = 2;
1066 args->acregmin = 3;
1067 args->acregmax = 60;
1068 args->acdirmin = 30;
1069 args->acdirmax = 60;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001070 args->mount_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001071 args->mount_server.program = NFS_MNT_PROGRAM;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001072 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001073 args->nfs_server.program = NFS_PROGRAM;
1074
David Howellsf7b422b2006-06-09 09:34:33 -04001075 switch (data->version) {
Chuck Lever5df36e72007-07-01 12:12:56 -04001076 case 1:
1077 data->namlen = 0;
1078 case 2:
1079 data->bsize = 0;
1080 case 3:
1081 if (data->flags & NFS_MOUNT_VER3)
1082 goto out_no_v3;
1083 data->root.size = NFS2_FHSIZE;
1084 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1085 case 4:
1086 if (data->flags & NFS_MOUNT_SECFLAVOUR)
1087 goto out_no_sec;
1088 case 5:
1089 memset(data->context, 0, sizeof(data->context));
1090 case 6:
1091 if (data->flags & NFS_MOUNT_VER3)
1092 mntfh->size = data->root.size;
1093 else
1094 mntfh->size = NFS2_FHSIZE;
1095
1096 if (mntfh->size > sizeof(mntfh->data))
1097 goto out_invalid_fh;
1098
1099 memcpy(mntfh->data, data->root.data, mntfh->size);
1100 if (mntfh->size < sizeof(mntfh->data))
1101 memset(mntfh->data + mntfh->size, 0,
1102 sizeof(mntfh->data) - mntfh->size);
Chuck Lever6e88e062007-09-24 15:39:50 -04001103
1104 if (!nfs_verify_server_address((struct sockaddr *) &data->addr))
1105 goto out_no_address;
1106
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001107 /*
1108 * Translate to nfs_parsed_mount_data, which nfs_fill_super
1109 * can deal with.
1110 */
1111 args->flags = data->flags;
1112 args->rsize = data->rsize;
1113 args->wsize = data->wsize;
1114 args->flags = data->flags;
1115 args->timeo = data->timeo;
1116 args->retrans = data->retrans;
1117 args->acregmin = data->acregmin;
1118 args->acregmax = data->acregmax;
1119 args->acdirmin = data->acdirmin;
1120 args->acdirmax = data->acdirmax;
1121 args->nfs_server.address = data->addr;
1122 if (!(data->flags & NFS_MOUNT_TCP))
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001123 args->nfs_server.protocol = XPRT_TRANSPORT_UDP;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001124 /* N.B. caller will free nfs_server.hostname in all cases */
1125 args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL);
1126 args->namlen = data->namlen;
1127 args->bsize = data->bsize;
1128 args->auth_flavors[0] = data->pseudoflavor;
Chuck Lever5df36e72007-07-01 12:12:56 -04001129 break;
Chuck Lever136d5582007-07-01 12:13:54 -04001130 default: {
1131 unsigned int len;
1132 char *c;
1133 int status;
Chuck Lever136d5582007-07-01 12:13:54 -04001134
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001135 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever136d5582007-07-01 12:13:54 -04001136 return -EINVAL;
1137
Chuck Lever6e88e062007-09-24 15:39:50 -04001138 if (!nfs_verify_server_address((struct sockaddr *)
1139 &args->nfs_server.address))
1140 goto out_no_address;
1141
Chuck Lever136d5582007-07-01 12:13:54 -04001142 c = strchr(dev_name, ':');
1143 if (c == NULL)
1144 return -EINVAL;
Chuck Lever350c73a2007-08-29 17:59:01 -04001145 len = c - dev_name;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001146 /* N.B. caller will free nfs_server.hostname in all cases */
1147 args->nfs_server.hostname = kstrndup(dev_name, len, GFP_KERNEL);
Chuck Lever136d5582007-07-01 12:13:54 -04001148
1149 c++;
1150 if (strlen(c) > NFS_MAXPATHLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001151 return -ENAMETOOLONG;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001152 args->nfs_server.export_path = c;
Chuck Lever136d5582007-07-01 12:13:54 -04001153
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001154 status = nfs_try_mount(args, mntfh);
Chuck Lever136d5582007-07-01 12:13:54 -04001155 if (status)
Chuck Leverfdc6e2c2007-08-29 17:58:59 -04001156 return status;
Chuck Lever136d5582007-07-01 12:13:54 -04001157
Chuck Lever136d5582007-07-01 12:13:54 -04001158 break;
1159 }
David Howellsf7b422b2006-06-09 09:34:33 -04001160 }
David Howells54ceac42006-08-22 20:06:13 -04001161
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001162 if (!(args->flags & NFS_MOUNT_SECFLAVOUR))
1163 args->auth_flavors[0] = RPC_AUTH_UNIX;
Trond Myklebust36b15c52006-08-22 20:06:14 -04001164
David Howellsf7b422b2006-06-09 09:34:33 -04001165#ifndef CONFIG_NFS_V3
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001166 if (args->flags & NFS_MOUNT_VER3)
Chuck Lever5df36e72007-07-01 12:12:56 -04001167 goto out_v3_not_compiled;
1168#endif /* !CONFIG_NFS_V3 */
David Howells54ceac42006-08-22 20:06:13 -04001169
David Howells54ceac42006-08-22 20:06:13 -04001170 return 0;
Chuck Lever5df36e72007-07-01 12:12:56 -04001171
1172out_no_data:
1173 dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n");
1174 return -EINVAL;
1175
1176out_no_v3:
1177 dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n",
1178 data->version);
1179 return -EINVAL;
1180
1181out_no_sec:
1182 dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n");
1183 return -EINVAL;
1184
Chuck Lever5df36e72007-07-01 12:12:56 -04001185#ifndef CONFIG_NFS_V3
1186out_v3_not_compiled:
1187 dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n");
1188 return -EPROTONOSUPPORT;
1189#endif /* !CONFIG_NFS_V3 */
1190
1191out_no_address:
1192 dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n");
1193 return -EINVAL;
1194
1195out_invalid_fh:
1196 dfprintk(MOUNT, "NFS: invalid root filehandle\n");
1197 return -EINVAL;
David Howells54ceac42006-08-22 20:06:13 -04001198}
1199
1200/*
1201 * Initialise the common bits of the superblock
1202 */
1203static inline void nfs_initialise_sb(struct super_block *sb)
1204{
1205 struct nfs_server *server = NFS_SB(sb);
1206
1207 sb->s_magic = NFS_SUPER_MAGIC;
1208
1209 /* We probably want something more informative here */
1210 snprintf(sb->s_id, sizeof(sb->s_id),
1211 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
1212
1213 if (sb->s_blocksize == 0)
1214 sb->s_blocksize = nfs_block_bits(server->wsize,
1215 &sb->s_blocksize_bits);
1216
1217 if (server->flags & NFS_MOUNT_NOAC)
1218 sb->s_flags |= MS_SYNCHRONOUS;
1219
1220 nfs_super_set_maxbytes(sb, server->maxfilesize);
1221}
1222
1223/*
1224 * Finish setting up an NFS2/3 superblock
1225 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001226static void nfs_fill_super(struct super_block *sb,
1227 struct nfs_parsed_mount_data *data)
David Howells54ceac42006-08-22 20:06:13 -04001228{
1229 struct nfs_server *server = NFS_SB(sb);
1230
1231 sb->s_blocksize_bits = 0;
1232 sb->s_blocksize = 0;
1233 if (data->bsize)
1234 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
1235
1236 if (server->flags & NFS_MOUNT_VER3) {
1237 /* The VFS shouldn't apply the umask to mode bits. We will do
1238 * so ourselves when necessary.
1239 */
1240 sb->s_flags |= MS_POSIXACL;
1241 sb->s_time_gran = 1;
1242 }
1243
1244 sb->s_op = &nfs_sops;
1245 nfs_initialise_sb(sb);
1246}
1247
1248/*
1249 * Finish setting up a cloned NFS2/3 superblock
1250 */
1251static void nfs_clone_super(struct super_block *sb,
1252 const struct super_block *old_sb)
1253{
1254 struct nfs_server *server = NFS_SB(sb);
1255
1256 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1257 sb->s_blocksize = old_sb->s_blocksize;
1258 sb->s_maxbytes = old_sb->s_maxbytes;
1259
1260 if (server->flags & NFS_MOUNT_VER3) {
1261 /* The VFS shouldn't apply the umask to mode bits. We will do
1262 * so ourselves when necessary.
1263 */
1264 sb->s_flags |= MS_POSIXACL;
1265 sb->s_time_gran = 1;
1266 }
1267
1268 sb->s_op = old_sb->s_op;
1269 nfs_initialise_sb(sb);
1270}
1271
Trond Myklebust275a5d22007-05-16 16:53:28 -04001272#define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS)
1273
1274static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags)
1275{
1276 const struct nfs_server *a = s->s_fs_info;
1277 const struct rpc_clnt *clnt_a = a->client;
1278 const struct rpc_clnt *clnt_b = b->client;
1279
1280 if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK))
1281 goto Ebusy;
1282 if (a->nfs_client != b->nfs_client)
1283 goto Ebusy;
1284 if (a->flags != b->flags)
1285 goto Ebusy;
1286 if (a->wsize != b->wsize)
1287 goto Ebusy;
1288 if (a->rsize != b->rsize)
1289 goto Ebusy;
1290 if (a->acregmin != b->acregmin)
1291 goto Ebusy;
1292 if (a->acregmax != b->acregmax)
1293 goto Ebusy;
1294 if (a->acdirmin != b->acdirmin)
1295 goto Ebusy;
1296 if (a->acdirmax != b->acdirmax)
1297 goto Ebusy;
1298 if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor)
1299 goto Ebusy;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001300 return 1;
Trond Myklebust275a5d22007-05-16 16:53:28 -04001301Ebusy:
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001302 return 0;
1303}
1304
1305struct nfs_sb_mountdata {
1306 struct nfs_server *server;
1307 int mntflags;
1308};
1309
1310static int nfs_set_super(struct super_block *s, void *data)
1311{
1312 struct nfs_sb_mountdata *sb_mntdata = data;
1313 struct nfs_server *server = sb_mntdata->server;
1314 int ret;
1315
1316 s->s_flags = sb_mntdata->mntflags;
1317 s->s_fs_info = server;
1318 ret = set_anon_super(s, server);
1319 if (ret == 0)
1320 server->s_dev = s->s_dev;
1321 return ret;
1322}
1323
1324static int nfs_compare_super(struct super_block *sb, void *data)
1325{
1326 struct nfs_sb_mountdata *sb_mntdata = data;
1327 struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb);
1328 int mntflags = sb_mntdata->mntflags;
1329
1330 if (memcmp(&old->nfs_client->cl_addr,
1331 &server->nfs_client->cl_addr,
1332 sizeof(old->nfs_client->cl_addr)) != 0)
1333 return 0;
1334 /* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */
1335 if (old->flags & NFS_MOUNT_UNSHARED)
1336 return 0;
1337 if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0)
1338 return 0;
1339 return nfs_compare_mount_options(sb, server, mntflags);
Trond Myklebust275a5d22007-05-16 16:53:28 -04001340}
1341
David Howells54ceac42006-08-22 20:06:13 -04001342static int nfs_get_sb(struct file_system_type *fs_type,
1343 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
1344{
1345 struct nfs_server *server = NULL;
1346 struct super_block *s;
1347 struct nfs_fh mntfh;
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001348 struct nfs_parsed_mount_data data;
David Howells54ceac42006-08-22 20:06:13 -04001349 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001350 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001351 struct nfs_sb_mountdata sb_mntdata = {
1352 .mntflags = flags,
1353 };
David Howells54ceac42006-08-22 20:06:13 -04001354 int error;
1355
1356 /* Validate the mount data */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001357 error = nfs_validate_mount_data(raw_data, &data, &mntfh, dev_name);
David Howells54ceac42006-08-22 20:06:13 -04001358 if (error < 0)
Chuck Lever06559602007-07-01 12:12:35 -04001359 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001360
1361 /* Get a volume representation */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001362 server = nfs_create_server(&data, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001363 if (IS_ERR(server)) {
1364 error = PTR_ERR(server);
Chuck Lever06559602007-07-01 12:12:35 -04001365 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001366 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001367 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001368
Trond Myklebust75180df2007-05-16 16:53:28 -04001369 if (server->flags & NFS_MOUNT_UNSHARED)
1370 compare_super = NULL;
1371
David Howells54ceac42006-08-22 20:06:13 -04001372 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001373 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04001374 if (IS_ERR(s)) {
1375 error = PTR_ERR(s);
David Howells54ceac42006-08-22 20:06:13 -04001376 goto out_err_nosb;
Trond Myklebust816724e2006-06-24 08:41:41 -04001377 }
1378
David Howells54ceac42006-08-22 20:06:13 -04001379 if (s->s_fs_info != server) {
1380 nfs_free_server(server);
1381 server = NULL;
David Howellsf7b422b2006-06-09 09:34:33 -04001382 }
David Howells54ceac42006-08-22 20:06:13 -04001383
1384 if (!s->s_root) {
1385 /* initial superblock/root creation */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001386 nfs_fill_super(s, &data);
David Howells54ceac42006-08-22 20:06:13 -04001387 }
1388
1389 mntroot = nfs_get_root(s, &mntfh);
1390 if (IS_ERR(mntroot)) {
1391 error = PTR_ERR(mntroot);
1392 goto error_splat_super;
1393 }
1394
David Howellsf7b422b2006-06-09 09:34:33 -04001395 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04001396 mnt->mnt_sb = s;
1397 mnt->mnt_root = mntroot;
Chuck Lever06559602007-07-01 12:12:35 -04001398 error = 0;
1399
1400out:
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -04001401 kfree(data.nfs_server.hostname);
Chuck Lever06559602007-07-01 12:12:35 -04001402 return error;
Trond Myklebust816724e2006-06-24 08:41:41 -04001403
David Howells54ceac42006-08-22 20:06:13 -04001404out_err_nosb:
1405 nfs_free_server(server);
Chuck Lever06559602007-07-01 12:12:35 -04001406 goto out;
David Howells54ceac42006-08-22 20:06:13 -04001407
1408error_splat_super:
1409 up_write(&s->s_umount);
1410 deactivate_super(s);
Chuck Lever06559602007-07-01 12:12:35 -04001411 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001412}
1413
David Howells54ceac42006-08-22 20:06:13 -04001414/*
1415 * Destroy an NFS2/3 superblock
1416 */
David Howellsf7b422b2006-06-09 09:34:33 -04001417static void nfs_kill_super(struct super_block *s)
1418{
1419 struct nfs_server *server = NFS_SB(s);
1420
1421 kill_anon_super(s);
David Howells54ceac42006-08-22 20:06:13 -04001422 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04001423}
1424
David Howells54ceac42006-08-22 20:06:13 -04001425/*
1426 * Clone an NFS2/3 server record on xdev traversal (FSID-change)
1427 */
1428static int nfs_xdev_get_sb(struct file_system_type *fs_type, int flags,
1429 const char *dev_name, void *raw_data,
1430 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001431{
1432 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001433 struct super_block *s;
1434 struct nfs_server *server;
1435 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001436 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001437 struct nfs_sb_mountdata sb_mntdata = {
1438 .mntflags = flags,
1439 };
David Howells54ceac42006-08-22 20:06:13 -04001440 int error;
1441
1442 dprintk("--> nfs_xdev_get_sb()\n");
1443
1444 /* create a new volume representation */
1445 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1446 if (IS_ERR(server)) {
1447 error = PTR_ERR(server);
1448 goto out_err_noserver;
1449 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001450 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001451
Trond Myklebust75180df2007-05-16 16:53:28 -04001452 if (server->flags & NFS_MOUNT_UNSHARED)
1453 compare_super = NULL;
1454
David Howells54ceac42006-08-22 20:06:13 -04001455 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001456 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001457 if (IS_ERR(s)) {
1458 error = PTR_ERR(s);
1459 goto out_err_nosb;
1460 }
1461
1462 if (s->s_fs_info != server) {
1463 nfs_free_server(server);
1464 server = NULL;
1465 }
1466
1467 if (!s->s_root) {
1468 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001469 nfs_clone_super(s, data->sb);
1470 }
1471
1472 mntroot = nfs_get_root(s, data->fh);
1473 if (IS_ERR(mntroot)) {
1474 error = PTR_ERR(mntroot);
1475 goto error_splat_super;
1476 }
Neil Brown4c1fe2f2007-11-01 16:50:20 +11001477 if (mntroot->d_inode->i_op != &nfs_dir_inode_operations) {
1478 dput(mntroot);
1479 error = -ESTALE;
1480 goto error_splat_super;
1481 }
David Howells54ceac42006-08-22 20:06:13 -04001482
1483 s->s_flags |= MS_ACTIVE;
1484 mnt->mnt_sb = s;
1485 mnt->mnt_root = mntroot;
1486
1487 dprintk("<-- nfs_xdev_get_sb() = 0\n");
1488 return 0;
1489
1490out_err_nosb:
1491 nfs_free_server(server);
1492out_err_noserver:
1493 dprintk("<-- nfs_xdev_get_sb() = %d [error]\n", error);
1494 return error;
1495
1496error_splat_super:
1497 up_write(&s->s_umount);
1498 deactivate_super(s);
1499 dprintk("<-- nfs_xdev_get_sb() = %d [splat]\n", error);
1500 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04001501}
1502
1503#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -04001504
1505/*
1506 * Finish setting up a cloned NFS4 superblock
1507 */
1508static void nfs4_clone_super(struct super_block *sb,
1509 const struct super_block *old_sb)
David Howellsf7b422b2006-06-09 09:34:33 -04001510{
David Howells54ceac42006-08-22 20:06:13 -04001511 sb->s_blocksize_bits = old_sb->s_blocksize_bits;
1512 sb->s_blocksize = old_sb->s_blocksize;
1513 sb->s_maxbytes = old_sb->s_maxbytes;
1514 sb->s_time_gran = 1;
1515 sb->s_op = old_sb->s_op;
1516 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04001517}
1518
1519/*
1520 * Set up an NFS4 superblock
1521 */
David Howells54ceac42006-08-22 20:06:13 -04001522static void nfs4_fill_super(struct super_block *sb)
David Howellsf7b422b2006-06-09 09:34:33 -04001523{
David Howellsf7b422b2006-06-09 09:34:33 -04001524 sb->s_time_gran = 1;
David Howellsf7b422b2006-06-09 09:34:33 -04001525 sb->s_op = &nfs4_sops;
David Howells54ceac42006-08-22 20:06:13 -04001526 nfs_initialise_sb(sb);
David Howellsf7b422b2006-06-09 09:34:33 -04001527}
1528
David Howells54ceac42006-08-22 20:06:13 -04001529/*
Chuck Leverf0768eb2007-07-01 12:13:01 -04001530 * Validate NFSv4 mount options
1531 */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001532static int nfs4_validate_mount_data(void *options,
1533 struct nfs_parsed_mount_data *args,
1534 const char *dev_name)
Chuck Leverf0768eb2007-07-01 12:13:01 -04001535{
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001536 struct nfs4_mount_data *data = (struct nfs4_mount_data *)options;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001537 char *c;
1538
1539 if (data == NULL)
1540 goto out_no_data;
1541
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001542 memset(args, 0, sizeof(*args));
1543 args->rsize = NFS_MAX_FILE_IO_SIZE;
1544 args->wsize = NFS_MAX_FILE_IO_SIZE;
1545 args->timeo = 600;
1546 args->retrans = 2;
1547 args->acregmin = 3;
1548 args->acregmax = 60;
1549 args->acdirmin = 30;
1550 args->acdirmax = 60;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -04001551 args->nfs_server.protocol = XPRT_TRANSPORT_TCP;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001552
Chuck Leverf0768eb2007-07-01 12:13:01 -04001553 switch (data->version) {
1554 case 1:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001555 if (data->host_addrlen != sizeof(args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001556 goto out_no_address;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001557 if (copy_from_user(&args->nfs_server.address,
1558 data->host_addr,
Trond Myklebust20c71f52007-09-20 20:23:51 -04001559 sizeof(args->nfs_server.address)))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001560 return -EFAULT;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001561 if (args->nfs_server.address.sin_port == 0)
1562 args->nfs_server.address.sin_port = htons(NFS_PORT);
1563 if (!nfs_verify_server_address((struct sockaddr *)
1564 &args->nfs_server.address))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001565 goto out_no_address;
1566
1567 switch (data->auth_flavourlen) {
1568 case 0:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001569 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001570 break;
1571 case 1:
Trond Myklebust20c71f52007-09-20 20:23:51 -04001572 if (copy_from_user(&args->auth_flavors[0],
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001573 data->auth_flavours,
Trond Myklebust20c71f52007-09-20 20:23:51 -04001574 sizeof(args->auth_flavors[0])))
Chuck Leverf0768eb2007-07-01 12:13:01 -04001575 return -EFAULT;
1576 break;
1577 default:
1578 goto out_inval_auth;
1579 }
1580
1581 c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN);
1582 if (IS_ERR(c))
1583 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001584 args->nfs_server.hostname = c;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001585
1586 c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN);
1587 if (IS_ERR(c))
1588 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001589 args->nfs_server.export_path = c;
1590 dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c);
Chuck Leverf0768eb2007-07-01 12:13:01 -04001591
1592 c = strndup_user(data->client_addr.data, 16);
1593 if (IS_ERR(c))
1594 return PTR_ERR(c);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001595 args->client_address = c;
1596
1597 /*
1598 * Translate to nfs_parsed_mount_data, which nfs4_fill_super
1599 * can deal with.
1600 */
1601
1602 args->flags = data->flags & NFS4_MOUNT_FLAGMASK;
1603 args->rsize = data->rsize;
1604 args->wsize = data->wsize;
1605 args->timeo = data->timeo;
1606 args->retrans = data->retrans;
1607 args->acregmin = data->acregmin;
1608 args->acregmax = data->acregmax;
1609 args->acdirmin = data->acdirmin;
1610 args->acdirmax = data->acdirmax;
1611 args->nfs_server.protocol = data->proto;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001612
1613 break;
Chuck Lever80071222007-07-01 12:13:59 -04001614 default: {
1615 unsigned int len;
Chuck Lever80071222007-07-01 12:13:59 -04001616
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001617 if (nfs_parse_mount_options((char *)options, args) == 0)
Chuck Lever80071222007-07-01 12:13:59 -04001618 return -EINVAL;
1619
1620 if (!nfs_verify_server_address((struct sockaddr *)
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001621 &args->nfs_server.address))
Chuck Lever80071222007-07-01 12:13:59 -04001622 return -EINVAL;
Chuck Lever80071222007-07-01 12:13:59 -04001623
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001624 switch (args->auth_flavor_len) {
Chuck Lever80071222007-07-01 12:13:59 -04001625 case 0:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001626 args->auth_flavors[0] = RPC_AUTH_UNIX;
Chuck Lever80071222007-07-01 12:13:59 -04001627 break;
1628 case 1:
Chuck Lever80071222007-07-01 12:13:59 -04001629 break;
1630 default:
1631 goto out_inval_auth;
1632 }
1633
1634 /*
Chuck Lever80071222007-07-01 12:13:59 -04001635 * Split "dev_name" into "hostname:mntpath".
1636 */
1637 c = strchr(dev_name, ':');
1638 if (c == NULL)
1639 return -EINVAL;
1640 /* while calculating len, pretend ':' is '\0' */
1641 len = c - dev_name;
1642 if (len > NFS4_MAXNAMLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001643 return -ENAMETOOLONG;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001644 args->nfs_server.hostname = kzalloc(len, GFP_KERNEL);
1645 if (args->nfs_server.hostname == NULL)
Chuck Lever80071222007-07-01 12:13:59 -04001646 return -ENOMEM;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001647 strncpy(args->nfs_server.hostname, dev_name, len - 1);
Chuck Lever80071222007-07-01 12:13:59 -04001648
1649 c++; /* step over the ':' */
1650 len = strlen(c);
1651 if (len > NFS4_MAXPATHLEN)
Chuck Lever7d1cca722007-08-29 17:59:03 -04001652 return -ENAMETOOLONG;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001653 args->nfs_server.export_path = kzalloc(len + 1, GFP_KERNEL);
1654 if (args->nfs_server.export_path == NULL)
Chuck Lever80071222007-07-01 12:13:59 -04001655 return -ENOMEM;
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001656 strncpy(args->nfs_server.export_path, c, len);
Chuck Lever80071222007-07-01 12:13:59 -04001657
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001658 dprintk("MNTPATH: %s\n", args->nfs_server.export_path);
Chuck Lever80071222007-07-01 12:13:59 -04001659
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001660 if (args->client_address == NULL)
Jeff Layton0a87cf12007-07-18 11:28:43 -04001661 goto out_no_client_address;
1662
Chuck Lever80071222007-07-01 12:13:59 -04001663 break;
1664 }
Chuck Leverf0768eb2007-07-01 12:13:01 -04001665 }
1666
1667 return 0;
1668
1669out_no_data:
1670 dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n");
1671 return -EINVAL;
1672
1673out_inval_auth:
1674 dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n",
1675 data->auth_flavourlen);
1676 return -EINVAL;
1677
1678out_no_address:
1679 dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n");
1680 return -EINVAL;
Jeff Layton0a87cf12007-07-18 11:28:43 -04001681
1682out_no_client_address:
1683 dfprintk(MOUNT, "NFS4: mount program didn't pass callback address\n");
1684 return -EINVAL;
Chuck Leverf0768eb2007-07-01 12:13:01 -04001685}
1686
1687/*
David Howells54ceac42006-08-22 20:06:13 -04001688 * Get the superblock for an NFS4 mountpoint
1689 */
Trond Myklebust816724e2006-06-24 08:41:41 -04001690static int nfs4_get_sb(struct file_system_type *fs_type,
1691 int flags, const char *dev_name, void *raw_data, struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001692{
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001693 struct nfs_parsed_mount_data data;
David Howells54ceac42006-08-22 20:06:13 -04001694 struct super_block *s;
1695 struct nfs_server *server;
David Howells54ceac42006-08-22 20:06:13 -04001696 struct nfs_fh mntfh;
1697 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001698 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001699 struct nfs_sb_mountdata sb_mntdata = {
1700 .mntflags = flags,
1701 };
David Howells54ceac42006-08-22 20:06:13 -04001702 int error;
David Howellsf7b422b2006-06-09 09:34:33 -04001703
Chuck Leverf0768eb2007-07-01 12:13:01 -04001704 /* Validate the mount data */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001705 error = nfs4_validate_mount_data(raw_data, &data, dev_name);
Chuck Leverf0768eb2007-07-01 12:13:01 -04001706 if (error < 0)
1707 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001708
David Howells54ceac42006-08-22 20:06:13 -04001709 /* Get a volume representation */
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001710 server = nfs4_create_server(&data, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001711 if (IS_ERR(server)) {
1712 error = PTR_ERR(server);
Chuck Lever29eb9812007-07-01 12:12:30 -04001713 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001714 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001715 sb_mntdata.server = server;
David Howellsf7b422b2006-06-09 09:34:33 -04001716
Trond Myklebust75180df2007-05-16 16:53:28 -04001717 if (server->flags & NFS4_MOUNT_UNSHARED)
1718 compare_super = NULL;
1719
David Howells54ceac42006-08-22 20:06:13 -04001720 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001721 s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata);
Trond Myklebust816724e2006-06-24 08:41:41 -04001722 if (IS_ERR(s)) {
1723 error = PTR_ERR(s);
David Howellsf7b422b2006-06-09 09:34:33 -04001724 goto out_free;
Trond Myklebust816724e2006-06-24 08:41:41 -04001725 }
1726
Trond Myklebust5dd31772006-08-24 01:03:05 -04001727 if (s->s_fs_info != server) {
1728 nfs_free_server(server);
1729 server = NULL;
1730 }
1731
David Howells54ceac42006-08-22 20:06:13 -04001732 if (!s->s_root) {
1733 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001734 nfs4_fill_super(s);
Trond Myklebust816724e2006-06-24 08:41:41 -04001735 }
David Howellsf7b422b2006-06-09 09:34:33 -04001736
David Howells54ceac42006-08-22 20:06:13 -04001737 mntroot = nfs4_get_root(s, &mntfh);
1738 if (IS_ERR(mntroot)) {
1739 error = PTR_ERR(mntroot);
1740 goto error_splat_super;
David Howellsf7b422b2006-06-09 09:34:33 -04001741 }
David Howells54ceac42006-08-22 20:06:13 -04001742
David Howellsf7b422b2006-06-09 09:34:33 -04001743 s->s_flags |= MS_ACTIVE;
David Howells54ceac42006-08-22 20:06:13 -04001744 mnt->mnt_sb = s;
1745 mnt->mnt_root = mntroot;
Chuck Lever29eb9812007-07-01 12:12:30 -04001746 error = 0;
David Howells54ceac42006-08-22 20:06:13 -04001747
Chuck Lever29eb9812007-07-01 12:12:30 -04001748out:
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -04001749 kfree(data.client_address);
1750 kfree(data.nfs_server.export_path);
1751 kfree(data.nfs_server.hostname);
Trond Myklebust816724e2006-06-24 08:41:41 -04001752 return error;
David Howells54ceac42006-08-22 20:06:13 -04001753
Chuck Lever29eb9812007-07-01 12:12:30 -04001754out_free:
1755 nfs_free_server(server);
1756 goto out;
1757
David Howells54ceac42006-08-22 20:06:13 -04001758error_splat_super:
1759 up_write(&s->s_umount);
1760 deactivate_super(s);
Chuck Lever29eb9812007-07-01 12:12:30 -04001761 goto out;
David Howellsf7b422b2006-06-09 09:34:33 -04001762}
1763
1764static void nfs4_kill_super(struct super_block *sb)
1765{
1766 struct nfs_server *server = NFS_SB(sb);
1767
1768 nfs_return_all_delegations(sb);
1769 kill_anon_super(sb);
1770
1771 nfs4_renewd_prepare_shutdown(server);
David Howells54ceac42006-08-22 20:06:13 -04001772 nfs_free_server(server);
David Howellsf7b422b2006-06-09 09:34:33 -04001773}
1774
1775/*
David Howells54ceac42006-08-22 20:06:13 -04001776 * Clone an NFS4 server record on xdev traversal (FSID-change)
David Howellsf7b422b2006-06-09 09:34:33 -04001777 */
David Howells54ceac42006-08-22 20:06:13 -04001778static int nfs4_xdev_get_sb(struct file_system_type *fs_type, int flags,
1779 const char *dev_name, void *raw_data,
1780 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001781{
1782 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001783 struct super_block *s;
1784 struct nfs_server *server;
1785 struct dentry *mntroot;
Trond Myklebust75180df2007-05-16 16:53:28 -04001786 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001787 struct nfs_sb_mountdata sb_mntdata = {
1788 .mntflags = flags,
1789 };
David Howells54ceac42006-08-22 20:06:13 -04001790 int error;
1791
1792 dprintk("--> nfs4_xdev_get_sb()\n");
1793
1794 /* create a new volume representation */
1795 server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr);
1796 if (IS_ERR(server)) {
1797 error = PTR_ERR(server);
1798 goto out_err_noserver;
1799 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001800 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001801
Trond Myklebust75180df2007-05-16 16:53:28 -04001802 if (server->flags & NFS4_MOUNT_UNSHARED)
1803 compare_super = NULL;
1804
David Howells54ceac42006-08-22 20:06:13 -04001805 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001806 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001807 if (IS_ERR(s)) {
1808 error = PTR_ERR(s);
1809 goto out_err_nosb;
1810 }
1811
1812 if (s->s_fs_info != server) {
1813 nfs_free_server(server);
1814 server = NULL;
1815 }
1816
1817 if (!s->s_root) {
1818 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001819 nfs4_clone_super(s, data->sb);
1820 }
1821
1822 mntroot = nfs4_get_root(s, data->fh);
1823 if (IS_ERR(mntroot)) {
1824 error = PTR_ERR(mntroot);
1825 goto error_splat_super;
1826 }
1827
1828 s->s_flags |= MS_ACTIVE;
1829 mnt->mnt_sb = s;
1830 mnt->mnt_root = mntroot;
1831
1832 dprintk("<-- nfs4_xdev_get_sb() = 0\n");
1833 return 0;
1834
1835out_err_nosb:
1836 nfs_free_server(server);
1837out_err_noserver:
1838 dprintk("<-- nfs4_xdev_get_sb() = %d [error]\n", error);
1839 return error;
1840
1841error_splat_super:
1842 up_write(&s->s_umount);
1843 deactivate_super(s);
1844 dprintk("<-- nfs4_xdev_get_sb() = %d [splat]\n", error);
1845 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04001846}
1847
David Howells54ceac42006-08-22 20:06:13 -04001848/*
1849 * Create an NFS4 server record on referral traversal
1850 */
1851static int nfs4_referral_get_sb(struct file_system_type *fs_type, int flags,
1852 const char *dev_name, void *raw_data,
1853 struct vfsmount *mnt)
David Howellsf7b422b2006-06-09 09:34:33 -04001854{
1855 struct nfs_clone_mount *data = raw_data;
David Howells54ceac42006-08-22 20:06:13 -04001856 struct super_block *s;
1857 struct nfs_server *server;
1858 struct dentry *mntroot;
1859 struct nfs_fh mntfh;
Trond Myklebust75180df2007-05-16 16:53:28 -04001860 int (*compare_super)(struct super_block *, void *) = nfs_compare_super;
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001861 struct nfs_sb_mountdata sb_mntdata = {
1862 .mntflags = flags,
1863 };
David Howells54ceac42006-08-22 20:06:13 -04001864 int error;
1865
1866 dprintk("--> nfs4_referral_get_sb()\n");
1867
1868 /* create a new volume representation */
1869 server = nfs4_create_referral_server(data, &mntfh);
1870 if (IS_ERR(server)) {
1871 error = PTR_ERR(server);
1872 goto out_err_noserver;
1873 }
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001874 sb_mntdata.server = server;
David Howells54ceac42006-08-22 20:06:13 -04001875
Trond Myklebust75180df2007-05-16 16:53:28 -04001876 if (server->flags & NFS4_MOUNT_UNSHARED)
1877 compare_super = NULL;
1878
David Howells54ceac42006-08-22 20:06:13 -04001879 /* Get a superblock - note that we may end up sharing one that already exists */
Trond Myklebuste89a5a42007-08-31 10:45:17 -04001880 s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata);
David Howells54ceac42006-08-22 20:06:13 -04001881 if (IS_ERR(s)) {
1882 error = PTR_ERR(s);
1883 goto out_err_nosb;
1884 }
1885
1886 if (s->s_fs_info != server) {
1887 nfs_free_server(server);
1888 server = NULL;
1889 }
1890
1891 if (!s->s_root) {
1892 /* initial superblock/root creation */
David Howells54ceac42006-08-22 20:06:13 -04001893 nfs4_fill_super(s);
1894 }
1895
Trond Myklebustf2d0d852007-02-02 14:46:09 -08001896 mntroot = nfs4_get_root(s, &mntfh);
David Howells54ceac42006-08-22 20:06:13 -04001897 if (IS_ERR(mntroot)) {
1898 error = PTR_ERR(mntroot);
1899 goto error_splat_super;
1900 }
1901
1902 s->s_flags |= MS_ACTIVE;
1903 mnt->mnt_sb = s;
1904 mnt->mnt_root = mntroot;
1905
1906 dprintk("<-- nfs4_referral_get_sb() = 0\n");
1907 return 0;
1908
1909out_err_nosb:
1910 nfs_free_server(server);
1911out_err_noserver:
1912 dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error);
1913 return error;
1914
1915error_splat_super:
1916 up_write(&s->s_umount);
1917 deactivate_super(s);
1918 dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error);
1919 return error;
David Howellsf7b422b2006-06-09 09:34:33 -04001920}
1921
David Howells54ceac42006-08-22 20:06:13 -04001922#endif /* CONFIG_NFS_V4 */