| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1 | /* | 
 | 2 |  *  linux/fs/nfs/super.c | 
 | 3 |  * | 
 | 4 |  *  Copyright (C) 1992  Rick Sladkey | 
 | 5 |  * | 
 | 6 |  *  nfs superblock handling functions | 
 | 7 |  * | 
| Alan Cox | 526719b | 2008-10-27 15:19:48 +0000 | [diff] [blame] | 8 |  *  Modularised by Alan Cox <alan@lxorguk.ukuu.org.uk>, while hacking some | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 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 Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 16 |  * - 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 Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 21 |  */ | 
 | 22 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 23 | #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\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 36 | #include <linux/sunrpc/xprtsock.h> | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 37 | #include <linux/sunrpc/xprtrdma.h> | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 38 | #include <linux/nfs_fs.h> | 
 | 39 | #include <linux/nfs_mount.h> | 
 | 40 | #include <linux/nfs4_mount.h> | 
 | 41 | #include <linux/lockd/bind.h> | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 42 | #include <linux/seq_file.h> | 
 | 43 | #include <linux/mount.h> | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 44 | #include <linux/mnt_namespace.h> | 
 | 45 | #include <linux/namei.h> | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 46 | #include <linux/nfs_idmap.h> | 
 | 47 | #include <linux/vfs.h> | 
 | 48 | #include <linux/inet.h> | 
| Chuck Lever | fd00a8f | 2007-12-10 14:57:38 -0500 | [diff] [blame] | 49 | #include <linux/in6.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 50 | #include <linux/slab.h> | 
| Chuck Lever | fd00a8f | 2007-12-10 14:57:38 -0500 | [diff] [blame] | 51 | #include <net/ipv6.h> | 
| Chuck Lever | d8e7748 | 2008-06-23 12:37:01 -0400 | [diff] [blame] | 52 | #include <linux/netdevice.h> | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 53 | #include <linux/nfs_xdr.h> | 
| Adrian Bunk | b5d5dfb | 2007-02-12 00:53:40 -0800 | [diff] [blame] | 54 | #include <linux/magic.h> | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 55 | #include <linux/parser.h> | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 56 |  | 
 | 57 | #include <asm/system.h> | 
 | 58 | #include <asm/uaccess.h> | 
 | 59 |  | 
 | 60 | #include "nfs4_fs.h" | 
 | 61 | #include "callback.h" | 
 | 62 | #include "delegation.h" | 
 | 63 | #include "iostat.h" | 
 | 64 | #include "internal.h" | 
| David Howells | 0873404 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 65 | #include "fscache.h" | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 66 |  | 
 | 67 | #define NFSDBG_FACILITY		NFSDBG_VFS | 
 | 68 |  | 
| Paulius Zaleckas | 1e657bd | 2010-10-31 18:21:05 +0200 | [diff] [blame] | 69 | #ifdef CONFIG_NFS_V3 | 
 | 70 | #define NFS_DEFAULT_VERSION 3 | 
 | 71 | #else | 
 | 72 | #define NFS_DEFAULT_VERSION 2 | 
 | 73 | #endif | 
 | 74 |  | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 75 | enum { | 
 | 76 | 	/* Mount options that take no arguments */ | 
 | 77 | 	Opt_soft, Opt_hard, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 78 | 	Opt_posix, Opt_noposix, | 
 | 79 | 	Opt_cto, Opt_nocto, | 
 | 80 | 	Opt_ac, Opt_noac, | 
 | 81 | 	Opt_lock, Opt_nolock, | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 82 | 	Opt_v2, Opt_v3, Opt_v4, | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 83 | 	Opt_udp, Opt_tcp, Opt_rdma, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 84 | 	Opt_acl, Opt_noacl, | 
 | 85 | 	Opt_rdirplus, Opt_nordirplus, | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 86 | 	Opt_sharecache, Opt_nosharecache, | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 87 | 	Opt_resvport, Opt_noresvport, | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 88 | 	Opt_fscache, Opt_nofscache, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 89 |  | 
 | 90 | 	/* Mount options that take integer arguments */ | 
 | 91 | 	Opt_port, | 
 | 92 | 	Opt_rsize, Opt_wsize, Opt_bsize, | 
 | 93 | 	Opt_timeo, Opt_retrans, | 
 | 94 | 	Opt_acregmin, Opt_acregmax, | 
 | 95 | 	Opt_acdirmin, Opt_acdirmax, | 
 | 96 | 	Opt_actimeo, | 
 | 97 | 	Opt_namelen, | 
 | 98 | 	Opt_mountport, | 
| Chuck Lever | e887cbc | 2007-10-26 13:32:29 -0400 | [diff] [blame] | 99 | 	Opt_mountvers, | 
| Chuck Lever | ad879ce | 2007-10-26 13:32:24 -0400 | [diff] [blame] | 100 | 	Opt_nfsvers, | 
| Mike Sager | 3fd5be9 | 2009-04-01 09:21:48 -0400 | [diff] [blame] | 101 | 	Opt_minorversion, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 102 |  | 
 | 103 | 	/* Mount options that take string arguments */ | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 104 | 	Opt_sec, Opt_proto, Opt_mountproto, Opt_mounthost, | 
| Chuck Lever | 0ac8377 | 2007-09-11 18:01:04 -0400 | [diff] [blame] | 105 | 	Opt_addr, Opt_mountaddr, Opt_clientaddr, | 
| Trond Myklebust | 7973c1f | 2008-07-15 17:58:14 -0400 | [diff] [blame] | 106 | 	Opt_lookupcache, | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 107 | 	Opt_fscache_uniq, | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 108 | 	Opt_local_lock, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 109 |  | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 110 | 	/* Special mount options */ | 
 | 111 | 	Opt_userspace, Opt_deprecated, Opt_sloppy, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 112 |  | 
 | 113 | 	Opt_err | 
 | 114 | }; | 
 | 115 |  | 
