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