blob: 8d8b85b5a641911188785b83a3c04a24b4031c4e [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells24c8dbb2006-08-22 20:06:10 -04002/* client.c: NFS client sharing and management code
3 *
4 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells24c8dbb2006-08-22 20:06:10 -04006 */
7
8
David Howells24c8dbb2006-08-22 20:06:10 -04009#include <linux/module.h>
10#include <linux/init.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040011#include <linux/sched.h>
David Howells24c8dbb2006-08-22 20:06:10 -040012#include <linux/time.h>
13#include <linux/kernel.h>
14#include <linux/mm.h>
15#include <linux/string.h>
16#include <linux/stat.h>
17#include <linux/errno.h>
18#include <linux/unistd.h>
Anna Schumakerd8efa4e2015-07-13 14:01:28 -040019#include <linux/sunrpc/addr.h>
David Howells24c8dbb2006-08-22 20:06:10 -040020#include <linux/sunrpc/clnt.h>
21#include <linux/sunrpc/stats.h>
22#include <linux/sunrpc/metrics.h>
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -040023#include <linux/sunrpc/xprtsock.h>
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -040024#include <linux/sunrpc/xprtrdma.h>
David Howells24c8dbb2006-08-22 20:06:10 -040025#include <linux/nfs_fs.h>
26#include <linux/nfs_mount.h>
27#include <linux/nfs4_mount.h>
28#include <linux/lockd/bind.h>
David Howells24c8dbb2006-08-22 20:06:10 -040029#include <linux/seq_file.h>
30#include <linux/mount.h>
David Howells24c8dbb2006-08-22 20:06:10 -040031#include <linux/vfs.h>
32#include <linux/inet.h>
Trond Myklebust3b0d3f92008-01-03 13:28:58 -050033#include <linux/in6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Al Viro40401532012-02-13 03:58:52 +000035#include <linux/idr.h>
Trond Myklebust3b0d3f92008-01-03 13:28:58 -050036#include <net/ipv6.h>
David Howells24c8dbb2006-08-22 20:06:10 -040037#include <linux/nfs_xdr.h>
Andy Adamson0b5b7ae2009-04-01 09:23:15 -040038#include <linux/sunrpc/bc_xprt.h>
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +000039#include <linux/nsproxy.h>
40#include <linux/pid_namespace.h>
David Howells24c8dbb2006-08-22 20:06:10 -040041
David Howells24c8dbb2006-08-22 20:06:10 -040042
43#include "nfs4_fs.h"
44#include "callback.h"
45#include "delegation.h"
46#include "iostat.h"
47#include "internal.h"
David Howells14727282009-04-03 16:42:42 +010048#include "fscache.h"
Ricardo Labiaga85e174b2010-10-20 00:17:58 -040049#include "pnfs.h"
Bryan Schumakerab7017a2012-07-30 16:05:16 -040050#include "nfs.h"
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +000051#include "netns.h"
Trond Myklebustbf11fbd2019-01-29 21:40:10 -050052#include "sysfs.h"
Frank van der Linden04a5da62020-06-23 22:38:54 +000053#include "nfs42.h"
David Howells24c8dbb2006-08-22 20:06:10 -040054
55#define NFSDBG_FACILITY NFSDBG_CLIENT
56
David Howells24c8dbb2006-08-22 20:06:10 -040057static DECLARE_WAIT_QUEUE_HEAD(nfs_client_active_wq);
Bryan Schumakerab7017a2012-07-30 16:05:16 -040058static DEFINE_SPINLOCK(nfs_version_lock);
59static DEFINE_MUTEX(nfs_version_mutex);
60static LIST_HEAD(nfs_versions);
David Howells24c8dbb2006-08-22 20:06:10 -040061
62/*
David Howells5006a762006-08-22 20:06:12 -040063 * RPC cruft for NFS
64 */
Trond Myklebusta613fa12012-01-20 13:53:56 -050065static const struct rpc_version *nfs_version[5] = {
Bryan Schumakerab7017a2012-07-30 16:05:16 -040066 [2] = NULL,
67 [3] = NULL,
68 [4] = NULL,
David Howells5006a762006-08-22 20:06:12 -040069};
70
Trond Myklebusta613fa12012-01-20 13:53:56 -050071const struct rpc_program nfs_program = {
David Howells5006a762006-08-22 20:06:12 -040072 .name = "nfs",
73 .number = NFS_PROGRAM,
74 .nrvers = ARRAY_SIZE(nfs_version),
75 .version = nfs_version,
76 .stats = &nfs_rpcstat,
Jim Reesfe0a9b72011-07-30 20:52:42 -040077 .pipe_dir_name = NFS_PIPE_DIRNAME,
David Howells5006a762006-08-22 20:06:12 -040078};
79
80struct rpc_stat nfs_rpcstat = {
81 .program = &nfs_program
82};
83
Bryan Schumakerab7017a2012-07-30 16:05:16 -040084static struct nfs_subversion *find_nfs_version(unsigned int version)
85{
86 struct nfs_subversion *nfs;
87 spin_lock(&nfs_version_lock);
88
89 list_for_each_entry(nfs, &nfs_versions, list) {
90 if (nfs->rpc_ops->version == version) {
91 spin_unlock(&nfs_version_lock);
92 return nfs;
93 }
Yanchuan Nianee34e132012-09-10 08:40:16 +080094 }
Bryan Schumakerab7017a2012-07-30 16:05:16 -040095
96 spin_unlock(&nfs_version_lock);
Yanchuan Nianee34e132012-09-10 08:40:16 +080097 return ERR_PTR(-EPROTONOSUPPORT);
Bryan Schumakerab7017a2012-07-30 16:05:16 -040098}
99
100struct nfs_subversion *get_nfs_version(unsigned int version)
101{
102 struct nfs_subversion *nfs = find_nfs_version(version);
103
104 if (IS_ERR(nfs)) {
105 mutex_lock(&nfs_version_mutex);
bjschuma@gmail.com1ae811e2012-08-08 13:57:06 -0400106 request_module("nfsv%d", version);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400107 nfs = find_nfs_version(version);
108 mutex_unlock(&nfs_version_mutex);
109 }
110
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400111 if (!IS_ERR(nfs) && !try_module_get(nfs->owner))
112 return ERR_PTR(-EAGAIN);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400113 return nfs;
114}
115
116void put_nfs_version(struct nfs_subversion *nfs)
117{
118 module_put(nfs->owner);
119}
120
121void register_nfs_version(struct nfs_subversion *nfs)
122{
123 spin_lock(&nfs_version_lock);
124
125 list_add(&nfs->list, &nfs_versions);
126 nfs_version[nfs->rpc_ops->version] = nfs->rpc_vers;
127
128 spin_unlock(&nfs_version_lock);
129}
130EXPORT_SYMBOL_GPL(register_nfs_version);
131
132void unregister_nfs_version(struct nfs_subversion *nfs)
133{
134 spin_lock(&nfs_version_lock);
135
136 nfs_version[nfs->rpc_ops->version] = NULL;
137 list_del(&nfs->list);
138
139 spin_unlock(&nfs_version_lock);
140}
141EXPORT_SYMBOL_GPL(unregister_nfs_version);
142
143/*
David Howells24c8dbb2006-08-22 20:06:10 -0400144 * Allocate a shared client record
145 *
146 * Since these are allocated/deallocated very rarely, we don't
147 * bother putting them in a slab cache...
148 */
Bryan Schumaker6663ee72012-06-20 15:53:46 -0400149struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400150{
151 struct nfs_client *clp;
Chuck Levera21bdd92009-06-17 18:02:10 -0700152 int err = -ENOMEM;
David Howells24c8dbb2006-08-22 20:06:10 -0400153
154 if ((clp = kzalloc(sizeof(*clp), GFP_KERNEL)) == NULL)
155 goto error_0;
156
Scott Mayhew55dee1b2020-02-24 16:29:32 -0500157 clp->cl_minorversion = cl_init->minorversion;
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400158 clp->cl_nfs_mod = cl_init->nfs_mod;
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400159 if (!try_module_get(clp->cl_nfs_mod->owner))
160 goto error_dealloc;
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400161
162 clp->rpc_ops = clp->cl_nfs_mod->rpc_ops;
Trond Myklebust40c553192007-12-14 14:56:07 -0500163
Elena Reshetova212bf412017-10-20 12:53:38 +0300164 refcount_set(&clp->cl_count, 1);
David Howells24c8dbb2006-08-22 20:06:10 -0400165 clp->cl_cons_state = NFS_CS_INITING;
166
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500167 memcpy(&clp->cl_addr, cl_init->addr, cl_init->addrlen);
168 clp->cl_addrlen = cl_init->addrlen;
David Howells24c8dbb2006-08-22 20:06:10 -0400169
Trond Myklebust3a498022007-12-14 14:56:04 -0500170 if (cl_init->hostname) {
Chuck Levera21bdd92009-06-17 18:02:10 -0700171 err = -ENOMEM;
Trond Myklebust3a498022007-12-14 14:56:04 -0500172 clp->cl_hostname = kstrdup(cl_init->hostname, GFP_KERNEL);
David Howells24c8dbb2006-08-22 20:06:10 -0400173 if (!clp->cl_hostname)
Benny Halevy71468512009-04-01 09:22:56 -0400174 goto error_cleanup;
David Howells24c8dbb2006-08-22 20:06:10 -0400175 }
176
177 INIT_LIST_HEAD(&clp->cl_superblocks);
178 clp->cl_rpcclient = ERR_PTR(-EINVAL);
179
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500180 clp->cl_proto = cl_init->proto;
Trond Myklebust66190792017-04-27 11:13:40 -0400181 clp->cl_nconnect = cl_init->nconnect;
Olga Kornievskaia7e134202021-08-27 14:37:17 -0400182 clp->cl_max_connect = cl_init->max_connect ? cl_init->max_connect : 1;
Chuck Lever73ea6662012-05-21 22:44:50 -0400183 clp->cl_net = get_net(cl_init->net);
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500184
NeilBrown5e169232018-12-03 11:30:30 +1100185 clp->cl_principal = "*";
David Howells24c8dbb2006-08-22 20:06:10 -0400186 return clp;
187
Benny Halevy71468512009-04-01 09:22:56 -0400188error_cleanup:
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400189 put_nfs_version(clp->cl_nfs_mod);
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400190error_dealloc:
David Howells24c8dbb2006-08-22 20:06:10 -0400191 kfree(clp);
192error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700193 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400194}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400195EXPORT_SYMBOL_GPL(nfs_alloc_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400196
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400197#if IS_ENABLED(CONFIG_NFS_V4)
Trond Myklebust10b7a702019-02-06 09:32:50 -0500198static void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000199{
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000200 struct nfs_net *nn = net_generic(net, nfs_net_id);
201
202 idr_destroy(&nn->cb_ident_idr);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000203}
204
205/* nfs_client_lock held */
206static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
207{
Chuck Lever73ea6662012-05-21 22:44:50 -0400208 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000209
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000210 if (clp->cl_cb_ident)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000211 idr_remove(&nn->cb_ident_idr, clp->cl_cb_ident);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000212}
213
Fred Isamanf7e89172011-01-06 11:36:32 +0000214static void pnfs_init_server(struct nfs_server *server)
215{
216 rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC");
217}
218
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800219#else
Trond Myklebust10b7a702019-02-06 09:32:50 -0500220static void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000221{
222}
223
224static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
225{
226}
Fred Isamanf7e89172011-01-06 11:36:32 +0000227
228static void pnfs_init_server(struct nfs_server *server)
229{
230}
231
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800232#endif /* CONFIG_NFS_V4 */
233
234/*
David Howells24c8dbb2006-08-22 20:06:10 -0400235 * Destroy a shared client record
236 */
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400237void nfs_free_client(struct nfs_client *clp)
David Howells24c8dbb2006-08-22 20:06:10 -0400238{
David Howells24c8dbb2006-08-22 20:06:10 -0400239 /* -EIO all pending I/O */
240 if (!IS_ERR(clp->cl_rpcclient))
241 rpc_shutdown_client(clp->cl_rpcclient);
242
Chuck Lever73ea6662012-05-21 22:44:50 -0400243 put_net(clp->cl_net);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400244 put_nfs_version(clp->cl_nfs_mod);
David Howells24c8dbb2006-08-22 20:06:10 -0400245 kfree(clp->cl_hostname);
Jeff Laytonf11b2a12014-06-21 20:52:17 -0400246 kfree(clp->cl_acceptor);
David Howells24c8dbb2006-08-22 20:06:10 -0400247 kfree(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400248}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400249EXPORT_SYMBOL_GPL(nfs_free_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400250
251/*
252 * Release a reference to a shared client record
253 */
254void nfs_put_client(struct nfs_client *clp)
255{
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000256 struct nfs_net *nn;
257
David Howells27ba8512006-07-30 14:40:56 -0400258 if (!clp)
259 return;
260
Chuck Lever73ea6662012-05-21 22:44:50 -0400261 nn = net_generic(clp->cl_net, nfs_net_id);
David Howells24c8dbb2006-08-22 20:06:10 -0400262
Elena Reshetova212bf412017-10-20 12:53:38 +0300263 if (refcount_dec_and_lock(&clp->cl_count, &nn->nfs_client_lock)) {
David Howells24c8dbb2006-08-22 20:06:10 -0400264 list_del(&clp->cl_share_link);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000265 nfs_cb_idr_remove_locked(clp);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000266 spin_unlock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400267
Trond Myklebust1fea73a82012-10-15 11:24:57 -0400268 WARN_ON_ONCE(!list_empty(&clp->cl_superblocks));
David Howells24c8dbb2006-08-22 20:06:10 -0400269
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400270 clp->rpc_ops->free_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400271 }
272}
Andy Adamson16b374c2010-10-20 00:18:04 -0400273EXPORT_SYMBOL_GPL(nfs_put_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400274
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500275/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500276 * Find an nfs_client on the list that matches the initialisation data
277 * that is supplied.
278 */
279static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400280{
281 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400282 const struct sockaddr *sap = data->addr;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000283 struct nfs_net *nn = net_generic(data->net, nfs_net_id);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200284 int error;
David Howells24c8dbb2006-08-22 20:06:10 -0400285
Scott Mayhewc1566182017-12-05 13:55:44 -0500286again:
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000287 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400288 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700289 /* Don't match clients that failed to initialise properly */
290 if (clp->cl_cons_state < 0)
291 continue;
292
Scott Mayhewc1566182017-12-05 13:55:44 -0500293 /* If a client is still initializing then we need to wait */
294 if (clp->cl_cons_state > NFS_CS_READY) {
295 refcount_inc(&clp->cl_count);
296 spin_unlock(&nn->nfs_client_lock);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200297 error = nfs_wait_client_init_complete(clp);
Scott Mayhewc1566182017-12-05 13:55:44 -0500298 nfs_put_client(clp);
Benjamin Coddingtonc2601212019-05-09 07:25:21 -0400299 spin_lock(&nn->nfs_client_lock);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200300 if (error < 0)
301 return ERR_PTR(error);
Scott Mayhewc1566182017-12-05 13:55:44 -0500302 goto again;
303 }
304
David Howells24c8dbb2006-08-22 20:06:10 -0400305 /* Different NFS versions cannot share the same nfs_client */
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400306 if (clp->rpc_ops != data->nfs_mod->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400307 continue;
308
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500309 if (clp->cl_proto != data->proto)
310 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400311 /* Match nfsv4 minorversion */
312 if (clp->cl_minorversion != data->minorversion)
313 continue;
Trond Myklebust52f98f1a22019-10-17 09:49:45 -0400314
315 /* Match request for a dedicated DS */
316 if (test_bit(NFS_CS_DS, &data->init_flags) !=
317 test_bit(NFS_CS_DS, &clp->cl_flags))
318 continue;
319
Trond Myklebustc81468a2007-12-14 14:56:05 -0500320 /* Match the full socket address */
Anna Schumakerd8efa4e2015-07-13 14:01:28 -0400321 if (!rpc_cmp_addr_port(sap, clap))
Andy Adamson04ea1b32016-09-09 09:22:27 -0400322 /* Match all xprt_switch full socket addresses */
Petr Vandrovec8ef32952016-11-07 12:11:29 -0800323 if (IS_ERR(clp->cl_rpcclient) ||
324 !rpc_clnt_xprt_switch_has_addr(clp->cl_rpcclient,
Andy Adamson04ea1b32016-09-09 09:22:27 -0400325 sap))
326 continue;
David Howells24c8dbb2006-08-22 20:06:10 -0400327
Elena Reshetova212bf412017-10-20 12:53:38 +0300328 refcount_inc(&clp->cl_count);
Trond Myklebustc81468a2007-12-14 14:56:05 -0500329 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400330 }
David Howells24c8dbb2006-08-22 20:06:10 -0400331 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400332}
333
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500334/*
335 * Return true if @clp is done initializing, false if still working on it.
336 *
337 * Use nfs_client_init_status to check if it was successful.
338 */
339bool nfs_client_init_is_complete(const struct nfs_client *clp)
Trond Myklebust4697bd52012-05-23 13:24:36 -0400340{
Trond Myklebust48d66b92015-03-03 20:28:59 -0500341 return clp->cl_cons_state <= NFS_CS_READY;
Trond Myklebust4697bd52012-05-23 13:24:36 -0400342}
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500343EXPORT_SYMBOL_GPL(nfs_client_init_is_complete);
344
345/*
346 * Return 0 if @clp was successfully initialized, -errno otherwise.
347 *
348 * This must be called *after* nfs_client_init_is_complete() returns true,
349 * otherwise it will pop WARN_ON_ONCE and return -EINVAL
350 */
351int nfs_client_init_status(const struct nfs_client *clp)
352{
353 /* called without checking nfs_client_init_is_complete */
354 if (clp->cl_cons_state > NFS_CS_READY) {
355 WARN_ON_ONCE(1);
356 return -EINVAL;
357 }
358 return clp->cl_cons_state;
359}
360EXPORT_SYMBOL_GPL(nfs_client_init_status);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400361
362int nfs_wait_client_init_complete(const struct nfs_client *clp)
363{
364 return wait_event_killable(nfs_client_active_wq,
365 nfs_client_init_is_complete(clp));
366}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400367EXPORT_SYMBOL_GPL(nfs_wait_client_init_complete);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400368
David Howells24c8dbb2006-08-22 20:06:10 -0400369/*
Chuck Leverf4117032012-05-21 22:45:50 -0400370 * Found an existing client. Make sure it's ready before returning.
371 */
372static struct nfs_client *
373nfs_found_client(const struct nfs_client_initdata *cl_init,
374 struct nfs_client *clp)
375{
376 int error;
377
Trond Myklebust4697bd52012-05-23 13:24:36 -0400378 error = nfs_wait_client_init_complete(clp);
Chuck Leverf4117032012-05-21 22:45:50 -0400379 if (error < 0) {
380 nfs_put_client(clp);
381 return ERR_PTR(-ERESTARTSYS);
382 }
383
384 if (clp->cl_cons_state < NFS_CS_READY) {
385 error = clp->cl_cons_state;
386 nfs_put_client(clp);
387 return ERR_PTR(error);
388 }
389
Trond Myklebust54ac4712012-05-23 13:26:10 -0400390 smp_rmb();
Chuck Leverf4117032012-05-21 22:45:50 -0400391 return clp;
392}
393
394/*
David Howells24c8dbb2006-08-22 20:06:10 -0400395 * Look up a client by IP address and protocol version
396 * - creates a new record if one doesn't yet exist
397 */
Anna Schumaker7d38de32016-11-17 15:15:55 -0500398struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400399{
400 struct nfs_client *clp, *new = NULL;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000401 struct nfs_net *nn = net_generic(cl_init->net, nfs_net_id);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400402 const struct nfs_rpc_ops *rpc_ops = cl_init->nfs_mod->rpc_ops;
David Howells24c8dbb2006-08-22 20:06:10 -0400403
Peng Tao31434f42014-07-08 11:45:48 +0800404 if (cl_init->hostname == NULL) {
405 WARN_ON(1);
Dan Carpenter09226e82021-06-03 15:37:53 +0300406 return ERR_PTR(-EINVAL);
Peng Tao31434f42014-07-08 11:45:48 +0800407 }
408
David Howells24c8dbb2006-08-22 20:06:10 -0400409 /* see if the client already exists */
410 do {
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000411 spin_lock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400412
Trond Myklebustc81468a2007-12-14 14:56:05 -0500413 clp = nfs_match_client(cl_init);
Chuck Leverf4117032012-05-21 22:45:50 -0400414 if (clp) {
415 spin_unlock(&nn->nfs_client_lock);
416 if (new)
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400417 new->rpc_ops->free_client(new);
Benjamin Coddington9f7761c2019-06-11 12:57:52 -0400418 if (IS_ERR(clp))
419 return clp;
Chuck Leverf4117032012-05-21 22:45:50 -0400420 return nfs_found_client(cl_init, clp);
421 }
Chuck Lever8cab4c32012-05-21 22:45:59 -0400422 if (new) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400423 list_add_tail(&new->cl_share_link,
424 &nn->nfs_client_list);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400425 spin_unlock(&nn->nfs_client_lock);
Chuck Lever4bf590e2012-05-21 22:46:07 -0400426 new->cl_flags = cl_init->init_flags;
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400427 return rpc_ops->init_client(new, cl_init);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400428 }
David Howells24c8dbb2006-08-22 20:06:10 -0400429
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000430 spin_unlock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400431
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400432 new = rpc_ops->alloc_client(cl_init);
Chuck Levera21bdd92009-06-17 18:02:10 -0700433 } while (!IS_ERR(new));
David Howells24c8dbb2006-08-22 20:06:10 -0400434
Chuck Levera21bdd92009-06-17 18:02:10 -0700435 return new;
David Howells24c8dbb2006-08-22 20:06:10 -0400436}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400437EXPORT_SYMBOL_GPL(nfs_get_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400438
439/*
440 * Mark a server as ready or failed
441 */
Andy Adamson76db6d92009-04-01 09:22:38 -0400442void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400443{
Trond Myklebust54ac4712012-05-23 13:26:10 -0400444 smp_wmb();
David Howells24c8dbb2006-08-22 20:06:10 -0400445 clp->cl_cons_state = state;
446 wake_up_all(&nfs_client_active_wq);
447}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400448EXPORT_SYMBOL_GPL(nfs_mark_client_ready);
David Howells5006a762006-08-22 20:06:12 -0400449
450/*
451 * Initialise the timeout values for a connection
452 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400453void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
Trond Myklebusta956bed2016-08-16 10:26:47 -0400454 int timeo, int retrans)
David Howells5006a762006-08-22 20:06:12 -0400455{
456 to->to_initval = timeo * HZ / 10;
457 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400458
459 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400460 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400461 case XPRT_TRANSPORT_RDMA:
Trond Myklebusta956bed2016-08-16 10:26:47 -0400462 if (retrans == NFS_UNSPEC_RETRANS)
Trond Myklebust259875e2008-07-02 14:43:47 -0400463 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebust5a698242019-03-21 17:57:56 -0400464 if (timeo == NFS_UNSPEC_TIMEO || to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400465 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400466 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
467 to->to_initval = NFS_MAX_TCP_TIMEOUT;
468 to->to_increment = to->to_initval;
469 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500470 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
471 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
472 if (to->to_maxval < to->to_initval)
473 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400474 to->to_exponential = 0;
475 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400476 case XPRT_TRANSPORT_UDP:
Trond Myklebusta956bed2016-08-16 10:26:47 -0400477 if (retrans == NFS_UNSPEC_RETRANS)
Trond Myklebust259875e2008-07-02 14:43:47 -0400478 to->to_retries = NFS_DEF_UDP_RETRANS;
Trond Myklebusta956bed2016-08-16 10:26:47 -0400479 if (timeo == NFS_UNSPEC_TIMEO || to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400480 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400481 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
482 to->to_initval = NFS_MAX_UDP_TIMEOUT;
483 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
484 to->to_exponential = 1;
485 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400486 default:
487 BUG();
David Howells5006a762006-08-22 20:06:12 -0400488 }
489}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400490EXPORT_SYMBOL_GPL(nfs_init_timeout_values);
David Howells5006a762006-08-22 20:06:12 -0400491
492/*
493 * Create an RPC client handle
494 */
Bryan Schumaker428360d2012-07-16 16:39:17 -0400495int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400496 const struct nfs_client_initdata *cl_init,
Bryan Schumaker428360d2012-07-16 16:39:17 -0400497 rpc_authflavor_t flavor)
David Howells5006a762006-08-22 20:06:12 -0400498{
David Howells5006a762006-08-22 20:06:12 -0400499 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400500 struct rpc_create_args args = {
Chuck Lever73ea6662012-05-21 22:44:50 -0400501 .net = clp->cl_net,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500502 .protocol = clp->cl_proto,
Trond Myklebust66190792017-04-27 11:13:40 -0400503 .nconnect = clp->cl_nconnect,
Chuck Lever41877d22006-08-22 20:06:20 -0400504 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500505 .addrsize = clp->cl_addrlen,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400506 .timeout = cl_init->timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400507 .servername = clp->cl_hostname,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400508 .nodename = cl_init->nodename,
Chuck Lever41877d22006-08-22 20:06:20 -0400509 .program = &nfs_program,
510 .version = clp->rpc_ops->version,
511 .authflavor = flavor,
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400512 .cred = cl_init->cred,
Chuck Lever41877d22006-08-22 20:06:20 -0400513 };
David Howells5006a762006-08-22 20:06:12 -0400514
Chuck Lever4bf590e2012-05-21 22:46:07 -0400515 if (test_bit(NFS_CS_DISCRTRY, &clp->cl_flags))
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500516 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
Trond Myklebust99875242013-09-24 12:06:07 -0400517 if (test_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags))
518 args.flags |= RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT;
Chuck Lever4bf590e2012-05-21 22:46:07 -0400519 if (test_bit(NFS_CS_NORESVPORT, &clp->cl_flags))
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500520 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
Trond Myklebust98f98cf2013-04-14 11:49:51 -0400521 if (test_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags))
522 args.flags |= RPC_CLNT_CREATE_INFINITE_SLOTS;
Trond Myklebust4b1b69c2019-10-03 14:08:43 -0400523 if (test_bit(NFS_CS_NOPING, &clp->cl_flags))
524 args.flags |= RPC_CLNT_CREATE_NOPING;
Trond Myklebuste6237b62019-10-17 11:13:54 -0400525 if (test_bit(NFS_CS_REUSEPORT, &clp->cl_flags))
526 args.flags |= RPC_CLNT_CREATE_REUSEPORT;
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500527
David Howells5006a762006-08-22 20:06:12 -0400528 if (!IS_ERR(clp->cl_rpcclient))
529 return 0;
530
Chuck Lever41877d22006-08-22 20:06:20 -0400531 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400532 if (IS_ERR(clnt)) {
533 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700534 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400535 return PTR_ERR(clnt);
536 }
537
NeilBrown5e169232018-12-03 11:30:30 +1100538 clnt->cl_principal = clp->cl_principal;
David Howells5006a762006-08-22 20:06:12 -0400539 clp->cl_rpcclient = clnt;
Olga Kornievskaiadc48e0a2021-08-27 14:37:18 -0400540 clnt->cl_max_connect = clp->cl_max_connect;
David Howells5006a762006-08-22 20:06:12 -0400541 return 0;
542}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400543EXPORT_SYMBOL_GPL(nfs_create_rpc_client);
David Howells54ceac42006-08-22 20:06:13 -0400544
545/*
546 * Version 2 or 3 client destruction
547 */
548static void nfs_destroy_server(struct nfs_server *server)
549{
NeilBrownf2596132012-12-13 15:14:36 +1100550 if (server->nlm_host)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500551 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400552}
553
554/*
555 * Version 2 or 3 lockd setup
556 */
557static int nfs_start_lockd(struct nfs_server *server)
558{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500559 struct nlm_host *host;
560 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500561 struct nlmclnt_initdata nlm_init = {
562 .hostname = clp->cl_hostname,
563 .address = (struct sockaddr *)&clp->cl_addr,
564 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500565 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500566 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
567 1 : 0,
Chuck Lever73ea6662012-05-21 22:44:50 -0400568 .net = clp->cl_net,
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -0400569 .nlmclnt_ops = clp->cl_nfs_mod->rpc_ops->nlmclnt_ops,
Sargun Dhillond18a9d32020-11-12 02:09:51 -0800570 .cred = server->cred,
Chuck Lever883bb162008-01-15 16:04:20 -0500571 };
David Howells54ceac42006-08-22 20:06:13 -0400572
Chuck Lever883bb162008-01-15 16:04:20 -0500573 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500574 return 0;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400575 if ((server->flags & NFS_MOUNT_LOCAL_FLOCK) &&
576 (server->flags & NFS_MOUNT_LOCAL_FCNTL))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500577 return 0;
578
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400579 switch (clp->cl_proto) {
580 default:
581 nlm_init.protocol = IPPROTO_TCP;
582 break;
Olga Kornievskaiab24ee6c2019-12-16 16:34:02 -0500583#ifndef CONFIG_NFS_DISABLE_UDP_SUPPORT
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400584 case XPRT_TRANSPORT_UDP:
585 nlm_init.protocol = IPPROTO_UDP;
Olga Kornievskaiab24ee6c2019-12-16 16:34:02 -0500586#endif
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400587 }
588
Chuck Lever883bb162008-01-15 16:04:20 -0500589 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500590 if (IS_ERR(host))
591 return PTR_ERR(host);
592
593 server->nlm_host = host;
594 server->destroy = nfs_destroy_server;
595 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400596}
597
598/*
David Howells54ceac42006-08-22 20:06:13 -0400599 * Create a general RPC client
600 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400601int nfs_init_server_rpcclient(struct nfs_server *server,
Trond Myklebust33170232007-12-20 16:03:59 -0500602 const struct rpc_timeout *timeo,
603 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400604{
605 struct nfs_client *clp = server->nfs_client;
606
Chuck Leverba9b5842012-09-14 17:24:02 -0400607 server->client = rpc_clone_client_set_auth(clp->cl_rpcclient,
608 pseudoflavour);
David Howells54ceac42006-08-22 20:06:13 -0400609 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700610 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400611 return PTR_ERR(server->client);
612 }
613
Trond Myklebust33170232007-12-20 16:03:59 -0500614 memcpy(&server->client->cl_timeout_default,
615 timeo,
616 sizeof(server->client->cl_timeout_default));
617 server->client->cl_timeout = &server->client->cl_timeout_default;
David Howells54ceac42006-08-22 20:06:13 -0400618 server->client->cl_softrtry = 0;
Trond Myklebust91a575e2019-04-07 13:59:01 -0400619 if (server->flags & NFS_MOUNT_SOFTERR)
620 server->client->cl_softerr = 1;
David Howells54ceac42006-08-22 20:06:13 -0400621 if (server->flags & NFS_MOUNT_SOFT)
622 server->client->cl_softrtry = 1;
623
David Howells54ceac42006-08-22 20:06:13 -0400624 return 0;
625}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400626EXPORT_SYMBOL_GPL(nfs_init_server_rpcclient);
David Howells54ceac42006-08-22 20:06:13 -0400627
Chuck Lever8cab4c32012-05-21 22:45:59 -0400628/**
629 * nfs_init_client - Initialise an NFS2 or NFS3 client
630 *
631 * @clp: nfs_client to initialise
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400632 * @cl_init: Initialisation parameters
Chuck Lever8cab4c32012-05-21 22:45:59 -0400633 *
634 * Returns pointer to an NFS client, or an ERR_PTR value.
David Howells54ceac42006-08-22 20:06:13 -0400635 */
Chuck Lever8cab4c32012-05-21 22:45:59 -0400636struct nfs_client *nfs_init_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400637 const struct nfs_client_initdata *cl_init)
David Howells54ceac42006-08-22 20:06:13 -0400638{
David Howells54ceac42006-08-22 20:06:13 -0400639 int error;
640
Anna Schumaker2844b6a2017-04-07 14:15:05 -0400641 /* the client is already initialised */
642 if (clp->cl_cons_state == NFS_CS_READY)
Chuck Lever8cab4c32012-05-21 22:45:59 -0400643 return clp;
David Howells54ceac42006-08-22 20:06:13 -0400644
David Howells54ceac42006-08-22 20:06:13 -0400645 /*
646 * Create a client RPC handle for doing FSSTAT with UNIX auth only
647 * - RFC 2623, sec 2.3.2
648 */
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400649 error = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_UNIX);
Anna Schumaker2844b6a2017-04-07 14:15:05 -0400650 nfs_mark_client_ready(clp, error == 0 ? NFS_CS_READY : error);
651 if (error < 0) {
652 nfs_put_client(clp);
653 clp = ERR_PTR(error);
654 }
Chuck Lever8cab4c32012-05-21 22:45:59 -0400655 return clp;
David Howells54ceac42006-08-22 20:06:13 -0400656}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400657EXPORT_SYMBOL_GPL(nfs_init_client);
David Howells54ceac42006-08-22 20:06:13 -0400658
659/*
660 * Create a version 2 or 3 client
661 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400662static int nfs_init_server(struct nfs_server *server,
Scott Mayhew62a55d02019-12-10 07:31:14 -0500663 const struct fs_context *fc)
David Howells54ceac42006-08-22 20:06:13 -0400664{
Scott Mayhew62a55d02019-12-10 07:31:14 -0500665 const struct nfs_fs_context *ctx = nfs_fc2context(fc);
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400666 struct rpc_timeout timeparms;
Trond Myklebust3a498022007-12-14 14:56:04 -0500667 struct nfs_client_initdata cl_init = {
Scott Mayhew38465f52019-12-10 07:31:11 -0500668 .hostname = ctx->nfs_server.hostname,
669 .addr = (const struct sockaddr *)&ctx->nfs_server.address,
670 .addrlen = ctx->nfs_server.addrlen,
Scott Mayhew62a55d02019-12-10 07:31:14 -0500671 .nfs_mod = ctx->nfs_mod,
Scott Mayhew38465f52019-12-10 07:31:11 -0500672 .proto = ctx->nfs_server.protocol,
Scott Mayhew62a55d02019-12-10 07:31:14 -0500673 .net = fc->net_ns,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400674 .timeparms = &timeparms,
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400675 .cred = server->cred,
Scott Mayhew38465f52019-12-10 07:31:11 -0500676 .nconnect = ctx->nfs_server.nconnect,
Trond Myklebuste6237b62019-10-17 11:13:54 -0400677 .init_flags = (1UL << NFS_CS_REUSEPORT),
Trond Myklebust3a498022007-12-14 14:56:04 -0500678 };
David Howells54ceac42006-08-22 20:06:13 -0400679 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500680 int error;
David Howells54ceac42006-08-22 20:06:13 -0400681
Scott Mayhew38465f52019-12-10 07:31:11 -0500682 nfs_init_timeout_values(&timeparms, ctx->nfs_server.protocol,
683 ctx->timeo, ctx->retrans);
684 if (ctx->flags & NFS_MOUNT_NORESVPORT)
Chuck Lever4bf590e2012-05-21 22:46:07 -0400685 set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
Andy Adamson45a52a02011-03-01 01:34:08 +0000686
David Howells54ceac42006-08-22 20:06:13 -0400687 /* Allocate or find a client reference we can use */
Anna Schumaker7d38de32016-11-17 15:15:55 -0500688 clp = nfs_get_client(&cl_init);
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400689 if (IS_ERR(clp))
David Howells54ceac42006-08-22 20:06:13 -0400690 return PTR_ERR(clp);
David Howells54ceac42006-08-22 20:06:13 -0400691
David Howells54ceac42006-08-22 20:06:13 -0400692 server->nfs_client = clp;
693
694 /* Initialise the client representation from the mount data */
Scott Mayhew38465f52019-12-10 07:31:11 -0500695 server->flags = ctx->flags;
696 server->options = ctx->options;
Trond Myklebustce62b112018-03-05 15:01:18 -0500697 server->caps |= NFS_CAP_HARDLINKS | NFS_CAP_SYMLINKS;
698
699 switch (clp->rpc_ops->version) {
700 case 2:
701 server->fattr_valid = NFS_ATTR_FATTR_V2;
702 break;
703 case 3:
704 server->fattr_valid = NFS_ATTR_FATTR_V3;
705 break;
706 default:
707 server->fattr_valid = NFS_ATTR_FATTR_V4;
708 }
David Howells54ceac42006-08-22 20:06:13 -0400709
Scott Mayhew38465f52019-12-10 07:31:11 -0500710 if (ctx->rsize)
711 server->rsize = nfs_block_size(ctx->rsize, NULL);
712 if (ctx->wsize)
713 server->wsize = nfs_block_size(ctx->wsize, NULL);
David Howells54ceac42006-08-22 20:06:13 -0400714
Scott Mayhew38465f52019-12-10 07:31:11 -0500715 server->acregmin = ctx->acregmin * HZ;
716 server->acregmax = ctx->acregmax * HZ;
717 server->acdirmin = ctx->acdirmin * HZ;
718 server->acdirmax = ctx->acdirmax * HZ;
David Howells54ceac42006-08-22 20:06:13 -0400719
720 /* Start lockd here, before we might error out */
721 error = nfs_start_lockd(server);
722 if (error < 0)
723 goto error;
724
Scott Mayhew38465f52019-12-10 07:31:11 -0500725 server->port = ctx->nfs_server.port;
726 server->auth_info = ctx->auth_info;
Chuck Leverf22d6d72008-03-14 14:10:22 -0400727
Weston Andros Adamsona3f73c22013-10-18 15:15:16 -0400728 error = nfs_init_server_rpcclient(server, &timeparms,
Scott Mayhew38465f52019-12-10 07:31:11 -0500729 ctx->selected_flavor);
David Howells54ceac42006-08-22 20:06:13 -0400730 if (error < 0)
731 goto error;
732
Chuck Lever3f8400d2008-03-14 14:10:30 -0400733 /* Preserve the values of mount_server-related mount options */
Scott Mayhew38465f52019-12-10 07:31:11 -0500734 if (ctx->mount_server.addrlen) {
735 memcpy(&server->mountd_address, &ctx->mount_server.address,
736 ctx->mount_server.addrlen);
737 server->mountd_addrlen = ctx->mount_server.addrlen;
Chuck Lever3f8400d2008-03-14 14:10:30 -0400738 }
Scott Mayhew38465f52019-12-10 07:31:11 -0500739 server->mountd_version = ctx->mount_server.version;
740 server->mountd_port = ctx->mount_server.port;
741 server->mountd_protocol = ctx->mount_server.protocol;
Chuck Lever3f8400d2008-03-14 14:10:30 -0400742
Scott Mayhew38465f52019-12-10 07:31:11 -0500743 server->namelen = ctx->namlen;
David Howells54ceac42006-08-22 20:06:13 -0400744 return 0;
745
746error:
747 server->nfs_client = NULL;
748 nfs_put_client(clp);
David Howells54ceac42006-08-22 20:06:13 -0400749 return error;
750}
751
752/*
753 * Load up the server record from information gained in an fsinfo record
754 */
Benny Halevy738fd0f32011-07-30 20:52:36 -0400755static void nfs_server_set_fsinfo(struct nfs_server *server,
Benny Halevy738fd0f32011-07-30 20:52:36 -0400756 struct nfs_fsinfo *fsinfo)
David Howells54ceac42006-08-22 20:06:13 -0400757{
Frank van der Linden04a5da62020-06-23 22:38:54 +0000758 unsigned long max_rpc_payload, raw_max_rpc_payload;
David Howells54ceac42006-08-22 20:06:13 -0400759
760 /* Work out a lot of parameters */
761 if (server->rsize == 0)
762 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
763 if (server->wsize == 0)
764 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
765
766 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
767 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
768 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
769 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
770
Frank van der Linden04a5da62020-06-23 22:38:54 +0000771 raw_max_rpc_payload = rpc_max_payload(server->client);
772 max_rpc_payload = nfs_block_size(raw_max_rpc_payload, NULL);
773
David Howells54ceac42006-08-22 20:06:13 -0400774 if (server->rsize > max_rpc_payload)
775 server->rsize = max_rpc_payload;
776 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
777 server->rsize = NFS_MAX_FILE_IO_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300778 server->rpages = (server->rsize + PAGE_SIZE - 1) >> PAGE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700779
David Howells54ceac42006-08-22 20:06:13 -0400780 if (server->wsize > max_rpc_payload)
781 server->wsize = max_rpc_payload;
782 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
783 server->wsize = NFS_MAX_FILE_IO_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300784 server->wpages = (server->wsize + PAGE_SIZE - 1) >> PAGE_SHIFT;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400785
David Howells54ceac42006-08-22 20:06:13 -0400786 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
787
788 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
Trond Myklebust1a34c8c92020-11-01 14:26:47 -0500789 if (server->dtsize > NFS_MAX_FILE_IO_SIZE)
790 server->dtsize = NFS_MAX_FILE_IO_SIZE;
David Howells54ceac42006-08-22 20:06:13 -0400791 if (server->dtsize > server->rsize)
792 server->dtsize = server->rsize;
793
794 if (server->flags & NFS_MOUNT_NOAC) {
795 server->acregmin = server->acregmax = 0;
796 server->acdirmin = server->acdirmax = 0;
797 }
798
799 server->maxfilesize = fsinfo->maxfilesize;
800
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700801 server->time_delta = fsinfo->time_delta;
Trond Myklebust7f08a332021-03-26 09:50:19 -0400802 server->change_attr_type = fsinfo->change_attr_type;
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700803
Peng Tao2a92ee92015-09-26 02:24:37 +0800804 server->clone_blksize = fsinfo->clone_blksize;
David Howells54ceac42006-08-22 20:06:13 -0400805 /* We're airborne Set socket buffersize */
806 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
Frank van der Linden04a5da62020-06-23 22:38:54 +0000807
808#ifdef CONFIG_NFS_V4_2
809 /*
810 * Defaults until limited by the session parameters.
811 */
812 server->gxasize = min_t(unsigned int, raw_max_rpc_payload,
813 XATTR_SIZE_MAX);
814 server->sxasize = min_t(unsigned int, raw_max_rpc_payload,
815 XATTR_SIZE_MAX);
816 server->lxasize = min_t(unsigned int, raw_max_rpc_payload,
817 nfs42_listxattr_xdrsize(XATTR_LIST_MAX));
Frank van der Lindenb78ef842020-06-23 22:38:55 +0000818
819 if (fsinfo->xattr_support)
820 server->caps |= NFS_CAP_XATTR;
Frank van der Linden04a5da62020-06-23 22:38:54 +0000821#endif
David Howells54ceac42006-08-22 20:06:13 -0400822}
823
824/*
825 * Probe filesystem information, including the FSID on v2/v3
826 */
Anna Schumaker5fe12102021-10-14 13:55:08 -0400827static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
David Howells54ceac42006-08-22 20:06:13 -0400828{
829 struct nfs_fsinfo fsinfo;
830 struct nfs_client *clp = server->nfs_client;
831 int error;
832
David Howells54ceac42006-08-22 20:06:13 -0400833 if (clp->rpc_ops->set_capabilities != NULL) {
834 error = clp->rpc_ops->set_capabilities(server, mntfh);
835 if (error < 0)
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400836 return error;
David Howells54ceac42006-08-22 20:06:13 -0400837 }
838
839 fsinfo.fattr = fattr;
Jeff Laytonca440c32016-09-15 14:40:49 -0400840 fsinfo.nlayouttypes = 0;
Jeff Layton3132e492016-08-10 15:58:24 -0400841 memset(fsinfo.layouttype, 0, sizeof(fsinfo.layouttype));
David Howells54ceac42006-08-22 20:06:13 -0400842 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
843 if (error < 0)
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400844 return error;
David Howells54ceac42006-08-22 20:06:13 -0400845
Kinglong Mee71f81e52015-07-01 11:55:50 +0800846 nfs_server_set_fsinfo(server, &fsinfo);
David Howells54ceac42006-08-22 20:06:13 -0400847
848 /* Get some general file system info */
849 if (server->namelen == 0) {
850 struct nfs_pathconf pathinfo;
851
852 pathinfo.fattr = fattr;
853 nfs_fattr_init(fattr);
854
855 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
856 server->namelen = pathinfo.max_namelen;
857 }
858
David Howells54ceac42006-08-22 20:06:13 -0400859 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400860}
861
862/*
Anna Schumakere5731132021-10-14 13:55:05 -0400863 * Grab the destination's particulars, including lease expiry time.
864 *
865 * Returns zero if probe succeeded and retrieved FSID matches the FSID
866 * we have cached.
867 */
868int nfs_probe_server(struct nfs_server *server, struct nfs_fh *mntfh)
869{
870 struct nfs_fattr *fattr;
871 int error;
872
873 fattr = nfs_alloc_fattr();
874 if (fattr == NULL)
875 return -ENOMEM;
876
877 /* Sanity: the probe won't work if the destination server
878 * does not recognize the migrated FH. */
879 error = nfs_probe_fsinfo(server, mntfh, fattr);
880
881 nfs_free_fattr(fattr);
882 return error;
883}
884EXPORT_SYMBOL_GPL(nfs_probe_server);
885
886/*
David Howells54ceac42006-08-22 20:06:13 -0400887 * Copy useful information when duplicating a server record
888 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400889void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
David Howells54ceac42006-08-22 20:06:13 -0400890{
891 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -0400892 target->rsize = source->rsize;
893 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -0400894 target->acregmin = source->acregmin;
895 target->acregmax = source->acregmax;
896 target->acdirmin = source->acdirmin;
897 target->acdirmax = source->acdirmax;
898 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400899 target->options = source->options;
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400900 target->auth_info = source->auth_info;
Steve Dickson89a68142017-06-29 11:48:26 -0400901 target->port = source->port;
David Howells54ceac42006-08-22 20:06:13 -0400902}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400903EXPORT_SYMBOL_GPL(nfs_server_copy_userdata);
David Howells54ceac42006-08-22 20:06:13 -0400904
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400905void nfs_server_insert_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000906{
907 struct nfs_client *clp = server->nfs_client;
Chuck Lever73ea6662012-05-21 22:44:50 -0400908 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Chuck Leverfca52382010-12-24 01:32:32 +0000909
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000910 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000911 list_add_tail_rcu(&server->client_link, &clp->cl_superblocks);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +0000912 list_add_tail(&server->master_link, &nn->nfs_volume_list);
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000913 clear_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000914 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000915
916}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400917EXPORT_SYMBOL_GPL(nfs_server_insert_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000918
Chuck Lever32e62b72013-10-17 14:12:28 -0400919void nfs_server_remove_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000920{
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000921 struct nfs_client *clp = server->nfs_client;
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500922 struct nfs_net *nn;
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000923
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500924 if (clp == NULL)
925 return;
Chuck Lever73ea6662012-05-21 22:44:50 -0400926 nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000927 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000928 list_del_rcu(&server->client_link);
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500929 if (list_empty(&clp->cl_superblocks))
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000930 set_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Chuck Leverfca52382010-12-24 01:32:32 +0000931 list_del(&server->master_link);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000932 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000933
934 synchronize_rcu();
935}
Chuck Lever32e62b72013-10-17 14:12:28 -0400936EXPORT_SYMBOL_GPL(nfs_server_remove_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000937
David Howells54ceac42006-08-22 20:06:13 -0400938/*
939 * Allocate and initialise a server record
940 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400941struct nfs_server *nfs_alloc_server(void)
David Howells54ceac42006-08-22 20:06:13 -0400942{
943 struct nfs_server *server;
944
945 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
946 if (!server)
947 return NULL;
948
949 server->client = server->client_acl = ERR_PTR(-EINVAL);
950
951 /* Zero out the NFS state stuff */
952 INIT_LIST_HEAD(&server->client_link);
953 INIT_LIST_HEAD(&server->master_link);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000954 INIT_LIST_HEAD(&server->delegations);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400955 INIT_LIST_HEAD(&server->layouts);
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500956 INIT_LIST_HEAD(&server->state_owners_lru);
Olga Kornievskaia62164f32018-07-09 15:13:31 -0400957 INIT_LIST_HEAD(&server->ss_copies);
David Howells54ceac42006-08-22 20:06:13 -0400958
Steve Dicksonef818a22007-11-08 04:05:04 -0500959 atomic_set(&server->active, 0);
960
David Howells54ceac42006-08-22 20:06:13 -0400961 server->io_stats = nfs_alloc_iostats();
962 if (!server->io_stats) {
963 kfree(server);
964 return NULL;
965 }
966
Trond Myklebust7f08a332021-03-26 09:50:19 -0400967 server->change_attr_type = NFS4_CHANGE_TYPE_IS_UNDEFINED;
968
Trond Myklebust9157c31d2012-01-17 22:04:24 -0500969 ida_init(&server->openowner_id);
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500970 ida_init(&server->lockowner_id);
Fred Isamanf7e89172011-01-06 11:36:32 +0000971 pnfs_init_server(server);
Benjamin Coddington68ebf8f2017-09-22 07:57:10 -0400972 rpc_init_wait_queue(&server->uoc_rpcwaitq, "NFS UOC");
Fred Isamanf7e89172011-01-06 11:36:32 +0000973
David Howells54ceac42006-08-22 20:06:13 -0400974 return server;
975}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400976EXPORT_SYMBOL_GPL(nfs_alloc_server);
David Howells54ceac42006-08-22 20:06:13 -0400977
978/*
979 * Free up a server record
980 */
981void nfs_free_server(struct nfs_server *server)
982{
Chuck Leverfca52382010-12-24 01:32:32 +0000983 nfs_server_remove_lists(server);
David Howells54ceac42006-08-22 20:06:13 -0400984
985 if (server->destroy != NULL)
986 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -0500987
988 if (!IS_ERR(server->client_acl))
989 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -0400990 if (!IS_ERR(server->client))
991 rpc_shutdown_client(server->client);
992
993 nfs_put_client(server->nfs_client);
994
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500995 ida_destroy(&server->lockowner_id);
Trond Myklebust9157c31d2012-01-17 22:04:24 -0500996 ida_destroy(&server->openowner_id);
David Howells54ceac42006-08-22 20:06:13 -0400997 nfs_free_iostats(server->io_stats);
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400998 put_cred(server->cred);
David Howells54ceac42006-08-22 20:06:13 -0400999 kfree(server);
1000 nfs_release_automount_timer();
David Howells54ceac42006-08-22 20:06:13 -04001001}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001002EXPORT_SYMBOL_GPL(nfs_free_server);
David Howells54ceac42006-08-22 20:06:13 -04001003
1004/*
1005 * Create a version 2 or 3 volume record
1006 * - keyed on server and FSID
1007 */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001008struct nfs_server *nfs_create_server(struct fs_context *fc)
David Howells54ceac42006-08-22 20:06:13 -04001009{
Scott Mayhew62a55d02019-12-10 07:31:14 -05001010 struct nfs_fs_context *ctx = nfs_fc2context(fc);
David Howells54ceac42006-08-22 20:06:13 -04001011 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001012 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -04001013 int error;
1014
1015 server = nfs_alloc_server();
1016 if (!server)
1017 return ERR_PTR(-ENOMEM);
1018
Sargun Dhillond18a9d32020-11-12 02:09:51 -08001019 server->cred = get_cred(fc->cred);
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001020
Trond Myklebustfbca7792010-04-16 16:22:46 -04001021 error = -ENOMEM;
1022 fattr = nfs_alloc_fattr();
1023 if (fattr == NULL)
1024 goto error;
1025
David Howells54ceac42006-08-22 20:06:13 -04001026 /* Get a client representation */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001027 error = nfs_init_server(server, fc);
David Howells54ceac42006-08-22 20:06:13 -04001028 if (error < 0)
1029 goto error;
1030
David Howells54ceac42006-08-22 20:06:13 -04001031 /* Probe the root fh to retrieve its FSID */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001032 error = nfs_probe_fsinfo(server, ctx->mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001033 if (error < 0)
1034 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001035 if (server->nfs_client->rpc_ops->version == 3) {
1036 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1037 server->namelen = NFS3_MAXNAMLEN;
Scott Mayhew62a55d02019-12-10 07:31:14 -05001038 if (!(ctx->flags & NFS_MOUNT_NORDIRPLUS))
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001039 server->caps |= NFS_CAP_READDIRPLUS;
1040 } else {
1041 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1042 server->namelen = NFS2_MAXNAMLEN;
1043 }
1044
Trond Myklebustfbca7792010-04-16 16:22:46 -04001045 if (!(fattr->valid & NFS_ATTR_FATTR)) {
Scott Mayhew62a55d02019-12-10 07:31:14 -05001046 error = ctx->nfs_mod->rpc_ops->getattr(server, ctx->mntfh,
Anna Schumaker2ef61e02021-10-22 13:11:07 -04001047 fattr, NULL);
David Howells54ceac42006-08-22 20:06:13 -04001048 if (error < 0) {
1049 dprintk("nfs_create_server: getattr error = %d\n", -error);
1050 goto error;
1051 }
1052 }
Trond Myklebustfbca7792010-04-16 16:22:46 -04001053 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -04001054
David Howells6daabf12006-08-24 15:44:16 -04001055 dprintk("Server FSID: %llx:%llx\n",
1056 (unsigned long long) server->fsid.major,
1057 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001058
Chuck Leverfca52382010-12-24 01:32:32 +00001059 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001060 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001061 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001062 return server;
1063
1064error:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001065 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001066 nfs_free_server(server);
1067 return ERR_PTR(error);
1068}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001069EXPORT_SYMBOL_GPL(nfs_create_server);
David Howells54ceac42006-08-22 20:06:13 -04001070
David Howells54ceac42006-08-22 20:06:13 -04001071/*
1072 * Clone an NFS2, NFS3 or NFS4 server record
1073 */
1074struct nfs_server *nfs_clone_server(struct nfs_server *source,
1075 struct nfs_fh *fh,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -04001076 struct nfs_fattr *fattr,
1077 rpc_authflavor_t flavor)
David Howells54ceac42006-08-22 20:06:13 -04001078{
1079 struct nfs_server *server;
David Howells54ceac42006-08-22 20:06:13 -04001080 int error;
1081
David Howells54ceac42006-08-22 20:06:13 -04001082 server = nfs_alloc_server();
1083 if (!server)
1084 return ERR_PTR(-ENOMEM);
1085
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001086 server->cred = get_cred(source->cred);
1087
David Howells54ceac42006-08-22 20:06:13 -04001088 /* Copy data from the source */
1089 server->nfs_client = source->nfs_client;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -05001090 server->destroy = source->destroy;
Elena Reshetova212bf412017-10-20 12:53:38 +03001091 refcount_inc(&server->nfs_client->cl_count);
David Howells54ceac42006-08-22 20:06:13 -04001092 nfs_server_copy_userdata(server, source);
1093
1094 server->fsid = fattr->fsid;
1095
Trond Myklebust33170232007-12-20 16:03:59 -05001096 error = nfs_init_server_rpcclient(server,
1097 source->client->cl_timeout,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -04001098 flavor);
David Howells54ceac42006-08-22 20:06:13 -04001099 if (error < 0)
1100 goto out_free_server;
David Howells54ceac42006-08-22 20:06:13 -04001101
1102 /* probe the filesystem info for this server filesystem */
Anna Schumaker4d4cf8d2021-10-14 13:55:06 -04001103 error = nfs_probe_server(server, fh);
David Howells54ceac42006-08-22 20:06:13 -04001104 if (error < 0)
1105 goto out_free_server;
1106
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001107 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1108 server->namelen = NFS4_MAXNAMLEN;
1109
David Howells54ceac42006-08-22 20:06:13 -04001110 error = nfs_start_lockd(server);
1111 if (error < 0)
1112 goto out_free_server;
1113
Chuck Leverfca52382010-12-24 01:32:32 +00001114 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001115 server->mount_time = jiffies;
1116
David Howells54ceac42006-08-22 20:06:13 -04001117 return server;
1118
1119out_free_server:
1120 nfs_free_server(server);
David Howells54ceac42006-08-22 20:06:13 -04001121 return ERR_PTR(error);
1122}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001123EXPORT_SYMBOL_GPL(nfs_clone_server);
David Howells6aaca562006-08-22 20:06:13 -04001124
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001125void nfs_clients_init(struct net *net)
1126{
1127 struct nfs_net *nn = net_generic(net, nfs_net_id);
1128
1129 INIT_LIST_HEAD(&nn->nfs_client_list);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001130 INIT_LIST_HEAD(&nn->nfs_volume_list);
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001131#if IS_ENABLED(CONFIG_NFS_V4)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +00001132 idr_init(&nn->cb_ident_idr);
1133#endif
Trond Myklebust4c03ae42012-02-07 00:05:11 -05001134 spin_lock_init(&nn->nfs_client_lock);
Deepa Dinamani2f86e092016-10-01 16:46:26 -07001135 nn->boot_time = ktime_get_real();
Trond Myklebustbf11fbd2019-01-29 21:40:10 -05001136
1137 nfs_netns_sysfs_setup(nn, net);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001138}
1139
Trond Myklebust10b7a702019-02-06 09:32:50 -05001140void nfs_clients_exit(struct net *net)
1141{
1142 struct nfs_net *nn = net_generic(net, nfs_net_id);
1143
Trond Myklebustbf11fbd2019-01-29 21:40:10 -05001144 nfs_netns_sysfs_destroy(nn);
Trond Myklebust10b7a702019-02-06 09:32:50 -05001145 nfs_cleanup_cb_ident_idr(net);
1146 WARN_ON_ONCE(!list_empty(&nn->nfs_client_list));
1147 WARN_ON_ONCE(!list_empty(&nn->nfs_volume_list));
1148}
1149
David Howells6aaca562006-08-22 20:06:13 -04001150#ifdef CONFIG_PROC_FS
David Howells6aaca562006-08-22 20:06:13 -04001151static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1152static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1153static void nfs_server_list_stop(struct seq_file *p, void *v);
1154static int nfs_server_list_show(struct seq_file *m, void *v);
1155
James Morris88e9d342009-09-22 16:43:43 -07001156static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001157 .start = nfs_server_list_start,
1158 .next = nfs_server_list_next,
1159 .stop = nfs_server_list_stop,
1160 .show = nfs_server_list_show,
1161};
1162
David Howells6aaca562006-08-22 20:06:13 -04001163static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1164static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1165static void nfs_volume_list_stop(struct seq_file *p, void *v);
1166static int nfs_volume_list_show(struct seq_file *m, void *v);
1167
James Morris88e9d342009-09-22 16:43:43 -07001168static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001169 .start = nfs_volume_list_start,
1170 .next = nfs_volume_list_next,
1171 .stop = nfs_volume_list_stop,
1172 .show = nfs_volume_list_show,
1173};
1174
David Howells6aaca562006-08-22 20:06:13 -04001175/*
1176 * set up the iterator to start reading from the server list and return the first item
1177 */
1178static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001179 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001180{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001181 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001182
David Howells6aaca562006-08-22 20:06:13 -04001183 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001184 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001185 return seq_list_start_head(&nn->nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001186}
1187
1188/*
1189 * move to next server
1190 */
1191static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1192{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001193 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001194
1195 return seq_list_next(v, &nn->nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001196}
1197
1198/*
1199 * clean up after reading from the transports list
1200 */
1201static void nfs_server_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001202 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001203{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001204 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001205
1206 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001207}
1208
1209/*
1210 * display a header line followed by a load of call lines
1211 */
1212static int nfs_server_list_show(struct seq_file *m, void *v)
1213{
1214 struct nfs_client *clp;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001215 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001216
1217 /* display header on line 1 */
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001218 if (v == &nn->nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001219 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1220 return 0;
1221 }
1222
1223 /* display one transport per line on subsequent lines */
1224 clp = list_entry(v, struct nfs_client, cl_share_link);
1225
Malahal Naineni940aab42011-09-20 17:27:14 -07001226 /* Check if the client is initialized */
1227 if (clp->cl_cons_state != NFS_CS_READY)
1228 return 0;
1229
Trond Myklebust2446ab62012-03-01 17:00:56 -05001230 rcu_read_lock();
Chuck Lever5d8515c2007-12-10 14:57:16 -05001231 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001232 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001233 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1234 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
Elena Reshetova212bf412017-10-20 12:53:38 +03001235 refcount_read(&clp->cl_count),
David Howells6aaca562006-08-22 20:06:13 -04001236 clp->cl_hostname);
Trond Myklebust2446ab62012-03-01 17:00:56 -05001237 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001238
1239 return 0;
1240}
1241
1242/*
David Howells6aaca562006-08-22 20:06:13 -04001243 * set up the iterator to start reading from the volume list and return the first item
1244 */
1245static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001246 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001247{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001248 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001249
David Howells6aaca562006-08-22 20:06:13 -04001250 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001251 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001252 return seq_list_start_head(&nn->nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001253}
1254
1255/*
1256 * move to next volume
1257 */
1258static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1259{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001260 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001261
1262 return seq_list_next(v, &nn->nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001263}
1264
1265/*
1266 * clean up after reading from the transports list
1267 */
1268static void nfs_volume_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001269 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001270{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001271 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001272
1273 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001274}
1275
1276/*
1277 * display a header line followed by a load of call lines
1278 */
1279static int nfs_volume_list_show(struct seq_file *m, void *v)
1280{
1281 struct nfs_server *server;
1282 struct nfs_client *clp;
Kinglong Meedf05a492015-06-13 10:07:00 +08001283 char dev[13]; // 8 for 2^24, 1 for ':', 3 for 2^8, 1 for '\0'
1284 char fsid[34]; // 2 * 16 for %llx, 1 for ':', 1 for '\0'
Eric W. Biederman65b38852014-07-31 04:35:20 -07001285 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001286
1287 /* display header on line 1 */
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001288 if (v == &nn->nfs_volume_list) {
Kinglong Meedf05a492015-06-13 10:07:00 +08001289 seq_puts(m, "NV SERVER PORT DEV FSID"
1290 " FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001291 return 0;
1292 }
1293 /* display one transport per line on subsequent lines */
1294 server = list_entry(v, struct nfs_server, master_link);
1295 clp = server->nfs_client;
1296
Kinglong Meedf05a492015-06-13 10:07:00 +08001297 snprintf(dev, sizeof(dev), "%u:%u",
David Howells6aaca562006-08-22 20:06:13 -04001298 MAJOR(server->s_dev), MINOR(server->s_dev));
1299
Kinglong Meedf05a492015-06-13 10:07:00 +08001300 snprintf(fsid, sizeof(fsid), "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001301 (unsigned long long) server->fsid.major,
1302 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001303
Trond Myklebust2446ab62012-03-01 17:00:56 -05001304 rcu_read_lock();
Kinglong Meedf05a492015-06-13 10:07:00 +08001305 seq_printf(m, "v%u %s %s %-12s %-33s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001306 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001307 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1308 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001309 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001310 fsid,
1311 nfs_server_fscache_state(server));
Trond Myklebust2446ab62012-03-01 17:00:56 -05001312 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001313
1314 return 0;
1315}
1316
Eric W. Biederman65b38852014-07-31 04:35:20 -07001317int nfs_fs_proc_net_init(struct net *net)
1318{
1319 struct nfs_net *nn = net_generic(net, nfs_net_id);
1320 struct proc_dir_entry *p;
1321
1322 nn->proc_nfsfs = proc_net_mkdir(net, "nfsfs", net->proc_net);
1323 if (!nn->proc_nfsfs)
1324 goto error_0;
1325
1326 /* a file of servers with which we're dealing */
Christoph Hellwigc3506372018-04-10 19:42:55 +02001327 p = proc_create_net("servers", S_IFREG|S_IRUGO, nn->proc_nfsfs,
1328 &nfs_server_list_ops, sizeof(struct seq_net_private));
Eric W. Biederman65b38852014-07-31 04:35:20 -07001329 if (!p)
1330 goto error_1;
1331
1332 /* a file of volumes that we have mounted */
Christoph Hellwigc3506372018-04-10 19:42:55 +02001333 p = proc_create_net("volumes", S_IFREG|S_IRUGO, nn->proc_nfsfs,
1334 &nfs_volume_list_ops, sizeof(struct seq_net_private));
Eric W. Biederman65b38852014-07-31 04:35:20 -07001335 if (!p)
Cong Wang21e81002014-09-08 16:17:55 -07001336 goto error_1;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001337 return 0;
1338
Eric W. Biederman65b38852014-07-31 04:35:20 -07001339error_1:
Cong Wang21e81002014-09-08 16:17:55 -07001340 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001341error_0:
1342 return -ENOMEM;
1343}
1344
1345void nfs_fs_proc_net_exit(struct net *net)
1346{
Cong Wang21e81002014-09-08 16:17:55 -07001347 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001348}
1349
David Howells6aaca562006-08-22 20:06:13 -04001350/*
1351 * initialise the /proc/fs/nfsfs/ directory
1352 */
1353int __init nfs_fs_proc_init(void)
1354{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001355 if (!proc_mkdir("fs/nfsfs", NULL))
David Howells6aaca562006-08-22 20:06:13 -04001356 goto error_0;
1357
David Howells6aaca562006-08-22 20:06:13 -04001358 /* a file of servers with which we're dealing */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001359 if (!proc_symlink("fs/nfsfs/servers", NULL, "../../net/nfsfs/servers"))
David Howells6aaca562006-08-22 20:06:13 -04001360 goto error_1;
1361
David Howells6aaca562006-08-22 20:06:13 -04001362 /* a file of volumes that we have mounted */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001363 if (!proc_symlink("fs/nfsfs/volumes", NULL, "../../net/nfsfs/volumes"))
1364 goto error_1;
David Howells6aaca562006-08-22 20:06:13 -04001365
Kinglong Mee6a062a32015-07-01 23:00:29 +08001366 return 0;
David Howells6aaca562006-08-22 20:06:13 -04001367error_1:
Kinglong Mee6a062a32015-07-01 23:00:29 +08001368 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001369error_0:
1370 return -ENOMEM;
1371}
1372
1373/*
1374 * clean up the /proc/fs/nfsfs/ directory
1375 */
1376void nfs_fs_proc_exit(void)
1377{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001378 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001379}
1380
1381#endif /* CONFIG_PROC_FS */