| Steven Whitehouse | a447c09 | 2008-10-13 10:46:57 +0100 | [diff] [blame] | 116 | static const match_table_t nfs_mount_option_tokens = { | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 117 | 	{ Opt_userspace, "bg" }, | 
 | 118 | 	{ Opt_userspace, "fg" }, | 
| Chuck Lever | ecbb384 | 2008-06-12 12:37:33 -0400 | [diff] [blame] | 119 | 	{ Opt_userspace, "retry=%s" }, | 
 | 120 |  | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 121 | 	{ Opt_sloppy, "sloppy" }, | 
 | 122 |  | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 123 | 	{ Opt_soft, "soft" }, | 
 | 124 | 	{ Opt_hard, "hard" }, | 
| Chuck Lever | d33e4df | 2008-06-12 12:37:41 -0400 | [diff] [blame] | 125 | 	{ Opt_deprecated, "intr" }, | 
 | 126 | 	{ Opt_deprecated, "nointr" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 127 | 	{ Opt_posix, "posix" }, | 
 | 128 | 	{ Opt_noposix, "noposix" }, | 
 | 129 | 	{ Opt_cto, "cto" }, | 
 | 130 | 	{ Opt_nocto, "nocto" }, | 
 | 131 | 	{ Opt_ac, "ac" }, | 
 | 132 | 	{ Opt_noac, "noac" }, | 
 | 133 | 	{ Opt_lock, "lock" }, | 
 | 134 | 	{ Opt_nolock, "nolock" }, | 
 | 135 | 	{ Opt_v2, "v2" }, | 
 | 136 | 	{ Opt_v3, "v3" }, | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 137 | 	{ Opt_v4, "v4" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 138 | 	{ Opt_udp, "udp" }, | 
 | 139 | 	{ Opt_tcp, "tcp" }, | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 140 | 	{ Opt_rdma, "rdma" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 141 | 	{ Opt_acl, "acl" }, | 
 | 142 | 	{ Opt_noacl, "noacl" }, | 
 | 143 | 	{ Opt_rdirplus, "rdirplus" }, | 
 | 144 | 	{ Opt_nordirplus, "nordirplus" }, | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 145 | 	{ Opt_sharecache, "sharecache" }, | 
 | 146 | 	{ Opt_nosharecache, "nosharecache" }, | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 147 | 	{ Opt_resvport, "resvport" }, | 
 | 148 | 	{ Opt_noresvport, "noresvport" }, | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 149 | 	{ Opt_fscache, "fsc" }, | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 150 | 	{ Opt_nofscache, "nofsc" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 151 |  | 
| Chuck Lever | a5a16ba | 2009-06-17 18:02:14 -0700 | [diff] [blame] | 152 | 	{ Opt_port, "port=%s" }, | 
 | 153 | 	{ Opt_rsize, "rsize=%s" }, | 
 | 154 | 	{ Opt_wsize, "wsize=%s" }, | 
 | 155 | 	{ Opt_bsize, "bsize=%s" }, | 
 | 156 | 	{ Opt_timeo, "timeo=%s" }, | 
 | 157 | 	{ Opt_retrans, "retrans=%s" }, | 
 | 158 | 	{ Opt_acregmin, "acregmin=%s" }, | 
 | 159 | 	{ Opt_acregmax, "acregmax=%s" }, | 
 | 160 | 	{ Opt_acdirmin, "acdirmin=%s" }, | 
 | 161 | 	{ Opt_acdirmax, "acdirmax=%s" }, | 
 | 162 | 	{ Opt_actimeo, "actimeo=%s" }, | 
 | 163 | 	{ Opt_namelen, "namlen=%s" }, | 
 | 164 | 	{ Opt_mountport, "mountport=%s" }, | 
 | 165 | 	{ Opt_mountvers, "mountvers=%s" }, | 
 | 166 | 	{ Opt_nfsvers, "nfsvers=%s" }, | 
 | 167 | 	{ Opt_nfsvers, "vers=%s" }, | 
| Chuck Lever | f3f4f4e | 2009-08-09 15:09:29 -0400 | [diff] [blame] | 168 | 	{ Opt_minorversion, "minorversion=%s" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 169 |  | 
 | 170 | 	{ Opt_sec, "sec=%s" }, | 
 | 171 | 	{ Opt_proto, "proto=%s" }, | 
 | 172 | 	{ Opt_mountproto, "mountproto=%s" }, | 
 | 173 | 	{ Opt_addr, "addr=%s" }, | 
 | 174 | 	{ Opt_clientaddr, "clientaddr=%s" }, | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 175 | 	{ Opt_mounthost, "mounthost=%s" }, | 
| Chuck Lever | 0ac8377 | 2007-09-11 18:01:04 -0400 | [diff] [blame] | 176 | 	{ Opt_mountaddr, "mountaddr=%s" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 177 |  | 
| Trond Myklebust | 7973c1f | 2008-07-15 17:58:14 -0400 | [diff] [blame] | 178 | 	{ Opt_lookupcache, "lookupcache=%s" }, | 
| Chuck Lever | a6d5ff6 | 2010-05-07 13:33:58 -0400 | [diff] [blame] | 179 | 	{ Opt_fscache_uniq, "fsc=%s" }, | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 180 | 	{ Opt_local_lock, "local_lock=%s" }, | 
| Trond Myklebust | 7973c1f | 2008-07-15 17:58:14 -0400 | [diff] [blame] | 181 |  | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 182 | 	{ Opt_err, NULL } | 
 | 183 | }; | 
 | 184 |  | 
 | 185 | enum { | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 186 | 	Opt_xprt_udp, Opt_xprt_udp6, Opt_xprt_tcp, Opt_xprt_tcp6, Opt_xprt_rdma, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 187 |  | 
 | 188 | 	Opt_xprt_err | 
 | 189 | }; | 
 | 190 |  | 
| Steven Whitehouse | a447c09 | 2008-10-13 10:46:57 +0100 | [diff] [blame] | 191 | static const match_table_t nfs_xprt_protocol_tokens = { | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 192 | 	{ Opt_xprt_udp, "udp" }, | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 193 | 	{ Opt_xprt_udp6, "udp6" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 194 | 	{ Opt_xprt_tcp, "tcp" }, | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 195 | 	{ Opt_xprt_tcp6, "tcp6" }, | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 196 | 	{ Opt_xprt_rdma, "rdma" }, | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 197 |  | 
 | 198 | 	{ Opt_xprt_err, NULL } | 
 | 199 | }; | 
 | 200 |  | 
 | 201 | enum { | 
 | 202 | 	Opt_sec_none, Opt_sec_sys, | 
 | 203 | 	Opt_sec_krb5, Opt_sec_krb5i, Opt_sec_krb5p, | 
 | 204 | 	Opt_sec_lkey, Opt_sec_lkeyi, Opt_sec_lkeyp, | 
 | 205 | 	Opt_sec_spkm, Opt_sec_spkmi, Opt_sec_spkmp, | 
 | 206 |  | 
 | 207 | 	Opt_sec_err | 
 | 208 | }; | 
 | 209 |  | 
| Steven Whitehouse | a447c09 | 2008-10-13 10:46:57 +0100 | [diff] [blame] | 210 | static const match_table_t nfs_secflavor_tokens = { | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 211 | 	{ Opt_sec_none, "none" }, | 
 | 212 | 	{ Opt_sec_none, "null" }, | 
 | 213 | 	{ Opt_sec_sys, "sys" }, | 
 | 214 |  | 
 | 215 | 	{ Opt_sec_krb5, "krb5" }, | 
 | 216 | 	{ Opt_sec_krb5i, "krb5i" }, | 
 | 217 | 	{ Opt_sec_krb5p, "krb5p" }, | 
 | 218 |  | 
 | 219 | 	{ Opt_sec_lkey, "lkey" }, | 
 | 220 | 	{ Opt_sec_lkeyi, "lkeyi" }, | 
 | 221 | 	{ Opt_sec_lkeyp, "lkeyp" }, | 
 | 222 |  | 
| Olga Kornievskaia | 8d04221 | 2008-02-13 16:47:06 -0500 | [diff] [blame] | 223 | 	{ Opt_sec_spkm, "spkm3" }, | 
 | 224 | 	{ Opt_sec_spkmi, "spkm3i" }, | 
 | 225 | 	{ Opt_sec_spkmp, "spkm3p" }, | 
 | 226 |  | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 227 | 	{ Opt_sec_err, NULL } | 
 | 228 | }; | 
 | 229 |  | 
| Trond Myklebust | 7973c1f | 2008-07-15 17:58:14 -0400 | [diff] [blame] | 230 | enum { | 
 | 231 | 	Opt_lookupcache_all, Opt_lookupcache_positive, | 
 | 232 | 	Opt_lookupcache_none, | 
 | 233 |  | 
 | 234 | 	Opt_lookupcache_err | 
 | 235 | }; | 
 | 236 |  | 
 | 237 | static match_table_t nfs_lookupcache_tokens = { | 
 | 238 | 	{ Opt_lookupcache_all, "all" }, | 
 | 239 | 	{ Opt_lookupcache_positive, "pos" }, | 
 | 240 | 	{ Opt_lookupcache_positive, "positive" }, | 
 | 241 | 	{ Opt_lookupcache_none, "none" }, | 
 | 242 |  | 
 | 243 | 	{ Opt_lookupcache_err, NULL } | 
 | 244 | }; | 
 | 245 |  | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 246 | enum { | 
 | 247 | 	Opt_local_lock_all, Opt_local_lock_flock, Opt_local_lock_posix, | 
 | 248 | 	Opt_local_lock_none, | 
 | 249 |  | 
 | 250 | 	Opt_local_lock_err | 
 | 251 | }; | 
 | 252 |  | 
 | 253 | static match_table_t nfs_local_lock_tokens = { | 
 | 254 | 	{ Opt_local_lock_all, "all" }, | 
 | 255 | 	{ Opt_local_lock_flock, "flock" }, | 
 | 256 | 	{ Opt_local_lock_posix, "posix" }, | 
 | 257 | 	{ Opt_local_lock_none, "none" }, | 
 | 258 |  | 
 | 259 | 	{ Opt_local_lock_err, NULL } | 
 | 260 | }; | 
 | 261 |  | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 262 |  | 
| Al Viro | 42faad9 | 2008-04-24 07:21:56 -0400 | [diff] [blame] | 263 | static void nfs_umount_begin(struct super_block *); | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 264 | static int  nfs_statfs(struct dentry *, struct kstatfs *); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 265 | static int  nfs_show_options(struct seq_file *, struct vfsmount *); | 
| Al Viro | c7f404b | 2011-03-16 06:59:40 -0400 | [diff] [blame] | 266 | static int  nfs_show_devname(struct seq_file *, struct vfsmount *); | 
 | 267 | static int  nfs_show_path(struct seq_file *, struct vfsmount *); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 268 | static int  nfs_show_stats(struct seq_file *, struct vfsmount *); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 269 | static struct dentry *nfs_fs_mount(struct file_system_type *, | 
 | 270 | 		int, const char *, void *); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 271 | static struct dentry *nfs_xdev_mount(struct file_system_type *fs_type, | 
 | 272 | 		int flags, const char *dev_name, void *raw_data); | 
| Trond Myklebust | 387c149 | 2010-02-03 08:27:35 -0500 | [diff] [blame] | 273 | static void nfs_put_super(struct super_block *); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 274 | static void nfs_kill_super(struct super_block *); | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 275 | static int nfs_remount(struct super_block *sb, int *flags, char *raw_data); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 276 |  | 
 | 277 | static struct file_system_type nfs_fs_type = { | 
 | 278 | 	.owner		= THIS_MODULE, | 
 | 279 | 	.name		= "nfs", | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 280 | 	.mount		= nfs_fs_mount, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 281 | 	.kill_sb	= nfs_kill_super, | 
| Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 282 | 	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 283 | }; | 
 | 284 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 285 | struct file_system_type nfs_xdev_fs_type = { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 286 | 	.owner		= THIS_MODULE, | 
 | 287 | 	.name		= "nfs", | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 288 | 	.mount		= nfs_xdev_mount, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 289 | 	.kill_sb	= nfs_kill_super, | 
| Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 290 | 	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 291 | }; | 
 | 292 |  | 
| Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 293 | static const struct super_operations nfs_sops = { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 294 | 	.alloc_inode	= nfs_alloc_inode, | 
 | 295 | 	.destroy_inode	= nfs_destroy_inode, | 
 | 296 | 	.write_inode	= nfs_write_inode, | 
| Trond Myklebust | 387c149 | 2010-02-03 08:27:35 -0500 | [diff] [blame] | 297 | 	.put_super	= nfs_put_super, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 298 | 	.statfs		= nfs_statfs, | 
| Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 299 | 	.evict_inode	= nfs_evict_inode, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 300 | 	.umount_begin	= nfs_umount_begin, | 
 | 301 | 	.show_options	= nfs_show_options, | 
| Al Viro | c7f404b | 2011-03-16 06:59:40 -0400 | [diff] [blame] | 302 | 	.show_devname	= nfs_show_devname, | 
 | 303 | 	.show_path	= nfs_show_path, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 304 | 	.show_stats	= nfs_show_stats, | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 305 | 	.remount_fs	= nfs_remount, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 306 | }; | 
 | 307 |  | 
 | 308 | #ifdef CONFIG_NFS_V4 | 
| Chuck Lever | 7630c85 | 2009-09-08 19:49:57 -0400 | [diff] [blame] | 309 | static int nfs4_validate_text_mount_data(void *options, | 
 | 310 | 	struct nfs_parsed_mount_data *args, const char *dev_name); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 311 | static struct dentry *nfs4_try_mount(int flags, const char *dev_name, | 
 | 312 | 	struct nfs_parsed_mount_data *data); | 
 | 313 | static struct dentry *nfs4_mount(struct file_system_type *fs_type, | 
 | 314 | 	int flags, const char *dev_name, void *raw_data); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 315 | static struct dentry *nfs4_remote_mount(struct file_system_type *fs_type, | 
 | 316 | 	int flags, const char *dev_name, void *raw_data); | 
 | 317 | static struct dentry *nfs4_xdev_mount(struct file_system_type *fs_type, | 
 | 318 | 	int flags, const char *dev_name, void *raw_data); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 319 | static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type, | 
 | 320 | 	int flags, const char *dev_name, void *raw_data); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 321 | static struct dentry *nfs4_remote_referral_mount(struct file_system_type *fs_type, | 
 | 322 | 	int flags, const char *dev_name, void *raw_data); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 323 | static void nfs4_kill_super(struct super_block *sb); | 
 | 324 |  | 
 | 325 | static struct file_system_type nfs4_fs_type = { | 
 | 326 | 	.owner		= THIS_MODULE, | 
 | 327 | 	.name		= "nfs4", | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 328 | 	.mount		= nfs4_mount, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 329 | 	.kill_sb	= nfs4_kill_super, | 
| Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 330 | 	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 331 | }; | 
 | 332 |  | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 333 | static struct file_system_type nfs4_remote_fs_type = { | 
 | 334 | 	.owner		= THIS_MODULE, | 
 | 335 | 	.name		= "nfs4", | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 336 | 	.mount		= nfs4_remote_mount, | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 337 | 	.kill_sb	= nfs4_kill_super, | 
 | 338 | 	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA, | 
 | 339 | }; | 
 | 340 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 341 | struct file_system_type nfs4_xdev_fs_type = { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 342 | 	.owner		= THIS_MODULE, | 
 | 343 | 	.name		= "nfs4", | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 344 | 	.mount		= nfs4_xdev_mount, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 345 | 	.kill_sb	= nfs4_kill_super, | 
| Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 346 | 	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 347 | }; | 
 | 348 |  | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 349 | static struct file_system_type nfs4_remote_referral_fs_type = { | 
 | 350 | 	.owner		= THIS_MODULE, | 
 | 351 | 	.name		= "nfs4", | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 352 | 	.mount		= nfs4_remote_referral_mount, | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 353 | 	.kill_sb	= nfs4_kill_super, | 
 | 354 | 	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA, | 
 | 355 | }; | 
 | 356 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 357 | struct file_system_type nfs4_referral_fs_type = { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 358 | 	.owner		= THIS_MODULE, | 
 | 359 | 	.name		= "nfs4", | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 360 | 	.mount		= nfs4_referral_mount, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 361 | 	.kill_sb	= nfs4_kill_super, | 
| Mark Fasheh | 349457c | 2006-09-08 14:22:21 -0700 | [diff] [blame] | 362 | 	.fs_flags	= FS_RENAME_DOES_D_MOVE|FS_REVAL_DOT|FS_BINARY_MOUNTDATA, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 363 | }; | 
 | 364 |  | 
| Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 365 | static const struct super_operations nfs4_sops = { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 366 | 	.alloc_inode	= nfs_alloc_inode, | 
 | 367 | 	.destroy_inode	= nfs_destroy_inode, | 
 | 368 | 	.write_inode	= nfs_write_inode, | 
| Trond Myklebust | 387c149 | 2010-02-03 08:27:35 -0500 | [diff] [blame] | 369 | 	.put_super	= nfs_put_super, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 370 | 	.statfs		= nfs_statfs, | 
| Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 371 | 	.evict_inode	= nfs4_evict_inode, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 372 | 	.umount_begin	= nfs_umount_begin, | 
 | 373 | 	.show_options	= nfs_show_options, | 
| Al Viro | c7f404b | 2011-03-16 06:59:40 -0400 | [diff] [blame] | 374 | 	.show_devname	= nfs_show_devname, | 
 | 375 | 	.show_path	= nfs_show_path, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 376 | 	.show_stats	= nfs_show_stats, | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 377 | 	.remount_fs	= nfs_remount, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 378 | }; | 
 | 379 | #endif | 
 | 380 |  | 
| Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 381 | static struct shrinker acl_shrinker = { | 
 | 382 | 	.shrink		= nfs_access_cache_shrinker, | 
 | 383 | 	.seeks		= DEFAULT_SEEKS, | 
 | 384 | }; | 
| Trond Myklebust | 979df72 | 2006-07-25 11:28:19 -0400 | [diff] [blame] | 385 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 386 | /* | 
 | 387 |  * Register the NFS filesystems | 
 | 388 |  */ | 
 | 389 | int __init register_nfs_fs(void) | 
 | 390 | { | 
 | 391 | 	int ret; | 
 | 392 |  | 
 | 393 |         ret = register_filesystem(&nfs_fs_type); | 
 | 394 | 	if (ret < 0) | 
 | 395 | 		goto error_0; | 
 | 396 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 397 | 	ret = nfs_register_sysctl(); | 
 | 398 | 	if (ret < 0) | 
 | 399 | 		goto error_1; | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 400 | #ifdef CONFIG_NFS_V4 | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 401 | 	ret = register_filesystem(&nfs4_fs_type); | 
 | 402 | 	if (ret < 0) | 
 | 403 | 		goto error_2; | 
 | 404 | #endif | 
| Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 405 | 	register_shrinker(&acl_shrinker); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 406 | 	return 0; | 
 | 407 |  | 
 | 408 | #ifdef CONFIG_NFS_V4 | 
 | 409 | error_2: | 
 | 410 | 	nfs_unregister_sysctl(); | 
| Peter Zijlstra | 89a0914 | 2007-03-16 13:38:26 -0800 | [diff] [blame] | 411 | #endif | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 412 | error_1: | 
 | 413 | 	unregister_filesystem(&nfs_fs_type); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 414 | error_0: | 
 | 415 | 	return ret; | 
 | 416 | } | 
 | 417 |  | 
 | 418 | /* | 
 | 419 |  * Unregister the NFS filesystems | 
 | 420 |  */ | 
 | 421 | void __exit unregister_nfs_fs(void) | 
 | 422 | { | 
| Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 423 | 	unregister_shrinker(&acl_shrinker); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 424 | #ifdef CONFIG_NFS_V4 | 
 | 425 | 	unregister_filesystem(&nfs4_fs_type); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 426 | #endif | 
| Alexey Dobriyan | 49af7ee | 2007-09-18 22:46:40 -0700 | [diff] [blame] | 427 | 	nfs_unregister_sysctl(); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 428 | 	unregister_filesystem(&nfs_fs_type); | 
 | 429 | } | 
 | 430 |  | 
| Trond Myklebust | 1daef0a | 2008-07-27 18:19:01 -0400 | [diff] [blame] | 431 | void nfs_sb_active(struct super_block *sb) | 
| Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 432 | { | 
 | 433 | 	struct nfs_server *server = NFS_SB(sb); | 
| Trond Myklebust | 1daef0a | 2008-07-27 18:19:01 -0400 | [diff] [blame] | 434 |  | 
 | 435 | 	if (atomic_inc_return(&server->active) == 1) | 
 | 436 | 		atomic_inc(&sb->s_active); | 
 | 437 | } | 
 | 438 |  | 
 | 439 | void nfs_sb_deactive(struct super_block *sb) | 
 | 440 | { | 
 | 441 | 	struct nfs_server *server = NFS_SB(sb); | 
 | 442 |  | 
 | 443 | 	if (atomic_dec_and_test(&server->active)) | 
 | 444 | 		deactivate_super(sb); | 
| Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 445 | } | 
 | 446 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 447 | /* | 
 | 448 |  * Deliver file system statistics to userspace | 
 | 449 |  */ | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 450 | static int nfs_statfs(struct dentry *dentry, struct kstatfs *buf) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 451 | { | 
| David Howells | 0c7d90c | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 452 | 	struct nfs_server *server = NFS_SB(dentry->d_sb); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 453 | 	unsigned char blockbits; | 
 | 454 | 	unsigned long blockres; | 
| David Howells | 0c7d90c | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 455 | 	struct nfs_fh *fh = NFS_FH(dentry->d_inode); | 
| Trond Myklebust | ca7e9a0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 456 | 	struct nfs_fsstat res; | 
 | 457 | 	int error = -ENOMEM; | 
 | 458 |  | 
 | 459 | 	res.fattr = nfs_alloc_fattr(); | 
 | 460 | 	if (res.fattr == NULL) | 
 | 461 | 		goto out_err; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 462 |  | 
| David Howells | 8fa5c00 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 463 | 	error = server->nfs_client->rpc_ops->statfs(server, fh, &res); | 
| Menyhart Zoltan | fbf3fdd | 2010-09-12 19:55:26 -0400 | [diff] [blame] | 464 | 	if (unlikely(error == -ESTALE)) { | 
 | 465 | 		struct dentry *pd_dentry; | 
| Trond Myklebust | ca7e9a0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 466 |  | 
| Menyhart Zoltan | fbf3fdd | 2010-09-12 19:55:26 -0400 | [diff] [blame] | 467 | 		pd_dentry = dget_parent(dentry); | 
 | 468 | 		if (pd_dentry != NULL) { | 
 | 469 | 			nfs_zap_caches(pd_dentry->d_inode); | 
 | 470 | 			dput(pd_dentry); | 
 | 471 | 		} | 
 | 472 | 	} | 
| Trond Myklebust | ca7e9a0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 473 | 	nfs_free_fattr(res.fattr); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 474 | 	if (error < 0) | 
 | 475 | 		goto out_err; | 
| Trond Myklebust | ca7e9a0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 476 |  | 
| Amnon Aaronsohn | 1a0ba9a | 2007-04-09 22:05:26 -0700 | [diff] [blame] | 477 | 	buf->f_type = NFS_SUPER_MAGIC; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 478 |  | 
 | 479 | 	/* | 
 | 480 | 	 * Current versions of glibc do not correctly handle the | 
 | 481 | 	 * case where f_frsize != f_bsize.  Eventually we want to | 
 | 482 | 	 * report the value of wtmult in this field. | 
 | 483 | 	 */ | 
| David Howells | 0c7d90c | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 484 | 	buf->f_frsize = dentry->d_sb->s_blocksize; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 485 |  | 
 | 486 | 	/* | 
 | 487 | 	 * On most *nix systems, f_blocks, f_bfree, and f_bavail | 
 | 488 | 	 * are reported in units of f_frsize.  Linux hasn't had | 
 | 489 | 	 * an f_frsize field in its statfs struct until recently, | 
 | 490 | 	 * thus historically Linux's sys_statfs reports these | 
 | 491 | 	 * fields in units of f_bsize. | 
 | 492 | 	 */ | 
| David Howells | 0c7d90c | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 493 | 	buf->f_bsize = dentry->d_sb->s_blocksize; | 
 | 494 | 	blockbits = dentry->d_sb->s_blocksize_bits; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 495 | 	blockres = (1 << blockbits) - 1; | 
 | 496 | 	buf->f_blocks = (res.tbytes + blockres) >> blockbits; | 
 | 497 | 	buf->f_bfree = (res.fbytes + blockres) >> blockbits; | 
 | 498 | 	buf->f_bavail = (res.abytes + blockres) >> blockbits; | 
 | 499 |  | 
 | 500 | 	buf->f_files = res.tfiles; | 
 | 501 | 	buf->f_ffree = res.afiles; | 
 | 502 |  | 
 | 503 | 	buf->f_namelen = server->namelen; | 
| Amnon Aaronsohn | 1a0ba9a | 2007-04-09 22:05:26 -0700 | [diff] [blame] | 504 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 505 | 	return 0; | 
 | 506 |  | 
 | 507 |  out_err: | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 508 | 	dprintk("%s: statfs error = %d\n", __func__, -error); | 
| Amnon Aaronsohn | 1a0ba9a | 2007-04-09 22:05:26 -0700 | [diff] [blame] | 509 | 	return error; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 510 | } | 
 | 511 |  | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 512 | /* | 
 | 513 |  * Map the security flavour number to a name | 
 | 514 |  */ | 
| Trond Myklebust | 81039f1 | 2006-06-09 09:34:34 -0400 | [diff] [blame] | 515 | static const char *nfs_pseudoflavour_to_name(rpc_authflavor_t flavour) | 
 | 516 | { | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 517 | 	static const struct { | 
| Trond Myklebust | 81039f1 | 2006-06-09 09:34:34 -0400 | [diff] [blame] | 518 | 		rpc_authflavor_t flavour; | 
 | 519 | 		const char *str; | 
 | 520 | 	} sec_flavours[] = { | 
 | 521 | 		{ RPC_AUTH_NULL, "null" }, | 
 | 522 | 		{ RPC_AUTH_UNIX, "sys" }, | 
 | 523 | 		{ RPC_AUTH_GSS_KRB5, "krb5" }, | 
 | 524 | 		{ RPC_AUTH_GSS_KRB5I, "krb5i" }, | 
 | 525 | 		{ RPC_AUTH_GSS_KRB5P, "krb5p" }, | 
 | 526 | 		{ RPC_AUTH_GSS_LKEY, "lkey" }, | 
 | 527 | 		{ RPC_AUTH_GSS_LKEYI, "lkeyi" }, | 
 | 528 | 		{ RPC_AUTH_GSS_LKEYP, "lkeyp" }, | 
 | 529 | 		{ RPC_AUTH_GSS_SPKM, "spkm" }, | 
 | 530 | 		{ RPC_AUTH_GSS_SPKMI, "spkmi" }, | 
 | 531 | 		{ RPC_AUTH_GSS_SPKMP, "spkmp" }, | 
| Chuck Lever | 4d81cd1 | 2007-07-01 12:12:40 -0400 | [diff] [blame] | 532 | 		{ UINT_MAX, "unknown" } | 
| Trond Myklebust | 81039f1 | 2006-06-09 09:34:34 -0400 | [diff] [blame] | 533 | 	}; | 
 | 534 | 	int i; | 
 | 535 |  | 
| Chuck Lever | 4d81cd1 | 2007-07-01 12:12:40 -0400 | [diff] [blame] | 536 | 	for (i = 0; sec_flavours[i].flavour != UINT_MAX; i++) { | 
| Trond Myklebust | 81039f1 | 2006-06-09 09:34:34 -0400 | [diff] [blame] | 537 | 		if (sec_flavours[i].flavour == flavour) | 
 | 538 | 			break; | 
 | 539 | 	} | 
 | 540 | 	return sec_flavours[i].str; | 
 | 541 | } | 
 | 542 |  | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 543 | static void nfs_show_mountd_netid(struct seq_file *m, struct nfs_server *nfss, | 
 | 544 | 				  int showdefaults) | 
 | 545 | { | 
 | 546 | 	struct sockaddr *sap = (struct sockaddr *) &nfss->mountd_address; | 
 | 547 |  | 
 | 548 | 	seq_printf(m, ",mountproto="); | 
 | 549 | 	switch (sap->sa_family) { | 
 | 550 | 	case AF_INET: | 
 | 551 | 		switch (nfss->mountd_protocol) { | 
 | 552 | 		case IPPROTO_UDP: | 
 | 553 | 			seq_printf(m, RPCBIND_NETID_UDP); | 
 | 554 | 			break; | 
 | 555 | 		case IPPROTO_TCP: | 
 | 556 | 			seq_printf(m, RPCBIND_NETID_TCP); | 
 | 557 | 			break; | 
 | 558 | 		default: | 
 | 559 | 			if (showdefaults) | 
 | 560 | 				seq_printf(m, "auto"); | 
 | 561 | 		} | 
 | 562 | 		break; | 
 | 563 | 	case AF_INET6: | 
 | 564 | 		switch (nfss->mountd_protocol) { | 
 | 565 | 		case IPPROTO_UDP: | 
 | 566 | 			seq_printf(m, RPCBIND_NETID_UDP6); | 
 | 567 | 			break; | 
 | 568 | 		case IPPROTO_TCP: | 
 | 569 | 			seq_printf(m, RPCBIND_NETID_TCP6); | 
 | 570 | 			break; | 
 | 571 | 		default: | 
 | 572 | 			if (showdefaults) | 
 | 573 | 				seq_printf(m, "auto"); | 
 | 574 | 		} | 
 | 575 | 		break; | 
 | 576 | 	default: | 
 | 577 | 		if (showdefaults) | 
 | 578 | 			seq_printf(m, "auto"); | 
 | 579 | 	} | 
 | 580 | } | 
 | 581 |  | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 582 | static void nfs_show_mountd_options(struct seq_file *m, struct nfs_server *nfss, | 
 | 583 | 				    int showdefaults) | 
 | 584 | { | 
 | 585 | 	struct sockaddr *sap = (struct sockaddr *)&nfss->mountd_address; | 
 | 586 |  | 
| Bryan Schumaker | d5eff1a | 2010-08-03 13:04:00 -0400 | [diff] [blame] | 587 | 	if (nfss->flags & NFS_MOUNT_LEGACY_INTERFACE) | 
 | 588 | 		return; | 
 | 589 |  | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 590 | 	switch (sap->sa_family) { | 
 | 591 | 	case AF_INET: { | 
 | 592 | 		struct sockaddr_in *sin = (struct sockaddr_in *)sap; | 
| Harvey Harrison | be85940 | 2008-10-31 00:56:28 -0700 | [diff] [blame] | 593 | 		seq_printf(m, ",mountaddr=%pI4", &sin->sin_addr.s_addr); | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 594 | 		break; | 
 | 595 | 	} | 
 | 596 | 	case AF_INET6: { | 
 | 597 | 		struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; | 
| Chuck Lever | d250e19 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 598 | 		seq_printf(m, ",mountaddr=%pI6c", &sin6->sin6_addr); | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 599 | 		break; | 
 | 600 | 	} | 
 | 601 | 	default: | 
 | 602 | 		if (showdefaults) | 
 | 603 | 			seq_printf(m, ",mountaddr=unspecified"); | 
 | 604 | 	} | 
 | 605 |  | 
 | 606 | 	if (nfss->mountd_version || showdefaults) | 
 | 607 | 		seq_printf(m, ",mountvers=%u", nfss->mountd_version); | 
| Stanislav Kinsbursky | aa69947 | 2010-12-08 12:40:13 +0300 | [diff] [blame] | 608 | 	if ((nfss->mountd_port && | 
 | 609 | 		nfss->mountd_port != (unsigned short)NFS_UNSPEC_PORT) || | 
 | 610 | 		showdefaults) | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 611 | 		seq_printf(m, ",mountport=%u", nfss->mountd_port); | 
 | 612 |  | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 613 | 	nfs_show_mountd_netid(m, nfss, showdefaults); | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 614 | } | 
 | 615 |  | 
| Trond Myklebust | 0be8189 | 2010-06-18 12:23:58 -0400 | [diff] [blame] | 616 | #ifdef CONFIG_NFS_V4 | 
 | 617 | static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss, | 
 | 618 | 				    int showdefaults) | 
 | 619 | { | 
 | 620 | 	struct nfs_client *clp = nfss->nfs_client; | 
 | 621 |  | 
 | 622 | 	seq_printf(m, ",clientaddr=%s", clp->cl_ipaddr); | 
 | 623 | 	seq_printf(m, ",minorversion=%u", clp->cl_minorversion); | 
 | 624 | } | 
 | 625 | #else | 
 | 626 | static void nfs_show_nfsv4_options(struct seq_file *m, struct nfs_server *nfss, | 
 | 627 | 				    int showdefaults) | 
 | 628 | { | 
 | 629 | } | 
 | 630 | #endif | 
 | 631 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 632 | /* | 
 | 633 |  * Describe the mount options in force on this server representation | 
 | 634 |  */ | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 635 | static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, | 
 | 636 | 				   int showdefaults) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 637 | { | 
| David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 638 | 	static const struct proc_nfs_info { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 639 | 		int flag; | 
| David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 640 | 		const char *str; | 
 | 641 | 		const char *nostr; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 642 | 	} nfs_info[] = { | 
 | 643 | 		{ NFS_MOUNT_SOFT, ",soft", ",hard" }, | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 644 | 		{ NFS_MOUNT_POSIX, ",posix", "" }, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 645 | 		{ NFS_MOUNT_NOCTO, ",nocto", "" }, | 
 | 646 | 		{ NFS_MOUNT_NOAC, ",noac", "" }, | 
 | 647 | 		{ NFS_MOUNT_NONLM, ",nolock", "" }, | 
 | 648 | 		{ NFS_MOUNT_NOACL, ",noacl", "" }, | 
| Steve Dickson | 74dd34e | 2007-04-14 17:01:15 -0400 | [diff] [blame] | 649 | 		{ NFS_MOUNT_NORDIRPLUS, ",nordirplus", "" }, | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 650 | 		{ NFS_MOUNT_UNSHARED, ",nosharecache", "" }, | 
 | 651 | 		{ NFS_MOUNT_NORESVPORT, ",noresvport", "" }, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 652 | 		{ 0, NULL, NULL } | 
 | 653 | 	}; | 
| David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 654 | 	const struct proc_nfs_info *nfs_infop; | 
| David Howells | 8fa5c00 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 655 | 	struct nfs_client *clp = nfss->nfs_client; | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 656 | 	u32 version = clp->rpc_ops->version; | 
| Suresh Jayaraman | 7c563cc | 2010-09-23 14:26:48 -0400 | [diff] [blame] | 657 | 	int local_flock, local_fcntl; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 658 |  | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 659 | 	seq_printf(m, ",vers=%u", version); | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 660 | 	seq_printf(m, ",rsize=%u", nfss->rsize); | 
 | 661 | 	seq_printf(m, ",wsize=%u", nfss->wsize); | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 662 | 	if (nfss->bsize != 0) | 
 | 663 | 		seq_printf(m, ",bsize=%u", nfss->bsize); | 
 | 664 | 	seq_printf(m, ",namlen=%u", nfss->namelen); | 
| Chuck Lever | 0e0cab7 | 2008-06-26 17:47:12 -0400 | [diff] [blame] | 665 | 	if (nfss->acregmin != NFS_DEF_ACREGMIN*HZ || showdefaults) | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 666 | 		seq_printf(m, ",acregmin=%u", nfss->acregmin/HZ); | 
| Chuck Lever | 0e0cab7 | 2008-06-26 17:47:12 -0400 | [diff] [blame] | 667 | 	if (nfss->acregmax != NFS_DEF_ACREGMAX*HZ || showdefaults) | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 668 | 		seq_printf(m, ",acregmax=%u", nfss->acregmax/HZ); | 
| Chuck Lever | 0e0cab7 | 2008-06-26 17:47:12 -0400 | [diff] [blame] | 669 | 	if (nfss->acdirmin != NFS_DEF_ACDIRMIN*HZ || showdefaults) | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 670 | 		seq_printf(m, ",acdirmin=%u", nfss->acdirmin/HZ); | 
| Chuck Lever | 0e0cab7 | 2008-06-26 17:47:12 -0400 | [diff] [blame] | 671 | 	if (nfss->acdirmax != NFS_DEF_ACDIRMAX*HZ || showdefaults) | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 672 | 		seq_printf(m, ",acdirmax=%u", nfss->acdirmax/HZ); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 673 | 	for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) { | 
 | 674 | 		if (nfss->flags & nfs_infop->flag) | 
 | 675 | 			seq_puts(m, nfs_infop->str); | 
 | 676 | 		else | 
 | 677 | 			seq_puts(m, nfs_infop->nostr); | 
 | 678 | 	} | 
| \"Talpey, Thomas\ | 56928ed | 2007-09-10 13:48:47 -0400 | [diff] [blame] | 679 | 	seq_printf(m, ",proto=%s", | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 680 | 		   rpc_peeraddr2str(nfss->client, RPC_DISPLAY_NETID)); | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 681 | 	if (version == 4) { | 
 | 682 | 		if (nfss->port != NFS_PORT) | 
 | 683 | 			seq_printf(m, ",port=%u", nfss->port); | 
 | 684 | 	} else | 
 | 685 | 		if (nfss->port) | 
 | 686 | 			seq_printf(m, ",port=%u", nfss->port); | 
 | 687 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 688 | 	seq_printf(m, ",timeo=%lu", 10U * nfss->client->cl_timeout->to_initval / HZ); | 
 | 689 | 	seq_printf(m, ",retrans=%u", nfss->client->cl_timeout->to_retries); | 
| Trond Myklebust | 81039f1 | 2006-06-09 09:34:34 -0400 | [diff] [blame] | 690 | 	seq_printf(m, ",sec=%s", nfs_pseudoflavour_to_name(nfss->client->cl_auth->au_flavor)); | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 691 |  | 
 | 692 | 	if (version != 4) | 
 | 693 | 		nfs_show_mountd_options(m, nfss, showdefaults); | 
| Trond Myklebust | 0be8189 | 2010-06-18 12:23:58 -0400 | [diff] [blame] | 694 | 	else | 
 | 695 | 		nfs_show_nfsv4_options(m, nfss, showdefaults); | 
| Chuck Lever | 82d101d | 2008-03-14 14:10:37 -0400 | [diff] [blame] | 696 |  | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 697 | 	if (nfss->options & NFS_OPTION_FSCACHE) | 
 | 698 | 		seq_printf(m, ",fsc"); | 
| Patrick J. LoPresti | 9b00c64 | 2010-08-10 17:28:01 -0400 | [diff] [blame] | 699 |  | 
 | 700 | 	if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONEG) { | 
 | 701 | 		if (nfss->flags & NFS_MOUNT_LOOKUP_CACHE_NONE) | 
 | 702 | 			seq_printf(m, ",lookupcache=none"); | 
 | 703 | 		else | 
 | 704 | 			seq_printf(m, ",lookupcache=pos"); | 
 | 705 | 	} | 
| Suresh Jayaraman | 7c563cc | 2010-09-23 14:26:48 -0400 | [diff] [blame] | 706 |  | 
 | 707 | 	local_flock = nfss->flags & NFS_MOUNT_LOCAL_FLOCK; | 
 | 708 | 	local_fcntl = nfss->flags & NFS_MOUNT_LOCAL_FCNTL; | 
 | 709 |  | 
 | 710 | 	if (!local_flock && !local_fcntl) | 
 | 711 | 		seq_printf(m, ",local_lock=none"); | 
 | 712 | 	else if (local_flock && local_fcntl) | 
 | 713 | 		seq_printf(m, ",local_lock=all"); | 
 | 714 | 	else if (local_flock) | 
 | 715 | 		seq_printf(m, ",local_lock=flock"); | 
 | 716 | 	else | 
 | 717 | 		seq_printf(m, ",local_lock=posix"); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 718 | } | 
 | 719 |  | 
 | 720 | /* | 
 | 721 |  * Describe the mount options on this VFS mountpoint | 
 | 722 |  */ | 
 | 723 | static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt) | 
 | 724 | { | 
 | 725 | 	struct nfs_server *nfss = NFS_SB(mnt->mnt_sb); | 
 | 726 |  | 
 | 727 | 	nfs_show_mount_options(m, nfss, 0); | 
 | 728 |  | 
| Chuck Lever | 5d8515c | 2007-12-10 14:57:16 -0500 | [diff] [blame] | 729 | 	seq_printf(m, ",addr=%s", | 
 | 730 | 			rpc_peeraddr2str(nfss->nfs_client->cl_rpcclient, | 
 | 731 | 							RPC_DISPLAY_ADDR)); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 732 |  | 
 | 733 | 	return 0; | 
 | 734 | } | 
 | 735 |  | 
