blob: d1f34229e11ab528129988eac0f0a3fb9f13a4d0 [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 Myklebust468d1262022-02-02 18:52:01 -0500180 clp->cl_flags = cl_init->init_flags;
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500181 clp->cl_proto = cl_init->proto;
Trond Myklebust66190792017-04-27 11:13:40 -0400182 clp->cl_nconnect = cl_init->nconnect;
Olga Kornievskaia7e134202021-08-27 14:37:17 -0400183 clp->cl_max_connect = cl_init->max_connect ? cl_init->max_connect : 1;
Chuck Lever73ea6662012-05-21 22:44:50 -0400184 clp->cl_net = get_net(cl_init->net);
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500185
NeilBrown5e169232018-12-03 11:30:30 +1100186 clp->cl_principal = "*";
David Howells24c8dbb2006-08-22 20:06:10 -0400187 return clp;
188
Benny Halevy71468512009-04-01 09:22:56 -0400189error_cleanup:
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400190 put_nfs_version(clp->cl_nfs_mod);
Alexey Khoroshilov1f70ef92014-07-18 03:11:45 +0400191error_dealloc:
David Howells24c8dbb2006-08-22 20:06:10 -0400192 kfree(clp);
193error_0:
Chuck Levera21bdd92009-06-17 18:02:10 -0700194 return ERR_PTR(err);
David Howells24c8dbb2006-08-22 20:06:10 -0400195}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400196EXPORT_SYMBOL_GPL(nfs_alloc_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400197
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400198#if IS_ENABLED(CONFIG_NFS_V4)
Trond Myklebust10b7a702019-02-06 09:32:50 -0500199static void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000200{
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000201 struct nfs_net *nn = net_generic(net, nfs_net_id);
202
203 idr_destroy(&nn->cb_ident_idr);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000204}
205
206/* nfs_client_lock held */
207static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
208{
Chuck Lever73ea6662012-05-21 22:44:50 -0400209 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000210
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000211 if (clp->cl_cb_ident)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +0000212 idr_remove(&nn->cb_ident_idr, clp->cl_cb_ident);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000213}
214
Fred Isamanf7e89172011-01-06 11:36:32 +0000215static void pnfs_init_server(struct nfs_server *server)
216{
217 rpc_init_wait_queue(&server->roc_rpcwaitq, "pNFS ROC");
218}
219
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800220#else
Trond Myklebust10b7a702019-02-06 09:32:50 -0500221static void nfs_cleanup_cb_ident_idr(struct net *net)
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000222{
223}
224
225static void nfs_cb_idr_remove_locked(struct nfs_client *clp)
226{
227}
Fred Isamanf7e89172011-01-06 11:36:32 +0000228
229static void pnfs_init_server(struct nfs_server *server)
230{
231}
232
Alexandros Batsakis888ef2e2010-02-05 03:45:03 -0800233#endif /* CONFIG_NFS_V4 */
234
235/*
David Howells24c8dbb2006-08-22 20:06:10 -0400236 * Destroy a shared client record
237 */
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400238void nfs_free_client(struct nfs_client *clp)
David Howells24c8dbb2006-08-22 20:06:10 -0400239{
David Howells24c8dbb2006-08-22 20:06:10 -0400240 /* -EIO all pending I/O */
241 if (!IS_ERR(clp->cl_rpcclient))
242 rpc_shutdown_client(clp->cl_rpcclient);
243
Chuck Lever73ea6662012-05-21 22:44:50 -0400244 put_net(clp->cl_net);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400245 put_nfs_version(clp->cl_nfs_mod);
David Howells24c8dbb2006-08-22 20:06:10 -0400246 kfree(clp->cl_hostname);
Jeff Laytonf11b2a12014-06-21 20:52:17 -0400247 kfree(clp->cl_acceptor);
David Howells24c8dbb2006-08-22 20:06:10 -0400248 kfree(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400249}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400250EXPORT_SYMBOL_GPL(nfs_free_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400251
252/*
253 * Release a reference to a shared client record
254 */
255void nfs_put_client(struct nfs_client *clp)
256{
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000257 struct nfs_net *nn;
258
David Howells27ba8512006-07-30 14:40:56 -0400259 if (!clp)
260 return;
261
Chuck Lever73ea6662012-05-21 22:44:50 -0400262 nn = net_generic(clp->cl_net, nfs_net_id);
David Howells24c8dbb2006-08-22 20:06:10 -0400263
Elena Reshetova212bf412017-10-20 12:53:38 +0300264 if (refcount_dec_and_lock(&clp->cl_count, &nn->nfs_client_lock)) {
David Howells24c8dbb2006-08-22 20:06:10 -0400265 list_del(&clp->cl_share_link);
Andy Adamsonf4eecd52011-01-06 02:04:30 +0000266 nfs_cb_idr_remove_locked(clp);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000267 spin_unlock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400268
Trond Myklebust1fea73a82012-10-15 11:24:57 -0400269 WARN_ON_ONCE(!list_empty(&clp->cl_superblocks));
David Howells24c8dbb2006-08-22 20:06:10 -0400270
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400271 clp->rpc_ops->free_client(clp);
David Howells24c8dbb2006-08-22 20:06:10 -0400272 }
273}
Andy Adamson16b374c2010-10-20 00:18:04 -0400274EXPORT_SYMBOL_GPL(nfs_put_client);
David Howells24c8dbb2006-08-22 20:06:10 -0400275
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500276/*
Trond Myklebustc81468a2007-12-14 14:56:05 -0500277 * Find an nfs_client on the list that matches the initialisation data
278 * that is supplied.
279 */
280static struct nfs_client *nfs_match_client(const struct nfs_client_initdata *data)
David Howells24c8dbb2006-08-22 20:06:10 -0400281{
282 struct nfs_client *clp;
Ian Dalld7371c42009-03-10 20:33:22 -0400283 const struct sockaddr *sap = data->addr;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000284 struct nfs_net *nn = net_generic(data->net, nfs_net_id);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200285 int error;
David Howells24c8dbb2006-08-22 20:06:10 -0400286
Scott Mayhewc1566182017-12-05 13:55:44 -0500287again:
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000288 list_for_each_entry(clp, &nn->nfs_client_list, cl_share_link) {
Ian Dalld7371c42009-03-10 20:33:22 -0400289 const struct sockaddr *clap = (struct sockaddr *)&clp->cl_addr;
Trond Myklebust13bbc062006-10-19 23:28:40 -0700290 /* Don't match clients that failed to initialise properly */
291 if (clp->cl_cons_state < 0)
292 continue;
293
Scott Mayhewc1566182017-12-05 13:55:44 -0500294 /* If a client is still initializing then we need to wait */
295 if (clp->cl_cons_state > NFS_CS_READY) {
296 refcount_inc(&clp->cl_count);
297 spin_unlock(&nn->nfs_client_lock);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200298 error = nfs_wait_client_init_complete(clp);
Scott Mayhewc1566182017-12-05 13:55:44 -0500299 nfs_put_client(clp);
Benjamin Coddingtonc2601212019-05-09 07:25:21 -0400300 spin_lock(&nn->nfs_client_lock);
Roberto Bergantinos Corpas950a5782019-04-25 15:36:51 +0200301 if (error < 0)
302 return ERR_PTR(error);
Scott Mayhewc1566182017-12-05 13:55:44 -0500303 goto again;
304 }
305
David Howells24c8dbb2006-08-22 20:06:10 -0400306 /* Different NFS versions cannot share the same nfs_client */
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400307 if (clp->rpc_ops != data->nfs_mod->rpc_ops)
David Howells24c8dbb2006-08-22 20:06:10 -0400308 continue;
309
Trond Myklebust59dca3b2008-01-03 16:29:06 -0500310 if (clp->cl_proto != data->proto)
311 continue;
Benny Halevy5aae4a92009-04-01 09:21:50 -0400312 /* Match nfsv4 minorversion */
313 if (clp->cl_minorversion != data->minorversion)
314 continue;
Trond Myklebust52f98f1a22019-10-17 09:49:45 -0400315
316 /* Match request for a dedicated DS */
317 if (test_bit(NFS_CS_DS, &data->init_flags) !=
318 test_bit(NFS_CS_DS, &clp->cl_flags))
319 continue;
320
Trond Myklebustc81468a2007-12-14 14:56:05 -0500321 /* Match the full socket address */
Anna Schumakerd8efa4e2015-07-13 14:01:28 -0400322 if (!rpc_cmp_addr_port(sap, clap))
Andy Adamson04ea1b32016-09-09 09:22:27 -0400323 /* Match all xprt_switch full socket addresses */
Petr Vandrovec8ef32952016-11-07 12:11:29 -0800324 if (IS_ERR(clp->cl_rpcclient) ||
325 !rpc_clnt_xprt_switch_has_addr(clp->cl_rpcclient,
Andy Adamson04ea1b32016-09-09 09:22:27 -0400326 sap))
327 continue;
David Howells24c8dbb2006-08-22 20:06:10 -0400328
Elena Reshetova212bf412017-10-20 12:53:38 +0300329 refcount_inc(&clp->cl_count);
Trond Myklebustc81468a2007-12-14 14:56:05 -0500330 return clp;
David Howells24c8dbb2006-08-22 20:06:10 -0400331 }
David Howells24c8dbb2006-08-22 20:06:10 -0400332 return NULL;
David Howells24c8dbb2006-08-22 20:06:10 -0400333}
334
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500335/*
336 * Return true if @clp is done initializing, false if still working on it.
337 *
338 * Use nfs_client_init_status to check if it was successful.
339 */
340bool nfs_client_init_is_complete(const struct nfs_client *clp)
Trond Myklebust4697bd52012-05-23 13:24:36 -0400341{
Trond Myklebust48d66b92015-03-03 20:28:59 -0500342 return clp->cl_cons_state <= NFS_CS_READY;
Trond Myklebust4697bd52012-05-23 13:24:36 -0400343}
Weston Andros Adamsona33e4b02017-03-09 12:56:48 -0500344EXPORT_SYMBOL_GPL(nfs_client_init_is_complete);
345
346/*
347 * Return 0 if @clp was successfully initialized, -errno otherwise.
348 *
349 * This must be called *after* nfs_client_init_is_complete() returns true,
350 * otherwise it will pop WARN_ON_ONCE and return -EINVAL
351 */
352int nfs_client_init_status(const struct nfs_client *clp)
353{
354 /* called without checking nfs_client_init_is_complete */
355 if (clp->cl_cons_state > NFS_CS_READY) {
356 WARN_ON_ONCE(1);
357 return -EINVAL;
358 }
359 return clp->cl_cons_state;
360}
361EXPORT_SYMBOL_GPL(nfs_client_init_status);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400362
363int nfs_wait_client_init_complete(const struct nfs_client *clp)
364{
365 return wait_event_killable(nfs_client_active_wq,
366 nfs_client_init_is_complete(clp));
367}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400368EXPORT_SYMBOL_GPL(nfs_wait_client_init_complete);
Trond Myklebust4697bd52012-05-23 13:24:36 -0400369
David Howells24c8dbb2006-08-22 20:06:10 -0400370/*
Chuck Leverf4117032012-05-21 22:45:50 -0400371 * Found an existing client. Make sure it's ready before returning.
372 */
373static struct nfs_client *
374nfs_found_client(const struct nfs_client_initdata *cl_init,
375 struct nfs_client *clp)
376{
377 int error;
378
Trond Myklebust4697bd52012-05-23 13:24:36 -0400379 error = nfs_wait_client_init_complete(clp);
Chuck Leverf4117032012-05-21 22:45:50 -0400380 if (error < 0) {
381 nfs_put_client(clp);
382 return ERR_PTR(-ERESTARTSYS);
383 }
384
385 if (clp->cl_cons_state < NFS_CS_READY) {
386 error = clp->cl_cons_state;
387 nfs_put_client(clp);
388 return ERR_PTR(error);
389 }
390
Trond Myklebust54ac4712012-05-23 13:26:10 -0400391 smp_rmb();
Chuck Leverf4117032012-05-21 22:45:50 -0400392 return clp;
393}
394
395/*
David Howells24c8dbb2006-08-22 20:06:10 -0400396 * Look up a client by IP address and protocol version
397 * - creates a new record if one doesn't yet exist
398 */
Anna Schumaker7d38de32016-11-17 15:15:55 -0500399struct nfs_client *nfs_get_client(const struct nfs_client_initdata *cl_init)
David Howells24c8dbb2006-08-22 20:06:10 -0400400{
401 struct nfs_client *clp, *new = NULL;
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +0000402 struct nfs_net *nn = net_generic(cl_init->net, nfs_net_id);
Bryan Schumakerab7017a2012-07-30 16:05:16 -0400403 const struct nfs_rpc_ops *rpc_ops = cl_init->nfs_mod->rpc_ops;
David Howells24c8dbb2006-08-22 20:06:10 -0400404
Peng Tao31434f42014-07-08 11:45:48 +0800405 if (cl_init->hostname == NULL) {
406 WARN_ON(1);
Dan Carpenter09226e82021-06-03 15:37:53 +0300407 return ERR_PTR(-EINVAL);
Peng Tao31434f42014-07-08 11:45:48 +0800408 }
409
David Howells24c8dbb2006-08-22 20:06:10 -0400410 /* see if the client already exists */
411 do {
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000412 spin_lock(&nn->nfs_client_lock);
David Howells24c8dbb2006-08-22 20:06:10 -0400413
Trond Myklebustc81468a2007-12-14 14:56:05 -0500414 clp = nfs_match_client(cl_init);
Chuck Leverf4117032012-05-21 22:45:50 -0400415 if (clp) {
416 spin_unlock(&nn->nfs_client_lock);
417 if (new)
Bryan Schumakercdb7ece2012-06-20 15:53:45 -0400418 new->rpc_ops->free_client(new);
Benjamin Coddington9f7761c2019-06-11 12:57:52 -0400419 if (IS_ERR(clp))
420 return clp;
Chuck Leverf4117032012-05-21 22:45:50 -0400421 return nfs_found_client(cl_init, clp);
422 }
Chuck Lever8cab4c32012-05-21 22:45:59 -0400423 if (new) {
Chuck Lever05f4c352012-09-14 17:24:32 -0400424 list_add_tail(&new->cl_share_link,
425 &nn->nfs_client_list);
Chuck Lever8cab4c32012-05-21 22:45:59 -0400426 spin_unlock(&nn->nfs_client_lock);
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
Olga Kornievskaia1976b2b2022-01-12 10:27:38 -0500859 if (clp->rpc_ops->discover_trunking != NULL &&
860 (server->caps & NFS_CAP_FS_LOCATIONS)) {
861 error = clp->rpc_ops->discover_trunking(server, mntfh);
862 if (error < 0)
863 return error;
864 }
865
David Howells54ceac42006-08-22 20:06:13 -0400866 return 0;
David Howells54ceac42006-08-22 20:06:13 -0400867}
868
869/*
Anna Schumakere5731132021-10-14 13:55:05 -0400870 * Grab the destination's particulars, including lease expiry time.
871 *
872 * Returns zero if probe succeeded and retrieved FSID matches the FSID
873 * we have cached.
874 */
875int nfs_probe_server(struct nfs_server *server, struct nfs_fh *mntfh)
876{
877 struct nfs_fattr *fattr;
878 int error;
879
880 fattr = nfs_alloc_fattr();
881 if (fattr == NULL)
882 return -ENOMEM;
883
884 /* Sanity: the probe won't work if the destination server
885 * does not recognize the migrated FH. */
886 error = nfs_probe_fsinfo(server, mntfh, fattr);
887
888 nfs_free_fattr(fattr);
889 return error;
890}
891EXPORT_SYMBOL_GPL(nfs_probe_server);
892
893/*
David Howells54ceac42006-08-22 20:06:13 -0400894 * Copy useful information when duplicating a server record
895 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400896void nfs_server_copy_userdata(struct nfs_server *target, struct nfs_server *source)
David Howells54ceac42006-08-22 20:06:13 -0400897{
898 target->flags = source->flags;
Chuck Lever356e76b2010-04-22 15:35:56 -0400899 target->rsize = source->rsize;
900 target->wsize = source->wsize;
David Howells54ceac42006-08-22 20:06:13 -0400901 target->acregmin = source->acregmin;
902 target->acregmax = source->acregmax;
903 target->acdirmin = source->acdirmin;
904 target->acdirmax = source->acdirmax;
905 target->caps = source->caps;
David Howells2df54802009-09-23 14:36:39 -0400906 target->options = source->options;
Weston Andros Adamson0f5f49b2013-10-18 15:15:17 -0400907 target->auth_info = source->auth_info;
Steve Dickson89a68142017-06-29 11:48:26 -0400908 target->port = source->port;
David Howells54ceac42006-08-22 20:06:13 -0400909}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400910EXPORT_SYMBOL_GPL(nfs_server_copy_userdata);
David Howells54ceac42006-08-22 20:06:13 -0400911
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400912void nfs_server_insert_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000913{
914 struct nfs_client *clp = server->nfs_client;
Chuck Lever73ea6662012-05-21 22:44:50 -0400915 struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id);
Chuck Leverfca52382010-12-24 01:32:32 +0000916
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000917 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000918 list_add_tail_rcu(&server->client_link, &clp->cl_superblocks);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +0000919 list_add_tail(&server->master_link, &nn->nfs_volume_list);
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000920 clear_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000921 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000922
923}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400924EXPORT_SYMBOL_GPL(nfs_server_insert_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000925
Chuck Lever32e62b72013-10-17 14:12:28 -0400926void nfs_server_remove_lists(struct nfs_server *server)
Chuck Leverfca52382010-12-24 01:32:32 +0000927{
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000928 struct nfs_client *clp = server->nfs_client;
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500929 struct nfs_net *nn;
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000930
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500931 if (clp == NULL)
932 return;
Chuck Lever73ea6662012-05-21 22:44:50 -0400933 nn = net_generic(clp->cl_net, nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000934 spin_lock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000935 list_del_rcu(&server->client_link);
Trond Myklebust4c03ae42012-02-07 00:05:11 -0500936 if (list_empty(&clp->cl_superblocks))
Andy Adamsond3b4c9d2011-03-01 01:34:10 +0000937 set_bit(NFS_CS_STOP_RENEW, &clp->cl_res_state);
Chuck Leverfca52382010-12-24 01:32:32 +0000938 list_del(&server->master_link);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +0000939 spin_unlock(&nn->nfs_client_lock);
Chuck Leverfca52382010-12-24 01:32:32 +0000940
941 synchronize_rcu();
942}
Chuck Lever32e62b72013-10-17 14:12:28 -0400943EXPORT_SYMBOL_GPL(nfs_server_remove_lists);
Chuck Leverfca52382010-12-24 01:32:32 +0000944
David Howells54ceac42006-08-22 20:06:13 -0400945/*
946 * Allocate and initialise a server record
947 */
Bryan Schumakerfcf10392012-07-16 16:39:18 -0400948struct nfs_server *nfs_alloc_server(void)
David Howells54ceac42006-08-22 20:06:13 -0400949{
950 struct nfs_server *server;
951
952 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
953 if (!server)
954 return NULL;
955
956 server->client = server->client_acl = ERR_PTR(-EINVAL);
957
958 /* Zero out the NFS state stuff */
959 INIT_LIST_HEAD(&server->client_link);
960 INIT_LIST_HEAD(&server->master_link);
Chuck Leverd3978bb2010-12-24 01:33:04 +0000961 INIT_LIST_HEAD(&server->delegations);
Weston Andros Adamson6382a442011-06-01 16:44:44 -0400962 INIT_LIST_HEAD(&server->layouts);
Chuck Lever0aaaf5c2011-12-06 16:13:48 -0500963 INIT_LIST_HEAD(&server->state_owners_lru);
Olga Kornievskaia62164f32018-07-09 15:13:31 -0400964 INIT_LIST_HEAD(&server->ss_copies);
David Howells54ceac42006-08-22 20:06:13 -0400965
Steve Dicksonef818a22007-11-08 04:05:04 -0500966 atomic_set(&server->active, 0);
967
David Howells54ceac42006-08-22 20:06:13 -0400968 server->io_stats = nfs_alloc_iostats();
969 if (!server->io_stats) {
970 kfree(server);
971 return NULL;
972 }
973
Trond Myklebust7f08a332021-03-26 09:50:19 -0400974 server->change_attr_type = NFS4_CHANGE_TYPE_IS_UNDEFINED;
975
Trond Myklebust9157c31d2012-01-17 22:04:24 -0500976 ida_init(&server->openowner_id);
Trond Myklebustd2d7ce22012-01-17 22:04:25 -0500977 ida_init(&server->lockowner_id);
Fred Isamanf7e89172011-01-06 11:36:32 +0000978 pnfs_init_server(server);
Benjamin Coddington68ebf8f2017-09-22 07:57:10 -0400979 rpc_init_wait_queue(&server->uoc_rpcwaitq, "NFS UOC");
Fred Isamanf7e89172011-01-06 11:36:32 +0000980
David Howells54ceac42006-08-22 20:06:13 -0400981 return server;
982}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400983EXPORT_SYMBOL_GPL(nfs_alloc_server);
David Howells54ceac42006-08-22 20:06:13 -0400984
985/*
986 * Free up a server record
987 */
988void nfs_free_server(struct nfs_server *server)
989{
Chuck Leverfca52382010-12-24 01:32:32 +0000990 nfs_server_remove_lists(server);
David Howells54ceac42006-08-22 20:06:13 -0400991
992 if (server->destroy != NULL)
993 server->destroy(server);
Trond Myklebust5cef3382007-12-11 22:01:56 -0500994
995 if (!IS_ERR(server->client_acl))
996 rpc_shutdown_client(server->client_acl);
David Howells54ceac42006-08-22 20:06:13 -0400997 if (!IS_ERR(server->client))
998 rpc_shutdown_client(server->client);
999
1000 nfs_put_client(server->nfs_client);
1001
Trond Myklebustd2d7ce22012-01-17 22:04:25 -05001002 ida_destroy(&server->lockowner_id);
Trond Myklebust9157c31d2012-01-17 22:04:24 -05001003 ida_destroy(&server->openowner_id);
David Howells54ceac42006-08-22 20:06:13 -04001004 nfs_free_iostats(server->io_stats);
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001005 put_cred(server->cred);
David Howells54ceac42006-08-22 20:06:13 -04001006 kfree(server);
1007 nfs_release_automount_timer();
David Howells54ceac42006-08-22 20:06:13 -04001008}
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001009EXPORT_SYMBOL_GPL(nfs_free_server);
David Howells54ceac42006-08-22 20:06:13 -04001010
1011/*
1012 * Create a version 2 or 3 volume record
1013 * - keyed on server and FSID
1014 */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001015struct nfs_server *nfs_create_server(struct fs_context *fc)
David Howells54ceac42006-08-22 20:06:13 -04001016{
Scott Mayhew62a55d02019-12-10 07:31:14 -05001017 struct nfs_fs_context *ctx = nfs_fc2context(fc);
David Howells54ceac42006-08-22 20:06:13 -04001018 struct nfs_server *server;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001019 struct nfs_fattr *fattr;
David Howells54ceac42006-08-22 20:06:13 -04001020 int error;
1021
1022 server = nfs_alloc_server();
1023 if (!server)
1024 return ERR_PTR(-ENOMEM);
1025
Sargun Dhillond18a9d32020-11-12 02:09:51 -08001026 server->cred = get_cred(fc->cred);
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001027
Trond Myklebustfbca7792010-04-16 16:22:46 -04001028 error = -ENOMEM;
1029 fattr = nfs_alloc_fattr();
1030 if (fattr == NULL)
1031 goto error;
1032
David Howells54ceac42006-08-22 20:06:13 -04001033 /* Get a client representation */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001034 error = nfs_init_server(server, fc);
David Howells54ceac42006-08-22 20:06:13 -04001035 if (error < 0)
1036 goto error;
1037
David Howells54ceac42006-08-22 20:06:13 -04001038 /* Probe the root fh to retrieve its FSID */
Scott Mayhew62a55d02019-12-10 07:31:14 -05001039 error = nfs_probe_fsinfo(server, ctx->mntfh, fattr);
David Howells54ceac42006-08-22 20:06:13 -04001040 if (error < 0)
1041 goto error;
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001042 if (server->nfs_client->rpc_ops->version == 3) {
1043 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
1044 server->namelen = NFS3_MAXNAMLEN;
Scott Mayhew62a55d02019-12-10 07:31:14 -05001045 if (!(ctx->flags & NFS_MOUNT_NORDIRPLUS))
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001046 server->caps |= NFS_CAP_READDIRPLUS;
1047 } else {
1048 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
1049 server->namelen = NFS2_MAXNAMLEN;
1050 }
1051
Trond Myklebustfbca7792010-04-16 16:22:46 -04001052 if (!(fattr->valid & NFS_ATTR_FATTR)) {
Scott Mayhew62a55d02019-12-10 07:31:14 -05001053 error = ctx->nfs_mod->rpc_ops->getattr(server, ctx->mntfh,
Anna Schumaker2ef61e02021-10-22 13:11:07 -04001054 fattr, NULL);
David Howells54ceac42006-08-22 20:06:13 -04001055 if (error < 0) {
1056 dprintk("nfs_create_server: getattr error = %d\n", -error);
1057 goto error;
1058 }
1059 }
Trond Myklebustfbca7792010-04-16 16:22:46 -04001060 memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid));
David Howells54ceac42006-08-22 20:06:13 -04001061
David Howells6daabf12006-08-24 15:44:16 -04001062 dprintk("Server FSID: %llx:%llx\n",
1063 (unsigned long long) server->fsid.major,
1064 (unsigned long long) server->fsid.minor);
David Howells54ceac42006-08-22 20:06:13 -04001065
Chuck Leverfca52382010-12-24 01:32:32 +00001066 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001067 server->mount_time = jiffies;
Trond Myklebustfbca7792010-04-16 16:22:46 -04001068 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001069 return server;
1070
1071error:
Trond Myklebustfbca7792010-04-16 16:22:46 -04001072 nfs_free_fattr(fattr);
David Howells54ceac42006-08-22 20:06:13 -04001073 nfs_free_server(server);
1074 return ERR_PTR(error);
1075}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001076EXPORT_SYMBOL_GPL(nfs_create_server);
David Howells54ceac42006-08-22 20:06:13 -04001077
David Howells54ceac42006-08-22 20:06:13 -04001078/*
1079 * Clone an NFS2, NFS3 or NFS4 server record
1080 */
1081struct nfs_server *nfs_clone_server(struct nfs_server *source,
1082 struct nfs_fh *fh,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -04001083 struct nfs_fattr *fattr,
1084 rpc_authflavor_t flavor)
David Howells54ceac42006-08-22 20:06:13 -04001085{
1086 struct nfs_server *server;
David Howells54ceac42006-08-22 20:06:13 -04001087 int error;
1088
David Howells54ceac42006-08-22 20:06:13 -04001089 server = nfs_alloc_server();
1090 if (!server)
1091 return ERR_PTR(-ENOMEM);
1092
Trond Myklebust1a58e8a2019-04-24 17:46:43 -04001093 server->cred = get_cred(source->cred);
1094
David Howells54ceac42006-08-22 20:06:13 -04001095 /* Copy data from the source */
1096 server->nfs_client = source->nfs_client;
Chuck Lever0aaaf5c2011-12-06 16:13:48 -05001097 server->destroy = source->destroy;
Elena Reshetova212bf412017-10-20 12:53:38 +03001098 refcount_inc(&server->nfs_client->cl_count);
David Howells54ceac42006-08-22 20:06:13 -04001099 nfs_server_copy_userdata(server, source);
1100
1101 server->fsid = fattr->fsid;
1102
Trond Myklebust33170232007-12-20 16:03:59 -05001103 error = nfs_init_server_rpcclient(server,
1104 source->client->cl_timeout,
Bryan Schumaker7e6eb682012-04-27 13:27:42 -04001105 flavor);
David Howells54ceac42006-08-22 20:06:13 -04001106 if (error < 0)
1107 goto out_free_server;
David Howells54ceac42006-08-22 20:06:13 -04001108
1109 /* probe the filesystem info for this server filesystem */
Anna Schumaker4d4cf8d2021-10-14 13:55:06 -04001110 error = nfs_probe_server(server, fh);
David Howells54ceac42006-08-22 20:06:13 -04001111 if (error < 0)
1112 goto out_free_server;
1113
Trond Myklebust54af3bb2007-09-28 12:27:41 -04001114 if (server->namelen == 0 || server->namelen > NFS4_MAXNAMLEN)
1115 server->namelen = NFS4_MAXNAMLEN;
1116
David Howells54ceac42006-08-22 20:06:13 -04001117 error = nfs_start_lockd(server);
1118 if (error < 0)
1119 goto out_free_server;
1120
Chuck Leverfca52382010-12-24 01:32:32 +00001121 nfs_server_insert_lists(server);
David Howells54ceac42006-08-22 20:06:13 -04001122 server->mount_time = jiffies;
1123
David Howells54ceac42006-08-22 20:06:13 -04001124 return server;
1125
1126out_free_server:
1127 nfs_free_server(server);
David Howells54ceac42006-08-22 20:06:13 -04001128 return ERR_PTR(error);
1129}
Bryan Schumakerddda8e02012-07-30 16:05:23 -04001130EXPORT_SYMBOL_GPL(nfs_clone_server);
David Howells6aaca562006-08-22 20:06:13 -04001131
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001132void nfs_clients_init(struct net *net)
1133{
1134 struct nfs_net *nn = net_generic(net, nfs_net_id);
1135
1136 INIT_LIST_HEAD(&nn->nfs_client_list);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001137 INIT_LIST_HEAD(&nn->nfs_volume_list);
Bryan Schumaker89d77c82012-07-30 16:05:25 -04001138#if IS_ENABLED(CONFIG_NFS_V4)
Stanislav Kinsbursky28cd1b32012-01-23 17:26:22 +00001139 idr_init(&nn->cb_ident_idr);
1140#endif
Trond Myklebust4c03ae42012-02-07 00:05:11 -05001141 spin_lock_init(&nn->nfs_client_lock);
Deepa Dinamani2f86e092016-10-01 16:46:26 -07001142 nn->boot_time = ktime_get_real();
Trond Myklebustbf11fbd2019-01-29 21:40:10 -05001143
1144 nfs_netns_sysfs_setup(nn, net);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001145}
1146
Trond Myklebust10b7a702019-02-06 09:32:50 -05001147void nfs_clients_exit(struct net *net)
1148{
1149 struct nfs_net *nn = net_generic(net, nfs_net_id);
1150
Trond Myklebustbf11fbd2019-01-29 21:40:10 -05001151 nfs_netns_sysfs_destroy(nn);
Trond Myklebust10b7a702019-02-06 09:32:50 -05001152 nfs_cleanup_cb_ident_idr(net);
1153 WARN_ON_ONCE(!list_empty(&nn->nfs_client_list));
1154 WARN_ON_ONCE(!list_empty(&nn->nfs_volume_list));
1155}
1156
David Howells6aaca562006-08-22 20:06:13 -04001157#ifdef CONFIG_PROC_FS
David Howells6aaca562006-08-22 20:06:13 -04001158static void *nfs_server_list_start(struct seq_file *p, loff_t *pos);
1159static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos);
1160static void nfs_server_list_stop(struct seq_file *p, void *v);
1161static int nfs_server_list_show(struct seq_file *m, void *v);
1162
James Morris88e9d342009-09-22 16:43:43 -07001163static const struct seq_operations nfs_server_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001164 .start = nfs_server_list_start,
1165 .next = nfs_server_list_next,
1166 .stop = nfs_server_list_stop,
1167 .show = nfs_server_list_show,
1168};
1169
David Howells6aaca562006-08-22 20:06:13 -04001170static void *nfs_volume_list_start(struct seq_file *p, loff_t *pos);
1171static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos);
1172static void nfs_volume_list_stop(struct seq_file *p, void *v);
1173static int nfs_volume_list_show(struct seq_file *m, void *v);
1174
James Morris88e9d342009-09-22 16:43:43 -07001175static const struct seq_operations nfs_volume_list_ops = {
David Howells6aaca562006-08-22 20:06:13 -04001176 .start = nfs_volume_list_start,
1177 .next = nfs_volume_list_next,
1178 .stop = nfs_volume_list_stop,
1179 .show = nfs_volume_list_show,
1180};
1181
David Howells6aaca562006-08-22 20:06:13 -04001182/*
1183 * set up the iterator to start reading from the server list and return the first item
1184 */
1185static void *nfs_server_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001186 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001187{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001188 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001189
David Howells6aaca562006-08-22 20:06:13 -04001190 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001191 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001192 return seq_list_start_head(&nn->nfs_client_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001193}
1194
1195/*
1196 * move to next server
1197 */
1198static void *nfs_server_list_next(struct seq_file *p, void *v, loff_t *pos)
1199{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001200 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001201
1202 return seq_list_next(v, &nn->nfs_client_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001203}
1204
1205/*
1206 * clean up after reading from the transports list
1207 */
1208static void nfs_server_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001209 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001210{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001211 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001212
1213 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001214}
1215
1216/*
1217 * display a header line followed by a load of call lines
1218 */
1219static int nfs_server_list_show(struct seq_file *m, void *v)
1220{
1221 struct nfs_client *clp;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001222 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001223
1224 /* display header on line 1 */
Stanislav Kinsbursky6b131682012-01-23 17:26:05 +00001225 if (v == &nn->nfs_client_list) {
David Howells6aaca562006-08-22 20:06:13 -04001226 seq_puts(m, "NV SERVER PORT USE HOSTNAME\n");
1227 return 0;
1228 }
1229
1230 /* display one transport per line on subsequent lines */
1231 clp = list_entry(v, struct nfs_client, cl_share_link);
1232
Malahal Naineni940aab42011-09-20 17:27:14 -07001233 /* Check if the client is initialized */
1234 if (clp->cl_cons_state != NFS_CS_READY)
1235 return 0;
1236
Trond Myklebust2446ab62012-03-01 17:00:56 -05001237 rcu_read_lock();
Chuck Lever5d8515c2007-12-10 14:57:16 -05001238 seq_printf(m, "v%u %s %s %3d %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001239 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001240 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1241 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
Elena Reshetova212bf412017-10-20 12:53:38 +03001242 refcount_read(&clp->cl_count),
David Howells6aaca562006-08-22 20:06:13 -04001243 clp->cl_hostname);
Trond Myklebust2446ab62012-03-01 17:00:56 -05001244 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001245
1246 return 0;
1247}
1248
1249/*
David Howells6aaca562006-08-22 20:06:13 -04001250 * set up the iterator to start reading from the volume list and return the first item
1251 */
1252static void *nfs_volume_list_start(struct seq_file *m, loff_t *_pos)
Jeff Layton8d116202014-09-10 09:04:27 -04001253 __acquires(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001254{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001255 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001256
David Howells6aaca562006-08-22 20:06:13 -04001257 /* lock the list against modification */
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001258 spin_lock(&nn->nfs_client_lock);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001259 return seq_list_start_head(&nn->nfs_volume_list, *_pos);
David Howells6aaca562006-08-22 20:06:13 -04001260}
1261
1262/*
1263 * move to next volume
1264 */
1265static void *nfs_volume_list_next(struct seq_file *p, void *v, loff_t *pos)
1266{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001267 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001268
1269 return seq_list_next(v, &nn->nfs_volume_list, pos);
David Howells6aaca562006-08-22 20:06:13 -04001270}
1271
1272/*
1273 * clean up after reading from the transports list
1274 */
1275static void nfs_volume_list_stop(struct seq_file *p, void *v)
Jeff Layton8d116202014-09-10 09:04:27 -04001276 __releases(&nn->nfs_client_lock)
David Howells6aaca562006-08-22 20:06:13 -04001277{
Eric W. Biederman65b38852014-07-31 04:35:20 -07001278 struct nfs_net *nn = net_generic(seq_file_net(p), nfs_net_id);
Stanislav Kinsburskydc030852012-01-23 17:26:31 +00001279
1280 spin_unlock(&nn->nfs_client_lock);
David Howells6aaca562006-08-22 20:06:13 -04001281}
1282
1283/*
1284 * display a header line followed by a load of call lines
1285 */
1286static int nfs_volume_list_show(struct seq_file *m, void *v)
1287{
1288 struct nfs_server *server;
1289 struct nfs_client *clp;
Kinglong Meedf05a492015-06-13 10:07:00 +08001290 char dev[13]; // 8 for 2^24, 1 for ':', 3 for 2^8, 1 for '\0'
1291 char fsid[34]; // 2 * 16 for %llx, 1 for ':', 1 for '\0'
Eric W. Biederman65b38852014-07-31 04:35:20 -07001292 struct nfs_net *nn = net_generic(seq_file_net(m), nfs_net_id);
David Howells6aaca562006-08-22 20:06:13 -04001293
1294 /* display header on line 1 */
Stanislav Kinsburskyc25d32b2012-01-23 17:26:14 +00001295 if (v == &nn->nfs_volume_list) {
Kinglong Meedf05a492015-06-13 10:07:00 +08001296 seq_puts(m, "NV SERVER PORT DEV FSID"
1297 " FSC\n");
David Howells6aaca562006-08-22 20:06:13 -04001298 return 0;
1299 }
1300 /* display one transport per line on subsequent lines */
1301 server = list_entry(v, struct nfs_server, master_link);
1302 clp = server->nfs_client;
1303
Kinglong Meedf05a492015-06-13 10:07:00 +08001304 snprintf(dev, sizeof(dev), "%u:%u",
David Howells6aaca562006-08-22 20:06:13 -04001305 MAJOR(server->s_dev), MINOR(server->s_dev));
1306
Kinglong Meedf05a492015-06-13 10:07:00 +08001307 snprintf(fsid, sizeof(fsid), "%llx:%llx",
David Howells6daabf12006-08-24 15:44:16 -04001308 (unsigned long long) server->fsid.major,
1309 (unsigned long long) server->fsid.minor);
David Howells6aaca562006-08-22 20:06:13 -04001310
Trond Myklebust2446ab62012-03-01 17:00:56 -05001311 rcu_read_lock();
Kinglong Meedf05a492015-06-13 10:07:00 +08001312 seq_printf(m, "v%u %s %s %-12s %-33s %s\n",
Trond Myklebust40c553192007-12-14 14:56:07 -05001313 clp->rpc_ops->version,
Chuck Lever5d8515c2007-12-10 14:57:16 -05001314 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_ADDR),
1315 rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_HEX_PORT),
David Howells6aaca562006-08-22 20:06:13 -04001316 dev,
David Howells5d1acff2009-04-03 16:42:47 +01001317 fsid,
1318 nfs_server_fscache_state(server));
Trond Myklebust2446ab62012-03-01 17:00:56 -05001319 rcu_read_unlock();
David Howells6aaca562006-08-22 20:06:13 -04001320
1321 return 0;
1322}
1323
Eric W. Biederman65b38852014-07-31 04:35:20 -07001324int nfs_fs_proc_net_init(struct net *net)
1325{
1326 struct nfs_net *nn = net_generic(net, nfs_net_id);
1327 struct proc_dir_entry *p;
1328
1329 nn->proc_nfsfs = proc_net_mkdir(net, "nfsfs", net->proc_net);
1330 if (!nn->proc_nfsfs)
1331 goto error_0;
1332
1333 /* a file of servers with which we're dealing */
Christoph Hellwigc3506372018-04-10 19:42:55 +02001334 p = proc_create_net("servers", S_IFREG|S_IRUGO, nn->proc_nfsfs,
1335 &nfs_server_list_ops, sizeof(struct seq_net_private));
Eric W. Biederman65b38852014-07-31 04:35:20 -07001336 if (!p)
1337 goto error_1;
1338
1339 /* a file of volumes that we have mounted */
Christoph Hellwigc3506372018-04-10 19:42:55 +02001340 p = proc_create_net("volumes", S_IFREG|S_IRUGO, nn->proc_nfsfs,
1341 &nfs_volume_list_ops, sizeof(struct seq_net_private));
Eric W. Biederman65b38852014-07-31 04:35:20 -07001342 if (!p)
Cong Wang21e81002014-09-08 16:17:55 -07001343 goto error_1;
Eric W. Biederman65b38852014-07-31 04:35:20 -07001344 return 0;
1345
Eric W. Biederman65b38852014-07-31 04:35:20 -07001346error_1:
Cong Wang21e81002014-09-08 16:17:55 -07001347 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001348error_0:
1349 return -ENOMEM;
1350}
1351
1352void nfs_fs_proc_net_exit(struct net *net)
1353{
Cong Wang21e81002014-09-08 16:17:55 -07001354 remove_proc_subtree("nfsfs", net->proc_net);
Eric W. Biederman65b38852014-07-31 04:35:20 -07001355}
1356
David Howells6aaca562006-08-22 20:06:13 -04001357/*
1358 * initialise the /proc/fs/nfsfs/ directory
1359 */
1360int __init nfs_fs_proc_init(void)
1361{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001362 if (!proc_mkdir("fs/nfsfs", NULL))
David Howells6aaca562006-08-22 20:06:13 -04001363 goto error_0;
1364
David Howells6aaca562006-08-22 20:06:13 -04001365 /* a file of servers with which we're dealing */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001366 if (!proc_symlink("fs/nfsfs/servers", NULL, "../../net/nfsfs/servers"))
David Howells6aaca562006-08-22 20:06:13 -04001367 goto error_1;
1368
David Howells6aaca562006-08-22 20:06:13 -04001369 /* a file of volumes that we have mounted */
Kinglong Mee6a062a32015-07-01 23:00:29 +08001370 if (!proc_symlink("fs/nfsfs/volumes", NULL, "../../net/nfsfs/volumes"))
1371 goto error_1;
David Howells6aaca562006-08-22 20:06:13 -04001372
Kinglong Mee6a062a32015-07-01 23:00:29 +08001373 return 0;
David Howells6aaca562006-08-22 20:06:13 -04001374error_1:
Kinglong Mee6a062a32015-07-01 23:00:29 +08001375 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001376error_0:
1377 return -ENOMEM;
1378}
1379
1380/*
1381 * clean up the /proc/fs/nfsfs/ directory
1382 */
1383void nfs_fs_proc_exit(void)
1384{
Kinglong Mee6a062a32015-07-01 23:00:29 +08001385 remove_proc_subtree("fs/nfsfs", NULL);
David Howells6aaca562006-08-22 20:06:13 -04001386}
1387
1388#endif /* CONFIG_PROC_FS */