blob: ee5ddbd36088e66d21b2900fddb9c7ded0d17f9a [file] [log] [blame]
David Howells24c8dbb2006-08-22 20:06:10 -04001/* 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 Howells24c8dbb2006-08-22 20:06:10 -040013#include <linux/module.h>
14#include <linux/init.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040015#include <linux/sched.h>
David Howells24c8dbb2006-08-22 20:06:10 -040016#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>
Anna Schumakerd8efa4e2015-07-13 14:01:28 -040023#include <linux/sunrpc/addr.h>
David Howells24c8dbb2006-08-22 20:06:10 -040024#include <linux/sunrpc/clnt.h>
25#include <linux/sunrpc/stats.h>
26#include <linux/sunrpc/metrics.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040027#include <linux/sunrpc/xprtsock.h>
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040028#include <linux/sunrpc/xprtrdma.h>
David Howells24c8dbb2006-08-22 20:06:10 -040029#include <linux/nfs_fs.h>
30#include <linux/nfs_mount.h>
31#include <linux/nfs4_mount.h>
32#include <linux/lockd/bind.h>
David Howells24c8dbb2006-08-22 20:06:10 -040033#include <linux/seq_file.h>
34#include <linux/mount.h>
David Howells24c8dbb2006-08-22 20:06:10 -040035#include <linux/vfs.h>
36#include <linux/inet.h>
Trond Myklebust3b0d3f92008-01-03 13:28:58 -050037#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Al Viro40401532012-02-13 03:58:52 +000039#include <linux/idr.h>
Trond Myklebust3b0d3f92008-01-03 13:28:58 -050040#include <net/ipv6.h>
David Howells24c8dbb2006-08-22 20:06:10 -040041#include <linux/nfs_xdr.h>
Andy Adamson0b5b7ae2009-04-01 09:23:15 -040042#include <linux/sunrpc/bc_xprt.h>
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +000043#include <linux/nsproxy.h>
44#include <linux/pid_namespace.h>
David Howells24c8dbb2006-08-22 20:06:10 -040045
David Howells24c8dbb2006-08-22 20:06:10 -040046
47#include "nfs4_fs.h"
48#include "callback.h"
49#include "delegation.h"
50#include "iostat.h"
51#include "internal.h"
David Howells14727282009-04-03 16:42:42 +010052#include "fscache.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040053#include "pnfs.h"
Bryan Schumakerab7017a2012-07-30 16:05:16 -040054#include "nfs.h"
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +000055#include "netns.h"
David Howells24c8dbb2006-08-22 20:06:10 -040056
57#define NFSDBG_FACILITY NFSDBG_CLIENT
58
David Howells24c8dbb2006-08-22 20:06:10 -040059static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq);
Bryan Schumakerab7017a2012-07-30 16:05:16 -040060static DEFINE_SPINLOCK(nfs_version_lock);
61static DEFINE_MUTEX(nfs_version_mutex);
62static LIST_HEAD(nfs_versions);
David Howells24c8dbb2006-08-22 20:06:10 -040063
64/*
David Howells5006a762006-08-22 20:06:12 -040065 * RPC cruft for NFS
66 */
Trond Myklebusta613fa12012-01-20 13:53:56 -050067static const struct rpc_version *nfs_version[5] = {
Bryan Schumakerab7017a2012-07-30 16:05:16 -040068 [2] = NULL,
69 [3] = NULL,
70 [4] = NULL,
David Howells5006a762006-08-22 20:06:12 -040071};
72
Trond Myklebusta613fa12012-01-20 13:53:56 -050073const struct rpc_program nfs_program = {
David Howells5006a762006-08-22 20:06:12 -040074 .name = "nfs",
75 .number = NFS_PROGRAM,
76 .nrvers = ARRAY_SIZE(nfs_version),
77 .version = nfs_version,
78 .stats = &nfs_rpcstat,
Jim Reesfe0a9b72011-07-30 20:52:42 -040079 .pipe_dir_name = NFS_PIPE_DIRNAME,
David Howells5006a762006-08-22 20:06:12 -040080};
81
82struct rpc_stat nfs_rpcstat = {
83 .program = &nfs_program
84};
85
Bryan Schumakerab7017a2012-07-30 16:05:16 -040086static struct nfs_subversion *find_nfs_version(unsigned int version)
87{
88 struct nfs_subversion *nfs;
89 spin_lock(&nfs_version_lock);
90
91 list_for_each_entry(nfs, &nfs_versions, list) {
92 if (nfs->rpc_ops->version == version) {
93 spin_unlock(&nfs_version_lock);
94 return nfs;
95 }
Yanchuan Nianee34e132012-09-10 08:40:16 +080096 }
Bryan Schumakerab7017a2012-07-30 16:05:16 -040097
98 spin_unlock(&nfs_version_lock);
Yanchuan Nianee34e132012-09-10 08:40:16 +080099 return ERR_PTR(-EPROTONOSUPPORT);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400100}
101
102struct nfs_subversion *get_nfs_version(unsigned int version)
103{
104 struct nfs_subversion *nfs = find_nfs_version(version);
105
106 if (IS_ERR(nfs)) {
107 mutex_lock(&nfs_version_mutex);
bjschuma@gmail.com1ae811e2012-08-08 13:57:06 -0400108 request_module("nfsv%d", version);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400109 nfs = find_nfs_version(version);
110 mutex_unlock(&nfs_version_mutex);
111 }
112
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400113 if (!IS_ERR(nfs) && !try_module_get(nfs->owner))
114 return ERR_PTR(-EAGAIN);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400115 return nfs;
116}
117
118void put_nfs_version(struct nfs_subversion *nfs)
119{
120 module_put(nfs->owner);
121}
122
123void register_nfs_version(struct nfs_subversion *nfs)
124{
125 spin_lock(&nfs_version_lock);
126
127 list_add(&nfs->list, &nfs_versions);
128 nfs_version[nfs->rpc_ops->version] = nfs->rpc_vers;
129
130 spin_unlock(&nfs_version_lock);
131}
132EXPORT_SYMBOL_GPL(register_nfs_version);
133
134void unregister_nfs_version(struct nfs_subversion *nfs)
135{
136 spin_lock(&nfs_version_lock);
137
138 nfs_version[nfs->rpc_ops->version] = NULL;
139 list_del(&nfs->list);
140
141 spin_unlock(&nfs_version_lock);
142}
143EXPORT_SYMBOL_GPL(unregister_nfs_version);
144
145/*
David Howells24c8dbb2006-08-22 20:06:10 -0400146 * Allocate a shared client record
147 *
148 * Since these are allocated/deallocated very rarely, we don't
149 * bother putting them in a slab cache...
150 */
Bryan Schumaker6663ee72012-06-20 15:53:46 -0400151struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400152{
153 struct nfs_client *clp;
Trond Myklebust7c67db32008-04-07 20:50:11 -0400154 struct rpc_cred *cred;
Chuck Levera21bdd92009-06-17 18:02:10 -0700155 int err = -ENOMEM;
David Howells24c8dbb2006-08-22 20:06:10 -0400156
157 if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL)
158 goto error_0;
159
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400160 clp->cl_nfs_mod = cl_init->nfs_mod;
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400161 if (!try_module_get(clp->cl_nfs_mod->owner))
162 goto error_dealloc;
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400163
164 clp->rpc_ops = clp->cl_nfs_mod->rpc_ops;
Trond Myklebust40c553192007-12-14 14:56:07 -0500165
David Howells24c8dbb2006-08-22 20:06:10 -0400166 atomic_set(&clp->cl_count, 1);
167 clp->cl_cons_state = NFS_CS_INITING;
168
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500169 memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen);
170 clp->cl_addrlen = cl_init->addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -0400171
Trond Myklebust3a498022007-12-14 14:56:04 -0500172 if (cl_init->hostname) {
Chuck Levera21bdd92009-06-17 18:02:10 -0700173 err = -ENOMEM;
Trond Myklebust3a498022007-12-14 14:56:04 -0500174 clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL);
David Howells24c8dbb2006-08-22 20:06:10 -0400175 if (!clp->cl_hostname)
Benny Halevy71468512009-04-01 09:22:56 -0400176 goto error_cleanup;
David Howells24c8dbb2006-08-22 20:06:10 -0400177 }
178
179 INIT_LIST_HEAD(&clp->cl_superblocks);
180 clp->cl_rpcclient = ERR_PTR(-EINVAL);
181
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500182 clp->cl_proto = cl_init->proto;
Chuck Lever73ea6662012-05-21 22:44:50 -0400183 clp->cl_net = get_net(cl_init->net);
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500184
Trond Myklebust68c97152012-01-03 13:22:46 -0500185 cred = rpc_lookup_machine_cred("*");
Trond Myklebust7c67db32008-04-07 20:50:11 -0400186 if (!IS_ERR(cred))
187 clp->cl_machine_cred = cred;
David Howells14727282009-04-03 16:42:42 +0100188 nfs_fscache_get_client_cookie(clp);
189
David Howells24c8dbb2006-08-22 20:06:10 -0400190 return clp;
191
Benny Halevy71468512009-04-01 09:22:56 -0400192error_cleanup:
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400193 put_nfs_version(clp->cl_nfs_mod);
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400194error_dealloc:
David Howells24c8dbb2006-08-22 20:06:10 -0400195 kfree(clp);
196error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700197 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400198}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400199EXPORT_SYMBOL_GPL(nfs_alloc_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400200
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400201#if IS_ENABLED(CONFIG_NFS_V4)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000202void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000203{
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000204 struct nfs_net *nn = net_generic(net, nfs_net_id);
205
206 idr_destroy(&nn->cb_ident_idr);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000207}
208
209/* nfs_client_lock held */
210static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
211{
Chuck Lever73ea6662012-05-21 22:44:50 -0400212 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000213
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000214 if (clp->cl_cb_ident)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000215 idr_remove(&nn->cb_ident_idr, clp->cl_cb_ident);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000216}
217
Fred Isamanf7e89172011-01-06 11:36:32 +0000218static void pnfs_init_server(struct nfs_server *server)
219{
220 rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC");
Benjamin Coddington7d6ddf82017-04-11 12:50:10 -0400221 rpc_init_wait_queue(&server->uoc_rpcwaitq, "NFS UOC");
Fred Isamanf7e89172011-01-06 11:36:32 +0000222}
223
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800224#else
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000225void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000226{
227}
228
229static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
230{
231}
Fred Isamanf7e89172011-01-06 11:36:32 +0000232
233static void pnfs_init_server(struct nfs_server *server)
234{
235}
236
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800237#endif /* CONFIG_NFS_V4 */
238
239/*
David Howells24c8dbb2006-08-22 20:06:10 -0400240 * Destroy a shared client record
241 */
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400242void nfs_free_client(struct nfs_client *clp)
David Howells24c8dbb2006-08-22 20:06:10 -0400243{
David Howells14727282009-04-03 16:42:42 +0100244 nfs_fscache_release_client_cookie(clp);
245
David Howells24c8dbb2006-08-22 20:06:10 -0400246 /* -EIO all pending I/O */
247 if (!IS_ERR(clp->cl_rpcclient))
248 rpc_shutdown_client(clp->cl_rpcclient);
249
Trond Myklebust7c67db32008-04-07 20:50:11 -0400250 if (clp->cl_machine_cred != NULL)
251 put_rpccred(clp->cl_machine_cred);
252
Chuck Lever73ea6662012-05-21 22:44:50 -0400253 put_net(clp->cl_net);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400254 put_nfs_version(clp->cl_nfs_mod);
David Howells24c8dbb2006-08-22 20:06:10 -0400255 kfree(clp->cl_hostname);
Jeff Laytonf11b2a12014-06-21 20:52:17 -0400256 kfree(clp->cl_acceptor);
David Howells24c8dbb2006-08-22 20:06:10 -0400257 kfree(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400258}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400259EXPORT_SYMBOL_GPL(nfs_free_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400260
261/*
262 * Release a reference to a shared client record
263 */
264void nfs_put_client(struct nfs_client *clp)
265{
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000266 struct nfs_net *nn;
267
David Howells27ba8512006-07-30 14:40:56 -0400268 if (!clp)
269 return;
270
Chuck Lever73ea6662012-05-21 22:44:50 -0400271 nn = net_generic(clp->cl_net, nfs_net_id);
David Howells24c8dbb2006-08-22 20:06:10 -0400272
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000273 if (atomic_dec_and_lock(&clp->cl_count, &nn->nfs_client_lock)) {
David Howells24c8dbb2006-08-22 20:06:10 -0400274 list_del(&clp->cl_share_link);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000275 nfs_cb_idr_remove_locked(clp);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000276 spin_unlock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400277
Trond Myklebust1fea73a82012-10-15 11:24:57 -0400278 WARN_ON_ONCE(!list_empty(&clp->cl_superblocks));
David Howells24c8dbb2006-08-22 20:06:10 -0400279
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400280 clp->rpc_ops->free_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400281 }
282}
Andy Adamson16b374c2010-10-20 00:18:04 -0400283EXPORT_SYMBOL_GPL(nfs_put_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400284
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500285/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500286 * Find an nfs_client on the list that matches the initialisation data
287 * that is supplied.
288 */
289static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400290{
291 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400292 const struct sockaddr *sap = data->addr;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000293 struct nfs_net *nn = net_generic(data->net, nfs_net_id);
David Howells24c8dbb2006-08-22 20:06:10 -0400294
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000295 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400296 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700297 /* Don't match clients that failed to initialise properly */
298 if (clp->cl_cons_state < 0)
299 continue;
300
David Howells24c8dbb2006-08-22 20:06:10 -0400301 /* Different NFS versions cannot share the same nfs_client */
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400302 if (clp->rpc_ops != data->nfs_mod->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400303 continue;
304
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500305 if (clp->cl_proto != data->proto)
306 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400307 /* Match nfsv4 minorversion */
308 if (clp->cl_minorversion != data->minorversion)
309 continue;
Trond Myklebustc81468a2007-12-14 14:56:05 -0500310 /* Match the full socket address */
Anna Schumakerd8efa4e2015-07-13 14:01:28 -0400311 if (!rpc_cmp_addr_port(sap, clap))
Andy Adamson04ea1b32016-09-09 09:22:27 -0400312 /* Match all xprt_switch full socket addresses */
Petr Vandrovec8ef32952016-11-07 12:11:29 -0800313 if (IS_ERR(clp->cl_rpcclient) ||
314 !rpc_clnt_xprt_switch_has_addr(clp->cl_rpcclient,
Andy Adamson04ea1b32016-09-09 09:22:27 -0400315 sap))
316 continue;
David Howells24c8dbb2006-08-22 20:06:10 -0400317
Trond Myklebustc81468a2007-12-14 14:56:05 -0500318 atomic_inc(&clp->cl_count);
319 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400320 }
David Howells24c8dbb2006-08-22 20:06:10 -0400321 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400322}
323
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500324/*
325 * Return true if @clp is done initializing, false if still working on it.
326 *
327 * Use nfs_client_init_status to check if it was successful.
328 */
329bool nfs_client_init_is_complete(const struct nfs_client *clp)
Trond Myklebust4697bd52012-05-23 13:24:36 -0400330{
Trond Myklebust48d66b92015-03-03 20:28:59 -0500331 return clp->cl_cons_state <= NFS_CS_READY;
Trond Myklebust4697bd52012-05-23 13:24:36 -0400332}
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500333EXPORT_SYMBOL_GPL(nfs_client_init_is_complete);
334
335/*
336 * Return 0 if @clp was successfully initialized, -errno otherwise.
337 *
338 * This must be called *after* nfs_client_init_is_complete() returns true,
339 * otherwise it will pop WARN_ON_ONCE and return -EINVAL
340 */
341int nfs_client_init_status(const struct nfs_client *clp)
342{
343 /* called without checking nfs_client_init_is_complete */
344 if (clp->cl_cons_state > NFS_CS_READY) {
345 WARN_ON_ONCE(1);
346 return -EINVAL;
347 }
348 return clp->cl_cons_state;
349}
350EXPORT_SYMBOL_GPL(nfs_client_init_status);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400351
352int nfs_wait_client_init_complete(const struct nfs_client *clp)
353{
354 return wait_event_killable(nfs_client_active_wq,
355 nfs_client_init_is_complete(clp));
356}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400357EXPORT_SYMBOL_GPL(nfs_wait_client_init_complete);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400358
David Howells24c8dbb2006-08-22 20:06:10 -0400359/*
Chuck Leverf4117032012-05-21 22:45:50 -0400360 * Found an existing client. Make sure it's ready before returning.
361 */
362static struct nfs_client *
363nfs_found_client(const struct nfs_client_initdata *cl_init,
364 struct nfs_client *clp)
365{
366 int error;
367
Trond Myklebust4697bd52012-05-23 13:24:36 -0400368 error = nfs_wait_client_init_complete(clp);
Chuck Leverf4117032012-05-21 22:45:50 -0400369 if (error < 0) {
370 nfs_put_client(clp);
371 return ERR_PTR(-ERESTARTSYS);
372 }
373
374 if (clp->cl_cons_state < NFS_CS_READY) {
375 error = clp->cl_cons_state;
376 nfs_put_client(clp);
377 return ERR_PTR(error);
378 }
379
Trond Myklebust54ac4712012-05-23 13:26:10 -0400380 smp_rmb();
Chuck Leverf4117032012-05-21 22:45:50 -0400381 return clp;
382}
383
384/*
David Howells24c8dbb2006-08-22 20:06:10 -0400385 * Look up a client by IP address and protocol version
386 * - creates a new record if one doesn't yet exist
387 */
Anna Schumaker7d38de32016-11-17 15:15:55 -0500388struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400389{
390 struct nfs_client *clp, *new = NULL;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000391 struct nfs_net *nn = net_generic(cl_init->net, nfs_net_id);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400392 const struct nfs_rpc_ops *rpc_ops = cl_init->nfs_mod->rpc_ops;
David Howells24c8dbb2006-08-22 20:06:10 -0400393
Peng Tao31434f42014-07-08 11:45:48 +0800394 if (cl_init->hostname == NULL) {
395 WARN_ON(1);
396 return NULL;
397 }
398
David Howells24c8dbb2006-08-22 20:06:10 -0400399 /* see if the client already exists */
400 do {
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000401 spin_lock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400402
Trond Myklebustc81468a2007-12-14 14:56:05 -0500403 clp = nfs_match_client(cl_init);
Chuck Leverf4117032012-05-21 22:45:50 -0400404 if (clp) {
405 spin_unlock(&nn->nfs_client_lock);
406 if (new)
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400407 new->rpc_ops->free_client(new);
Chuck Leverf4117032012-05-21 22:45:50 -0400408 return nfs_found_client(cl_init, clp);
409 }
Chuck Lever8cab4c32012-05-21 22:45:59 -0400410 if (new) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400411 list_add_tail(&new->cl_share_link,
412 &nn->nfs_client_list);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400413 spin_unlock(&nn->nfs_client_lock);
Chuck Lever4bf590e2012-05-21 22:46:07 -0400414 new->cl_flags = cl_init->init_flags;
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400415 return rpc_ops->init_client(new, cl_init);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400416 }
David Howells24c8dbb2006-08-22 20:06:10 -0400417
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000418 spin_unlock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400419
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400420 new = rpc_ops->alloc_client(cl_init);
Chuck Levera21bdd92009-06-17 18:02:10 -0700421 } while (!IS_ERR(new));
David Howells24c8dbb2006-08-22 20:06:10 -0400422
Chuck Levera21bdd92009-06-17 18:02:10 -0700423 return new;
David Howells24c8dbb2006-08-22 20:06:10 -0400424}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400425EXPORT_SYMBOL_GPL(nfs_get_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400426
427/*
428 * Mark a server as ready or failed
429 */
Andy Adamson76db6d92009-04-01 09:22:38 -0400430void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400431{
Trond Myklebust54ac4712012-05-23 13:26:10 -0400432 smp_wmb();
David Howells24c8dbb2006-08-22 20:06:10 -0400433 clp->cl_cons_state = state;
434 wake_up_all(&nfs_client_active_wq);
435}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400436EXPORT_SYMBOL_GPL(nfs_mark_client_ready);
David Howells5006a762006-08-22 20:06:12 -0400437
438/*
439 * Initialise the timeout values for a connection
440 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400441void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
Trond Myklebusta956bed2016-08-16 10:26:47 -0400442 int timeo, int retrans)
David Howells5006a762006-08-22 20:06:12 -0400443{
444 to->to_initval = timeo * HZ / 10;
445 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400446
447 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400448 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400449 case XPRT_TRANSPORT_RDMA:
Trond Myklebusta956bed2016-08-16 10:26:47 -0400450 if (retrans == NFS_UNSPEC_RETRANS)
Trond Myklebust259875e2008-07-02 14:43:47 -0400451 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebusta956bed2016-08-16 10:26:47 -0400452 if (timeo == NFS_UNSPEC_TIMEO || to->to_retries == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400453 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400454 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
455 to->to_initval = NFS_MAX_TCP_TIMEOUT;
456 to->to_increment = to->to_initval;
457 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500458 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
459 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
460 if (to->to_maxval < to->to_initval)
461 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400462 to->to_exponential = 0;
463 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400464 case XPRT_TRANSPORT_UDP:
Trond Myklebusta956bed2016-08-16 10:26:47 -0400465 if (retrans == NFS_UNSPEC_RETRANS)
Trond Myklebust259875e2008-07-02 14:43:47 -0400466 to->to_retries = NFS_DEF_UDP_RETRANS;
Trond Myklebusta956bed2016-08-16 10:26:47 -0400467 if (timeo == NFS_UNSPEC_TIMEO || to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400468 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400469 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
470 to->to_initval = NFS_MAX_UDP_TIMEOUT;
471 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
472 to->to_exponential = 1;
473 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400474 default:
475 BUG();
David Howells5006a762006-08-22 20:06:12 -0400476 }
477}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400478EXPORT_SYMBOL_GPL(nfs_init_timeout_values);
David Howells5006a762006-08-22 20:06:12 -0400479
480/*
481 * Create an RPC client handle
482 */
Bryan Schumaker428360d2012-07-16 16:39:17 -0400483int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400484 const struct nfs_client_initdata *cl_init,
Bryan Schumaker428360d2012-07-16 16:39:17 -0400485 rpc_authflavor_t flavor)
David Howells5006a762006-08-22 20:06:12 -0400486{
David Howells5006a762006-08-22 20:06:12 -0400487 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400488 struct rpc_create_args args = {
Chuck Lever73ea6662012-05-21 22:44:50 -0400489 .net = clp->cl_net,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500490 .protocol = clp->cl_proto,
Chuck Lever41877d22006-08-22 20:06:20 -0400491 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500492 .addrsize = clp->cl_addrlen,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400493 .timeout = cl_init->timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400494 .servername = clp->cl_hostname,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400495 .nodename = cl_init->nodename,
Chuck Lever41877d22006-08-22 20:06:20 -0400496 .program = &nfs_program,
497 .version = clp->rpc_ops->version,
498 .authflavor = flavor,
499 };
David Howells5006a762006-08-22 20:06:12 -0400500
Chuck Lever4bf590e2012-05-21 22:46:07 -0400501 if (test_bit(NFS_CS_DISCRTRY, &clp->cl_flags))
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500502 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
Trond Myklebust99875242013-09-24 12:06:07 -0400503 if (test_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags))
504 args.flags |= RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT;
Chuck Lever4bf590e2012-05-21 22:46:07 -0400505 if (test_bit(NFS_CS_NORESVPORT, &clp->cl_flags))
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500506 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
Trond Myklebust98f98cf2013-04-14 11:49:51 -0400507 if (test_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags))
508 args.flags |= RPC_CLNT_CREATE_INFINITE_SLOTS;
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500509
David Howells5006a762006-08-22 20:06:12 -0400510 if (!IS_ERR(clp->cl_rpcclient))
511 return 0;
512
Chuck Lever41877d22006-08-22 20:06:20 -0400513 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400514 if (IS_ERR(clnt)) {
515 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700516 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400517 return PTR_ERR(clnt);
518 }
519
David Howells5006a762006-08-22 20:06:12 -0400520 clp->cl_rpcclient = clnt;
521 return 0;
522}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400523EXPORT_SYMBOL_GPL(nfs_create_rpc_client);
David Howells54ceac42006-08-22 20:06:13 -0400524
525/*
526 * Version 2 or 3 client destruction
527 */
528static void nfs_destroy_server(struct nfs_server *server)
529{
NeilBrownf2596132012-12-13 15:14:36 +1100530 if (server->nlm_host)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500531 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400532}
533
534/*
535 * Version 2 or 3 lockd setup
536 */
537static int nfs_start_lockd(struct nfs_server *server)
538{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500539 struct nlm_host *host;
540 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500541 struct nlmclnt_initdata nlm_init = {
542 .hostname = clp->cl_hostname,
543 .address = (struct sockaddr *)&clp->cl_addr,
544 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500545 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500546 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
547 1 : 0,
Chuck Lever73ea6662012-05-21 22:44:50 -0400548 .net = clp->cl_net,
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -0400549 .nlmclnt_ops = clp->cl_nfs_mod->rpc_ops->nlmclnt_ops,
Chuck Lever883bb162008-01-15 16:04:20 -0500550 };
David Howells54ceac42006-08-22 20:06:13 -0400551
Chuck Lever883bb162008-01-15 16:04:20 -0500552 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500553 return 0;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400554 if ((server->flags & NFS_MOUNT_LOCAL_FLOCK) &&
555 (server->flags & NFS_MOUNT_LOCAL_FCNTL))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500556 return 0;
557
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400558 switch (clp->cl_proto) {
559 default:
560 nlm_init.protocol = IPPROTO_TCP;
561 break;
562 case XPRT_TRANSPORT_UDP:
563 nlm_init.protocol = IPPROTO_UDP;
564 }
565
Chuck Lever883bb162008-01-15 16:04:20 -0500566 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500567 if (IS_ERR(host))
568 return PTR_ERR(host);
569
570 server->nlm_host = host;
571 server->destroy = nfs_destroy_server;
572 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400573}
574
575/*
David Howells54ceac42006-08-22 20:06:13 -0400576 * Create a general RPC client
577 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400578int nfs_init_server_rpcclient(struct nfs_server *server,
Trond Myklebust33170232007-12-20 16:03:59 -0500579 const struct rpc_timeout *timeo,
580 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400581{
582 struct nfs_client *clp = server->nfs_client;
583
Chuck Leverba9b5842012-09-14 17:24:02 -0400584 server->client = rpc_clone_client_set_auth(clp->cl_rpcclient,
585 pseudoflavour);
David Howells54ceac42006-08-22 20:06:13 -0400586 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700587 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400588 return PTR_ERR(server->client);
589 }
590
Trond Myklebust33170232007-12-20 16:03:59 -0500591 memcpy(&server->client->cl_timeout_default,
592 timeo,
593 sizeof(server->client->cl_timeout_default));
594 server->client->cl_timeout = &server->client->cl_timeout_default;
David Howells54ceac42006-08-22 20:06:13 -0400595 server->client->cl_softrtry = 0;
596 if (server->flags & NFS_MOUNT_SOFT)
597 server->client->cl_softrtry = 1;
598
David Howells54ceac42006-08-22 20:06:13 -0400599 return 0;
600}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400601EXPORT_SYMBOL_GPL(nfs_init_server_rpcclient);
David Howells54ceac42006-08-22 20:06:13 -0400602
Chuck Lever8cab4c32012-05-21 22:45:59 -0400603/**
604 * nfs_init_client - Initialise an NFS2 or NFS3 client
605 *
606 * @clp: nfs_client to initialise
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400607 * @cl_init: Initialisation parameters
Chuck Lever8cab4c32012-05-21 22:45:59 -0400608 *
609 * Returns pointer to an NFS client, or an ERR_PTR value.
David Howells54ceac42006-08-22 20:06:13 -0400610 */
Chuck Lever8cab4c32012-05-21 22:45:59 -0400611struct nfs_client *nfs_init_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400612 const struct nfs_client_initdata *cl_init)
David Howells54ceac42006-08-22 20:06:13 -0400613{
David Howells54ceac42006-08-22 20:06:13 -0400614 int error;
615
Anna Schumaker2844b6a2017-04-07 14:15:05 -0400616 /* the client is already initialised */
617 if (clp->cl_cons_state == NFS_CS_READY)
Chuck Lever8cab4c32012-05-21 22:45:59 -0400618 return clp;
David Howells54ceac42006-08-22 20:06:13 -0400619
David Howells54ceac42006-08-22 20:06:13 -0400620 /*
621 * Create a client RPC handle for doing FSSTAT with UNIX auth only
622 * - RFC 2623, sec 2.3.2
623 */
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400624 error = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_UNIX);
Anna Schumaker2844b6a2017-04-07 14:15:05 -0400625 nfs_mark_client_ready(clp, error == 0 ? NFS_CS_READY : error);
626 if (error < 0) {
627 nfs_put_client(clp);
628 clp = ERR_PTR(error);
629 }
Chuck Lever8cab4c32012-05-21 22:45:59 -0400630 return clp;
David Howells54ceac42006-08-22 20:06:13 -0400631}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400632EXPORT_SYMBOL_GPL(nfs_init_client);
David Howells54ceac42006-08-22 20:06:13 -0400633
634/*
635 * Create a version 2 or 3 client
636 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400637static int nfs_init_server(struct nfs_server *server,
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400638 const struct nfs_parsed_mount_data *data,
639 struct nfs_subversion *nfs_mod)
David Howells54ceac42006-08-22 20:06:13 -0400640{
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400641 struct rpc_timeout timeparms;
Trond Myklebust3a498022007-12-14 14:56:04 -0500642 struct nfs_client_initdata cl_init = {
643 .hostname = data->nfs_server.hostname,
Chuck Leverd7422c42007-12-10 14:58:51 -0500644 .addr = (const struct sockaddr *)&data->nfs_server.address,
Chuck Lever4c568012007-12-10 14:59:28 -0500645 .addrlen = data->nfs_server.addrlen,
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400646 .nfs_mod = nfs_mod,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500647 .proto = data->nfs_server.protocol,
Stanislav Kinsburskye50a7a12012-01-10 16:12:46 +0400648 .net = data->net,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400649 .timeparms = &timeparms,
Trond Myklebust3a498022007-12-14 14:56:04 -0500650 };
David Howells54ceac42006-08-22 20:06:13 -0400651 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500652 int error;
David Howells54ceac42006-08-22 20:06:13 -0400653
Andy Adamson45a52a02011-03-01 01:34:08 +0000654 nfs_init_timeout_values(&timeparms, data->nfs_server.protocol,
655 data->timeo, data->retrans);
Chuck Lever4bf590e2012-05-21 22:46:07 -0400656 if (data->flags & NFS_MOUNT_NORESVPORT)
657 set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
Andy Adamson45a52a02011-03-01 01:34:08 +0000658
David Howells54ceac42006-08-22 20:06:13 -0400659 /* Allocate or find a client reference we can use */
Anna Schumaker7d38de32016-11-17 15:15:55 -0500660 clp = nfs_get_client(&cl_init);
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400661 if (IS_ERR(clp))
David Howells54ceac42006-08-22 20:06:13 -0400662 return PTR_ERR(clp);
David Howells54ceac42006-08-22 20:06:13 -0400663
David Howells54ceac42006-08-22 20:06:13 -0400664 server->nfs_client = clp;
665
666 /* Initialise the client representation from the mount data */
Trond Myklebustff3525a2008-08-15 16:59:14 -0400667 server->flags = data->flags;
David Howellsb797cac2009-04-03 16:42:48 +0100668 server->options = data->options;
Trond Myklebust62ab4602009-08-09 15:06:19 -0400669 server->caps |= NFS_CAP_HARDLINKS|NFS_CAP_SYMLINKS|NFS_CAP_FILEID|
670 NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER|NFS_CAP_OWNER_GROUP|
Trond Myklebustcd812592015-07-05 11:12:07 -0400671 NFS_CAP_ATIME|NFS_CAP_CTIME|NFS_CAP_MTIME;
David Howells54ceac42006-08-22 20:06:13 -0400672
673 if (data->rsize)
674 server->rsize = nfs_block_size(data->rsize, NULL);
675 if (data->wsize)
676 server->wsize = nfs_block_size(data->wsize, NULL);
677
678 server->acregmin = data->acregmin * HZ;
679 server->acregmax = data->acregmax * HZ;
680 server->acdirmin = data->acdirmin * HZ;
681 server->acdirmax = data->acdirmax * HZ;
682
683 /* Start lockd here, before we might error out */
684 error = nfs_start_lockd(server);
685 if (error < 0)
686 goto error;
687
Chuck Leverf22d6d72008-03-14 14:10:22 -0400688 server->port = data->nfs_server.port;
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400689 server->auth_info = data->auth_info;
Chuck Leverf22d6d72008-03-14 14:10:22 -0400690
Weston Andros Adamsona3f73c22013-10-18 15:15:16 -0400691 error = nfs_init_server_rpcclient(server, &timeparms,
692 data->selected_flavor);
David Howells54ceac42006-08-22 20:06:13 -0400693 if (error < 0)
694 goto error;
695
Chuck Lever3f8400d2008-03-14 14:10:30 -0400696 /* Preserve the values of mount_server-related mount options */
697 if (data->mount_server.addrlen) {
698 memcpy(&server->mountd_address, &data->mount_server.address,
699 data->mount_server.addrlen);
700 server->mountd_addrlen = data->mount_server.addrlen;
701 }
702 server->mountd_version = data->mount_server.version;
703 server->mountd_port = data->mount_server.port;
704 server->mountd_protocol = data->mount_server.protocol;
705
David Howells54ceac42006-08-22 20:06:13 -0400706 server->namelen = data->namlen;
David Howells54ceac42006-08-22 20:06:13 -0400707 return 0;
708
709error:
710 server->nfs_client = NULL;
711 nfs_put_client(clp);
David Howells54ceac42006-08-22 20:06:13 -0400712 return error;
713}
714
715/*
716 * Load up the server record from information gained in an fsinfo record
717 */
Benny Halevy738fd0f32011-07-30 20:52:36 -0400718static void nfs_server_set_fsinfo(struct nfs_server *server,
Benny Halevy738fd0f32011-07-30 20:52:36 -0400719 struct nfs_fsinfo *fsinfo)
David Howells54ceac42006-08-22 20:06:13 -0400720{
721 unsigned long max_rpc_payload;
722
723 /* Work out a lot of parameters */
724 if (server->rsize == 0)
725 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
726 if (server->wsize == 0)
727 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
728
729 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
730 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
731 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
732 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
733
734 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
735 if (server->rsize > max_rpc_payload)
736 server->rsize = max_rpc_payload;
737 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
738 server->rsize = NFS_MAX_FILE_IO_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300739 server->rpages = (server->rsize + PAGE_SIZE - 1) >> PAGE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700740
David Howells54ceac42006-08-22 20:06:13 -0400741 if (server->wsize > max_rpc_payload)
742 server->wsize = max_rpc_payload;
743 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
744 server->wsize = NFS_MAX_FILE_IO_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300745 server->wpages = (server->wsize + PAGE_SIZE - 1) >> PAGE_SHIFT;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400746
David Howells54ceac42006-08-22 20:06:13 -0400747 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
748
749 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300750 if (server->dtsize > PAGE_SIZE * NFS_MAX_READDIR_PAGES)
751 server->dtsize = PAGE_SIZE * NFS_MAX_READDIR_PAGES;
David Howells54ceac42006-08-22 20:06:13 -0400752 if (server->dtsize > server->rsize)
753 server->dtsize = server->rsize;
754
755 if (server->flags & NFS_MOUNT_NOAC) {
756 server->acregmin = server->acregmax = 0;
757 server->acdirmin = server->acdirmax = 0;
758 }
759
760 server->maxfilesize = fsinfo->maxfilesize;
761
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700762 server->time_delta = fsinfo->time_delta;
763
Peng Tao2a92ee92015-09-26 02:24:37 +0800764 server->clone_blksize = fsinfo->clone_blksize;
David Howells54ceac42006-08-22 20:06:13 -0400765 /* We're airborne Set socket buffersize */
766 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
767}
768
769/*
770 * Probe filesystem information, including the FSID on v2/v3
771 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400772int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
David Howells54ceac42006-08-22 20:06:13 -0400773{
774 struct nfs_fsinfo fsinfo;
775 struct nfs_client *clp = server->nfs_client;
776 int error;
777
David Howells54ceac42006-08-22 20:06:13 -0400778 if (clp->rpc_ops->set_capabilities != NULL) {
779 error = clp->rpc_ops->set_capabilities(server, mntfh);
780 if (error < 0)
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400781 return error;
David Howells54ceac42006-08-22 20:06:13 -0400782 }
783
784 fsinfo.fattr = fattr;
Jeff Laytonca440c32016-09-15 14:40:49 -0400785 fsinfo.nlayouttypes = 0;
Jeff Layton3132e492016-08-10 15:58:24 -0400786 memset(fsinfo.layouttype, 0, sizeof(fsinfo.layouttype));
David Howells54ceac42006-08-22 20:06:13 -0400787 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
788 if (error < 0)
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400789 return error;
David Howells54ceac42006-08-22 20:06:13 -0400790
Kinglong Mee71f81e52015-07-01 11:55:50 +0800791 nfs_server_set_fsinfo(server, &fsinfo);
David Howells54ceac42006-08-22 20:06:13 -0400792
793 /* Get some general file system info */
794 if (server->namelen == 0) {
795 struct nfs_pathconf pathinfo;
796
797 pathinfo.fattr = fattr;
798 nfs_fattr_init(fattr);
799
800 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
801 server->namelen = pathinfo.max_namelen;
802 }
803
David Howells54ceac42006-08-22 20:06:13 -0400804 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400805}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400806EXPORT_SYMBOL_GPL(nfs_probe_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -0400807
808/*
809 * Copy useful information when duplicating a server record
810 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400811void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
David Howells54ceac42006-08-22 20:06:13 -0400812{
813 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -0400814 target->rsize = source->rsize;
815 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -0400816 target->acregmin = source->acregmin;
817 target->acregmax = source->acregmax;
818 target->acdirmin = source->acdirmin;
819 target->acdirmax = source->acdirmax;
820 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400821 target->options = source->options;
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400822 target->auth_info = source->auth_info;
David Howells54ceac42006-08-22 20:06:13 -0400823}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400824EXPORT_SYMBOL_GPL(nfs_server_copy_userdata);
David Howells54ceac42006-08-22 20:06:13 -0400825
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400826void nfs_server_insert_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000827{
828 struct nfs_client *clp = server->nfs_client;
Chuck Lever73ea6662012-05-21 22:44:50 -0400829 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Chuck Leverfca52382010-12-24 01:32:32 +0000830
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000831 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000832 list_add_tail_rcu(&server->client_link, &clp->cl_superblocks);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +0000833 list_add_tail(&server->master_link, &nn->nfs_volume_list);
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000834 clear_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000835 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000836
837}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400838EXPORT_SYMBOL_GPL(nfs_server_insert_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000839
Chuck Lever32e62b72013-10-17 14:12:28 -0400840void nfs_server_remove_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000841{
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000842 struct nfs_client *clp = server->nfs_client;
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500843 struct nfs_net *nn;
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000844
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500845 if (clp == NULL)
846 return;
Chuck Lever73ea6662012-05-21 22:44:50 -0400847 nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000848 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000849 list_del_rcu(&server->client_link);
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500850 if (list_empty(&clp->cl_superblocks))
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000851 set_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Chuck Leverfca52382010-12-24 01:32:32 +0000852 list_del(&server->master_link);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000853 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000854
855 synchronize_rcu();
856}
Chuck Lever32e62b72013-10-17 14:12:28 -0400857EXPORT_SYMBOL_GPL(nfs_server_remove_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000858
David Howells54ceac42006-08-22 20:06:13 -0400859/*
860 * Allocate and initialise a server record
861 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400862struct nfs_server *nfs_alloc_server(void)
David Howells54ceac42006-08-22 20:06:13 -0400863{
864 struct nfs_server *server;
865
866 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
867 if (!server)
868 return NULL;
869
870 server->client = server->client_acl = ERR_PTR(-EINVAL);
871
872 /* Zero out the NFS state stuff */
873 INIT_LIST_HEAD(&server->client_link);
874 INIT_LIST_HEAD(&server->master_link);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000875 INIT_LIST_HEAD(&server->delegations);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400876 INIT_LIST_HEAD(&server->layouts);
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500877 INIT_LIST_HEAD(&server->state_owners_lru);
David Howells54ceac42006-08-22 20:06:13 -0400878
Steve Dicksonef818a22007-11-08 04:05:04 -0500879 atomic_set(&server->active, 0);
880
David Howells54ceac42006-08-22 20:06:13 -0400881 server->io_stats = nfs_alloc_iostats();
882 if (!server->io_stats) {
883 kfree(server);
884 return NULL;
885 }
886
Trond Myklebust9157c312012-01-17 22:04:24 -0500887 ida_init(&server->openowner_id);
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500888 ida_init(&server->lockowner_id);
Fred Isamanf7e89172011-01-06 11:36:32 +0000889 pnfs_init_server(server);
890
David Howells54ceac42006-08-22 20:06:13 -0400891 return server;
892}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400893EXPORT_SYMBOL_GPL(nfs_alloc_server);
David Howells54ceac42006-08-22 20:06:13 -0400894
895/*
896 * Free up a server record
897 */
898void nfs_free_server(struct nfs_server *server)
899{
Chuck Leverfca52382010-12-24 01:32:32 +0000900 nfs_server_remove_lists(server);
David Howells54ceac42006-08-22 20:06:13 -0400901
902 if (server->destroy != NULL)
903 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -0500904
905 if (!IS_ERR(server->client_acl))
906 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -0400907 if (!IS_ERR(server->client))
908 rpc_shutdown_client(server->client);
909
910 nfs_put_client(server->nfs_client);
911
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500912 ida_destroy(&server->lockowner_id);
Trond Myklebust9157c312012-01-17 22:04:24 -0500913 ida_destroy(&server->openowner_id);
David Howells54ceac42006-08-22 20:06:13 -0400914 nfs_free_iostats(server->io_stats);
915 kfree(server);
916 nfs_release_automount_timer();
David Howells54ceac42006-08-22 20:06:13 -0400917}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400918EXPORT_SYMBOL_GPL(nfs_free_server);
David Howells54ceac42006-08-22 20:06:13 -0400919
920/*
921 * Create a version 2 or 3 volume record
922 * - keyed on server and FSID
923 */
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400924struct nfs_server *nfs_create_server(struct nfs_mount_info *mount_info,
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400925 struct nfs_subversion *nfs_mod)
David Howells54ceac42006-08-22 20:06:13 -0400926{
927 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -0400928 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -0400929 int error;
930
931 server = nfs_alloc_server();
932 if (!server)
933 return ERR_PTR(-ENOMEM);
934
Trond Myklebustfbca7792010-04-16 16:22:46 -0400935 error = -ENOMEM;
936 fattr = nfs_alloc_fattr();
937 if (fattr == NULL)
938 goto error;
939
David Howells54ceac42006-08-22 20:06:13 -0400940 /* Get a client representation */
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400941 error = nfs_init_server(server, mount_info->parsed, nfs_mod);
David Howells54ceac42006-08-22 20:06:13 -0400942 if (error < 0)
943 goto error;
944
David Howells54ceac42006-08-22 20:06:13 -0400945 /* Probe the root fh to retrieve its FSID */
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400946 error = nfs_probe_fsinfo(server, mount_info->mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -0400947 if (error < 0)
948 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -0400949 if (server->nfs_client->rpc_ops->version == 3) {
950 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
951 server->namelen = NFS3_MAXNAMLEN;
Bryan Schumaker1179acc2012-07-30 16:05:19 -0400952 if (!(mount_info->parsed->flags & NFS_MOUNT_NORDIRPLUS))
Trond Myklebust54af3bb2007-09-28 12:27:41 -0400953 server->caps |= NFS_CAP_READDIRPLUS;
954 } else {
955 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
956 server->namelen = NFS2_MAXNAMLEN;
957 }
958
Trond Myklebustfbca7792010-04-16 16:22:46 -0400959 if (!(fattr->valid & NFS_ATTR_FATTR)) {
David Quigley1775fd32013-05-22 12:50:42 -0400960 error = nfs_mod->rpc_ops->getattr(server, mount_info->mntfh, fattr, NULL);
David Howells54ceac42006-08-22 20:06:13 -0400961 if (error < 0) {
962 dprintk("nfs_create_server: getattr error = %d\n", -error);
963 goto error;
964 }
965 }
Trond Myklebustfbca7792010-04-16 16:22:46 -0400966 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -0400967
David Howells6daabf12006-08-24 15:44:16 -0400968 dprintk("Server FSID: %llx:%llx\n",
969 (unsigned long long) server->fsid.major,
970 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -0400971
Chuck Leverfca52382010-12-24 01:32:32 +0000972 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -0400973 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -0400974 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -0400975 return server;
976
977error:
Trond Myklebustfbca7792010-04-16 16:22:46 -0400978 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -0400979 nfs_free_server(server);
980 return ERR_PTR(error);
981}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400982EXPORT_SYMBOL_GPL(nfs_create_server);
David Howells54ceac42006-08-22 20:06:13 -0400983
David Howells54ceac42006-08-22 20:06:13 -0400984/*
985 * Clone an NFS2, NFS3 or NFS4 server record
986 */
987struct nfs_server *nfs_clone_server(struct nfs_server *source,
988 struct nfs_fh *fh,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -0400989 struct nfs_fattr *fattr,
990 rpc_authflavor_t flavor)
David Howells54ceac42006-08-22 20:06:13 -0400991{
992 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -0400993 struct nfs_fattr *fattr_fsinfo;
David Howells54ceac42006-08-22 20:06:13 -0400994 int error;
995
David Howells54ceac42006-08-22 20:06:13 -0400996 server = nfs_alloc_server();
997 if (!server)
998 return ERR_PTR(-ENOMEM);
999
Trond Myklebustfbca7792010-04-16 16:22:46 -04001000 error = -ENOMEM;
1001 fattr_fsinfo = nfs_alloc_fattr();
1002 if (fattr_fsinfo == NULL)
1003 goto out_free_server;
1004
David Howells54ceac42006-08-22 20:06:13 -04001005 /* Copy data from the source */
1006 server->nfs_client = source->nfs_client;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -05001007 server->destroy = source->destroy;
David Howells54ceac42006-08-22 20:06:13 -04001008 atomic_inc(&server->nfs_client->cl_count);
1009 nfs_server_copy_userdata(server, source);
1010
1011 server->fsid = fattr->fsid;
1012
Trond Myklebust33170232007-12-20 16:03:59 -05001013 error = nfs_init_server_rpcclient(server,
1014 source->client->cl_timeout,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -04001015 flavor);
David Howells54ceac42006-08-22 20:06:13 -04001016 if (error < 0)
1017 goto out_free_server;
David Howells54ceac42006-08-22 20:06:13 -04001018
1019 /* probe the filesystem info for this server filesystem */
Trond Myklebustfbca7792010-04-16 16:22:46 -04001020 error = nfs_probe_fsinfo(server, fh, fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001021 if (error < 0)
1022 goto out_free_server;
1023
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001024 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1025 server->namelen = NFS4_MAXNAMLEN;
1026
David Howells54ceac42006-08-22 20:06:13 -04001027 error = nfs_start_lockd(server);
1028 if (error < 0)
1029 goto out_free_server;
1030
Chuck Leverfca52382010-12-24 01:32:32 +00001031 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001032 server->mount_time = jiffies;
1033
Trond Myklebustfbca7792010-04-16 16:22:46 -04001034 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001035 return server;
1036
1037out_free_server:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001038 nfs_free_fattr(fattr_fsinfo);
David Howells54ceac42006-08-22 20:06:13 -04001039 nfs_free_server(server);
David Howells54ceac42006-08-22 20:06:13 -04001040 return ERR_PTR(error);
1041}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001042EXPORT_SYMBOL_GPL(nfs_clone_server);
David Howells6aaca562006-08-22 20:06:13 -04001043
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001044void nfs_clients_init(struct net *net)
1045{
1046 struct nfs_net *nn = net_generic(net, nfs_net_id);
1047
1048 INIT_LIST_HEAD(&nn->nfs_client_list);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001049 INIT_LIST_HEAD(&nn->nfs_volume_list);
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001050#if IS_ENABLED(CONFIG_NFS_V4)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +00001051 idr_init(&nn->cb_ident_idr);
1052#endif
Trond Myklebust4c03ae42012-02-07 00:05:11 -05001053 spin_lock_init(&nn->nfs_client_lock);
Deepa Dinamani2f86e092016-10-01 16:46:26 -07001054 nn->boot_time = ktime_get_real();
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001055}
1056
David Howells6aaca562006-08-22 20:06:13 -04001057#ifdef CONFIG_PROC_FS
David Howells6aaca562006-08-22 20:06:13 -04001058static int nfs_server_list_open(struct inode *inode, struct file *file);
1059static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1060static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1061static void nfs_server_list_stop(struct seq_file *p, void *v);
1062static int nfs_server_list_show(struct seq_file *m, void *v);
1063
James Morris88e9d342009-09-22 16:43:43 -07001064static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001065 .start = nfs_server_list_start,
1066 .next = nfs_server_list_next,
1067 .stop = nfs_server_list_stop,
1068 .show = nfs_server_list_show,
1069};
1070
Arjan van de Ven00977a52007-02-12 00:55:34 -08001071static const struct file_operations nfs_server_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001072 .open = nfs_server_list_open,
1073 .read = seq_read,
1074 .llseek = seq_lseek,
Eric W. Biederman65b38852014-07-31 04:35:20 -07001075 .release = seq_release_net,
David Howells6aaca562006-08-22 20:06:13 -04001076};
1077
1078static int nfs_volume_list_open(struct inode *inode, struct file *file);
1079static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1080static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1081static void nfs_volume_list_stop(struct seq_file *p, void *v);
1082static int nfs_volume_list_show(struct seq_file *m, void *v);
1083
James Morris88e9d342009-09-22 16:43:43 -07001084static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001085 .start = nfs_volume_list_start,
1086 .next = nfs_volume_list_next,
1087 .stop = nfs_volume_list_stop,
1088 .show = nfs_volume_list_show,
1089};
1090
Arjan van de Ven00977a52007-02-12 00:55:34 -08001091static const struct file_operations nfs_volume_list_fops = {
David Howells6aaca562006-08-22 20:06:13 -04001092 .open = nfs_volume_list_open,
1093 .read = seq_read,
1094 .llseek = seq_lseek,
Eric W. Biederman65b38852014-07-31 04:35:20 -07001095 .release = seq_release_net,
David Howells6aaca562006-08-22 20:06:13 -04001096};
1097
1098/*
1099 * open "/proc/fs/nfsfs/servers" which provides a summary of servers with which
1100 * we're dealing
1101 */
1102static int nfs_server_list_open(struct inode *inode, struct file *file)
1103{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001104 return seq_open_net(inode, file, &nfs_server_list_ops,
1105 sizeof(struct seq_net_private));
David Howells6aaca562006-08-22 20:06:13 -04001106}
1107
1108/*
1109 * set up the iterator to start reading from the server list and return the first item
1110 */
1111static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001112 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001113{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001114 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001115
David Howells6aaca562006-08-22 20:06:13 -04001116 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001117 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001118 return seq_list_start_head(&nn->nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001119}
1120
1121/*
1122 * move to next server
1123 */
1124static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1125{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001126 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001127
1128 return seq_list_next(v, &nn->nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001129}
1130
1131/*
1132 * clean up after reading from the transports list
1133 */
1134static void nfs_server_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001135 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001136{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001137 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001138
1139 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001140}
1141
1142/*
1143 * display a header line followed by a load of call lines
1144 */
1145static int nfs_server_list_show(struct seq_file *m, void *v)
1146{
1147 struct nfs_client *clp;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001148 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001149
1150 /* display header on line 1 */
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001151 if (v == &nn->nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001152 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1153 return 0;
1154 }
1155
1156 /* display one transport per line on subsequent lines */
1157 clp = list_entry(v, struct nfs_client, cl_share_link);
1158
Malahal Naineni940aab42011-09-20 17:27:14 -07001159 /* Check if the client is initialized */
1160 if (clp->cl_cons_state != NFS_CS_READY)
1161 return 0;
1162
Trond Myklebust2446ab62012-03-01 17:00:56 -05001163 rcu_read_lock();
Chuck Lever5d8515c2007-12-10 14:57:16 -05001164 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001165 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001166 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1167 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001168 atomic_read(&clp->cl_count),
1169 clp->cl_hostname);
Trond Myklebust2446ab62012-03-01 17:00:56 -05001170 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001171
1172 return 0;
1173}
1174
1175/*
1176 * open "/proc/fs/nfsfs/volumes" which provides a summary of extant volumes
1177 */
1178static int nfs_volume_list_open(struct inode *inode, struct file *file)
1179{
Fabian Frederick2f3169f2014-09-24 18:56:11 +02001180 return seq_open_net(inode, file, &nfs_volume_list_ops,
Eric W. Biederman65b38852014-07-31 04:35:20 -07001181 sizeof(struct seq_net_private));
David Howells6aaca562006-08-22 20:06:13 -04001182}
1183
1184/*
1185 * set up the iterator to start reading from the volume list and return the first item
1186 */
1187static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001188 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001189{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001190 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001191
David Howells6aaca562006-08-22 20:06:13 -04001192 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001193 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001194 return seq_list_start_head(&nn->nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001195}
1196
1197/*
1198 * move to next volume
1199 */
1200static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1201{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001202 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001203
1204 return seq_list_next(v, &nn->nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001205}
1206
1207/*
1208 * clean up after reading from the transports list
1209 */
1210static void nfs_volume_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001211 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001212{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001213 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001214
1215 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001216}
1217
1218/*
1219 * display a header line followed by a load of call lines
1220 */
1221static int nfs_volume_list_show(struct seq_file *m, void *v)
1222{
1223 struct nfs_server *server;
1224 struct nfs_client *clp;
Kinglong Meedf05a492015-06-13 10:07:00 +08001225 char dev[13]; // 8 for 2^24, 1 for ':', 3 for 2^8, 1 for '\0'
1226 char fsid[34]; // 2 * 16 for %llx, 1 for ':', 1 for '\0'
Eric W. Biederman65b38852014-07-31 04:35:20 -07001227 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001228
1229 /* display header on line 1 */
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001230 if (v == &nn->nfs_volume_list) {
Kinglong Meedf05a492015-06-13 10:07:00 +08001231 seq_puts(m, "NV SERVER PORT DEV FSID"
1232 " FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001233 return 0;
1234 }
1235 /* display one transport per line on subsequent lines */
1236 server = list_entry(v, struct nfs_server, master_link);
1237 clp = server->nfs_client;
1238
Kinglong Meedf05a492015-06-13 10:07:00 +08001239 snprintf(dev, sizeof(dev), "%u:%u",
David Howells6aaca562006-08-22 20:06:13 -04001240 MAJOR(server->s_dev), MINOR(server->s_dev));
1241
Kinglong Meedf05a492015-06-13 10:07:00 +08001242 snprintf(fsid, sizeof(fsid), "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001243 (unsigned long long) server->fsid.major,
1244 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001245
Trond Myklebust2446ab62012-03-01 17:00:56 -05001246 rcu_read_lock();
Kinglong Meedf05a492015-06-13 10:07:00 +08001247 seq_printf(m, "v%u %s %s %-12s %-33s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001248 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001249 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1250 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001251 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001252 fsid,
1253 nfs_server_fscache_state(server));
Trond Myklebust2446ab62012-03-01 17:00:56 -05001254 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001255
1256 return 0;
1257}
1258
Eric W. Biederman65b38852014-07-31 04:35:20 -07001259int nfs_fs_proc_net_init(struct net *net)
1260{
1261 struct nfs_net *nn = net_generic(net, nfs_net_id);
1262 struct proc_dir_entry *p;
1263
1264 nn->proc_nfsfs = proc_net_mkdir(net, "nfsfs", net->proc_net);
1265 if (!nn->proc_nfsfs)
1266 goto error_0;
1267
1268 /* a file of servers with which we're dealing */
1269 p = proc_create("servers", S_IFREG|S_IRUGO,
1270 nn->proc_nfsfs, &nfs_server_list_fops);
1271 if (!p)
1272 goto error_1;
1273
1274 /* a file of volumes that we have mounted */
1275 p = proc_create("volumes", S_IFREG|S_IRUGO,
1276 nn->proc_nfsfs, &nfs_volume_list_fops);
1277 if (!p)
Cong Wang21e81002014-09-08 16:17:55 -07001278 goto error_1;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001279 return 0;
1280
Eric W. Biederman65b38852014-07-31 04:35:20 -07001281error_1:
Cong Wang21e81002014-09-08 16:17:55 -07001282 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001283error_0:
1284 return -ENOMEM;
1285}
1286
1287void nfs_fs_proc_net_exit(struct net *net)
1288{
Cong Wang21e81002014-09-08 16:17:55 -07001289 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001290}
1291
David Howells6aaca562006-08-22 20:06:13 -04001292/*
1293 * initialise the /proc/fs/nfsfs/ directory
1294 */
1295int __init nfs_fs_proc_init(void)
1296{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001297 if (!proc_mkdir("fs/nfsfs", NULL))
David Howells6aaca562006-08-22 20:06:13 -04001298 goto error_0;
1299
David Howells6aaca562006-08-22 20:06:13 -04001300 /* a file of servers with which we're dealing */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001301 if (!proc_symlink("fs/nfsfs/servers", NULL, "../../net/nfsfs/servers"))
David Howells6aaca562006-08-22 20:06:13 -04001302 goto error_1;
1303
David Howells6aaca562006-08-22 20:06:13 -04001304 /* a file of volumes that we have mounted */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001305 if (!proc_symlink("fs/nfsfs/volumes", NULL, "../../net/nfsfs/volumes"))
1306 goto error_1;
David Howells6aaca562006-08-22 20:06:13 -04001307
Kinglong Mee6a062a32015-07-01 23:00:29 +08001308 return 0;
David Howells6aaca562006-08-22 20:06:13 -04001309error_1:
Kinglong Mee6a062a32015-07-01 23:00:29 +08001310 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001311error_0:
1312 return -ENOMEM;
1313}
1314
1315/*
1316 * clean up the /proc/fs/nfsfs/ directory
1317 */
1318void nfs_fs_proc_exit(void)
1319{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001320 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001321}
1322
1323#endif /* CONFIG_PROC_FS */