| Al Viro | c7f404b | 2011-03-16 06:59:40 -0400 | [diff] [blame] | 736 | static int nfs_show_devname(struct seq_file *m, struct vfsmount *mnt) | 
 | 737 | { | 
 | 738 | 	char *page = (char *) __get_free_page(GFP_KERNEL); | 
 | 739 | 	char *devname, *dummy; | 
 | 740 | 	int err = 0; | 
 | 741 | 	if (!page) | 
 | 742 | 		return -ENOMEM; | 
 | 743 | 	devname = nfs_path(&dummy, mnt->mnt_root, page, PAGE_SIZE); | 
 | 744 | 	if (IS_ERR(devname)) | 
 | 745 | 		err = PTR_ERR(devname); | 
 | 746 | 	else | 
 | 747 | 		seq_escape(m, devname, " \t\n\\"); | 
 | 748 | 	free_page((unsigned long)page); | 
 | 749 | 	return err; | 
 | 750 | } | 
 | 751 |  | 
 | 752 | static int nfs_show_path(struct seq_file *m, struct vfsmount *mnt) | 
 | 753 | { | 
 | 754 | 	seq_puts(m, "/"); | 
 | 755 | 	return 0; | 
 | 756 | } | 
 | 757 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 758 | /* | 
 | 759 |  * Present statistical information for this VFS mountpoint | 
 | 760 |  */ | 
 | 761 | static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt) | 
 | 762 | { | 
 | 763 | 	int i, cpu; | 
 | 764 | 	struct nfs_server *nfss = NFS_SB(mnt->mnt_sb); | 
 | 765 | 	struct rpc_auth *auth = nfss->client->cl_auth; | 
 | 766 | 	struct nfs_iostats totals = { }; | 
 | 767 |  | 
 | 768 | 	seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS); | 
 | 769 |  | 
 | 770 | 	/* | 
 | 771 | 	 * Display all mount option settings | 
 | 772 | 	 */ | 
 | 773 | 	seq_printf(m, "\n\topts:\t"); | 
 | 774 | 	seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw"); | 
 | 775 | 	seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : ""); | 
 | 776 | 	seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : ""); | 
 | 777 | 	seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : ""); | 
 | 778 | 	nfs_show_mount_options(m, nfss, 1); | 
 | 779 |  | 
 | 780 | 	seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ); | 
 | 781 |  | 
 | 782 | 	seq_printf(m, "\n\tcaps:\t"); | 
 | 783 | 	seq_printf(m, "caps=0x%x", nfss->caps); | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 784 | 	seq_printf(m, ",wtmult=%u", nfss->wtmult); | 
 | 785 | 	seq_printf(m, ",dtsize=%u", nfss->dtsize); | 
 | 786 | 	seq_printf(m, ",bsize=%u", nfss->bsize); | 
 | 787 | 	seq_printf(m, ",namlen=%u", nfss->namelen); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 788 |  | 
 | 789 | #ifdef CONFIG_NFS_V4 | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 790 | 	if (nfss->nfs_client->rpc_ops->version == 4) { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 791 | 		seq_printf(m, "\n\tnfsv4:\t"); | 
 | 792 | 		seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]); | 
 | 793 | 		seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]); | 
 | 794 | 		seq_printf(m, ",acl=0x%x", nfss->acl_bitmask); | 
 | 795 | 	} | 
 | 796 | #endif | 
 | 797 |  | 
 | 798 | 	/* | 
 | 799 | 	 * Display security flavor in effect for this mount | 
 | 800 | 	 */ | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 801 | 	seq_printf(m, "\n\tsec:\tflavor=%u", auth->au_ops->au_flavor); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 802 | 	if (auth->au_flavor) | 
| Chuck Lever | 2d76743 | 2008-03-14 14:10:08 -0400 | [diff] [blame] | 803 | 		seq_printf(m, ",pseudoflavor=%u", auth->au_flavor); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 804 |  | 
 | 805 | 	/* | 
 | 806 | 	 * Display superblock I/O counters | 
 | 807 | 	 */ | 
 | 808 | 	for_each_possible_cpu(cpu) { | 
 | 809 | 		struct nfs_iostats *stats; | 
 | 810 |  | 
 | 811 | 		preempt_disable(); | 
 | 812 | 		stats = per_cpu_ptr(nfss->io_stats, cpu); | 
 | 813 |  | 
 | 814 | 		for (i = 0; i < __NFSIOS_COUNTSMAX; i++) | 
 | 815 | 			totals.events[i] += stats->events[i]; | 
 | 816 | 		for (i = 0; i < __NFSIOS_BYTESMAX; i++) | 
 | 817 | 			totals.bytes[i] += stats->bytes[i]; | 
| David Howells | 6a51091 | 2009-04-03 16:42:43 +0100 | [diff] [blame] | 818 | #ifdef CONFIG_NFS_FSCACHE | 
 | 819 | 		for (i = 0; i < __NFSIOS_FSCACHEMAX; i++) | 
 | 820 | 			totals.fscache[i] += stats->fscache[i]; | 
 | 821 | #endif | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 822 |  | 
 | 823 | 		preempt_enable(); | 
 | 824 | 	} | 
 | 825 |  | 
 | 826 | 	seq_printf(m, "\n\tevents:\t"); | 
 | 827 | 	for (i = 0; i < __NFSIOS_COUNTSMAX; i++) | 
 | 828 | 		seq_printf(m, "%lu ", totals.events[i]); | 
 | 829 | 	seq_printf(m, "\n\tbytes:\t"); | 
 | 830 | 	for (i = 0; i < __NFSIOS_BYTESMAX; i++) | 
 | 831 | 		seq_printf(m, "%Lu ", totals.bytes[i]); | 
| David Howells | 6a51091 | 2009-04-03 16:42:43 +0100 | [diff] [blame] | 832 | #ifdef CONFIG_NFS_FSCACHE | 
 | 833 | 	if (nfss->options & NFS_OPTION_FSCACHE) { | 
 | 834 | 		seq_printf(m, "\n\tfsc:\t"); | 
 | 835 | 		for (i = 0; i < __NFSIOS_FSCACHEMAX; i++) | 
 | 836 | 			seq_printf(m, "%Lu ", totals.bytes[i]); | 
 | 837 | 	} | 
 | 838 | #endif | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 839 | 	seq_printf(m, "\n"); | 
 | 840 |  | 
 | 841 | 	rpc_print_iostats(m, nfss->client); | 
 | 842 |  | 
 | 843 | 	return 0; | 
 | 844 | } | 
 | 845 |  | 
 | 846 | /* | 
 | 847 |  * Begin unmount by attempting to remove all automounted mountpoints we added | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 848 |  * in response to xdev traversals and referrals | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 849 |  */ | 
| Al Viro | 42faad9 | 2008-04-24 07:21:56 -0400 | [diff] [blame] | 850 | static void nfs_umount_begin(struct super_block *sb) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 851 | { | 
| Alessio Igor Bogani | 67e5520 | 2009-04-24 09:06:53 +0200 | [diff] [blame] | 852 | 	struct nfs_server *server; | 
| Trond Myklebust | fc6ae3c | 2007-06-05 19:13:47 -0400 | [diff] [blame] | 853 | 	struct rpc_clnt *rpc; | 
 | 854 |  | 
| Alessio Igor Bogani | 67e5520 | 2009-04-24 09:06:53 +0200 | [diff] [blame] | 855 | 	server = NFS_SB(sb); | 
| Trond Myklebust | fc6ae3c | 2007-06-05 19:13:47 -0400 | [diff] [blame] | 856 | 	/* -EIO all pending I/O */ | 
 | 857 | 	rpc = server->client_acl; | 
 | 858 | 	if (!IS_ERR(rpc)) | 
 | 859 | 		rpc_killall_tasks(rpc); | 
 | 860 | 	rpc = server->client; | 
 | 861 | 	if (!IS_ERR(rpc)) | 
 | 862 | 		rpc_killall_tasks(rpc); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 863 | } | 
 | 864 |  | 
| Trond Myklebust | c5811db | 2009-10-06 15:40:15 -0400 | [diff] [blame] | 865 | static struct nfs_parsed_mount_data *nfs_alloc_parsed_mount_data(unsigned int version) | 
| Chuck Lever | 9423a08 | 2009-09-23 14:36:38 -0400 | [diff] [blame] | 866 | { | 
 | 867 | 	struct nfs_parsed_mount_data *data; | 
 | 868 |  | 
 | 869 | 	data = kzalloc(sizeof(*data), GFP_KERNEL); | 
 | 870 | 	if (data) { | 
| Chuck Lever | 9423a08 | 2009-09-23 14:36:38 -0400 | [diff] [blame] | 871 | 		data->acregmin		= NFS_DEF_ACREGMIN; | 
 | 872 | 		data->acregmax		= NFS_DEF_ACREGMAX; | 
 | 873 | 		data->acdirmin		= NFS_DEF_ACDIRMIN; | 
 | 874 | 		data->acdirmax		= NFS_DEF_ACDIRMAX; | 
| Trond Myklebust | c5811db | 2009-10-06 15:40:15 -0400 | [diff] [blame] | 875 | 		data->mount_server.port	= NFS_UNSPEC_PORT; | 
| Chuck Lever | 9423a08 | 2009-09-23 14:36:38 -0400 | [diff] [blame] | 876 | 		data->nfs_server.port	= NFS_UNSPEC_PORT; | 
| Trond Myklebust | c5811db | 2009-10-06 15:40:15 -0400 | [diff] [blame] | 877 | 		data->nfs_server.protocol = XPRT_TRANSPORT_TCP; | 
| Chuck Lever | 9423a08 | 2009-09-23 14:36:38 -0400 | [diff] [blame] | 878 | 		data->auth_flavors[0]	= RPC_AUTH_UNIX; | 
 | 879 | 		data->auth_flavor_len	= 1; | 
| Trond Myklebust | c5811db | 2009-10-06 15:40:15 -0400 | [diff] [blame] | 880 | 		data->version		= version; | 
| Chuck Lever | 9423a08 | 2009-09-23 14:36:38 -0400 | [diff] [blame] | 881 | 		data->minorversion	= 0; | 
 | 882 | 	} | 
 | 883 | 	return data; | 
 | 884 | } | 
 | 885 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 886 | /* | 
| Chuck Lever | cdcd7f9 | 2007-12-10 14:57:45 -0500 | [diff] [blame] | 887 |  * Sanity-check a server address provided by the mount command. | 
 | 888 |  * | 
 | 889 |  * Address family must be initialized, and address must not be | 
 | 890 |  * the ANY address for that family. | 
| Chuck Lever | fc50d58 | 2007-07-01 12:12:46 -0400 | [diff] [blame] | 891 |  */ | 
 | 892 | static int nfs_verify_server_address(struct sockaddr *addr) | 
 | 893 | { | 
 | 894 | 	switch (addr->sa_family) { | 
 | 895 | 	case AF_INET: { | 
| Chuck Lever | cdcd7f9 | 2007-12-10 14:57:45 -0500 | [diff] [blame] | 896 | 		struct sockaddr_in *sa = (struct sockaddr_in *)addr; | 
| Al Viro | e6f1ceb | 2008-03-17 22:44:53 -0700 | [diff] [blame] | 897 | 		return sa->sin_addr.s_addr != htonl(INADDR_ANY); | 
| Chuck Lever | cdcd7f9 | 2007-12-10 14:57:45 -0500 | [diff] [blame] | 898 | 	} | 
 | 899 | 	case AF_INET6: { | 
 | 900 | 		struct in6_addr *sa = &((struct sockaddr_in6 *)addr)->sin6_addr; | 
 | 901 | 		return !ipv6_addr_any(sa); | 
| Chuck Lever | fc50d58 | 2007-07-01 12:12:46 -0400 | [diff] [blame] | 902 | 	} | 
 | 903 | 	} | 
 | 904 |  | 
| Chuck Lever | 53a0b9c | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 905 | 	dfprintk(MOUNT, "NFS: Invalid IP address specified\n"); | 
| Chuck Lever | fc50d58 | 2007-07-01 12:12:46 -0400 | [diff] [blame] | 906 | 	return 0; | 
 | 907 | } | 
 | 908 |  | 
| Chuck Lever | 9412b92 | 2007-12-10 14:59:21 -0500 | [diff] [blame] | 909 | /* | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 910 |  * Select between a default port value and a user-specified port value. | 
 | 911 |  * If a zero value is set, then autobind will be used. | 
 | 912 |  */ | 
