blob: 960b9d87648e031fa3fc4a16c38e6591ea894e63 [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 Howells14727282009-04-03 16:42:42 +0100186 nfs_fscache_get_client_cookie(clp);
187
David Howells24c8dbb2006-08-22 20:06:10 -0400188 return clp;
189
Benny Halevy71468512009-04-01 09:22:56 -0400190error_cleanup:
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400191 put_nfs_version(clp->cl_nfs_mod);
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400192error_dealloc:
David Howells24c8dbb2006-08-22 20:06:10 -0400193 kfree(clp);
194error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700195 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400196}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400197EXPORT_SYMBOL_GPL(nfs_alloc_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400198
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400199#if IS_ENABLED(CONFIG_NFS_V4)
Trond Myklebust10b7a702019-02-06 09:32:50 -0500200static void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000201{
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000202 struct nfs_net *nn = net_generic(net, nfs_net_id);
203
204 idr_destroy(&nn->cb_ident_idr);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000205}
206
207/* nfs_client_lock held */
208static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
209{
Chuck Lever73ea6662012-05-21 22:44:50 -0400210 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000211
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000212 if (clp->cl_cb_ident)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000213 idr_remove(&nn->cb_ident_idr, clp->cl_cb_ident);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000214}
215
Fred Isamanf7e89172011-01-06 11:36:32 +0000216static void pnfs_init_server(struct nfs_server *server)
217{
218 rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC");
219}
220
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800221#else
Trond Myklebust10b7a702019-02-06 09:32:50 -0500222static void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000223{
224}
225
226static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
227{
228}
Fred Isamanf7e89172011-01-06 11:36:32 +0000229
230static void pnfs_init_server(struct nfs_server *server)
231{
232}
233
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800234#endif /* CONFIG_NFS_V4 */
235
236/*
David Howells24c8dbb2006-08-22 20:06:10 -0400237 * Destroy a shared client record
238 */
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400239void nfs_free_client(struct nfs_client *clp)
David Howells24c8dbb2006-08-22 20:06:10 -0400240{
David Howells14727282009-04-03 16:42:42 +0100241 nfs_fscache_release_client_cookie(clp);
242
David Howells24c8dbb2006-08-22 20:06:10 -0400243 /* -EIO all pending I/O */
244 if (!IS_ERR(clp->cl_rpcclient))
245 rpc_shutdown_client(clp->cl_rpcclient);
246
Chuck Lever73ea6662012-05-21 22:44:50 -0400247 put_net(clp->cl_net);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400248 put_nfs_version(clp->cl_nfs_mod);
David Howells24c8dbb2006-08-22 20:06:10 -0400249 kfree(clp->cl_hostname);
Jeff Laytonf11b2a12014-06-21 20:52:17 -0400250 kfree(clp->cl_acceptor);
David Howells24c8dbb2006-08-22 20:06:10 -0400251 kfree(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400252}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400253EXPORT_SYMBOL_GPL(nfs_free_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400254
255/*
256 * Release a reference to a shared client record
257 */
258void nfs_put_client(struct nfs_client *clp)
259{
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000260 struct nfs_net *nn;
261
David Howells27ba8512006-07-30 14:40:56 -0400262 if (!clp)
263 return;
264
Chuck Lever73ea6662012-05-21 22:44:50 -0400265 nn = net_generic(clp->cl_net, nfs_net_id);
David Howells24c8dbb2006-08-22 20:06:10 -0400266
Elena Reshetova212bf412017-10-20 12:53:38 +0300267 if (refcount_dec_and_lock(&clp->cl_count, &nn->nfs_client_lock)) {
David Howells24c8dbb2006-08-22 20:06:10 -0400268 list_del(&clp->cl_share_link);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000269 nfs_cb_idr_remove_locked(clp);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000270 spin_unlock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400271
Trond Myklebust1fea73a82012-10-15 11:24:57 -0400272 WARN_ON_ONCE(!list_empty(&clp->cl_superblocks));
David Howells24c8dbb2006-08-22 20:06:10 -0400273
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400274 clp->rpc_ops->free_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400275 }
276}
Andy Adamson16b374c2010-10-20 00:18:04 -0400277EXPORT_SYMBOL_GPL(nfs_put_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400278
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500279/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500280 * Find an nfs_client on the list that matches the initialisation data
281 * that is supplied.
282 */
283static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400284{
285 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400286 const struct sockaddr *sap = data->addr;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000287 struct nfs_net *nn = net_generic(data->net, nfs_net_id);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200288 int error;
David Howells24c8dbb2006-08-22 20:06:10 -0400289
Scott Mayhewc1566182017-12-05 13:55:44 -0500290again:
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000291 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400292 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700293 /* Don't match clients that failed to initialise properly */
294 if (clp->cl_cons_state < 0)
295 continue;
296
Scott Mayhewc1566182017-12-05 13:55:44 -0500297 /* If a client is still initializing then we need to wait */
298 if (clp->cl_cons_state > NFS_CS_READY) {
299 refcount_inc(&clp->cl_count);
300 spin_unlock(&nn->nfs_client_lock);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200301 error = nfs_wait_client_init_complete(clp);
Scott Mayhewc1566182017-12-05 13:55:44 -0500302 nfs_put_client(clp);
Benjamin Coddingtonc2601212019-05-09 07:25:21 -0400303 spin_lock(&nn->nfs_client_lock);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200304 if (error < 0)
305 return ERR_PTR(error);
Scott Mayhewc1566182017-12-05 13:55:44 -0500306 goto again;
307 }
308
David Howells24c8dbb2006-08-22 20:06:10 -0400309 /* Different NFS versions cannot share the same nfs_client */
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400310 if (clp->rpc_ops != data->nfs_mod->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400311 continue;
312
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500313 if (clp->cl_proto != data->proto)
314 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400315 /* Match nfsv4 minorversion */
316 if (clp->cl_minorversion != data->minorversion)
317 continue;
Trond Myklebust52f98f1a22019-10-17 09:49:45 -0400318
319 /* Match request for a dedicated DS */
320 if (test_bit(NFS_CS_DS, &data->init_flags) !=
321 test_bit(NFS_CS_DS, &clp->cl_flags))
322 continue;
323
Trond Myklebustc81468a2007-12-14 14:56:05 -0500324 /* Match the full socket address */
Anna Schumakerd8efa4e2015-07-13 14:01:28 -0400325 if (!rpc_cmp_addr_port(sap, clap))
Andy Adamson04ea1b32016-09-09 09:22:27 -0400326 /* Match all xprt_switch full socket addresses */
Petr Vandrovec8ef32952016-11-07 12:11:29 -0800327 if (IS_ERR(clp->cl_rpcclient) ||
328 !rpc_clnt_xprt_switch_has_addr(clp->cl_rpcclient,
Andy Adamson04ea1b32016-09-09 09:22:27 -0400329 sap))
330 continue;
David Howells24c8dbb2006-08-22 20:06:10 -0400331
Elena Reshetova212bf412017-10-20 12:53:38 +0300332 refcount_inc(&clp->cl_count);
Trond Myklebustc81468a2007-12-14 14:56:05 -0500333 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400334 }
David Howells24c8dbb2006-08-22 20:06:10 -0400335 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400336}
337
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500338/*
339 * Return true if @clp is done initializing, false if still working on it.
340 *
341 * Use nfs_client_init_status to check if it was successful.
342 */
343bool nfs_client_init_is_complete(const struct nfs_client *clp)
Trond Myklebust4697bd52012-05-23 13:24:36 -0400344{
Trond Myklebust48d66b92015-03-03 20:28:59 -0500345 return clp->cl_cons_state <= NFS_CS_READY;
Trond Myklebust4697bd52012-05-23 13:24:36 -0400346}
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500347EXPORT_SYMBOL_GPL(nfs_client_init_is_complete);
348
349/*
350 * Return 0 if @clp was successfully initialized, -errno otherwise.
351 *
352 * This must be called *after* nfs_client_init_is_complete() returns true,
353 * otherwise it will pop WARN_ON_ONCE and return -EINVAL
354 */
355int nfs_client_init_status(const struct nfs_client *clp)
356{
357 /* called without checking nfs_client_init_is_complete */
358 if (clp->cl_cons_state > NFS_CS_READY) {
359 WARN_ON_ONCE(1);
360 return -EINVAL;
361 }
362 return clp->cl_cons_state;
363}
364EXPORT_SYMBOL_GPL(nfs_client_init_status);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400365
366int nfs_wait_client_init_complete(const struct nfs_client *clp)
367{
368 return wait_event_killable(nfs_client_active_wq,
369 nfs_client_init_is_complete(clp));
370}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400371EXPORT_SYMBOL_GPL(nfs_wait_client_init_complete);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400372
David Howells24c8dbb2006-08-22 20:06:10 -0400373/*
Chuck Leverf4117032012-05-21 22:45:50 -0400374 * Found an existing client. Make sure it's ready before returning.
375 */
376static struct nfs_client *
377nfs_found_client(const struct nfs_client_initdata *cl_init,
378 struct nfs_client *clp)
379{
380 int error;
381
Trond Myklebust4697bd52012-05-23 13:24:36 -0400382 error = nfs_wait_client_init_complete(clp);
Chuck Leverf4117032012-05-21 22:45:50 -0400383 if (error < 0) {
384 nfs_put_client(clp);
385 return ERR_PTR(-ERESTARTSYS);
386 }
387
388 if (clp->cl_cons_state < NFS_CS_READY) {
389 error = clp->cl_cons_state;
390 nfs_put_client(clp);
391 return ERR_PTR(error);
392 }
393
Trond Myklebust54ac4712012-05-23 13:26:10 -0400394 smp_rmb();
Chuck Leverf4117032012-05-21 22:45:50 -0400395 return clp;
396}
397
398/*
David Howells24c8dbb2006-08-22 20:06:10 -0400399 * Look up a client by IP address and protocol version
400 * - creates a new record if one doesn't yet exist
401 */
Anna Schumaker7d38de32016-11-17 15:15:55 -0500402struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400403{
404 struct nfs_client *clp, *new = NULL;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000405 struct nfs_net *nn = net_generic(cl_init->net, nfs_net_id);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400406 const struct nfs_rpc_ops *rpc_ops = cl_init->nfs_mod->rpc_ops;
David Howells24c8dbb2006-08-22 20:06:10 -0400407
Peng Tao31434f42014-07-08 11:45:48 +0800408 if (cl_init->hostname == NULL) {
409 WARN_ON(1);
Dan Carpenter09226e82021-06-03 15:37:53 +0300410 return ERR_PTR(-EINVAL);
Peng Tao31434f42014-07-08 11:45:48 +0800411 }
412
David Howells24c8dbb2006-08-22 20:06:10 -0400413 /* see if the client already exists */
414 do {
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000415 spin_lock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400416
Trond Myklebustc81468a2007-12-14 14:56:05 -0500417 clp = nfs_match_client(cl_init);
Chuck Leverf4117032012-05-21 22:45:50 -0400418 if (clp) {
419 spin_unlock(&nn->nfs_client_lock);
420 if (new)
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400421 new->rpc_ops->free_client(new);
Benjamin Coddington9f7761c2019-06-11 12:57:52 -0400422 if (IS_ERR(clp))
423 return clp;
Chuck Leverf4117032012-05-21 22:45:50 -0400424 return nfs_found_client(cl_init, clp);
425 }
Chuck Lever8cab4c32012-05-21 22:45:59 -0400426 if (new) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400427 list_add_tail(&new->cl_share_link,
428 &nn->nfs_client_list);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400429 spin_unlock(&nn->nfs_client_lock);
Chuck Lever4bf590e2012-05-21 22:46:07 -0400430 new->cl_flags = cl_init->init_flags;
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400431 return rpc_ops->init_client(new, cl_init);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400432 }
David Howells24c8dbb2006-08-22 20:06:10 -0400433
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000434 spin_unlock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400435
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400436 new = rpc_ops->alloc_client(cl_init);
Chuck Levera21bdd92009-06-17 18:02:10 -0700437 } while (!IS_ERR(new));
David Howells24c8dbb2006-08-22 20:06:10 -0400438
Chuck Levera21bdd92009-06-17 18:02:10 -0700439 return new;
David Howells24c8dbb2006-08-22 20:06:10 -0400440}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400441EXPORT_SYMBOL_GPL(nfs_get_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400442
443/*
444 * Mark a server as ready or failed
445 */
Andy Adamson76db6d92009-04-01 09:22:38 -0400446void nfs_mark_client_ready(struct nfs_client *clp, int state)
David Howells24c8dbb2006-08-22 20:06:10 -0400447{
Trond Myklebust54ac4712012-05-23 13:26:10 -0400448 smp_wmb();
David Howells24c8dbb2006-08-22 20:06:10 -0400449 clp->cl_cons_state = state;
450 wake_up_all(&nfs_client_active_wq);
451}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400452EXPORT_SYMBOL_GPL(nfs_mark_client_ready);
David Howells5006a762006-08-22 20:06:12 -0400453
454/*
455 * Initialise the timeout values for a connection
456 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400457void nfs_init_timeout_values(struct rpc_timeout *to, int proto,
Trond Myklebusta956bed2016-08-16 10:26:47 -0400458 int timeo, int retrans)
David Howells5006a762006-08-22 20:06:12 -0400459{
460 to->to_initval = timeo * HZ / 10;
461 to->to_retries = retrans;
David Howells5006a762006-08-22 20:06:12 -0400462
463 switch (proto) {
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400464 case XPRT_TRANSPORT_TCP:
\"Talpey, Thomas\2cf7ff72007-09-10 13:49:41 -0400465 case XPRT_TRANSPORT_RDMA:
Trond Myklebusta956bed2016-08-16 10:26:47 -0400466 if (retrans == NFS_UNSPEC_RETRANS)
Trond Myklebust259875e2008-07-02 14:43:47 -0400467 to->to_retries = NFS_DEF_TCP_RETRANS;
Trond Myklebust5a698242019-03-21 17:57:56 -0400468 if (timeo == NFS_UNSPEC_TIMEO || to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400469 to->to_initval = NFS_DEF_TCP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400470 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
471 to->to_initval = NFS_MAX_TCP_TIMEOUT;
472 to->to_increment = to->to_initval;
473 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
Trond Myklebust7a3e3e12007-12-20 16:03:57 -0500474 if (to->to_maxval > NFS_MAX_TCP_TIMEOUT)
475 to->to_maxval = NFS_MAX_TCP_TIMEOUT;
476 if (to->to_maxval < to->to_initval)
477 to->to_maxval = to->to_initval;
David Howells5006a762006-08-22 20:06:12 -0400478 to->to_exponential = 0;
479 break;
\"Talpey, Thomas\0896a722007-09-10 13:48:23 -0400480 case XPRT_TRANSPORT_UDP:
Trond Myklebusta956bed2016-08-16 10:26:47 -0400481 if (retrans == NFS_UNSPEC_RETRANS)
Trond Myklebust259875e2008-07-02 14:43:47 -0400482 to->to_retries = NFS_DEF_UDP_RETRANS;
Trond Myklebusta956bed2016-08-16 10:26:47 -0400483 if (timeo == NFS_UNSPEC_TIMEO || to->to_initval == 0)
Trond Myklebust259875e2008-07-02 14:43:47 -0400484 to->to_initval = NFS_DEF_UDP_TIMEO * HZ / 10;
David Howells5006a762006-08-22 20:06:12 -0400485 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
486 to->to_initval = NFS_MAX_UDP_TIMEOUT;
487 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
488 to->to_exponential = 1;
489 break;
Trond Myklebust259875e2008-07-02 14:43:47 -0400490 default:
491 BUG();
David Howells5006a762006-08-22 20:06:12 -0400492 }
493}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400494EXPORT_SYMBOL_GPL(nfs_init_timeout_values);
David Howells5006a762006-08-22 20:06:12 -0400495
496/*
497 * Create an RPC client handle
498 */
Bryan Schumaker428360d2012-07-16 16:39:17 -0400499int nfs_create_rpc_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400500 const struct nfs_client_initdata *cl_init,
Bryan Schumaker428360d2012-07-16 16:39:17 -0400501 rpc_authflavor_t flavor)
David Howells5006a762006-08-22 20:06:12 -0400502{
David Howells5006a762006-08-22 20:06:12 -0400503 struct rpc_clnt *clnt = NULL;
Chuck Lever41877d22006-08-22 20:06:20 -0400504 struct rpc_create_args args = {
Chuck Lever73ea6662012-05-21 22:44:50 -0400505 .net = clp->cl_net,
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500506 .protocol = clp->cl_proto,
Trond Myklebust66190792017-04-27 11:13:40 -0400507 .nconnect = clp->cl_nconnect,
Chuck Lever41877d22006-08-22 20:06:20 -0400508 .address = (struct sockaddr *)&clp->cl_addr,
Chuck Lever6e4cffd2007-12-10 14:58:15 -0500509 .addrsize = clp->cl_addrlen,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400510 .timeout = cl_init->timeparms,
Chuck Lever41877d22006-08-22 20:06:20 -0400511 .servername = clp->cl_hostname,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400512 .nodename = cl_init->nodename,
Chuck Lever41877d22006-08-22 20:06:20 -0400513 .program = &nfs_program,
514 .version = clp->rpc_ops->version,
515 .authflavor = flavor,
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400516 .cred = cl_init->cred,
Chuck Lever41877d22006-08-22 20:06:20 -0400517 };
David Howells5006a762006-08-22 20:06:12 -0400518
Chuck Lever4bf590e2012-05-21 22:46:07 -0400519 if (test_bit(NFS_CS_DISCRTRY, &clp->cl_flags))
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500520 args.flags |= RPC_CLNT_CREATE_DISCRTRY;
Trond Myklebust99875242013-09-24 12:06:07 -0400521 if (test_bit(NFS_CS_NO_RETRANS_TIMEOUT, &clp->cl_flags))
522 args.flags |= RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT;
Chuck Lever4bf590e2012-05-21 22:46:07 -0400523 if (test_bit(NFS_CS_NORESVPORT, &clp->cl_flags))
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500524 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
Trond Myklebust98f98cf2013-04-14 11:49:51 -0400525 if (test_bit(NFS_CS_INFINITE_SLOTS, &clp->cl_flags))
526 args.flags |= RPC_CLNT_CREATE_INFINITE_SLOTS;
Trond Myklebust4b1b69c2019-10-03 14:08:43 -0400527 if (test_bit(NFS_CS_NOPING, &clp->cl_flags))
528 args.flags |= RPC_CLNT_CREATE_NOPING;
Trond Myklebuste6237b62019-10-17 11:13:54 -0400529 if (test_bit(NFS_CS_REUSEPORT, &clp->cl_flags))
530 args.flags |= RPC_CLNT_CREATE_REUSEPORT;
Chuck Lever4a01b8a2008-12-23 15:21:35 -0500531
David Howells5006a762006-08-22 20:06:12 -0400532 if (!IS_ERR(clp->cl_rpcclient))
533 return 0;
534
Chuck Lever41877d22006-08-22 20:06:20 -0400535 clnt = rpc_create(&args);
David Howells5006a762006-08-22 20:06:12 -0400536 if (IS_ERR(clnt)) {
537 dprintk("%s: cannot create RPC client. Error = %ld\n",
Harvey Harrison3110ff82008-05-02 13:42:44 -0700538 __func__, PTR_ERR(clnt));
David Howells5006a762006-08-22 20:06:12 -0400539 return PTR_ERR(clnt);
540 }
541
NeilBrown5e169232018-12-03 11:30:30 +1100542 clnt->cl_principal = clp->cl_principal;
David Howells5006a762006-08-22 20:06:12 -0400543 clp->cl_rpcclient = clnt;
Olga Kornievskaiadc48e0a2021-08-27 14:37:18 -0400544 clnt->cl_max_connect = clp->cl_max_connect;
David Howells5006a762006-08-22 20:06:12 -0400545 return 0;
546}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400547EXPORT_SYMBOL_GPL(nfs_create_rpc_client);
David Howells54ceac42006-08-22 20:06:13 -0400548
549/*
550 * Version 2 or 3 client destruction
551 */
552static void nfs_destroy_server(struct nfs_server *server)
553{
NeilBrownf2596132012-12-13 15:14:36 +1100554 if (server->nlm_host)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500555 nlmclnt_done(server->nlm_host);
David Howells54ceac42006-08-22 20:06:13 -0400556}
557
558/*
559 * Version 2 or 3 lockd setup
560 */
561static int nfs_start_lockd(struct nfs_server *server)
562{
Chuck Lever9289e7f2008-01-11 17:09:52 -0500563 struct nlm_host *host;
564 struct nfs_client *clp = server->nfs_client;
Chuck Lever883bb162008-01-15 16:04:20 -0500565 struct nlmclnt_initdata nlm_init = {
566 .hostname = clp->cl_hostname,
567 .address = (struct sockaddr *)&clp->cl_addr,
568 .addrlen = clp->cl_addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -0500569 .nfs_version = clp->rpc_ops->version,
Chuck Lever0cb26592008-12-23 15:21:38 -0500570 .noresvport = server->flags & NFS_MOUNT_NORESVPORT ?
571 1 : 0,
Chuck Lever73ea6662012-05-21 22:44:50 -0400572 .net = clp->cl_net,
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -0400573 .nlmclnt_ops = clp->cl_nfs_mod->rpc_ops->nlmclnt_ops,
Sargun Dhillond18a9d32020-11-12 02:09:51 -0800574 .cred = server->cred,
Chuck Lever883bb162008-01-15 16:04:20 -0500575 };
David Howells54ceac42006-08-22 20:06:13 -0400576
Chuck Lever883bb162008-01-15 16:04:20 -0500577 if (nlm_init.nfs_version > 3)
Chuck Lever9289e7f2008-01-11 17:09:52 -0500578 return 0;
Suresh Jayaraman5eebde22010-09-23 08:55:58 -0400579 if ((server->flags & NFS_MOUNT_LOCAL_FLOCK) &&
580 (server->flags & NFS_MOUNT_LOCAL_FCNTL))
Chuck Lever9289e7f2008-01-11 17:09:52 -0500581 return 0;
582
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400583 switch (clp->cl_proto) {
584 default:
585 nlm_init.protocol = IPPROTO_TCP;
586 break;
Olga Kornievskaiab24ee6c2019-12-16 16:34:02 -0500587#ifndef CONFIG_NFS_DISABLE_UDP_SUPPORT
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400588 case XPRT_TRANSPORT_UDP:
589 nlm_init.protocol = IPPROTO_UDP;
Olga Kornievskaiab24ee6c2019-12-16 16:34:02 -0500590#endif
Trond Myklebust8a6e5de2009-09-23 14:36:37 -0400591 }
592
Chuck Lever883bb162008-01-15 16:04:20 -0500593 host = nlmclnt_init(&nlm_init);
Chuck Lever9289e7f2008-01-11 17:09:52 -0500594 if (IS_ERR(host))
595 return PTR_ERR(host);
596
597 server->nlm_host = host;
598 server->destroy = nfs_destroy_server;
599 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400600}
601
602/*
David Howells54ceac42006-08-22 20:06:13 -0400603 * Create a general RPC client
604 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400605int nfs_init_server_rpcclient(struct nfs_server *server,
Trond Myklebust33170232007-12-20 16:03:59 -0500606 const struct rpc_timeout *timeo,
607 rpc_authflavor_t pseudoflavour)
David Howells54ceac42006-08-22 20:06:13 -0400608{
609 struct nfs_client *clp = server->nfs_client;
610
Chuck Leverba9b5842012-09-14 17:24:02 -0400611 server->client = rpc_clone_client_set_auth(clp->cl_rpcclient,
612 pseudoflavour);
David Howells54ceac42006-08-22 20:06:13 -0400613 if (IS_ERR(server->client)) {
Harvey Harrison3110ff82008-05-02 13:42:44 -0700614 dprintk("%s: couldn't create rpc_client!\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400615 return PTR_ERR(server->client);
616 }
617
Trond Myklebust33170232007-12-20 16:03:59 -0500618 memcpy(&server->client->cl_timeout_default,
619 timeo,
620 sizeof(server->client->cl_timeout_default));
621 server->client->cl_timeout = &server->client->cl_timeout_default;
David Howells54ceac42006-08-22 20:06:13 -0400622 server->client->cl_softrtry = 0;
Trond Myklebust91a575e2019-04-07 13:59:01 -0400623 if (server->flags & NFS_MOUNT_SOFTERR)
624 server->client->cl_softerr = 1;
David Howells54ceac42006-08-22 20:06:13 -0400625 if (server->flags & NFS_MOUNT_SOFT)
626 server->client->cl_softrtry = 1;
627
David Howells54ceac42006-08-22 20:06:13 -0400628 return 0;
629}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400630EXPORT_SYMBOL_GPL(nfs_init_server_rpcclient);
David Howells54ceac42006-08-22 20:06:13 -0400631
Chuck Lever8cab4c32012-05-21 22:45:59 -0400632/**
633 * nfs_init_client - Initialise an NFS2 or NFS3 client
634 *
635 * @clp: nfs_client to initialise
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400636 * @cl_init: Initialisation parameters
Chuck Lever8cab4c32012-05-21 22:45:59 -0400637 *
638 * Returns pointer to an NFS client, or an ERR_PTR value.
David Howells54ceac42006-08-22 20:06:13 -0400639 */
Chuck Lever8cab4c32012-05-21 22:45:59 -0400640struct nfs_client *nfs_init_client(struct nfs_client *clp,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400641 const struct nfs_client_initdata *cl_init)
David Howells54ceac42006-08-22 20:06:13 -0400642{
David Howells54ceac42006-08-22 20:06:13 -0400643 int error;
644
Anna Schumaker2844b6a2017-04-07 14:15:05 -0400645 /* the client is already initialised */
646 if (clp->cl_cons_state == NFS_CS_READY)
Chuck Lever8cab4c32012-05-21 22:45:59 -0400647 return clp;
David Howells54ceac42006-08-22 20:06:13 -0400648
David Howells54ceac42006-08-22 20:06:13 -0400649 /*
650 * Create a client RPC handle for doing FSSTAT with UNIX auth only
651 * - RFC 2623, sec 2.3.2
652 */
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400653 error = nfs_create_rpc_client(clp, cl_init, RPC_AUTH_UNIX);
Anna Schumaker2844b6a2017-04-07 14:15:05 -0400654 nfs_mark_client_ready(clp, error == 0 ? NFS_CS_READY : error);
655 if (error < 0) {
656 nfs_put_client(clp);
657 clp = ERR_PTR(error);
658 }
Chuck Lever8cab4c32012-05-21 22:45:59 -0400659 return clp;
David Howells54ceac42006-08-22 20:06:13 -0400660}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400661EXPORT_SYMBOL_GPL(nfs_init_client);
David Howells54ceac42006-08-22 20:06:13 -0400662
663/*
664 * Create a version 2 or 3 client
665 */
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400666static int nfs_init_server(struct nfs_server *server,
Scott Mayhew62a55d02019-12-10 07:31:14 -0500667 const struct fs_context *fc)
David Howells54ceac42006-08-22 20:06:13 -0400668{
Scott Mayhew62a55d02019-12-10 07:31:14 -0500669 const struct nfs_fs_context *ctx = nfs_fc2context(fc);
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400670 struct rpc_timeout timeparms;
Trond Myklebust3a498022007-12-14 14:56:04 -0500671 struct nfs_client_initdata cl_init = {
Scott Mayhew38465f52019-12-10 07:31:11 -0500672 .hostname = ctx->nfs_server.hostname,
673 .addr = (const struct sockaddr *)&ctx->nfs_server.address,
674 .addrlen = ctx->nfs_server.addrlen,
Scott Mayhew62a55d02019-12-10 07:31:14 -0500675 .nfs_mod = ctx->nfs_mod,
Scott Mayhew38465f52019-12-10 07:31:11 -0500676 .proto = ctx->nfs_server.protocol,
Scott Mayhew62a55d02019-12-10 07:31:14 -0500677 .net = fc->net_ns,
Trond Myklebust5c6e5b62016-06-22 14:13:12 -0400678 .timeparms = &timeparms,
Trond Myklebust1a58e8a2019-04-24 17:46:43 -0400679 .cred = server->cred,
Scott Mayhew38465f52019-12-10 07:31:11 -0500680 .nconnect = ctx->nfs_server.nconnect,
Trond Myklebuste6237b62019-10-17 11:13:54 -0400681 .init_flags = (1UL << NFS_CS_REUSEPORT),
Trond Myklebust3a498022007-12-14 14:56:04 -0500682 };
David Howells54ceac42006-08-22 20:06:13 -0400683 struct nfs_client *clp;
Trond Myklebust3a498022007-12-14 14:56:04 -0500684 int error;
David Howells54ceac42006-08-22 20:06:13 -0400685
Scott Mayhew38465f52019-12-10 07:31:11 -0500686 nfs_init_timeout_values(&timeparms, ctx->nfs_server.protocol,
687 ctx->timeo, ctx->retrans);
688 if (ctx->flags & NFS_MOUNT_NORESVPORT)
Chuck Lever4bf590e2012-05-21 22:46:07 -0400689 set_bit(NFS_CS_NORESVPORT, &cl_init.init_flags);
Andy Adamson45a52a02011-03-01 01:34:08 +0000690
David Howells54ceac42006-08-22 20:06:13 -0400691 /* Allocate or find a client reference we can use */
Anna Schumaker7d38de32016-11-17 15:15:55 -0500692 clp = nfs_get_client(&cl_init);
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400693 if (IS_ERR(clp))
David Howells54ceac42006-08-22 20:06:13 -0400694 return PTR_ERR(clp);
David Howells54ceac42006-08-22 20:06:13 -0400695
David Howells54ceac42006-08-22 20:06:13 -0400696 server->nfs_client = clp;
697
698 /* Initialise the client representation from the mount data */
Scott Mayhew38465f52019-12-10 07:31:11 -0500699 server->flags = ctx->flags;
700 server->options = ctx->options;
Trond Myklebustce62b112018-03-05 15:01:18 -0500701 server->caps |= NFS_CAP_HARDLINKS | NFS_CAP_SYMLINKS;
702
703 switch (clp->rpc_ops->version) {
704 case 2:
705 server->fattr_valid = NFS_ATTR_FATTR_V2;
706 break;
707 case 3:
708 server->fattr_valid = NFS_ATTR_FATTR_V3;
709 break;
710 default:
711 server->fattr_valid = NFS_ATTR_FATTR_V4;
712 }
David Howells54ceac42006-08-22 20:06:13 -0400713
Scott Mayhew38465f52019-12-10 07:31:11 -0500714 if (ctx->rsize)
715 server->rsize = nfs_block_size(ctx->rsize, NULL);
716 if (ctx->wsize)
717 server->wsize = nfs_block_size(ctx->wsize, NULL);
David Howells54ceac42006-08-22 20:06:13 -0400718
Scott Mayhew38465f52019-12-10 07:31:11 -0500719 server->acregmin = ctx->acregmin * HZ;
720 server->acregmax = ctx->acregmax * HZ;
721 server->acdirmin = ctx->acdirmin * HZ;
722 server->acdirmax = ctx->acdirmax * HZ;
David Howells54ceac42006-08-22 20:06:13 -0400723
724 /* Start lockd here, before we might error out */
725 error = nfs_start_lockd(server);
726 if (error < 0)
727 goto error;
728
Scott Mayhew38465f52019-12-10 07:31:11 -0500729 server->port = ctx->nfs_server.port;
730 server->auth_info = ctx->auth_info;
Chuck Leverf22d6d72008-03-14 14:10:22 -0400731
Weston Andros Adamsona3f73c22013-10-18 15:15:16 -0400732 error = nfs_init_server_rpcclient(server, &timeparms,
Scott Mayhew38465f52019-12-10 07:31:11 -0500733 ctx->selected_flavor);
David Howells54ceac42006-08-22 20:06:13 -0400734 if (error < 0)
735 goto error;
736
Chuck Lever3f8400d2008-03-14 14:10:30 -0400737 /* Preserve the values of mount_server-related mount options */
Scott Mayhew38465f52019-12-10 07:31:11 -0500738 if (ctx->mount_server.addrlen) {
739 memcpy(&server->mountd_address, &ctx->mount_server.address,
740 ctx->mount_server.addrlen);
741 server->mountd_addrlen = ctx->mount_server.addrlen;
Chuck Lever3f8400d2008-03-14 14:10:30 -0400742 }
Scott Mayhew38465f52019-12-10 07:31:11 -0500743 server->mountd_version = ctx->mount_server.version;
744 server->mountd_port = ctx->mount_server.port;
745 server->mountd_protocol = ctx->mount_server.protocol;
Chuck Lever3f8400d2008-03-14 14:10:30 -0400746
Scott Mayhew38465f52019-12-10 07:31:11 -0500747 server->namelen = ctx->namlen;
David Howells54ceac42006-08-22 20:06:13 -0400748 return 0;
749
750error:
751 server->nfs_client = NULL;
752 nfs_put_client(clp);
David Howells54ceac42006-08-22 20:06:13 -0400753 return error;
754}
755
756/*
757 * Load up the server record from information gained in an fsinfo record
758 */
Benny Halevy738fd0f32011-07-30 20:52:36 -0400759static void nfs_server_set_fsinfo(struct nfs_server *server,
Benny Halevy738fd0f32011-07-30 20:52:36 -0400760 struct nfs_fsinfo *fsinfo)
David Howells54ceac42006-08-22 20:06:13 -0400761{
Frank van der Linden04a5da62020-06-23 22:38:54 +0000762 unsigned long max_rpc_payload, raw_max_rpc_payload;
David Howells54ceac42006-08-22 20:06:13 -0400763
764 /* Work out a lot of parameters */
765 if (server->rsize == 0)
766 server->rsize = nfs_block_size(fsinfo->rtpref, NULL);
767 if (server->wsize == 0)
768 server->wsize = nfs_block_size(fsinfo->wtpref, NULL);
769
770 if (fsinfo->rtmax >= 512 && server->rsize > fsinfo->rtmax)
771 server->rsize = nfs_block_size(fsinfo->rtmax, NULL);
772 if (fsinfo->wtmax >= 512 && server->wsize > fsinfo->wtmax)
773 server->wsize = nfs_block_size(fsinfo->wtmax, NULL);
774
Frank van der Linden04a5da62020-06-23 22:38:54 +0000775 raw_max_rpc_payload = rpc_max_payload(server->client);
776 max_rpc_payload = nfs_block_size(raw_max_rpc_payload, NULL);
777
David Howells54ceac42006-08-22 20:06:13 -0400778 if (server->rsize > max_rpc_payload)
779 server->rsize = max_rpc_payload;
780 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
781 server->rsize = NFS_MAX_FILE_IO_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300782 server->rpages = (server->rsize + PAGE_SIZE - 1) >> PAGE_SHIFT;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700783
David Howells54ceac42006-08-22 20:06:13 -0400784 if (server->wsize > max_rpc_payload)
785 server->wsize = max_rpc_payload;
786 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
787 server->wsize = NFS_MAX_FILE_IO_SIZE;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300788 server->wpages = (server->wsize + PAGE_SIZE - 1) >> PAGE_SHIFT;
Ricardo Labiaga85e174b2010-10-20 00:17:58 -0400789
David Howells54ceac42006-08-22 20:06:13 -0400790 server->wtmult = nfs_block_bits(fsinfo->wtmult, NULL);
791
792 server->dtsize = nfs_block_size(fsinfo->dtpref, NULL);
Trond Myklebust1a34c8c92020-11-01 14:26:47 -0500793 if (server->dtsize > NFS_MAX_FILE_IO_SIZE)
794 server->dtsize = NFS_MAX_FILE_IO_SIZE;
David Howells54ceac42006-08-22 20:06:13 -0400795 if (server->dtsize > server->rsize)
796 server->dtsize = server->rsize;
797
798 if (server->flags & NFS_MOUNT_NOAC) {
799 server->acregmin = server->acregmax = 0;
800 server->acdirmin = server->acdirmax = 0;
801 }
802
803 server->maxfilesize = fsinfo->maxfilesize;
804
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700805 server->time_delta = fsinfo->time_delta;
Trond Myklebust7f08a332021-03-26 09:50:19 -0400806 server->change_attr_type = fsinfo->change_attr_type;
Ricardo Labiaga6b967242010-10-12 16:30:05 -0700807
Peng Tao2a92ee92015-09-26 02:24:37 +0800808 server->clone_blksize = fsinfo->clone_blksize;
David Howells54ceac42006-08-22 20:06:13 -0400809 /* We're airborne Set socket buffersize */
810 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
Frank van der Linden04a5da62020-06-23 22:38:54 +0000811
812#ifdef CONFIG_NFS_V4_2
813 /*
814 * Defaults until limited by the session parameters.
815 */
816 server->gxasize = min_t(unsigned int, raw_max_rpc_payload,
817 XATTR_SIZE_MAX);
818 server->sxasize = min_t(unsigned int, raw_max_rpc_payload,
819 XATTR_SIZE_MAX);
820 server->lxasize = min_t(unsigned int, raw_max_rpc_payload,
821 nfs42_listxattr_xdrsize(XATTR_LIST_MAX));
Frank van der Lindenb78ef842020-06-23 22:38:55 +0000822
823 if (fsinfo->xattr_support)
824 server->caps |= NFS_CAP_XATTR;
Frank van der Linden04a5da62020-06-23 22:38:54 +0000825#endif
David Howells54ceac42006-08-22 20:06:13 -0400826}
827
828/*
829 * Probe filesystem information, including the FSID on v2/v3
830 */
Anna Schumaker5fe12102021-10-14 13:55:08 -0400831static int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *mntfh, struct nfs_fattr *fattr)
David Howells54ceac42006-08-22 20:06:13 -0400832{
833 struct nfs_fsinfo fsinfo;
834 struct nfs_client *clp = server->nfs_client;
835 int error;
836
David Howells54ceac42006-08-22 20:06:13 -0400837 if (clp->rpc_ops->set_capabilities != NULL) {
838 error = clp->rpc_ops->set_capabilities(server, mntfh);
839 if (error < 0)
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400840 return error;
David Howells54ceac42006-08-22 20:06:13 -0400841 }
842
843 fsinfo.fattr = fattr;
Jeff Laytonca440c32016-09-15 14:40:49 -0400844 fsinfo.nlayouttypes = 0;
Jeff Layton3132e492016-08-10 15:58:24 -0400845 memset(fsinfo.layouttype, 0, sizeof(fsinfo.layouttype));
David Howells54ceac42006-08-22 20:06:13 -0400846 error = clp->rpc_ops->fsinfo(server, mntfh, &fsinfo);
847 if (error < 0)
Anna Schumaker4cbb9762017-04-07 14:15:06 -0400848 return error;
David Howells54ceac42006-08-22 20:06:13 -0400849
Kinglong Mee71f81e52015-07-01 11:55:50 +0800850 nfs_server_set_fsinfo(server, &fsinfo);
David Howells54ceac42006-08-22 20:06:13 -0400851
852 /* Get some general file system info */
853 if (server->namelen == 0) {
854 struct nfs_pathconf pathinfo;
855
856 pathinfo.fattr = fattr;
857 nfs_fattr_init(fattr);
858
859 if (clp->rpc_ops->pathconf(server, mntfh, &pathinfo) >= 0)
860 server->namelen = pathinfo.max_namelen;
861 }
862
David Howells54ceac42006-08-22 20:06:13 -0400863 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400864}
865
866/*
Anna Schumakere5731132021-10-14 13:55:05 -0400867 * Grab the destination's particulars, including lease expiry time.
868 *
869 * Returns zero if probe succeeded and retrieved FSID matches the FSID
870 * we have cached.
871 */
872int nfs_probe_server(struct nfs_server *server, struct nfs_fh *mntfh)
873{
874 struct nfs_fattr *fattr;
875 int error;
876
877 fattr = nfs_alloc_fattr();
878 if (fattr == NULL)
879 return -ENOMEM;
880
881 /* Sanity: the probe won't work if the destination server
882 * does not recognize the migrated FH. */
883 error = nfs_probe_fsinfo(server, mntfh, fattr);
884
885 nfs_free_fattr(fattr);
886 return error;
887}
888EXPORT_SYMBOL_GPL(nfs_probe_server);
889
890/*
David Howells54ceac42006-08-22 20:06:13 -0400891 * Copy useful information when duplicating a server record
892 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400893void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
David Howells54ceac42006-08-22 20:06:13 -0400894{
895 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -0400896 target->rsize = source->rsize;
897 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -0400898 target->acregmin = source->acregmin;
899 target->acregmax = source->acregmax;
900 target->acdirmin = source->acdirmin;
901 target->acdirmax = source->acdirmax;
902 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400903 target->options = source->options;
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400904 target->auth_info = source->auth_info;
Steve Dickson89a68142017-06-29 11:48:26 -0400905 target->port = source->port;
David Howells54ceac42006-08-22 20:06:13 -0400906}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400907EXPORT_SYMBOL_GPL(nfs_server_copy_userdata);
David Howells54ceac42006-08-22 20:06:13 -0400908
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400909void nfs_server_insert_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000910{
911 struct nfs_client *clp = server->nfs_client;
Chuck Lever73ea6662012-05-21 22:44:50 -0400912 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Chuck Leverfca52382010-12-24 01:32:32 +0000913
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000914 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000915 list_add_tail_rcu(&server->client_link, &clp->cl_superblocks);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +0000916 list_add_tail(&server->master_link, &nn->nfs_volume_list);
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000917 clear_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000918 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000919
920}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400921EXPORT_SYMBOL_GPL(nfs_server_insert_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000922
Chuck Lever32e62b72013-10-17 14:12:28 -0400923void nfs_server_remove_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000924{
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000925 struct nfs_client *clp = server->nfs_client;
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500926 struct nfs_net *nn;
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000927
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500928 if (clp == NULL)
929 return;
Chuck Lever73ea6662012-05-21 22:44:50 -0400930 nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000931 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000932 list_del_rcu(&server->client_link);
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500933 if (list_empty(&clp->cl_superblocks))
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000934 set_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Chuck Leverfca52382010-12-24 01:32:32 +0000935 list_del(&server->master_link);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000936 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000937
938 synchronize_rcu();
939}
Chuck Lever32e62b72013-10-17 14:12:28 -0400940EXPORT_SYMBOL_GPL(nfs_server_remove_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000941
David Howells54ceac42006-08-22 20:06:13 -0400942/*
943 * Allocate and initialise a server record
944 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400945struct nfs_server *nfs_alloc_server(void)
David Howells54ceac42006-08-22 20:06:13 -0400946{
947 struct nfs_server *server;
948
949 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
950 if (!server)
951 return NULL;
952
953 server->client = server->client_acl = ERR_PTR(-EINVAL);
954
955 /* Zero out the NFS state stuff */
956 INIT_LIST_HEAD(&server->client_link);
957 INIT_LIST_HEAD(&server->master_link);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000958 INIT_LIST_HEAD(&server->delegations);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400959 INIT_LIST_HEAD(&server->layouts);
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500960 INIT_LIST_HEAD(&server->state_owners_lru);
Olga Kornievskaia62164f32018-07-09 15:13:31 -0400961 INIT_LIST_HEAD(&server->ss_copies);
David Howells54ceac42006-08-22 20:06:13 -0400962
Steve Dicksonef818a22007-11-08 04:05:04 -0500963 atomic_set(&server->active, 0);
964
David Howells54ceac42006-08-22 20:06:13 -0400965 server->io_stats = nfs_alloc_iostats();
966 if (!server->io_stats) {
967 kfree(server);
968 return NULL;
969 }
970
Trond Myklebust7f08a332021-03-26 09:50:19 -0400971 server->change_attr_type = NFS4_CHANGE_TYPE_IS_UNDEFINED;
972
Trond Myklebust9157c31d2012-01-17 22:04:24 -0500973 ida_init(&server->openowner_id);
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500974 ida_init(&server->lockowner_id);
Fred Isamanf7e89172011-01-06 11:36:32 +0000975 pnfs_init_server(server);
Benjamin Coddington68ebf8f2017-09-22 07:57:10 -0400976 rpc_init_wait_queue(&server->uoc_rpcwaitq, "NFS UOC");
Fred Isamanf7e89172011-01-06 11:36:32 +0000977
David Howells54ceac42006-08-22 20:06:13 -0400978 return server;
979}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400980EXPORT_SYMBOL_GPL(nfs_alloc_server);
David Howells54ceac42006-08-22 20:06:13 -0400981
982/*
983 * Free up a server record
984 */
985void nfs_free_server(struct nfs_server *server)
986{
Chuck Leverfca52382010-12-24 01:32:32 +0000987 nfs_server_remove_lists(server);
David Howells54ceac42006-08-22 20:06:13 -0400988
989 if (server->destroy != NULL)
990 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -0500991
992 if (!IS_ERR(server->client_acl))
993 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -0400994 if (!IS_ERR(server->client))
995 rpc_shutdown_client(server->client);
996
997 nfs_put_client(server->nfs_client);
998
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500999 ida_destroy(&server->lockowner_id);
Trond Myklebust9157c31d2012-01-17 22:04:24 -05001000 ida_destroy(&server->openowner_id);
David Howells54ceac42006-08-22 20:06:13 -04001001 nfs_free_iostats(server->io_stats);
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001002 put_cred(server->cred);
David Howells54ceac42006-08-22 20:06:13 -04001003 kfree(server);
1004 nfs_release_automount_timer();
David Howells54ceac42006-08-22 20:06:13 -04001005}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001006EXPORT_SYMBOL_GPL(nfs_free_server);
David Howells54ceac42006-08-22 20:06:13 -04001007
1008/*
1009 * Create a version 2 or 3 volume record
1010 * - keyed on server and FSID
1011 */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001012struct nfs_server *nfs_create_server(struct fs_context *fc)
David Howells54ceac42006-08-22 20:06:13 -04001013{
Scott Mayhew62a55d02019-12-10 07:31:14 -05001014 struct nfs_fs_context *ctx = nfs_fc2context(fc);
David Howells54ceac42006-08-22 20:06:13 -04001015 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001016 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -04001017 int error;
1018
1019 server = nfs_alloc_server();
1020 if (!server)
1021 return ERR_PTR(-ENOMEM);
1022
Sargun Dhillond18a9d32020-11-12 02:09:51 -08001023 server->cred = get_cred(fc->cred);
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001024
Trond Myklebustfbca7792010-04-16 16:22:46 -04001025 error = -ENOMEM;
1026 fattr = nfs_alloc_fattr();
1027 if (fattr == NULL)
1028 goto error;
1029
David Howells54ceac42006-08-22 20:06:13 -04001030 /* Get a client representation */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001031 error = nfs_init_server(server, fc);
David Howells54ceac42006-08-22 20:06:13 -04001032 if (error < 0)
1033 goto error;
1034
David Howells54ceac42006-08-22 20:06:13 -04001035 /* Probe the root fh to retrieve its FSID */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001036 error = nfs_probe_fsinfo(server, ctx->mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001037 if (error < 0)
1038 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001039 if (server->nfs_client->rpc_ops->version == 3) {
1040 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1041 server->namelen = NFS3_MAXNAMLEN;
Scott Mayhew62a55d02019-12-10 07:31:14 -05001042 if (!(ctx->flags & NFS_MOUNT_NORDIRPLUS))
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001043 server->caps |= NFS_CAP_READDIRPLUS;
1044 } else {
1045 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1046 server->namelen = NFS2_MAXNAMLEN;
1047 }
1048
Trond Myklebustfbca7792010-04-16 16:22:46 -04001049 if (!(fattr->valid & NFS_ATTR_FATTR)) {
Scott Mayhew62a55d02019-12-10 07:31:14 -05001050 error = ctx->nfs_mod->rpc_ops->getattr(server, ctx->mntfh,
1051 fattr, NULL, NULL);
David Howells54ceac42006-08-22 20:06:13 -04001052 if (error < 0) {
1053 dprintk("nfs_create_server: getattr error = %d\n", -error);
1054 goto error;
1055 }
1056 }
Trond Myklebustfbca7792010-04-16 16:22:46 -04001057 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -04001058
David Howells6daabf12006-08-24 15:44:16 -04001059 dprintk("Server FSID: %llx:%llx\n",
1060 (unsigned long long) server->fsid.major,
1061 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001062
Chuck Leverfca52382010-12-24 01:32:32 +00001063 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001064 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001065 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001066 return server;
1067
1068error:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001069 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001070 nfs_free_server(server);
1071 return ERR_PTR(error);
1072}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001073EXPORT_SYMBOL_GPL(nfs_create_server);
David Howells54ceac42006-08-22 20:06:13 -04001074
David Howells54ceac42006-08-22 20:06:13 -04001075/*
1076 * Clone an NFS2, NFS3 or NFS4 server record
1077 */
1078struct nfs_server *nfs_clone_server(struct nfs_server *source,
1079 struct nfs_fh *fh,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -04001080 struct nfs_fattr *fattr,
1081 rpc_authflavor_t flavor)
David Howells54ceac42006-08-22 20:06:13 -04001082{
1083 struct nfs_server *server;
David Howells54ceac42006-08-22 20:06:13 -04001084 int error;
1085
David Howells54ceac42006-08-22 20:06:13 -04001086 server = nfs_alloc_server();
1087 if (!server)
1088 return ERR_PTR(-ENOMEM);
1089
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001090 server->cred = get_cred(source->cred);
1091
David Howells54ceac42006-08-22 20:06:13 -04001092 /* Copy data from the source */
1093 server->nfs_client = source->nfs_client;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -05001094 server->destroy = source->destroy;
Elena Reshetova212bf412017-10-20 12:53:38 +03001095 refcount_inc(&server->nfs_client->cl_count);
David Howells54ceac42006-08-22 20:06:13 -04001096 nfs_server_copy_userdata(server, source);
1097
1098 server->fsid = fattr->fsid;
1099
Trond Myklebust33170232007-12-20 16:03:59 -05001100 error = nfs_init_server_rpcclient(server,
1101 source->client->cl_timeout,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -04001102 flavor);
David Howells54ceac42006-08-22 20:06:13 -04001103 if (error < 0)
1104 goto out_free_server;
David Howells54ceac42006-08-22 20:06:13 -04001105
1106 /* probe the filesystem info for this server filesystem */
Anna Schumaker4d4cf8d2021-10-14 13:55:06 -04001107 error = nfs_probe_server(server, fh);
David Howells54ceac42006-08-22 20:06:13 -04001108 if (error < 0)
1109 goto out_free_server;
1110
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001111 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1112 server->namelen = NFS4_MAXNAMLEN;
1113
David Howells54ceac42006-08-22 20:06:13 -04001114 error = nfs_start_lockd(server);
1115 if (error < 0)
1116 goto out_free_server;
1117
Chuck Leverfca52382010-12-24 01:32:32 +00001118 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001119 server->mount_time = jiffies;
1120
David Howells54ceac42006-08-22 20:06:13 -04001121 return server;
1122
1123out_free_server:
1124 nfs_free_server(server);
David Howells54ceac42006-08-22 20:06:13 -04001125 return ERR_PTR(error);
1126}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001127EXPORT_SYMBOL_GPL(nfs_clone_server);
David Howells6aaca562006-08-22 20:06:13 -04001128
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001129void nfs_clients_init(struct net *net)
1130{
1131 struct nfs_net *nn = net_generic(net, nfs_net_id);
1132
1133 INIT_LIST_HEAD(&nn->nfs_client_list);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001134 INIT_LIST_HEAD(&nn->nfs_volume_list);
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001135#if IS_ENABLED(CONFIG_NFS_V4)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +00001136 idr_init(&nn->cb_ident_idr);
1137#endif
Trond Myklebust4c03ae42012-02-07 00:05:11 -05001138 spin_lock_init(&nn->nfs_client_lock);
Deepa Dinamani2f86e092016-10-01 16:46:26 -07001139 nn->boot_time = ktime_get_real();
Trond Myklebustbf11fbd2019-01-29 21:40:10 -05001140
1141 nfs_netns_sysfs_setup(nn, net);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001142}
1143
Trond Myklebust10b7a702019-02-06 09:32:50 -05001144void nfs_clients_exit(struct net *net)
1145{
1146 struct nfs_net *nn = net_generic(net, nfs_net_id);
1147
Trond Myklebustbf11fbd2019-01-29 21:40:10 -05001148 nfs_netns_sysfs_destroy(nn);
Trond Myklebust10b7a702019-02-06 09:32:50 -05001149 nfs_cleanup_cb_ident_idr(net);
1150 WARN_ON_ONCE(!list_empty(&nn->nfs_client_list));
1151 WARN_ON_ONCE(!list_empty(&nn->nfs_volume_list));
1152}
1153
David Howells6aaca562006-08-22 20:06:13 -04001154#ifdef CONFIG_PROC_FS
David Howells6aaca562006-08-22 20:06:13 -04001155static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1156static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1157static void nfs_server_list_stop(struct seq_file *p, void *v);
1158static int nfs_server_list_show(struct seq_file *m, void *v);
1159
James Morris88e9d342009-09-22 16:43:43 -07001160static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001161 .start = nfs_server_list_start,
1162 .next = nfs_server_list_next,
1163 .stop = nfs_server_list_stop,
1164 .show = nfs_server_list_show,
1165};
1166
David Howells6aaca562006-08-22 20:06:13 -04001167static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1168static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1169static void nfs_volume_list_stop(struct seq_file *p, void *v);
1170static int nfs_volume_list_show(struct seq_file *m, void *v);
1171
James Morris88e9d342009-09-22 16:43:43 -07001172static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001173 .start = nfs_volume_list_start,
1174 .next = nfs_volume_list_next,
1175 .stop = nfs_volume_list_stop,
1176 .show = nfs_volume_list_show,
1177};
1178
David Howells6aaca562006-08-22 20:06:13 -04001179/*
1180 * set up the iterator to start reading from the server list and return the first item
1181 */
1182static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001183 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001184{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001185 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001186
David Howells6aaca562006-08-22 20:06:13 -04001187 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001188 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001189 return seq_list_start_head(&nn->nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001190}
1191
1192/*
1193 * move to next server
1194 */
1195static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1196{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001197 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001198
1199 return seq_list_next(v, &nn->nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001200}
1201
1202/*
1203 * clean up after reading from the transports list
1204 */
1205static void nfs_server_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001206 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001207{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001208 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001209
1210 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001211}
1212
1213/*
1214 * display a header line followed by a load of call lines
1215 */
1216static int nfs_server_list_show(struct seq_file *m, void *v)
1217{
1218 struct nfs_client *clp;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001219 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001220
1221 /* display header on line 1 */
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001222 if (v == &nn->nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001223 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1224 return 0;
1225 }
1226
1227 /* display one transport per line on subsequent lines */
1228 clp = list_entry(v, struct nfs_client, cl_share_link);
1229
Malahal Naineni940aab42011-09-20 17:27:14 -07001230 /* Check if the client is initialized */
1231 if (clp->cl_cons_state != NFS_CS_READY)
1232 return 0;
1233
Trond Myklebust2446ab62012-03-01 17:00:56 -05001234 rcu_read_lock();
Chuck Lever5d8515c2007-12-10 14:57:16 -05001235 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001236 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001237 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1238 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
Elena Reshetova212bf412017-10-20 12:53:38 +03001239 refcount_read(&clp->cl_count),
David Howells6aaca562006-08-22 20:06:13 -04001240 clp->cl_hostname);
Trond Myklebust2446ab62012-03-01 17:00:56 -05001241 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001242
1243 return 0;
1244}
1245
1246/*
David Howells6aaca562006-08-22 20:06:13 -04001247 * set up the iterator to start reading from the volume list and return the first item
1248 */
1249static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001250 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001251{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001252 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001253
David Howells6aaca562006-08-22 20:06:13 -04001254 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001255 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001256 return seq_list_start_head(&nn->nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001257}
1258
1259/*
1260 * move to next volume
1261 */
1262static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1263{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001264 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001265
1266 return seq_list_next(v, &nn->nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001267}
1268
1269/*
1270 * clean up after reading from the transports list
1271 */
1272static void nfs_volume_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001273 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001274{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001275 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001276
1277 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001278}
1279
1280/*
1281 * display a header line followed by a load of call lines
1282 */
1283static int nfs_volume_list_show(struct seq_file *m, void *v)
1284{
1285 struct nfs_server *server;
1286 struct nfs_client *clp;
Kinglong Meedf05a492015-06-13 10:07:00 +08001287 char dev[13]; // 8 for 2^24, 1 for ':', 3 for 2^8, 1 for '\0'
1288 char fsid[34]; // 2 * 16 for %llx, 1 for ':', 1 for '\0'
Eric W. Biederman65b38852014-07-31 04:35:20 -07001289 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001290
1291 /* display header on line 1 */
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001292 if (v == &nn->nfs_volume_list) {
Kinglong Meedf05a492015-06-13 10:07:00 +08001293 seq_puts(m, "NV SERVER PORT DEV FSID"
1294 " FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001295 return 0;
1296 }
1297 /* display one transport per line on subsequent lines */
1298 server = list_entry(v, struct nfs_server, master_link);
1299 clp = server->nfs_client;
1300
Kinglong Meedf05a492015-06-13 10:07:00 +08001301 snprintf(dev, sizeof(dev), "%u:%u",
David Howells6aaca562006-08-22 20:06:13 -04001302 MAJOR(server->s_dev), MINOR(server->s_dev));
1303
Kinglong Meedf05a492015-06-13 10:07:00 +08001304 snprintf(fsid, sizeof(fsid), "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001305 (unsigned long long) server->fsid.major,
1306 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001307
Trond Myklebust2446ab62012-03-01 17:00:56 -05001308 rcu_read_lock();
Kinglong Meedf05a492015-06-13 10:07:00 +08001309 seq_printf(m, "v%u %s %s %-12s %-33s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001310 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001311 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1312 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001313 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001314 fsid,
1315 nfs_server_fscache_state(server));
Trond Myklebust2446ab62012-03-01 17:00:56 -05001316 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001317
1318 return 0;
1319}
1320
Eric W. Biederman65b38852014-07-31 04:35:20 -07001321int nfs_fs_proc_net_init(struct net *net)
1322{
1323 struct nfs_net *nn = net_generic(net, nfs_net_id);
1324 struct proc_dir_entry *p;
1325
1326 nn->proc_nfsfs = proc_net_mkdir(net, "nfsfs", net->proc_net);
1327 if (!nn->proc_nfsfs)
1328 goto error_0;
1329
1330 /* a file of servers with which we're dealing */
Christoph Hellwigc3506372018-04-10 19:42:55 +02001331 p = proc_create_net("servers", S_IFREG|S_IRUGO, nn->proc_nfsfs,
1332 &nfs_server_list_ops, sizeof(struct seq_net_private));
Eric W. Biederman65b38852014-07-31 04:35:20 -07001333 if (!p)
1334 goto error_1;
1335
1336 /* a file of volumes that we have mounted */
Christoph Hellwigc3506372018-04-10 19:42:55 +02001337 p = proc_create_net("volumes", S_IFREG|S_IRUGO, nn->proc_nfsfs,
1338 &nfs_volume_list_ops, sizeof(struct seq_net_private));
Eric W. Biederman65b38852014-07-31 04:35:20 -07001339 if (!p)
Cong Wang21e81002014-09-08 16:17:55 -07001340 goto error_1;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001341 return 0;
1342
Eric W. Biederman65b38852014-07-31 04:35:20 -07001343error_1:
Cong Wang21e81002014-09-08 16:17:55 -07001344 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001345error_0:
1346 return -ENOMEM;
1347}
1348
1349void nfs_fs_proc_net_exit(struct net *net)
1350{
Cong Wang21e81002014-09-08 16:17:55 -07001351 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001352}
1353
David Howells6aaca562006-08-22 20:06:13 -04001354/*
1355 * initialise the /proc/fs/nfsfs/ directory
1356 */
1357int __init nfs_fs_proc_init(void)
1358{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001359 if (!proc_mkdir("fs/nfsfs", NULL))
David Howells6aaca562006-08-22 20:06:13 -04001360 goto error_0;
1361
David Howells6aaca562006-08-22 20:06:13 -04001362 /* a file of servers with which we're dealing */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001363 if (!proc_symlink("fs/nfsfs/servers", NULL, "../../net/nfsfs/servers"))
David Howells6aaca562006-08-22 20:06:13 -04001364 goto error_1;
1365
David Howells6aaca562006-08-22 20:06:13 -04001366 /* a file of volumes that we have mounted */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001367 if (!proc_symlink("fs/nfsfs/volumes", NULL, "../../net/nfsfs/volumes"))
1368 goto error_1;
David Howells6aaca562006-08-22 20:06:13 -04001369
Kinglong Mee6a062a32015-07-01 23:00:29 +08001370 return 0;
David Howells6aaca562006-08-22 20:06:13 -04001371error_1:
Kinglong Mee6a062a32015-07-01 23:00:29 +08001372 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001373error_0:
1374 return -ENOMEM;
1375}
1376
1377/*
1378 * clean up the /proc/fs/nfsfs/ directory
1379 */
1380void nfs_fs_proc_exit(void)
1381{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001382 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001383}
1384
1385#endif /* CONFIG_PROC_FS */