| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 1 | /* client.c: NFS client sharing and management code | 
|  | 2 | * | 
|  | 3 | * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved. | 
|  | 4 | * Written by David Howells (dhowells@redhat.com) | 
|  | 5 | * | 
|  | 6 | * This program is free software; you can redistribute it and/or | 
|  | 7 | * modify it under the terms of the GNU General Public License | 
|  | 8 | * as published by the Free Software Foundation; either version | 
|  | 9 | * 2 of the License, or (at your option) any later version. | 
|  | 10 | */ | 
|  | 11 |  | 
|  | 12 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 13 | #include <linux/module.h> | 
|  | 14 | #include <linux/init.h> | 
| Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 15 | #include <linux/sched.h> | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 16 | #include <linux/time.h> | 
|  | 17 | #include <linux/kernel.h> | 
|  | 18 | #include <linux/mm.h> | 
|  | 19 | #include <linux/string.h> | 
|  | 20 | #include <linux/stat.h> | 
|  | 21 | #include <linux/errno.h> | 
|  | 22 | #include <linux/unistd.h> | 
|  | 23 | #include <linux/sunrpc/clnt.h> | 
|  | 24 | #include <linux/sunrpc/stats.h> | 
|  | 25 | #include <linux/sunrpc/metrics.h> | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 26 | #include <linux/sunrpc/xprtsock.h> | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 27 | #include <linux/sunrpc/xprtrdma.h> | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 28 | #include <linux/nfs_fs.h> | 
|  | 29 | #include <linux/nfs_mount.h> | 
|  | 30 | #include <linux/nfs4_mount.h> | 
|  | 31 | #include <linux/lockd/bind.h> | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 32 | #include <linux/seq_file.h> | 
|  | 33 | #include <linux/mount.h> | 
|  | 34 | #include <linux/nfs_idmap.h> | 
|  | 35 | #include <linux/vfs.h> | 
|  | 36 | #include <linux/inet.h> | 
| Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 37 | #include <linux/in6.h> | 
|  | 38 | #include <net/ipv6.h> | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 39 | #include <linux/nfs_xdr.h> | 
| Andy Adamson | 0b5b7ae | 2009-04-01 09:23:15 -0400 | [diff] [blame] | 40 | #include <linux/sunrpc/bc_xprt.h> | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 41 |  | 
|  | 42 | #include <asm/system.h> | 
|  | 43 |  | 
|  | 44 | #include "nfs4_fs.h" | 
|  | 45 | #include "callback.h" | 
|  | 46 | #include "delegation.h" | 
|  | 47 | #include "iostat.h" | 
|  | 48 | #include "internal.h" | 
| David Howells | 1472728 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 49 | #include "fscache.h" | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 50 |  | 
|  | 51 | #define NFSDBG_FACILITY		NFSDBG_CLIENT | 
|  | 52 |  | 
|  | 53 | static DEFINE_SPINLOCK(nfs_client_lock); | 
|  | 54 | static LIST_HEAD(nfs_client_list); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 55 | static LIST_HEAD(nfs_volume_list); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 56 | static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq); | 
|  | 57 |  | 
|  | 58 | /* | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 59 | * RPC cruft for NFS | 
|  | 60 | */ | 
|  | 61 | static struct rpc_version *nfs_version[5] = { | 
|  | 62 | [2]			= &nfs_version2, | 
|  | 63 | #ifdef CONFIG_NFS_V3 | 
|  | 64 | [3]			= &nfs_version3, | 
|  | 65 | #endif | 
|  | 66 | #ifdef CONFIG_NFS_V4 | 
|  | 67 | [4]			= &nfs_version4, | 
|  | 68 | #endif | 
|  | 69 | }; | 
|  | 70 |  | 
|  | 71 | struct rpc_program nfs_program = { | 
|  | 72 | .name			= "nfs", | 
|  | 73 | .number			= NFS_PROGRAM, | 
|  | 74 | .nrvers			= ARRAY_SIZE(nfs_version), | 
|  | 75 | .version		= nfs_version, | 
|  | 76 | .stats			= &nfs_rpcstat, | 
|  | 77 | .pipe_dir_name		= "/nfs", | 
|  | 78 | }; | 
|  | 79 |  | 
|  | 80 | struct rpc_stat nfs_rpcstat = { | 
|  | 81 | .program		= &nfs_program | 
|  | 82 | }; | 
|  | 83 |  | 
|  | 84 |  | 
|  | 85 | #ifdef CONFIG_NFS_V3_ACL | 
|  | 86 | static struct rpc_stat		nfsacl_rpcstat = { &nfsacl_program }; | 
|  | 87 | static struct rpc_version *	nfsacl_version[] = { | 
|  | 88 | [3]			= &nfsacl_version3, | 
|  | 89 | }; | 
|  | 90 |  | 
|  | 91 | struct rpc_program		nfsacl_program = { | 
|  | 92 | .name			= "nfsacl", | 
|  | 93 | .number			= NFS_ACL_PROGRAM, | 
|  | 94 | .nrvers			= ARRAY_SIZE(nfsacl_version), | 
|  | 95 | .version		= nfsacl_version, | 
|  | 96 | .stats			= &nfsacl_rpcstat, | 
|  | 97 | }; | 
|  | 98 | #endif  /* CONFIG_NFS_V3_ACL */ | 
|  | 99 |  | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 100 | struct nfs_client_initdata { | 
|  | 101 | const char *hostname; | 
| Chuck Lever | d7422c4 | 2007-12-10 14:58:51 -0500 | [diff] [blame] | 102 | const struct sockaddr *addr; | 
| Chuck Lever | 6e4cffd | 2007-12-10 14:58:15 -0500 | [diff] [blame] | 103 | size_t addrlen; | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 104 | const struct nfs_rpc_ops *rpc_ops; | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 105 | int proto; | 
| Benny Halevy | 5aae4a9 | 2009-04-01 09:21:50 -0400 | [diff] [blame] | 106 | u32 minorversion; | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 107 | }; | 
|  | 108 |  | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 109 | /* | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 110 | * Allocate a shared client record | 
|  | 111 | * | 
|  | 112 | * Since these are allocated/deallocated very rarely, we don't | 
|  | 113 | * bother putting them in a slab cache... | 
|  | 114 | */ | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 115 | static struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *cl_init) | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 116 | { | 
|  | 117 | struct nfs_client *clp; | 
| Trond Myklebust | 7c67db3 | 2008-04-07 20:50:11 -0400 | [diff] [blame] | 118 | struct rpc_cred *cred; | 
| Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 119 | int err = -ENOMEM; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 120 |  | 
|  | 121 | if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL) | 
|  | 122 | goto error_0; | 
|  | 123 |  | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 124 | clp->rpc_ops = cl_init->rpc_ops; | 
|  | 125 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 126 | atomic_set(&clp->cl_count, 1); | 
|  | 127 | clp->cl_cons_state = NFS_CS_INITING; | 
|  | 128 |  | 
| Chuck Lever | 6e4cffd | 2007-12-10 14:58:15 -0500 | [diff] [blame] | 129 | memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen); | 
|  | 130 | clp->cl_addrlen = cl_init->addrlen; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 131 |  | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 132 | if (cl_init->hostname) { | 
| Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 133 | err = -ENOMEM; | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 134 | clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 135 | if (!clp->cl_hostname) | 
| Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 136 | goto error_cleanup; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 137 | } | 
|  | 138 |  | 
|  | 139 | INIT_LIST_HEAD(&clp->cl_superblocks); | 
|  | 140 | clp->cl_rpcclient = ERR_PTR(-EINVAL); | 
|  | 141 |  | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 142 | clp->cl_proto = cl_init->proto; | 
|  | 143 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 144 | #ifdef CONFIG_NFS_V4 | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 145 | INIT_LIST_HEAD(&clp->cl_delegations); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 146 | spin_lock_init(&clp->cl_lock); | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 147 | INIT_DELAYED_WORK(&clp->cl_renewd, nfs4_renew_state); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 148 | rpc_init_wait_queue(&clp->cl_rpcwaitq, "NFS client"); | 
|  | 149 | clp->cl_boot_time = CURRENT_TIME; | 
|  | 150 | clp->cl_state = 1 << NFS4CLNT_LEASE_EXPIRED; | 
| Benny Halevy | 5aae4a9 | 2009-04-01 09:21:50 -0400 | [diff] [blame] | 151 | clp->cl_minorversion = cl_init->minorversion; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 152 | #endif | 
| Trond Myklebust | 7c67db3 | 2008-04-07 20:50:11 -0400 | [diff] [blame] | 153 | cred = rpc_lookup_machine_cred(); | 
|  | 154 | if (!IS_ERR(cred)) | 
|  | 155 | clp->cl_machine_cred = cred; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 156 |  | 
| David Howells | 1472728 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 157 | nfs_fscache_get_client_cookie(clp); | 
|  | 158 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 159 | return clp; | 
|  | 160 |  | 
| Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 161 | error_cleanup: | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 162 | kfree(clp); | 
|  | 163 | error_0: | 
| Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 164 | return ERR_PTR(err); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 165 | } | 
|  | 166 |  | 
| Trond Myklebust | 5dd3177 | 2006-08-24 01:03:05 -0400 | [diff] [blame] | 167 | static void nfs4_shutdown_client(struct nfs_client *clp) | 
|  | 168 | { | 
|  | 169 | #ifdef CONFIG_NFS_V4 | 
|  | 170 | if (__test_and_clear_bit(NFS_CS_RENEWD, &clp->cl_res_state)) | 
|  | 171 | nfs4_kill_renewd(clp); | 
| Trond Myklebust | 9f958ab | 2007-07-02 13:58:33 -0400 | [diff] [blame] | 172 | BUG_ON(!RB_EMPTY_ROOT(&clp->cl_state_owners)); | 
| Trond Myklebust | 5dd3177 | 2006-08-24 01:03:05 -0400 | [diff] [blame] | 173 | if (__test_and_clear_bit(NFS_CS_IDMAP, &clp->cl_res_state)) | 
|  | 174 | nfs_idmap_delete(clp); | 
| Trond Myklebust | f6a1cc8 | 2008-02-22 17:06:55 -0500 | [diff] [blame] | 175 |  | 
|  | 176 | rpc_destroy_wait_queue(&clp->cl_rpcwaitq); | 
| Trond Myklebust | 5dd3177 | 2006-08-24 01:03:05 -0400 | [diff] [blame] | 177 | #endif | 
|  | 178 | } | 
|  | 179 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 180 | /* | 
| Benny Halevy | 9bdaa86 | 2009-04-01 09:22:55 -0400 | [diff] [blame] | 181 | * Destroy the NFS4 callback service | 
|  | 182 | */ | 
|  | 183 | static void nfs4_destroy_callback(struct nfs_client *clp) | 
|  | 184 | { | 
|  | 185 | #ifdef CONFIG_NFS_V4 | 
|  | 186 | if (__test_and_clear_bit(NFS_CS_CALLBACK, &clp->cl_res_state)) | 
| Andy Adamson | e82dc22 | 2009-04-01 09:23:14 -0400 | [diff] [blame] | 187 | nfs_callback_down(clp->cl_minorversion); | 
| Benny Halevy | 9bdaa86 | 2009-04-01 09:22:55 -0400 | [diff] [blame] | 188 | #endif /* CONFIG_NFS_V4 */ | 
|  | 189 | } | 
|  | 190 |  | 
|  | 191 | /* | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 192 | * Clears/puts all minor version specific parts from an nfs_client struct | 
|  | 193 | * reverting it to minorversion 0. | 
|  | 194 | */ | 
|  | 195 | static void nfs4_clear_client_minor_version(struct nfs_client *clp) | 
|  | 196 | { | 
|  | 197 | #ifdef CONFIG_NFS_V4_1 | 
|  | 198 | if (nfs4_has_session(clp)) { | 
|  | 199 | nfs4_destroy_session(clp->cl_session); | 
|  | 200 | clp->cl_session = NULL; | 
|  | 201 | } | 
| Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 202 |  | 
|  | 203 | clp->cl_call_sync = _nfs4_call_sync; | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 204 | #endif /* CONFIG_NFS_V4_1 */ | 
| Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 205 |  | 
|  | 206 | nfs4_destroy_callback(clp); | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 207 | } | 
|  | 208 |  | 
|  | 209 | /* | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 210 | * Destroy a shared client record | 
|  | 211 | */ | 
|  | 212 | static void nfs_free_client(struct nfs_client *clp) | 
|  | 213 | { | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 214 | dprintk("--> nfs_free_client(%u)\n", clp->rpc_ops->version); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 215 |  | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 216 | nfs4_clear_client_minor_version(clp); | 
| Trond Myklebust | 5dd3177 | 2006-08-24 01:03:05 -0400 | [diff] [blame] | 217 | nfs4_shutdown_client(clp); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 218 |  | 
| David Howells | 1472728 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 219 | nfs_fscache_release_client_cookie(clp); | 
|  | 220 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 221 | /* -EIO all pending I/O */ | 
|  | 222 | if (!IS_ERR(clp->cl_rpcclient)) | 
|  | 223 | rpc_shutdown_client(clp->cl_rpcclient); | 
|  | 224 |  | 
| Trond Myklebust | 7c67db3 | 2008-04-07 20:50:11 -0400 | [diff] [blame] | 225 | if (clp->cl_machine_cred != NULL) | 
|  | 226 | put_rpccred(clp->cl_machine_cred); | 
|  | 227 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 228 | kfree(clp->cl_hostname); | 
|  | 229 | kfree(clp); | 
|  | 230 |  | 
|  | 231 | dprintk("<-- nfs_free_client()\n"); | 
|  | 232 | } | 
|  | 233 |  | 
|  | 234 | /* | 
|  | 235 | * Release a reference to a shared client record | 
|  | 236 | */ | 
|  | 237 | void nfs_put_client(struct nfs_client *clp) | 
|  | 238 | { | 
| David Howells | 27ba851 | 2006-07-30 14:40:56 -0400 | [diff] [blame] | 239 | if (!clp) | 
|  | 240 | return; | 
|  | 241 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 242 | dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count)); | 
|  | 243 |  | 
|  | 244 | if (atomic_dec_and_lock(&clp->cl_count, &nfs_client_lock)) { | 
|  | 245 | list_del(&clp->cl_share_link); | 
|  | 246 | spin_unlock(&nfs_client_lock); | 
|  | 247 |  | 
|  | 248 | BUG_ON(!list_empty(&clp->cl_superblocks)); | 
|  | 249 |  | 
|  | 250 | nfs_free_client(clp); | 
|  | 251 | } | 
|  | 252 | } | 
|  | 253 |  | 
| Trond Myklebust | 9082a5c | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 254 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 255 | /* | 
|  | 256 | * Test if two ip6 socket addresses refer to the same socket by | 
|  | 257 | * comparing relevant fields. The padding bytes specifically, are not | 
|  | 258 | * compared. sin6_flowinfo is not compared because it only affects QoS | 
|  | 259 | * and sin6_scope_id is only compared if the address is "link local" | 
|  | 260 | * because "link local" addresses need only be unique to a specific | 
|  | 261 | * link. Conversely, ordinary unicast addresses might have different | 
|  | 262 | * sin6_scope_id. | 
|  | 263 | * | 
|  | 264 | * The caller should ensure both socket addresses are AF_INET6. | 
|  | 265 | */ | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 266 | static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1, | 
|  | 267 | const struct sockaddr *sa2) | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 268 | { | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 269 | const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1; | 
|  | 270 | const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2; | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 271 |  | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 272 | if (ipv6_addr_scope(&sin1->sin6_addr) == IPV6_ADDR_SCOPE_LINKLOCAL && | 
|  | 273 | sin1->sin6_scope_id != sin2->sin6_scope_id) | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 274 | return 0; | 
| Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 275 |  | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 276 | return ipv6_addr_equal(&sin1->sin6_addr, &sin1->sin6_addr); | 
| Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 277 | } | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 278 | #else	/* !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE) */ | 
|  | 279 | static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1, | 
|  | 280 | const struct sockaddr *sa2) | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 281 | { | 
|  | 282 | return 0; | 
|  | 283 | } | 
| Trond Myklebust | 9082a5c | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 284 | #endif | 
| Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 285 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 286 | /* | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 287 | * Test if two ip4 socket addresses refer to the same socket, by | 
|  | 288 | * comparing relevant fields. The padding bytes specifically, are | 
|  | 289 | * not compared. | 
|  | 290 | * | 
|  | 291 | * The caller should ensure both socket addresses are AF_INET. | 
|  | 292 | */ | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 293 | static int nfs_sockaddr_match_ipaddr4(const struct sockaddr *sa1, | 
|  | 294 | const struct sockaddr *sa2) | 
|  | 295 | { | 
|  | 296 | const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1; | 
|  | 297 | const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2; | 
|  | 298 |  | 
|  | 299 | return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr; | 
|  | 300 | } | 
|  | 301 |  | 
|  | 302 | static int nfs_sockaddr_cmp_ip6(const struct sockaddr *sa1, | 
|  | 303 | const struct sockaddr *sa2) | 
|  | 304 | { | 
|  | 305 | const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1; | 
|  | 306 | const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2; | 
|  | 307 |  | 
|  | 308 | return nfs_sockaddr_match_ipaddr6(sa1, sa2) && | 
|  | 309 | (sin1->sin6_port == sin2->sin6_port); | 
|  | 310 | } | 
|  | 311 |  | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 312 | static int nfs_sockaddr_cmp_ip4(const struct sockaddr *sa1, | 
|  | 313 | const struct sockaddr *sa2) | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 314 | { | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 315 | const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1; | 
|  | 316 | const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2; | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 317 |  | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 318 | return nfs_sockaddr_match_ipaddr4(sa1, sa2) && | 
|  | 319 | (sin1->sin_port == sin2->sin_port); | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 320 | } | 
|  | 321 |  | 
|  | 322 | /* | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 323 | * Test if two socket addresses represent the same actual socket, | 
| Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 324 | * by comparing (only) relevant fields, excluding the port number. | 
|  | 325 | */ | 
|  | 326 | static int nfs_sockaddr_match_ipaddr(const struct sockaddr *sa1, | 
|  | 327 | const struct sockaddr *sa2) | 
|  | 328 | { | 
|  | 329 | if (sa1->sa_family != sa2->sa_family) | 
|  | 330 | return 0; | 
|  | 331 |  | 
|  | 332 | switch (sa1->sa_family) { | 
|  | 333 | case AF_INET: | 
|  | 334 | return nfs_sockaddr_match_ipaddr4(sa1, sa2); | 
|  | 335 | case AF_INET6: | 
|  | 336 | return nfs_sockaddr_match_ipaddr6(sa1, sa2); | 
|  | 337 | } | 
|  | 338 | return 0; | 
|  | 339 | } | 
|  | 340 |  | 
|  | 341 | /* | 
|  | 342 | * Test if two socket addresses represent the same actual socket, | 
|  | 343 | * by comparing (only) relevant fields, including the port number. | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 344 | */ | 
|  | 345 | static int nfs_sockaddr_cmp(const struct sockaddr *sa1, | 
|  | 346 | const struct sockaddr *sa2) | 
|  | 347 | { | 
|  | 348 | if (sa1->sa_family != sa2->sa_family) | 
|  | 349 | return 0; | 
|  | 350 |  | 
|  | 351 | switch (sa1->sa_family) { | 
|  | 352 | case AF_INET: | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 353 | return nfs_sockaddr_cmp_ip4(sa1, sa2); | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 354 | case AF_INET6: | 
| Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 355 | return nfs_sockaddr_cmp_ip6(sa1, sa2); | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 356 | } | 
|  | 357 | return 0; | 
|  | 358 | } | 
|  | 359 |  | 
|  | 360 | /* | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 361 | * Find a client by IP address and protocol version | 
|  | 362 | * - returns NULL if no such client | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 363 | */ | 
| Chuck Lever | ff05264 | 2007-12-10 14:58:44 -0500 | [diff] [blame] | 364 | struct nfs_client *nfs_find_client(const struct sockaddr *addr, u32 nfsversion) | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 365 | { | 
|  | 366 | struct nfs_client *clp; | 
|  | 367 |  | 
|  | 368 | spin_lock(&nfs_client_lock); | 
|  | 369 | list_for_each_entry(clp, &nfs_client_list, cl_share_link) { | 
| Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 370 | struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr; | 
|  | 371 |  | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 372 | /* Don't match clients that failed to initialise properly */ | 
| Andy Adamson | 76db6d9 | 2009-04-01 09:22:38 -0400 | [diff] [blame] | 373 | if (!(clp->cl_cons_state == NFS_CS_READY || | 
|  | 374 | clp->cl_cons_state == NFS_CS_SESSION_INITING)) | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 375 | continue; | 
|  | 376 |  | 
|  | 377 | /* Different NFS versions cannot share the same nfs_client */ | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 378 | if (clp->rpc_ops->version != nfsversion) | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 379 | continue; | 
|  | 380 |  | 
|  | 381 | /* Match only the IP address, not the port number */ | 
| Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 382 | if (!nfs_sockaddr_match_ipaddr(addr, clap)) | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 383 | continue; | 
|  | 384 |  | 
|  | 385 | atomic_inc(&clp->cl_count); | 
|  | 386 | spin_unlock(&nfs_client_lock); | 
|  | 387 | return clp; | 
|  | 388 | } | 
|  | 389 | spin_unlock(&nfs_client_lock); | 
|  | 390 | return NULL; | 
|  | 391 | } | 
|  | 392 |  | 
|  | 393 | /* | 
| Trond Myklebust | 3fbd67a | 2008-01-26 01:06:40 -0500 | [diff] [blame] | 394 | * Find a client by IP address and protocol version | 
|  | 395 | * - returns NULL if no such client | 
|  | 396 | */ | 
|  | 397 | struct nfs_client *nfs_find_client_next(struct nfs_client *clp) | 
|  | 398 | { | 
|  | 399 | struct sockaddr *sap = (struct sockaddr *)&clp->cl_addr; | 
|  | 400 | u32 nfsvers = clp->rpc_ops->version; | 
|  | 401 |  | 
|  | 402 | spin_lock(&nfs_client_lock); | 
|  | 403 | list_for_each_entry_continue(clp, &nfs_client_list, cl_share_link) { | 
|  | 404 | struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr; | 
|  | 405 |  | 
|  | 406 | /* Don't match clients that failed to initialise properly */ | 
|  | 407 | if (clp->cl_cons_state != NFS_CS_READY) | 
|  | 408 | continue; | 
|  | 409 |  | 
|  | 410 | /* Different NFS versions cannot share the same nfs_client */ | 
|  | 411 | if (clp->rpc_ops->version != nfsvers) | 
|  | 412 | continue; | 
|  | 413 |  | 
| Trond Myklebust | 3fbd67a | 2008-01-26 01:06:40 -0500 | [diff] [blame] | 414 | /* Match only the IP address, not the port number */ | 
|  | 415 | if (!nfs_sockaddr_match_ipaddr(sap, clap)) | 
|  | 416 | continue; | 
|  | 417 |  | 
|  | 418 | atomic_inc(&clp->cl_count); | 
|  | 419 | spin_unlock(&nfs_client_lock); | 
|  | 420 | return clp; | 
|  | 421 | } | 
|  | 422 | spin_unlock(&nfs_client_lock); | 
|  | 423 | return NULL; | 
|  | 424 | } | 
|  | 425 |  | 
|  | 426 | /* | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 427 | * Find an nfs_client on the list that matches the initialisation data | 
|  | 428 | * that is supplied. | 
|  | 429 | */ | 
|  | 430 | static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data) | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 431 | { | 
|  | 432 | struct nfs_client *clp; | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 433 | const struct sockaddr *sap = data->addr; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 434 |  | 
|  | 435 | list_for_each_entry(clp, &nfs_client_list, cl_share_link) { | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 436 | const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr; | 
| Trond Myklebust | 13bbc06 | 2006-10-19 23:28:40 -0700 | [diff] [blame] | 437 | /* Don't match clients that failed to initialise properly */ | 
|  | 438 | if (clp->cl_cons_state < 0) | 
|  | 439 | continue; | 
|  | 440 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 441 | /* Different NFS versions cannot share the same nfs_client */ | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 442 | if (clp->rpc_ops != data->rpc_ops) | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 443 | continue; | 
|  | 444 |  | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 445 | if (clp->cl_proto != data->proto) | 
|  | 446 | continue; | 
| Benny Halevy | 5aae4a9 | 2009-04-01 09:21:50 -0400 | [diff] [blame] | 447 | /* Match nfsv4 minorversion */ | 
|  | 448 | if (clp->cl_minorversion != data->minorversion) | 
|  | 449 | continue; | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 450 | /* Match the full socket address */ | 
| Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 451 | if (!nfs_sockaddr_cmp(sap, clap)) | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 452 | continue; | 
|  | 453 |  | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 454 | atomic_inc(&clp->cl_count); | 
|  | 455 | return clp; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 456 | } | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 457 | return NULL; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 458 | } | 
|  | 459 |  | 
|  | 460 | /* | 
|  | 461 | * Look up a client by IP address and protocol version | 
|  | 462 | * - creates a new record if one doesn't yet exist | 
|  | 463 | */ | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 464 | static struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init) | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 465 | { | 
|  | 466 | struct nfs_client *clp, *new = NULL; | 
|  | 467 | int error; | 
|  | 468 |  | 
| Chuck Lever | d7422c4 | 2007-12-10 14:58:51 -0500 | [diff] [blame] | 469 | dprintk("--> nfs_get_client(%s,v%u)\n", | 
|  | 470 | cl_init->hostname ?: "", cl_init->rpc_ops->version); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 471 |  | 
|  | 472 | /* see if the client already exists */ | 
|  | 473 | do { | 
|  | 474 | spin_lock(&nfs_client_lock); | 
|  | 475 |  | 
| Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 476 | clp = nfs_match_client(cl_init); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 477 | if (clp) | 
|  | 478 | goto found_client; | 
|  | 479 | if (new) | 
|  | 480 | goto install_client; | 
|  | 481 |  | 
|  | 482 | spin_unlock(&nfs_client_lock); | 
|  | 483 |  | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 484 | new = nfs_alloc_client(cl_init); | 
| Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 485 | } while (!IS_ERR(new)); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 486 |  | 
| Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 487 | dprintk("--> nfs_get_client() = %ld [failed]\n", PTR_ERR(new)); | 
|  | 488 | return new; | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 489 |  | 
|  | 490 | /* install a new client and return with it unready */ | 
|  | 491 | install_client: | 
|  | 492 | clp = new; | 
|  | 493 | list_add(&clp->cl_share_link, &nfs_client_list); | 
|  | 494 | spin_unlock(&nfs_client_lock); | 
|  | 495 | dprintk("--> nfs_get_client() = %p [new]\n", clp); | 
|  | 496 | return clp; | 
|  | 497 |  | 
|  | 498 | /* found an existing client | 
|  | 499 | * - make sure it's ready before returning | 
|  | 500 | */ | 
|  | 501 | found_client: | 
|  | 502 | spin_unlock(&nfs_client_lock); | 
|  | 503 |  | 
|  | 504 | if (new) | 
|  | 505 | nfs_free_client(new); | 
|  | 506 |  | 
| Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 507 | error = wait_event_killable(nfs_client_active_wq, | 
| Andy Adamson | 76db6d9 | 2009-04-01 09:22:38 -0400 | [diff] [blame] | 508 | clp->cl_cons_state < NFS_CS_INITING); | 
| Trond Myklebust | 0bae89e | 2006-10-08 14:33:24 -0400 | [diff] [blame] | 509 | if (error < 0) { | 
|  | 510 | nfs_put_client(clp); | 
|  | 511 | return ERR_PTR(-ERESTARTSYS); | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 512 | } | 
|  | 513 |  | 
|  | 514 | if (clp->cl_cons_state < NFS_CS_READY) { | 
|  | 515 | error = clp->cl_cons_state; | 
|  | 516 | nfs_put_client(clp); | 
|  | 517 | return ERR_PTR(error); | 
|  | 518 | } | 
|  | 519 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 520 | BUG_ON(clp->cl_cons_state != NFS_CS_READY); | 
|  | 521 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 522 | dprintk("--> nfs_get_client() = %p [share]\n", clp); | 
|  | 523 | return clp; | 
|  | 524 | } | 
|  | 525 |  | 
|  | 526 | /* | 
|  | 527 | * Mark a server as ready or failed | 
|  | 528 | */ | 
| Andy Adamson | 76db6d9 | 2009-04-01 09:22:38 -0400 | [diff] [blame] | 529 | void nfs_mark_client_ready(struct nfs_client *clp, int state) | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 530 | { | 
|  | 531 | clp->cl_cons_state = state; | 
|  | 532 | wake_up_all(&nfs_client_active_wq); | 
|  | 533 | } | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 534 |  | 
|  | 535 | /* | 
| Benny Halevy | 008f55d | 2009-04-01 09:22:50 -0400 | [diff] [blame] | 536 | * With sessions, the client is not marked ready until after a | 
|  | 537 | * successful EXCHANGE_ID and CREATE_SESSION. | 
|  | 538 | * | 
|  | 539 | * Map errors cl_cons_state errors to EPROTONOSUPPORT to indicate | 
|  | 540 | * other versions of NFS can be tried. | 
|  | 541 | */ | 
|  | 542 | int nfs4_check_client_ready(struct nfs_client *clp) | 
|  | 543 | { | 
|  | 544 | if (!nfs4_has_session(clp)) | 
|  | 545 | return 0; | 
|  | 546 | if (clp->cl_cons_state < NFS_CS_READY) | 
|  | 547 | return -EPROTONOSUPPORT; | 
|  | 548 | return 0; | 
|  | 549 | } | 
|  | 550 |  | 
|  | 551 | /* | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 552 | * Initialise the timeout values for a connection | 
|  | 553 | */ | 
|  | 554 | static void nfs_init_timeout_values(struct rpc_timeout *to, int proto, | 
|  | 555 | unsigned int timeo, unsigned int retrans) | 
|  | 556 | { | 
|  | 557 | to->to_initval = timeo * HZ / 10; | 
|  | 558 | to->to_retries = retrans; | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 559 |  | 
|  | 560 | switch (proto) { | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 561 | case XPRT_TRANSPORT_TCP: | 
| \"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 562 | case XPRT_TRANSPORT_RDMA: | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 563 | if (to->to_retries == 0) | 
|  | 564 | to->to_retries = NFS_DEF_TCP_RETRANS; | 
| Trond Myklebust | 7a3e3e1 | 2007-12-20 16:03:57 -0500 | [diff] [blame] | 565 | if (to->to_initval == 0) | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 566 | to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10; | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 567 | if (to->to_initval > NFS_MAX_TCP_TIMEOUT) | 
|  | 568 | to->to_initval = NFS_MAX_TCP_TIMEOUT; | 
|  | 569 | to->to_increment = to->to_initval; | 
|  | 570 | to->to_maxval = to->to_initval + (to->to_increment * to->to_retries); | 
| Trond Myklebust | 7a3e3e1 | 2007-12-20 16:03:57 -0500 | [diff] [blame] | 571 | if (to->to_maxval > NFS_MAX_TCP_TIMEOUT) | 
|  | 572 | to->to_maxval = NFS_MAX_TCP_TIMEOUT; | 
|  | 573 | if (to->to_maxval < to->to_initval) | 
|  | 574 | to->to_maxval = to->to_initval; | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 575 | to->to_exponential = 0; | 
|  | 576 | break; | 
| \"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 577 | case XPRT_TRANSPORT_UDP: | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 578 | if (to->to_retries == 0) | 
|  | 579 | to->to_retries = NFS_DEF_UDP_RETRANS; | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 580 | if (!to->to_initval) | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 581 | to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10; | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 582 | if (to->to_initval > NFS_MAX_UDP_TIMEOUT) | 
|  | 583 | to->to_initval = NFS_MAX_UDP_TIMEOUT; | 
|  | 584 | to->to_maxval = NFS_MAX_UDP_TIMEOUT; | 
|  | 585 | to->to_exponential = 1; | 
|  | 586 | break; | 
| Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 587 | default: | 
|  | 588 | BUG(); | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 589 | } | 
|  | 590 | } | 
|  | 591 |  | 
|  | 592 | /* | 
|  | 593 | * Create an RPC client handle | 
|  | 594 | */ | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 595 | static int nfs_create_rpc_client(struct nfs_client *clp, | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 596 | const struct rpc_timeout *timeparms, | 
|  | 597 | rpc_authflavor_t flavor, | 
| Chuck Lever | 4a01b8a | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 598 | int discrtry, int noresvport) | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 599 | { | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 600 | struct rpc_clnt		*clnt = NULL; | 
| Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 601 | struct rpc_create_args args = { | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 602 | .protocol	= clp->cl_proto, | 
| Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 603 | .address	= (struct sockaddr *)&clp->cl_addr, | 
| Chuck Lever | 6e4cffd | 2007-12-10 14:58:15 -0500 | [diff] [blame] | 604 | .addrsize	= clp->cl_addrlen, | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 605 | .timeout	= timeparms, | 
| Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 606 | .servername	= clp->cl_hostname, | 
|  | 607 | .program	= &nfs_program, | 
|  | 608 | .version	= clp->rpc_ops->version, | 
|  | 609 | .authflavor	= flavor, | 
|  | 610 | }; | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 611 |  | 
| Chuck Lever | 4a01b8a | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 612 | if (discrtry) | 
|  | 613 | args.flags |= RPC_CLNT_CREATE_DISCRTRY; | 
|  | 614 | if (noresvport) | 
|  | 615 | args.flags |= RPC_CLNT_CREATE_NONPRIVPORT; | 
|  | 616 |  | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 617 | if (!IS_ERR(clp->cl_rpcclient)) | 
|  | 618 | return 0; | 
|  | 619 |  | 
| Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 620 | clnt = rpc_create(&args); | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 621 | if (IS_ERR(clnt)) { | 
|  | 622 | dprintk("%s: cannot create RPC client. Error = %ld\n", | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 623 | __func__, PTR_ERR(clnt)); | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 624 | return PTR_ERR(clnt); | 
|  | 625 | } | 
|  | 626 |  | 
| David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 627 | clp->cl_rpcclient = clnt; | 
|  | 628 | return 0; | 
|  | 629 | } | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 630 |  | 
|  | 631 | /* | 
|  | 632 | * Version 2 or 3 client destruction | 
|  | 633 | */ | 
|  | 634 | static void nfs_destroy_server(struct nfs_server *server) | 
|  | 635 | { | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 636 | if (!(server->flags & NFS_MOUNT_NONLM)) | 
| Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 637 | nlmclnt_done(server->nlm_host); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 638 | } | 
|  | 639 |  | 
|  | 640 | /* | 
|  | 641 | * Version 2 or 3 lockd setup | 
|  | 642 | */ | 
|  | 643 | static int nfs_start_lockd(struct nfs_server *server) | 
|  | 644 | { | 
| Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 645 | struct nlm_host *host; | 
|  | 646 | struct nfs_client *clp = server->nfs_client; | 
| Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 647 | struct nlmclnt_initdata nlm_init = { | 
|  | 648 | .hostname	= clp->cl_hostname, | 
|  | 649 | .address	= (struct sockaddr *)&clp->cl_addr, | 
|  | 650 | .addrlen	= clp->cl_addrlen, | 
|  | 651 | .protocol	= server->flags & NFS_MOUNT_TCP ? | 
|  | 652 | IPPROTO_TCP : IPPROTO_UDP, | 
|  | 653 | .nfs_version	= clp->rpc_ops->version, | 
| Chuck Lever | 0cb2659 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 654 | .noresvport	= server->flags & NFS_MOUNT_NORESVPORT ? | 
|  | 655 | 1 : 0, | 
| Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 656 | }; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 657 |  | 
| Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 658 | if (nlm_init.nfs_version > 3) | 
| Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 659 | return 0; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 660 | if (server->flags & NFS_MOUNT_NONLM) | 
| Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 661 | return 0; | 
|  | 662 |  | 
| Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 663 | host = nlmclnt_init(&nlm_init); | 
| Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 664 | if (IS_ERR(host)) | 
|  | 665 | return PTR_ERR(host); | 
|  | 666 |  | 
|  | 667 | server->nlm_host = host; | 
|  | 668 | server->destroy = nfs_destroy_server; | 
|  | 669 | return 0; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 670 | } | 
|  | 671 |  | 
|  | 672 | /* | 
|  | 673 | * Initialise an NFSv3 ACL client connection | 
|  | 674 | */ | 
|  | 675 | #ifdef CONFIG_NFS_V3_ACL | 
|  | 676 | static void nfs_init_server_aclclient(struct nfs_server *server) | 
|  | 677 | { | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 678 | if (server->nfs_client->rpc_ops->version != 3) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 679 | goto out_noacl; | 
|  | 680 | if (server->flags & NFS_MOUNT_NOACL) | 
|  | 681 | goto out_noacl; | 
|  | 682 |  | 
|  | 683 | server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3); | 
|  | 684 | if (IS_ERR(server->client_acl)) | 
|  | 685 | goto out_noacl; | 
|  | 686 |  | 
|  | 687 | /* No errors! Assume that Sun nfsacls are supported */ | 
|  | 688 | server->caps |= NFS_CAP_ACLS; | 
|  | 689 | return; | 
|  | 690 |  | 
|  | 691 | out_noacl: | 
|  | 692 | server->caps &= ~NFS_CAP_ACLS; | 
|  | 693 | } | 
|  | 694 | #else | 
|  | 695 | static inline void nfs_init_server_aclclient(struct nfs_server *server) | 
|  | 696 | { | 
|  | 697 | server->flags &= ~NFS_MOUNT_NOACL; | 
|  | 698 | server->caps &= ~NFS_CAP_ACLS; | 
|  | 699 | } | 
|  | 700 | #endif | 
|  | 701 |  | 
|  | 702 | /* | 
|  | 703 | * Create a general RPC client | 
|  | 704 | */ | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 705 | static int nfs_init_server_rpcclient(struct nfs_server *server, | 
|  | 706 | const struct rpc_timeout *timeo, | 
|  | 707 | rpc_authflavor_t pseudoflavour) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 708 | { | 
|  | 709 | struct nfs_client *clp = server->nfs_client; | 
|  | 710 |  | 
|  | 711 | server->client = rpc_clone_client(clp->cl_rpcclient); | 
|  | 712 | if (IS_ERR(server->client)) { | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 713 | dprintk("%s: couldn't create rpc_client!\n", __func__); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 714 | return PTR_ERR(server->client); | 
|  | 715 | } | 
|  | 716 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 717 | memcpy(&server->client->cl_timeout_default, | 
|  | 718 | timeo, | 
|  | 719 | sizeof(server->client->cl_timeout_default)); | 
|  | 720 | server->client->cl_timeout = &server->client->cl_timeout_default; | 
|  | 721 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 722 | if (pseudoflavour != clp->cl_rpcclient->cl_auth->au_flavor) { | 
|  | 723 | struct rpc_auth *auth; | 
|  | 724 |  | 
|  | 725 | auth = rpcauth_create(pseudoflavour, server->client); | 
|  | 726 | if (IS_ERR(auth)) { | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 727 | dprintk("%s: couldn't create credcache!\n", __func__); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 728 | return PTR_ERR(auth); | 
|  | 729 | } | 
|  | 730 | } | 
|  | 731 | server->client->cl_softrtry = 0; | 
|  | 732 | if (server->flags & NFS_MOUNT_SOFT) | 
|  | 733 | server->client->cl_softrtry = 1; | 
|  | 734 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 735 | return 0; | 
|  | 736 | } | 
|  | 737 |  | 
|  | 738 | /* | 
|  | 739 | * Initialise an NFS2 or NFS3 client | 
|  | 740 | */ | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 741 | static int nfs_init_client(struct nfs_client *clp, | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 742 | const struct rpc_timeout *timeparms, | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 743 | const struct nfs_parsed_mount_data *data) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 744 | { | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 745 | int error; | 
|  | 746 |  | 
|  | 747 | if (clp->cl_cons_state == NFS_CS_READY) { | 
|  | 748 | /* the client is already initialised */ | 
|  | 749 | dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp); | 
|  | 750 | return 0; | 
|  | 751 | } | 
|  | 752 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 753 | /* | 
|  | 754 | * Create a client RPC handle for doing FSSTAT with UNIX auth only | 
|  | 755 | * - RFC 2623, sec 2.3.2 | 
|  | 756 | */ | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 757 | error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX, | 
|  | 758 | 0, data->flags & NFS_MOUNT_NORESVPORT); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 759 | if (error < 0) | 
|  | 760 | goto error; | 
|  | 761 | nfs_mark_client_ready(clp, NFS_CS_READY); | 
|  | 762 | return 0; | 
|  | 763 |  | 
|  | 764 | error: | 
|  | 765 | nfs_mark_client_ready(clp, error); | 
|  | 766 | dprintk("<-- nfs_init_client() = xerror %d\n", error); | 
|  | 767 | return error; | 
|  | 768 | } | 
|  | 769 |  | 
|  | 770 | /* | 
|  | 771 | * Create a version 2 or 3 client | 
|  | 772 | */ | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 773 | static int nfs_init_server(struct nfs_server *server, | 
|  | 774 | const struct nfs_parsed_mount_data *data) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 775 | { | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 776 | struct nfs_client_initdata cl_init = { | 
|  | 777 | .hostname = data->nfs_server.hostname, | 
| Chuck Lever | d7422c4 | 2007-12-10 14:58:51 -0500 | [diff] [blame] | 778 | .addr = (const struct sockaddr *)&data->nfs_server.address, | 
| Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 779 | .addrlen = data->nfs_server.addrlen, | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 780 | .rpc_ops = &nfs_v2_clientops, | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 781 | .proto = data->nfs_server.protocol, | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 782 | }; | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 783 | struct rpc_timeout timeparms; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 784 | struct nfs_client *clp; | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 785 | int error; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 786 |  | 
|  | 787 | dprintk("--> nfs_init_server()\n"); | 
|  | 788 |  | 
|  | 789 | #ifdef CONFIG_NFS_V3 | 
|  | 790 | if (data->flags & NFS_MOUNT_VER3) | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 791 | cl_init.rpc_ops = &nfs_v3_clientops; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 792 | #endif | 
|  | 793 |  | 
|  | 794 | /* Allocate or find a client reference we can use */ | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 795 | clp = nfs_get_client(&cl_init); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 796 | if (IS_ERR(clp)) { | 
|  | 797 | dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp)); | 
|  | 798 | return PTR_ERR(clp); | 
|  | 799 | } | 
|  | 800 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 801 | nfs_init_timeout_values(&timeparms, data->nfs_server.protocol, | 
|  | 802 | data->timeo, data->retrans); | 
|  | 803 | error = nfs_init_client(clp, &timeparms, data); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 804 | if (error < 0) | 
|  | 805 | goto error; | 
|  | 806 |  | 
|  | 807 | server->nfs_client = clp; | 
|  | 808 |  | 
|  | 809 | /* Initialise the client representation from the mount data */ | 
| Trond Myklebust | ff3525a | 2008-08-15 16:59:14 -0400 | [diff] [blame] | 810 | server->flags = data->flags; | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 811 | server->options = data->options; | 
| Trond Myklebust | 62ab460 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 812 | server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID| | 
|  | 813 | NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP| | 
|  | 814 | NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 815 |  | 
|  | 816 | if (data->rsize) | 
|  | 817 | server->rsize = nfs_block_size(data->rsize, NULL); | 
|  | 818 | if (data->wsize) | 
|  | 819 | server->wsize = nfs_block_size(data->wsize, NULL); | 
|  | 820 |  | 
|  | 821 | server->acregmin = data->acregmin * HZ; | 
|  | 822 | server->acregmax = data->acregmax * HZ; | 
|  | 823 | server->acdirmin = data->acdirmin * HZ; | 
|  | 824 | server->acdirmax = data->acdirmax * HZ; | 
|  | 825 |  | 
|  | 826 | /* Start lockd here, before we might error out */ | 
|  | 827 | error = nfs_start_lockd(server); | 
|  | 828 | if (error < 0) | 
|  | 829 | goto error; | 
|  | 830 |  | 
| Chuck Lever | f22d6d7 | 2008-03-14 14:10:22 -0400 | [diff] [blame] | 831 | server->port = data->nfs_server.port; | 
|  | 832 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 833 | error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 834 | if (error < 0) | 
|  | 835 | goto error; | 
|  | 836 |  | 
| Chuck Lever | 3f8400d | 2008-03-14 14:10:30 -0400 | [diff] [blame] | 837 | /* Preserve the values of mount_server-related mount options */ | 
|  | 838 | if (data->mount_server.addrlen) { | 
|  | 839 | memcpy(&server->mountd_address, &data->mount_server.address, | 
|  | 840 | data->mount_server.addrlen); | 
|  | 841 | server->mountd_addrlen = data->mount_server.addrlen; | 
|  | 842 | } | 
|  | 843 | server->mountd_version = data->mount_server.version; | 
|  | 844 | server->mountd_port = data->mount_server.port; | 
|  | 845 | server->mountd_protocol = data->mount_server.protocol; | 
|  | 846 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 847 | server->namelen  = data->namlen; | 
|  | 848 | /* Create a client RPC handle for the NFSv3 ACL management interface */ | 
|  | 849 | nfs_init_server_aclclient(server); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 850 | dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp); | 
|  | 851 | return 0; | 
|  | 852 |  | 
|  | 853 | error: | 
|  | 854 | server->nfs_client = NULL; | 
|  | 855 | nfs_put_client(clp); | 
|  | 856 | dprintk("<-- nfs_init_server() = xerror %d\n", error); | 
|  | 857 | return error; | 
|  | 858 | } | 
|  | 859 |  | 
|  | 860 | /* | 
|  | 861 | * Load up the server record from information gained in an fsinfo record | 
|  | 862 | */ | 
|  | 863 | static void nfs_server_set_fsinfo(struct nfs_server *server, struct nfs_fsinfo *fsinfo) | 
|  | 864 | { | 
|  | 865 | unsigned long max_rpc_payload; | 
|  | 866 |  | 
|  | 867 | /* Work out a lot of parameters */ | 
|  | 868 | if (server->rsize == 0) | 
|  | 869 | server->rsize = nfs_block_size(fsinfo->rtpref, NULL); | 
|  | 870 | if (server->wsize == 0) | 
|  | 871 | server->wsize = nfs_block_size(fsinfo->wtpref, NULL); | 
|  | 872 |  | 
|  | 873 | if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax) | 
|  | 874 | server->rsize = nfs_block_size(fsinfo->rtmax, NULL); | 
|  | 875 | if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax) | 
|  | 876 | server->wsize = nfs_block_size(fsinfo->wtmax, NULL); | 
|  | 877 |  | 
|  | 878 | max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL); | 
|  | 879 | if (server->rsize > max_rpc_payload) | 
|  | 880 | server->rsize = max_rpc_payload; | 
|  | 881 | if (server->rsize > NFS_MAX_FILE_IO_SIZE) | 
|  | 882 | server->rsize = NFS_MAX_FILE_IO_SIZE; | 
|  | 883 | server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; | 
| Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 884 |  | 
| Jens Axboe | d993831 | 2009-06-12 14:45:52 +0200 | [diff] [blame] | 885 | server->backing_dev_info.name = "nfs"; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 886 | server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD; | 
|  | 887 |  | 
|  | 888 | if (server->wsize > max_rpc_payload) | 
|  | 889 | server->wsize = max_rpc_payload; | 
|  | 890 | if (server->wsize > NFS_MAX_FILE_IO_SIZE) | 
|  | 891 | server->wsize = NFS_MAX_FILE_IO_SIZE; | 
|  | 892 | server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; | 
|  | 893 | server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL); | 
|  | 894 |  | 
|  | 895 | server->dtsize = nfs_block_size(fsinfo->dtpref, NULL); | 
|  | 896 | if (server->dtsize > PAGE_CACHE_SIZE) | 
|  | 897 | server->dtsize = PAGE_CACHE_SIZE; | 
|  | 898 | if (server->dtsize > server->rsize) | 
|  | 899 | server->dtsize = server->rsize; | 
|  | 900 |  | 
|  | 901 | if (server->flags & NFS_MOUNT_NOAC) { | 
|  | 902 | server->acregmin = server->acregmax = 0; | 
|  | 903 | server->acdirmin = server->acdirmax = 0; | 
|  | 904 | } | 
|  | 905 |  | 
|  | 906 | server->maxfilesize = fsinfo->maxfilesize; | 
|  | 907 |  | 
|  | 908 | /* We're airborne Set socket buffersize */ | 
|  | 909 | rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100); | 
|  | 910 | } | 
|  | 911 |  | 
|  | 912 | /* | 
|  | 913 | * Probe filesystem information, including the FSID on v2/v3 | 
|  | 914 | */ | 
|  | 915 | static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr) | 
|  | 916 | { | 
|  | 917 | struct nfs_fsinfo fsinfo; | 
|  | 918 | struct nfs_client *clp = server->nfs_client; | 
|  | 919 | int error; | 
|  | 920 |  | 
|  | 921 | dprintk("--> nfs_probe_fsinfo()\n"); | 
|  | 922 |  | 
|  | 923 | if (clp->rpc_ops->set_capabilities != NULL) { | 
|  | 924 | error = clp->rpc_ops->set_capabilities(server, mntfh); | 
|  | 925 | if (error < 0) | 
|  | 926 | goto out_error; | 
|  | 927 | } | 
|  | 928 |  | 
|  | 929 | fsinfo.fattr = fattr; | 
|  | 930 | nfs_fattr_init(fattr); | 
|  | 931 | error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo); | 
|  | 932 | if (error < 0) | 
|  | 933 | goto out_error; | 
|  | 934 |  | 
|  | 935 | nfs_server_set_fsinfo(server, &fsinfo); | 
|  | 936 |  | 
|  | 937 | /* Get some general file system info */ | 
|  | 938 | if (server->namelen == 0) { | 
|  | 939 | struct nfs_pathconf pathinfo; | 
|  | 940 |  | 
|  | 941 | pathinfo.fattr = fattr; | 
|  | 942 | nfs_fattr_init(fattr); | 
|  | 943 |  | 
|  | 944 | if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0) | 
|  | 945 | server->namelen = pathinfo.max_namelen; | 
|  | 946 | } | 
|  | 947 |  | 
|  | 948 | dprintk("<-- nfs_probe_fsinfo() = 0\n"); | 
|  | 949 | return 0; | 
|  | 950 |  | 
|  | 951 | out_error: | 
|  | 952 | dprintk("nfs_probe_fsinfo: error = %d\n", -error); | 
|  | 953 | return error; | 
|  | 954 | } | 
|  | 955 |  | 
|  | 956 | /* | 
|  | 957 | * Copy useful information when duplicating a server record | 
|  | 958 | */ | 
|  | 959 | static void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source) | 
|  | 960 | { | 
|  | 961 | target->flags = source->flags; | 
|  | 962 | target->acregmin = source->acregmin; | 
|  | 963 | target->acregmax = source->acregmax; | 
|  | 964 | target->acdirmin = source->acdirmin; | 
|  | 965 | target->acdirmax = source->acdirmax; | 
|  | 966 | target->caps = source->caps; | 
|  | 967 | } | 
|  | 968 |  | 
|  | 969 | /* | 
|  | 970 | * Allocate and initialise a server record | 
|  | 971 | */ | 
|  | 972 | static struct nfs_server *nfs_alloc_server(void) | 
|  | 973 | { | 
|  | 974 | struct nfs_server *server; | 
|  | 975 |  | 
|  | 976 | server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL); | 
|  | 977 | if (!server) | 
|  | 978 | return NULL; | 
|  | 979 |  | 
|  | 980 | server->client = server->client_acl = ERR_PTR(-EINVAL); | 
|  | 981 |  | 
|  | 982 | /* Zero out the NFS state stuff */ | 
|  | 983 | INIT_LIST_HEAD(&server->client_link); | 
|  | 984 | INIT_LIST_HEAD(&server->master_link); | 
|  | 985 |  | 
| Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 986 | atomic_set(&server->active, 0); | 
|  | 987 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 988 | server->io_stats = nfs_alloc_iostats(); | 
|  | 989 | if (!server->io_stats) { | 
|  | 990 | kfree(server); | 
|  | 991 | return NULL; | 
|  | 992 | } | 
|  | 993 |  | 
| Jens Axboe | 48d0764 | 2009-09-21 09:59:39 +0200 | [diff] [blame] | 994 | if (bdi_init(&server->backing_dev_info)) { | 
|  | 995 | nfs_free_iostats(server->io_stats); | 
|  | 996 | kfree(server); | 
|  | 997 | return NULL; | 
|  | 998 | } | 
|  | 999 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1000 | return server; | 
|  | 1001 | } | 
|  | 1002 |  | 
|  | 1003 | /* | 
|  | 1004 | * Free up a server record | 
|  | 1005 | */ | 
|  | 1006 | void nfs_free_server(struct nfs_server *server) | 
|  | 1007 | { | 
|  | 1008 | dprintk("--> nfs_free_server()\n"); | 
|  | 1009 |  | 
|  | 1010 | spin_lock(&nfs_client_lock); | 
|  | 1011 | list_del(&server->client_link); | 
|  | 1012 | list_del(&server->master_link); | 
|  | 1013 | spin_unlock(&nfs_client_lock); | 
|  | 1014 |  | 
|  | 1015 | if (server->destroy != NULL) | 
|  | 1016 | server->destroy(server); | 
| Trond Myklebust | 5cef338 | 2007-12-11 22:01:56 -0500 | [diff] [blame] | 1017 |  | 
|  | 1018 | if (!IS_ERR(server->client_acl)) | 
|  | 1019 | rpc_shutdown_client(server->client_acl); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1020 | if (!IS_ERR(server->client)) | 
|  | 1021 | rpc_shutdown_client(server->client); | 
|  | 1022 |  | 
|  | 1023 | nfs_put_client(server->nfs_client); | 
|  | 1024 |  | 
|  | 1025 | nfs_free_iostats(server->io_stats); | 
| Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 1026 | bdi_destroy(&server->backing_dev_info); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1027 | kfree(server); | 
|  | 1028 | nfs_release_automount_timer(); | 
|  | 1029 | dprintk("<-- nfs_free_server()\n"); | 
|  | 1030 | } | 
|  | 1031 |  | 
|  | 1032 | /* | 
|  | 1033 | * Create a version 2 or 3 volume record | 
|  | 1034 | * - keyed on server and FSID | 
|  | 1035 | */ | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 1036 | struct nfs_server *nfs_create_server(const struct nfs_parsed_mount_data *data, | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1037 | struct nfs_fh *mntfh) | 
|  | 1038 | { | 
|  | 1039 | struct nfs_server *server; | 
|  | 1040 | struct nfs_fattr fattr; | 
|  | 1041 | int error; | 
|  | 1042 |  | 
|  | 1043 | server = nfs_alloc_server(); | 
|  | 1044 | if (!server) | 
|  | 1045 | return ERR_PTR(-ENOMEM); | 
|  | 1046 |  | 
|  | 1047 | /* Get a client representation */ | 
|  | 1048 | error = nfs_init_server(server, data); | 
|  | 1049 | if (error < 0) | 
|  | 1050 | goto error; | 
|  | 1051 |  | 
|  | 1052 | BUG_ON(!server->nfs_client); | 
|  | 1053 | BUG_ON(!server->nfs_client->rpc_ops); | 
|  | 1054 | BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops); | 
|  | 1055 |  | 
|  | 1056 | /* Probe the root fh to retrieve its FSID */ | 
|  | 1057 | error = nfs_probe_fsinfo(server, mntfh, &fattr); | 
|  | 1058 | if (error < 0) | 
|  | 1059 | goto error; | 
| Trond Myklebust | 54af3bb | 2007-09-28 12:27:41 -0400 | [diff] [blame] | 1060 | if (server->nfs_client->rpc_ops->version == 3) { | 
|  | 1061 | if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN) | 
|  | 1062 | server->namelen = NFS3_MAXNAMLEN; | 
|  | 1063 | if (!(data->flags & NFS_MOUNT_NORDIRPLUS)) | 
|  | 1064 | server->caps |= NFS_CAP_READDIRPLUS; | 
|  | 1065 | } else { | 
|  | 1066 | if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN) | 
|  | 1067 | server->namelen = NFS2_MAXNAMLEN; | 
|  | 1068 | } | 
|  | 1069 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1070 | if (!(fattr.valid & NFS_ATTR_FATTR)) { | 
|  | 1071 | error = server->nfs_client->rpc_ops->getattr(server, mntfh, &fattr); | 
|  | 1072 | if (error < 0) { | 
|  | 1073 | dprintk("nfs_create_server: getattr error = %d\n", -error); | 
|  | 1074 | goto error; | 
|  | 1075 | } | 
|  | 1076 | } | 
|  | 1077 | memcpy(&server->fsid, &fattr.fsid, sizeof(server->fsid)); | 
|  | 1078 |  | 
| David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1079 | dprintk("Server FSID: %llx:%llx\n", | 
|  | 1080 | (unsigned long long) server->fsid.major, | 
|  | 1081 | (unsigned long long) server->fsid.minor); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1082 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1083 | spin_lock(&nfs_client_lock); | 
|  | 1084 | list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks); | 
|  | 1085 | list_add_tail(&server->master_link, &nfs_volume_list); | 
|  | 1086 | spin_unlock(&nfs_client_lock); | 
|  | 1087 |  | 
|  | 1088 | server->mount_time = jiffies; | 
|  | 1089 | return server; | 
|  | 1090 |  | 
|  | 1091 | error: | 
|  | 1092 | nfs_free_server(server); | 
|  | 1093 | return ERR_PTR(error); | 
|  | 1094 | } | 
|  | 1095 |  | 
|  | 1096 | #ifdef CONFIG_NFS_V4 | 
|  | 1097 | /* | 
| Benny Halevy | 9bdaa86 | 2009-04-01 09:22:55 -0400 | [diff] [blame] | 1098 | * Initialize the NFS4 callback service | 
|  | 1099 | */ | 
|  | 1100 | static int nfs4_init_callback(struct nfs_client *clp) | 
|  | 1101 | { | 
|  | 1102 | int error; | 
|  | 1103 |  | 
|  | 1104 | if (clp->rpc_ops->version == 4) { | 
| Andy Adamson | 0b5b7ae | 2009-04-01 09:23:15 -0400 | [diff] [blame] | 1105 | if (nfs4_has_session(clp)) { | 
|  | 1106 | error = xprt_setup_backchannel( | 
|  | 1107 | clp->cl_rpcclient->cl_xprt, | 
|  | 1108 | NFS41_BC_MIN_CALLBACKS); | 
|  | 1109 | if (error < 0) | 
|  | 1110 | return error; | 
|  | 1111 | } | 
|  | 1112 |  | 
| Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 1113 | error = nfs_callback_up(clp->cl_minorversion, | 
|  | 1114 | clp->cl_rpcclient->cl_xprt); | 
| Benny Halevy | 9bdaa86 | 2009-04-01 09:22:55 -0400 | [diff] [blame] | 1115 | if (error < 0) { | 
|  | 1116 | dprintk("%s: failed to start callback. Error = %d\n", | 
|  | 1117 | __func__, error); | 
|  | 1118 | return error; | 
|  | 1119 | } | 
|  | 1120 | __set_bit(NFS_CS_CALLBACK, &clp->cl_res_state); | 
|  | 1121 | } | 
|  | 1122 | return 0; | 
|  | 1123 | } | 
|  | 1124 |  | 
|  | 1125 | /* | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 1126 | * Initialize the minor version specific parts of an NFS4 client record | 
|  | 1127 | */ | 
|  | 1128 | static int nfs4_init_client_minor_version(struct nfs_client *clp) | 
|  | 1129 | { | 
| Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 1130 | clp->cl_call_sync = _nfs4_call_sync; | 
|  | 1131 |  | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 1132 | #if defined(CONFIG_NFS_V4_1) | 
|  | 1133 | if (clp->cl_minorversion) { | 
|  | 1134 | struct nfs4_session *session = NULL; | 
|  | 1135 | /* | 
|  | 1136 | * Create the session and mark it expired. | 
|  | 1137 | * When a SEQUENCE operation encounters the expired session | 
|  | 1138 | * it will do session recovery to initialize it. | 
|  | 1139 | */ | 
|  | 1140 | session = nfs4_alloc_session(clp); | 
|  | 1141 | if (!session) | 
|  | 1142 | return -ENOMEM; | 
|  | 1143 |  | 
|  | 1144 | clp->cl_session = session; | 
| Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 1145 | clp->cl_call_sync = _nfs4_call_sync_session; | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 1146 | } | 
|  | 1147 | #endif /* CONFIG_NFS_V4_1 */ | 
|  | 1148 |  | 
| Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 1149 | return nfs4_init_callback(clp); | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 1150 | } | 
|  | 1151 |  | 
|  | 1152 | /* | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1153 | * Initialise an NFS4 client record | 
|  | 1154 | */ | 
|  | 1155 | static int nfs4_init_client(struct nfs_client *clp, | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1156 | const struct rpc_timeout *timeparms, | 
| J. Bruce Fields | 7d9ac06 | 2006-10-19 23:28:39 -0700 | [diff] [blame] | 1157 | const char *ip_addr, | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 1158 | rpc_authflavor_t authflavour, | 
|  | 1159 | int flags) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1160 | { | 
|  | 1161 | int error; | 
|  | 1162 |  | 
|  | 1163 | if (clp->cl_cons_state == NFS_CS_READY) { | 
|  | 1164 | /* the client is initialised already */ | 
|  | 1165 | dprintk("<-- nfs4_init_client() = 0 [already %p]\n", clp); | 
|  | 1166 | return 0; | 
|  | 1167 | } | 
|  | 1168 |  | 
|  | 1169 | /* Check NFS protocol revision and initialize RPC op vector */ | 
|  | 1170 | clp->rpc_ops = &nfs_v4_clientops; | 
|  | 1171 |  | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 1172 | error = nfs_create_rpc_client(clp, timeparms, authflavour, | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 1173 | 1, flags & NFS_MOUNT_NORESVPORT); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1174 | if (error < 0) | 
|  | 1175 | goto error; | 
| J. Bruce Fields | 7d9ac06 | 2006-10-19 23:28:39 -0700 | [diff] [blame] | 1176 | memcpy(clp->cl_ipaddr, ip_addr, sizeof(clp->cl_ipaddr)); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1177 |  | 
|  | 1178 | error = nfs_idmap_new(clp); | 
|  | 1179 | if (error < 0) { | 
|  | 1180 | dprintk("%s: failed to create idmapper. Error = %d\n", | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 1181 | __func__, error); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1182 | goto error; | 
|  | 1183 | } | 
| Trond Myklebust | 9c5bf38 | 2006-08-22 20:06:14 -0400 | [diff] [blame] | 1184 | __set_bit(NFS_CS_IDMAP, &clp->cl_res_state); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1185 |  | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 1186 | error = nfs4_init_client_minor_version(clp); | 
|  | 1187 | if (error < 0) | 
|  | 1188 | goto error; | 
|  | 1189 |  | 
| Andy Adamson | 76db6d9 | 2009-04-01 09:22:38 -0400 | [diff] [blame] | 1190 | if (!nfs4_has_session(clp)) | 
|  | 1191 | nfs_mark_client_ready(clp, NFS_CS_READY); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1192 | return 0; | 
|  | 1193 |  | 
|  | 1194 | error: | 
|  | 1195 | nfs_mark_client_ready(clp, error); | 
|  | 1196 | dprintk("<-- nfs4_init_client() = xerror %d\n", error); | 
|  | 1197 | return error; | 
|  | 1198 | } | 
|  | 1199 |  | 
|  | 1200 | /* | 
|  | 1201 | * Set up an NFS4 client | 
|  | 1202 | */ | 
|  | 1203 | static int nfs4_set_client(struct nfs_server *server, | 
| Chuck Lever | dcecae0 | 2007-12-10 14:58:59 -0500 | [diff] [blame] | 1204 | const char *hostname, | 
|  | 1205 | const struct sockaddr *addr, | 
|  | 1206 | const size_t addrlen, | 
| J. Bruce Fields | 7d9ac06 | 2006-10-19 23:28:39 -0700 | [diff] [blame] | 1207 | const char *ip_addr, | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1208 | rpc_authflavor_t authflavour, | 
| Benny Halevy | 94a417f | 2009-04-01 09:21:49 -0400 | [diff] [blame] | 1209 | int proto, const struct rpc_timeout *timeparms, | 
|  | 1210 | u32 minorversion) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1211 | { | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 1212 | struct nfs_client_initdata cl_init = { | 
|  | 1213 | .hostname = hostname, | 
| Chuck Lever | dcecae0 | 2007-12-10 14:58:59 -0500 | [diff] [blame] | 1214 | .addr = addr, | 
|  | 1215 | .addrlen = addrlen, | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 1216 | .rpc_ops = &nfs_v4_clientops, | 
| Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 1217 | .proto = proto, | 
| Benny Halevy | 5aae4a9 | 2009-04-01 09:21:50 -0400 | [diff] [blame] | 1218 | .minorversion = minorversion, | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 1219 | }; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1220 | struct nfs_client *clp; | 
|  | 1221 | int error; | 
|  | 1222 |  | 
|  | 1223 | dprintk("--> nfs4_set_client()\n"); | 
|  | 1224 |  | 
|  | 1225 | /* Allocate or find a client reference we can use */ | 
| Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 1226 | clp = nfs_get_client(&cl_init); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1227 | if (IS_ERR(clp)) { | 
|  | 1228 | error = PTR_ERR(clp); | 
|  | 1229 | goto error; | 
|  | 1230 | } | 
| Chuck Lever | d740351 | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 1231 | error = nfs4_init_client(clp, timeparms, ip_addr, authflavour, | 
|  | 1232 | server->flags); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1233 | if (error < 0) | 
|  | 1234 | goto error_put; | 
|  | 1235 |  | 
|  | 1236 | server->nfs_client = clp; | 
|  | 1237 | dprintk("<-- nfs4_set_client() = 0 [new %p]\n", clp); | 
|  | 1238 | return 0; | 
|  | 1239 |  | 
|  | 1240 | error_put: | 
|  | 1241 | nfs_put_client(clp); | 
|  | 1242 | error: | 
|  | 1243 | dprintk("<-- nfs4_set_client() = xerror %d\n", error); | 
|  | 1244 | return error; | 
|  | 1245 | } | 
|  | 1246 |  | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 1247 |  | 
|  | 1248 | /* | 
| Andy Adamson | 96b09e0 | 2009-04-01 09:22:33 -0400 | [diff] [blame] | 1249 | * Session has been established, and the client marked ready. | 
|  | 1250 | * Set the mount rsize and wsize with negotiated fore channel | 
|  | 1251 | * attributes which will be bound checked in nfs_server_set_fsinfo. | 
|  | 1252 | */ | 
|  | 1253 | static void nfs4_session_set_rwsize(struct nfs_server *server) | 
|  | 1254 | { | 
|  | 1255 | #ifdef CONFIG_NFS_V4_1 | 
|  | 1256 | if (!nfs4_has_session(server->nfs_client)) | 
|  | 1257 | return; | 
|  | 1258 | server->rsize = server->nfs_client->cl_session->fc_attrs.max_resp_sz; | 
|  | 1259 | server->wsize = server->nfs_client->cl_session->fc_attrs.max_rqst_sz; | 
|  | 1260 | #endif /* CONFIG_NFS_V4_1 */ | 
|  | 1261 | } | 
|  | 1262 |  | 
|  | 1263 | /* | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1264 | * Create a version 4 volume record | 
|  | 1265 | */ | 
|  | 1266 | static int nfs4_init_server(struct nfs_server *server, | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 1267 | const struct nfs_parsed_mount_data *data) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1268 | { | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1269 | struct rpc_timeout timeparms; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1270 | int error; | 
|  | 1271 |  | 
|  | 1272 | dprintk("--> nfs4_init_server()\n"); | 
|  | 1273 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1274 | nfs_init_timeout_values(&timeparms, data->nfs_server.protocol, | 
|  | 1275 | data->timeo, data->retrans); | 
|  | 1276 |  | 
| Chuck Lever | 542fcc3 | 2008-12-23 15:21:36 -0500 | [diff] [blame] | 1277 | /* Initialise the client representation from the mount data */ | 
|  | 1278 | server->flags = data->flags; | 
| Trond Myklebust | 62ab460 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 1279 | server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR; | 
| David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 1280 | server->options = data->options; | 
| Chuck Lever | 542fcc3 | 2008-12-23 15:21:36 -0500 | [diff] [blame] | 1281 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1282 | /* Get a client record */ | 
|  | 1283 | error = nfs4_set_client(server, | 
|  | 1284 | data->nfs_server.hostname, | 
|  | 1285 | (const struct sockaddr *)&data->nfs_server.address, | 
|  | 1286 | data->nfs_server.addrlen, | 
|  | 1287 | data->client_address, | 
|  | 1288 | data->auth_flavors[0], | 
|  | 1289 | data->nfs_server.protocol, | 
| Benny Halevy | 94a417f | 2009-04-01 09:21:49 -0400 | [diff] [blame] | 1290 | &timeparms, | 
|  | 1291 | data->minorversion); | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1292 | if (error < 0) | 
|  | 1293 | goto error; | 
|  | 1294 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1295 | if (data->rsize) | 
|  | 1296 | server->rsize = nfs_block_size(data->rsize, NULL); | 
|  | 1297 | if (data->wsize) | 
|  | 1298 | server->wsize = nfs_block_size(data->wsize, NULL); | 
|  | 1299 |  | 
|  | 1300 | server->acregmin = data->acregmin * HZ; | 
|  | 1301 | server->acregmax = data->acregmax * HZ; | 
|  | 1302 | server->acdirmin = data->acdirmin * HZ; | 
|  | 1303 | server->acdirmax = data->acdirmax * HZ; | 
|  | 1304 |  | 
| Chuck Lever | f22d6d7 | 2008-03-14 14:10:22 -0400 | [diff] [blame] | 1305 | server->port = data->nfs_server.port; | 
|  | 1306 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1307 | error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1308 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1309 | error: | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1310 | /* Done */ | 
|  | 1311 | dprintk("<-- nfs4_init_server() = %d\n", error); | 
|  | 1312 | return error; | 
|  | 1313 | } | 
|  | 1314 |  | 
|  | 1315 | /* | 
|  | 1316 | * Create a version 4 volume record | 
|  | 1317 | * - keyed on server and FSID | 
|  | 1318 | */ | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 1319 | struct nfs_server *nfs4_create_server(const struct nfs_parsed_mount_data *data, | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1320 | struct nfs_fh *mntfh) | 
|  | 1321 | { | 
|  | 1322 | struct nfs_fattr fattr; | 
|  | 1323 | struct nfs_server *server; | 
|  | 1324 | int error; | 
|  | 1325 |  | 
|  | 1326 | dprintk("--> nfs4_create_server()\n"); | 
|  | 1327 |  | 
|  | 1328 | server = nfs_alloc_server(); | 
|  | 1329 | if (!server) | 
|  | 1330 | return ERR_PTR(-ENOMEM); | 
|  | 1331 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1332 | /* set up the general RPC client */ | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 1333 | error = nfs4_init_server(server, data); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1334 | if (error < 0) | 
|  | 1335 | goto error; | 
|  | 1336 |  | 
|  | 1337 | BUG_ON(!server->nfs_client); | 
|  | 1338 | BUG_ON(!server->nfs_client->rpc_ops); | 
|  | 1339 | BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops); | 
|  | 1340 |  | 
| Trond Myklebust | fccba80 | 2009-07-21 16:48:07 -0400 | [diff] [blame] | 1341 | error = nfs4_init_session(server); | 
|  | 1342 | if (error < 0) | 
|  | 1343 | goto error; | 
| Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 1344 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1345 | /* Probe the root fh to retrieve its FSID */ | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 1346 | error = nfs4_path_walk(server, mntfh, data->nfs_server.export_path); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1347 | if (error < 0) | 
|  | 1348 | goto error; | 
|  | 1349 |  | 
| David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1350 | dprintk("Server FSID: %llx:%llx\n", | 
|  | 1351 | (unsigned long long) server->fsid.major, | 
|  | 1352 | (unsigned long long) server->fsid.minor); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1353 | dprintk("Mount FH: %d\n", mntfh->size); | 
|  | 1354 |  | 
| Andy Adamson | 96b09e0 | 2009-04-01 09:22:33 -0400 | [diff] [blame] | 1355 | nfs4_session_set_rwsize(server); | 
|  | 1356 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1357 | error = nfs_probe_fsinfo(server, mntfh, &fattr); | 
|  | 1358 | if (error < 0) | 
|  | 1359 | goto error; | 
|  | 1360 |  | 
| Trond Myklebust | 54af3bb | 2007-09-28 12:27:41 -0400 | [diff] [blame] | 1361 | if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN) | 
|  | 1362 | server->namelen = NFS4_MAXNAMLEN; | 
|  | 1363 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1364 | spin_lock(&nfs_client_lock); | 
|  | 1365 | list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks); | 
|  | 1366 | list_add_tail(&server->master_link, &nfs_volume_list); | 
|  | 1367 | spin_unlock(&nfs_client_lock); | 
|  | 1368 |  | 
|  | 1369 | server->mount_time = jiffies; | 
|  | 1370 | dprintk("<-- nfs4_create_server() = %p\n", server); | 
|  | 1371 | return server; | 
|  | 1372 |  | 
|  | 1373 | error: | 
|  | 1374 | nfs_free_server(server); | 
|  | 1375 | dprintk("<-- nfs4_create_server() = error %d\n", error); | 
|  | 1376 | return ERR_PTR(error); | 
|  | 1377 | } | 
|  | 1378 |  | 
|  | 1379 | /* | 
|  | 1380 | * Create an NFS4 referral server record | 
|  | 1381 | */ | 
|  | 1382 | struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *data, | 
| Trond Myklebust | f2d0d85 | 2007-02-02 14:46:09 -0800 | [diff] [blame] | 1383 | struct nfs_fh *mntfh) | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1384 | { | 
|  | 1385 | struct nfs_client *parent_client; | 
|  | 1386 | struct nfs_server *server, *parent_server; | 
|  | 1387 | struct nfs_fattr fattr; | 
|  | 1388 | int error; | 
|  | 1389 |  | 
|  | 1390 | dprintk("--> nfs4_create_referral_server()\n"); | 
|  | 1391 |  | 
|  | 1392 | server = nfs_alloc_server(); | 
|  | 1393 | if (!server) | 
|  | 1394 | return ERR_PTR(-ENOMEM); | 
|  | 1395 |  | 
|  | 1396 | parent_server = NFS_SB(data->sb); | 
|  | 1397 | parent_client = parent_server->nfs_client; | 
|  | 1398 |  | 
| Chuck Lever | 542fcc3 | 2008-12-23 15:21:36 -0500 | [diff] [blame] | 1399 | /* Initialise the client representation from the parent server */ | 
|  | 1400 | nfs_server_copy_userdata(server, parent_server); | 
| Trond Myklebust | 62ab460 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 1401 | server->caps |= NFS_CAP_ATOMIC_OPEN|NFS_CAP_CHANGE_ATTR; | 
| Chuck Lever | 542fcc3 | 2008-12-23 15:21:36 -0500 | [diff] [blame] | 1402 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1403 | /* Get a client representation. | 
|  | 1404 | * Note: NFSv4 always uses TCP, */ | 
| Chuck Lever | dcecae0 | 2007-12-10 14:58:59 -0500 | [diff] [blame] | 1405 | error = nfs4_set_client(server, data->hostname, | 
| Chuck Lever | 6677d09 | 2007-12-10 14:59:06 -0500 | [diff] [blame] | 1406 | data->addr, | 
|  | 1407 | data->addrlen, | 
| Chuck Lever | dcecae0 | 2007-12-10 14:58:59 -0500 | [diff] [blame] | 1408 | parent_client->cl_ipaddr, | 
|  | 1409 | data->authflavor, | 
|  | 1410 | parent_server->client->cl_xprt->prot, | 
| Benny Halevy | 94a417f | 2009-04-01 09:21:49 -0400 | [diff] [blame] | 1411 | parent_server->client->cl_timeout, | 
|  | 1412 | parent_client->cl_minorversion); | 
| andros@citi.umich.edu | 297de4f | 2006-08-29 12:19:41 -0400 | [diff] [blame] | 1413 | if (error < 0) | 
|  | 1414 | goto error; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1415 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1416 | error = nfs_init_server_rpcclient(server, parent_server->client->cl_timeout, data->authflavor); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1417 | if (error < 0) | 
|  | 1418 | goto error; | 
|  | 1419 |  | 
|  | 1420 | BUG_ON(!server->nfs_client); | 
|  | 1421 | BUG_ON(!server->nfs_client->rpc_ops); | 
|  | 1422 | BUG_ON(!server->nfs_client->rpc_ops->file_inode_ops); | 
|  | 1423 |  | 
| Trond Myklebust | f2d0d85 | 2007-02-02 14:46:09 -0800 | [diff] [blame] | 1424 | /* Probe the root fh to retrieve its FSID and filehandle */ | 
|  | 1425 | error = nfs4_path_walk(server, mntfh, data->mnt_path); | 
|  | 1426 | if (error < 0) | 
|  | 1427 | goto error; | 
|  | 1428 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1429 | /* probe the filesystem info for this server filesystem */ | 
| Trond Myklebust | f2d0d85 | 2007-02-02 14:46:09 -0800 | [diff] [blame] | 1430 | error = nfs_probe_fsinfo(server, mntfh, &fattr); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1431 | if (error < 0) | 
|  | 1432 | goto error; | 
|  | 1433 |  | 
| Trond Myklebust | 54af3bb | 2007-09-28 12:27:41 -0400 | [diff] [blame] | 1434 | if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN) | 
|  | 1435 | server->namelen = NFS4_MAXNAMLEN; | 
|  | 1436 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1437 | dprintk("Referral FSID: %llx:%llx\n", | 
| David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1438 | (unsigned long long) server->fsid.major, | 
|  | 1439 | (unsigned long long) server->fsid.minor); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1440 |  | 
|  | 1441 | spin_lock(&nfs_client_lock); | 
|  | 1442 | list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks); | 
|  | 1443 | list_add_tail(&server->master_link, &nfs_volume_list); | 
|  | 1444 | spin_unlock(&nfs_client_lock); | 
|  | 1445 |  | 
|  | 1446 | server->mount_time = jiffies; | 
|  | 1447 |  | 
|  | 1448 | dprintk("<-- nfs_create_referral_server() = %p\n", server); | 
|  | 1449 | return server; | 
|  | 1450 |  | 
|  | 1451 | error: | 
|  | 1452 | nfs_free_server(server); | 
|  | 1453 | dprintk("<-- nfs4_create_referral_server() = error %d\n", error); | 
|  | 1454 | return ERR_PTR(error); | 
|  | 1455 | } | 
|  | 1456 |  | 
|  | 1457 | #endif /* CONFIG_NFS_V4 */ | 
|  | 1458 |  | 
|  | 1459 | /* | 
|  | 1460 | * Clone an NFS2, NFS3 or NFS4 server record | 
|  | 1461 | */ | 
|  | 1462 | struct nfs_server *nfs_clone_server(struct nfs_server *source, | 
|  | 1463 | struct nfs_fh *fh, | 
|  | 1464 | struct nfs_fattr *fattr) | 
|  | 1465 | { | 
|  | 1466 | struct nfs_server *server; | 
|  | 1467 | struct nfs_fattr fattr_fsinfo; | 
|  | 1468 | int error; | 
|  | 1469 |  | 
|  | 1470 | dprintk("--> nfs_clone_server(,%llx:%llx,)\n", | 
| David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1471 | (unsigned long long) fattr->fsid.major, | 
|  | 1472 | (unsigned long long) fattr->fsid.minor); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1473 |  | 
|  | 1474 | server = nfs_alloc_server(); | 
|  | 1475 | if (!server) | 
|  | 1476 | return ERR_PTR(-ENOMEM); | 
|  | 1477 |  | 
|  | 1478 | /* Copy data from the source */ | 
|  | 1479 | server->nfs_client = source->nfs_client; | 
|  | 1480 | atomic_inc(&server->nfs_client->cl_count); | 
|  | 1481 | nfs_server_copy_userdata(server, source); | 
|  | 1482 |  | 
|  | 1483 | server->fsid = fattr->fsid; | 
|  | 1484 |  | 
| Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1485 | error = nfs_init_server_rpcclient(server, | 
|  | 1486 | source->client->cl_timeout, | 
|  | 1487 | source->client->cl_auth->au_flavor); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1488 | if (error < 0) | 
|  | 1489 | goto out_free_server; | 
|  | 1490 | if (!IS_ERR(source->client_acl)) | 
|  | 1491 | nfs_init_server_aclclient(server); | 
|  | 1492 |  | 
|  | 1493 | /* probe the filesystem info for this server filesystem */ | 
|  | 1494 | error = nfs_probe_fsinfo(server, fh, &fattr_fsinfo); | 
|  | 1495 | if (error < 0) | 
|  | 1496 | goto out_free_server; | 
|  | 1497 |  | 
| Trond Myklebust | 54af3bb | 2007-09-28 12:27:41 -0400 | [diff] [blame] | 1498 | if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN) | 
|  | 1499 | server->namelen = NFS4_MAXNAMLEN; | 
|  | 1500 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1501 | dprintk("Cloned FSID: %llx:%llx\n", | 
| David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1502 | (unsigned long long) server->fsid.major, | 
|  | 1503 | (unsigned long long) server->fsid.minor); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1504 |  | 
|  | 1505 | error = nfs_start_lockd(server); | 
|  | 1506 | if (error < 0) | 
|  | 1507 | goto out_free_server; | 
|  | 1508 |  | 
|  | 1509 | spin_lock(&nfs_client_lock); | 
|  | 1510 | list_add_tail(&server->client_link, &server->nfs_client->cl_superblocks); | 
|  | 1511 | list_add_tail(&server->master_link, &nfs_volume_list); | 
|  | 1512 | spin_unlock(&nfs_client_lock); | 
|  | 1513 |  | 
|  | 1514 | server->mount_time = jiffies; | 
|  | 1515 |  | 
|  | 1516 | dprintk("<-- nfs_clone_server() = %p\n", server); | 
|  | 1517 | return server; | 
|  | 1518 |  | 
|  | 1519 | out_free_server: | 
|  | 1520 | nfs_free_server(server); | 
|  | 1521 | dprintk("<-- nfs_clone_server() = error %d\n", error); | 
|  | 1522 | return ERR_PTR(error); | 
|  | 1523 | } | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1524 |  | 
|  | 1525 | #ifdef CONFIG_PROC_FS | 
|  | 1526 | static struct proc_dir_entry *proc_fs_nfs; | 
|  | 1527 |  | 
|  | 1528 | static int nfs_server_list_open(struct inode *inode, struct file *file); | 
|  | 1529 | static void *nfs_server_list_start(struct seq_file *p, loff_t *pos); | 
|  | 1530 | static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos); | 
|  | 1531 | static void nfs_server_list_stop(struct seq_file *p, void *v); | 
|  | 1532 | static int nfs_server_list_show(struct seq_file *m, void *v); | 
|  | 1533 |  | 
| James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 1534 | static const struct seq_operations nfs_server_list_ops = { | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1535 | .start	= nfs_server_list_start, | 
|  | 1536 | .next	= nfs_server_list_next, | 
|  | 1537 | .stop	= nfs_server_list_stop, | 
|  | 1538 | .show	= nfs_server_list_show, | 
|  | 1539 | }; | 
|  | 1540 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1541 | static const struct file_operations nfs_server_list_fops = { | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1542 | .open		= nfs_server_list_open, | 
|  | 1543 | .read		= seq_read, | 
|  | 1544 | .llseek		= seq_lseek, | 
|  | 1545 | .release	= seq_release, | 
| Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1546 | .owner		= THIS_MODULE, | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1547 | }; | 
|  | 1548 |  | 
|  | 1549 | static int nfs_volume_list_open(struct inode *inode, struct file *file); | 
|  | 1550 | static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos); | 
|  | 1551 | static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos); | 
|  | 1552 | static void nfs_volume_list_stop(struct seq_file *p, void *v); | 
|  | 1553 | static int nfs_volume_list_show(struct seq_file *m, void *v); | 
|  | 1554 |  | 
| James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 1555 | static const struct seq_operations nfs_volume_list_ops = { | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1556 | .start	= nfs_volume_list_start, | 
|  | 1557 | .next	= nfs_volume_list_next, | 
|  | 1558 | .stop	= nfs_volume_list_stop, | 
|  | 1559 | .show	= nfs_volume_list_show, | 
|  | 1560 | }; | 
|  | 1561 |  | 
| Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1562 | static const struct file_operations nfs_volume_list_fops = { | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1563 | .open		= nfs_volume_list_open, | 
|  | 1564 | .read		= seq_read, | 
|  | 1565 | .llseek		= seq_lseek, | 
|  | 1566 | .release	= seq_release, | 
| Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1567 | .owner		= THIS_MODULE, | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1568 | }; | 
|  | 1569 |  | 
|  | 1570 | /* | 
|  | 1571 | * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which | 
|  | 1572 | * we're dealing | 
|  | 1573 | */ | 
|  | 1574 | static int nfs_server_list_open(struct inode *inode, struct file *file) | 
|  | 1575 | { | 
|  | 1576 | struct seq_file *m; | 
|  | 1577 | int ret; | 
|  | 1578 |  | 
|  | 1579 | ret = seq_open(file, &nfs_server_list_ops); | 
|  | 1580 | if (ret < 0) | 
|  | 1581 | return ret; | 
|  | 1582 |  | 
|  | 1583 | m = file->private_data; | 
|  | 1584 | m->private = PDE(inode)->data; | 
|  | 1585 |  | 
|  | 1586 | return 0; | 
|  | 1587 | } | 
|  | 1588 |  | 
|  | 1589 | /* | 
|  | 1590 | * set up the iterator to start reading from the server list and return the first item | 
|  | 1591 | */ | 
|  | 1592 | static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos) | 
|  | 1593 | { | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1594 | /* lock the list against modification */ | 
|  | 1595 | spin_lock(&nfs_client_lock); | 
| Pavel Emelianov | 259902e | 2007-07-15 23:39:56 -0700 | [diff] [blame] | 1596 | return seq_list_start_head(&nfs_client_list, *_pos); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1597 | } | 
|  | 1598 |  | 
|  | 1599 | /* | 
|  | 1600 | * move to next server | 
|  | 1601 | */ | 
|  | 1602 | static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos) | 
|  | 1603 | { | 
| Pavel Emelianov | 259902e | 2007-07-15 23:39:56 -0700 | [diff] [blame] | 1604 | return seq_list_next(v, &nfs_client_list, pos); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1605 | } | 
|  | 1606 |  | 
|  | 1607 | /* | 
|  | 1608 | * clean up after reading from the transports list | 
|  | 1609 | */ | 
|  | 1610 | static void nfs_server_list_stop(struct seq_file *p, void *v) | 
|  | 1611 | { | 
|  | 1612 | spin_unlock(&nfs_client_lock); | 
|  | 1613 | } | 
|  | 1614 |  | 
|  | 1615 | /* | 
|  | 1616 | * display a header line followed by a load of call lines | 
|  | 1617 | */ | 
|  | 1618 | static int nfs_server_list_show(struct seq_file *m, void *v) | 
|  | 1619 | { | 
|  | 1620 | struct nfs_client *clp; | 
|  | 1621 |  | 
|  | 1622 | /* display header on line 1 */ | 
| Pavel Emelianov | 259902e | 2007-07-15 23:39:56 -0700 | [diff] [blame] | 1623 | if (v == &nfs_client_list) { | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1624 | seq_puts(m, "NV SERVER   PORT USE HOSTNAME\n"); | 
|  | 1625 | return 0; | 
|  | 1626 | } | 
|  | 1627 |  | 
|  | 1628 | /* display one transport per line on subsequent lines */ | 
|  | 1629 | clp = list_entry(v, struct nfs_client, cl_share_link); | 
|  | 1630 |  | 
| Chuck Lever | 5d8515c | 2007-12-10 14:57:16 -0500 | [diff] [blame] | 1631 | seq_printf(m, "v%u %s %s %3d %s\n", | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 1632 | clp->rpc_ops->version, | 
| Chuck Lever | 5d8515c | 2007-12-10 14:57:16 -0500 | [diff] [blame] | 1633 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR), | 
|  | 1634 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT), | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1635 | atomic_read(&clp->cl_count), | 
|  | 1636 | clp->cl_hostname); | 
|  | 1637 |  | 
|  | 1638 | return 0; | 
|  | 1639 | } | 
|  | 1640 |  | 
|  | 1641 | /* | 
|  | 1642 | * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes | 
|  | 1643 | */ | 
|  | 1644 | static int nfs_volume_list_open(struct inode *inode, struct file *file) | 
|  | 1645 | { | 
|  | 1646 | struct seq_file *m; | 
|  | 1647 | int ret; | 
|  | 1648 |  | 
|  | 1649 | ret = seq_open(file, &nfs_volume_list_ops); | 
|  | 1650 | if (ret < 0) | 
|  | 1651 | return ret; | 
|  | 1652 |  | 
|  | 1653 | m = file->private_data; | 
|  | 1654 | m->private = PDE(inode)->data; | 
|  | 1655 |  | 
|  | 1656 | return 0; | 
|  | 1657 | } | 
|  | 1658 |  | 
|  | 1659 | /* | 
|  | 1660 | * set up the iterator to start reading from the volume list and return the first item | 
|  | 1661 | */ | 
|  | 1662 | static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos) | 
|  | 1663 | { | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1664 | /* lock the list against modification */ | 
|  | 1665 | spin_lock(&nfs_client_lock); | 
| Pavel Emelianov | 259902e | 2007-07-15 23:39:56 -0700 | [diff] [blame] | 1666 | return seq_list_start_head(&nfs_volume_list, *_pos); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1667 | } | 
|  | 1668 |  | 
|  | 1669 | /* | 
|  | 1670 | * move to next volume | 
|  | 1671 | */ | 
|  | 1672 | static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos) | 
|  | 1673 | { | 
| Pavel Emelianov | 259902e | 2007-07-15 23:39:56 -0700 | [diff] [blame] | 1674 | return seq_list_next(v, &nfs_volume_list, pos); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1675 | } | 
|  | 1676 |  | 
|  | 1677 | /* | 
|  | 1678 | * clean up after reading from the transports list | 
|  | 1679 | */ | 
|  | 1680 | static void nfs_volume_list_stop(struct seq_file *p, void *v) | 
|  | 1681 | { | 
|  | 1682 | spin_unlock(&nfs_client_lock); | 
|  | 1683 | } | 
|  | 1684 |  | 
|  | 1685 | /* | 
|  | 1686 | * display a header line followed by a load of call lines | 
|  | 1687 | */ | 
|  | 1688 | static int nfs_volume_list_show(struct seq_file *m, void *v) | 
|  | 1689 | { | 
|  | 1690 | struct nfs_server *server; | 
|  | 1691 | struct nfs_client *clp; | 
|  | 1692 | char dev[8], fsid[17]; | 
|  | 1693 |  | 
|  | 1694 | /* display header on line 1 */ | 
| Pavel Emelianov | 259902e | 2007-07-15 23:39:56 -0700 | [diff] [blame] | 1695 | if (v == &nfs_volume_list) { | 
| David Howells | 5d1acff | 2009-04-03 16:42:47 +0100 | [diff] [blame] | 1696 | seq_puts(m, "NV SERVER   PORT DEV     FSID              FSC\n"); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1697 | return 0; | 
|  | 1698 | } | 
|  | 1699 | /* display one transport per line on subsequent lines */ | 
|  | 1700 | server = list_entry(v, struct nfs_server, master_link); | 
|  | 1701 | clp = server->nfs_client; | 
|  | 1702 |  | 
|  | 1703 | snprintf(dev, 8, "%u:%u", | 
|  | 1704 | MAJOR(server->s_dev), MINOR(server->s_dev)); | 
|  | 1705 |  | 
|  | 1706 | snprintf(fsid, 17, "%llx:%llx", | 
| David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1707 | (unsigned long long) server->fsid.major, | 
|  | 1708 | (unsigned long long) server->fsid.minor); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1709 |  | 
| David Howells | 5d1acff | 2009-04-03 16:42:47 +0100 | [diff] [blame] | 1710 | seq_printf(m, "v%u %s %s %-7s %-17s %s\n", | 
| Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 1711 | clp->rpc_ops->version, | 
| Chuck Lever | 5d8515c | 2007-12-10 14:57:16 -0500 | [diff] [blame] | 1712 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR), | 
|  | 1713 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT), | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1714 | dev, | 
| David Howells | 5d1acff | 2009-04-03 16:42:47 +0100 | [diff] [blame] | 1715 | fsid, | 
|  | 1716 | nfs_server_fscache_state(server)); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1717 |  | 
|  | 1718 | return 0; | 
|  | 1719 | } | 
|  | 1720 |  | 
|  | 1721 | /* | 
|  | 1722 | * initialise the /proc/fs/nfsfs/ directory | 
|  | 1723 | */ | 
|  | 1724 | int __init nfs_fs_proc_init(void) | 
|  | 1725 | { | 
|  | 1726 | struct proc_dir_entry *p; | 
|  | 1727 |  | 
| Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 1728 | proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1729 | if (!proc_fs_nfs) | 
|  | 1730 | goto error_0; | 
|  | 1731 |  | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1732 | /* a file of servers with which we're dealing */ | 
| Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1733 | p = proc_create("servers", S_IFREG|S_IRUGO, | 
|  | 1734 | proc_fs_nfs, &nfs_server_list_fops); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1735 | if (!p) | 
|  | 1736 | goto error_1; | 
|  | 1737 |  | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1738 | /* a file of volumes that we have mounted */ | 
| Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1739 | p = proc_create("volumes", S_IFREG|S_IRUGO, | 
|  | 1740 | proc_fs_nfs, &nfs_volume_list_fops); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1741 | if (!p) | 
|  | 1742 | goto error_2; | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1743 | return 0; | 
|  | 1744 |  | 
|  | 1745 | error_2: | 
|  | 1746 | remove_proc_entry("servers", proc_fs_nfs); | 
|  | 1747 | error_1: | 
| Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 1748 | remove_proc_entry("fs/nfsfs", NULL); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1749 | error_0: | 
|  | 1750 | return -ENOMEM; | 
|  | 1751 | } | 
|  | 1752 |  | 
|  | 1753 | /* | 
|  | 1754 | * clean up the /proc/fs/nfsfs/ directory | 
|  | 1755 | */ | 
|  | 1756 | void nfs_fs_proc_exit(void) | 
|  | 1757 | { | 
|  | 1758 | remove_proc_entry("volumes", proc_fs_nfs); | 
|  | 1759 | remove_proc_entry("servers", proc_fs_nfs); | 
| Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 1760 | remove_proc_entry("fs/nfsfs", NULL); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1761 | } | 
|  | 1762 |  | 
|  | 1763 | #endif /* CONFIG_PROC_FS */ |