| Trond Myklebust | f5855fe | 2009-10-06 15:40:37 -0400 | [diff] [blame] | 913 | static void nfs_set_port(struct sockaddr *sap, int *port, | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 914 | 				 const unsigned short default_port) | 
 | 915 | { | 
| Trond Myklebust | f5855fe | 2009-10-06 15:40:37 -0400 | [diff] [blame] | 916 | 	if (*port == NFS_UNSPEC_PORT) | 
 | 917 | 		*port = default_port; | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 918 |  | 
| Trond Myklebust | f5855fe | 2009-10-06 15:40:37 -0400 | [diff] [blame] | 919 | 	rpc_set_port(sap, *port); | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 920 | } | 
 | 921 |  | 
 | 922 | /* | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 923 |  * Sanity check the NFS transport protocol. | 
 | 924 |  * | 
 | 925 |  */ | 
 | 926 | static void nfs_validate_transport_protocol(struct nfs_parsed_mount_data *mnt) | 
 | 927 | { | 
 | 928 | 	switch (mnt->nfs_server.protocol) { | 
 | 929 | 	case XPRT_TRANSPORT_UDP: | 
 | 930 | 	case XPRT_TRANSPORT_TCP: | 
 | 931 | 	case XPRT_TRANSPORT_RDMA: | 
 | 932 | 		break; | 
 | 933 | 	default: | 
 | 934 | 		mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP; | 
 | 935 | 	} | 
 | 936 | } | 
 | 937 |  | 
 | 938 | /* | 
 | 939 |  * For text based NFSv2/v3 mounts, the mount protocol transport default | 
 | 940 |  * settings should depend upon the specified NFS transport. | 
 | 941 |  */ | 
 | 942 | static void nfs_set_mount_transport_protocol(struct nfs_parsed_mount_data *mnt) | 
 | 943 | { | 
 | 944 | 	nfs_validate_transport_protocol(mnt); | 
 | 945 |  | 
 | 946 | 	if (mnt->mount_server.protocol == XPRT_TRANSPORT_UDP || | 
 | 947 | 	    mnt->mount_server.protocol == XPRT_TRANSPORT_TCP) | 
 | 948 | 			return; | 
 | 949 | 	switch (mnt->nfs_server.protocol) { | 
 | 950 | 	case XPRT_TRANSPORT_UDP: | 
 | 951 | 		mnt->mount_server.protocol = XPRT_TRANSPORT_UDP; | 
 | 952 | 		break; | 
 | 953 | 	case XPRT_TRANSPORT_TCP: | 
 | 954 | 	case XPRT_TRANSPORT_RDMA: | 
 | 955 | 		mnt->mount_server.protocol = XPRT_TRANSPORT_TCP; | 
 | 956 | 	} | 
 | 957 | } | 
 | 958 |  | 
 | 959 | /* | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 960 |  * Parse the value of the 'sec=' option. | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 961 |  */ | 
 | 962 | static int nfs_parse_security_flavors(char *value, | 
 | 963 | 				      struct nfs_parsed_mount_data *mnt) | 
 | 964 | { | 
 | 965 | 	substring_t args[MAX_OPT_ARGS]; | 
 | 966 |  | 
 | 967 | 	dfprintk(MOUNT, "NFS: parsing sec=%s option\n", value); | 
 | 968 |  | 
 | 969 | 	switch (match_token(value, nfs_secflavor_tokens, args)) { | 
 | 970 | 	case Opt_sec_none: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 971 | 		mnt->auth_flavors[0] = RPC_AUTH_NULL; | 
 | 972 | 		break; | 
 | 973 | 	case Opt_sec_sys: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 974 | 		mnt->auth_flavors[0] = RPC_AUTH_UNIX; | 
 | 975 | 		break; | 
 | 976 | 	case Opt_sec_krb5: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 977 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5; | 
 | 978 | 		break; | 
 | 979 | 	case Opt_sec_krb5i: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 980 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5I; | 
 | 981 | 		break; | 
 | 982 | 	case Opt_sec_krb5p: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 983 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_KRB5P; | 
 | 984 | 		break; | 
 | 985 | 	case Opt_sec_lkey: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 986 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEY; | 
 | 987 | 		break; | 
 | 988 | 	case Opt_sec_lkeyi: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 989 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYI; | 
 | 990 | 		break; | 
 | 991 | 	case Opt_sec_lkeyp: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 992 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_LKEYP; | 
 | 993 | 		break; | 
 | 994 | 	case Opt_sec_spkm: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 995 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKM; | 
 | 996 | 		break; | 
 | 997 | 	case Opt_sec_spkmi: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 998 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMI; | 
 | 999 | 		break; | 
 | 1000 | 	case Opt_sec_spkmp: | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 1001 | 		mnt->auth_flavors[0] = RPC_AUTH_GSS_SPKMP; | 
 | 1002 | 		break; | 
 | 1003 | 	default: | 
 | 1004 | 		return 0; | 
 | 1005 | 	} | 
 | 1006 |  | 
| Chuck Lever | 059f90b | 2009-08-09 15:09:31 -0400 | [diff] [blame] | 1007 | 	mnt->auth_flavor_len = 1; | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 1008 | 	return 1; | 
 | 1009 | } | 
 | 1010 |  | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1011 | static int nfs_get_option_str(substring_t args[], char **option) | 
 | 1012 | { | 
 | 1013 | 	kfree(*option); | 
 | 1014 | 	*option = match_strdup(args); | 
 | 1015 | 	return !option; | 
 | 1016 | } | 
 | 1017 |  | 
 | 1018 | static int nfs_get_option_ul(substring_t args[], unsigned long *option) | 
 | 1019 | { | 
 | 1020 | 	int rc; | 
 | 1021 | 	char *string; | 
 | 1022 |  | 
 | 1023 | 	string = match_strdup(args); | 
 | 1024 | 	if (string == NULL) | 
 | 1025 | 		return -ENOMEM; | 
 | 1026 | 	rc = strict_strtoul(string, 10, option); | 
 | 1027 | 	kfree(string); | 
 | 1028 |  | 
 | 1029 | 	return rc; | 
 | 1030 | } | 
 | 1031 |  | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 1032 | /* | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1033 |  * Error-check and convert a string of mount options from user space into | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1034 |  * a data structure.  The whole mount string is processed; bad options are | 
 | 1035 |  * skipped as they are encountered.  If there were no errors, return 1; | 
 | 1036 |  * otherwise return 0 (zero). | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1037 |  */ | 
 | 1038 | static int nfs_parse_mount_options(char *raw, | 
 | 1039 | 				   struct nfs_parsed_mount_data *mnt) | 
 | 1040 | { | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 1041 | 	char *p, *string, *secdata; | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1042 | 	int rc, sloppy = 0, invalid_option = 0; | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1043 | 	unsigned short protofamily = AF_UNSPEC; | 
 | 1044 | 	unsigned short mountfamily = AF_UNSPEC; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1045 |  | 
 | 1046 | 	if (!raw) { | 
 | 1047 | 		dfprintk(MOUNT, "NFS: mount options string was NULL.\n"); | 
 | 1048 | 		return 1; | 
 | 1049 | 	} | 
 | 1050 | 	dfprintk(MOUNT, "NFS: nfs mount opts='%s'\n", raw); | 
 | 1051 |  | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 1052 | 	secdata = alloc_secdata(); | 
 | 1053 | 	if (!secdata) | 
 | 1054 | 		goto out_nomem; | 
 | 1055 |  | 
 | 1056 | 	rc = security_sb_copy_data(raw, secdata); | 
 | 1057 | 	if (rc) | 
 | 1058 | 		goto out_security_failure; | 
 | 1059 |  | 
 | 1060 | 	rc = security_sb_parse_opts_str(secdata, &mnt->lsm_opts); | 
 | 1061 | 	if (rc) | 
 | 1062 | 		goto out_security_failure; | 
 | 1063 |  | 
 | 1064 | 	free_secdata(secdata); | 
 | 1065 |  | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1066 | 	while ((p = strsep(&raw, ",")) != NULL) { | 
 | 1067 | 		substring_t args[MAX_OPT_ARGS]; | 
| Chuck Lever | a5a16ba | 2009-06-17 18:02:14 -0700 | [diff] [blame] | 1068 | 		unsigned long option; | 
 | 1069 | 		int token; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1070 |  | 
 | 1071 | 		if (!*p) | 
 | 1072 | 			continue; | 
 | 1073 |  | 
 | 1074 | 		dfprintk(MOUNT, "NFS:   parsing nfs mount option '%s'\n", p); | 
 | 1075 |  | 
 | 1076 | 		token = match_token(p, nfs_mount_option_tokens, args); | 
 | 1077 | 		switch (token) { | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1078 |  | 
 | 1079 | 		/* | 
 | 1080 | 		 * boolean options:  foo/nofoo | 
 | 1081 | 		 */ | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1082 | 		case Opt_soft: | 
 | 1083 | 			mnt->flags |= NFS_MOUNT_SOFT; | 
 | 1084 | 			break; | 
 | 1085 | 		case Opt_hard: | 
 | 1086 | 			mnt->flags &= ~NFS_MOUNT_SOFT; | 
 | 1087 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1088 | 		case Opt_posix: | 
 | 1089 | 			mnt->flags |= NFS_MOUNT_POSIX; | 
 | 1090 | 			break; | 
 | 1091 | 		case Opt_noposix: | 
 | 1092 | 			mnt->flags &= ~NFS_MOUNT_POSIX; | 
 | 1093 | 			break; | 
 | 1094 | 		case Opt_cto: | 
 | 1095 | 			mnt->flags &= ~NFS_MOUNT_NOCTO; | 
 | 1096 | 			break; | 
 | 1097 | 		case Opt_nocto: | 
 | 1098 | 			mnt->flags |= NFS_MOUNT_NOCTO; | 
 | 1099 | 			break; | 
 | 1100 | 		case Opt_ac: | 
 | 1101 | 			mnt->flags &= ~NFS_MOUNT_NOAC; | 
 | 1102 | 			break; | 
 | 1103 | 		case Opt_noac: | 
 | 1104 | 			mnt->flags |= NFS_MOUNT_NOAC; | 
 | 1105 | 			break; | 
 | 1106 | 		case Opt_lock: | 
 | 1107 | 			mnt->flags &= ~NFS_MOUNT_NONLM; | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 1108 | 			mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK | | 
 | 1109 | 					NFS_MOUNT_LOCAL_FCNTL); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1110 | 			break; | 
 | 1111 | 		case Opt_nolock: | 
 | 1112 | 			mnt->flags |= NFS_MOUNT_NONLM; | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 1113 | 			mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK | | 
 | 1114 | 				       NFS_MOUNT_LOCAL_FCNTL); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1115 | 			break; | 
 | 1116 | 		case Opt_v2: | 
 | 1117 | 			mnt->flags &= ~NFS_MOUNT_VER3; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1118 | 			mnt->version = 2; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1119 | 			break; | 
 | 1120 | 		case Opt_v3: | 
 | 1121 | 			mnt->flags |= NFS_MOUNT_VER3; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1122 | 			mnt->version = 3; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1123 | 			break; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1124 | 		case Opt_v4: | 
 | 1125 | 			mnt->flags &= ~NFS_MOUNT_VER3; | 
 | 1126 | 			mnt->version = 4; | 
 | 1127 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1128 | 		case Opt_udp: | 
 | 1129 | 			mnt->flags &= ~NFS_MOUNT_TCP; | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 1130 | 			mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1131 | 			break; | 
 | 1132 | 		case Opt_tcp: | 
 | 1133 | 			mnt->flags |= NFS_MOUNT_TCP; | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 1134 | 			mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1135 | 			break; | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 1136 | 		case Opt_rdma: | 
 | 1137 | 			mnt->flags |= NFS_MOUNT_TCP; /* for side protocols */ | 
 | 1138 | 			mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA; | 
| Tom Talpey | a67d18f | 2009-03-11 14:37:56 -0400 | [diff] [blame] | 1139 | 			xprt_load_transport(p); | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 1140 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1141 | 		case Opt_acl: | 
 | 1142 | 			mnt->flags &= ~NFS_MOUNT_NOACL; | 
 | 1143 | 			break; | 
 | 1144 | 		case Opt_noacl: | 
 | 1145 | 			mnt->flags |= NFS_MOUNT_NOACL; | 
 | 1146 | 			break; | 
 | 1147 | 		case Opt_rdirplus: | 
 | 1148 | 			mnt->flags &= ~NFS_MOUNT_NORDIRPLUS; | 
 | 1149 | 			break; | 
 | 1150 | 		case Opt_nordirplus: | 
 | 1151 | 			mnt->flags |= NFS_MOUNT_NORDIRPLUS; | 
 | 1152 | 			break; | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 1153 | 		case Opt_sharecache: | 
 | 1154 | 			mnt->flags &= ~NFS_MOUNT_UNSHARED; | 
 | 1155 | 			break; | 
 | 1156 | 		case Opt_nosharecache: | 
 | 1157 | 			mnt->flags |= NFS_MOUNT_UNSHARED; | 
 | 1158 | 			break; | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 1159 | 		case Opt_resvport: | 
 | 1160 | 			mnt->flags &= ~NFS_MOUNT_NORESVPORT; | 
 | 1161 | 			break; | 
 | 1162 | 		case Opt_noresvport: | 
 | 1163 | 			mnt->flags |= NFS_MOUNT_NORESVPORT; | 
 | 1164 | 			break; | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 1165 | 		case Opt_fscache: | 
 | 1166 | 			mnt->options |= NFS_OPTION_FSCACHE; | 
 | 1167 | 			kfree(mnt->fscache_uniq); | 
 | 1168 | 			mnt->fscache_uniq = NULL; | 
 | 1169 | 			break; | 
 | 1170 | 		case Opt_nofscache: | 
 | 1171 | 			mnt->options &= ~NFS_OPTION_FSCACHE; | 
 | 1172 | 			kfree(mnt->fscache_uniq); | 
 | 1173 | 			mnt->fscache_uniq = NULL; | 
 | 1174 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1175 |  | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1176 | 		/* | 
 | 1177 | 		 * options that take numeric values | 
 | 1178 | 		 */ | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1179 | 		case Opt_port: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1180 | 			if (nfs_get_option_ul(args, &option) || | 
 | 1181 | 			    option > USHRT_MAX) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1182 | 				goto out_invalid_value; | 
 | 1183 | 			mnt->nfs_server.port = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1184 | 			break; | 
 | 1185 | 		case Opt_rsize: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1186 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1187 | 				goto out_invalid_value; | 
 | 1188 | 			mnt->rsize = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1189 | 			break; | 
 | 1190 | 		case Opt_wsize: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1191 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1192 | 				goto out_invalid_value; | 
 | 1193 | 			mnt->wsize = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1194 | 			break; | 
 | 1195 | 		case Opt_bsize: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1196 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1197 | 				goto out_invalid_value; | 
 | 1198 | 			mnt->bsize = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1199 | 			break; | 
 | 1200 | 		case Opt_timeo: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1201 | 			if (nfs_get_option_ul(args, &option) || option == 0) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1202 | 				goto out_invalid_value; | 
 | 1203 | 			mnt->timeo = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1204 | 			break; | 
 | 1205 | 		case Opt_retrans: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1206 | 			if (nfs_get_option_ul(args, &option) || option == 0) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1207 | 				goto out_invalid_value; | 
 | 1208 | 			mnt->retrans = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1209 | 			break; | 
 | 1210 | 		case Opt_acregmin: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1211 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1212 | 				goto out_invalid_value; | 
 | 1213 | 			mnt->acregmin = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1214 | 			break; | 
 | 1215 | 		case Opt_acregmax: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1216 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1217 | 				goto out_invalid_value; | 
 | 1218 | 			mnt->acregmax = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1219 | 			break; | 
 | 1220 | 		case Opt_acdirmin: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1221 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1222 | 				goto out_invalid_value; | 
 | 1223 | 			mnt->acdirmin = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1224 | 			break; | 
 | 1225 | 		case Opt_acdirmax: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1226 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1227 | 				goto out_invalid_value; | 
 | 1228 | 			mnt->acdirmax = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1229 | 			break; | 
 | 1230 | 		case Opt_actimeo: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1231 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1232 | 				goto out_invalid_value; | 
 | 1233 | 			mnt->acregmin = mnt->acregmax = | 
 | 1234 | 			mnt->acdirmin = mnt->acdirmax = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1235 | 			break; | 
 | 1236 | 		case Opt_namelen: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1237 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1238 | 				goto out_invalid_value; | 
 | 1239 | 			mnt->namlen = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1240 | 			break; | 
 | 1241 | 		case Opt_mountport: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1242 | 			if (nfs_get_option_ul(args, &option) || | 
 | 1243 | 			    option > USHRT_MAX) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1244 | 				goto out_invalid_value; | 
 | 1245 | 			mnt->mount_server.port = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1246 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1247 | 		case Opt_mountvers: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1248 | 			if (nfs_get_option_ul(args, &option) || | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1249 | 			    option < NFS_MNT_VERSION || | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1250 | 			    option > NFS_MNT3_VERSION) | 
 | 1251 | 				goto out_invalid_value; | 
 | 1252 | 			mnt->mount_server.version = option; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1253 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1254 | 		case Opt_nfsvers: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1255 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1256 | 				goto out_invalid_value; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1257 | 			switch (option) { | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1258 | 			case NFS2_VERSION: | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1259 | 				mnt->flags &= ~NFS_MOUNT_VER3; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1260 | 				mnt->version = 2; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1261 | 				break; | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1262 | 			case NFS3_VERSION: | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1263 | 				mnt->flags |= NFS_MOUNT_VER3; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1264 | 				mnt->version = 3; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1265 | 				break; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1266 | 			case NFS4_VERSION: | 
 | 1267 | 				mnt->flags &= ~NFS_MOUNT_VER3; | 
 | 1268 | 				mnt->version = 4; | 
 | 1269 | 				break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1270 | 			default: | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1271 | 				goto out_invalid_value; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1272 | 			} | 
 | 1273 | 			break; | 
| Mike Sager | 3fd5be9 | 2009-04-01 09:21:48 -0400 | [diff] [blame] | 1274 | 		case Opt_minorversion: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1275 | 			if (nfs_get_option_ul(args, &option)) | 
| Chuck Lever | f3f4f4e | 2009-08-09 15:09:29 -0400 | [diff] [blame] | 1276 | 				goto out_invalid_value; | 
 | 1277 | 			if (option > NFS4_MAX_MINOR_VERSION) | 
 | 1278 | 				goto out_invalid_value; | 
 | 1279 | 			mnt->minorversion = option; | 
| Mike Sager | 3fd5be9 | 2009-04-01 09:21:48 -0400 | [diff] [blame] | 1280 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1281 |  | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1282 | 		/* | 
 | 1283 | 		 * options that take text values | 
 | 1284 | 		 */ | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1285 | 		case Opt_sec: | 
 | 1286 | 			string = match_strdup(args); | 
 | 1287 | 			if (string == NULL) | 
 | 1288 | 				goto out_nomem; | 
| Chuck Lever | 01060c8 | 2008-06-24 16:33:38 -0400 | [diff] [blame] | 1289 | 			rc = nfs_parse_security_flavors(string, mnt); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1290 | 			kfree(string); | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1291 | 			if (!rc) { | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1292 | 				dfprintk(MOUNT, "NFS:   unrecognized " | 
 | 1293 | 						"security flavor\n"); | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1294 | 				return 0; | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1295 | 			} | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1296 | 			break; | 
 | 1297 | 		case Opt_proto: | 
 | 1298 | 			string = match_strdup(args); | 
 | 1299 | 			if (string == NULL) | 
 | 1300 | 				goto out_nomem; | 
 | 1301 | 			token = match_token(string, | 
 | 1302 | 					    nfs_xprt_protocol_tokens, args); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1303 |  | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1304 | 			protofamily = AF_INET; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1305 | 			switch (token) { | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1306 | 			case Opt_xprt_udp6: | 
 | 1307 | 				protofamily = AF_INET6; | 
| Chuck Lever | fdb66ff | 2007-08-29 17:58:57 -0400 | [diff] [blame] | 1308 | 			case Opt_xprt_udp: | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1309 | 				mnt->flags &= ~NFS_MOUNT_TCP; | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 1310 | 				mnt->nfs_server.protocol = XPRT_TRANSPORT_UDP; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1311 | 				break; | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1312 | 			case Opt_xprt_tcp6: | 
 | 1313 | 				protofamily = AF_INET6; | 
| Chuck Lever | fdb66ff | 2007-08-29 17:58:57 -0400 | [diff] [blame] | 1314 | 			case Opt_xprt_tcp: | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1315 | 				mnt->flags |= NFS_MOUNT_TCP; | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 1316 | 				mnt->nfs_server.protocol = XPRT_TRANSPORT_TCP; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1317 | 				break; | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 1318 | 			case Opt_xprt_rdma: | 
 | 1319 | 				/* vector side protocols to TCP */ | 
 | 1320 | 				mnt->flags |= NFS_MOUNT_TCP; | 
 | 1321 | 				mnt->nfs_server.protocol = XPRT_TRANSPORT_RDMA; | 
| Tom Talpey | a67d18f | 2009-03-11 14:37:56 -0400 | [diff] [blame] | 1322 | 				xprt_load_transport(string); | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 1323 | 				break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1324 | 			default: | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1325 | 				dfprintk(MOUNT, "NFS:   unrecognized " | 
 | 1326 | 						"transport protocol\n"); | 
| Yinghai Lu | 4223a4a | 2009-10-20 14:13:46 +0900 | [diff] [blame] | 1327 | 				kfree(string); | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1328 | 				return 0; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1329 | 			} | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1330 | 			kfree(string); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1331 | 			break; | 
 | 1332 | 		case Opt_mountproto: | 
 | 1333 | 			string = match_strdup(args); | 
 | 1334 | 			if (string == NULL) | 
 | 1335 | 				goto out_nomem; | 
 | 1336 | 			token = match_token(string, | 
 | 1337 | 					    nfs_xprt_protocol_tokens, args); | 
| Trond Myklebust | d508afb | 2009-04-06 16:41:35 -0700 | [diff] [blame] | 1338 | 			kfree(string); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1339 |  | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1340 | 			mountfamily = AF_INET; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1341 | 			switch (token) { | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1342 | 			case Opt_xprt_udp6: | 
 | 1343 | 				mountfamily = AF_INET6; | 
| Chuck Lever | fdb66ff | 2007-08-29 17:58:57 -0400 | [diff] [blame] | 1344 | 			case Opt_xprt_udp: | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 1345 | 				mnt->mount_server.protocol = XPRT_TRANSPORT_UDP; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1346 | 				break; | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1347 | 			case Opt_xprt_tcp6: | 
 | 1348 | 				mountfamily = AF_INET6; | 
| Chuck Lever | fdb66ff | 2007-08-29 17:58:57 -0400 | [diff] [blame] | 1349 | 			case Opt_xprt_tcp: | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 1350 | 				mnt->mount_server.protocol = XPRT_TRANSPORT_TCP; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1351 | 				break; | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 1352 | 			case Opt_xprt_rdma: /* not used for side protocols */ | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1353 | 			default: | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1354 | 				dfprintk(MOUNT, "NFS:   unrecognized " | 
 | 1355 | 						"transport protocol\n"); | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1356 | 				return 0; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1357 | 			} | 
 | 1358 | 			break; | 
 | 1359 | 		case Opt_addr: | 
 | 1360 | 			string = match_strdup(args); | 
 | 1361 | 			if (string == NULL) | 
 | 1362 | 				goto out_nomem; | 
| Chuck Lever | 53a0b9c | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 1363 | 			mnt->nfs_server.addrlen = | 
 | 1364 | 				rpc_pton(string, strlen(string), | 
 | 1365 | 					(struct sockaddr *) | 
 | 1366 | 					&mnt->nfs_server.address, | 
 | 1367 | 					sizeof(mnt->nfs_server.address)); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1368 | 			kfree(string); | 
| Chuck Lever | 53a0b9c | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 1369 | 			if (mnt->nfs_server.addrlen == 0) | 
 | 1370 | 				goto out_invalid_address; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1371 | 			break; | 
 | 1372 | 		case Opt_clientaddr: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1373 | 			if (nfs_get_option_str(args, &mnt->client_address)) | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1374 | 				goto out_nomem; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1375 | 			break; | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 1376 | 		case Opt_mounthost: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1377 | 			if (nfs_get_option_str(args, | 
 | 1378 | 					       &mnt->mount_server.hostname)) | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 1379 | 				goto out_nomem; | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 1380 | 			break; | 
| Chuck Lever | 0ac8377 | 2007-09-11 18:01:04 -0400 | [diff] [blame] | 1381 | 		case Opt_mountaddr: | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1382 | 			string = match_strdup(args); | 
 | 1383 | 			if (string == NULL) | 
 | 1384 | 				goto out_nomem; | 
| Chuck Lever | 53a0b9c | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 1385 | 			mnt->mount_server.addrlen = | 
 | 1386 | 				rpc_pton(string, strlen(string), | 
 | 1387 | 					(struct sockaddr *) | 
 | 1388 | 					&mnt->mount_server.address, | 
 | 1389 | 					sizeof(mnt->mount_server.address)); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1390 | 			kfree(string); | 
| Chuck Lever | 53a0b9c | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 1391 | 			if (mnt->mount_server.addrlen == 0) | 
 | 1392 | 				goto out_invalid_address; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1393 | 			break; | 
| Trond Myklebust | 7973c1f | 2008-07-15 17:58:14 -0400 | [diff] [blame] | 1394 | 		case Opt_lookupcache: | 
 | 1395 | 			string = match_strdup(args); | 
 | 1396 | 			if (string == NULL) | 
 | 1397 | 				goto out_nomem; | 
 | 1398 | 			token = match_token(string, | 
 | 1399 | 					nfs_lookupcache_tokens, args); | 
 | 1400 | 			kfree(string); | 
 | 1401 | 			switch (token) { | 
 | 1402 | 				case Opt_lookupcache_all: | 
 | 1403 | 					mnt->flags &= ~(NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE); | 
 | 1404 | 					break; | 
 | 1405 | 				case Opt_lookupcache_positive: | 
 | 1406 | 					mnt->flags &= ~NFS_MOUNT_LOOKUP_CACHE_NONE; | 
 | 1407 | 					mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG; | 
 | 1408 | 					break; | 
 | 1409 | 				case Opt_lookupcache_none: | 
 | 1410 | 					mnt->flags |= NFS_MOUNT_LOOKUP_CACHE_NONEG|NFS_MOUNT_LOOKUP_CACHE_NONE; | 
 | 1411 | 					break; | 
 | 1412 | 				default: | 
| Trond Myklebust | 7973c1f | 2008-07-15 17:58:14 -0400 | [diff] [blame] | 1413 | 					dfprintk(MOUNT, "NFS:   invalid " | 
 | 1414 | 							"lookupcache argument\n"); | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1415 | 					return 0; | 
| Trond Myklebust | 7973c1f | 2008-07-15 17:58:14 -0400 | [diff] [blame] | 1416 | 			}; | 
 | 1417 | 			break; | 
| Chuck Lever | a6d5ff6 | 2010-05-07 13:33:58 -0400 | [diff] [blame] | 1418 | 		case Opt_fscache_uniq: | 
| Rob Landley | c5cb09b | 2011-03-09 16:02:37 -0600 | [diff] [blame] | 1419 | 			if (nfs_get_option_str(args, &mnt->fscache_uniq)) | 
| Chuck Lever | a6d5ff6 | 2010-05-07 13:33:58 -0400 | [diff] [blame] | 1420 | 				goto out_nomem; | 
| Chuck Lever | a6d5ff6 | 2010-05-07 13:33:58 -0400 | [diff] [blame] | 1421 | 			mnt->options |= NFS_OPTION_FSCACHE; | 
 | 1422 | 			break; | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 1423 | 		case Opt_local_lock: | 
 | 1424 | 			string = match_strdup(args); | 
 | 1425 | 			if (string == NULL) | 
 | 1426 | 				goto out_nomem; | 
 | 1427 | 			token = match_token(string, nfs_local_lock_tokens, | 
 | 1428 | 					args); | 
 | 1429 | 			kfree(string); | 
 | 1430 | 			switch (token) { | 
 | 1431 | 			case Opt_local_lock_all: | 
 | 1432 | 				mnt->flags |= (NFS_MOUNT_LOCAL_FLOCK | | 
 | 1433 | 					       NFS_MOUNT_LOCAL_FCNTL); | 
 | 1434 | 				break; | 
 | 1435 | 			case Opt_local_lock_flock: | 
 | 1436 | 				mnt->flags |= NFS_MOUNT_LOCAL_FLOCK; | 
 | 1437 | 				break; | 
 | 1438 | 			case Opt_local_lock_posix: | 
 | 1439 | 				mnt->flags |= NFS_MOUNT_LOCAL_FCNTL; | 
 | 1440 | 				break; | 
 | 1441 | 			case Opt_local_lock_none: | 
 | 1442 | 				mnt->flags &= ~(NFS_MOUNT_LOCAL_FLOCK | | 
 | 1443 | 						NFS_MOUNT_LOCAL_FCNTL); | 
 | 1444 | 				break; | 
 | 1445 | 			default: | 
 | 1446 | 				dfprintk(MOUNT, "NFS:	invalid	" | 
 | 1447 | 						"local_lock argument\n"); | 
 | 1448 | 				return 0; | 
 | 1449 | 			}; | 
 | 1450 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1451 |  | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1452 | 		/* | 
 | 1453 | 		 * Special options | 
 | 1454 | 		 */ | 
 | 1455 | 		case Opt_sloppy: | 
 | 1456 | 			sloppy = 1; | 
 | 1457 | 			dfprintk(MOUNT, "NFS:   relaxing parsing rules\n"); | 
 | 1458 | 			break; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1459 | 		case Opt_userspace: | 
 | 1460 | 		case Opt_deprecated: | 
| Chuck Lever | d33e4df | 2008-06-12 12:37:41 -0400 | [diff] [blame] | 1461 | 			dfprintk(MOUNT, "NFS:   ignoring mount option " | 
 | 1462 | 					"'%s'\n", p); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1463 | 			break; | 
 | 1464 |  | 
 | 1465 | 		default: | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1466 | 			invalid_option = 1; | 
| Chuck Lever | f45663c | 2008-06-24 19:28:02 -0400 | [diff] [blame] | 1467 | 			dfprintk(MOUNT, "NFS:   unrecognized mount option " | 
 | 1468 | 					"'%s'\n", p); | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1469 | 		} | 
 | 1470 | 	} | 
 | 1471 |  | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1472 | 	if (!sloppy && invalid_option) | 
 | 1473 | 		return 0; | 
 | 1474 |  | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1475 | 	/* | 
 | 1476 | 	 * verify that any proto=/mountproto= options match the address | 
 | 1477 | 	 * familiies in the addr=/mountaddr= options. | 
 | 1478 | 	 */ | 
 | 1479 | 	if (protofamily != AF_UNSPEC && | 
 | 1480 | 	    protofamily != mnt->nfs_server.address.ss_family) | 
 | 1481 | 		goto out_proto_mismatch; | 
 | 1482 |  | 
 | 1483 | 	if (mountfamily != AF_UNSPEC) { | 
 | 1484 | 		if (mnt->mount_server.addrlen) { | 
 | 1485 | 			if (mountfamily != mnt->mount_server.address.ss_family) | 
 | 1486 | 				goto out_mountproto_mismatch; | 
 | 1487 | 		} else { | 
 | 1488 | 			if (mountfamily != mnt->nfs_server.address.ss_family) | 
 | 1489 | 				goto out_mountproto_mismatch; | 
 | 1490 | 		} | 
 | 1491 | 	} | 
 | 1492 |  | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1493 | 	return 1; | 
 | 1494 |  | 
| Jeff Layton | ee671b0 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 1495 | out_mountproto_mismatch: | 
 | 1496 | 	printk(KERN_INFO "NFS: mount server address does not match mountproto= " | 
 | 1497 | 			 "option\n"); | 
 | 1498 | 	return 0; | 
 | 1499 | out_proto_mismatch: | 
 | 1500 | 	printk(KERN_INFO "NFS: server address does not match proto= option\n"); | 
 | 1501 | 	return 0; | 
| Chuck Lever | 53a0b9c | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 1502 | out_invalid_address: | 
 | 1503 | 	printk(KERN_INFO "NFS: bad IP address specified: %s\n", p); | 
 | 1504 | 	return 0; | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1505 | out_invalid_value: | 
| Chuck Lever | 53a0b9c | 2009-08-09 15:09:36 -0400 | [diff] [blame] | 1506 | 	printk(KERN_INFO "NFS: bad mount option value specified: %s\n", p); | 
| Chuck Lever | d23c45f | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 1507 | 	return 0; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1508 | out_nomem: | 
 | 1509 | 	printk(KERN_INFO "NFS: not enough memory to parse option\n"); | 
 | 1510 | 	return 0; | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 1511 | out_security_failure: | 
 | 1512 | 	free_secdata(secdata); | 
 | 1513 | 	printk(KERN_INFO "NFS: security options invalid: %d\n", rc); | 
 | 1514 | 	return 0; | 
