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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | #include <linux/slab.h> |
Al Viro | 4040153 | 2012-02-13 03:58:52 +0000 | [diff] [blame] | 39 | #include <linux/idr.h> |
Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 40 | #include <net/ipv6.h> |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 41 | #include <linux/nfs_xdr.h> |
Andy Adamson | 0b5b7ae | 2009-04-01 09:23:15 -0400 | [diff] [blame] | 42 | #include <linux/sunrpc/bc_xprt.h> |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 43 | #include <linux/nsproxy.h> |
| 44 | #include <linux/pid_namespace.h> |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 45 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 46 | |
| 47 | #include "nfs4_fs.h" |
| 48 | #include "callback.h" |
| 49 | #include "delegation.h" |
| 50 | #include "iostat.h" |
| 51 | #include "internal.h" |
David Howells | 1472728 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 52 | #include "fscache.h" |
Ricardo Labiaga | 85e174b | 2010-10-20 00:17:58 -0400 | [diff] [blame] | 53 | #include "pnfs.h" |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 54 | #include "nfs.h" |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 55 | #include "netns.h" |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 56 | |
| 57 | #define NFSDBG_FACILITY NFSDBG_CLIENT |
| 58 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 59 | static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq); |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 60 | static DEFINE_SPINLOCK(nfs_version_lock); |
| 61 | static DEFINE_MUTEX(nfs_version_mutex); |
| 62 | static LIST_HEAD(nfs_versions); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 63 | |
| 64 | /* |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 65 | * RPC cruft for NFS |
| 66 | */ |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 67 | static const struct rpc_version *nfs_version[5] = { |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 68 | [2] = NULL, |
| 69 | [3] = NULL, |
| 70 | [4] = NULL, |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 71 | }; |
| 72 | |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 73 | const struct rpc_program nfs_program = { |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 74 | .name = "nfs", |
| 75 | .number = NFS_PROGRAM, |
| 76 | .nrvers = ARRAY_SIZE(nfs_version), |
| 77 | .version = nfs_version, |
| 78 | .stats = &nfs_rpcstat, |
Jim Rees | fe0a9b7 | 2011-07-30 20:52:42 -0400 | [diff] [blame] | 79 | .pipe_dir_name = NFS_PIPE_DIRNAME, |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | struct rpc_stat nfs_rpcstat = { |
| 83 | .program = &nfs_program |
| 84 | }; |
| 85 | |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 86 | static struct nfs_subversion *find_nfs_version(unsigned int version) |
| 87 | { |
| 88 | struct nfs_subversion *nfs; |
| 89 | spin_lock(&nfs_version_lock); |
| 90 | |
| 91 | list_for_each_entry(nfs, &nfs_versions, list) { |
| 92 | if (nfs->rpc_ops->version == version) { |
| 93 | spin_unlock(&nfs_version_lock); |
| 94 | return nfs; |
| 95 | } |
Yanchuan Nian | ee34e13 | 2012-09-10 08:40:16 +0800 | [diff] [blame] | 96 | } |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 97 | |
| 98 | spin_unlock(&nfs_version_lock); |
Yanchuan Nian | ee34e13 | 2012-09-10 08:40:16 +0800 | [diff] [blame] | 99 | return ERR_PTR(-EPROTONOSUPPORT); |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | struct nfs_subversion *get_nfs_version(unsigned int version) |
| 103 | { |
| 104 | struct nfs_subversion *nfs = find_nfs_version(version); |
| 105 | |
| 106 | if (IS_ERR(nfs)) { |
| 107 | mutex_lock(&nfs_version_mutex); |
bjschuma@gmail.com | 1ae811e | 2012-08-08 13:57:06 -0400 | [diff] [blame] | 108 | request_module("nfsv%d", version); |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 109 | nfs = find_nfs_version(version); |
| 110 | mutex_unlock(&nfs_version_mutex); |
| 111 | } |
| 112 | |
| 113 | if (!IS_ERR(nfs)) |
| 114 | try_module_get(nfs->owner); |
| 115 | return nfs; |
| 116 | } |
| 117 | |
| 118 | void put_nfs_version(struct nfs_subversion *nfs) |
| 119 | { |
| 120 | module_put(nfs->owner); |
| 121 | } |
| 122 | |
| 123 | void register_nfs_version(struct nfs_subversion *nfs) |
| 124 | { |
| 125 | spin_lock(&nfs_version_lock); |
| 126 | |
| 127 | list_add(&nfs->list, &nfs_versions); |
| 128 | nfs_version[nfs->rpc_ops->version] = nfs->rpc_vers; |
| 129 | |
| 130 | spin_unlock(&nfs_version_lock); |
| 131 | } |
| 132 | EXPORT_SYMBOL_GPL(register_nfs_version); |
| 133 | |
| 134 | void unregister_nfs_version(struct nfs_subversion *nfs) |
| 135 | { |
| 136 | spin_lock(&nfs_version_lock); |
| 137 | |
| 138 | nfs_version[nfs->rpc_ops->version] = NULL; |
| 139 | list_del(&nfs->list); |
| 140 | |
| 141 | spin_unlock(&nfs_version_lock); |
| 142 | } |
| 143 | EXPORT_SYMBOL_GPL(unregister_nfs_version); |
| 144 | |
| 145 | /* |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 146 | * Allocate a shared client record |
| 147 | * |
| 148 | * Since these are allocated/deallocated very rarely, we don't |
| 149 | * bother putting them in a slab cache... |
| 150 | */ |
Bryan Schumaker | 6663ee7 | 2012-06-20 15:53:46 -0400 | [diff] [blame] | 151 | 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] | 152 | { |
| 153 | struct nfs_client *clp; |
Trond Myklebust | 7c67db3 | 2008-04-07 20:50:11 -0400 | [diff] [blame] | 154 | struct rpc_cred *cred; |
Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 155 | int err = -ENOMEM; |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 156 | |
| 157 | if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL) |
| 158 | goto error_0; |
| 159 | |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 160 | clp->cl_nfs_mod = cl_init->nfs_mod; |
| 161 | try_module_get(clp->cl_nfs_mod->owner); |
| 162 | |
| 163 | clp->rpc_ops = clp->cl_nfs_mod->rpc_ops; |
Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 164 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 165 | atomic_set(&clp->cl_count, 1); |
| 166 | clp->cl_cons_state = NFS_CS_INITING; |
| 167 | |
Chuck Lever | 6e4cffd | 2007-12-10 14:58:15 -0500 | [diff] [blame] | 168 | memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen); |
| 169 | clp->cl_addrlen = cl_init->addrlen; |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 170 | |
Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 171 | if (cl_init->hostname) { |
Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 172 | err = -ENOMEM; |
Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 173 | clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 174 | if (!clp->cl_hostname) |
Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 175 | goto error_cleanup; |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | INIT_LIST_HEAD(&clp->cl_superblocks); |
| 179 | clp->cl_rpcclient = ERR_PTR(-EINVAL); |
| 180 | |
Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 181 | clp->cl_proto = cl_init->proto; |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 182 | clp->cl_net = get_net(cl_init->net); |
Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 183 | |
Trond Myklebust | 68c9715 | 2012-01-03 13:22:46 -0500 | [diff] [blame] | 184 | cred = rpc_lookup_machine_cred("*"); |
Trond Myklebust | 7c67db3 | 2008-04-07 20:50:11 -0400 | [diff] [blame] | 185 | if (!IS_ERR(cred)) |
| 186 | clp->cl_machine_cred = cred; |
David Howells | 1472728 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 187 | nfs_fscache_get_client_cookie(clp); |
| 188 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 189 | return clp; |
| 190 | |
Benny Halevy | 7146851 | 2009-04-01 09:22:56 -0400 | [diff] [blame] | 191 | error_cleanup: |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 192 | put_nfs_version(clp->cl_nfs_mod); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 193 | kfree(clp); |
| 194 | error_0: |
Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 195 | return ERR_PTR(err); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 196 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 197 | EXPORT_SYMBOL_GPL(nfs_alloc_client); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 198 | |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 199 | #if IS_ENABLED(CONFIG_NFS_V4) |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 200 | void nfs_cleanup_cb_ident_idr(struct net *net) |
Andy Adamson | f4eecd5 | 2011-01-06 02:04:30 +0000 | [diff] [blame] | 201 | { |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 202 | struct nfs_net *nn = net_generic(net, nfs_net_id); |
| 203 | |
| 204 | idr_destroy(&nn->cb_ident_idr); |
Andy Adamson | f4eecd5 | 2011-01-06 02:04:30 +0000 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | /* nfs_client_lock held */ |
| 208 | static void nfs_cb_idr_remove_locked(struct nfs_client *clp) |
| 209 | { |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 210 | struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id); |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 211 | |
Andy Adamson | f4eecd5 | 2011-01-06 02:04:30 +0000 | [diff] [blame] | 212 | if (clp->cl_cb_ident) |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 213 | idr_remove(&nn->cb_ident_idr, clp->cl_cb_ident); |
Andy Adamson | f4eecd5 | 2011-01-06 02:04:30 +0000 | [diff] [blame] | 214 | } |
| 215 | |
Fred Isaman | f7e8917 | 2011-01-06 11:36:32 +0000 | [diff] [blame] | 216 | static void pnfs_init_server(struct nfs_server *server) |
| 217 | { |
| 218 | rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC"); |
| 219 | } |
| 220 | |
Alexandros Batsakis | 888ef2e | 2010-02-05 03:45:03 -0800 | [diff] [blame] | 221 | #else |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 222 | void nfs_cleanup_cb_ident_idr(struct net *net) |
Andy Adamson | f4eecd5 | 2011-01-06 02:04:30 +0000 | [diff] [blame] | 223 | { |
| 224 | } |
| 225 | |
| 226 | static void nfs_cb_idr_remove_locked(struct nfs_client *clp) |
| 227 | { |
| 228 | } |
Fred Isaman | f7e8917 | 2011-01-06 11:36:32 +0000 | [diff] [blame] | 229 | |
| 230 | static void pnfs_init_server(struct nfs_server *server) |
| 231 | { |
| 232 | } |
| 233 | |
Alexandros Batsakis | 888ef2e | 2010-02-05 03:45:03 -0800 | [diff] [blame] | 234 | #endif /* CONFIG_NFS_V4 */ |
| 235 | |
| 236 | /* |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 237 | * Destroy a shared client record |
| 238 | */ |
Bryan Schumaker | cdb7ece | 2012-06-20 15:53:45 -0400 | [diff] [blame] | 239 | void nfs_free_client(struct nfs_client *clp) |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 240 | { |
Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 241 | dprintk("--> nfs_free_client(%u)\n", clp->rpc_ops->version); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 242 | |
David Howells | 1472728 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 243 | nfs_fscache_release_client_cookie(clp); |
| 244 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 245 | /* -EIO all pending I/O */ |
| 246 | if (!IS_ERR(clp->cl_rpcclient)) |
| 247 | rpc_shutdown_client(clp->cl_rpcclient); |
| 248 | |
Trond Myklebust | 7c67db3 | 2008-04-07 20:50:11 -0400 | [diff] [blame] | 249 | if (clp->cl_machine_cred != NULL) |
| 250 | put_rpccred(clp->cl_machine_cred); |
| 251 | |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 252 | put_net(clp->cl_net); |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 253 | put_nfs_version(clp->cl_nfs_mod); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 254 | kfree(clp->cl_hostname); |
| 255 | kfree(clp); |
| 256 | |
| 257 | dprintk("<-- nfs_free_client()\n"); |
| 258 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 259 | EXPORT_SYMBOL_GPL(nfs_free_client); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 260 | |
| 261 | /* |
| 262 | * Release a reference to a shared client record |
| 263 | */ |
| 264 | void nfs_put_client(struct nfs_client *clp) |
| 265 | { |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 266 | struct nfs_net *nn; |
| 267 | |
David Howells | 27ba851 | 2006-07-30 14:40:56 -0400 | [diff] [blame] | 268 | if (!clp) |
| 269 | return; |
| 270 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 271 | dprintk("--> nfs_put_client({%d})\n", atomic_read(&clp->cl_count)); |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 272 | nn = net_generic(clp->cl_net, nfs_net_id); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 273 | |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 274 | if (atomic_dec_and_lock(&clp->cl_count, &nn->nfs_client_lock)) { |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 275 | list_del(&clp->cl_share_link); |
Andy Adamson | f4eecd5 | 2011-01-06 02:04:30 +0000 | [diff] [blame] | 276 | nfs_cb_idr_remove_locked(clp); |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 277 | spin_unlock(&nn->nfs_client_lock); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 278 | |
Trond Myklebust | 1fea73a8 | 2012-10-15 11:24:57 -0400 | [diff] [blame] | 279 | WARN_ON_ONCE(!list_empty(&clp->cl_superblocks)); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 280 | |
Bryan Schumaker | cdb7ece | 2012-06-20 15:53:45 -0400 | [diff] [blame] | 281 | clp->rpc_ops->free_client(clp); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 282 | } |
| 283 | } |
Andy Adamson | 16b374c | 2010-10-20 00:18:04 -0400 | [diff] [blame] | 284 | EXPORT_SYMBOL_GPL(nfs_put_client); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 285 | |
Trond Myklebust | 9082a5c | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 286 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 287 | /* |
| 288 | * Test if two ip6 socket addresses refer to the same socket by |
| 289 | * comparing relevant fields. The padding bytes specifically, are not |
| 290 | * compared. sin6_flowinfo is not compared because it only affects QoS |
| 291 | * and sin6_scope_id is only compared if the address is "link local" |
| 292 | * because "link local" addresses need only be unique to a specific |
| 293 | * link. Conversely, ordinary unicast addresses might have different |
| 294 | * sin6_scope_id. |
| 295 | * |
| 296 | * The caller should ensure both socket addresses are AF_INET6. |
| 297 | */ |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 298 | static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1, |
| 299 | const struct sockaddr *sa2) |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 300 | { |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 301 | const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1; |
| 302 | const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2; |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 303 | |
Mi Jinlong | b9dd3ab | 2011-10-12 15:09:34 +0800 | [diff] [blame] | 304 | if (!ipv6_addr_equal(&sin1->sin6_addr, &sin2->sin6_addr)) |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 305 | return 0; |
Mi Jinlong | b9dd3ab | 2011-10-12 15:09:34 +0800 | [diff] [blame] | 306 | else if (ipv6_addr_type(&sin1->sin6_addr) & IPV6_ADDR_LINKLOCAL) |
| 307 | return sin1->sin6_scope_id == sin2->sin6_scope_id; |
Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 308 | |
Mi Jinlong | b9dd3ab | 2011-10-12 15:09:34 +0800 | [diff] [blame] | 309 | return 1; |
Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 310 | } |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 311 | #else /* !defined(CONFIG_IPV6) && !defined(CONFIG_IPV6_MODULE) */ |
| 312 | static int nfs_sockaddr_match_ipaddr6(const struct sockaddr *sa1, |
| 313 | const struct sockaddr *sa2) |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 314 | { |
| 315 | return 0; |
| 316 | } |
Trond Myklebust | 9082a5c | 2008-12-23 15:21:53 -0500 | [diff] [blame] | 317 | #endif |
Trond Myklebust | 3b0d3f9 | 2008-01-03 13:28:58 -0500 | [diff] [blame] | 318 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 319 | /* |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 320 | * Test if two ip4 socket addresses refer to the same socket, by |
| 321 | * comparing relevant fields. The padding bytes specifically, are |
| 322 | * not compared. |
| 323 | * |
| 324 | * The caller should ensure both socket addresses are AF_INET. |
| 325 | */ |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 326 | static int nfs_sockaddr_match_ipaddr4(const struct sockaddr *sa1, |
| 327 | const struct sockaddr *sa2) |
| 328 | { |
| 329 | const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1; |
| 330 | const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2; |
| 331 | |
| 332 | return sin1->sin_addr.s_addr == sin2->sin_addr.s_addr; |
| 333 | } |
| 334 | |
| 335 | static int nfs_sockaddr_cmp_ip6(const struct sockaddr *sa1, |
| 336 | const struct sockaddr *sa2) |
| 337 | { |
| 338 | const struct sockaddr_in6 *sin1 = (const struct sockaddr_in6 *)sa1; |
| 339 | const struct sockaddr_in6 *sin2 = (const struct sockaddr_in6 *)sa2; |
| 340 | |
| 341 | return nfs_sockaddr_match_ipaddr6(sa1, sa2) && |
| 342 | (sin1->sin6_port == sin2->sin6_port); |
| 343 | } |
| 344 | |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 345 | static int nfs_sockaddr_cmp_ip4(const struct sockaddr *sa1, |
| 346 | const struct sockaddr *sa2) |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 347 | { |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 348 | const struct sockaddr_in *sin1 = (const struct sockaddr_in *)sa1; |
| 349 | const struct sockaddr_in *sin2 = (const struct sockaddr_in *)sa2; |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 350 | |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 351 | return nfs_sockaddr_match_ipaddr4(sa1, sa2) && |
| 352 | (sin1->sin_port == sin2->sin_port); |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 353 | } |
| 354 | |
Bryan Schumaker | 4b7c8dd | 2012-03-12 11:28:24 -0400 | [diff] [blame] | 355 | #if defined(CONFIG_NFS_V4_1) |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 356 | /* |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 357 | * Test if two socket addresses represent the same actual socket, |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 358 | * by comparing (only) relevant fields, excluding the port number. |
| 359 | */ |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 360 | int nfs_sockaddr_match_ipaddr(const struct sockaddr *sa1, |
| 361 | const struct sockaddr *sa2) |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 362 | { |
| 363 | if (sa1->sa_family != sa2->sa_family) |
| 364 | return 0; |
| 365 | |
| 366 | switch (sa1->sa_family) { |
| 367 | case AF_INET: |
| 368 | return nfs_sockaddr_match_ipaddr4(sa1, sa2); |
| 369 | case AF_INET6: |
| 370 | return nfs_sockaddr_match_ipaddr6(sa1, sa2); |
| 371 | } |
| 372 | return 0; |
| 373 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 374 | EXPORT_SYMBOL_GPL(nfs_sockaddr_match_ipaddr); |
Bryan Schumaker | 4b7c8dd | 2012-03-12 11:28:24 -0400 | [diff] [blame] | 375 | #endif /* CONFIG_NFS_V4_1 */ |
Chuck Lever | 3c8c45d | 2009-03-18 20:48:14 -0400 | [diff] [blame] | 376 | |
| 377 | /* |
| 378 | * Test if two socket addresses represent the same actual socket, |
| 379 | * by comparing (only) relevant fields, including the port number. |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 380 | */ |
| 381 | static int nfs_sockaddr_cmp(const struct sockaddr *sa1, |
| 382 | const struct sockaddr *sa2) |
| 383 | { |
| 384 | if (sa1->sa_family != sa2->sa_family) |
| 385 | return 0; |
| 386 | |
| 387 | switch (sa1->sa_family) { |
| 388 | case AF_INET: |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 389 | return nfs_sockaddr_cmp_ip4(sa1, sa2); |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 390 | case AF_INET6: |
Trond Myklebust | 9f4c899 | 2009-03-12 14:51:32 -0400 | [diff] [blame] | 391 | return nfs_sockaddr_cmp_ip6(sa1, sa2); |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 392 | } |
| 393 | return 0; |
| 394 | } |
| 395 | |
Trond Myklebust | 3fbd67a | 2008-01-26 01:06:40 -0500 | [diff] [blame] | 396 | /* |
Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 397 | * Find an nfs_client on the list that matches the initialisation data |
| 398 | * that is supplied. |
| 399 | */ |
| 400 | 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] | 401 | { |
| 402 | struct nfs_client *clp; |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 403 | const struct sockaddr *sap = data->addr; |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 404 | struct nfs_net *nn = net_generic(data->net, nfs_net_id); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 405 | |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 406 | list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) { |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 407 | const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr; |
Trond Myklebust | 13bbc06 | 2006-10-19 23:28:40 -0700 | [diff] [blame] | 408 | /* Don't match clients that failed to initialise properly */ |
| 409 | if (clp->cl_cons_state < 0) |
| 410 | continue; |
| 411 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 412 | /* Different NFS versions cannot share the same nfs_client */ |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 413 | if (clp->rpc_ops != data->nfs_mod->rpc_ops) |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 414 | continue; |
| 415 | |
Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 416 | if (clp->cl_proto != data->proto) |
| 417 | continue; |
Benny Halevy | 5aae4a9 | 2009-04-01 09:21:50 -0400 | [diff] [blame] | 418 | /* Match nfsv4 minorversion */ |
| 419 | if (clp->cl_minorversion != data->minorversion) |
| 420 | continue; |
Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 421 | /* Match the full socket address */ |
Ian Dall | d7371c4 | 2009-03-10 20:33:22 -0400 | [diff] [blame] | 422 | if (!nfs_sockaddr_cmp(sap, clap)) |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 423 | continue; |
| 424 | |
Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 425 | atomic_inc(&clp->cl_count); |
| 426 | return clp; |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 427 | } |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 428 | return NULL; |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 429 | } |
| 430 | |
Trond Myklebust | 4697bd5 | 2012-05-23 13:24:36 -0400 | [diff] [blame] | 431 | static bool nfs_client_init_is_complete(const struct nfs_client *clp) |
| 432 | { |
| 433 | return clp->cl_cons_state != NFS_CS_INITING; |
| 434 | } |
| 435 | |
| 436 | int nfs_wait_client_init_complete(const struct nfs_client *clp) |
| 437 | { |
| 438 | return wait_event_killable(nfs_client_active_wq, |
| 439 | nfs_client_init_is_complete(clp)); |
| 440 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 441 | EXPORT_SYMBOL_GPL(nfs_wait_client_init_complete); |
Trond Myklebust | 4697bd5 | 2012-05-23 13:24:36 -0400 | [diff] [blame] | 442 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 443 | /* |
Chuck Lever | f411703 | 2012-05-21 22:45:50 -0400 | [diff] [blame] | 444 | * Found an existing client. Make sure it's ready before returning. |
| 445 | */ |
| 446 | static struct nfs_client * |
| 447 | nfs_found_client(const struct nfs_client_initdata *cl_init, |
| 448 | struct nfs_client *clp) |
| 449 | { |
| 450 | int error; |
| 451 | |
Trond Myklebust | 4697bd5 | 2012-05-23 13:24:36 -0400 | [diff] [blame] | 452 | error = nfs_wait_client_init_complete(clp); |
Chuck Lever | f411703 | 2012-05-21 22:45:50 -0400 | [diff] [blame] | 453 | if (error < 0) { |
| 454 | nfs_put_client(clp); |
| 455 | return ERR_PTR(-ERESTARTSYS); |
| 456 | } |
| 457 | |
| 458 | if (clp->cl_cons_state < NFS_CS_READY) { |
| 459 | error = clp->cl_cons_state; |
| 460 | nfs_put_client(clp); |
| 461 | return ERR_PTR(error); |
| 462 | } |
| 463 | |
Trond Myklebust | 54ac471 | 2012-05-23 13:26:10 -0400 | [diff] [blame] | 464 | smp_rmb(); |
| 465 | |
Chuck Lever | f411703 | 2012-05-21 22:45:50 -0400 | [diff] [blame] | 466 | dprintk("<-- %s found nfs_client %p for %s\n", |
| 467 | __func__, clp, cl_init->hostname ?: ""); |
| 468 | return clp; |
| 469 | } |
| 470 | |
| 471 | /* |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 472 | * Look up a client by IP address and protocol version |
| 473 | * - creates a new record if one doesn't yet exist |
| 474 | */ |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 475 | struct nfs_client * |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 476 | nfs_get_client(const struct nfs_client_initdata *cl_init, |
| 477 | const struct rpc_timeout *timeparms, |
| 478 | const char *ip_addr, |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 479 | rpc_authflavor_t authflavour) |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 480 | { |
| 481 | struct nfs_client *clp, *new = NULL; |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 482 | struct nfs_net *nn = net_generic(cl_init->net, nfs_net_id); |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 483 | const struct nfs_rpc_ops *rpc_ops = cl_init->nfs_mod->rpc_ops; |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 484 | |
Chuck Lever | d7422c4 | 2007-12-10 14:58:51 -0500 | [diff] [blame] | 485 | dprintk("--> nfs_get_client(%s,v%u)\n", |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 486 | cl_init->hostname ?: "", rpc_ops->version); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 487 | |
| 488 | /* see if the client already exists */ |
| 489 | do { |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 490 | spin_lock(&nn->nfs_client_lock); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 491 | |
Trond Myklebust | c81468a | 2007-12-14 14:56:05 -0500 | [diff] [blame] | 492 | clp = nfs_match_client(cl_init); |
Chuck Lever | f411703 | 2012-05-21 22:45:50 -0400 | [diff] [blame] | 493 | if (clp) { |
| 494 | spin_unlock(&nn->nfs_client_lock); |
| 495 | if (new) |
Bryan Schumaker | cdb7ece | 2012-06-20 15:53:45 -0400 | [diff] [blame] | 496 | new->rpc_ops->free_client(new); |
Chuck Lever | f411703 | 2012-05-21 22:45:50 -0400 | [diff] [blame] | 497 | return nfs_found_client(cl_init, clp); |
| 498 | } |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 499 | if (new) { |
Chuck Lever | 05f4c35 | 2012-09-14 17:24:32 -0400 | [diff] [blame] | 500 | list_add_tail(&new->cl_share_link, |
| 501 | &nn->nfs_client_list); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 502 | spin_unlock(&nn->nfs_client_lock); |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 503 | new->cl_flags = cl_init->init_flags; |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 504 | return rpc_ops->init_client(new, timeparms, ip_addr, |
| 505 | authflavour); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 506 | } |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 507 | |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 508 | spin_unlock(&nn->nfs_client_lock); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 509 | |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 510 | new = rpc_ops->alloc_client(cl_init); |
Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 511 | } while (!IS_ERR(new)); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 512 | |
Chuck Lever | f411703 | 2012-05-21 22:45:50 -0400 | [diff] [blame] | 513 | dprintk("<-- nfs_get_client() Failed to find %s (%ld)\n", |
| 514 | cl_init->hostname ?: "", PTR_ERR(new)); |
Chuck Lever | a21bdd9 | 2009-06-17 18:02:10 -0700 | [diff] [blame] | 515 | return new; |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 516 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 517 | EXPORT_SYMBOL_GPL(nfs_get_client); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 518 | |
| 519 | /* |
| 520 | * Mark a server as ready or failed |
| 521 | */ |
Andy Adamson | 76db6d9 | 2009-04-01 09:22:38 -0400 | [diff] [blame] | 522 | void nfs_mark_client_ready(struct nfs_client *clp, int state) |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 523 | { |
Trond Myklebust | 54ac471 | 2012-05-23 13:26:10 -0400 | [diff] [blame] | 524 | smp_wmb(); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 525 | clp->cl_cons_state = state; |
| 526 | wake_up_all(&nfs_client_active_wq); |
| 527 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 528 | EXPORT_SYMBOL_GPL(nfs_mark_client_ready); |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 529 | |
| 530 | /* |
| 531 | * Initialise the timeout values for a connection |
| 532 | */ |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 533 | void nfs_init_timeout_values(struct rpc_timeout *to, int proto, |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 534 | unsigned int timeo, unsigned int retrans) |
| 535 | { |
| 536 | to->to_initval = timeo * HZ / 10; |
| 537 | to->to_retries = retrans; |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 538 | |
| 539 | switch (proto) { |
\"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 540 | case XPRT_TRANSPORT_TCP: |
\"Talpey, Thomas\ | 2cf7ff7 | 2007-09-10 13:49:41 -0400 | [diff] [blame] | 541 | case XPRT_TRANSPORT_RDMA: |
Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 542 | if (to->to_retries == 0) |
| 543 | to->to_retries = NFS_DEF_TCP_RETRANS; |
Trond Myklebust | 7a3e3e1 | 2007-12-20 16:03:57 -0500 | [diff] [blame] | 544 | if (to->to_initval == 0) |
Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 545 | to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10; |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 546 | if (to->to_initval > NFS_MAX_TCP_TIMEOUT) |
| 547 | to->to_initval = NFS_MAX_TCP_TIMEOUT; |
| 548 | to->to_increment = to->to_initval; |
| 549 | to->to_maxval = to->to_initval + (to->to_increment * to->to_retries); |
Trond Myklebust | 7a3e3e1 | 2007-12-20 16:03:57 -0500 | [diff] [blame] | 550 | if (to->to_maxval > NFS_MAX_TCP_TIMEOUT) |
| 551 | to->to_maxval = NFS_MAX_TCP_TIMEOUT; |
| 552 | if (to->to_maxval < to->to_initval) |
| 553 | to->to_maxval = to->to_initval; |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 554 | to->to_exponential = 0; |
| 555 | break; |
\"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame] | 556 | case XPRT_TRANSPORT_UDP: |
Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 557 | if (to->to_retries == 0) |
| 558 | to->to_retries = NFS_DEF_UDP_RETRANS; |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 559 | if (!to->to_initval) |
Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 560 | to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10; |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 561 | if (to->to_initval > NFS_MAX_UDP_TIMEOUT) |
| 562 | to->to_initval = NFS_MAX_UDP_TIMEOUT; |
| 563 | to->to_maxval = NFS_MAX_UDP_TIMEOUT; |
| 564 | to->to_exponential = 1; |
| 565 | break; |
Trond Myklebust | 259875e | 2008-07-02 14:43:47 -0400 | [diff] [blame] | 566 | default: |
| 567 | BUG(); |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 568 | } |
| 569 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 570 | EXPORT_SYMBOL_GPL(nfs_init_timeout_values); |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 571 | |
| 572 | /* |
| 573 | * Create an RPC client handle |
| 574 | */ |
Bryan Schumaker | 428360d | 2012-07-16 16:39:17 -0400 | [diff] [blame] | 575 | int nfs_create_rpc_client(struct nfs_client *clp, |
| 576 | const struct rpc_timeout *timeparms, |
| 577 | rpc_authflavor_t flavor) |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 578 | { |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 579 | struct rpc_clnt *clnt = NULL; |
Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 580 | struct rpc_create_args args = { |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 581 | .net = clp->cl_net, |
Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 582 | .protocol = clp->cl_proto, |
Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 583 | .address = (struct sockaddr *)&clp->cl_addr, |
Chuck Lever | 6e4cffd | 2007-12-10 14:58:15 -0500 | [diff] [blame] | 584 | .addrsize = clp->cl_addrlen, |
Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 585 | .timeout = timeparms, |
Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 586 | .servername = clp->cl_hostname, |
| 587 | .program = &nfs_program, |
| 588 | .version = clp->rpc_ops->version, |
| 589 | .authflavor = flavor, |
| 590 | }; |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 591 | |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 592 | if (test_bit(NFS_CS_DISCRTRY, &clp->cl_flags)) |
Chuck Lever | 4a01b8a | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 593 | args.flags |= RPC_CLNT_CREATE_DISCRTRY; |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 594 | if (test_bit(NFS_CS_NORESVPORT, &clp->cl_flags)) |
Chuck Lever | 4a01b8a | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 595 | args.flags |= RPC_CLNT_CREATE_NONPRIVPORT; |
Trond Myklebust | 98f98cf | 2013-04-14 11:49:51 -0400 | [diff] [blame] | 596 | if (test_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags)) |
| 597 | args.flags |= RPC_CLNT_CREATE_INFINITE_SLOTS; |
Chuck Lever | 4a01b8a | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 598 | |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 599 | if (!IS_ERR(clp->cl_rpcclient)) |
| 600 | return 0; |
| 601 | |
Chuck Lever | 41877d2 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 602 | clnt = rpc_create(&args); |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 603 | if (IS_ERR(clnt)) { |
| 604 | dprintk("%s: cannot create RPC client. Error = %ld\n", |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 605 | __func__, PTR_ERR(clnt)); |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 606 | return PTR_ERR(clnt); |
| 607 | } |
| 608 | |
David Howells | 5006a76 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 609 | clp->cl_rpcclient = clnt; |
| 610 | return 0; |
| 611 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 612 | EXPORT_SYMBOL_GPL(nfs_create_rpc_client); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 613 | |
| 614 | /* |
| 615 | * Version 2 or 3 client destruction |
| 616 | */ |
| 617 | static void nfs_destroy_server(struct nfs_server *server) |
| 618 | { |
NeilBrown | f259613 | 2012-12-13 15:14:36 +1100 | [diff] [blame] | 619 | if (server->nlm_host) |
Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 620 | nlmclnt_done(server->nlm_host); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | /* |
| 624 | * Version 2 or 3 lockd setup |
| 625 | */ |
| 626 | static int nfs_start_lockd(struct nfs_server *server) |
| 627 | { |
Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 628 | struct nlm_host *host; |
| 629 | struct nfs_client *clp = server->nfs_client; |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 630 | struct nlmclnt_initdata nlm_init = { |
| 631 | .hostname = clp->cl_hostname, |
| 632 | .address = (struct sockaddr *)&clp->cl_addr, |
| 633 | .addrlen = clp->cl_addrlen, |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 634 | .nfs_version = clp->rpc_ops->version, |
Chuck Lever | 0cb2659 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 635 | .noresvport = server->flags & NFS_MOUNT_NORESVPORT ? |
| 636 | 1 : 0, |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 637 | .net = clp->cl_net, |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 638 | }; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 639 | |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 640 | if (nlm_init.nfs_version > 3) |
Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 641 | return 0; |
Suresh Jayaraman | 5eebde2 | 2010-09-23 08:55:58 -0400 | [diff] [blame] | 642 | if ((server->flags & NFS_MOUNT_LOCAL_FLOCK) && |
| 643 | (server->flags & NFS_MOUNT_LOCAL_FCNTL)) |
Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 644 | return 0; |
| 645 | |
Trond Myklebust | 8a6e5de | 2009-09-23 14:36:37 -0400 | [diff] [blame] | 646 | switch (clp->cl_proto) { |
| 647 | default: |
| 648 | nlm_init.protocol = IPPROTO_TCP; |
| 649 | break; |
| 650 | case XPRT_TRANSPORT_UDP: |
| 651 | nlm_init.protocol = IPPROTO_UDP; |
| 652 | } |
| 653 | |
Chuck Lever | 883bb16 | 2008-01-15 16:04:20 -0500 | [diff] [blame] | 654 | host = nlmclnt_init(&nlm_init); |
Chuck Lever | 9289e7f | 2008-01-11 17:09:52 -0500 | [diff] [blame] | 655 | if (IS_ERR(host)) |
| 656 | return PTR_ERR(host); |
| 657 | |
| 658 | server->nlm_host = host; |
| 659 | server->destroy = nfs_destroy_server; |
| 660 | return 0; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | /* |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 664 | * Create a general RPC client |
| 665 | */ |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 666 | int nfs_init_server_rpcclient(struct nfs_server *server, |
Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 667 | const struct rpc_timeout *timeo, |
| 668 | rpc_authflavor_t pseudoflavour) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 669 | { |
| 670 | struct nfs_client *clp = server->nfs_client; |
| 671 | |
Chuck Lever | ba9b584 | 2012-09-14 17:24:02 -0400 | [diff] [blame] | 672 | server->client = rpc_clone_client_set_auth(clp->cl_rpcclient, |
| 673 | pseudoflavour); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 674 | if (IS_ERR(server->client)) { |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 675 | dprintk("%s: couldn't create rpc_client!\n", __func__); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 676 | return PTR_ERR(server->client); |
| 677 | } |
| 678 | |
Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 679 | memcpy(&server->client->cl_timeout_default, |
| 680 | timeo, |
| 681 | sizeof(server->client->cl_timeout_default)); |
| 682 | server->client->cl_timeout = &server->client->cl_timeout_default; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 683 | server->client->cl_softrtry = 0; |
| 684 | if (server->flags & NFS_MOUNT_SOFT) |
| 685 | server->client->cl_softrtry = 1; |
| 686 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 687 | return 0; |
| 688 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 689 | EXPORT_SYMBOL_GPL(nfs_init_server_rpcclient); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 690 | |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 691 | /** |
| 692 | * nfs_init_client - Initialise an NFS2 or NFS3 client |
| 693 | * |
| 694 | * @clp: nfs_client to initialise |
| 695 | * @timeparms: timeout parameters for underlying RPC transport |
| 696 | * @ip_addr: IP presentation address (not used) |
| 697 | * @authflavor: authentication flavor for underlying RPC transport |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 698 | * |
| 699 | * Returns pointer to an NFS client, or an ERR_PTR value. |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 700 | */ |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 701 | struct nfs_client *nfs_init_client(struct nfs_client *clp, |
| 702 | const struct rpc_timeout *timeparms, |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 703 | const char *ip_addr, rpc_authflavor_t authflavour) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 704 | { |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 705 | int error; |
| 706 | |
| 707 | if (clp->cl_cons_state == NFS_CS_READY) { |
| 708 | /* the client is already initialised */ |
| 709 | dprintk("<-- nfs_init_client() = 0 [already %p]\n", clp); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 710 | return clp; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 711 | } |
| 712 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 713 | /* |
| 714 | * Create a client RPC handle for doing FSSTAT with UNIX auth only |
| 715 | * - RFC 2623, sec 2.3.2 |
| 716 | */ |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 717 | error = nfs_create_rpc_client(clp, timeparms, RPC_AUTH_UNIX); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 718 | if (error < 0) |
| 719 | goto error; |
| 720 | nfs_mark_client_ready(clp, NFS_CS_READY); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 721 | return clp; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 722 | |
| 723 | error: |
| 724 | nfs_mark_client_ready(clp, error); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 725 | nfs_put_client(clp); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 726 | dprintk("<-- nfs_init_client() = xerror %d\n", error); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 727 | return ERR_PTR(error); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 728 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 729 | EXPORT_SYMBOL_GPL(nfs_init_client); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 730 | |
| 731 | /* |
| 732 | * Create a version 2 or 3 client |
| 733 | */ |
\"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 734 | static int nfs_init_server(struct nfs_server *server, |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 735 | const struct nfs_parsed_mount_data *data, |
| 736 | struct nfs_subversion *nfs_mod) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 737 | { |
Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 738 | struct nfs_client_initdata cl_init = { |
| 739 | .hostname = data->nfs_server.hostname, |
Chuck Lever | d7422c4 | 2007-12-10 14:58:51 -0500 | [diff] [blame] | 740 | .addr = (const struct sockaddr *)&data->nfs_server.address, |
Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 741 | .addrlen = data->nfs_server.addrlen, |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 742 | .nfs_mod = nfs_mod, |
Trond Myklebust | 59dca3b | 2008-01-03 16:29:06 -0500 | [diff] [blame] | 743 | .proto = data->nfs_server.protocol, |
Stanislav Kinsbursky | e50a7a1 | 2012-01-10 16:12:46 +0400 | [diff] [blame] | 744 | .net = data->net, |
Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 745 | }; |
Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 746 | struct rpc_timeout timeparms; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 747 | struct nfs_client *clp; |
Trond Myklebust | 3a49802 | 2007-12-14 14:56:04 -0500 | [diff] [blame] | 748 | int error; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 749 | |
| 750 | dprintk("--> nfs_init_server()\n"); |
| 751 | |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 752 | nfs_init_timeout_values(&timeparms, data->nfs_server.protocol, |
| 753 | data->timeo, data->retrans); |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 754 | if (data->flags & NFS_MOUNT_NORESVPORT) |
| 755 | set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags); |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 756 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 757 | /* Allocate or find a client reference we can use */ |
Chuck Lever | 4bf590e | 2012-05-21 22:46:07 -0400 | [diff] [blame] | 758 | clp = nfs_get_client(&cl_init, &timeparms, NULL, RPC_AUTH_UNIX); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 759 | if (IS_ERR(clp)) { |
| 760 | dprintk("<-- nfs_init_server() = error %ld\n", PTR_ERR(clp)); |
| 761 | return PTR_ERR(clp); |
| 762 | } |
| 763 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 764 | server->nfs_client = clp; |
| 765 | |
| 766 | /* Initialise the client representation from the mount data */ |
Trond Myklebust | ff3525a | 2008-08-15 16:59:14 -0400 | [diff] [blame] | 767 | server->flags = data->flags; |
David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 768 | server->options = data->options; |
Trond Myklebust | 62ab460 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 769 | server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID| |
| 770 | NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP| |
Trond Myklebust | 3a1556e | 2012-04-27 13:48:18 -0400 | [diff] [blame] | 771 | NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME|NFS_CAP_CHANGE_ATTR; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 772 | |
| 773 | if (data->rsize) |
| 774 | server->rsize = nfs_block_size(data->rsize, NULL); |
| 775 | if (data->wsize) |
| 776 | server->wsize = nfs_block_size(data->wsize, NULL); |
| 777 | |
| 778 | server->acregmin = data->acregmin * HZ; |
| 779 | server->acregmax = data->acregmax * HZ; |
| 780 | server->acdirmin = data->acdirmin * HZ; |
| 781 | server->acdirmax = data->acdirmax * HZ; |
| 782 | |
| 783 | /* Start lockd here, before we might error out */ |
| 784 | error = nfs_start_lockd(server); |
| 785 | if (error < 0) |
| 786 | goto error; |
| 787 | |
Chuck Lever | f22d6d7 | 2008-03-14 14:10:22 -0400 | [diff] [blame] | 788 | server->port = data->nfs_server.port; |
| 789 | |
Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 790 | error = nfs_init_server_rpcclient(server, &timeparms, data->auth_flavors[0]); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 791 | if (error < 0) |
| 792 | goto error; |
| 793 | |
Chuck Lever | 3f8400d | 2008-03-14 14:10:30 -0400 | [diff] [blame] | 794 | /* Preserve the values of mount_server-related mount options */ |
| 795 | if (data->mount_server.addrlen) { |
| 796 | memcpy(&server->mountd_address, &data->mount_server.address, |
| 797 | data->mount_server.addrlen); |
| 798 | server->mountd_addrlen = data->mount_server.addrlen; |
| 799 | } |
| 800 | server->mountd_version = data->mount_server.version; |
| 801 | server->mountd_port = data->mount_server.port; |
| 802 | server->mountd_protocol = data->mount_server.protocol; |
| 803 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 804 | server->namelen = data->namlen; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 805 | dprintk("<-- nfs_init_server() = 0 [new %p]\n", clp); |
| 806 | return 0; |
| 807 | |
| 808 | error: |
| 809 | server->nfs_client = NULL; |
| 810 | nfs_put_client(clp); |
| 811 | dprintk("<-- nfs_init_server() = xerror %d\n", error); |
| 812 | return error; |
| 813 | } |
| 814 | |
| 815 | /* |
| 816 | * Load up the server record from information gained in an fsinfo record |
| 817 | */ |
Benny Halevy | 738fd0f3 | 2011-07-30 20:52:36 -0400 | [diff] [blame] | 818 | static void nfs_server_set_fsinfo(struct nfs_server *server, |
| 819 | struct nfs_fh *mntfh, |
| 820 | struct nfs_fsinfo *fsinfo) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 821 | { |
| 822 | unsigned long max_rpc_payload; |
| 823 | |
| 824 | /* Work out a lot of parameters */ |
| 825 | if (server->rsize == 0) |
| 826 | server->rsize = nfs_block_size(fsinfo->rtpref, NULL); |
| 827 | if (server->wsize == 0) |
| 828 | server->wsize = nfs_block_size(fsinfo->wtpref, NULL); |
| 829 | |
| 830 | if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax) |
| 831 | server->rsize = nfs_block_size(fsinfo->rtmax, NULL); |
| 832 | if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax) |
| 833 | server->wsize = nfs_block_size(fsinfo->wtmax, NULL); |
| 834 | |
| 835 | max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL); |
| 836 | if (server->rsize > max_rpc_payload) |
| 837 | server->rsize = max_rpc_payload; |
| 838 | if (server->rsize > NFS_MAX_FILE_IO_SIZE) |
| 839 | server->rsize = NFS_MAX_FILE_IO_SIZE; |
| 840 | server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 841 | |
Jens Axboe | d993831 | 2009-06-12 14:45:52 +0200 | [diff] [blame] | 842 | server->backing_dev_info.name = "nfs"; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 843 | server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD; |
| 844 | |
| 845 | if (server->wsize > max_rpc_payload) |
| 846 | server->wsize = max_rpc_payload; |
| 847 | if (server->wsize > NFS_MAX_FILE_IO_SIZE) |
| 848 | server->wsize = NFS_MAX_FILE_IO_SIZE; |
| 849 | server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT; |
Ricardo Labiaga | 85e174b | 2010-10-20 00:17:58 -0400 | [diff] [blame] | 850 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 851 | server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL); |
| 852 | |
| 853 | server->dtsize = nfs_block_size(fsinfo->dtpref, NULL); |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 854 | if (server->dtsize > PAGE_CACHE_SIZE * NFS_MAX_READDIR_PAGES) |
| 855 | server->dtsize = PAGE_CACHE_SIZE * NFS_MAX_READDIR_PAGES; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 856 | if (server->dtsize > server->rsize) |
| 857 | server->dtsize = server->rsize; |
| 858 | |
| 859 | if (server->flags & NFS_MOUNT_NOAC) { |
| 860 | server->acregmin = server->acregmax = 0; |
| 861 | server->acdirmin = server->acdirmax = 0; |
| 862 | } |
| 863 | |
| 864 | server->maxfilesize = fsinfo->maxfilesize; |
| 865 | |
Ricardo Labiaga | 6b96724 | 2010-10-12 16:30:05 -0700 | [diff] [blame] | 866 | server->time_delta = fsinfo->time_delta; |
| 867 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 868 | /* We're airborne Set socket buffersize */ |
| 869 | rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100); |
| 870 | } |
| 871 | |
| 872 | /* |
| 873 | * Probe filesystem information, including the FSID on v2/v3 |
| 874 | */ |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 875 | int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 876 | { |
| 877 | struct nfs_fsinfo fsinfo; |
| 878 | struct nfs_client *clp = server->nfs_client; |
| 879 | int error; |
| 880 | |
| 881 | dprintk("--> nfs_probe_fsinfo()\n"); |
| 882 | |
| 883 | if (clp->rpc_ops->set_capabilities != NULL) { |
| 884 | error = clp->rpc_ops->set_capabilities(server, mntfh); |
| 885 | if (error < 0) |
| 886 | goto out_error; |
| 887 | } |
| 888 | |
| 889 | fsinfo.fattr = fattr; |
Ricardo Labiaga | 85e174b | 2010-10-20 00:17:58 -0400 | [diff] [blame] | 890 | fsinfo.layouttype = 0; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 891 | error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo); |
| 892 | if (error < 0) |
| 893 | goto out_error; |
| 894 | |
Benny Halevy | 738fd0f3 | 2011-07-30 20:52:36 -0400 | [diff] [blame] | 895 | nfs_server_set_fsinfo(server, mntfh, &fsinfo); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 896 | |
| 897 | /* Get some general file system info */ |
| 898 | if (server->namelen == 0) { |
| 899 | struct nfs_pathconf pathinfo; |
| 900 | |
| 901 | pathinfo.fattr = fattr; |
| 902 | nfs_fattr_init(fattr); |
| 903 | |
| 904 | if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0) |
| 905 | server->namelen = pathinfo.max_namelen; |
| 906 | } |
| 907 | |
| 908 | dprintk("<-- nfs_probe_fsinfo() = 0\n"); |
| 909 | return 0; |
| 910 | |
| 911 | out_error: |
| 912 | dprintk("nfs_probe_fsinfo: error = %d\n", -error); |
| 913 | return error; |
| 914 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 915 | EXPORT_SYMBOL_GPL(nfs_probe_fsinfo); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 916 | |
| 917 | /* |
| 918 | * Copy useful information when duplicating a server record |
| 919 | */ |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 920 | void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 921 | { |
| 922 | target->flags = source->flags; |
Chuck Lever | 356e76b | 2010-04-22 15:35:56 -0400 | [diff] [blame] | 923 | target->rsize = source->rsize; |
| 924 | target->wsize = source->wsize; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 925 | target->acregmin = source->acregmin; |
| 926 | target->acregmax = source->acregmax; |
| 927 | target->acdirmin = source->acdirmin; |
| 928 | target->acdirmax = source->acdirmax; |
| 929 | target->caps = source->caps; |
David Howells | 2df5480 | 2009-09-23 14:36:39 -0400 | [diff] [blame] | 930 | target->options = source->options; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 931 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 932 | EXPORT_SYMBOL_GPL(nfs_server_copy_userdata); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 933 | |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 934 | void nfs_server_insert_lists(struct nfs_server *server) |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 935 | { |
| 936 | struct nfs_client *clp = server->nfs_client; |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 937 | struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id); |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 938 | |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 939 | spin_lock(&nn->nfs_client_lock); |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 940 | list_add_tail_rcu(&server->client_link, &clp->cl_superblocks); |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 941 | list_add_tail(&server->master_link, &nn->nfs_volume_list); |
Andy Adamson | d3b4c9d | 2011-03-01 01:34:10 +0000 | [diff] [blame] | 942 | clear_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state); |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 943 | spin_unlock(&nn->nfs_client_lock); |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 944 | |
| 945 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 946 | EXPORT_SYMBOL_GPL(nfs_server_insert_lists); |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 947 | |
| 948 | static void nfs_server_remove_lists(struct nfs_server *server) |
| 949 | { |
Andy Adamson | d3b4c9d | 2011-03-01 01:34:10 +0000 | [diff] [blame] | 950 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 4c03ae4 | 2012-02-07 00:05:11 -0500 | [diff] [blame] | 951 | struct nfs_net *nn; |
Andy Adamson | d3b4c9d | 2011-03-01 01:34:10 +0000 | [diff] [blame] | 952 | |
Trond Myklebust | 4c03ae4 | 2012-02-07 00:05:11 -0500 | [diff] [blame] | 953 | if (clp == NULL) |
| 954 | return; |
Chuck Lever | 73ea666 | 2012-05-21 22:44:50 -0400 | [diff] [blame] | 955 | nn = net_generic(clp->cl_net, nfs_net_id); |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 956 | spin_lock(&nn->nfs_client_lock); |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 957 | list_del_rcu(&server->client_link); |
Trond Myklebust | 4c03ae4 | 2012-02-07 00:05:11 -0500 | [diff] [blame] | 958 | if (list_empty(&clp->cl_superblocks)) |
Andy Adamson | d3b4c9d | 2011-03-01 01:34:10 +0000 | [diff] [blame] | 959 | set_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state); |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 960 | list_del(&server->master_link); |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 961 | spin_unlock(&nn->nfs_client_lock); |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 962 | |
| 963 | synchronize_rcu(); |
| 964 | } |
| 965 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 966 | /* |
| 967 | * Allocate and initialise a server record |
| 968 | */ |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 969 | struct nfs_server *nfs_alloc_server(void) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 970 | { |
| 971 | struct nfs_server *server; |
| 972 | |
| 973 | server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL); |
| 974 | if (!server) |
| 975 | return NULL; |
| 976 | |
| 977 | server->client = server->client_acl = ERR_PTR(-EINVAL); |
| 978 | |
| 979 | /* Zero out the NFS state stuff */ |
| 980 | INIT_LIST_HEAD(&server->client_link); |
| 981 | INIT_LIST_HEAD(&server->master_link); |
Chuck Lever | d3978bb | 2010-12-24 01:33:04 +0000 | [diff] [blame] | 982 | INIT_LIST_HEAD(&server->delegations); |
Weston Andros Adamson | 6382a44 | 2011-06-01 16:44:44 -0400 | [diff] [blame] | 983 | INIT_LIST_HEAD(&server->layouts); |
Chuck Lever | 0aaaf5c | 2011-12-06 16:13:48 -0500 | [diff] [blame] | 984 | INIT_LIST_HEAD(&server->state_owners_lru); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 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 | |
Trond Myklebust | 9157c31 | 2012-01-17 22:04:24 -0500 | [diff] [blame] | 1000 | ida_init(&server->openowner_id); |
Trond Myklebust | d2d7ce2 | 2012-01-17 22:04:25 -0500 | [diff] [blame] | 1001 | ida_init(&server->lockowner_id); |
Fred Isaman | f7e8917 | 2011-01-06 11:36:32 +0000 | [diff] [blame] | 1002 | pnfs_init_server(server); |
| 1003 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1004 | return server; |
| 1005 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 1006 | EXPORT_SYMBOL_GPL(nfs_alloc_server); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1007 | |
| 1008 | /* |
| 1009 | * Free up a server record |
| 1010 | */ |
| 1011 | void nfs_free_server(struct nfs_server *server) |
| 1012 | { |
| 1013 | dprintk("--> nfs_free_server()\n"); |
| 1014 | |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 1015 | nfs_server_remove_lists(server); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1016 | |
| 1017 | if (server->destroy != NULL) |
| 1018 | server->destroy(server); |
Trond Myklebust | 5cef338 | 2007-12-11 22:01:56 -0500 | [diff] [blame] | 1019 | |
| 1020 | if (!IS_ERR(server->client_acl)) |
| 1021 | rpc_shutdown_client(server->client_acl); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1022 | if (!IS_ERR(server->client)) |
| 1023 | rpc_shutdown_client(server->client); |
| 1024 | |
| 1025 | nfs_put_client(server->nfs_client); |
| 1026 | |
Trond Myklebust | d2d7ce2 | 2012-01-17 22:04:25 -0500 | [diff] [blame] | 1027 | ida_destroy(&server->lockowner_id); |
Trond Myklebust | 9157c31 | 2012-01-17 22:04:24 -0500 | [diff] [blame] | 1028 | ida_destroy(&server->openowner_id); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1029 | nfs_free_iostats(server->io_stats); |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 1030 | bdi_destroy(&server->backing_dev_info); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1031 | kfree(server); |
| 1032 | nfs_release_automount_timer(); |
| 1033 | dprintk("<-- nfs_free_server()\n"); |
| 1034 | } |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 1035 | EXPORT_SYMBOL_GPL(nfs_free_server); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1036 | |
| 1037 | /* |
| 1038 | * Create a version 2 or 3 volume record |
| 1039 | * - keyed on server and FSID |
| 1040 | */ |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 1041 | struct nfs_server *nfs_create_server(struct nfs_mount_info *mount_info, |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 1042 | struct nfs_subversion *nfs_mod) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1043 | { |
| 1044 | struct nfs_server *server; |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1045 | struct nfs_fattr *fattr; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1046 | int error; |
| 1047 | |
| 1048 | server = nfs_alloc_server(); |
| 1049 | if (!server) |
| 1050 | return ERR_PTR(-ENOMEM); |
| 1051 | |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1052 | error = -ENOMEM; |
| 1053 | fattr = nfs_alloc_fattr(); |
| 1054 | if (fattr == NULL) |
| 1055 | goto error; |
| 1056 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1057 | /* Get a client representation */ |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 1058 | error = nfs_init_server(server, mount_info->parsed, nfs_mod); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1059 | if (error < 0) |
| 1060 | goto error; |
| 1061 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1062 | /* Probe the root fh to retrieve its FSID */ |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 1063 | error = nfs_probe_fsinfo(server, mount_info->mntfh, fattr); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1064 | if (error < 0) |
| 1065 | goto error; |
Trond Myklebust | 54af3bb | 2007-09-28 12:27:41 -0400 | [diff] [blame] | 1066 | if (server->nfs_client->rpc_ops->version == 3) { |
| 1067 | if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN) |
| 1068 | server->namelen = NFS3_MAXNAMLEN; |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 1069 | if (!(mount_info->parsed->flags & NFS_MOUNT_NORDIRPLUS)) |
Trond Myklebust | 54af3bb | 2007-09-28 12:27:41 -0400 | [diff] [blame] | 1070 | server->caps |= NFS_CAP_READDIRPLUS; |
| 1071 | } else { |
| 1072 | if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN) |
| 1073 | server->namelen = NFS2_MAXNAMLEN; |
| 1074 | } |
| 1075 | |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1076 | if (!(fattr->valid & NFS_ATTR_FATTR)) { |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 1077 | error = nfs_mod->rpc_ops->getattr(server, mount_info->mntfh, fattr, NULL); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1078 | if (error < 0) { |
| 1079 | dprintk("nfs_create_server: getattr error = %d\n", -error); |
| 1080 | goto error; |
| 1081 | } |
| 1082 | } |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1083 | memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid)); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1084 | |
David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1085 | dprintk("Server FSID: %llx:%llx\n", |
| 1086 | (unsigned long long) server->fsid.major, |
| 1087 | (unsigned long long) server->fsid.minor); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1088 | |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 1089 | nfs_server_insert_lists(server); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1090 | server->mount_time = jiffies; |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1091 | nfs_free_fattr(fattr); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1092 | return server; |
| 1093 | |
| 1094 | error: |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1095 | nfs_free_fattr(fattr); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1096 | nfs_free_server(server); |
| 1097 | return ERR_PTR(error); |
| 1098 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 1099 | EXPORT_SYMBOL_GPL(nfs_create_server); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1100 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1101 | /* |
| 1102 | * Clone an NFS2, NFS3 or NFS4 server record |
| 1103 | */ |
| 1104 | struct nfs_server *nfs_clone_server(struct nfs_server *source, |
| 1105 | struct nfs_fh *fh, |
Bryan Schumaker | 7e6eb68 | 2012-04-27 13:27:42 -0400 | [diff] [blame] | 1106 | struct nfs_fattr *fattr, |
| 1107 | rpc_authflavor_t flavor) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1108 | { |
| 1109 | struct nfs_server *server; |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1110 | struct nfs_fattr *fattr_fsinfo; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1111 | int error; |
| 1112 | |
| 1113 | dprintk("--> nfs_clone_server(,%llx:%llx,)\n", |
David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1114 | (unsigned long long) fattr->fsid.major, |
| 1115 | (unsigned long long) fattr->fsid.minor); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1116 | |
| 1117 | server = nfs_alloc_server(); |
| 1118 | if (!server) |
| 1119 | return ERR_PTR(-ENOMEM); |
| 1120 | |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1121 | error = -ENOMEM; |
| 1122 | fattr_fsinfo = nfs_alloc_fattr(); |
| 1123 | if (fattr_fsinfo == NULL) |
| 1124 | goto out_free_server; |
| 1125 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1126 | /* Copy data from the source */ |
| 1127 | server->nfs_client = source->nfs_client; |
Chuck Lever | 0aaaf5c | 2011-12-06 16:13:48 -0500 | [diff] [blame] | 1128 | server->destroy = source->destroy; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1129 | atomic_inc(&server->nfs_client->cl_count); |
| 1130 | nfs_server_copy_userdata(server, source); |
| 1131 | |
| 1132 | server->fsid = fattr->fsid; |
| 1133 | |
Trond Myklebust | 3317023 | 2007-12-20 16:03:59 -0500 | [diff] [blame] | 1134 | error = nfs_init_server_rpcclient(server, |
| 1135 | source->client->cl_timeout, |
Bryan Schumaker | 7e6eb68 | 2012-04-27 13:27:42 -0400 | [diff] [blame] | 1136 | flavor); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1137 | if (error < 0) |
| 1138 | goto out_free_server; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1139 | |
| 1140 | /* probe the filesystem info for this server filesystem */ |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1141 | error = nfs_probe_fsinfo(server, fh, fattr_fsinfo); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1142 | if (error < 0) |
| 1143 | goto out_free_server; |
| 1144 | |
Trond Myklebust | 54af3bb | 2007-09-28 12:27:41 -0400 | [diff] [blame] | 1145 | if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN) |
| 1146 | server->namelen = NFS4_MAXNAMLEN; |
| 1147 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1148 | dprintk("Cloned FSID: %llx:%llx\n", |
David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1149 | (unsigned long long) server->fsid.major, |
| 1150 | (unsigned long long) server->fsid.minor); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1151 | |
| 1152 | error = nfs_start_lockd(server); |
| 1153 | if (error < 0) |
| 1154 | goto out_free_server; |
| 1155 | |
Chuck Lever | fca5238 | 2010-12-24 01:32:32 +0000 | [diff] [blame] | 1156 | nfs_server_insert_lists(server); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1157 | server->mount_time = jiffies; |
| 1158 | |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1159 | nfs_free_fattr(fattr_fsinfo); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1160 | dprintk("<-- nfs_clone_server() = %p\n", server); |
| 1161 | return server; |
| 1162 | |
| 1163 | out_free_server: |
Trond Myklebust | fbca779 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 1164 | nfs_free_fattr(fattr_fsinfo); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1165 | nfs_free_server(server); |
| 1166 | dprintk("<-- nfs_clone_server() = error %d\n", error); |
| 1167 | return ERR_PTR(error); |
| 1168 | } |
Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 1169 | EXPORT_SYMBOL_GPL(nfs_clone_server); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1170 | |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1171 | void nfs_clients_init(struct net *net) |
| 1172 | { |
| 1173 | struct nfs_net *nn = net_generic(net, nfs_net_id); |
| 1174 | |
| 1175 | INIT_LIST_HEAD(&nn->nfs_client_list); |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1176 | INIT_LIST_HEAD(&nn->nfs_volume_list); |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 1177 | #if IS_ENABLED(CONFIG_NFS_V4) |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 1178 | idr_init(&nn->cb_ident_idr); |
| 1179 | #endif |
Trond Myklebust | 4c03ae4 | 2012-02-07 00:05:11 -0500 | [diff] [blame] | 1180 | spin_lock_init(&nn->nfs_client_lock); |
Chuck Lever | f092075 | 2012-05-21 22:45:41 -0400 | [diff] [blame] | 1181 | nn->boot_time = CURRENT_TIME; |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1182 | } |
| 1183 | |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1184 | #ifdef CONFIG_PROC_FS |
| 1185 | static struct proc_dir_entry *proc_fs_nfs; |
| 1186 | |
| 1187 | static int nfs_server_list_open(struct inode *inode, struct file *file); |
| 1188 | static void *nfs_server_list_start(struct seq_file *p, loff_t *pos); |
| 1189 | static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos); |
| 1190 | static void nfs_server_list_stop(struct seq_file *p, void *v); |
| 1191 | static int nfs_server_list_show(struct seq_file *m, void *v); |
| 1192 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 1193 | static const struct seq_operations nfs_server_list_ops = { |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1194 | .start = nfs_server_list_start, |
| 1195 | .next = nfs_server_list_next, |
| 1196 | .stop = nfs_server_list_stop, |
| 1197 | .show = nfs_server_list_show, |
| 1198 | }; |
| 1199 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1200 | static const struct file_operations nfs_server_list_fops = { |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1201 | .open = nfs_server_list_open, |
| 1202 | .read = seq_read, |
| 1203 | .llseek = seq_lseek, |
| 1204 | .release = seq_release, |
Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1205 | .owner = THIS_MODULE, |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1206 | }; |
| 1207 | |
| 1208 | static int nfs_volume_list_open(struct inode *inode, struct file *file); |
| 1209 | static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos); |
| 1210 | static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos); |
| 1211 | static void nfs_volume_list_stop(struct seq_file *p, void *v); |
| 1212 | static int nfs_volume_list_show(struct seq_file *m, void *v); |
| 1213 | |
James Morris | 88e9d34 | 2009-09-22 16:43:43 -0700 | [diff] [blame] | 1214 | static const struct seq_operations nfs_volume_list_ops = { |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1215 | .start = nfs_volume_list_start, |
| 1216 | .next = nfs_volume_list_next, |
| 1217 | .stop = nfs_volume_list_stop, |
| 1218 | .show = nfs_volume_list_show, |
| 1219 | }; |
| 1220 | |
Arjan van de Ven | 00977a5 | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 1221 | static const struct file_operations nfs_volume_list_fops = { |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1222 | .open = nfs_volume_list_open, |
| 1223 | .read = seq_read, |
| 1224 | .llseek = seq_lseek, |
| 1225 | .release = seq_release, |
Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1226 | .owner = THIS_MODULE, |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1227 | }; |
| 1228 | |
| 1229 | /* |
| 1230 | * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which |
| 1231 | * we're dealing |
| 1232 | */ |
| 1233 | static int nfs_server_list_open(struct inode *inode, struct file *file) |
| 1234 | { |
| 1235 | struct seq_file *m; |
| 1236 | int ret; |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1237 | struct pid_namespace *pid_ns = file->f_dentry->d_sb->s_fs_info; |
| 1238 | struct net *net = pid_ns->child_reaper->nsproxy->net_ns; |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1239 | |
| 1240 | ret = seq_open(file, &nfs_server_list_ops); |
| 1241 | if (ret < 0) |
| 1242 | return ret; |
| 1243 | |
| 1244 | m = file->private_data; |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1245 | m->private = net; |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1246 | |
| 1247 | return 0; |
| 1248 | } |
| 1249 | |
| 1250 | /* |
| 1251 | * set up the iterator to start reading from the server list and return the first item |
| 1252 | */ |
| 1253 | static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos) |
| 1254 | { |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1255 | struct nfs_net *nn = net_generic(m->private, nfs_net_id); |
| 1256 | |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1257 | /* lock the list against modification */ |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 1258 | spin_lock(&nn->nfs_client_lock); |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1259 | return seq_list_start_head(&nn->nfs_client_list, *_pos); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1260 | } |
| 1261 | |
| 1262 | /* |
| 1263 | * move to next server |
| 1264 | */ |
| 1265 | static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos) |
| 1266 | { |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1267 | struct nfs_net *nn = net_generic(p->private, nfs_net_id); |
| 1268 | |
| 1269 | return seq_list_next(v, &nn->nfs_client_list, pos); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1270 | } |
| 1271 | |
| 1272 | /* |
| 1273 | * clean up after reading from the transports list |
| 1274 | */ |
| 1275 | static void nfs_server_list_stop(struct seq_file *p, void *v) |
| 1276 | { |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 1277 | struct nfs_net *nn = net_generic(p->private, nfs_net_id); |
| 1278 | |
| 1279 | spin_unlock(&nn->nfs_client_lock); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1280 | } |
| 1281 | |
| 1282 | /* |
| 1283 | * display a header line followed by a load of call lines |
| 1284 | */ |
| 1285 | static int nfs_server_list_show(struct seq_file *m, void *v) |
| 1286 | { |
| 1287 | struct nfs_client *clp; |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1288 | struct nfs_net *nn = net_generic(m->private, nfs_net_id); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1289 | |
| 1290 | /* display header on line 1 */ |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 1291 | if (v == &nn->nfs_client_list) { |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1292 | seq_puts(m, "NV SERVER PORT USE HOSTNAME\n"); |
| 1293 | return 0; |
| 1294 | } |
| 1295 | |
| 1296 | /* display one transport per line on subsequent lines */ |
| 1297 | clp = list_entry(v, struct nfs_client, cl_share_link); |
| 1298 | |
Malahal Naineni | 940aab4 | 2011-09-20 17:27:14 -0700 | [diff] [blame] | 1299 | /* Check if the client is initialized */ |
| 1300 | if (clp->cl_cons_state != NFS_CS_READY) |
| 1301 | return 0; |
| 1302 | |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 1303 | rcu_read_lock(); |
Chuck Lever | 5d8515c | 2007-12-10 14:57:16 -0500 | [diff] [blame] | 1304 | seq_printf(m, "v%u %s %s %3d %s\n", |
Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 1305 | clp->rpc_ops->version, |
Chuck Lever | 5d8515c | 2007-12-10 14:57:16 -0500 | [diff] [blame] | 1306 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR), |
| 1307 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT), |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1308 | atomic_read(&clp->cl_count), |
| 1309 | clp->cl_hostname); |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 1310 | rcu_read_unlock(); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1311 | |
| 1312 | return 0; |
| 1313 | } |
| 1314 | |
| 1315 | /* |
| 1316 | * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes |
| 1317 | */ |
| 1318 | static int nfs_volume_list_open(struct inode *inode, struct file *file) |
| 1319 | { |
| 1320 | struct seq_file *m; |
| 1321 | int ret; |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1322 | struct pid_namespace *pid_ns = file->f_dentry->d_sb->s_fs_info; |
| 1323 | struct net *net = pid_ns->child_reaper->nsproxy->net_ns; |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1324 | |
| 1325 | ret = seq_open(file, &nfs_volume_list_ops); |
| 1326 | if (ret < 0) |
| 1327 | return ret; |
| 1328 | |
| 1329 | m = file->private_data; |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1330 | m->private = net; |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1331 | |
| 1332 | return 0; |
| 1333 | } |
| 1334 | |
| 1335 | /* |
| 1336 | * set up the iterator to start reading from the volume list and return the first item |
| 1337 | */ |
| 1338 | static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos) |
| 1339 | { |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1340 | struct nfs_net *nn = net_generic(m->private, nfs_net_id); |
| 1341 | |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1342 | /* lock the list against modification */ |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 1343 | spin_lock(&nn->nfs_client_lock); |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1344 | return seq_list_start_head(&nn->nfs_volume_list, *_pos); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | /* |
| 1348 | * move to next volume |
| 1349 | */ |
| 1350 | static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos) |
| 1351 | { |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1352 | struct nfs_net *nn = net_generic(p->private, nfs_net_id); |
| 1353 | |
| 1354 | return seq_list_next(v, &nn->nfs_volume_list, pos); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | /* |
| 1358 | * clean up after reading from the transports list |
| 1359 | */ |
| 1360 | static void nfs_volume_list_stop(struct seq_file *p, void *v) |
| 1361 | { |
Stanislav Kinsbursky | dc03085 | 2012-01-23 17:26:31 +0000 | [diff] [blame] | 1362 | struct nfs_net *nn = net_generic(p->private, nfs_net_id); |
| 1363 | |
| 1364 | spin_unlock(&nn->nfs_client_lock); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1365 | } |
| 1366 | |
| 1367 | /* |
| 1368 | * display a header line followed by a load of call lines |
| 1369 | */ |
| 1370 | static int nfs_volume_list_show(struct seq_file *m, void *v) |
| 1371 | { |
| 1372 | struct nfs_server *server; |
| 1373 | struct nfs_client *clp; |
| 1374 | char dev[8], fsid[17]; |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1375 | struct nfs_net *nn = net_generic(m->private, nfs_net_id); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1376 | |
| 1377 | /* display header on line 1 */ |
Stanislav Kinsbursky | c25d32b | 2012-01-23 17:26:14 +0000 | [diff] [blame] | 1378 | if (v == &nn->nfs_volume_list) { |
David Howells | 5d1acff | 2009-04-03 16:42:47 +0100 | [diff] [blame] | 1379 | seq_puts(m, "NV SERVER PORT DEV FSID FSC\n"); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1380 | return 0; |
| 1381 | } |
| 1382 | /* display one transport per line on subsequent lines */ |
| 1383 | server = list_entry(v, struct nfs_server, master_link); |
| 1384 | clp = server->nfs_client; |
| 1385 | |
| 1386 | snprintf(dev, 8, "%u:%u", |
| 1387 | MAJOR(server->s_dev), MINOR(server->s_dev)); |
| 1388 | |
| 1389 | snprintf(fsid, 17, "%llx:%llx", |
David Howells | 6daabf1 | 2006-08-24 15:44:16 -0400 | [diff] [blame] | 1390 | (unsigned long long) server->fsid.major, |
| 1391 | (unsigned long long) server->fsid.minor); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1392 | |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 1393 | rcu_read_lock(); |
David Howells | 5d1acff | 2009-04-03 16:42:47 +0100 | [diff] [blame] | 1394 | seq_printf(m, "v%u %s %s %-7s %-17s %s\n", |
Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 1395 | clp->rpc_ops->version, |
Chuck Lever | 5d8515c | 2007-12-10 14:57:16 -0500 | [diff] [blame] | 1396 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR), |
| 1397 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT), |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1398 | dev, |
David Howells | 5d1acff | 2009-04-03 16:42:47 +0100 | [diff] [blame] | 1399 | fsid, |
| 1400 | nfs_server_fscache_state(server)); |
Trond Myklebust | 2446ab6 | 2012-03-01 17:00:56 -0500 | [diff] [blame] | 1401 | rcu_read_unlock(); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1402 | |
| 1403 | return 0; |
| 1404 | } |
| 1405 | |
| 1406 | /* |
| 1407 | * initialise the /proc/fs/nfsfs/ directory |
| 1408 | */ |
| 1409 | int __init nfs_fs_proc_init(void) |
| 1410 | { |
| 1411 | struct proc_dir_entry *p; |
| 1412 | |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 1413 | proc_fs_nfs = proc_mkdir("fs/nfsfs", NULL); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1414 | if (!proc_fs_nfs) |
| 1415 | goto error_0; |
| 1416 | |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1417 | /* a file of servers with which we're dealing */ |
Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1418 | p = proc_create("servers", S_IFREG|S_IRUGO, |
| 1419 | proc_fs_nfs, &nfs_server_list_fops); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1420 | if (!p) |
| 1421 | goto error_1; |
| 1422 | |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1423 | /* a file of volumes that we have mounted */ |
Denis V. Lunev | 34b3723 | 2008-04-29 01:02:07 -0700 | [diff] [blame] | 1424 | p = proc_create("volumes", S_IFREG|S_IRUGO, |
| 1425 | proc_fs_nfs, &nfs_volume_list_fops); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1426 | if (!p) |
| 1427 | goto error_2; |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1428 | return 0; |
| 1429 | |
| 1430 | error_2: |
| 1431 | remove_proc_entry("servers", proc_fs_nfs); |
| 1432 | error_1: |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 1433 | remove_proc_entry("fs/nfsfs", NULL); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1434 | error_0: |
| 1435 | return -ENOMEM; |
| 1436 | } |
| 1437 | |
| 1438 | /* |
| 1439 | * clean up the /proc/fs/nfsfs/ directory |
| 1440 | */ |
| 1441 | void nfs_fs_proc_exit(void) |
| 1442 | { |
| 1443 | remove_proc_entry("volumes", proc_fs_nfs); |
| 1444 | remove_proc_entry("servers", proc_fs_nfs); |
Alexey Dobriyan | 36a5aeb | 2008-04-29 01:01:42 -0700 | [diff] [blame] | 1445 | remove_proc_entry("fs/nfsfs", NULL); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 1446 | } |
| 1447 | |
| 1448 | #endif /* CONFIG_PROC_FS */ |