| Chuck Lever | bf0fd76 | 2007-07-01 12:13:44 -0400 | [diff] [blame] | 1515 | } | 
 | 1516 |  | 
 | 1517 | /* | 
| Chuck Lever | ec88f28 | 2009-08-09 15:09:32 -0400 | [diff] [blame] | 1518 |  * Match the requested auth flavors with the list returned by | 
 | 1519 |  * the server.  Returns zero and sets the mount's authentication | 
 | 1520 |  * flavor on success; returns -EACCES if server does not support | 
 | 1521 |  * the requested flavor. | 
 | 1522 |  */ | 
 | 1523 | static int nfs_walk_authlist(struct nfs_parsed_mount_data *args, | 
 | 1524 | 			     struct nfs_mount_request *request) | 
 | 1525 | { | 
 | 1526 | 	unsigned int i, j, server_authlist_len = *(request->auth_flav_len); | 
 | 1527 |  | 
 | 1528 | 	/* | 
| Chuck Lever | 5eecfde | 2009-08-21 17:50:30 -0400 | [diff] [blame] | 1529 | 	 * Certain releases of Linux's mountd return an empty | 
 | 1530 | 	 * flavor list.  To prevent behavioral regression with | 
 | 1531 | 	 * these servers (ie. rejecting mounts that used to | 
 | 1532 | 	 * succeed), revert to pre-2.6.32 behavior (no checking) | 
 | 1533 | 	 * if the returned flavor list is empty. | 
 | 1534 | 	 */ | 
 | 1535 | 	if (server_authlist_len == 0) | 
 | 1536 | 		return 0; | 
 | 1537 |  | 
 | 1538 | 	/* | 
| Chuck Lever | ec88f28 | 2009-08-09 15:09:32 -0400 | [diff] [blame] | 1539 | 	 * We avoid sophisticated negotiating here, as there are | 
 | 1540 | 	 * plenty of cases where we can get it wrong, providing | 
 | 1541 | 	 * either too little or too much security. | 
 | 1542 | 	 * | 
 | 1543 | 	 * RFC 2623, section 2.7 suggests we SHOULD prefer the | 
 | 1544 | 	 * flavor listed first.  However, some servers list | 
 | 1545 | 	 * AUTH_NULL first.  Our caller plants AUTH_SYS, the | 
 | 1546 | 	 * preferred default, in args->auth_flavors[0] if user | 
 | 1547 | 	 * didn't specify sec= mount option. | 
 | 1548 | 	 */ | 
 | 1549 | 	for (i = 0; i < args->auth_flavor_len; i++) | 
 | 1550 | 		for (j = 0; j < server_authlist_len; j++) | 
 | 1551 | 			if (args->auth_flavors[i] == request->auth_flavs[j]) { | 
 | 1552 | 				dfprintk(MOUNT, "NFS: using auth flavor %d\n", | 
 | 1553 | 					request->auth_flavs[j]); | 
 | 1554 | 				args->auth_flavors[0] = request->auth_flavs[j]; | 
 | 1555 | 				return 0; | 
 | 1556 | 			} | 
 | 1557 |  | 
 | 1558 | 	dfprintk(MOUNT, "NFS: server does not support requested auth flavor\n"); | 
 | 1559 | 	nfs_umount(request); | 
 | 1560 | 	return -EACCES; | 
 | 1561 | } | 
 | 1562 |  | 
 | 1563 | /* | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1564 |  * Use the remote server's MOUNT service to request the NFS file handle | 
 | 1565 |  * corresponding to the provided path. | 
 | 1566 |  */ | 
 | 1567 | static int nfs_try_mount(struct nfs_parsed_mount_data *args, | 
 | 1568 | 			 struct nfs_fh *root_fh) | 
 | 1569 | { | 
| Chuck Lever | ec88f28 | 2009-08-09 15:09:32 -0400 | [diff] [blame] | 1570 | 	rpc_authflavor_t server_authlist[NFS_MAX_SECFLAVORS]; | 
 | 1571 | 	unsigned int server_authlist_len = ARRAY_SIZE(server_authlist); | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1572 | 	struct nfs_mount_request request = { | 
 | 1573 | 		.sap		= (struct sockaddr *) | 
 | 1574 | 						&args->mount_server.address, | 
 | 1575 | 		.dirpath	= args->nfs_server.export_path, | 
 | 1576 | 		.protocol	= args->mount_server.protocol, | 
 | 1577 | 		.fh		= root_fh, | 
| Chuck Lever | 50a737f | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 1578 | 		.noresvport	= args->flags & NFS_MOUNT_NORESVPORT, | 
| Chuck Lever | ec88f28 | 2009-08-09 15:09:32 -0400 | [diff] [blame] | 1579 | 		.auth_flav_len	= &server_authlist_len, | 
 | 1580 | 		.auth_flavs	= server_authlist, | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1581 | 	}; | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 1582 | 	int status; | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1583 |  | 
 | 1584 | 	if (args->mount_server.version == 0) { | 
| Trond Myklebust | 8a6e5de | 2009-09-23 14:36:37 -0400 | [diff] [blame] | 1585 | 		switch (args->version) { | 
 | 1586 | 			default: | 
 | 1587 | 				args->mount_server.version = NFS_MNT3_VERSION; | 
 | 1588 | 				break; | 
 | 1589 | 			case 2: | 
 | 1590 | 				args->mount_server.version = NFS_MNT_VERSION; | 
 | 1591 | 		} | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1592 | 	} | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1593 | 	request.version = args->mount_server.version; | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1594 |  | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 1595 | 	if (args->mount_server.hostname) | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1596 | 		request.hostname = args->mount_server.hostname; | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 1597 | 	else | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1598 | 		request.hostname = args->nfs_server.hostname; | 
| Chuck Lever | 3383203 | 2007-12-10 14:59:13 -0500 | [diff] [blame] | 1599 |  | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1600 | 	/* | 
 | 1601 | 	 * Construct the mount server's address. | 
 | 1602 | 	 */ | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 1603 | 	if (args->mount_server.address.ss_family == AF_UNSPEC) { | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1604 | 		memcpy(request.sap, &args->nfs_server.address, | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 1605 | 		       args->nfs_server.addrlen); | 
 | 1606 | 		args->mount_server.addrlen = args->nfs_server.addrlen; | 
 | 1607 | 	} | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1608 | 	request.salen = args->mount_server.addrlen; | 
| Trond Myklebust | f5855fe | 2009-10-06 15:40:37 -0400 | [diff] [blame] | 1609 | 	nfs_set_port(request.sap, &args->mount_server.port, 0); | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1610 |  | 
 | 1611 | 	/* | 
 | 1612 | 	 * Now ask the mount server to map our export path | 
 | 1613 | 	 * to a file handle. | 
 | 1614 | 	 */ | 
| Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 1615 | 	status = nfs_mount(&request); | 
| Chuck Lever | ec88f28 | 2009-08-09 15:09:32 -0400 | [diff] [blame] | 1616 | 	if (status != 0) { | 
 | 1617 | 		dfprintk(MOUNT, "NFS: unable to mount server %s, error %d\n", | 
 | 1618 | 				request.hostname, status); | 
 | 1619 | 		return status; | 
 | 1620 | 	} | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1621 |  | 
| Chuck Lever | ec88f28 | 2009-08-09 15:09:32 -0400 | [diff] [blame] | 1622 | 	/* | 
 | 1623 | 	 * MNTv1 (NFSv2) does not support auth flavor negotiation. | 
 | 1624 | 	 */ | 
 | 1625 | 	if (args->mount_server.version != NFS_MNT3_VERSION) | 
 | 1626 | 		return 0; | 
 | 1627 | 	return nfs_walk_authlist(args, &request); | 
| Chuck Lever | 0076d7b | 2007-07-01 12:13:49 -0400 | [diff] [blame] | 1628 | } | 
 | 1629 |  | 
| Rob Landley | c12bace | 2011-03-09 15:54:13 -0600 | [diff] [blame] | 1630 | /* | 
 | 1631 |  * Split "dev_name" into "hostname:export_path". | 
 | 1632 |  * | 
 | 1633 |  * The leftmost colon demarks the split between the server's hostname | 
 | 1634 |  * and the export path.  If the hostname starts with a left square | 
 | 1635 |  * bracket, then it may contain colons. | 
 | 1636 |  * | 
 | 1637 |  * Note: caller frees hostname and export path, even on error. | 
 | 1638 |  */ | 
 | 1639 | static int nfs_parse_devname(const char *dev_name, | 
 | 1640 | 			     char **hostname, size_t maxnamlen, | 
 | 1641 | 			     char **export_path, size_t maxpathlen) | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1642 | { | 
 | 1643 | 	size_t len; | 
| Rob Landley | c12bace | 2011-03-09 15:54:13 -0600 | [diff] [blame] | 1644 | 	char *end; | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1645 |  | 
| Rob Landley | c12bace | 2011-03-09 15:54:13 -0600 | [diff] [blame] | 1646 | 	/* Is the host name protected with square brakcets? */ | 
 | 1647 | 	if (*dev_name == '[') { | 
 | 1648 | 		end = strchr(++dev_name, ']'); | 
 | 1649 | 		if (end == NULL || end[1] != ':') | 
 | 1650 | 			goto out_bad_devname; | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1651 |  | 
| Rob Landley | c12bace | 2011-03-09 15:54:13 -0600 | [diff] [blame] | 1652 | 		len = end - dev_name; | 
 | 1653 | 		end++; | 
 | 1654 | 	} else { | 
 | 1655 | 		char *comma; | 
 | 1656 |  | 
 | 1657 | 		end = strchr(dev_name, ':'); | 
 | 1658 | 		if (end == NULL) | 
 | 1659 | 			goto out_bad_devname; | 
 | 1660 | 		len = end - dev_name; | 
 | 1661 |  | 
 | 1662 | 		/* kill possible hostname list: not supported */ | 
 | 1663 | 		comma = strchr(dev_name, ','); | 
 | 1664 | 		if (comma != NULL && comma < end) | 
 | 1665 | 			*comma = 0; | 
 | 1666 | 	} | 
 | 1667 |  | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1668 | 	if (len > maxnamlen) | 
 | 1669 | 		goto out_hostname; | 
 | 1670 |  | 
 | 1671 | 	/* N.B. caller will free nfs_server.hostname in all cases */ | 
 | 1672 | 	*hostname = kstrndup(dev_name, len, GFP_KERNEL); | 
| Rob Landley | c12bace | 2011-03-09 15:54:13 -0600 | [diff] [blame] | 1673 | 	if (*hostname == NULL) | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1674 | 		goto out_nomem; | 
| Rob Landley | c12bace | 2011-03-09 15:54:13 -0600 | [diff] [blame] | 1675 | 	len = strlen(++end); | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1676 | 	if (len > maxpathlen) | 
 | 1677 | 		goto out_path; | 
| Rob Landley | c12bace | 2011-03-09 15:54:13 -0600 | [diff] [blame] | 1678 | 	*export_path = kstrndup(end, len, GFP_KERNEL); | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1679 | 	if (!*export_path) | 
 | 1680 | 		goto out_nomem; | 
 | 1681 |  | 
 | 1682 | 	dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", *export_path); | 
 | 1683 | 	return 0; | 
 | 1684 |  | 
 | 1685 | out_bad_devname: | 
 | 1686 | 	dfprintk(MOUNT, "NFS: device name not in host:path format\n"); | 
 | 1687 | 	return -EINVAL; | 
 | 1688 |  | 
 | 1689 | out_nomem: | 
 | 1690 | 	dfprintk(MOUNT, "NFS: not enough memory to parse device name\n"); | 
 | 1691 | 	return -ENOMEM; | 
 | 1692 |  | 
 | 1693 | out_hostname: | 
 | 1694 | 	dfprintk(MOUNT, "NFS: server hostname too long\n"); | 
 | 1695 | 	return -ENAMETOOLONG; | 
 | 1696 |  | 
 | 1697 | out_path: | 
 | 1698 | 	dfprintk(MOUNT, "NFS: export pathname too long\n"); | 
 | 1699 | 	return -ENAMETOOLONG; | 
 | 1700 | } | 
 | 1701 |  | 
 | 1702 | /* | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1703 |  * Validate the NFS2/NFS3 mount data | 
 | 1704 |  * - fills in the mount root filehandle | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1705 |  * | 
 | 1706 |  * For option strings, user space handles the following behaviors: | 
 | 1707 |  * | 
 | 1708 |  * + DNS: mapping server host name to IP address ("addr=" option) | 
 | 1709 |  * | 
 | 1710 |  * + failure mode: how to behave if a mount request can't be handled | 
 | 1711 |  *   immediately ("fg/bg" option) | 
 | 1712 |  * | 
 | 1713 |  * + retry: how often to retry a mount request ("retry=" option) | 
 | 1714 |  * | 
 | 1715 |  * + breaking back: trying proto=udp after proto=tcp, v2 after v3, | 
 | 1716 |  *   mountproto=tcp after mountproto=udp, and so on | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1717 |  */ | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1718 | static int nfs_validate_mount_data(void *options, | 
 | 1719 | 				   struct nfs_parsed_mount_data *args, | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1720 | 				   struct nfs_fh *mntfh, | 
 | 1721 | 				   const char *dev_name) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1722 | { | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1723 | 	struct nfs_mount_data *data = (struct nfs_mount_data *)options; | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 1724 | 	struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address; | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1725 |  | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1726 | 	if (data == NULL) | 
 | 1727 | 		goto out_no_data; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1728 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1729 | 	switch (data->version) { | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1730 | 	case 1: | 
 | 1731 | 		data->namlen = 0; | 
 | 1732 | 	case 2: | 
 | 1733 | 		data->bsize = 0; | 
 | 1734 | 	case 3: | 
 | 1735 | 		if (data->flags & NFS_MOUNT_VER3) | 
 | 1736 | 			goto out_no_v3; | 
 | 1737 | 		data->root.size = NFS2_FHSIZE; | 
 | 1738 | 		memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE); | 
 | 1739 | 	case 4: | 
 | 1740 | 		if (data->flags & NFS_MOUNT_SECFLAVOUR) | 
 | 1741 | 			goto out_no_sec; | 
 | 1742 | 	case 5: | 
 | 1743 | 		memset(data->context, 0, sizeof(data->context)); | 
 | 1744 | 	case 6: | 
| Trond Myklebust | b7e2445 | 2008-06-19 15:21:11 -0400 | [diff] [blame] | 1745 | 		if (data->flags & NFS_MOUNT_VER3) { | 
 | 1746 | 			if (data->root.size > NFS3_FHSIZE || data->root.size == 0) | 
 | 1747 | 				goto out_invalid_fh; | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1748 | 			mntfh->size = data->root.size; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1749 | 			args->version = 3; | 
 | 1750 | 		} else { | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1751 | 			mntfh->size = NFS2_FHSIZE; | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1752 | 			args->version = 2; | 
 | 1753 | 		} | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1754 |  | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1755 |  | 
 | 1756 | 		memcpy(mntfh->data, data->root.data, mntfh->size); | 
 | 1757 | 		if (mntfh->size < sizeof(mntfh->data)) | 
 | 1758 | 			memset(mntfh->data + mntfh->size, 0, | 
 | 1759 | 			       sizeof(mntfh->data) - mntfh->size); | 
| Chuck Lever | 6e88e06 | 2007-09-24 15:39:50 -0400 | [diff] [blame] | 1760 |  | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1761 | 		/* | 
 | 1762 | 		 * Translate to nfs_parsed_mount_data, which nfs_fill_super | 
 | 1763 | 		 * can deal with. | 
 | 1764 | 		 */ | 
| Trond Myklebust | ff3525a | 2008-08-15 16:59:14 -0400 | [diff] [blame] | 1765 | 		args->flags		= data->flags & NFS_MOUNT_FLAGMASK; | 
| Bryan Schumaker | d5eff1a | 2010-08-03 13:04:00 -0400 | [diff] [blame] | 1766 | 		args->flags		|= NFS_MOUNT_LEGACY_INTERFACE; | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1767 | 		args->rsize		= data->rsize; | 
 | 1768 | 		args->wsize		= data->wsize; | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1769 | 		args->timeo		= data->timeo; | 
 | 1770 | 		args->retrans		= data->retrans; | 
 | 1771 | 		args->acregmin		= data->acregmin; | 
 | 1772 | 		args->acregmax		= data->acregmax; | 
 | 1773 | 		args->acdirmin		= data->acdirmin; | 
 | 1774 | 		args->acdirmax		= data->acdirmax; | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 1775 |  | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 1776 | 		memcpy(sap, &data->addr, sizeof(data->addr)); | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 1777 | 		args->nfs_server.addrlen = sizeof(data->addr); | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 1778 | 		if (!nfs_verify_server_address(sap)) | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 1779 | 			goto out_no_address; | 
 | 1780 |  | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1781 | 		if (!(data->flags & NFS_MOUNT_TCP)) | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 1782 | 			args->nfs_server.protocol = XPRT_TRANSPORT_UDP; | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1783 | 		/* N.B. caller will free nfs_server.hostname in all cases */ | 
 | 1784 | 		args->nfs_server.hostname = kstrdup(data->hostname, GFP_KERNEL); | 
 | 1785 | 		args->namlen		= data->namlen; | 
 | 1786 | 		args->bsize		= data->bsize; | 
| Chuck Lever | dd07c94 | 2008-06-24 16:33:46 -0400 | [diff] [blame] | 1787 |  | 
 | 1788 | 		if (data->flags & NFS_MOUNT_SECFLAVOUR) | 
 | 1789 | 			args->auth_flavors[0] = data->pseudoflavor; | 
| Cyrill Gorcunov | 63649bd | 2008-04-17 20:42:09 +0400 | [diff] [blame] | 1790 | 		if (!args->nfs_server.hostname) | 
 | 1791 | 			goto out_nomem; | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 1792 |  | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 1793 | 		if (!(data->flags & NFS_MOUNT_NONLM)) | 
 | 1794 | 			args->flags &= ~(NFS_MOUNT_LOCAL_FLOCK| | 
 | 1795 | 					 NFS_MOUNT_LOCAL_FCNTL); | 
 | 1796 | 		else | 
 | 1797 | 			args->flags |= (NFS_MOUNT_LOCAL_FLOCK| | 
 | 1798 | 					NFS_MOUNT_LOCAL_FCNTL); | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 1799 | 		/* | 
 | 1800 | 		 * The legacy version 6 binary mount data from userspace has a | 
 | 1801 | 		 * field used only to transport selinux information into the | 
 | 1802 | 		 * the kernel.  To continue to support that functionality we | 
 | 1803 | 		 * have a touch of selinux knowledge here in the NFS code. The | 
 | 1804 | 		 * userspace code converted context=blah to just blah so we are | 
 | 1805 | 		 * converting back to the full string selinux understands. | 
 | 1806 | 		 */ | 
 | 1807 | 		if (data->context[0]){ | 
 | 1808 | #ifdef CONFIG_SECURITY_SELINUX | 
 | 1809 | 			int rc; | 
 | 1810 | 			char *opts_str = kmalloc(sizeof(data->context) + 8, GFP_KERNEL); | 
 | 1811 | 			if (!opts_str) | 
 | 1812 | 				return -ENOMEM; | 
 | 1813 | 			strcpy(opts_str, "context="); | 
 | 1814 | 			data->context[NFS_MAX_CONTEXT_LEN] = '\0'; | 
 | 1815 | 			strcat(opts_str, &data->context[0]); | 
 | 1816 | 			rc = security_sb_parse_opts_str(opts_str, &args->lsm_opts); | 
 | 1817 | 			kfree(opts_str); | 
 | 1818 | 			if (rc) | 
 | 1819 | 				return rc; | 
 | 1820 | #else | 
 | 1821 | 			return -EINVAL; | 
 | 1822 | #endif | 
 | 1823 | 		} | 
 | 1824 |  | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1825 | 		break; | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1826 | 	default: { | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1827 | 		int status; | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1828 |  | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1829 | 		if (nfs_parse_mount_options((char *)options, args) == 0) | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1830 | 			return -EINVAL; | 
 | 1831 |  | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 1832 | 		if (!nfs_verify_server_address(sap)) | 
| Chuck Lever | 6e88e06 | 2007-09-24 15:39:50 -0400 | [diff] [blame] | 1833 | 			goto out_no_address; | 
 | 1834 |  | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1835 | 		if (args->version == 4) | 
 | 1836 | #ifdef CONFIG_NFS_V4 | 
 | 1837 | 			return nfs4_validate_text_mount_data(options, | 
 | 1838 | 							     args, dev_name); | 
 | 1839 | #else | 
 | 1840 | 			goto out_v4_not_compiled; | 
 | 1841 | #endif | 
 | 1842 |  | 
| Trond Myklebust | f5855fe | 2009-10-06 15:40:37 -0400 | [diff] [blame] | 1843 | 		nfs_set_port(sap, &args->nfs_server.port, 0); | 
| Chuck Lever | ed596a8 | 2008-06-26 17:47:05 -0400 | [diff] [blame] | 1844 |  | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 1845 | 		nfs_set_mount_transport_protocol(args); | 
 | 1846 |  | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1847 | 		status = nfs_parse_devname(dev_name, | 
 | 1848 | 					   &args->nfs_server.hostname, | 
 | 1849 | 					   PAGE_SIZE, | 
 | 1850 | 					   &args->nfs_server.export_path, | 
 | 1851 | 					   NFS_MAXPATHLEN); | 
 | 1852 | 		if (!status) | 
 | 1853 | 			status = nfs_try_mount(args, mntfh); | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1854 |  | 
| Chuck Lever | dc04589 | 2008-06-23 12:36:37 -0400 | [diff] [blame] | 1855 | 		kfree(args->nfs_server.export_path); | 
 | 1856 | 		args->nfs_server.export_path = NULL; | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1857 |  | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1858 | 		if (status) | 
| Chuck Lever | fdc6e2c | 2007-08-29 17:58:59 -0400 | [diff] [blame] | 1859 | 			return status; | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1860 |  | 
| Chuck Lever | 136d558 | 2007-07-01 12:13:54 -0400 | [diff] [blame] | 1861 | 		break; | 
 | 1862 | 		} | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1863 | 	} | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1864 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1865 | #ifndef CONFIG_NFS_V3 | 
| Trond Myklebust | 8a6e5de | 2009-09-23 14:36:37 -0400 | [diff] [blame] | 1866 | 	if (args->version == 3) | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1867 | 		goto out_v3_not_compiled; | 
 | 1868 | #endif /* !CONFIG_NFS_V3 */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1869 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1870 | 	return 0; | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1871 |  | 
 | 1872 | out_no_data: | 
 | 1873 | 	dfprintk(MOUNT, "NFS: mount program didn't pass any mount data\n"); | 
 | 1874 | 	return -EINVAL; | 
 | 1875 |  | 
 | 1876 | out_no_v3: | 
 | 1877 | 	dfprintk(MOUNT, "NFS: nfs_mount_data version %d does not support v3\n", | 
 | 1878 | 		 data->version); | 
 | 1879 | 	return -EINVAL; | 
 | 1880 |  | 
 | 1881 | out_no_sec: | 
 | 1882 | 	dfprintk(MOUNT, "NFS: nfs_mount_data version supports only AUTH_SYS\n"); | 
 | 1883 | 	return -EINVAL; | 
 | 1884 |  | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1885 | #ifndef CONFIG_NFS_V3 | 
 | 1886 | out_v3_not_compiled: | 
 | 1887 | 	dfprintk(MOUNT, "NFS: NFSv3 is not compiled into kernel\n"); | 
 | 1888 | 	return -EPROTONOSUPPORT; | 
 | 1889 | #endif /* !CONFIG_NFS_V3 */ | 
 | 1890 |  | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 1891 | #ifndef CONFIG_NFS_V4 | 
 | 1892 | out_v4_not_compiled: | 
 | 1893 | 	dfprintk(MOUNT, "NFS: NFSv4 is not compiled into kernel\n"); | 
 | 1894 | 	return -EPROTONOSUPPORT; | 
 | 1895 | #endif /* !CONFIG_NFS_V4 */ | 
 | 1896 |  | 
| Cyrill Gorcunov | 63649bd | 2008-04-17 20:42:09 +0400 | [diff] [blame] | 1897 | out_nomem: | 
 | 1898 | 	dfprintk(MOUNT, "NFS: not enough memory to handle mount options\n"); | 
 | 1899 | 	return -ENOMEM; | 
 | 1900 |  | 
| Chuck Lever | 5df36e7 | 2007-07-01 12:12:56 -0400 | [diff] [blame] | 1901 | out_no_address: | 
 | 1902 | 	dfprintk(MOUNT, "NFS: mount program didn't pass remote address\n"); | 
 | 1903 | 	return -EINVAL; | 
 | 1904 |  | 
 | 1905 | out_invalid_fh: | 
 | 1906 | 	dfprintk(MOUNT, "NFS: invalid root filehandle\n"); | 
 | 1907 | 	return -EINVAL; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1908 | } | 
 | 1909 |  | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 1910 | static int | 
 | 1911 | nfs_compare_remount_data(struct nfs_server *nfss, | 
 | 1912 | 			 struct nfs_parsed_mount_data *data) | 
 | 1913 | { | 
 | 1914 | 	if (data->flags != nfss->flags || | 
 | 1915 | 	    data->rsize != nfss->rsize || | 
 | 1916 | 	    data->wsize != nfss->wsize || | 
 | 1917 | 	    data->retrans != nfss->client->cl_timeout->to_retries || | 
 | 1918 | 	    data->auth_flavors[0] != nfss->client->cl_auth->au_flavor || | 
 | 1919 | 	    data->acregmin != nfss->acregmin / HZ || | 
 | 1920 | 	    data->acregmax != nfss->acregmax / HZ || | 
 | 1921 | 	    data->acdirmin != nfss->acdirmin / HZ || | 
 | 1922 | 	    data->acdirmax != nfss->acdirmax / HZ || | 
 | 1923 | 	    data->timeo != (10U * nfss->client->cl_timeout->to_initval / HZ) || | 
| Trond Myklebust | bcd2ea1 | 2009-10-06 15:41:22 -0400 | [diff] [blame] | 1924 | 	    data->nfs_server.port != nfss->port || | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 1925 | 	    data->nfs_server.addrlen != nfss->nfs_client->cl_addrlen || | 
| Stefan Richter | a1be9ee | 2009-10-12 11:26:12 -0400 | [diff] [blame] | 1926 | 	    !rpc_cmp_addr((struct sockaddr *)&data->nfs_server.address, | 
 | 1927 | 			  (struct sockaddr *)&nfss->nfs_client->cl_addr)) | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 1928 | 		return -EINVAL; | 
 | 1929 |  | 
 | 1930 | 	return 0; | 
 | 1931 | } | 
 | 1932 |  | 
 | 1933 | static int | 
 | 1934 | nfs_remount(struct super_block *sb, int *flags, char *raw_data) | 
 | 1935 | { | 
 | 1936 | 	int error; | 
 | 1937 | 	struct nfs_server *nfss = sb->s_fs_info; | 
 | 1938 | 	struct nfs_parsed_mount_data *data; | 
 | 1939 | 	struct nfs_mount_data *options = (struct nfs_mount_data *)raw_data; | 
 | 1940 | 	struct nfs4_mount_data *options4 = (struct nfs4_mount_data *)raw_data; | 
| Trond Myklebust | cd10072 | 2008-06-17 16:12:00 -0400 | [diff] [blame] | 1941 | 	u32 nfsvers = nfss->nfs_client->rpc_ops->version; | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 1942 |  | 
 | 1943 | 	/* | 
 | 1944 | 	 * Userspace mount programs that send binary options generally send | 
 | 1945 | 	 * them populated with default values. We have no way to know which | 
 | 1946 | 	 * ones were explicitly specified. Fall back to legacy behavior and | 
 | 1947 | 	 * just return success. | 
 | 1948 | 	 */ | 
| Marc Zyngier | 31c9446 | 2008-07-17 13:21:55 +0200 | [diff] [blame] | 1949 | 	if ((nfsvers == 4 && (!options4 || options4->version == 1)) || | 
 | 1950 | 	    (nfsvers <= 3 && (!options || (options->version >= 1 && | 
 | 1951 | 					   options->version <= 6)))) | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 1952 | 		return 0; | 
 | 1953 |  | 
 | 1954 | 	data = kzalloc(sizeof(*data), GFP_KERNEL); | 
 | 1955 | 	if (data == NULL) | 
 | 1956 | 		return -ENOMEM; | 
 | 1957 |  | 
 | 1958 | 	/* fill out struct with values from existing mount */ | 
 | 1959 | 	data->flags = nfss->flags; | 
 | 1960 | 	data->rsize = nfss->rsize; | 
 | 1961 | 	data->wsize = nfss->wsize; | 
 | 1962 | 	data->retrans = nfss->client->cl_timeout->to_retries; | 
 | 1963 | 	data->auth_flavors[0] = nfss->client->cl_auth->au_flavor; | 
 | 1964 | 	data->acregmin = nfss->acregmin / HZ; | 
 | 1965 | 	data->acregmax = nfss->acregmax / HZ; | 
 | 1966 | 	data->acdirmin = nfss->acdirmin / HZ; | 
 | 1967 | 	data->acdirmax = nfss->acdirmax / HZ; | 
 | 1968 | 	data->timeo = 10U * nfss->client->cl_timeout->to_initval / HZ; | 
| Trond Myklebust | bcd2ea1 | 2009-10-06 15:41:22 -0400 | [diff] [blame] | 1969 | 	data->nfs_server.port = nfss->port; | 
| Jeff Layton | 48b605f | 2008-06-10 15:38:39 -0400 | [diff] [blame] | 1970 | 	data->nfs_server.addrlen = nfss->nfs_client->cl_addrlen; | 
 | 1971 | 	memcpy(&data->nfs_server.address, &nfss->nfs_client->cl_addr, | 
 | 1972 | 		data->nfs_server.addrlen); | 
 | 1973 |  | 
 | 1974 | 	/* overwrite those values with any that were specified */ | 
 | 1975 | 	error = nfs_parse_mount_options((char *)options, data); | 
 | 1976 | 	if (error < 0) | 
 | 1977 | 		goto out; | 
 | 1978 |  | 
 | 1979 | 	/* compare new mount options with old ones */ | 
 | 1980 | 	error = nfs_compare_remount_data(nfss, data); | 
 | 1981 | out: | 
 | 1982 | 	kfree(data); | 
 | 1983 | 	return error; | 
 | 1984 | } | 
 | 1985 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1986 | /* | 
 | 1987 |  * Initialise the common bits of the superblock | 
 | 1988 |  */ | 
 | 1989 | static inline void nfs_initialise_sb(struct super_block *sb) | 
 | 1990 | { | 
 | 1991 | 	struct nfs_server *server = NFS_SB(sb); | 
 | 1992 |  | 
 | 1993 | 	sb->s_magic = NFS_SUPER_MAGIC; | 
 | 1994 |  | 
 | 1995 | 	/* We probably want something more informative here */ | 
 | 1996 | 	snprintf(sb->s_id, sizeof(sb->s_id), | 
 | 1997 | 		 "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev)); | 
 | 1998 |  | 
 | 1999 | 	if (sb->s_blocksize == 0) | 
 | 2000 | 		sb->s_blocksize = nfs_block_bits(server->wsize, | 
 | 2001 | 						 &sb->s_blocksize_bits); | 
 | 2002 |  | 
 | 2003 | 	if (server->flags & NFS_MOUNT_NOAC) | 
 | 2004 | 		sb->s_flags |= MS_SYNCHRONOUS; | 
 | 2005 |  | 
| Jens Axboe | 32a88aa | 2009-09-16 15:02:33 +0200 | [diff] [blame] | 2006 | 	sb->s_bdi = &server->backing_dev_info; | 
 | 2007 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2008 | 	nfs_super_set_maxbytes(sb, server->maxfilesize); | 
 | 2009 | } | 
 | 2010 |  | 
 | 2011 | /* | 
 | 2012 |  * Finish setting up an NFS2/3 superblock | 
 | 2013 |  */ | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 2014 | static void nfs_fill_super(struct super_block *sb, | 
 | 2015 | 			   struct nfs_parsed_mount_data *data) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2016 | { | 
 | 2017 | 	struct nfs_server *server = NFS_SB(sb); | 
 | 2018 |  | 
 | 2019 | 	sb->s_blocksize_bits = 0; | 
 | 2020 | 	sb->s_blocksize = 0; | 
 | 2021 | 	if (data->bsize) | 
 | 2022 | 		sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits); | 
 | 2023 |  | 
| Trond Myklebust | 8a6e5de | 2009-09-23 14:36:37 -0400 | [diff] [blame] | 2024 | 	if (server->nfs_client->rpc_ops->version == 3) { | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2025 | 		/* The VFS shouldn't apply the umask to mode bits. We will do | 
 | 2026 | 		 * so ourselves when necessary. | 
 | 2027 | 		 */ | 
 | 2028 | 		sb->s_flags |= MS_POSIXACL; | 
 | 2029 | 		sb->s_time_gran = 1; | 
 | 2030 | 	} | 
 | 2031 |  | 
 | 2032 | 	sb->s_op = &nfs_sops; | 
 | 2033 |  	nfs_initialise_sb(sb); | 
 | 2034 | } | 
 | 2035 |  | 
 | 2036 | /* | 
 | 2037 |  * Finish setting up a cloned NFS2/3 superblock | 
 | 2038 |  */ | 
 | 2039 | static void nfs_clone_super(struct super_block *sb, | 
 | 2040 | 			    const struct super_block *old_sb) | 
 | 2041 | { | 
 | 2042 | 	struct nfs_server *server = NFS_SB(sb); | 
 | 2043 |  | 
 | 2044 | 	sb->s_blocksize_bits = old_sb->s_blocksize_bits; | 
 | 2045 | 	sb->s_blocksize = old_sb->s_blocksize; | 
 | 2046 | 	sb->s_maxbytes = old_sb->s_maxbytes; | 
 | 2047 |  | 
| Trond Myklebust | 8a6e5de | 2009-09-23 14:36:37 -0400 | [diff] [blame] | 2048 | 	if (server->nfs_client->rpc_ops->version == 3) { | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2049 | 		/* The VFS shouldn't apply the umask to mode bits. We will do | 
 | 2050 | 		 * so ourselves when necessary. | 
 | 2051 | 		 */ | 
 | 2052 | 		sb->s_flags |= MS_POSIXACL; | 
 | 2053 | 		sb->s_time_gran = 1; | 
 | 2054 | 	} | 
 | 2055 |  | 
 | 2056 | 	sb->s_op = old_sb->s_op; | 
 | 2057 |  	nfs_initialise_sb(sb); | 
 | 2058 | } | 
 | 2059 |  | 
| Trond Myklebust | 275a5d2 | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2060 | static int nfs_compare_mount_options(const struct super_block *s, const struct nfs_server *b, int flags) | 
 | 2061 | { | 
 | 2062 | 	const struct nfs_server *a = s->s_fs_info; | 
 | 2063 | 	const struct rpc_clnt *clnt_a = a->client; | 
 | 2064 | 	const struct rpc_clnt *clnt_b = b->client; | 
 | 2065 |  | 
 | 2066 | 	if ((s->s_flags & NFS_MS_MASK) != (flags & NFS_MS_MASK)) | 
 | 2067 | 		goto Ebusy; | 
 | 2068 | 	if (a->nfs_client != b->nfs_client) | 
 | 2069 | 		goto Ebusy; | 
 | 2070 | 	if (a->flags != b->flags) | 
 | 2071 | 		goto Ebusy; | 
 | 2072 | 	if (a->wsize != b->wsize) | 
 | 2073 | 		goto Ebusy; | 
 | 2074 | 	if (a->rsize != b->rsize) | 
 | 2075 | 		goto Ebusy; | 
 | 2076 | 	if (a->acregmin != b->acregmin) | 
 | 2077 | 		goto Ebusy; | 
 | 2078 | 	if (a->acregmax != b->acregmax) | 
 | 2079 | 		goto Ebusy; | 
 | 2080 | 	if (a->acdirmin != b->acdirmin) | 
 | 2081 | 		goto Ebusy; | 
 | 2082 | 	if (a->acdirmax != b->acdirmax) | 
 | 2083 | 		goto Ebusy; | 
 | 2084 | 	if (clnt_a->cl_auth->au_flavor != clnt_b->cl_auth->au_flavor) | 
 | 2085 | 		goto Ebusy; | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2086 | 	return 1; | 
| Trond Myklebust | 275a5d2 | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2087 | Ebusy: | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2088 | 	return 0; | 
 | 2089 | } | 
 | 2090 |  | 
 | 2091 | struct nfs_sb_mountdata { | 
 | 2092 | 	struct nfs_server *server; | 
 | 2093 | 	int mntflags; | 
 | 2094 | }; | 
 | 2095 |  | 
 | 2096 | static int nfs_set_super(struct super_block *s, void *data) | 
 | 2097 | { | 
 | 2098 | 	struct nfs_sb_mountdata *sb_mntdata = data; | 
 | 2099 | 	struct nfs_server *server = sb_mntdata->server; | 
 | 2100 | 	int ret; | 
 | 2101 |  | 
 | 2102 | 	s->s_flags = sb_mntdata->mntflags; | 
 | 2103 | 	s->s_fs_info = server; | 
| Al Viro | 8b244ff | 2010-12-18 11:29:39 -0500 | [diff] [blame] | 2104 | 	s->s_d_op = server->nfs_client->rpc_ops->dentry_ops; | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2105 | 	ret = set_anon_super(s, server); | 
 | 2106 | 	if (ret == 0) | 
 | 2107 | 		server->s_dev = s->s_dev; | 
 | 2108 | 	return ret; | 
 | 2109 | } | 
 | 2110 |  | 
| Chuck Lever | fd00a8f | 2007-12-10 14:57:38 -0500 | [diff] [blame] | 2111 | static int nfs_compare_super_address(struct nfs_server *server1, | 
 | 2112 | 				     struct nfs_server *server2) | 
 | 2113 | { | 
 | 2114 | 	struct sockaddr *sap1, *sap2; | 
 | 2115 |  | 
 | 2116 | 	sap1 = (struct sockaddr *)&server1->nfs_client->cl_addr; | 
 | 2117 | 	sap2 = (struct sockaddr *)&server2->nfs_client->cl_addr; | 
 | 2118 |  | 
 | 2119 | 	if (sap1->sa_family != sap2->sa_family) | 
 | 2120 | 		return 0; | 
 | 2121 |  | 
 | 2122 | 	switch (sap1->sa_family) { | 
 | 2123 | 	case AF_INET: { | 
 | 2124 | 		struct sockaddr_in *sin1 = (struct sockaddr_in *)sap1; | 
 | 2125 | 		struct sockaddr_in *sin2 = (struct sockaddr_in *)sap2; | 
 | 2126 | 		if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr) | 
 | 2127 | 			return 0; | 
 | 2128 | 		if (sin1->sin_port != sin2->sin_port) | 
 | 2129 | 			return 0; | 
 | 2130 | 		break; | 
 | 2131 | 	} | 
 | 2132 | 	case AF_INET6: { | 
 | 2133 | 		struct sockaddr_in6 *sin1 = (struct sockaddr_in6 *)sap1; | 
 | 2134 | 		struct sockaddr_in6 *sin2 = (struct sockaddr_in6 *)sap2; | 
 | 2135 | 		if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr)) | 
 | 2136 | 			return 0; | 
 | 2137 | 		if (sin1->sin6_port != sin2->sin6_port) | 
 | 2138 | 			return 0; | 
 | 2139 | 		break; | 
 | 2140 | 	} | 
 | 2141 | 	default: | 
 | 2142 | 		return 0; | 
 | 2143 | 	} | 
 | 2144 |  | 
 | 2145 | 	return 1; | 
 | 2146 | } | 
 | 2147 |  | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2148 | static int nfs_compare_super(struct super_block *sb, void *data) | 
 | 2149 | { | 
 | 2150 | 	struct nfs_sb_mountdata *sb_mntdata = data; | 
 | 2151 | 	struct nfs_server *server = sb_mntdata->server, *old = NFS_SB(sb); | 
 | 2152 | 	int mntflags = sb_mntdata->mntflags; | 
 | 2153 |  | 
| Chuck Lever | fd00a8f | 2007-12-10 14:57:38 -0500 | [diff] [blame] | 2154 | 	if (!nfs_compare_super_address(old, server)) | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2155 | 		return 0; | 
 | 2156 | 	/* Note: NFS_MOUNT_UNSHARED == NFS4_MOUNT_UNSHARED */ | 
 | 2157 | 	if (old->flags & NFS_MOUNT_UNSHARED) | 
 | 2158 | 		return 0; | 
 | 2159 | 	if (memcmp(&old->fsid, &server->fsid, sizeof(old->fsid)) != 0) | 
 | 2160 | 		return 0; | 
 | 2161 | 	return nfs_compare_mount_options(sb, server, mntflags); | 
| Trond Myklebust | 275a5d2 | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2162 | } | 
 | 2163 |  | 
| Miklos Szeredi | fa79975 | 2008-04-30 00:54:33 -0700 | [diff] [blame] | 2164 | static int nfs_bdi_register(struct nfs_server *server) | 
 | 2165 | { | 
 | 2166 | 	return bdi_register_dev(&server->backing_dev_info, server->s_dev); | 
 | 2167 | } | 
 | 2168 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2169 | static struct dentry *nfs_fs_mount(struct file_system_type *fs_type, | 
 | 2170 | 	int flags, const char *dev_name, void *raw_data) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2171 | { | 
 | 2172 | 	struct nfs_server *server = NULL; | 
 | 2173 | 	struct super_block *s; | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2174 | 	struct nfs_parsed_mount_data *data; | 
 | 2175 | 	struct nfs_fh *mntfh; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2176 | 	struct dentry *mntroot = ERR_PTR(-ENOMEM); | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2177 | 	int (*compare_super)(struct super_block *, void *) = nfs_compare_super; | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2178 | 	struct nfs_sb_mountdata sb_mntdata = { | 
 | 2179 | 		.mntflags = flags, | 
 | 2180 | 	}; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2181 | 	int error; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2182 |  | 
| Paulius Zaleckas | 1e657bd | 2010-10-31 18:21:05 +0200 | [diff] [blame] | 2183 | 	data = nfs_alloc_parsed_mount_data(NFS_DEFAULT_VERSION); | 
| Trond Myklebust | b157b06 | 2010-04-19 19:05:48 -0400 | [diff] [blame] | 2184 | 	mntfh = nfs_alloc_fhandle(); | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2185 | 	if (data == NULL || mntfh == NULL) | 
 | 2186 | 		goto out_free_fh; | 
 | 2187 |  | 
 | 2188 | 	security_init_mnt_opts(&data->lsm_opts); | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 2189 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2190 | 	/* Validate the mount data */ | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2191 | 	error = nfs_validate_mount_data(raw_data, data, mntfh, dev_name); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2192 | 	if (error < 0) { | 
 | 2193 | 		mntroot = ERR_PTR(error); | 
| Chuck Lever | 0655960 | 2007-07-01 12:12:35 -0400 | [diff] [blame] | 2194 | 		goto out; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2195 | 	} | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2196 |  | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 2197 | #ifdef CONFIG_NFS_V4 | 
 | 2198 | 	if (data->version == 4) { | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2199 | 		mntroot = nfs4_try_mount(flags, dev_name, data); | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 2200 | 		kfree(data->client_address); | 
| Xiaotian Feng | 9699eda | 2010-04-22 18:56:17 +0800 | [diff] [blame] | 2201 | 		kfree(data->nfs_server.export_path); | 
| Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 2202 | 		goto out; | 
 | 2203 | 	} | 
 | 2204 | #endif	/* CONFIG_NFS_V4 */ | 
 | 2205 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2206 | 	/* Get a volume representation */ | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2207 | 	server = nfs_create_server(data, mntfh); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2208 | 	if (IS_ERR(server)) { | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2209 | 		mntroot = ERR_CAST(server); | 
| Chuck Lever | 0655960 | 2007-07-01 12:12:35 -0400 | [diff] [blame] | 2210 | 		goto out; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2211 | 	} | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2212 | 	sb_mntdata.server = server; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2213 |  | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2214 | 	if (server->flags & NFS_MOUNT_UNSHARED) | 
 | 2215 | 		compare_super = NULL; | 
 | 2216 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2217 | 	/* Get a superblock - note that we may end up sharing one that already exists */ | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2218 | 	s = sget(fs_type, compare_super, nfs_set_super, &sb_mntdata); | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 2219 | 	if (IS_ERR(s)) { | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2220 | 		mntroot = ERR_CAST(s); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2221 | 		goto out_err_nosb; | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 2222 | 	} | 
 | 2223 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2224 | 	if (s->s_fs_info != server) { | 
 | 2225 | 		nfs_free_server(server); | 
 | 2226 | 		server = NULL; | 
| Miklos Szeredi | fa79975 | 2008-04-30 00:54:33 -0700 | [diff] [blame] | 2227 | 	} else { | 
 | 2228 | 		error = nfs_bdi_register(server); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2229 | 		if (error) { | 
 | 2230 | 			mntroot = ERR_PTR(error); | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2231 | 			goto error_splat_bdi; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2232 | 		} | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2233 | 	} | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2234 |  | 
 | 2235 | 	if (!s->s_root) { | 
 | 2236 | 		/* initial superblock/root creation */ | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2237 | 		nfs_fill_super(s, data); | 
| David Howells | 2df5480 | 2009-09-23 14:36:39 -0400 | [diff] [blame] | 2238 | 		nfs_fscache_get_super_cookie( | 
 | 2239 | 			s, data ? data->fscache_uniq : NULL, NULL); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2240 | 	} | 
 | 2241 |  | 
| Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 2242 | 	mntroot = nfs_get_root(s, mntfh, dev_name); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2243 | 	if (IS_ERR(mntroot)) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2244 | 		goto error_splat_super; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2245 |  | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2246 | 	error = security_sb_set_mnt_opts(s, &data->lsm_opts); | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 2247 | 	if (error) | 
 | 2248 | 		goto error_splat_root; | 
 | 2249 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2250 | 	s->s_flags |= MS_ACTIVE; | 
| Chuck Lever | 0655960 | 2007-07-01 12:12:35 -0400 | [diff] [blame] | 2251 |  | 
 | 2252 | out: | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2253 | 	kfree(data->nfs_server.hostname); | 
 | 2254 | 	kfree(data->mount_server.hostname); | 
| David Howells | 0873404 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 2255 | 	kfree(data->fscache_uniq); | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2256 | 	security_free_mnt_opts(&data->lsm_opts); | 
 | 2257 | out_free_fh: | 
| Trond Myklebust | b157b06 | 2010-04-19 19:05:48 -0400 | [diff] [blame] | 2258 | 	nfs_free_fhandle(mntfh); | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2259 | 	kfree(data); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2260 | 	return mntroot; | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 2261 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2262 | out_err_nosb: | 
 | 2263 | 	nfs_free_server(server); | 
| Chuck Lever | 0655960 | 2007-07-01 12:12:35 -0400 | [diff] [blame] | 2264 | 	goto out; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2265 |  | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 2266 | error_splat_root: | 
 | 2267 | 	dput(mntroot); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2268 | 	mntroot = ERR_PTR(error); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2269 | error_splat_super: | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2270 | 	if (server && !s->s_root) | 
 | 2271 | 		bdi_unregister(&server->backing_dev_info); | 
 | 2272 | error_splat_bdi: | 
| Al Viro | 6f5bbff | 2009-05-06 01:34:22 -0400 | [diff] [blame] | 2273 | 	deactivate_locked_super(s); | 
| Chuck Lever | 0655960 | 2007-07-01 12:12:35 -0400 | [diff] [blame] | 2274 | 	goto out; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2275 | } | 
 | 2276 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2277 | /* | 
| Trond Myklebust | 387c149 | 2010-02-03 08:27:35 -0500 | [diff] [blame] | 2278 |  * Ensure that we unregister the bdi before kill_anon_super | 
 | 2279 |  * releases the device name | 
 | 2280 |  */ | 
 | 2281 | static void nfs_put_super(struct super_block *s) | 
 | 2282 | { | 
 | 2283 | 	struct nfs_server *server = NFS_SB(s); | 
 | 2284 |  | 
 | 2285 | 	bdi_unregister(&server->backing_dev_info); | 
 | 2286 | } | 
 | 2287 |  | 
 | 2288 | /* | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2289 |  * Destroy an NFS2/3 superblock | 
 | 2290 |  */ | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2291 | static void nfs_kill_super(struct super_block *s) | 
 | 2292 | { | 
 | 2293 | 	struct nfs_server *server = NFS_SB(s); | 
 | 2294 |  | 
 | 2295 | 	kill_anon_super(s); | 
| David Howells | 0873404 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 2296 | 	nfs_fscache_release_super_cookie(s); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2297 | 	nfs_free_server(server); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2298 | } | 
 | 2299 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2300 | /* | 
 | 2301 |  * Clone an NFS2/3 server record on xdev traversal (FSID-change) | 
 | 2302 |  */ | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2303 | static struct dentry * | 
 | 2304 | nfs_xdev_mount(struct file_system_type *fs_type, int flags, | 
 | 2305 | 		const char *dev_name, void *raw_data) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2306 | { | 
 | 2307 | 	struct nfs_clone_mount *data = raw_data; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2308 | 	struct super_block *s; | 
 | 2309 | 	struct nfs_server *server; | 
 | 2310 | 	struct dentry *mntroot; | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2311 | 	int (*compare_super)(struct super_block *, void *) = nfs_compare_super; | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2312 | 	struct nfs_sb_mountdata sb_mntdata = { | 
 | 2313 | 		.mntflags = flags, | 
 | 2314 | 	}; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2315 | 	int error; | 
 | 2316 |  | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2317 | 	dprintk("--> nfs_xdev_mount()\n"); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2318 |  | 
 | 2319 | 	/* create a new volume representation */ | 
 | 2320 | 	server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr); | 
 | 2321 | 	if (IS_ERR(server)) { | 
 | 2322 | 		error = PTR_ERR(server); | 
 | 2323 | 		goto out_err_noserver; | 
 | 2324 | 	} | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2325 | 	sb_mntdata.server = server; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2326 |  | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2327 | 	if (server->flags & NFS_MOUNT_UNSHARED) | 
 | 2328 | 		compare_super = NULL; | 
 | 2329 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2330 | 	/* Get a superblock - note that we may end up sharing one that already exists */ | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2331 | 	s = sget(&nfs_fs_type, compare_super, nfs_set_super, &sb_mntdata); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2332 | 	if (IS_ERR(s)) { | 
 | 2333 | 		error = PTR_ERR(s); | 
 | 2334 | 		goto out_err_nosb; | 
 | 2335 | 	} | 
 | 2336 |  | 
 | 2337 | 	if (s->s_fs_info != server) { | 
 | 2338 | 		nfs_free_server(server); | 
 | 2339 | 		server = NULL; | 
| Miklos Szeredi | fa79975 | 2008-04-30 00:54:33 -0700 | [diff] [blame] | 2340 | 	} else { | 
 | 2341 | 		error = nfs_bdi_register(server); | 
 | 2342 | 		if (error) | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2343 | 			goto error_splat_bdi; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2344 | 	} | 
 | 2345 |  | 
 | 2346 | 	if (!s->s_root) { | 
 | 2347 | 		/* initial superblock/root creation */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2348 | 		nfs_clone_super(s, data->sb); | 
| David Howells | 2df5480 | 2009-09-23 14:36:39 -0400 | [diff] [blame] | 2349 | 		nfs_fscache_get_super_cookie(s, NULL, data); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2350 | 	} | 
 | 2351 |  | 
| Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 2352 | 	mntroot = nfs_get_root(s, data->fh, dev_name); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2353 | 	if (IS_ERR(mntroot)) { | 
 | 2354 | 		error = PTR_ERR(mntroot); | 
 | 2355 | 		goto error_splat_super; | 
 | 2356 | 	} | 
| Trond Myklebust | e9cc6c2 | 2008-01-02 13:28:57 -0500 | [diff] [blame] | 2357 | 	if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) { | 
| Neil Brown | 4c1fe2f | 2007-11-01 16:50:20 +1100 | [diff] [blame] | 2358 | 		dput(mntroot); | 
 | 2359 | 		error = -ESTALE; | 
 | 2360 | 		goto error_splat_super; | 
 | 2361 | 	} | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2362 |  | 
 | 2363 | 	s->s_flags |= MS_ACTIVE; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2364 |  | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 2365 | 	/* clone any lsm security options from the parent to the new sb */ | 
 | 2366 | 	security_sb_clone_mnt_opts(data->sb, s); | 
 | 2367 |  | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2368 | 	dprintk("<-- nfs_xdev_mount() = 0\n"); | 
 | 2369 | 	return mntroot; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2370 |  | 
 | 2371 | out_err_nosb: | 
 | 2372 | 	nfs_free_server(server); | 
 | 2373 | out_err_noserver: | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2374 | 	dprintk("<-- nfs_xdev_mount() = %d [error]\n", error); | 
 | 2375 | 	return ERR_PTR(error); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2376 |  | 
 | 2377 | error_splat_super: | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2378 | 	if (server && !s->s_root) | 
 | 2379 | 		bdi_unregister(&server->backing_dev_info); | 
 | 2380 | error_splat_bdi: | 
| Al Viro | 6f5bbff | 2009-05-06 01:34:22 -0400 | [diff] [blame] | 2381 | 	deactivate_locked_super(s); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2382 | 	dprintk("<-- nfs_xdev_mount() = %d [splat]\n", error); | 
 | 2383 | 	return ERR_PTR(error); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2384 | } | 
 | 2385 |  | 
 | 2386 | #ifdef CONFIG_NFS_V4 | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2387 |  | 
 | 2388 | /* | 
 | 2389 |  * Finish setting up a cloned NFS4 superblock | 
 | 2390 |  */ | 
 | 2391 | static void nfs4_clone_super(struct super_block *sb, | 
 | 2392 | 			    const struct super_block *old_sb) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2393 | { | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2394 | 	sb->s_blocksize_bits = old_sb->s_blocksize_bits; | 
 | 2395 | 	sb->s_blocksize = old_sb->s_blocksize; | 
 | 2396 | 	sb->s_maxbytes = old_sb->s_maxbytes; | 
 | 2397 | 	sb->s_time_gran = 1; | 
 | 2398 | 	sb->s_op = old_sb->s_op; | 
| Aneesh Kumar K.V | a8a5da9 | 2010-12-09 11:35:14 +0000 | [diff] [blame] | 2399 | 	/* | 
 | 2400 | 	 * The VFS shouldn't apply the umask to mode bits. We will do | 
 | 2401 | 	 * so ourselves when necessary. | 
 | 2402 | 	 */ | 
 | 2403 | 	sb->s_flags  |= MS_POSIXACL; | 
| Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 2404 | 	sb->s_xattr  = old_sb->s_xattr; | 
 | 2405 | 	nfs_initialise_sb(sb); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2406 | } | 
 | 2407 |  | 
 | 2408 | /* | 
 | 2409 |  * Set up an NFS4 superblock | 
 | 2410 |  */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2411 | static void nfs4_fill_super(struct super_block *sb) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2412 | { | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2413 | 	sb->s_time_gran = 1; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2414 | 	sb->s_op = &nfs4_sops; | 
| Aneesh Kumar K.V | a8a5da9 | 2010-12-09 11:35:14 +0000 | [diff] [blame] | 2415 | 	/* | 
 | 2416 | 	 * The VFS shouldn't apply the umask to mode bits. We will do | 
 | 2417 | 	 * so ourselves when necessary. | 
 | 2418 | 	 */ | 
 | 2419 | 	sb->s_flags  |= MS_POSIXACL; | 
| Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 2420 | 	sb->s_xattr = nfs4_xattr_handlers; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2421 | 	nfs_initialise_sb(sb); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2422 | } | 
 | 2423 |  | 
| Trond Myklebust | 01c3f05 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 2424 | static void nfs4_validate_mount_flags(struct nfs_parsed_mount_data *args) | 
 | 2425 | { | 
| Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 2426 | 	args->flags &= ~(NFS_MOUNT_NONLM|NFS_MOUNT_NOACL|NFS_MOUNT_VER3| | 
 | 2427 | 			 NFS_MOUNT_LOCAL_FLOCK|NFS_MOUNT_LOCAL_FCNTL); | 
| Trond Myklebust | 01c3f05 | 2009-06-17 13:22:58 -0700 | [diff] [blame] | 2428 | } | 
 | 2429 |  | 
| Chuck Lever | 7630c85 | 2009-09-08 19:49:57 -0400 | [diff] [blame] | 2430 | static int nfs4_validate_text_mount_data(void *options, | 
 | 2431 | 					 struct nfs_parsed_mount_data *args, | 
 | 2432 | 					 const char *dev_name) | 
 | 2433 | { | 
 | 2434 | 	struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address; | 
 | 2435 |  | 
| Trond Myklebust | f5855fe | 2009-10-06 15:40:37 -0400 | [diff] [blame] | 2436 | 	nfs_set_port(sap, &args->nfs_server.port, NFS_PORT); | 
| Chuck Lever | 7630c85 | 2009-09-08 19:49:57 -0400 | [diff] [blame] | 2437 |  | 
 | 2438 | 	nfs_validate_transport_protocol(args); | 
 | 2439 |  | 
 | 2440 | 	nfs4_validate_mount_flags(args); | 
 | 2441 |  | 
| Trond Myklebust | 2ecda72b | 2009-09-08 19:50:07 -0400 | [diff] [blame] | 2442 | 	if (args->version != 4) { | 
 | 2443 | 		dfprintk(MOUNT, | 
 | 2444 | 			 "NFS4: Illegal mount version\n"); | 
 | 2445 | 		return -EINVAL; | 
 | 2446 | 	} | 
 | 2447 |  | 
| Chuck Lever | 7630c85 | 2009-09-08 19:49:57 -0400 | [diff] [blame] | 2448 | 	if (args->auth_flavor_len > 1) { | 
 | 2449 | 		dfprintk(MOUNT, | 
 | 2450 | 			 "NFS4: Too many RPC auth flavours specified\n"); | 
 | 2451 | 		return -EINVAL; | 
 | 2452 | 	} | 
 | 2453 |  | 
 | 2454 | 	if (args->client_address == NULL) { | 
 | 2455 | 		dfprintk(MOUNT, | 
 | 2456 | 			 "NFS4: mount program didn't pass callback address\n"); | 
 | 2457 | 		return -EINVAL; | 
 | 2458 | 	} | 
 | 2459 |  | 
 | 2460 | 	return nfs_parse_devname(dev_name, | 
 | 2461 | 				   &args->nfs_server.hostname, | 
 | 2462 | 				   NFS4_MAXNAMLEN, | 
 | 2463 | 				   &args->nfs_server.export_path, | 
 | 2464 | 				   NFS4_MAXPATHLEN); | 
 | 2465 | } | 
 | 2466 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2467 | /* | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2468 |  * Validate NFSv4 mount options | 
 | 2469 |  */ | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 2470 | static int nfs4_validate_mount_data(void *options, | 
 | 2471 | 				    struct nfs_parsed_mount_data *args, | 
 | 2472 | 				    const char *dev_name) | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2473 | { | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 2474 | 	struct sockaddr *sap = (struct sockaddr *)&args->nfs_server.address; | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 2475 | 	struct nfs4_mount_data *data = (struct nfs4_mount_data *)options; | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2476 | 	char *c; | 
 | 2477 |  | 
 | 2478 | 	if (data == NULL) | 
 | 2479 | 		goto out_no_data; | 
 | 2480 |  | 
 | 2481 | 	switch (data->version) { | 
 | 2482 | 	case 1: | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 2483 | 		if (data->host_addrlen > sizeof(args->nfs_server.address)) | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2484 | 			goto out_no_address; | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 2485 | 		if (data->host_addrlen == 0) | 
 | 2486 | 			goto out_no_address; | 
 | 2487 | 		args->nfs_server.addrlen = data->host_addrlen; | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 2488 | 		if (copy_from_user(sap, data->host_addr, data->host_addrlen)) | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2489 | 			return -EFAULT; | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 2490 | 		if (!nfs_verify_server_address(sap)) | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2491 | 			goto out_no_address; | 
 | 2492 |  | 
| Chuck Lever | 6738b25 | 2008-06-24 16:33:54 -0400 | [diff] [blame] | 2493 | 		if (data->auth_flavourlen) { | 
 | 2494 | 			if (data->auth_flavourlen > 1) | 
 | 2495 | 				goto out_inval_auth; | 
| Trond Myklebust | 20c71f5 | 2007-09-20 20:23:51 -0400 | [diff] [blame] | 2496 | 			if (copy_from_user(&args->auth_flavors[0], | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 2497 | 					   data->auth_flavours, | 
| Trond Myklebust | 20c71f5 | 2007-09-20 20:23:51 -0400 | [diff] [blame] | 2498 | 					   sizeof(args->auth_flavors[0]))) | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2499 | 				return -EFAULT; | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2500 | 		} | 
 | 2501 |  | 
 | 2502 | 		c = strndup_user(data->hostname.data, NFS4_MAXNAMLEN); | 
 | 2503 | 		if (IS_ERR(c)) | 
 | 2504 | 			return PTR_ERR(c); | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 2505 | 		args->nfs_server.hostname = c; | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2506 |  | 
 | 2507 | 		c = strndup_user(data->mnt_path.data, NFS4_MAXPATHLEN); | 
 | 2508 | 		if (IS_ERR(c)) | 
 | 2509 | 			return PTR_ERR(c); | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 2510 | 		args->nfs_server.export_path = c; | 
 | 2511 | 		dfprintk(MOUNT, "NFS: MNTPATH: '%s'\n", c); | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2512 |  | 
 | 2513 | 		c = strndup_user(data->client_addr.data, 16); | 
 | 2514 | 		if (IS_ERR(c)) | 
 | 2515 | 			return PTR_ERR(c); | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 2516 | 		args->client_address = c; | 
 | 2517 |  | 
 | 2518 | 		/* | 
 | 2519 | 		 * Translate to nfs_parsed_mount_data, which nfs4_fill_super | 
 | 2520 | 		 * can deal with. | 
 | 2521 | 		 */ | 
 | 2522 |  | 
 | 2523 | 		args->flags	= data->flags & NFS4_MOUNT_FLAGMASK; | 
 | 2524 | 		args->rsize	= data->rsize; | 
 | 2525 | 		args->wsize	= data->wsize; | 
 | 2526 | 		args->timeo	= data->timeo; | 
 | 2527 | 		args->retrans	= data->retrans; | 
 | 2528 | 		args->acregmin	= data->acregmin; | 
 | 2529 | 		args->acregmax	= data->acregmax; | 
 | 2530 | 		args->acdirmin	= data->acdirmin; | 
 | 2531 | 		args->acdirmax	= data->acdirmax; | 
 | 2532 | 		args->nfs_server.protocol = data->proto; | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 2533 | 		nfs_validate_transport_protocol(args); | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2534 |  | 
 | 2535 | 		break; | 
| Chuck Lever | 7630c85 | 2009-09-08 19:49:57 -0400 | [diff] [blame] | 2536 | 	default: | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 2537 | 		if (nfs_parse_mount_options((char *)options, args) == 0) | 
| Chuck Lever | 8007122 | 2007-07-01 12:13:59 -0400 | [diff] [blame] | 2538 | 			return -EINVAL; | 
 | 2539 |  | 
| Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 2540 | 		if (!nfs_verify_server_address(sap)) | 
| Chuck Lever | 8007122 | 2007-07-01 12:13:59 -0400 | [diff] [blame] | 2541 | 			return -EINVAL; | 
| Chuck Lever | ed596a8 | 2008-06-26 17:47:05 -0400 | [diff] [blame] | 2542 |  | 
| Chuck Lever | 7630c85 | 2009-09-08 19:49:57 -0400 | [diff] [blame] | 2543 | 		return nfs4_validate_text_mount_data(options, args, dev_name); | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2544 | 	} | 
 | 2545 |  | 
 | 2546 | 	return 0; | 
 | 2547 |  | 
 | 2548 | out_no_data: | 
 | 2549 | 	dfprintk(MOUNT, "NFS4: mount program didn't pass any mount data\n"); | 
 | 2550 | 	return -EINVAL; | 
 | 2551 |  | 
 | 2552 | out_inval_auth: | 
 | 2553 | 	dfprintk(MOUNT, "NFS4: Invalid number of RPC auth flavours %d\n", | 
 | 2554 | 		 data->auth_flavourlen); | 
 | 2555 | 	return -EINVAL; | 
 | 2556 |  | 
 | 2557 | out_no_address: | 
 | 2558 | 	dfprintk(MOUNT, "NFS4: mount program didn't pass remote address\n"); | 
 | 2559 | 	return -EINVAL; | 
| Chuck Lever | f0768eb | 2007-07-01 12:13:01 -0400 | [diff] [blame] | 2560 | } | 
 | 2561 |  | 
 | 2562 | /* | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2563 |  * Get the superblock for the NFS4 root partition | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2564 |  */ | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2565 | static struct dentry * | 
 | 2566 | nfs4_remote_mount(struct file_system_type *fs_type, int flags, | 
 | 2567 | 		  const char *dev_name, void *raw_data) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2568 | { | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2569 | 	struct nfs_parsed_mount_data *data = raw_data; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2570 | 	struct super_block *s; | 
 | 2571 | 	struct nfs_server *server; | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2572 | 	struct nfs_fh *mntfh; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2573 | 	struct dentry *mntroot; | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2574 | 	int (*compare_super)(struct super_block *, void *) = nfs_compare_super; | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2575 | 	struct nfs_sb_mountdata sb_mntdata = { | 
 | 2576 | 		.mntflags = flags, | 
 | 2577 | 	}; | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2578 | 	int error = -ENOMEM; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2579 |  | 
| Trond Myklebust | b157b06 | 2010-04-19 19:05:48 -0400 | [diff] [blame] | 2580 | 	mntfh = nfs_alloc_fhandle(); | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2581 | 	if (data == NULL || mntfh == NULL) | 
 | 2582 | 		goto out_free_fh; | 
 | 2583 |  | 
 | 2584 | 	security_init_mnt_opts(&data->lsm_opts); | 
| Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 2585 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2586 | 	/* Get a volume representation */ | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2587 | 	server = nfs4_create_server(data, mntfh); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2588 | 	if (IS_ERR(server)) { | 
 | 2589 | 		error = PTR_ERR(server); | 
| Chuck Lever | 29eb981 | 2007-07-01 12:12:30 -0400 | [diff] [blame] | 2590 | 		goto out; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2591 | 	} | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2592 | 	sb_mntdata.server = server; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2593 |  | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2594 | 	if (server->flags & NFS4_MOUNT_UNSHARED) | 
 | 2595 | 		compare_super = NULL; | 
 | 2596 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2597 | 	/* Get a superblock - note that we may end up sharing one that already exists */ | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2598 | 	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata); | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 2599 | 	if (IS_ERR(s)) { | 
 | 2600 | 		error = PTR_ERR(s); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2601 | 		goto out_free; | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 2602 | 	} | 
 | 2603 |  | 
| Trond Myklebust | 5dd3177 | 2006-08-24 01:03:05 -0400 | [diff] [blame] | 2604 | 	if (s->s_fs_info != server) { | 
 | 2605 | 		nfs_free_server(server); | 
 | 2606 | 		server = NULL; | 
| Miklos Szeredi | fa79975 | 2008-04-30 00:54:33 -0700 | [diff] [blame] | 2607 | 	} else { | 
 | 2608 | 		error = nfs_bdi_register(server); | 
 | 2609 | 		if (error) | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2610 | 			goto error_splat_bdi; | 
| Trond Myklebust | 5dd3177 | 2006-08-24 01:03:05 -0400 | [diff] [blame] | 2611 | 	} | 
 | 2612 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2613 | 	if (!s->s_root) { | 
 | 2614 | 		/* initial superblock/root creation */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2615 | 		nfs4_fill_super(s); | 
| David Howells | 2df5480 | 2009-09-23 14:36:39 -0400 | [diff] [blame] | 2616 | 		nfs_fscache_get_super_cookie( | 
 | 2617 | 			s, data ? data->fscache_uniq : NULL, NULL); | 
| Trond Myklebust | 816724e | 2006-06-24 08:41:41 -0400 | [diff] [blame] | 2618 | 	} | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2619 |  | 
| Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 2620 | 	mntroot = nfs4_get_root(s, mntfh, dev_name); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2621 | 	if (IS_ERR(mntroot)) { | 
 | 2622 | 		error = PTR_ERR(mntroot); | 
 | 2623 | 		goto error_splat_super; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2624 | 	} | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2625 |  | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2626 | 	error = security_sb_set_mnt_opts(s, &data->lsm_opts); | 
| Eric Paris | 46c8ac7 | 2008-05-02 13:42:42 -0700 | [diff] [blame] | 2627 | 	if (error) | 
 | 2628 | 		goto error_splat_root; | 
 | 2629 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2630 | 	s->s_flags |= MS_ACTIVE; | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2631 |  | 
 | 2632 | 	security_free_mnt_opts(&data->lsm_opts); | 
 | 2633 | 	nfs_free_fhandle(mntfh); | 
 | 2634 | 	return mntroot; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2635 |  | 
| Chuck Lever | 29eb981 | 2007-07-01 12:12:30 -0400 | [diff] [blame] | 2636 | out: | 
| Trond Myklebust | 33852a1 | 2008-06-19 14:20:11 -0400 | [diff] [blame] | 2637 | 	security_free_mnt_opts(&data->lsm_opts); | 
 | 2638 | out_free_fh: | 
| Trond Myklebust | b157b06 | 2010-04-19 19:05:48 -0400 | [diff] [blame] | 2639 | 	nfs_free_fhandle(mntfh); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2640 | 	return ERR_PTR(error); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2641 |  | 
| Chuck Lever | 29eb981 | 2007-07-01 12:12:30 -0400 | [diff] [blame] | 2642 | out_free: | 
 | 2643 | 	nfs_free_server(server); | 
 | 2644 | 	goto out; | 
 | 2645 |  | 
| Eric Paris | 46c8ac7 | 2008-05-02 13:42:42 -0700 | [diff] [blame] | 2646 | error_splat_root: | 
 | 2647 | 	dput(mntroot); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2648 | error_splat_super: | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2649 | 	if (server && !s->s_root) | 
 | 2650 | 		bdi_unregister(&server->backing_dev_info); | 
 | 2651 | error_splat_bdi: | 
| Al Viro | 6f5bbff | 2009-05-06 01:34:22 -0400 | [diff] [blame] | 2652 | 	deactivate_locked_super(s); | 
| Chuck Lever | 29eb981 | 2007-07-01 12:12:30 -0400 | [diff] [blame] | 2653 | 	goto out; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2654 | } | 
 | 2655 |  | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2656 | static struct vfsmount *nfs_do_root_mount(struct file_system_type *fs_type, | 
 | 2657 | 		int flags, void *data, const char *hostname) | 
 | 2658 | { | 
 | 2659 | 	struct vfsmount *root_mnt; | 
 | 2660 | 	char *root_devname; | 
 | 2661 | 	size_t len; | 
 | 2662 |  | 
 | 2663 | 	len = strlen(hostname) + 3; | 
 | 2664 | 	root_devname = kmalloc(len, GFP_KERNEL); | 
 | 2665 | 	if (root_devname == NULL) | 
 | 2666 | 		return ERR_PTR(-ENOMEM); | 
 | 2667 | 	snprintf(root_devname, len, "%s:/", hostname); | 
 | 2668 | 	root_mnt = vfs_kern_mount(fs_type, flags, root_devname, data); | 
 | 2669 | 	kfree(root_devname); | 
 | 2670 | 	return root_mnt; | 
 | 2671 | } | 
 | 2672 |  | 
| Trond Myklebust | ce587e0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 2673 | struct nfs_referral_count { | 
 | 2674 | 	struct list_head list; | 
 | 2675 | 	const struct task_struct *task; | 
 | 2676 | 	unsigned int referral_count; | 
 | 2677 | }; | 
 | 2678 |  | 
 | 2679 | static LIST_HEAD(nfs_referral_count_list); | 
 | 2680 | static DEFINE_SPINLOCK(nfs_referral_count_list_lock); | 
 | 2681 |  | 
 | 2682 | static struct nfs_referral_count *nfs_find_referral_count(void) | 
 | 2683 | { | 
 | 2684 | 	struct nfs_referral_count *p; | 
 | 2685 |  | 
 | 2686 | 	list_for_each_entry(p, &nfs_referral_count_list, list) { | 
 | 2687 | 		if (p->task == current) | 
 | 2688 | 			return p; | 
 | 2689 | 	} | 
 | 2690 | 	return NULL; | 
 | 2691 | } | 
 | 2692 |  | 
 | 2693 | #define NFS_MAX_NESTED_REFERRALS 2 | 
 | 2694 |  | 
 | 2695 | static int nfs_referral_loop_protect(void) | 
 | 2696 | { | 
 | 2697 | 	struct nfs_referral_count *p, *new; | 
 | 2698 | 	int ret = -ENOMEM; | 
 | 2699 |  | 
 | 2700 | 	new = kmalloc(sizeof(*new), GFP_KERNEL); | 
 | 2701 | 	if (!new) | 
 | 2702 | 		goto out; | 
 | 2703 | 	new->task = current; | 
 | 2704 | 	new->referral_count = 1; | 
 | 2705 |  | 
 | 2706 | 	ret = 0; | 
 | 2707 | 	spin_lock(&nfs_referral_count_list_lock); | 
 | 2708 | 	p = nfs_find_referral_count(); | 
 | 2709 | 	if (p != NULL) { | 
 | 2710 | 		if (p->referral_count >= NFS_MAX_NESTED_REFERRALS) | 
 | 2711 | 			ret = -ELOOP; | 
 | 2712 | 		else | 
 | 2713 | 			p->referral_count++; | 
 | 2714 | 	} else { | 
 | 2715 | 		list_add(&new->list, &nfs_referral_count_list); | 
 | 2716 | 		new = NULL; | 
 | 2717 | 	} | 
 | 2718 | 	spin_unlock(&nfs_referral_count_list_lock); | 
 | 2719 | 	kfree(new); | 
 | 2720 | out: | 
 | 2721 | 	return ret; | 
 | 2722 | } | 
 | 2723 |  | 
 | 2724 | static void nfs_referral_loop_unprotect(void) | 
 | 2725 | { | 
 | 2726 | 	struct nfs_referral_count *p; | 
 | 2727 |  | 
 | 2728 | 	spin_lock(&nfs_referral_count_list_lock); | 
 | 2729 | 	p = nfs_find_referral_count(); | 
 | 2730 | 	p->referral_count--; | 
 | 2731 | 	if (p->referral_count == 0) | 
 | 2732 | 		list_del(&p->list); | 
 | 2733 | 	else | 
 | 2734 | 		p = NULL; | 
 | 2735 | 	spin_unlock(&nfs_referral_count_list_lock); | 
 | 2736 | 	kfree(p); | 
 | 2737 | } | 
 | 2738 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2739 | static struct dentry *nfs_follow_remote_path(struct vfsmount *root_mnt, | 
 | 2740 | 		const char *export_path) | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2741 | { | 
| Trond Myklebust | 04ffdbe | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2742 | 	struct nameidata *nd = NULL; | 
| Linus Torvalds | a2770d8 | 2009-12-17 12:51:05 -0800 | [diff] [blame] | 2743 | 	struct mnt_namespace *ns_private; | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2744 | 	struct super_block *s; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2745 | 	struct dentry *dentry; | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2746 | 	int ret; | 
 | 2747 |  | 
| Trond Myklebust | 04ffdbe | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2748 | 	nd = kmalloc(sizeof(*nd), GFP_KERNEL); | 
 | 2749 | 	if (nd == NULL) | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2750 | 		return ERR_PTR(-ENOMEM); | 
| Trond Myklebust | 04ffdbe | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2751 |  | 
| Linus Torvalds | a2770d8 | 2009-12-17 12:51:05 -0800 | [diff] [blame] | 2752 | 	ns_private = create_mnt_ns(root_mnt); | 
 | 2753 | 	ret = PTR_ERR(ns_private); | 
 | 2754 | 	if (IS_ERR(ns_private)) | 
 | 2755 | 		goto out_mntput; | 
 | 2756 |  | 
| Trond Myklebust | ce587e0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 2757 | 	ret = nfs_referral_loop_protect(); | 
 | 2758 | 	if (ret != 0) | 
 | 2759 | 		goto out_put_mnt_ns; | 
 | 2760 |  | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2761 | 	ret = vfs_path_lookup(root_mnt->mnt_root, root_mnt, | 
| Trond Myklebust | 04ffdbe | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2762 | 			export_path, LOOKUP_FOLLOW, nd); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2763 |  | 
| Trond Myklebust | ce587e0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 2764 | 	nfs_referral_loop_unprotect(); | 
| Linus Torvalds | a2770d8 | 2009-12-17 12:51:05 -0800 | [diff] [blame] | 2765 | 	put_mnt_ns(ns_private); | 
 | 2766 |  | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2767 | 	if (ret != 0) | 
 | 2768 | 		goto out_err; | 
 | 2769 |  | 
| Trond Myklebust | 04ffdbe | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2770 | 	s = nd->path.mnt->mnt_sb; | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2771 | 	atomic_inc(&s->s_active); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2772 | 	dentry = dget(nd->path.dentry); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2773 |  | 
| Trond Myklebust | 04ffdbe | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2774 | 	path_put(&nd->path); | 
 | 2775 | 	kfree(nd); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2776 | 	down_write(&s->s_umount); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2777 | 	return dentry; | 
| Trond Myklebust | ce587e0 | 2010-04-16 16:22:52 -0400 | [diff] [blame] | 2778 | out_put_mnt_ns: | 
 | 2779 | 	put_mnt_ns(ns_private); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2780 | out_mntput: | 
 | 2781 | 	mntput(root_mnt); | 
 | 2782 | out_err: | 
| Trond Myklebust | 04ffdbe | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2783 | 	kfree(nd); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2784 | 	return ERR_PTR(ret); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2785 | } | 
 | 2786 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2787 | static struct dentry *nfs4_try_mount(int flags, const char *dev_name, | 
 | 2788 | 			 struct nfs_parsed_mount_data *data) | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2789 | { | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2790 | 	char *export_path; | 
 | 2791 | 	struct vfsmount *root_mnt; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2792 | 	struct dentry *res; | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2793 |  | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2794 | 	dfprintk(MOUNT, "--> nfs4_try_mount()\n"); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2795 |  | 
 | 2796 | 	export_path = data->nfs_server.export_path; | 
 | 2797 | 	data->nfs_server.export_path = "/"; | 
 | 2798 | 	root_mnt = nfs_do_root_mount(&nfs4_remote_fs_type, flags, data, | 
 | 2799 | 			data->nfs_server.hostname); | 
 | 2800 | 	data->nfs_server.export_path = export_path; | 
 | 2801 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2802 | 	res = ERR_CAST(root_mnt); | 
 | 2803 | 	if (!IS_ERR(root_mnt)) | 
 | 2804 | 		res = nfs_follow_remote_path(root_mnt, export_path); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2805 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2806 | 	dfprintk(MOUNT, "<-- nfs4_try_mount() = %ld%s\n", | 
 | 2807 | 			IS_ERR(res) ? PTR_ERR(res) : 0, | 
 | 2808 | 			IS_ERR(res) ? " [error]" : ""); | 
 | 2809 | 	return res; | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2810 | } | 
 | 2811 |  | 
 | 2812 | /* | 
 | 2813 |  * Get the superblock for an NFS4 mountpoint | 
 | 2814 |  */ | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2815 | static struct dentry *nfs4_mount(struct file_system_type *fs_type, | 
 | 2816 | 	int flags, const char *dev_name, void *raw_data) | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2817 | { | 
 | 2818 | 	struct nfs_parsed_mount_data *data; | 
 | 2819 | 	int error = -ENOMEM; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2820 | 	struct dentry *res = ERR_PTR(-ENOMEM); | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2821 |  | 
| Trond Myklebust | c5811db | 2009-10-06 15:40:15 -0400 | [diff] [blame] | 2822 | 	data = nfs_alloc_parsed_mount_data(4); | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2823 | 	if (data == NULL) | 
 | 2824 | 		goto out_free_data; | 
 | 2825 |  | 
 | 2826 | 	/* Validate the mount data */ | 
 | 2827 | 	error = nfs4_validate_mount_data(raw_data, data, dev_name); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2828 | 	if (error < 0) { | 
 | 2829 | 		res = ERR_PTR(error); | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2830 | 		goto out; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2831 | 	} | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2832 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2833 | 	res = nfs4_try_mount(flags, dev_name, data); | 
 | 2834 | 	if (IS_ERR(res)) | 
 | 2835 | 		error = PTR_ERR(res); | 
| Chuck Lever | a6fe23b | 2009-09-08 19:50:00 -0400 | [diff] [blame] | 2836 |  | 
 | 2837 | out: | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2838 | 	kfree(data->client_address); | 
 | 2839 | 	kfree(data->nfs_server.export_path); | 
 | 2840 | 	kfree(data->nfs_server.hostname); | 
 | 2841 | 	kfree(data->fscache_uniq); | 
 | 2842 | out_free_data: | 
 | 2843 | 	kfree(data); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2844 | 	dprintk("<-- nfs4_mount() = %d%s\n", error, | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2845 | 			error != 0 ? " [error]" : ""); | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 2846 | 	return res; | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 2847 | } | 
 | 2848 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2849 | static void nfs4_kill_super(struct super_block *sb) | 
 | 2850 | { | 
 | 2851 | 	struct nfs_server *server = NFS_SB(sb); | 
 | 2852 |  | 
| Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 2853 | 	dprintk("--> %s\n", __func__); | 
| Trond Myklebust | 515d861 | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 2854 | 	nfs_super_return_all_delegations(sb); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2855 | 	kill_anon_super(sb); | 
| David Howells | 0873404 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 2856 | 	nfs_fscache_release_super_cookie(sb); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2857 | 	nfs_free_server(server); | 
| Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 2858 | 	dprintk("<-- %s\n", __func__); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2859 | } | 
 | 2860 |  | 
 | 2861 | /* | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2862 |  * Clone an NFS4 server record on xdev traversal (FSID-change) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2863 |  */ | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2864 | static struct dentry * | 
 | 2865 | nfs4_xdev_mount(struct file_system_type *fs_type, int flags, | 
 | 2866 | 		 const char *dev_name, void *raw_data) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2867 | { | 
 | 2868 | 	struct nfs_clone_mount *data = raw_data; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2869 | 	struct super_block *s; | 
 | 2870 | 	struct nfs_server *server; | 
 | 2871 | 	struct dentry *mntroot; | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2872 | 	int (*compare_super)(struct super_block *, void *) = nfs_compare_super; | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2873 | 	struct nfs_sb_mountdata sb_mntdata = { | 
 | 2874 | 		.mntflags = flags, | 
 | 2875 | 	}; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2876 | 	int error; | 
 | 2877 |  | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2878 | 	dprintk("--> nfs4_xdev_mount()\n"); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2879 |  | 
 | 2880 | 	/* create a new volume representation */ | 
 | 2881 | 	server = nfs_clone_server(NFS_SB(data->sb), data->fh, data->fattr); | 
 | 2882 | 	if (IS_ERR(server)) { | 
 | 2883 | 		error = PTR_ERR(server); | 
 | 2884 | 		goto out_err_noserver; | 
 | 2885 | 	} | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2886 | 	sb_mntdata.server = server; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2887 |  | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2888 | 	if (server->flags & NFS4_MOUNT_UNSHARED) | 
 | 2889 | 		compare_super = NULL; | 
 | 2890 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2891 | 	/* Get a superblock - note that we may end up sharing one that already exists */ | 
| Andy Adamson | ec9a05c | 2008-10-17 10:44:37 -0400 | [diff] [blame] | 2892 | 	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2893 | 	if (IS_ERR(s)) { | 
 | 2894 | 		error = PTR_ERR(s); | 
 | 2895 | 		goto out_err_nosb; | 
 | 2896 | 	} | 
 | 2897 |  | 
 | 2898 | 	if (s->s_fs_info != server) { | 
 | 2899 | 		nfs_free_server(server); | 
 | 2900 | 		server = NULL; | 
| Miklos Szeredi | fa79975 | 2008-04-30 00:54:33 -0700 | [diff] [blame] | 2901 | 	} else { | 
 | 2902 | 		error = nfs_bdi_register(server); | 
 | 2903 | 		if (error) | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2904 | 			goto error_splat_bdi; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2905 | 	} | 
 | 2906 |  | 
 | 2907 | 	if (!s->s_root) { | 
 | 2908 | 		/* initial superblock/root creation */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2909 | 		nfs4_clone_super(s, data->sb); | 
| David Howells | 2df5480 | 2009-09-23 14:36:39 -0400 | [diff] [blame] | 2910 | 		nfs_fscache_get_super_cookie(s, NULL, data); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2911 | 	} | 
 | 2912 |  | 
| Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 2913 | 	mntroot = nfs4_get_root(s, data->fh, dev_name); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2914 | 	if (IS_ERR(mntroot)) { | 
 | 2915 | 		error = PTR_ERR(mntroot); | 
 | 2916 | 		goto error_splat_super; | 
 | 2917 | 	} | 
| Trond Myklebust | e9cc6c2 | 2008-01-02 13:28:57 -0500 | [diff] [blame] | 2918 | 	if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) { | 
 | 2919 | 		dput(mntroot); | 
 | 2920 | 		error = -ESTALE; | 
 | 2921 | 		goto error_splat_super; | 
 | 2922 | 	} | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2923 |  | 
 | 2924 | 	s->s_flags |= MS_ACTIVE; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2925 |  | 
| Eric Paris | 46c8ac7 | 2008-05-02 13:42:42 -0700 | [diff] [blame] | 2926 | 	security_sb_clone_mnt_opts(data->sb, s); | 
 | 2927 |  | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2928 | 	dprintk("<-- nfs4_xdev_mount() = 0\n"); | 
 | 2929 | 	return mntroot; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2930 |  | 
 | 2931 | out_err_nosb: | 
 | 2932 | 	nfs_free_server(server); | 
 | 2933 | out_err_noserver: | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2934 | 	dprintk("<-- nfs4_xdev_mount() = %d [error]\n", error); | 
 | 2935 | 	return ERR_PTR(error); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2936 |  | 
 | 2937 | error_splat_super: | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2938 | 	if (server && !s->s_root) | 
 | 2939 | 		bdi_unregister(&server->backing_dev_info); | 
 | 2940 | error_splat_bdi: | 
| Al Viro | 6f5bbff | 2009-05-06 01:34:22 -0400 | [diff] [blame] | 2941 | 	deactivate_locked_super(s); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2942 | 	dprintk("<-- nfs4_xdev_mount() = %d [splat]\n", error); | 
 | 2943 | 	return ERR_PTR(error); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2944 | } | 
 | 2945 |  | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 2946 | static struct dentry * | 
 | 2947 | nfs4_remote_referral_mount(struct file_system_type *fs_type, int flags, | 
 | 2948 | 			   const char *dev_name, void *raw_data) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 2949 | { | 
 | 2950 | 	struct nfs_clone_mount *data = raw_data; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2951 | 	struct super_block *s; | 
 | 2952 | 	struct nfs_server *server; | 
 | 2953 | 	struct dentry *mntroot; | 
| Trond Myklebust | 4f72729 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2954 | 	struct nfs_fh *mntfh; | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2955 | 	int (*compare_super)(struct super_block *, void *) = nfs_compare_super; | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2956 | 	struct nfs_sb_mountdata sb_mntdata = { | 
 | 2957 | 		.mntflags = flags, | 
 | 2958 | 	}; | 
| Trond Myklebust | 4f72729 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2959 | 	int error = -ENOMEM; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2960 |  | 
 | 2961 | 	dprintk("--> nfs4_referral_get_sb()\n"); | 
 | 2962 |  | 
| Trond Myklebust | 4f72729 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2963 | 	mntfh = nfs_alloc_fhandle(); | 
 | 2964 | 	if (mntfh == NULL) | 
 | 2965 | 		goto out_err_nofh; | 
 | 2966 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2967 | 	/* create a new volume representation */ | 
| Trond Myklebust | 4f72729 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 2968 | 	server = nfs4_create_referral_server(data, mntfh); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2969 | 	if (IS_ERR(server)) { | 
 | 2970 | 		error = PTR_ERR(server); | 
 | 2971 | 		goto out_err_noserver; | 
 | 2972 | 	} | 
| Trond Myklebust | e89a5a4 | 2007-08-31 10:45:17 -0400 | [diff] [blame] | 2973 | 	sb_mntdata.server = server; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2974 |  | 
| Trond Myklebust | 75180df | 2007-05-16 16:53:28 -0400 | [diff] [blame] | 2975 | 	if (server->flags & NFS4_MOUNT_UNSHARED) | 
 | 2976 | 		compare_super = NULL; | 
 | 2977 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2978 | 	/* Get a superblock - note that we may end up sharing one that already exists */ | 
| Andy Adamson | ec9a05c | 2008-10-17 10:44:37 -0400 | [diff] [blame] | 2979 | 	s = sget(&nfs4_fs_type, compare_super, nfs_set_super, &sb_mntdata); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2980 | 	if (IS_ERR(s)) { | 
 | 2981 | 		error = PTR_ERR(s); | 
 | 2982 | 		goto out_err_nosb; | 
 | 2983 | 	} | 
 | 2984 |  | 
 | 2985 | 	if (s->s_fs_info != server) { | 
 | 2986 | 		nfs_free_server(server); | 
 | 2987 | 		server = NULL; | 
| Miklos Szeredi | fa79975 | 2008-04-30 00:54:33 -0700 | [diff] [blame] | 2988 | 	} else { | 
 | 2989 | 		error = nfs_bdi_register(server); | 
 | 2990 | 		if (error) | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 2991 | 			goto error_splat_bdi; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2992 | 	} | 
 | 2993 |  | 
 | 2994 | 	if (!s->s_root) { | 
 | 2995 | 		/* initial superblock/root creation */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2996 | 		nfs4_fill_super(s); | 
| David Howells | 2df5480 | 2009-09-23 14:36:39 -0400 | [diff] [blame] | 2997 | 		nfs_fscache_get_super_cookie(s, NULL, data); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 2998 | 	} | 
 | 2999 |  | 
| Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 3000 | 	mntroot = nfs4_get_root(s, mntfh, dev_name); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3001 | 	if (IS_ERR(mntroot)) { | 
 | 3002 | 		error = PTR_ERR(mntroot); | 
 | 3003 | 		goto error_splat_super; | 
 | 3004 | 	} | 
| Trond Myklebust | e9cc6c2 | 2008-01-02 13:28:57 -0500 | [diff] [blame] | 3005 | 	if (mntroot->d_inode->i_op != NFS_SB(s)->nfs_client->rpc_ops->dir_inode_ops) { | 
 | 3006 | 		dput(mntroot); | 
 | 3007 | 		error = -ESTALE; | 
 | 3008 | 		goto error_splat_super; | 
 | 3009 | 	} | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3010 |  | 
 | 3011 | 	s->s_flags |= MS_ACTIVE; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3012 |  | 
| Eric Paris | 46c8ac7 | 2008-05-02 13:42:42 -0700 | [diff] [blame] | 3013 | 	security_sb_clone_mnt_opts(data->sb, s); | 
 | 3014 |  | 
| Trond Myklebust | 4f72729 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 3015 | 	nfs_free_fhandle(mntfh); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3016 | 	dprintk("<-- nfs4_referral_get_sb() = 0\n"); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 3017 | 	return mntroot; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3018 |  | 
 | 3019 | out_err_nosb: | 
 | 3020 | 	nfs_free_server(server); | 
 | 3021 | out_err_noserver: | 
| Trond Myklebust | 4f72729 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 3022 | 	nfs_free_fhandle(mntfh); | 
 | 3023 | out_err_nofh: | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3024 | 	dprintk("<-- nfs4_referral_get_sb() = %d [error]\n", error); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 3025 | 	return ERR_PTR(error); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3026 |  | 
 | 3027 | error_splat_super: | 
| NeilBrown | cfbc068 | 2010-03-11 11:20:17 +1100 | [diff] [blame] | 3028 | 	if (server && !s->s_root) | 
 | 3029 | 		bdi_unregister(&server->backing_dev_info); | 
 | 3030 | error_splat_bdi: | 
| Al Viro | 6f5bbff | 2009-05-06 01:34:22 -0400 | [diff] [blame] | 3031 | 	deactivate_locked_super(s); | 
| Trond Myklebust | 4f72729 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 3032 | 	nfs_free_fhandle(mntfh); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3033 | 	dprintk("<-- nfs4_referral_get_sb() = %d [splat]\n", error); | 
| Al Viro | 31f4347 | 2010-10-29 03:38:12 -0400 | [diff] [blame] | 3034 | 	return ERR_PTR(error); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 3035 | } | 
 | 3036 |  | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 3037 | /* | 
 | 3038 |  * Create an NFS4 server record on referral traversal | 
 | 3039 |  */ | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 3040 | static struct dentry *nfs4_referral_mount(struct file_system_type *fs_type, | 
 | 3041 | 		int flags, const char *dev_name, void *raw_data) | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 3042 | { | 
 | 3043 | 	struct nfs_clone_mount *data = raw_data; | 
 | 3044 | 	char *export_path; | 
 | 3045 | 	struct vfsmount *root_mnt; | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 3046 | 	struct dentry *res; | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 3047 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 3048 | 	dprintk("--> nfs4_referral_mount()\n"); | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 3049 |  | 
 | 3050 | 	export_path = data->mnt_path; | 
 | 3051 | 	data->mnt_path = "/"; | 
 | 3052 |  | 
 | 3053 | 	root_mnt = nfs_do_root_mount(&nfs4_remote_referral_fs_type, | 
 | 3054 | 			flags, data, data->hostname); | 
 | 3055 | 	data->mnt_path = export_path; | 
 | 3056 |  | 
| Al Viro | 0119498 | 2011-03-16 07:25:36 -0400 | [diff] [blame] | 3057 | 	res = ERR_CAST(root_mnt); | 
 | 3058 | 	if (!IS_ERR(root_mnt)) | 
 | 3059 | 		res = nfs_follow_remote_path(root_mnt, export_path); | 
 | 3060 | 	dprintk("<-- nfs4_referral_mount() = %ld%s\n", | 
 | 3061 | 			IS_ERR(res) ? PTR_ERR(res) : 0, | 
 | 3062 | 			IS_ERR(res) ? " [error]" : ""); | 
 | 3063 | 	return res; | 
| Trond Myklebust | c02d7ad | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 3064 | } | 
 | 3065 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3066 | #endif /* CONFIG_NFS_V4 */ |