blob: de18a463ac9640b3496832eba442df17ab8482bd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Chuck Lever55aa4f52005-08-11 16:25:47 -04002 * linux/net/sunrpc/clnt.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This file contains the high-level RPC interface.
5 * It is modeled as a finite state machine to support both synchronous
6 * and asynchronous requests.
7 *
8 * - RPC header generation and argument serialization.
9 * - Credential refresh.
10 * - TCP connect handling.
11 * - Retry of operation when it is suspected the operation failed because
12 * of uid squashing on the server, or when the credentials were stale
13 * and need to be refreshed, or when a packet was damaged in transit.
14 * This may be have to be moved to the VFS layer.
15 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Copyright (C) 1992,1993 Rick Sladkey <jrs@world.std.com>
17 * Copyright (C) 1995,1996 Olaf Kirch <okir@monad.swb.de>
18 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <linux/module.h>
22#include <linux/types.h>
Chuck Levercb3997b2008-05-21 17:09:41 -040023#include <linux/kallsyms.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/mm.h>
Trond Myklebust23ac6582009-08-09 15:14:25 -040025#include <linux/namei.h>
26#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/slab.h>
Trond Myklebust40b00b6b2013-10-17 14:12:23 -040028#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/utsname.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050030#include <linux/workqueue.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040031#include <linux/in.h>
Chuck Lever510deb02007-12-10 14:56:24 -050032#include <linux/in6.h>
Chuck Lever176e21e2011-05-09 15:22:44 -040033#include <linux/un.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <linux/sunrpc/clnt.h>
Jeff Layton59766872013-02-04 12:50:00 -050036#include <linux/sunrpc/addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/sunrpc/rpc_pipe_fs.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050038#include <linux/sunrpc/metrics.h>
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040039#include <linux/sunrpc/bc_xprt.h>
Steve Dickson5753cba2012-02-06 10:08:08 -050040#include <trace/events/sunrpc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040042#include "sunrpc.h"
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040043#include "netns.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Jeff Laytonf895b252014-11-17 16:58:04 -050045#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046# define RPCDBG_FACILITY RPCDBG_CALL
47#endif
48
Chuck Lever46121cf2007-01-31 12:14:08 -050049#define dprint_status(t) \
50 dprintk("RPC: %5u %s (status %d)\n", t->tk_pid, \
Harvey Harrison0dc47872008-03-05 20:47:47 -080051 __func__, t->tk_status)
Chuck Lever46121cf2007-01-31 12:14:08 -050052
Trond Myklebust188fef12007-06-16 14:18:40 -040053/*
54 * All RPC clients are linked into this list
55 */
Trond Myklebust188fef12007-06-16 14:18:40 -040056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static DECLARE_WAIT_QUEUE_HEAD(destroy_wait);
58
59
60static void call_start(struct rpc_task *task);
61static void call_reserve(struct rpc_task *task);
62static void call_reserveresult(struct rpc_task *task);
63static void call_allocate(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static void call_decode(struct rpc_task *task);
65static void call_bind(struct rpc_task *task);
Chuck Leverda351872005-08-11 16:25:11 -040066static void call_bind_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static void call_transmit(struct rpc_task *task);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040068#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040069static void call_bc_transmit(struct rpc_task *task);
Trond Myklebust9e00abc2011-07-13 19:20:49 -040070#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static void call_status(struct rpc_task *task);
Trond Myklebust940e3312005-11-09 21:45:24 -050072static void call_transmit_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static void call_refresh(struct rpc_task *task);
74static void call_refreshresult(struct rpc_task *task);
75static void call_timeout(struct rpc_task *task);
76static void call_connect(struct rpc_task *task);
77static void call_connect_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Chuck Leverb0e1c572008-05-21 17:09:19 -040079static __be32 *rpc_encode_header(struct rpc_task *task);
80static __be32 *rpc_verify_header(struct rpc_task *task);
Chuck Levercaabea82009-12-03 15:58:56 -050081static int rpc_ping(struct rpc_clnt *clnt);
Trond Myklebust64c91a12007-06-23 10:17:16 -040082
Trond Myklebust188fef12007-06-16 14:18:40 -040083static void rpc_register_client(struct rpc_clnt *clnt)
84{
Trond Myklebust2446ab62012-03-01 17:00:56 -050085 struct net *net = rpc_net_ns(clnt);
86 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040087
88 spin_lock(&sn->rpc_client_lock);
89 list_add(&clnt->cl_clients, &sn->all_clients);
90 spin_unlock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -040091}
92
93static void rpc_unregister_client(struct rpc_clnt *clnt)
94{
Trond Myklebust2446ab62012-03-01 17:00:56 -050095 struct net *net = rpc_net_ns(clnt);
96 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040097
98 spin_lock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -040099 list_del(&clnt->cl_clients);
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +0400100 spin_unlock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -0400101}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400103static void __rpc_clnt_remove_pipedir(struct rpc_clnt *clnt)
104{
Trond Myklebustc36dcfe12013-08-26 17:44:26 -0400105 rpc_remove_client_dir(clnt);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400106}
107
108static void rpc_clnt_remove_pipedir(struct rpc_clnt *clnt)
109{
Trond Myklebust2446ab62012-03-01 17:00:56 -0500110 struct net *net = rpc_net_ns(clnt);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400111 struct super_block *pipefs_sb;
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400112
Trond Myklebust2446ab62012-03-01 17:00:56 -0500113 pipefs_sb = rpc_get_sb_net(net);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400114 if (pipefs_sb) {
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400115 __rpc_clnt_remove_pipedir(clnt);
Trond Myklebust2446ab62012-03-01 17:00:56 -0500116 rpc_put_sb_net(net);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400117 }
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400118}
119
120static struct dentry *rpc_setup_pipedir_sb(struct super_block *sb,
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400121 struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
Trond Myklebustf1345852005-09-23 11:08:25 -0400123 static uint32_t clntid;
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400124 const char *dir_name = clnt->cl_program->pipe_dir_name;
Trond Myklebust23ac6582009-08-09 15:14:25 -0400125 char name[15];
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400126 struct dentry *dir, *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400128 dir = rpc_d_lookup_sb(sb, dir_name);
Weston Andros Adamson922eeac2012-10-23 10:43:25 -0400129 if (dir == NULL) {
130 pr_info("RPC: pipefs directory doesn't exist: %s\n", dir_name);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400131 return dir;
Weston Andros Adamson922eeac2012-10-23 10:43:25 -0400132 }
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400133 for (;;) {
Al Viroa95e6912013-07-14 16:43:54 +0400134 snprintf(name, sizeof(name), "clnt%x", (unsigned int)clntid++);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400135 name[sizeof(name) - 1] = '\0';
Al Viroa95e6912013-07-14 16:43:54 +0400136 dentry = rpc_create_client_dir(dir, name, clnt);
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400137 if (!IS_ERR(dentry))
138 break;
Al Viroa95e6912013-07-14 16:43:54 +0400139 if (dentry == ERR_PTR(-EEXIST))
140 continue;
141 printk(KERN_INFO "RPC: Couldn't create pipefs entry"
142 " %s/%s, error %ld\n",
143 dir_name, name, PTR_ERR(dentry));
144 break;
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400145 }
146 dput(dir);
147 return dentry;
148}
149
150static int
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400151rpc_setup_pipedir(struct super_block *pipefs_sb, struct rpc_clnt *clnt)
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400152{
Stanislav Kinsbursky30507f52012-01-11 19:18:42 +0400153 struct dentry *dentry;
Stanislav Kinsbursky0157d022012-01-11 19:18:01 +0400154
Trond Myklebustc36dcfe12013-08-26 17:44:26 -0400155 if (clnt->cl_program->pipe_dir_name != NULL) {
156 dentry = rpc_setup_pipedir_sb(pipefs_sb, clnt);
157 if (IS_ERR(dentry))
158 return PTR_ERR(dentry);
159 }
Trond Myklebust23ac6582009-08-09 15:14:25 -0400160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400163static int rpc_clnt_skip_event(struct rpc_clnt *clnt, unsigned long event)
Stanislav Kinsburskyea8cfa02012-04-27 13:00:17 +0400164{
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400165 if (clnt->cl_program->pipe_dir_name == NULL)
Stanislav Kinsburskyea8cfa02012-04-27 13:00:17 +0400166 return 1;
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400167
Trond Myklebustc36dcfe12013-08-26 17:44:26 -0400168 switch (event) {
169 case RPC_PIPEFS_MOUNT:
170 if (clnt->cl_pipedir_objects.pdh_dentry != NULL)
171 return 1;
172 if (atomic_read(&clnt->cl_count) == 0)
173 return 1;
174 break;
175 case RPC_PIPEFS_UMOUNT:
176 if (clnt->cl_pipedir_objects.pdh_dentry == NULL)
177 return 1;
178 break;
179 }
Stanislav Kinsburskyea8cfa02012-04-27 13:00:17 +0400180 return 0;
181}
182
183static int __rpc_clnt_handle_event(struct rpc_clnt *clnt, unsigned long event,
184 struct super_block *sb)
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400185{
186 struct dentry *dentry;
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400187
188 switch (event) {
189 case RPC_PIPEFS_MOUNT:
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400190 dentry = rpc_setup_pipedir_sb(sb, clnt);
Weston Andros Adamson922eeac2012-10-23 10:43:25 -0400191 if (!dentry)
192 return -ENOENT;
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400193 if (IS_ERR(dentry))
194 return PTR_ERR(dentry);
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400195 break;
196 case RPC_PIPEFS_UMOUNT:
197 __rpc_clnt_remove_pipedir(clnt);
198 break;
199 default:
200 printk(KERN_ERR "%s: unknown event: %ld\n", __func__, event);
201 return -ENOTSUPP;
202 }
Amitoj Kaur Chawla2813b622016-08-08 14:43:49 +0530203 return 0;
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400204}
205
Stanislav Kinsburskyea8cfa02012-04-27 13:00:17 +0400206static int __rpc_pipefs_event(struct rpc_clnt *clnt, unsigned long event,
207 struct super_block *sb)
208{
209 int error = 0;
210
211 for (;; clnt = clnt->cl_parent) {
212 if (!rpc_clnt_skip_event(clnt, event))
213 error = __rpc_clnt_handle_event(clnt, event, sb);
214 if (error || clnt == clnt->cl_parent)
215 break;
216 }
217 return error;
218}
219
Stanislav Kinsburskyda3b4622012-02-27 22:05:29 +0400220static struct rpc_clnt *rpc_get_client_for_event(struct net *net, int event)
221{
222 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
223 struct rpc_clnt *clnt;
224
225 spin_lock(&sn->rpc_client_lock);
226 list_for_each_entry(clnt, &sn->all_clients, cl_clients) {
Stanislav Kinsburskyea8cfa02012-04-27 13:00:17 +0400227 if (rpc_clnt_skip_event(clnt, event))
Stanislav Kinsburskyda3b4622012-02-27 22:05:29 +0400228 continue;
Stanislav Kinsburskyda3b4622012-02-27 22:05:29 +0400229 spin_unlock(&sn->rpc_client_lock);
230 return clnt;
231 }
232 spin_unlock(&sn->rpc_client_lock);
233 return NULL;
234}
235
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400236static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
237 void *ptr)
238{
239 struct super_block *sb = ptr;
240 struct rpc_clnt *clnt;
241 int error = 0;
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400242
Stanislav Kinsburskyda3b4622012-02-27 22:05:29 +0400243 while ((clnt = rpc_get_client_for_event(sb->s_fs_info, event))) {
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400244 error = __rpc_pipefs_event(clnt, event, sb);
245 if (error)
246 break;
247 }
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400248 return error;
249}
250
251static struct notifier_block rpc_clients_block = {
252 .notifier_call = rpc_pipefs_event,
Stanislav Kinsburskyeee17322012-01-10 16:13:19 +0400253 .priority = SUNRPC_PIPEFS_RPC_PRIO,
Stanislav Kinsbursky80df9d22012-01-11 19:18:17 +0400254};
255
256int rpc_clients_notifier_register(void)
257{
258 return rpc_pipefs_notifier_register(&rpc_clients_block);
259}
260
261void rpc_clients_notifier_unregister(void)
262{
263 return rpc_pipefs_notifier_unregister(&rpc_clients_block);
264}
265
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400266static struct rpc_xprt *rpc_clnt_set_transport(struct rpc_clnt *clnt,
267 struct rpc_xprt *xprt,
268 const struct rpc_timeout *timeout)
269{
270 struct rpc_xprt *old;
271
272 spin_lock(&clnt->cl_lock);
Trond Myklebust34751b92013-10-28 16:42:44 -0400273 old = rcu_dereference_protected(clnt->cl_xprt,
274 lockdep_is_held(&clnt->cl_lock));
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400275
276 if (!xprt_bound(xprt))
277 clnt->cl_autobind = 1;
278
279 clnt->cl_timeout = timeout;
280 rcu_assign_pointer(clnt->cl_xprt, xprt);
281 spin_unlock(&clnt->cl_lock);
282
283 return old;
284}
285
Trond Myklebustcbbb3442012-04-30 11:52:40 -0400286static void rpc_clnt_set_nodename(struct rpc_clnt *clnt, const char *nodename)
287{
Trond Myklebust03a9a422015-01-30 18:12:28 -0500288 clnt->cl_nodelen = strlcpy(clnt->cl_nodename,
289 nodename, sizeof(clnt->cl_nodename));
Trond Myklebustcbbb3442012-04-30 11:52:40 -0400290}
291
Chuck Leverd746e542013-10-17 14:12:17 -0400292static int rpc_client_register(struct rpc_clnt *clnt,
293 rpc_authflavor_t pseudoflavor,
294 const char *client_name)
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400295{
Trond Myklebustc2190662013-08-26 19:23:04 -0400296 struct rpc_auth_create_args auth_args = {
Chuck Leverd746e542013-10-17 14:12:17 -0400297 .pseudoflavor = pseudoflavor,
298 .target_name = client_name,
Trond Myklebustc2190662013-08-26 19:23:04 -0400299 };
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400300 struct rpc_auth *auth;
301 struct net *net = rpc_net_ns(clnt);
302 struct super_block *pipefs_sb;
Trond Myklebusteeee2452013-07-10 15:33:01 -0400303 int err;
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400304
Jeff Laytonf9c72d12015-03-31 12:03:28 -0400305 rpc_clnt_debugfs_register(clnt);
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500306
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400307 pipefs_sb = rpc_get_sb_net(net);
308 if (pipefs_sb) {
Trond Myklebust41b6b4d2013-08-23 13:03:50 -0400309 err = rpc_setup_pipedir(pipefs_sb, clnt);
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400310 if (err)
311 goto out;
312 }
313
Trond Myklebusteeee2452013-07-10 15:33:01 -0400314 rpc_register_client(clnt);
315 if (pipefs_sb)
316 rpc_put_sb_net(net);
317
Trond Myklebustc2190662013-08-26 19:23:04 -0400318 auth = rpcauth_create(&auth_args, clnt);
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400319 if (IS_ERR(auth)) {
320 dprintk("RPC: Couldn't create auth handle (flavor %u)\n",
Chuck Leverd746e542013-10-17 14:12:17 -0400321 pseudoflavor);
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400322 err = PTR_ERR(auth);
323 goto err_auth;
324 }
Trond Myklebusteeee2452013-07-10 15:33:01 -0400325 return 0;
326err_auth:
327 pipefs_sb = rpc_get_sb_net(net);
Trond Myklebust1540c5d2013-07-14 22:57:50 -0400328 rpc_unregister_client(clnt);
Trond Myklebusteeee2452013-07-10 15:33:01 -0400329 __rpc_clnt_remove_pipedir(clnt);
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400330out:
331 if (pipefs_sb)
332 rpc_put_sb_net(net);
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500333 rpc_clnt_debugfs_unregister(clnt);
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400334 return err;
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400335}
336
Trond Myklebust2f048db2013-09-04 21:51:44 -0400337static DEFINE_IDA(rpc_clids);
338
Kinglong Meecb1d48f2017-01-20 16:48:39 +0800339void rpc_cleanup_clids(void)
340{
341 ida_destroy(&rpc_clids);
342}
343
Trond Myklebust2f048db2013-09-04 21:51:44 -0400344static int rpc_alloc_clid(struct rpc_clnt *clnt)
345{
346 int clid;
347
348 clid = ida_simple_get(&rpc_clids, 0, 0, GFP_KERNEL);
349 if (clid < 0)
350 return clid;
351 clnt->cl_clid = clid;
352 return 0;
353}
354
355static void rpc_free_clid(struct rpc_clnt *clnt)
356{
357 ida_simple_remove(&rpc_clids, clnt->cl_clid);
358}
359
Trond Myklebust280ebcf2013-09-02 13:28:04 -0400360static struct rpc_clnt * rpc_new_client(const struct rpc_create_args *args,
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500361 struct rpc_xprt_switch *xps,
Trond Myklebust280ebcf2013-09-02 13:28:04 -0400362 struct rpc_xprt *xprt,
363 struct rpc_clnt *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Trond Myklebusta613fa12012-01-20 13:53:56 -0500365 const struct rpc_program *program = args->program;
366 const struct rpc_version *version;
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400367 struct rpc_clnt *clnt = NULL;
368 const struct rpc_timeout *timeout;
Trond Myklebust03a9a422015-01-30 18:12:28 -0500369 const char *nodename = args->nodename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 int err;
Chuck Lever06b8d252007-09-11 18:00:20 -0400371
372 /* sanity check the name before trying to print it */
Chuck Lever46121cf2007-01-31 12:14:08 -0500373 dprintk("RPC: creating %s client for %s (xprt %p)\n",
Trond Myklebust698b6d02007-12-20 16:03:53 -0500374 program->name, args->servername, xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Trond Myklebust4ada5392007-06-14 17:26:17 -0400376 err = rpciod_up();
377 if (err)
378 goto out_no_rpciod;
Trond Myklebust698b6d02007-12-20 16:03:53 -0500379
Trond Myklebustf05c1242013-04-05 14:13:21 -0400380 err = -EINVAL;
Trond Myklebust698b6d02007-12-20 16:03:53 -0500381 if (args->version >= program->nrvers)
382 goto out_err;
383 version = program->version[args->version];
384 if (version == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 goto out_err;
386
387 err = -ENOMEM;
Panagiotis Issaris0da974f2006-07-21 14:51:30 -0700388 clnt = kzalloc(sizeof(*clnt), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (!clnt)
390 goto out_err;
Trond Myklebust280ebcf2013-09-02 13:28:04 -0400391 clnt->cl_parent = parent ? : clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Trond Myklebust2f048db2013-09-04 21:51:44 -0400393 err = rpc_alloc_clid(clnt);
394 if (err)
395 goto out_no_clid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 clnt->cl_procinfo = version->procs;
398 clnt->cl_maxproc = version->nrprocs;
Benny Halevyd5b337b2008-09-28 09:21:26 +0300399 clnt->cl_prog = args->prognumber ? : program->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 clnt->cl_vers = version->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 clnt->cl_stats = program->stats;
Chuck Lever11c556b2006-03-20 13:44:22 -0500402 clnt->cl_metrics = rpc_alloc_iostats(clnt);
Trond Myklebust6739ffb2013-08-26 15:38:11 -0400403 rpc_init_pipe_dir_head(&clnt->cl_pipedir_objects);
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500404 err = -ENOMEM;
405 if (clnt->cl_metrics == NULL)
406 goto out_no_stats;
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500407 clnt->cl_program = program;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400408 INIT_LIST_HEAD(&clnt->cl_tasks);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400409 spin_lock_init(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400411 timeout = xprt->timeout;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500412 if (args->timeout != NULL) {
413 memcpy(&clnt->cl_timeout_default, args->timeout,
414 sizeof(clnt->cl_timeout_default));
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400415 timeout = &clnt->cl_timeout_default;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500416 }
417
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400418 rpc_clnt_set_transport(clnt, xprt, timeout);
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500419 xprt_iter_init(&clnt->cl_xpi, xps);
420 xprt_switch_put(xps);
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 clnt->cl_rtt = &clnt->cl_rtt_default;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500423 rpc_init_rtt(&clnt->cl_rtt_default, clnt->cl_timeout->to_initval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Trond Myklebust006abe82010-09-12 19:55:25 -0400425 atomic_set(&clnt->cl_count, 1);
Trond Myklebust34f52e32007-06-14 16:40:31 -0400426
Trond Myklebust03a9a422015-01-30 18:12:28 -0500427 if (nodename == NULL)
428 nodename = utsname()->nodename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* save the nodename */
Trond Myklebust03a9a422015-01-30 18:12:28 -0500430 rpc_clnt_set_nodename(clnt, nodename);
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400431
Chuck Leverd746e542013-10-17 14:12:17 -0400432 err = rpc_client_register(clnt, args->authflavor, args->client_name);
Stanislav Kinsburskye73f4cc2013-06-24 11:52:52 +0400433 if (err)
434 goto out_no_path;
Trond Myklebust280ebcf2013-09-02 13:28:04 -0400435 if (parent)
436 atomic_inc(&parent->cl_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return clnt;
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439out_no_path:
Trond Myklebust23bf85b2006-11-21 10:40:23 -0500440 rpc_free_iostats(clnt->cl_metrics);
441out_no_stats:
Trond Myklebust2f048db2013-09-04 21:51:44 -0400442 rpc_free_clid(clnt);
443out_no_clid:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 kfree(clnt);
445out_err:
Trond Myklebust4ada5392007-06-14 17:26:17 -0400446 rpciod_down();
447out_no_rpciod:
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500448 xprt_switch_put(xps);
Trond Myklebustf05c1242013-04-05 14:13:21 -0400449 xprt_put(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return ERR_PTR(err);
451}
452
J. Bruce Fieldsd50039e2016-05-16 17:03:42 -0400453static struct rpc_clnt *rpc_create_xprt(struct rpc_create_args *args,
Kinglong Mee83ddfeb2014-03-24 11:58:59 +0800454 struct rpc_xprt *xprt)
455{
456 struct rpc_clnt *clnt = NULL;
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500457 struct rpc_xprt_switch *xps;
Kinglong Mee83ddfeb2014-03-24 11:58:59 +0800458
J. Bruce Fields39a9bea2016-05-17 12:38:21 -0400459 if (args->bc_xprt && args->bc_xprt->xpt_bc_xps) {
Chuck Lever16590a22016-08-22 14:57:42 -0400460 WARN_ON_ONCE(!(args->protocol & XPRT_TRANSPORT_BC));
J. Bruce Fields39a9bea2016-05-17 12:38:21 -0400461 xps = args->bc_xprt->xpt_bc_xps;
462 xprt_switch_get(xps);
463 } else {
464 xps = xprt_switch_alloc(xprt, GFP_KERNEL);
465 if (xps == NULL) {
466 xprt_put(xprt);
467 return ERR_PTR(-ENOMEM);
468 }
469 if (xprt->bc_xprt) {
470 xprt_switch_get(xps);
471 xprt->bc_xprt->xpt_bc_xps = xps;
472 }
J. Bruce Fields1208fd52016-05-20 17:07:17 -0400473 }
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500474 clnt = rpc_new_client(args, xps, xprt, NULL);
Kinglong Mee83ddfeb2014-03-24 11:58:59 +0800475 if (IS_ERR(clnt))
476 return clnt;
477
478 if (!(args->flags & RPC_CLNT_CREATE_NOPING)) {
479 int err = rpc_ping(clnt);
480 if (err != 0) {
481 rpc_shutdown_client(clnt);
482 return ERR_PTR(err);
483 }
484 }
485
486 clnt->cl_softrtry = 1;
487 if (args->flags & RPC_CLNT_CREATE_HARDRTRY)
488 clnt->cl_softrtry = 0;
489
490 if (args->flags & RPC_CLNT_CREATE_AUTOBIND)
491 clnt->cl_autobind = 1;
Trond Myklebust2aca5b82014-09-24 22:35:58 -0400492 if (args->flags & RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT)
493 clnt->cl_noretranstimeo = 1;
Kinglong Mee83ddfeb2014-03-24 11:58:59 +0800494 if (args->flags & RPC_CLNT_CREATE_DISCRTRY)
495 clnt->cl_discrtry = 1;
496 if (!(args->flags & RPC_CLNT_CREATE_QUIET))
497 clnt->cl_chatty = 1;
498
499 return clnt;
500}
Kinglong Mee83ddfeb2014-03-24 11:58:59 +0800501
Ben Hutchings2c530402012-07-10 10:55:09 +0000502/**
Chuck Leverc2866762006-08-22 20:06:20 -0400503 * rpc_create - create an RPC client and transport with one call
504 * @args: rpc_clnt create argument structure
505 *
506 * Creates and initializes an RPC transport and an RPC client.
507 *
508 * It can ping the server in order to determine if it is up, and to see if
509 * it supports this program and version. RPC_CLNT_CREATE_NOPING disables
510 * this behavior so asynchronous tasks can also use rpc_create.
511 */
512struct rpc_clnt *rpc_create(struct rpc_create_args *args)
513{
514 struct rpc_xprt *xprt;
\"Talpey, Thomas\3c341b0b2007-09-10 13:47:07 -0400515 struct xprt_create xprtargs = {
Pavel Emelyanov9a23e332010-09-29 16:05:12 +0400516 .net = args->net,
\"Talpey, Thomas\4fa016e2007-09-10 13:47:57 -0400517 .ident = args->protocol,
Frank van Maarseveend3bc9a12007-07-09 22:23:35 +0200518 .srcaddr = args->saddress,
Frank van Maarseveen96802a02007-07-08 13:08:54 +0200519 .dstaddr = args->address,
520 .addrlen = args->addrsize,
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500521 .servername = args->servername,
Alexandros Batsakisf300bab2009-09-10 17:33:30 +0300522 .bc_xprt = args->bc_xprt,
Frank van Maarseveen96802a02007-07-08 13:08:54 +0200523 };
Chuck Lever510deb02007-12-10 14:56:24 -0500524 char servername[48];
Chuck Leverc2866762006-08-22 20:06:20 -0400525
J. Bruce Fieldsd50039e2016-05-16 17:03:42 -0400526 if (args->bc_xprt) {
Chuck Lever16590a22016-08-22 14:57:42 -0400527 WARN_ON_ONCE(!(args->protocol & XPRT_TRANSPORT_BC));
J. Bruce Fieldsd50039e2016-05-16 17:03:42 -0400528 xprt = args->bc_xprt->xpt_bc_xprt;
529 if (xprt) {
530 xprt_get(xprt);
531 return rpc_create_xprt(args, xprt);
532 }
533 }
534
Trond Myklebustb7993ce2013-04-14 11:42:00 -0400535 if (args->flags & RPC_CLNT_CREATE_INFINITE_SLOTS)
536 xprtargs.flags |= XPRT_CREATE_INFINITE_SLOTS;
J. Bruce Fields33d90ac2013-04-11 15:06:36 -0400537 if (args->flags & RPC_CLNT_CREATE_NO_IDLE_TIMEOUT)
538 xprtargs.flags |= XPRT_CREATE_NO_IDLE_TIMEOUT;
Chuck Leverc2866762006-08-22 20:06:20 -0400539 /*
Chuck Lever43780b82007-07-01 12:13:22 -0400540 * If the caller chooses not to specify a hostname, whip
541 * up a string representation of the passed-in address.
542 */
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500543 if (xprtargs.servername == NULL) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400544 struct sockaddr_un *sun =
545 (struct sockaddr_un *)args->address;
Chuck Leverda09eb92011-05-09 15:22:25 -0400546 struct sockaddr_in *sin =
547 (struct sockaddr_in *)args->address;
548 struct sockaddr_in6 *sin6 =
549 (struct sockaddr_in6 *)args->address;
550
Chuck Lever510deb02007-12-10 14:56:24 -0500551 servername[0] = '\0';
552 switch (args->address->sa_family) {
Chuck Lever176e21e2011-05-09 15:22:44 -0400553 case AF_LOCAL:
554 snprintf(servername, sizeof(servername), "%s",
555 sun->sun_path);
556 break;
Chuck Leverda09eb92011-05-09 15:22:25 -0400557 case AF_INET:
Harvey Harrison21454aa2008-10-31 00:54:56 -0700558 snprintf(servername, sizeof(servername), "%pI4",
559 &sin->sin_addr.s_addr);
Chuck Lever510deb02007-12-10 14:56:24 -0500560 break;
Chuck Leverda09eb92011-05-09 15:22:25 -0400561 case AF_INET6:
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700562 snprintf(servername, sizeof(servername), "%pI6",
Chuck Leverda09eb92011-05-09 15:22:25 -0400563 &sin6->sin6_addr);
Chuck Lever510deb02007-12-10 14:56:24 -0500564 break;
Chuck Lever510deb02007-12-10 14:56:24 -0500565 default:
566 /* caller wants default server name, but
567 * address family isn't recognized. */
568 return ERR_PTR(-EINVAL);
569 }
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500570 xprtargs.servername = servername;
Chuck Lever43780b82007-07-01 12:13:22 -0400571 }
572
Chuck Lever510deb02007-12-10 14:56:24 -0500573 xprt = xprt_create_transport(&xprtargs);
574 if (IS_ERR(xprt))
575 return (struct rpc_clnt *)xprt;
576
Chuck Lever43780b82007-07-01 12:13:22 -0400577 /*
Chuck Leverc2866762006-08-22 20:06:20 -0400578 * By default, kernel RPC client connects from a reserved port.
579 * CAP_NET_BIND_SERVICE will not be set for unprivileged requesters,
580 * but it is always enabled for rpciod, which handles the connect
581 * operation.
582 */
583 xprt->resvport = 1;
584 if (args->flags & RPC_CLNT_CREATE_NONPRIVPORT)
585 xprt->resvport = 0;
586
Kinglong Mee83ddfeb2014-03-24 11:58:59 +0800587 return rpc_create_xprt(args, xprt);
Chuck Leverc2866762006-08-22 20:06:20 -0400588}
Chuck Leverb86acd52006-08-22 20:06:22 -0400589EXPORT_SYMBOL_GPL(rpc_create);
Chuck Leverc2866762006-08-22 20:06:20 -0400590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/*
592 * This function clones the RPC client structure. It allows us to share the
593 * same transport while varying parameters such as the authentication
594 * flavour.
595 */
Chuck Lever1b63a752012-09-14 17:23:52 -0400596static struct rpc_clnt *__rpc_clone_client(struct rpc_create_args *args,
597 struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500599 struct rpc_xprt_switch *xps;
Trond Myklebust2446ab62012-03-01 17:00:56 -0500600 struct rpc_xprt *xprt;
Chuck Lever1b63a752012-09-14 17:23:52 -0400601 struct rpc_clnt *new;
602 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Chuck Lever1b63a752012-09-14 17:23:52 -0400604 err = -ENOMEM;
Trond Myklebust2446ab62012-03-01 17:00:56 -0500605 rcu_read_lock();
606 xprt = xprt_get(rcu_dereference(clnt->cl_xprt));
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500607 xps = xprt_switch_get(rcu_dereference(clnt->cl_xpi.xpi_xpswitch));
Trond Myklebust2446ab62012-03-01 17:00:56 -0500608 rcu_read_unlock();
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500609 if (xprt == NULL || xps == NULL) {
610 xprt_put(xprt);
611 xprt_switch_put(xps);
Chuck Lever1b63a752012-09-14 17:23:52 -0400612 goto out_err;
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500613 }
Chuck Lever1b63a752012-09-14 17:23:52 -0400614 args->servername = xprt->servername;
Trond Myklebust03a9a422015-01-30 18:12:28 -0500615 args->nodename = clnt->cl_nodename;
Chuck Lever1b63a752012-09-14 17:23:52 -0400616
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500617 new = rpc_new_client(args, xps, xprt, clnt);
Chuck Lever1b63a752012-09-14 17:23:52 -0400618 if (IS_ERR(new)) {
619 err = PTR_ERR(new);
Chuck Levera58e0be2013-03-22 12:52:59 -0400620 goto out_err;
Chuck Lever1b63a752012-09-14 17:23:52 -0400621 }
622
Chuck Lever1b63a752012-09-14 17:23:52 -0400623 /* Turn off autobind on clones */
624 new->cl_autobind = 0;
625 new->cl_softrtry = clnt->cl_softrtry;
Trond Myklebust2aca5b82014-09-24 22:35:58 -0400626 new->cl_noretranstimeo = clnt->cl_noretranstimeo;
Chuck Lever1b63a752012-09-14 17:23:52 -0400627 new->cl_discrtry = clnt->cl_discrtry;
628 new->cl_chatty = clnt->cl_chatty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return new;
Chuck Lever1b63a752012-09-14 17:23:52 -0400630
Chuck Lever1b63a752012-09-14 17:23:52 -0400631out_err:
Harvey Harrison0dc47872008-03-05 20:47:47 -0800632 dprintk("RPC: %s: returned error %d\n", __func__, err);
Trond Myklebust3e32a5d2006-11-16 11:37:27 -0500633 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
Chuck Lever1b63a752012-09-14 17:23:52 -0400635
636/**
637 * rpc_clone_client - Clone an RPC client structure
638 *
639 * @clnt: RPC client whose parameters are copied
640 *
641 * Returns a fresh RPC client or an ERR_PTR.
642 */
643struct rpc_clnt *rpc_clone_client(struct rpc_clnt *clnt)
644{
645 struct rpc_create_args args = {
646 .program = clnt->cl_program,
647 .prognumber = clnt->cl_prog,
648 .version = clnt->cl_vers,
649 .authflavor = clnt->cl_auth->au_flavor,
Chuck Lever1b63a752012-09-14 17:23:52 -0400650 };
651 return __rpc_clone_client(&args, clnt);
652}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400653EXPORT_SYMBOL_GPL(rpc_clone_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Chuck Leverba9b5842012-09-14 17:24:02 -0400655/**
656 * rpc_clone_client_set_auth - Clone an RPC client structure and set its auth
657 *
658 * @clnt: RPC client whose parameters are copied
Randy Dunlap7144bca2013-01-09 17:12:35 -0800659 * @flavor: security flavor for new client
Chuck Leverba9b5842012-09-14 17:24:02 -0400660 *
661 * Returns a fresh RPC client or an ERR_PTR.
662 */
663struct rpc_clnt *
664rpc_clone_client_set_auth(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
665{
666 struct rpc_create_args args = {
667 .program = clnt->cl_program,
668 .prognumber = clnt->cl_prog,
669 .version = clnt->cl_vers,
670 .authflavor = flavor,
Chuck Leverba9b5842012-09-14 17:24:02 -0400671 };
672 return __rpc_clone_client(&args, clnt);
673}
674EXPORT_SYMBOL_GPL(rpc_clone_client_set_auth);
675
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400676/**
677 * rpc_switch_client_transport: switch the RPC transport on the fly
678 * @clnt: pointer to a struct rpc_clnt
679 * @args: pointer to the new transport arguments
680 * @timeout: pointer to the new timeout parameters
681 *
682 * This function allows the caller to switch the RPC transport for the
683 * rpc_clnt structure 'clnt' to allow it to connect to a mirrored NFS
684 * server, for instance. It assumes that the caller has ensured that
685 * there are no active RPC tasks by using some form of locking.
686 *
687 * Returns zero if "clnt" is now using the new xprt. Otherwise a
688 * negative errno is returned, and "clnt" continues to use the old
689 * xprt.
690 */
691int rpc_switch_client_transport(struct rpc_clnt *clnt,
692 struct xprt_create *args,
693 const struct rpc_timeout *timeout)
694{
695 const struct rpc_timeout *old_timeo;
696 rpc_authflavor_t pseudoflavor;
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500697 struct rpc_xprt_switch *xps, *oldxps;
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400698 struct rpc_xprt *xprt, *old;
699 struct rpc_clnt *parent;
700 int err;
701
702 xprt = xprt_create_transport(args);
703 if (IS_ERR(xprt)) {
704 dprintk("RPC: failed to create new xprt for clnt %p\n",
705 clnt);
706 return PTR_ERR(xprt);
707 }
708
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500709 xps = xprt_switch_alloc(xprt, GFP_KERNEL);
710 if (xps == NULL) {
711 xprt_put(xprt);
712 return -ENOMEM;
713 }
714
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400715 pseudoflavor = clnt->cl_auth->au_flavor;
716
717 old_timeo = clnt->cl_timeout;
718 old = rpc_clnt_set_transport(clnt, xprt, timeout);
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500719 oldxps = xprt_iter_xchg_switch(&clnt->cl_xpi, xps);
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400720
721 rpc_unregister_client(clnt);
722 __rpc_clnt_remove_pipedir(clnt);
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500723 rpc_clnt_debugfs_unregister(clnt);
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400724
725 /*
726 * A new transport was created. "clnt" therefore
727 * becomes the root of a new cl_parent tree. clnt's
728 * children, if it has any, still point to the old xprt.
729 */
730 parent = clnt->cl_parent;
731 clnt->cl_parent = clnt;
732
733 /*
734 * The old rpc_auth cache cannot be re-used. GSS
735 * contexts in particular are between a single
736 * client and server.
737 */
738 err = rpc_client_register(clnt, pseudoflavor, NULL);
739 if (err)
740 goto out_revert;
741
742 synchronize_rcu();
743 if (parent != clnt)
744 rpc_release_client(parent);
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500745 xprt_switch_put(oldxps);
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400746 xprt_put(old);
747 dprintk("RPC: replaced xprt for clnt %p\n", clnt);
748 return 0;
749
750out_revert:
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500751 xps = xprt_iter_xchg_switch(&clnt->cl_xpi, oldxps);
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400752 rpc_clnt_set_transport(clnt, old, old_timeo);
753 clnt->cl_parent = parent;
754 rpc_client_register(clnt, pseudoflavor, NULL);
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500755 xprt_switch_put(xps);
Trond Myklebust40b00b6b2013-10-17 14:12:23 -0400756 xprt_put(xprt);
757 dprintk("RPC: failed to switch xprt for clnt %p\n", clnt);
758 return err;
759}
760EXPORT_SYMBOL_GPL(rpc_switch_client_transport);
761
Trond Myklebust32278862016-01-30 20:39:19 -0500762static
763int rpc_clnt_xprt_iter_init(struct rpc_clnt *clnt, struct rpc_xprt_iter *xpi)
764{
765 struct rpc_xprt_switch *xps;
766
767 rcu_read_lock();
768 xps = xprt_switch_get(rcu_dereference(clnt->cl_xpi.xpi_xpswitch));
769 rcu_read_unlock();
770 if (xps == NULL)
771 return -EAGAIN;
772 xprt_iter_init_listall(xpi, xps);
773 xprt_switch_put(xps);
774 return 0;
775}
776
777/**
778 * rpc_clnt_iterate_for_each_xprt - Apply a function to all transports
779 * @clnt: pointer to client
780 * @fn: function to apply
781 * @data: void pointer to function data
782 *
783 * Iterates through the list of RPC transports currently attached to the
784 * client and applies the function fn(clnt, xprt, data).
785 *
786 * On error, the iteration stops, and the function returns the error value.
787 */
788int rpc_clnt_iterate_for_each_xprt(struct rpc_clnt *clnt,
789 int (*fn)(struct rpc_clnt *, struct rpc_xprt *, void *),
790 void *data)
791{
792 struct rpc_xprt_iter xpi;
793 int ret;
794
795 ret = rpc_clnt_xprt_iter_init(clnt, &xpi);
796 if (ret)
797 return ret;
798 for (;;) {
799 struct rpc_xprt *xprt = xprt_iter_get_next(&xpi);
800
801 if (!xprt)
802 break;
803 ret = fn(clnt, xprt, data);
804 xprt_put(xprt);
805 if (ret < 0)
806 break;
807 }
808 xprt_iter_destroy(&xpi);
809 return ret;
810}
811EXPORT_SYMBOL_GPL(rpc_clnt_iterate_for_each_xprt);
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813/*
Trond Myklebust58f96122010-07-31 14:29:08 -0400814 * Kill all tasks for the given client.
815 * XXX: kill their descendants as well?
816 */
817void rpc_killall_tasks(struct rpc_clnt *clnt)
818{
819 struct rpc_task *rovr;
820
821
822 if (list_empty(&clnt->cl_tasks))
823 return;
824 dprintk("RPC: killing all tasks for client %p\n", clnt);
825 /*
826 * Spin lock all_tasks to prevent changes...
827 */
828 spin_lock(&clnt->cl_lock);
829 list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) {
830 if (!RPC_IS_ACTIVATED(rovr))
831 continue;
832 if (!(rovr->tk_flags & RPC_TASK_KILLED)) {
833 rovr->tk_flags |= RPC_TASK_KILLED;
834 rpc_exit(rovr, -EIO);
Stanislav Kinsbursky8e26de22011-03-17 18:54:23 +0300835 if (RPC_IS_QUEUED(rovr))
836 rpc_wake_up_queued_task(rovr->tk_waitqueue,
837 rovr);
Trond Myklebust58f96122010-07-31 14:29:08 -0400838 }
839 }
840 spin_unlock(&clnt->cl_lock);
841}
842EXPORT_SYMBOL_GPL(rpc_killall_tasks);
843
844/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * Properly shut down an RPC client, terminating all outstanding
Trond Myklebust90c57552007-06-09 19:49:36 -0400846 * requests.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
Trond Myklebust4c402b42007-06-14 16:40:32 -0400848void rpc_shutdown_client(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Weston Andros Adamson168e4b32012-10-30 17:01:40 -0400850 might_sleep();
851
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500852 dprintk_rcu("RPC: shutting down %s client for %s\n",
Trond Myklebust55909f22013-08-23 11:48:15 -0400853 clnt->cl_program->name,
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500854 rcu_dereference(clnt->cl_xprt)->servername);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Trond Myklebust34f52e32007-06-14 16:40:31 -0400856 while (!list_empty(&clnt->cl_tasks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 rpc_killall_tasks(clnt);
Ingo Molnar532347e2006-01-09 20:52:53 -0800858 wait_event_timeout(destroy_wait,
Trond Myklebust34f52e32007-06-14 16:40:31 -0400859 list_empty(&clnt->cl_tasks), 1*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861
Trond Myklebust4c402b42007-06-14 16:40:32 -0400862 rpc_release_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400864EXPORT_SYMBOL_GPL(rpc_shutdown_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866/*
Trond Myklebust34f52e32007-06-14 16:40:31 -0400867 * Free an RPC client
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 */
Trond Myklebustd07ba842013-11-12 17:24:36 -0500869static struct rpc_clnt *
Trond Myklebust006abe82010-09-12 19:55:25 -0400870rpc_free_client(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Trond Myklebustd07ba842013-11-12 17:24:36 -0500872 struct rpc_clnt *parent = NULL;
873
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500874 dprintk_rcu("RPC: destroying %s client for %s\n",
Trond Myklebust55909f22013-08-23 11:48:15 -0400875 clnt->cl_program->name,
Trond Myklebust4e0038b2012-03-01 17:01:05 -0500876 rcu_dereference(clnt->cl_xprt)->servername);
Trond Myklebust6eac7d32012-01-20 13:53:37 -0500877 if (clnt->cl_parent != clnt)
Trond Myklebustd07ba842013-11-12 17:24:36 -0500878 parent = clnt->cl_parent;
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -0500879 rpc_clnt_debugfs_unregister(clnt);
Stanislav Kinsburskyf5131252012-01-11 19:18:26 +0400880 rpc_clnt_remove_pipedir(clnt);
Stanislav Kinsburskyadb6fa72013-06-26 10:15:14 +0400881 rpc_unregister_client(clnt);
Chuck Lever11c556b2006-03-20 13:44:22 -0500882 rpc_free_iostats(clnt->cl_metrics);
883 clnt->cl_metrics = NULL;
Trond Myklebust2446ab62012-03-01 17:00:56 -0500884 xprt_put(rcu_dereference_raw(clnt->cl_xprt));
Trond Myklebustad01b2c2016-01-30 14:17:26 -0500885 xprt_iter_destroy(&clnt->cl_xpi);
Trond Myklebust4ada5392007-06-14 17:26:17 -0400886 rpciod_down();
Trond Myklebust2f048db2013-09-04 21:51:44 -0400887 rpc_free_clid(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 kfree(clnt);
Trond Myklebustd07ba842013-11-12 17:24:36 -0500889 return parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
892/*
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400893 * Free an RPC client
894 */
Trond Myklebustd07ba842013-11-12 17:24:36 -0500895static struct rpc_clnt *
Trond Myklebust006abe82010-09-12 19:55:25 -0400896rpc_free_auth(struct rpc_clnt *clnt)
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400897{
Trond Myklebustd07ba842013-11-12 17:24:36 -0500898 if (clnt->cl_auth == NULL)
899 return rpc_free_client(clnt);
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400900
901 /*
902 * Note: RPCSEC_GSS may need to send NULL RPC calls in order to
903 * release remaining GSS contexts. This mechanism ensures
904 * that it can do so safely.
905 */
Trond Myklebust006abe82010-09-12 19:55:25 -0400906 atomic_inc(&clnt->cl_count);
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400907 rpcauth_release(clnt->cl_auth);
908 clnt->cl_auth = NULL;
Trond Myklebust006abe82010-09-12 19:55:25 -0400909 if (atomic_dec_and_test(&clnt->cl_count))
Trond Myklebustd07ba842013-11-12 17:24:36 -0500910 return rpc_free_client(clnt);
911 return NULL;
Trond Myklebust1dd17ec2007-06-26 16:57:41 -0400912}
913
914/*
Trond Myklebust34f52e32007-06-14 16:40:31 -0400915 * Release reference to the RPC client
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 */
917void
918rpc_release_client(struct rpc_clnt *clnt)
919{
Trond Myklebust34f52e32007-06-14 16:40:31 -0400920 dprintk("RPC: rpc_release_client(%p)\n", clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Trond Myklebustd07ba842013-11-12 17:24:36 -0500922 do {
923 if (list_empty(&clnt->cl_tasks))
924 wake_up(&destroy_wait);
925 if (!atomic_dec_and_test(&clnt->cl_count))
926 break;
927 clnt = rpc_free_auth(clnt);
928 } while (clnt != NULL);
Trond Myklebust34f52e32007-06-14 16:40:31 -0400929}
Simo Sorce1d658332012-05-25 18:09:55 -0400930EXPORT_SYMBOL_GPL(rpc_release_client);
Trond Myklebust34f52e32007-06-14 16:40:31 -0400931
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000932/**
933 * rpc_bind_new_program - bind a new RPC program to an existing client
Randy Dunlap65b6e422008-02-13 15:03:23 -0800934 * @old: old rpc_client
935 * @program: rpc program to set
936 * @vers: rpc program version
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000937 *
938 * Clones the rpc client and sets up a new RPC program. This is mainly
939 * of use for enabling different RPC programs to share the same transport.
940 * The Sun NFSv2/v3 ACL protocol can do this.
941 */
942struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old,
Trond Myklebusta613fa12012-01-20 13:53:56 -0500943 const struct rpc_program *program,
Chuck Lever89eb21c2007-09-11 18:00:09 -0400944 u32 vers)
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000945{
Trond Myklebustf994c432012-11-01 12:14:14 -0400946 struct rpc_create_args args = {
947 .program = program,
948 .prognumber = program->number,
949 .version = vers,
950 .authflavor = old->cl_auth->au_flavor,
Trond Myklebustf994c432012-11-01 12:14:14 -0400951 };
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000952 struct rpc_clnt *clnt;
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000953 int err;
954
Trond Myklebustf994c432012-11-01 12:14:14 -0400955 clnt = __rpc_clone_client(&args, old);
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000956 if (IS_ERR(clnt))
957 goto out;
Chuck Levercaabea82009-12-03 15:58:56 -0500958 err = rpc_ping(clnt);
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000959 if (err != 0) {
960 rpc_shutdown_client(clnt);
961 clnt = ERR_PTR(err);
962 }
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800963out:
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000964 return clnt;
965}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400966EXPORT_SYMBOL_GPL(rpc_bind_new_program);
Andreas Gruenbacher007e2512005-06-22 17:16:23 +0000967
Bill Bakerb5bc39d2018-06-19 16:24:58 -0500968void rpc_task_release_transport(struct rpc_task *task)
969{
970 struct rpc_xprt *xprt = task->tk_xprt;
971
972 if (xprt) {
973 task->tk_xprt = NULL;
974 xprt_put(xprt);
975 }
976}
977EXPORT_SYMBOL_GPL(rpc_task_release_transport);
978
Trond Myklebust58f96122010-07-31 14:29:08 -0400979void rpc_task_release_client(struct rpc_task *task)
980{
981 struct rpc_clnt *clnt = task->tk_client;
982
983 if (clnt != NULL) {
984 /* Remove from client task list */
985 spin_lock(&clnt->cl_lock);
986 list_del(&task->tk_task);
987 spin_unlock(&clnt->cl_lock);
988 task->tk_client = NULL;
989
990 rpc_release_client(clnt);
991 }
Bill Bakerb5bc39d2018-06-19 16:24:58 -0500992 rpc_task_release_transport(task);
993}
Trond Myklebustfb43d172016-01-30 16:39:26 -0500994
Bill Bakerb5bc39d2018-06-19 16:24:58 -0500995static
996void rpc_task_set_transport(struct rpc_task *task, struct rpc_clnt *clnt)
997{
998 if (!task->tk_xprt)
999 task->tk_xprt = xprt_iter_get_next(&clnt->cl_xpi);
Trond Myklebust58f96122010-07-31 14:29:08 -04001000}
1001
1002static
1003void rpc_task_set_client(struct rpc_task *task, struct rpc_clnt *clnt)
1004{
Trond Myklebustfb43d172016-01-30 16:39:26 -05001005
Trond Myklebust58f96122010-07-31 14:29:08 -04001006 if (clnt != NULL) {
Bill Bakerb5bc39d2018-06-19 16:24:58 -05001007 rpc_task_set_transport(task, clnt);
Trond Myklebust58f96122010-07-31 14:29:08 -04001008 task->tk_client = clnt;
Trond Myklebust006abe82010-09-12 19:55:25 -04001009 atomic_inc(&clnt->cl_count);
Trond Myklebust58f96122010-07-31 14:29:08 -04001010 if (clnt->cl_softrtry)
1011 task->tk_flags |= RPC_TASK_SOFT;
Trond Myklebust8a19a0b2013-09-24 12:00:27 -04001012 if (clnt->cl_noretranstimeo)
1013 task->tk_flags |= RPC_TASK_NO_RETRANS_TIMEOUT;
Jeff Layton3c87ef62015-06-03 16:14:25 -04001014 if (atomic_read(&clnt->cl_swapper))
1015 task->tk_flags |= RPC_TASK_SWAPPER;
Trond Myklebust58f96122010-07-31 14:29:08 -04001016 /* Add to the client's list of all tasks */
1017 spin_lock(&clnt->cl_lock);
1018 list_add_tail(&task->tk_task, &clnt->cl_tasks);
1019 spin_unlock(&clnt->cl_lock);
1020 }
1021}
1022
1023static void
1024rpc_task_set_rpc_message(struct rpc_task *task, const struct rpc_message *msg)
1025{
1026 if (msg != NULL) {
1027 task->tk_msg.rpc_proc = msg->rpc_proc;
1028 task->tk_msg.rpc_argp = msg->rpc_argp;
1029 task->tk_msg.rpc_resp = msg->rpc_resp;
Trond Myklebusta17c2152010-07-31 14:29:08 -04001030 if (msg->rpc_cred != NULL)
1031 task->tk_msg.rpc_cred = get_rpccred(msg->rpc_cred);
Trond Myklebust58f96122010-07-31 14:29:08 -04001032 }
1033}
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035/*
1036 * Default callback for async RPC calls
1037 */
1038static void
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001039rpc_default_callback(struct rpc_task *task, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041}
1042
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001043static const struct rpc_call_ops rpc_default_ops = {
1044 .rpc_call_done = rpc_default_callback,
1045};
1046
Trond Myklebustc970aa82007-07-14 15:39:59 -04001047/**
1048 * rpc_run_task - Allocate a new RPC task, then run rpc_execute against it
1049 * @task_setup_data: pointer to task initialisation data
1050 */
1051struct rpc_task *rpc_run_task(const struct rpc_task_setup *task_setup_data)
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001052{
Trond Myklebust19445b92010-04-16 16:41:10 -04001053 struct rpc_task *task;
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001054
Trond Myklebust84115e12007-07-14 15:39:59 -04001055 task = rpc_new_task(task_setup_data);
Trond Myklebust19445b92010-04-16 16:41:10 -04001056 if (IS_ERR(task))
Trond Myklebust50859252007-10-25 18:19:37 -04001057 goto out;
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001058
Trond Myklebust58f96122010-07-31 14:29:08 -04001059 rpc_task_set_client(task, task_setup_data->rpc_client);
1060 rpc_task_set_rpc_message(task, task_setup_data->rpc_message);
1061
Trond Myklebust58f96122010-07-31 14:29:08 -04001062 if (task->tk_action == NULL)
1063 rpc_call_start(task);
1064
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001065 atomic_inc(&task->tk_count);
1066 rpc_execute(task);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001067out:
Trond Myklebust19445b92010-04-16 16:41:10 -04001068 return task;
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001069}
Trond Myklebustc970aa82007-07-14 15:39:59 -04001070EXPORT_SYMBOL_GPL(rpc_run_task);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001071
1072/**
1073 * rpc_call_sync - Perform a synchronous RPC call
1074 * @clnt: pointer to RPC client
1075 * @msg: RPC call parameters
1076 * @flags: RPC call flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 */
Trond Myklebustcbc20052008-02-14 11:11:30 -05001078int rpc_call_sync(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
1080 struct rpc_task *task;
Trond Myklebust84115e12007-07-14 15:39:59 -04001081 struct rpc_task_setup task_setup_data = {
1082 .rpc_client = clnt,
1083 .rpc_message = msg,
1084 .callback_ops = &rpc_default_ops,
1085 .flags = flags,
1086 };
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001087 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Weston Andros Adamson50d2bdb2012-11-01 16:04:40 -04001089 WARN_ON_ONCE(flags & RPC_TASK_ASYNC);
1090 if (flags & RPC_TASK_ASYNC) {
1091 rpc_release_calldata(task_setup_data.callback_ops,
1092 task_setup_data.callback_data);
1093 return -EINVAL;
1094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Trond Myklebustc970aa82007-07-14 15:39:59 -04001096 task = rpc_run_task(&task_setup_data);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001097 if (IS_ERR(task))
1098 return PTR_ERR(task);
Trond Myklebuste60859a2006-01-03 09:55:10 +01001099 status = task->tk_status;
Trond Myklebustbde8f002007-01-24 11:54:53 -08001100 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return status;
1102}
Trond Myklebuste8914c62007-07-14 15:39:59 -04001103EXPORT_SYMBOL_GPL(rpc_call_sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001105/**
1106 * rpc_call_async - Perform an asynchronous RPC call
1107 * @clnt: pointer to RPC client
1108 * @msg: RPC call parameters
1109 * @flags: RPC call flags
Randy Dunlap65b6e422008-02-13 15:03:23 -08001110 * @tk_ops: RPC call ops
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001111 * @data: user call data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 */
1113int
Trond Myklebustcbc20052008-02-14 11:11:30 -05001114rpc_call_async(struct rpc_clnt *clnt, const struct rpc_message *msg, int flags,
Trond Myklebust963d8fe2006-01-03 09:55:04 +01001115 const struct rpc_call_ops *tk_ops, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 struct rpc_task *task;
Trond Myklebust84115e12007-07-14 15:39:59 -04001118 struct rpc_task_setup task_setup_data = {
1119 .rpc_client = clnt,
1120 .rpc_message = msg,
1121 .callback_ops = tk_ops,
1122 .callback_data = data,
1123 .flags = flags|RPC_TASK_ASYNC,
1124 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Trond Myklebustc970aa82007-07-14 15:39:59 -04001126 task = rpc_run_task(&task_setup_data);
Trond Myklebust6e5b70e2007-06-12 10:02:37 -04001127 if (IS_ERR(task))
1128 return PTR_ERR(task);
1129 rpc_put_task(task);
1130 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
Trond Myklebuste8914c62007-07-14 15:39:59 -04001132EXPORT_SYMBOL_GPL(rpc_call_async);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001134#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001135/**
1136 * rpc_run_bc_task - Allocate a new RPC task for backchannel use, then run
1137 * rpc_execute against it
Jaswinder Singh Rajput7a73fdd2009-09-24 14:58:42 -04001138 * @req: RPC request
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001139 */
Trond Myklebust0f419792015-06-01 22:59:08 -04001140struct rpc_task *rpc_run_bc_task(struct rpc_rqst *req)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001141{
1142 struct rpc_task *task;
1143 struct xdr_buf *xbufp = &req->rq_snd_buf;
1144 struct rpc_task_setup task_setup_data = {
Trond Myklebust0f419792015-06-01 22:59:08 -04001145 .callback_ops = &rpc_default_ops,
Trond Myklebust38325912015-06-19 13:04:13 -04001146 .flags = RPC_TASK_SOFTCONN,
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001147 };
1148
1149 dprintk("RPC: rpc_run_bc_task req= %p\n", req);
1150 /*
1151 * Create an rpc_task to send the data
1152 */
1153 task = rpc_new_task(&task_setup_data);
Trond Myklebust19445b92010-04-16 16:41:10 -04001154 if (IS_ERR(task)) {
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001155 xprt_free_bc_request(req);
1156 goto out;
1157 }
1158 task->tk_rqstp = req;
1159
1160 /*
1161 * Set up the xdr_buf length.
1162 * This also indicates that the buffer is XDR encoded already.
1163 */
1164 xbufp->len = xbufp->head[0].iov_len + xbufp->page_len +
1165 xbufp->tail[0].iov_len;
1166
1167 task->tk_action = call_bc_transmit;
1168 atomic_inc(&task->tk_count);
Weston Andros Adamson9a6478f2012-10-23 10:43:27 -04001169 WARN_ON_ONCE(atomic_read(&task->tk_count) != 2);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001170 rpc_execute(task);
1171
1172out:
1173 dprintk("RPC: rpc_run_bc_task: task= %p\n", task);
1174 return task;
1175}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001176#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178void
Trond Myklebust77de2c52007-10-25 18:40:21 -04001179rpc_call_start(struct rpc_task *task)
1180{
1181 task->tk_action = call_start;
1182}
1183EXPORT_SYMBOL_GPL(rpc_call_start);
1184
Chuck Levered394402006-08-22 20:06:17 -04001185/**
1186 * rpc_peeraddr - extract remote peer address from clnt's xprt
1187 * @clnt: RPC client structure
1188 * @buf: target buffer
Randy Dunlap65b6e422008-02-13 15:03:23 -08001189 * @bufsize: length of target buffer
Chuck Levered394402006-08-22 20:06:17 -04001190 *
1191 * Returns the number of bytes that are actually in the stored address.
1192 */
1193size_t rpc_peeraddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t bufsize)
1194{
1195 size_t bytes;
Trond Myklebust2446ab62012-03-01 17:00:56 -05001196 struct rpc_xprt *xprt;
Chuck Levered394402006-08-22 20:06:17 -04001197
Trond Myklebust2446ab62012-03-01 17:00:56 -05001198 rcu_read_lock();
1199 xprt = rcu_dereference(clnt->cl_xprt);
1200
1201 bytes = xprt->addrlen;
Chuck Levered394402006-08-22 20:06:17 -04001202 if (bytes > bufsize)
1203 bytes = bufsize;
Trond Myklebust2446ab62012-03-01 17:00:56 -05001204 memcpy(buf, &xprt->addr, bytes);
1205 rcu_read_unlock();
1206
1207 return bytes;
Chuck Levered394402006-08-22 20:06:17 -04001208}
Chuck Leverb86acd52006-08-22 20:06:22 -04001209EXPORT_SYMBOL_GPL(rpc_peeraddr);
Chuck Levered394402006-08-22 20:06:17 -04001210
Chuck Leverf425eba2006-08-22 20:06:18 -04001211/**
1212 * rpc_peeraddr2str - return remote peer address in printable format
1213 * @clnt: RPC client structure
1214 * @format: address format
1215 *
Trond Myklebust2446ab62012-03-01 17:00:56 -05001216 * NB: the lifetime of the memory referenced by the returned pointer is
1217 * the same as the rpc_xprt itself. As long as the caller uses this
1218 * pointer, it must hold the RCU read lock.
Chuck Leverf425eba2006-08-22 20:06:18 -04001219 */
Chuck Leverb454ae92008-01-07 18:34:48 -05001220const char *rpc_peeraddr2str(struct rpc_clnt *clnt,
1221 enum rpc_display_format_t format)
Chuck Leverf425eba2006-08-22 20:06:18 -04001222{
Trond Myklebust2446ab62012-03-01 17:00:56 -05001223 struct rpc_xprt *xprt;
1224
1225 xprt = rcu_dereference(clnt->cl_xprt);
Chuck Lever7559c7a2006-12-05 16:35:37 -05001226
1227 if (xprt->address_strings[format] != NULL)
1228 return xprt->address_strings[format];
1229 else
1230 return "unprintable";
Chuck Leverf425eba2006-08-22 20:06:18 -04001231}
Chuck Leverb86acd52006-08-22 20:06:22 -04001232EXPORT_SYMBOL_GPL(rpc_peeraddr2str);
Chuck Leverf425eba2006-08-22 20:06:18 -04001233
Chuck Lever2e738fd2012-03-01 17:01:14 -05001234static const struct sockaddr_in rpc_inaddr_loopback = {
1235 .sin_family = AF_INET,
1236 .sin_addr.s_addr = htonl(INADDR_ANY),
1237};
1238
1239static const struct sockaddr_in6 rpc_in6addr_loopback = {
1240 .sin6_family = AF_INET6,
1241 .sin6_addr = IN6ADDR_ANY_INIT,
1242};
1243
1244/*
1245 * Try a getsockname() on a connected datagram socket. Using a
1246 * connected datagram socket prevents leaving a socket in TIME_WAIT.
1247 * This conserves the ephemeral port number space.
1248 *
1249 * Returns zero and fills in "buf" if successful; otherwise, a
1250 * negative errno is returned.
1251 */
1252static int rpc_sockname(struct net *net, struct sockaddr *sap, size_t salen,
1253 struct sockaddr *buf, int buflen)
1254{
1255 struct socket *sock;
1256 int err;
1257
1258 err = __sock_create(net, sap->sa_family,
1259 SOCK_DGRAM, IPPROTO_UDP, &sock, 1);
1260 if (err < 0) {
1261 dprintk("RPC: can't create UDP socket (%d)\n", err);
1262 goto out;
1263 }
1264
1265 switch (sap->sa_family) {
1266 case AF_INET:
1267 err = kernel_bind(sock,
1268 (struct sockaddr *)&rpc_inaddr_loopback,
1269 sizeof(rpc_inaddr_loopback));
1270 break;
1271 case AF_INET6:
1272 err = kernel_bind(sock,
1273 (struct sockaddr *)&rpc_in6addr_loopback,
1274 sizeof(rpc_in6addr_loopback));
1275 break;
1276 default:
1277 err = -EAFNOSUPPORT;
1278 goto out;
1279 }
1280 if (err < 0) {
1281 dprintk("RPC: can't bind UDP socket (%d)\n", err);
1282 goto out_release;
1283 }
1284
1285 err = kernel_connect(sock, sap, salen, 0);
1286 if (err < 0) {
1287 dprintk("RPC: can't connect UDP socket (%d)\n", err);
1288 goto out_release;
1289 }
1290
1291 err = kernel_getsockname(sock, buf, &buflen);
1292 if (err < 0) {
1293 dprintk("RPC: getsockname failed (%d)\n", err);
1294 goto out_release;
1295 }
1296
1297 err = 0;
1298 if (buf->sa_family == AF_INET6) {
1299 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)buf;
1300 sin6->sin6_scope_id = 0;
1301 }
1302 dprintk("RPC: %s succeeded\n", __func__);
1303
1304out_release:
1305 sock_release(sock);
1306out:
1307 return err;
1308}
1309
1310/*
1311 * Scraping a connected socket failed, so we don't have a useable
1312 * local address. Fallback: generate an address that will prevent
1313 * the server from calling us back.
1314 *
1315 * Returns zero and fills in "buf" if successful; otherwise, a
1316 * negative errno is returned.
1317 */
1318static int rpc_anyaddr(int family, struct sockaddr *buf, size_t buflen)
1319{
1320 switch (family) {
1321 case AF_INET:
1322 if (buflen < sizeof(rpc_inaddr_loopback))
1323 return -EINVAL;
1324 memcpy(buf, &rpc_inaddr_loopback,
1325 sizeof(rpc_inaddr_loopback));
1326 break;
1327 case AF_INET6:
1328 if (buflen < sizeof(rpc_in6addr_loopback))
1329 return -EINVAL;
1330 memcpy(buf, &rpc_in6addr_loopback,
1331 sizeof(rpc_in6addr_loopback));
Trond Myklebust0b161e62015-12-30 18:14:06 -05001332 break;
Chuck Lever2e738fd2012-03-01 17:01:14 -05001333 default:
1334 dprintk("RPC: %s: address family not supported\n",
1335 __func__);
1336 return -EAFNOSUPPORT;
1337 }
1338 dprintk("RPC: %s: succeeded\n", __func__);
1339 return 0;
1340}
1341
1342/**
1343 * rpc_localaddr - discover local endpoint address for an RPC client
1344 * @clnt: RPC client structure
1345 * @buf: target buffer
1346 * @buflen: size of target buffer, in bytes
1347 *
1348 * Returns zero and fills in "buf" and "buflen" if successful;
1349 * otherwise, a negative errno is returned.
1350 *
1351 * This works even if the underlying transport is not currently connected,
1352 * or if the upper layer never previously provided a source address.
1353 *
1354 * The result of this function call is transient: multiple calls in
1355 * succession may give different results, depending on how local
1356 * networking configuration changes over time.
1357 */
1358int rpc_localaddr(struct rpc_clnt *clnt, struct sockaddr *buf, size_t buflen)
1359{
1360 struct sockaddr_storage address;
1361 struct sockaddr *sap = (struct sockaddr *)&address;
1362 struct rpc_xprt *xprt;
1363 struct net *net;
1364 size_t salen;
1365 int err;
1366
1367 rcu_read_lock();
1368 xprt = rcu_dereference(clnt->cl_xprt);
1369 salen = xprt->addrlen;
1370 memcpy(sap, &xprt->addr, salen);
1371 net = get_net(xprt->xprt_net);
1372 rcu_read_unlock();
1373
1374 rpc_set_port(sap, 0);
1375 err = rpc_sockname(net, sap, salen, buf, buflen);
1376 put_net(net);
1377 if (err != 0)
1378 /* Couldn't discover local address, return ANYADDR */
1379 return rpc_anyaddr(sap->sa_family, buf, buflen);
1380 return 0;
1381}
1382EXPORT_SYMBOL_GPL(rpc_localaddr);
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384void
1385rpc_setbufsize(struct rpc_clnt *clnt, unsigned int sndsize, unsigned int rcvsize)
1386{
Trond Myklebust2446ab62012-03-01 17:00:56 -05001387 struct rpc_xprt *xprt;
1388
1389 rcu_read_lock();
1390 xprt = rcu_dereference(clnt->cl_xprt);
Chuck Lever470056c2005-08-25 16:25:56 -07001391 if (xprt->ops->set_buffer_size)
1392 xprt->ops->set_buffer_size(xprt, sndsize, rcvsize);
Trond Myklebust2446ab62012-03-01 17:00:56 -05001393 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
Trond Myklebuste8914c62007-07-14 15:39:59 -04001395EXPORT_SYMBOL_GPL(rpc_setbufsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Trond Myklebust2446ab62012-03-01 17:00:56 -05001397/**
1398 * rpc_protocol - Get transport protocol number for an RPC client
1399 * @clnt: RPC client to query
1400 *
1401 */
1402int rpc_protocol(struct rpc_clnt *clnt)
1403{
1404 int protocol;
1405
1406 rcu_read_lock();
1407 protocol = rcu_dereference(clnt->cl_xprt)->prot;
1408 rcu_read_unlock();
1409 return protocol;
1410}
1411EXPORT_SYMBOL_GPL(rpc_protocol);
1412
1413/**
1414 * rpc_net_ns - Get the network namespace for this RPC client
1415 * @clnt: RPC client to query
1416 *
1417 */
1418struct net *rpc_net_ns(struct rpc_clnt *clnt)
1419{
1420 struct net *ret;
1421
1422 rcu_read_lock();
1423 ret = rcu_dereference(clnt->cl_xprt)->xprt_net;
1424 rcu_read_unlock();
1425 return ret;
1426}
1427EXPORT_SYMBOL_GPL(rpc_net_ns);
1428
1429/**
1430 * rpc_max_payload - Get maximum payload size for a transport, in bytes
1431 * @clnt: RPC client to query
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 *
1433 * For stream transports, this is one RPC record fragment (see RFC
1434 * 1831), as we don't support multi-record requests yet. For datagram
1435 * transports, this is the size of an IP packet minus the IP, UDP, and
1436 * RPC header sizes.
1437 */
1438size_t rpc_max_payload(struct rpc_clnt *clnt)
1439{
Trond Myklebust2446ab62012-03-01 17:00:56 -05001440 size_t ret;
1441
1442 rcu_read_lock();
1443 ret = rcu_dereference(clnt->cl_xprt)->max_payload;
1444 rcu_read_unlock();
1445 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
Chuck Leverb86acd52006-08-22 20:06:22 -04001447EXPORT_SYMBOL_GPL(rpc_max_payload);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Chuck Lever35f5a422006-01-03 09:55:50 +01001449/**
Chuck Lever6b26cc82016-05-02 14:40:40 -04001450 * rpc_max_bc_payload - Get maximum backchannel payload size, in bytes
1451 * @clnt: RPC client to query
1452 */
1453size_t rpc_max_bc_payload(struct rpc_clnt *clnt)
1454{
1455 struct rpc_xprt *xprt;
1456 size_t ret;
1457
1458 rcu_read_lock();
1459 xprt = rcu_dereference(clnt->cl_xprt);
1460 ret = xprt->ops->bc_maxpayload(xprt);
1461 rcu_read_unlock();
1462 return ret;
1463}
1464EXPORT_SYMBOL_GPL(rpc_max_bc_payload);
1465
1466/**
Trond Myklebust512e4b22013-03-02 15:54:11 -08001467 * rpc_get_timeout - Get timeout for transport in units of HZ
Weston Andros Adamsonedddbb12013-02-28 20:30:09 -05001468 * @clnt: RPC client to query
1469 */
1470unsigned long rpc_get_timeout(struct rpc_clnt *clnt)
1471{
1472 unsigned long ret;
1473
1474 rcu_read_lock();
1475 ret = rcu_dereference(clnt->cl_xprt)->timeout->to_initval;
1476 rcu_read_unlock();
1477 return ret;
1478}
1479EXPORT_SYMBOL_GPL(rpc_get_timeout);
1480
1481/**
Chuck Lever35f5a422006-01-03 09:55:50 +01001482 * rpc_force_rebind - force transport to check that remote port is unchanged
1483 * @clnt: client to rebind
1484 *
1485 */
1486void rpc_force_rebind(struct rpc_clnt *clnt)
1487{
Trond Myklebust2446ab62012-03-01 17:00:56 -05001488 if (clnt->cl_autobind) {
1489 rcu_read_lock();
1490 xprt_clear_bound(rcu_dereference(clnt->cl_xprt));
1491 rcu_read_unlock();
1492 }
Chuck Lever35f5a422006-01-03 09:55:50 +01001493}
Chuck Leverb86acd52006-08-22 20:06:22 -04001494EXPORT_SYMBOL_GPL(rpc_force_rebind);
Chuck Lever35f5a422006-01-03 09:55:50 +01001495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496/*
Andy Adamsonaae20062009-04-01 09:22:40 -04001497 * Restart an (async) RPC call from the call_prepare state.
1498 * Usually called from within the exit handler.
1499 */
Trond Myklebustf1f88fc2010-07-31 14:29:07 -04001500int
Andy Adamsonaae20062009-04-01 09:22:40 -04001501rpc_restart_call_prepare(struct rpc_task *task)
1502{
1503 if (RPC_ASSASSINATED(task))
Trond Myklebustf1f88fc2010-07-31 14:29:07 -04001504 return 0;
Trond Myklebustd00c5d42011-10-19 12:17:29 -07001505 task->tk_action = call_start;
Trond Myklebust494314c2014-03-20 12:59:09 -04001506 task->tk_status = 0;
Trond Myklebustd00c5d42011-10-19 12:17:29 -07001507 if (task->tk_ops->rpc_call_prepare != NULL)
1508 task->tk_action = rpc_prepare_task;
Trond Myklebustf1f88fc2010-07-31 14:29:07 -04001509 return 1;
Andy Adamsonaae20062009-04-01 09:22:40 -04001510}
1511EXPORT_SYMBOL_GPL(rpc_restart_call_prepare);
1512
1513/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 * Restart an (async) RPC call. Usually called from within the
1515 * exit handler.
1516 */
Trond Myklebustf1f88fc2010-07-31 14:29:07 -04001517int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518rpc_restart_call(struct rpc_task *task)
1519{
1520 if (RPC_ASSASSINATED(task))
Trond Myklebustf1f88fc2010-07-31 14:29:07 -04001521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 task->tk_action = call_start;
Trond Myklebust494314c2014-03-20 12:59:09 -04001523 task->tk_status = 0;
Trond Myklebustf1f88fc2010-07-31 14:29:07 -04001524 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
Trond Myklebuste8914c62007-07-14 15:39:59 -04001526EXPORT_SYMBOL_GPL(rpc_restart_call);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Jeff Laytonf895b252014-11-17 16:58:04 -05001528#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Jeff Laytonb4b9d2c2014-11-26 14:44:43 -05001529const char
1530*rpc_proc_name(const struct rpc_task *task)
Chuck Lever3748f1e2008-05-21 17:09:12 -04001531{
1532 const struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
1533
1534 if (proc) {
1535 if (proc->p_name)
1536 return proc->p_name;
1537 else
1538 return "NULL";
1539 } else
1540 return "no proc";
1541}
1542#endif
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544/*
1545 * 0. Initial state
1546 *
1547 * Other FSM states can be visited zero or more times, but
1548 * this state is visited exactly once for each RPC.
1549 */
1550static void
1551call_start(struct rpc_task *task)
1552{
1553 struct rpc_clnt *clnt = task->tk_client;
1554
Chuck Lever3748f1e2008-05-21 17:09:12 -04001555 dprintk("RPC: %5u call_start %s%d proc %s (%s)\n", task->tk_pid,
Trond Myklebust55909f22013-08-23 11:48:15 -04001556 clnt->cl_program->name, clnt->cl_vers,
Chuck Lever3748f1e2008-05-21 17:09:12 -04001557 rpc_proc_name(task),
Chuck Lever46121cf2007-01-31 12:14:08 -05001558 (RPC_IS_ASYNC(task) ? "async" : "sync"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 /* Increment call count */
1561 task->tk_msg.rpc_proc->p_count++;
1562 clnt->cl_stats->rpccnt++;
1563 task->tk_action = call_reserve;
Bill Bakerb5bc39d2018-06-19 16:24:58 -05001564 rpc_task_set_transport(task, clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565}
1566
1567/*
1568 * 1. Reserve an RPC call slot
1569 */
1570static void
1571call_reserve(struct rpc_task *task)
1572{
Chuck Lever46121cf2007-01-31 12:14:08 -05001573 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 task->tk_status = 0;
1576 task->tk_action = call_reserveresult;
1577 xprt_reserve(task);
1578}
1579
Trond Myklebustba60eb22013-04-14 10:49:37 -04001580static void call_retry_reserve(struct rpc_task *task);
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582/*
1583 * 1b. Grok the result of xprt_reserve()
1584 */
1585static void
1586call_reserveresult(struct rpc_task *task)
1587{
1588 int status = task->tk_status;
1589
Chuck Lever46121cf2007-01-31 12:14:08 -05001590 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 /*
1593 * After a call to xprt_reserve(), we must have either
1594 * a request slot or else an error status.
1595 */
1596 task->tk_status = 0;
1597 if (status >= 0) {
1598 if (task->tk_rqstp) {
J. Bruce Fieldsf2d47d02010-09-12 19:55:25 -04001599 task->tk_action = call_refresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return;
1601 }
1602
1603 printk(KERN_ERR "%s: status=%d, but no request slot, exiting\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001604 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 rpc_exit(task, -EIO);
1606 return;
1607 }
1608
1609 /*
1610 * Even though there was an error, we may have acquired
1611 * a request slot somehow. Make sure not to leak it.
1612 */
1613 if (task->tk_rqstp) {
1614 printk(KERN_ERR "%s: status=%d, request allocated anyway\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001615 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 xprt_release(task);
1617 }
1618
1619 switch (status) {
Trond Myklebust1afeaf52012-05-19 12:12:53 -04001620 case -ENOMEM:
1621 rpc_delay(task, HZ >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 case -EAGAIN: /* woken up; retry */
Trond Myklebustba60eb22013-04-14 10:49:37 -04001623 task->tk_action = call_retry_reserve;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return;
1625 case -EIO: /* probably a shutdown */
1626 break;
1627 default:
1628 printk(KERN_ERR "%s: unrecognized error %d, exiting\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08001629 __func__, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 break;
1631 }
1632 rpc_exit(task, status);
1633}
1634
1635/*
Trond Myklebustba60eb22013-04-14 10:49:37 -04001636 * 1c. Retry reserving an RPC call slot
1637 */
1638static void
1639call_retry_reserve(struct rpc_task *task)
1640{
1641 dprint_status(task);
1642
1643 task->tk_status = 0;
1644 task->tk_action = call_reserveresult;
1645 xprt_retry_reserve(task);
1646}
1647
1648/*
J. Bruce Fields55576242010-09-12 19:55:25 -04001649 * 2. Bind and/or refresh the credentials
1650 */
1651static void
1652call_refresh(struct rpc_task *task)
1653{
1654 dprint_status(task);
1655
1656 task->tk_action = call_refreshresult;
1657 task->tk_status = 0;
1658 task->tk_client->cl_stats->rpcauthrefresh++;
1659 rpcauth_refreshcred(task);
1660}
1661
1662/*
1663 * 2a. Process the results of a credential refresh
1664 */
1665static void
1666call_refreshresult(struct rpc_task *task)
1667{
1668 int status = task->tk_status;
1669
1670 dprint_status(task);
1671
1672 task->tk_status = 0;
Trond Myklebust5fc43972010-11-20 11:13:31 -05001673 task->tk_action = call_refresh;
J. Bruce Fields55576242010-09-12 19:55:25 -04001674 switch (status) {
Trond Myklebust5fc43972010-11-20 11:13:31 -05001675 case 0:
Weston Andros Adamson6ff33b72013-12-17 12:16:11 -05001676 if (rpcauth_uptodatecred(task)) {
Trond Myklebust5fc43972010-11-20 11:13:31 -05001677 task->tk_action = call_allocate;
Weston Andros Adamson6ff33b72013-12-17 12:16:11 -05001678 return;
1679 }
1680 /* Use rate-limiting and a max number of retries if refresh
1681 * had status 0 but failed to update the cred.
1682 */
J. Bruce Fields55576242010-09-12 19:55:25 -04001683 case -ETIMEDOUT:
1684 rpc_delay(task, 3*HZ);
Trond Myklebust5fc43972010-11-20 11:13:31 -05001685 case -EAGAIN:
1686 status = -EACCES;
Andy Adamsonf1ff0c22013-08-14 11:59:13 -04001687 case -EKEYEXPIRED:
Trond Myklebust5fc43972010-11-20 11:13:31 -05001688 if (!task->tk_cred_retry)
1689 break;
1690 task->tk_cred_retry--;
1691 dprintk("RPC: %5u %s: retry refresh creds\n",
1692 task->tk_pid, __func__);
1693 return;
J. Bruce Fields55576242010-09-12 19:55:25 -04001694 }
Trond Myklebust5fc43972010-11-20 11:13:31 -05001695 dprintk("RPC: %5u %s: refresh creds failed with error %d\n",
1696 task->tk_pid, __func__, status);
1697 rpc_exit(task, status);
J. Bruce Fields55576242010-09-12 19:55:25 -04001698}
1699
1700/*
1701 * 2b. Allocate the buffer. For details, see sched.c:rpc_malloc.
Chuck Lever02107142006-01-03 09:55:49 +01001702 * (Note: buffer memory is freed in xprt_release).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 */
1704static void
1705call_allocate(struct rpc_task *task)
1706{
J. Bruce Fieldsf2d47d02010-09-12 19:55:25 -04001707 unsigned int slack = task->tk_rqstp->rq_cred->cr_auth->au_cslack;
Chuck Lever02107142006-01-03 09:55:49 +01001708 struct rpc_rqst *req = task->tk_rqstp;
Trond Myklebusta4f08352013-01-08 09:10:21 -05001709 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Lever2bea90d2007-03-29 16:47:53 -04001710 struct rpc_procinfo *proc = task->tk_msg.rpc_proc;
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04001711 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Chuck Lever46121cf2007-01-31 12:14:08 -05001713 dprint_status(task);
1714
Chuck Lever2bea90d2007-03-29 16:47:53 -04001715 task->tk_status = 0;
J. Bruce Fieldsf2d47d02010-09-12 19:55:25 -04001716 task->tk_action = call_bind;
Chuck Lever2bea90d2007-03-29 16:47:53 -04001717
Chuck Lever02107142006-01-03 09:55:49 +01001718 if (req->rq_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return;
1720
Chuck Lever2bea90d2007-03-29 16:47:53 -04001721 if (proc->p_proc != 0) {
1722 BUG_ON(proc->p_arglen == 0);
1723 if (proc->p_decode != NULL)
1724 BUG_ON(proc->p_replen == 0);
1725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Chuck Lever2bea90d2007-03-29 16:47:53 -04001727 /*
1728 * Calculate the size (in quads) of the RPC call
1729 * and reply headers, and convert both values
1730 * to byte sizes.
1731 */
1732 req->rq_callsize = RPC_CALLHDRSIZE + (slack << 1) + proc->p_arglen;
1733 req->rq_callsize <<= 2;
1734 req->rq_rcvsize = RPC_REPHDRSIZE + slack + proc->p_replen;
1735 req->rq_rcvsize <<= 2;
1736
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04001737 status = xprt->ops->buf_alloc(task);
Chuck Lever4a068252015-05-11 14:02:25 -04001738 xprt_inject_disconnect(xprt);
Chuck Lever5fe6eaa2016-09-15 10:55:20 -04001739 if (status == 0)
1740 return;
1741 if (status != -ENOMEM) {
1742 rpc_exit(task, status);
1743 return;
1744 }
Chuck Lever46121cf2007-01-31 12:14:08 -05001745
1746 dprintk("RPC: %5u rpc_buffer allocation failed\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Trond Myklebust5afa9132011-06-17 10:14:59 -04001748 if (RPC_IS_ASYNC(task) || !fatal_signal_pending(current)) {
Trond Myklebustb6e9c712007-10-01 12:06:44 -04001749 task->tk_action = call_allocate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 rpc_delay(task, HZ>>4);
1751 return;
1752 }
1753
1754 rpc_exit(task, -ERESTARTSYS);
1755}
1756
Trond Myklebust940e3312005-11-09 21:45:24 -05001757static inline int
1758rpc_task_need_encode(struct rpc_task *task)
1759{
1760 return task->tk_rqstp->rq_snd_buf.len == 0;
1761}
1762
1763static inline void
1764rpc_task_force_reencode(struct rpc_task *task)
1765{
1766 task->tk_rqstp->rq_snd_buf.len = 0;
Trond Myklebust2574cc92009-08-28 11:12:12 -04001767 task->tk_rqstp->rq_bytes_sent = 0;
Trond Myklebust940e3312005-11-09 21:45:24 -05001768}
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770/*
1771 * 3. Encode arguments of an RPC call
1772 */
1773static void
Chuck Leverb0e1c572008-05-21 17:09:19 -04001774rpc_xdr_encode(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 struct rpc_rqst *req = task->tk_rqstp;
Chuck Lever9f06c712010-12-14 14:59:18 +00001777 kxdreproc_t encode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001778 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Chuck Lever46121cf2007-01-31 12:14:08 -05001780 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Chuck Leverb9c5bc02016-09-15 10:55:12 -04001782 xdr_buf_init(&req->rq_snd_buf,
1783 req->rq_buffer,
1784 req->rq_callsize);
1785 xdr_buf_init(&req->rq_rcv_buf,
Chuck Lever68778942016-09-15 10:55:37 -04001786 req->rq_rbuffer,
Chuck Leverb9c5bc02016-09-15 10:55:12 -04001787 req->rq_rcvsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Chuck Leverb0e1c572008-05-21 17:09:19 -04001789 p = rpc_encode_header(task);
1790 if (p == NULL) {
1791 printk(KERN_INFO "RPC: couldn't encode RPC header, exit EIO\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 rpc_exit(task, -EIO);
1793 return;
1794 }
Chuck Leverb0e1c572008-05-21 17:09:19 -04001795
1796 encode = task->tk_msg.rpc_proc->p_encode;
J. Bruce Fieldsf3680312005-10-13 16:54:48 -04001797 if (encode == NULL)
1798 return;
1799
1800 task->tk_status = rpcauth_wrap_req(task, encode, req, p,
1801 task->tk_msg.rpc_argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802}
1803
1804/*
1805 * 4. Get the server port number if not yet set
1806 */
1807static void
1808call_bind(struct rpc_task *task)
1809{
Trond Myklebustad2368d2013-01-08 10:08:33 -05001810 struct rpc_xprt *xprt = task->tk_rqstp->rq_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Chuck Lever46121cf2007-01-31 12:14:08 -05001812 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Chuck Leverda351872005-08-11 16:25:11 -04001814 task->tk_action = call_connect;
Chuck Leverec739ef2006-08-22 20:06:15 -04001815 if (!xprt_bound(xprt)) {
Chuck Leverda351872005-08-11 16:25:11 -04001816 task->tk_action = call_bind_status;
Chuck Leverec739ef2006-08-22 20:06:15 -04001817 task->tk_timeout = xprt->bind_timeout;
Chuck Leverbbf7c1d2006-08-22 20:06:16 -04001818 xprt->ops->rpcbind(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820}
1821
1822/*
Chuck Leverda351872005-08-11 16:25:11 -04001823 * 4a. Sort out bind result
1824 */
1825static void
1826call_bind_status(struct rpc_task *task)
1827{
Chuck Lever906462a2007-09-11 18:00:47 -04001828 int status = -EIO;
Chuck Leverda351872005-08-11 16:25:11 -04001829
1830 if (task->tk_status >= 0) {
Chuck Lever46121cf2007-01-31 12:14:08 -05001831 dprint_status(task);
Chuck Leverda351872005-08-11 16:25:11 -04001832 task->tk_status = 0;
1833 task->tk_action = call_connect;
1834 return;
1835 }
1836
Steve Dickson5753cba2012-02-06 10:08:08 -05001837 trace_rpc_bind_status(task);
Chuck Leverda351872005-08-11 16:25:11 -04001838 switch (task->tk_status) {
Trond Myklebust381ba742008-07-07 12:18:53 -04001839 case -ENOMEM:
1840 dprintk("RPC: %5u rpcbind out of memory\n", task->tk_pid);
1841 rpc_delay(task, HZ >> 2);
Chuck Lever2429cbf2007-09-11 18:00:41 -04001842 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001843 case -EACCES:
Chuck Lever46121cf2007-01-31 12:14:08 -05001844 dprintk("RPC: %5u remote rpcbind: RPC program/version "
1845 "unavailable\n", task->tk_pid);
Chuck Leverb79dc8c2007-09-11 18:00:52 -04001846 /* fail immediately if this is an RPC ping */
1847 if (task->tk_msg.rpc_proc->p_proc == 0) {
1848 status = -EOPNOTSUPP;
1849 break;
1850 }
Trond Myklebust0b760112011-05-31 15:15:34 -04001851 if (task->tk_rebind_retry == 0)
1852 break;
1853 task->tk_rebind_retry--;
Chuck Leverea635a52005-10-06 23:12:58 -04001854 rpc_delay(task, 3*HZ);
Trond Myklebustda458282006-08-31 15:44:52 -04001855 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001856 case -ETIMEDOUT:
Chuck Lever46121cf2007-01-31 12:14:08 -05001857 dprintk("RPC: %5u rpcbind request timed out\n",
Chuck Leverda351872005-08-11 16:25:11 -04001858 task->tk_pid);
Trond Myklebustda458282006-08-31 15:44:52 -04001859 goto retry_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001860 case -EPFNOSUPPORT:
Chuck Lever906462a2007-09-11 18:00:47 -04001861 /* server doesn't support any rpcbind version we know of */
Chuck Lever012da152009-12-03 15:58:56 -05001862 dprintk("RPC: %5u unrecognized remote rpcbind service\n",
Chuck Leverda351872005-08-11 16:25:11 -04001863 task->tk_pid);
1864 break;
1865 case -EPROTONOSUPPORT:
Chuck Lever00a6e7b2007-03-29 16:48:33 -04001866 dprintk("RPC: %5u remote rpcbind version unavailable, retrying\n",
Chuck Leverda351872005-08-11 16:25:11 -04001867 task->tk_pid);
Trond Myklebustfdb63dc2014-03-17 12:57:31 -04001868 goto retry_timeout;
Chuck Lever012da152009-12-03 15:58:56 -05001869 case -ECONNREFUSED: /* connection problems */
1870 case -ECONNRESET:
Trond Myklebustdf277272013-12-31 13:11:43 -05001871 case -ECONNABORTED:
Chuck Lever012da152009-12-03 15:58:56 -05001872 case -ENOTCONN:
1873 case -EHOSTDOWN:
1874 case -EHOSTUNREACH:
1875 case -ENETUNREACH:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04001876 case -ENOBUFS:
Chuck Lever012da152009-12-03 15:58:56 -05001877 case -EPIPE:
1878 dprintk("RPC: %5u remote rpcbind unreachable: %d\n",
1879 task->tk_pid, task->tk_status);
1880 if (!RPC_IS_SOFTCONN(task)) {
1881 rpc_delay(task, 5*HZ);
1882 goto retry_timeout;
1883 }
1884 status = task->tk_status;
1885 break;
Chuck Leverda351872005-08-11 16:25:11 -04001886 default:
Chuck Lever46121cf2007-01-31 12:14:08 -05001887 dprintk("RPC: %5u unrecognized rpcbind error (%d)\n",
Chuck Leverda351872005-08-11 16:25:11 -04001888 task->tk_pid, -task->tk_status);
Chuck Leverda351872005-08-11 16:25:11 -04001889 }
1890
1891 rpc_exit(task, status);
1892 return;
1893
Trond Myklebustda458282006-08-31 15:44:52 -04001894retry_timeout:
Trond Myklebustfdb63dc2014-03-17 12:57:31 -04001895 task->tk_status = 0;
Trond Myklebustda458282006-08-31 15:44:52 -04001896 task->tk_action = call_timeout;
Chuck Leverda351872005-08-11 16:25:11 -04001897}
1898
1899/*
1900 * 4b. Connect to the RPC server
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 */
1902static void
1903call_connect(struct rpc_task *task)
1904{
Trond Myklebustad2368d2013-01-08 10:08:33 -05001905 struct rpc_xprt *xprt = task->tk_rqstp->rq_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Chuck Lever46121cf2007-01-31 12:14:08 -05001907 dprintk("RPC: %5u call_connect xprt %p %s connected\n",
Chuck Leverda351872005-08-11 16:25:11 -04001908 task->tk_pid, xprt,
1909 (xprt_connected(xprt) ? "is" : "is not"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Chuck Leverda351872005-08-11 16:25:11 -04001911 task->tk_action = call_transmit;
1912 if (!xprt_connected(xprt)) {
1913 task->tk_action = call_connect_status;
1914 if (task->tk_status < 0)
1915 return;
Trond Myklebust786615b2013-08-05 16:04:47 -04001916 if (task->tk_flags & RPC_TASK_NOCONNECT) {
1917 rpc_exit(task, -ENOTCONN);
1918 return;
1919 }
Chuck Leverda351872005-08-11 16:25:11 -04001920 xprt_connect(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923
1924/*
Chuck Leverda351872005-08-11 16:25:11 -04001925 * 4c. Sort out connect result
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 */
1927static void
1928call_connect_status(struct rpc_task *task)
1929{
1930 struct rpc_clnt *clnt = task->tk_client;
1931 int status = task->tk_status;
1932
Chuck Lever46121cf2007-01-31 12:14:08 -05001933 dprint_status(task);
Chuck Leverda351872005-08-11 16:25:11 -04001934
Steve Dickson5753cba2012-02-06 10:08:08 -05001935 trace_rpc_connect_status(task, status);
Trond Myklebust561ec162013-09-26 15:22:45 -04001936 task->tk_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 switch (status) {
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05001938 case -ECONNREFUSED:
1939 case -ECONNRESET:
Trond Myklebustdf277272013-12-31 13:11:43 -05001940 case -ECONNABORTED:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05001941 case -ENETUNREACH:
Trond Myklebustdf277272013-12-31 13:11:43 -05001942 case -EHOSTUNREACH:
Trond Myklebust3913c782015-02-08 21:44:04 -05001943 case -EADDRINUSE:
Trond Myklebust3601c4a2014-06-30 13:42:19 -04001944 case -ENOBUFS:
Trond Myklebust2fc193c2014-07-03 00:02:57 -04001945 case -EPIPE:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05001946 if (RPC_IS_SOFTCONN(task))
1947 break;
Steve Dickson1fa3e2e2014-03-20 11:23:03 -04001948 /* retry with existing socket, after a delay */
1949 rpc_delay(task, 3*HZ);
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05001950 case -EAGAIN:
Trond Myklebust485f2252014-03-17 12:51:44 -04001951 /* Check for timeouts before looping back to call_bind */
1952 case -ETIMEDOUT:
1953 task->tk_action = call_timeout;
Trond Myklebust561ec162013-09-26 15:22:45 -04001954 return;
1955 case 0:
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05001956 clnt->cl_stats->netreconn++;
1957 task->tk_action = call_transmit;
1958 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
Trond Myklebust3ed5e2a2013-03-04 17:29:33 -05001960 rpc_exit(task, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961}
1962
1963/*
1964 * 5. Transmit the RPC request, and wait for reply
1965 */
1966static void
1967call_transmit(struct rpc_task *task)
1968{
Trond Myklebustca7f33a2013-09-25 13:39:45 -04001969 int is_retrans = RPC_WAS_SENT(task);
1970
Chuck Lever46121cf2007-01-31 12:14:08 -05001971 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 task->tk_action = call_status;
1974 if (task->tk_status < 0)
1975 return;
Trond Myklebust90051ea2013-09-25 12:17:18 -04001976 if (!xprt_prepare_transmit(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001978 task->tk_action = call_transmit_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 /* Encode here so that rpcsec_gss can use correct sequence number. */
Trond Myklebust940e3312005-11-09 21:45:24 -05001980 if (rpc_task_need_encode(task)) {
Chuck Leverb0e1c572008-05-21 17:09:19 -04001981 rpc_xdr_encode(task);
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -07001982 /* Did the encode result in an error condition? */
Trond Myklebust8b39f2b2008-05-14 19:48:25 -07001983 if (task->tk_status != 0) {
1984 /* Was the error nonfatal? */
1985 if (task->tk_status == -EAGAIN)
1986 rpc_delay(task, HZ >> 4);
1987 else
1988 rpc_exit(task, task->tk_status);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001989 return;
Trond Myklebust8b39f2b2008-05-14 19:48:25 -07001990 }
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -07001991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 xprt_transmit(task);
1993 if (task->tk_status < 0)
1994 return;
Trond Myklebustca7f33a2013-09-25 13:39:45 -04001995 if (is_retrans)
1996 task->tk_client->cl_stats->rpcretrans++;
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04001997 /*
1998 * On success, ensure that we call xprt_end_transmit() before sleeping
1999 * in order to allow access to the socket to other RPC requests.
2000 */
2001 call_transmit_status(task);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002002 if (rpc_reply_expected(task))
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002003 return;
2004 task->tk_action = rpc_exit_task;
Trond Myklebusta4f08352013-01-08 09:10:21 -05002005 rpc_wake_up_queued_task(&task->tk_rqstp->rq_xprt->pending, task);
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002006}
2007
2008/*
2009 * 5a. Handle cleanup after a transmission
2010 */
2011static void
2012call_transmit_status(struct rpc_task *task)
2013{
2014 task->tk_action = call_status;
Chuck Lever206a1342009-12-03 15:58:56 -05002015
2016 /*
2017 * Common case: success. Force the compiler to put this
2018 * test first.
2019 */
2020 if (task->tk_status == 0) {
2021 xprt_end_transmit(task);
2022 rpc_task_force_reencode(task);
2023 return;
2024 }
2025
Trond Myklebust15f081c2009-03-11 14:37:57 -04002026 switch (task->tk_status) {
2027 case -EAGAIN:
Trond Myklebust93aa6c72015-07-03 09:28:09 -04002028 case -ENOBUFS:
Trond Myklebust15f081c2009-03-11 14:37:57 -04002029 break;
2030 default:
Chuck Lever206a1342009-12-03 15:58:56 -05002031 dprint_status(task);
Trond Myklebust15f081c2009-03-11 14:37:57 -04002032 xprt_end_transmit(task);
Chuck Lever09a21c42009-12-03 15:58:56 -05002033 rpc_task_force_reencode(task);
2034 break;
Trond Myklebust15f081c2009-03-11 14:37:57 -04002035 /*
2036 * Special cases: if we've been waiting on the
2037 * socket's write_space() callback, or if the
2038 * socket just returned a connection error,
2039 * then hold onto the transport lock.
2040 */
2041 case -ECONNREFUSED:
Trond Myklebust15f081c2009-03-11 14:37:57 -04002042 case -EHOSTDOWN:
2043 case -EHOSTUNREACH:
2044 case -ENETUNREACH:
Jason Baron3dedbb52014-09-24 18:08:04 +00002045 case -EPERM:
Chuck Lever09a21c42009-12-03 15:58:56 -05002046 if (RPC_IS_SOFTCONN(task)) {
2047 xprt_end_transmit(task);
2048 rpc_exit(task, task->tk_status);
2049 break;
2050 }
2051 case -ECONNRESET:
Trond Myklebustdf277272013-12-31 13:11:43 -05002052 case -ECONNABORTED:
Trond Myklebust3913c782015-02-08 21:44:04 -05002053 case -EADDRINUSE:
Chuck Lever09a21c42009-12-03 15:58:56 -05002054 case -ENOTCONN:
Trond Myklebustc8485e42009-03-11 14:37:59 -04002055 case -EPIPE:
Trond Myklebust15f081c2009-03-11 14:37:57 -04002056 rpc_task_force_reencode(task);
2057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
Trond Myklebust9e00abc2011-07-13 19:20:49 -04002060#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002061/*
2062 * 5b. Send the backchannel RPC reply. On error, drop the reply. In
2063 * addition, disconnect on connectivity errors.
2064 */
2065static void
2066call_bc_transmit(struct rpc_task *task)
2067{
2068 struct rpc_rqst *req = task->tk_rqstp;
2069
Trond Myklebust1193d582015-06-02 11:53:21 -04002070 if (!xprt_prepare_transmit(task))
2071 goto out_retry;
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002072
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002073 if (task->tk_status < 0) {
2074 printk(KERN_NOTICE "RPC: Could not send backchannel reply "
2075 "error: %d\n", task->tk_status);
Trond Myklebust1193d582015-06-02 11:53:21 -04002076 goto out_done;
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002077 }
Trond Myklebust1193d582015-06-02 11:53:21 -04002078 if (req->rq_connect_cookie != req->rq_xprt->connect_cookie)
2079 req->rq_bytes_sent = 0;
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002080
2081 xprt_transmit(task);
Trond Myklebust1193d582015-06-02 11:53:21 -04002082
2083 if (task->tk_status == -EAGAIN)
2084 goto out_nospace;
2085
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002086 xprt_end_transmit(task);
2087 dprint_status(task);
2088 switch (task->tk_status) {
2089 case 0:
2090 /* Success */
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002091 case -EHOSTDOWN:
2092 case -EHOSTUNREACH:
2093 case -ENETUNREACH:
Trond Myklebust38325912015-06-19 13:04:13 -04002094 case -ECONNRESET:
2095 case -ECONNREFUSED:
2096 case -EADDRINUSE:
2097 case -ENOTCONN:
2098 case -EPIPE:
2099 break;
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002100 case -ETIMEDOUT:
2101 /*
2102 * Problem reaching the server. Disconnect and let the
2103 * forechannel reestablish the connection. The server will
2104 * have to retransmit the backchannel request and we'll
2105 * reprocess it. Since these ops are idempotent, there's no
2106 * need to cache our reply at this time.
2107 */
2108 printk(KERN_NOTICE "RPC: Could not send backchannel reply "
2109 "error: %d\n", task->tk_status);
Trond Myklebusta4f08352013-01-08 09:10:21 -05002110 xprt_conditional_disconnect(req->rq_xprt,
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002111 req->rq_connect_cookie);
2112 break;
2113 default:
2114 /*
2115 * We were unable to reply and will have to drop the
2116 * request. The server should reconnect and retransmit.
2117 */
Weston Andros Adamson1facf4c2012-10-23 10:43:30 -04002118 WARN_ON_ONCE(task->tk_status == -EAGAIN);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002119 printk(KERN_NOTICE "RPC: Could not send backchannel reply "
2120 "error: %d\n", task->tk_status);
2121 break;
2122 }
2123 rpc_wake_up_queued_task(&req->rq_xprt->pending, task);
Trond Myklebust1193d582015-06-02 11:53:21 -04002124out_done:
2125 task->tk_action = rpc_exit_task;
2126 return;
2127out_nospace:
2128 req->rq_connect_cookie = req->rq_xprt->connect_cookie;
2129out_retry:
2130 task->tk_status = 0;
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002131}
Trond Myklebust9e00abc2011-07-13 19:20:49 -04002132#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04002133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134/*
2135 * 6. Sort out the RPC call status
2136 */
2137static void
2138call_status(struct rpc_task *task)
2139{
2140 struct rpc_clnt *clnt = task->tk_client;
2141 struct rpc_rqst *req = task->tk_rqstp;
2142 int status;
2143
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -04002144 if (req->rq_reply_bytes_recvd > 0 && !req->rq_bytes_sent)
2145 task->tk_status = req->rq_reply_bytes_recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Chuck Lever46121cf2007-01-31 12:14:08 -05002147 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 status = task->tk_status;
2150 if (status >= 0) {
2151 task->tk_action = call_decode;
2152 return;
2153 }
2154
Steve Dickson5753cba2012-02-06 10:08:08 -05002155 trace_rpc_call_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 task->tk_status = 0;
2157 switch(status) {
Trond Myklebust76303992006-08-30 14:32:49 -04002158 case -EHOSTDOWN:
2159 case -EHOSTUNREACH:
2160 case -ENETUNREACH:
Jason Baron3dedbb52014-09-24 18:08:04 +00002161 case -EPERM:
Trond Myklebust9455e3f2014-03-19 13:25:43 -04002162 if (RPC_IS_SOFTCONN(task)) {
2163 rpc_exit(task, status);
2164 break;
2165 }
Trond Myklebust76303992006-08-30 14:32:49 -04002166 /*
2167 * Delay any retries for 3 seconds, then handle as if it
2168 * were a timeout.
2169 */
2170 rpc_delay(task, 3*HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 case -ETIMEDOUT:
2172 task->tk_action = call_timeout;
Trond Myklebust8a19a0b2013-09-24 12:00:27 -04002173 if (!(task->tk_flags & RPC_TASK_NO_RETRANS_TIMEOUT)
2174 && task->tk_client->cl_discrtry)
Trond Myklebusta4f08352013-01-08 09:10:21 -05002175 xprt_conditional_disconnect(req->rq_xprt,
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04002176 req->rq_connect_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 break;
2178 case -ECONNREFUSED:
Trond Myklebustdf277272013-12-31 13:11:43 -05002179 case -ECONNRESET:
2180 case -ECONNABORTED:
Chuck Lever35f5a422006-01-03 09:55:50 +01002181 rpc_force_rebind(clnt);
Trond Myklebust3913c782015-02-08 21:44:04 -05002182 case -EADDRINUSE:
Trond Myklebustc8485e42009-03-11 14:37:59 -04002183 rpc_delay(task, 3*HZ);
2184 case -EPIPE:
2185 case -ENOTCONN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 task->tk_action = call_bind;
2187 break;
Trond Myklebust93aa6c72015-07-03 09:28:09 -04002188 case -ENOBUFS:
2189 rpc_delay(task, HZ>>2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 case -EAGAIN:
2191 task->tk_action = call_transmit;
2192 break;
2193 case -EIO:
2194 /* shutdown or soft timeout */
2195 rpc_exit(task, status);
2196 break;
2197 default:
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04002198 if (clnt->cl_chatty)
2199 printk("%s: RPC call returned error %d\n",
Trond Myklebust55909f22013-08-23 11:48:15 -04002200 clnt->cl_program->name, -status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 rpc_exit(task, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203}
2204
2205/*
Trond Myklebuste0ab53d2006-07-27 17:22:50 -04002206 * 6a. Handle RPC timeout
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 * We do not release the request slot, so we keep using the
2208 * same XID for all retransmits.
2209 */
2210static void
2211call_timeout(struct rpc_task *task)
2212{
2213 struct rpc_clnt *clnt = task->tk_client;
2214
2215 if (xprt_adjust_timeout(task->tk_rqstp) == 0) {
Chuck Lever46121cf2007-01-31 12:14:08 -05002216 dprintk("RPC: %5u call_timeout (minor)\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 goto retry;
2218 }
2219
Chuck Lever46121cf2007-01-31 12:14:08 -05002220 dprintk("RPC: %5u call_timeout (major)\n", task->tk_pid);
Chuck Leveref759a22006-03-20 13:44:17 -05002221 task->tk_timeouts++;
2222
Chuck Lever3a28bec2009-12-03 15:58:56 -05002223 if (RPC_IS_SOFTCONN(task)) {
2224 rpc_exit(task, -ETIMEDOUT);
2225 return;
2226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (RPC_IS_SOFT(task)) {
Joe Perchescac5d072012-07-18 11:17:11 -07002228 if (clnt->cl_chatty) {
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04002229 printk(KERN_NOTICE "%s: server %s not responding, timed out\n",
Trond Myklebust55909f22013-08-23 11:48:15 -04002230 clnt->cl_program->name,
Trond Myklebustfb43d172016-01-30 16:39:26 -05002231 task->tk_xprt->servername);
Joe Perchescac5d072012-07-18 11:17:11 -07002232 }
Trond Myklebust7494d002011-04-24 14:28:45 -04002233 if (task->tk_flags & RPC_TASK_TIMEOUT)
2234 rpc_exit(task, -ETIMEDOUT);
2235 else
2236 rpc_exit(task, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 return;
2238 }
2239
Chuck Leverf518e35a2006-01-03 09:55:52 +01002240 if (!(task->tk_flags & RPC_CALL_MAJORSEEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 task->tk_flags |= RPC_CALL_MAJORSEEN;
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002242 if (clnt->cl_chatty) {
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04002243 printk(KERN_NOTICE "%s: server %s not responding, still trying\n",
Trond Myklebust55909f22013-08-23 11:48:15 -04002244 clnt->cl_program->name,
Trond Myklebustfb43d172016-01-30 16:39:26 -05002245 task->tk_xprt->servername);
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
Chuck Lever35f5a422006-01-03 09:55:50 +01002248 rpc_force_rebind(clnt);
Trond Myklebustb48633b2008-04-22 16:47:55 -04002249 /*
2250 * Did our request time out due to an RPCSEC_GSS out-of-sequence
2251 * event? RFC2203 requires the server to drop all such requests.
2252 */
2253 rpcauth_invalcred(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 task->tk_action = call_bind;
2257 task->tk_status = 0;
2258}
2259
2260/*
2261 * 7. Decode the RPC reply
2262 */
2263static void
2264call_decode(struct rpc_task *task)
2265{
2266 struct rpc_clnt *clnt = task->tk_client;
2267 struct rpc_rqst *req = task->tk_rqstp;
Chuck Leverbf269552010-12-14 14:59:29 +00002268 kxdrdproc_t decode = task->tk_msg.rpc_proc->p_decode;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07002269 __be32 *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Vasily Averin726fd6a2011-06-01 16:23:59 +04002271 dprint_status(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Chuck Leverf518e35a2006-01-03 09:55:52 +01002273 if (task->tk_flags & RPC_CALL_MAJORSEEN) {
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002274 if (clnt->cl_chatty) {
Olga Kornievskaiab6b61522008-06-09 16:51:31 -04002275 printk(KERN_NOTICE "%s: server %s OK\n",
Trond Myklebust55909f22013-08-23 11:48:15 -04002276 clnt->cl_program->name,
Trond Myklebustfb43d172016-01-30 16:39:26 -05002277 task->tk_xprt->servername);
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 task->tk_flags &= ~RPC_CALL_MAJORSEEN;
2280 }
2281
Trond Myklebust43ac3f22006-03-20 13:44:51 -05002282 /*
2283 * Ensure that we see all writes made by xprt_complete_rqst()
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -04002284 * before it changed req->rq_reply_bytes_recvd.
Trond Myklebust43ac3f22006-03-20 13:44:51 -05002285 */
2286 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 req->rq_rcv_buf.len = req->rq_private_buf.len;
2288
2289 /* Check that the softirq receive buffer is valid */
2290 WARN_ON(memcmp(&req->rq_rcv_buf, &req->rq_private_buf,
2291 sizeof(req->rq_rcv_buf)) != 0);
2292
Trond Myklebust1e799b62008-03-21 16:19:41 -04002293 if (req->rq_rcv_buf.len < 12) {
2294 if (!RPC_IS_SOFT(task)) {
2295 task->tk_action = call_bind;
Trond Myklebust1e799b62008-03-21 16:19:41 -04002296 goto out_retry;
2297 }
2298 dprintk("RPC: %s: too small RPC reply size (%d bytes)\n",
Trond Myklebust55909f22013-08-23 11:48:15 -04002299 clnt->cl_program->name, task->tk_status);
Trond Myklebust1e799b62008-03-21 16:19:41 -04002300 task->tk_action = call_timeout;
2301 goto out_retry;
2302 }
2303
Chuck Leverb0e1c572008-05-21 17:09:19 -04002304 p = rpc_verify_header(task);
Trond Myklebustabbcf282006-01-03 09:55:03 +01002305 if (IS_ERR(p)) {
2306 if (p == ERR_PTR(-EAGAIN))
2307 goto out_retry;
2308 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
2310
Trond Myklebustabbcf282006-01-03 09:55:03 +01002311 task->tk_action = rpc_exit_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04002313 if (decode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 task->tk_status = rpcauth_unwrap_resp(task, decode, req, p,
2315 task->tk_msg.rpc_resp);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -04002316 }
Chuck Lever46121cf2007-01-31 12:14:08 -05002317 dprintk("RPC: %5u call_decode result %d\n", task->tk_pid,
2318 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 return;
2320out_retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 task->tk_status = 0;
Chuck Leverb0e1c572008-05-21 17:09:19 -04002322 /* Note: rpc_verify_header() may have freed the RPC slot */
Trond Myklebust24b74bf2008-04-19 13:15:47 -04002323 if (task->tk_rqstp == req) {
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -04002324 req->rq_reply_bytes_recvd = req->rq_rcv_buf.len = 0;
Trond Myklebust24b74bf2008-04-19 13:15:47 -04002325 if (task->tk_client->cl_discrtry)
Trond Myklebusta4f08352013-01-08 09:10:21 -05002326 xprt_conditional_disconnect(req->rq_xprt,
Trond Myklebust7c1d71c2008-04-17 16:52:57 -04002327 req->rq_connect_cookie);
Trond Myklebust24b74bf2008-04-19 13:15:47 -04002328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07002331static __be32 *
Chuck Leverb0e1c572008-05-21 17:09:19 -04002332rpc_encode_header(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
2334 struct rpc_clnt *clnt = task->tk_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 struct rpc_rqst *req = task->tk_rqstp;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07002336 __be32 *p = req->rq_svec[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
2338 /* FIXME: check buffer size? */
Chuck Lever808012f2005-08-25 16:25:49 -07002339
Trond Myklebusta4f08352013-01-08 09:10:21 -05002340 p = xprt_skip_transport_header(req->rq_xprt, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 *p++ = req->rq_xid; /* XID */
2342 *p++ = htonl(RPC_CALL); /* CALL */
2343 *p++ = htonl(RPC_VERSION); /* RPC version */
2344 *p++ = htonl(clnt->cl_prog); /* program number */
2345 *p++ = htonl(clnt->cl_vers); /* program version */
2346 *p++ = htonl(task->tk_msg.rpc_proc->p_proc); /* procedure */
Trond Myklebust334ccfd2005-06-22 17:16:19 +00002347 p = rpcauth_marshcred(task, p);
2348 req->rq_slen = xdr_adjust_iovec(&req->rq_svec[0], p);
2349 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07002352static __be32 *
Chuck Leverb0e1c572008-05-21 17:09:19 -04002353rpc_verify_header(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354{
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002355 struct rpc_clnt *clnt = task->tk_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 struct kvec *iov = &task->tk_rqstp->rq_rcv_buf.head[0];
2357 int len = task->tk_rqstp->rq_rcv_buf.len >> 2;
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07002358 __be32 *p = iov->iov_base;
2359 u32 n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 int error = -EACCES;
2361
David Howellse8896492006-08-24 15:44:19 -04002362 if ((task->tk_rqstp->rq_rcv_buf.len & 3) != 0) {
2363 /* RFC-1014 says that the representation of XDR data must be a
2364 * multiple of four bytes
2365 * - if it isn't pointer subtraction in the NFS client may give
2366 * undefined results
2367 */
Trond Myklebust8a702bb2007-06-27 18:30:26 -04002368 dprintk("RPC: %5u %s: XDR representation not a multiple of"
Harvey Harrison0dc47872008-03-05 20:47:47 -08002369 " 4 bytes: 0x%x\n", task->tk_pid, __func__,
Trond Myklebust8a702bb2007-06-27 18:30:26 -04002370 task->tk_rqstp->rq_rcv_buf.len);
Andy Adamson35fa5f72013-08-14 11:59:17 -04002371 error = -EIO;
2372 goto out_err;
David Howellse8896492006-08-24 15:44:19 -04002373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if ((len -= 3) < 0)
2375 goto out_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04002377 p += 1; /* skip XID */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if ((n = ntohl(*p++)) != RPC_REPLY) {
Trond Myklebust8a702bb2007-06-27 18:30:26 -04002379 dprintk("RPC: %5u %s: not an RPC reply: %x\n",
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04002380 task->tk_pid, __func__, n);
Andy Adamson35fa5f72013-08-14 11:59:17 -04002381 error = -EIO;
Trond Myklebustabbcf282006-01-03 09:55:03 +01002382 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 }
Ricardo Labiagaf4a2e412009-04-01 09:22:54 -04002384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if ((n = ntohl(*p++)) != RPC_MSG_ACCEPTED) {
2386 if (--len < 0)
2387 goto out_overflow;
2388 switch ((n = ntohl(*p++))) {
Joe Perches89f0e4f2011-07-01 09:43:12 +00002389 case RPC_AUTH_ERROR:
2390 break;
2391 case RPC_MISMATCH:
2392 dprintk("RPC: %5u %s: RPC call version mismatch!\n",
2393 task->tk_pid, __func__);
2394 error = -EPROTONOSUPPORT;
2395 goto out_err;
2396 default:
2397 dprintk("RPC: %5u %s: RPC call rejected, "
2398 "unknown error: %x\n",
2399 task->tk_pid, __func__, n);
Andy Adamson35fa5f72013-08-14 11:59:17 -04002400 error = -EIO;
2401 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 }
2403 if (--len < 0)
2404 goto out_overflow;
2405 switch ((n = ntohl(*p++))) {
2406 case RPC_AUTH_REJECTEDCRED:
2407 case RPC_AUTH_REJECTEDVERF:
2408 case RPCSEC_GSS_CREDPROBLEM:
2409 case RPCSEC_GSS_CTXPROBLEM:
2410 if (!task->tk_cred_retry)
2411 break;
2412 task->tk_cred_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05002413 dprintk("RPC: %5u %s: retry stale creds\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002414 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 rpcauth_invalcred(task);
Trond Myklebust220bcc22007-10-01 12:06:48 -04002416 /* Ensure we obtain a new XID! */
2417 xprt_release(task);
Trond Myklebust118df3d2010-10-24 17:17:31 -04002418 task->tk_action = call_reserve;
Trond Myklebustabbcf282006-01-03 09:55:03 +01002419 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 case RPC_AUTH_BADCRED:
2421 case RPC_AUTH_BADVERF:
2422 /* possibly garbled cred/verf? */
2423 if (!task->tk_garb_retry)
2424 break;
2425 task->tk_garb_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05002426 dprintk("RPC: %5u %s: retry garbled creds\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002427 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01002429 goto out_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 case RPC_AUTH_TOOWEAK:
Chuck Leverb0e1c572008-05-21 17:09:19 -04002431 printk(KERN_NOTICE "RPC: server %s requires stronger "
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002432 "authentication.\n",
Trond Myklebustfb43d172016-01-30 16:39:26 -05002433 task->tk_xprt->servername);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 break;
2435 default:
Trond Myklebust8a702bb2007-06-27 18:30:26 -04002436 dprintk("RPC: %5u %s: unknown auth error: %x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002437 task->tk_pid, __func__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 error = -EIO;
2439 }
Chuck Lever46121cf2007-01-31 12:14:08 -05002440 dprintk("RPC: %5u %s: call rejected %d\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002441 task->tk_pid, __func__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 goto out_err;
2443 }
Andy Adamson35fa5f72013-08-14 11:59:17 -04002444 p = rpcauth_checkverf(task, p);
2445 if (IS_ERR(p)) {
2446 error = PTR_ERR(p);
2447 dprintk("RPC: %5u %s: auth check failed with %d\n",
2448 task->tk_pid, __func__, error);
Trond Myklebustabbcf282006-01-03 09:55:03 +01002449 goto out_garbage; /* bad verifier, retry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 }
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07002451 len = p - (__be32 *)iov->iov_base - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (len < 0)
2453 goto out_overflow;
2454 switch ((n = ntohl(*p++))) {
2455 case RPC_SUCCESS:
2456 return p;
2457 case RPC_PROG_UNAVAIL:
Trond Myklebustfb43d172016-01-30 16:39:26 -05002458 dprintk("RPC: %5u %s: program %u is unsupported "
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002459 "by server %s\n", task->tk_pid, __func__,
2460 (unsigned int)clnt->cl_prog,
Trond Myklebustfb43d172016-01-30 16:39:26 -05002461 task->tk_xprt->servername);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00002462 error = -EPFNOSUPPORT;
2463 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 case RPC_PROG_MISMATCH:
Trond Myklebustfb43d172016-01-30 16:39:26 -05002465 dprintk("RPC: %5u %s: program %u, version %u unsupported "
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002466 "by server %s\n", task->tk_pid, __func__,
2467 (unsigned int)clnt->cl_prog,
2468 (unsigned int)clnt->cl_vers,
Trond Myklebustfb43d172016-01-30 16:39:26 -05002469 task->tk_xprt->servername);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00002470 error = -EPROTONOSUPPORT;
2471 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 case RPC_PROC_UNAVAIL:
Trond Myklebustfb43d172016-01-30 16:39:26 -05002473 dprintk("RPC: %5u %s: proc %s unsupported by program %u, "
Chuck Lever46121cf2007-01-31 12:14:08 -05002474 "version %u on server %s\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002475 task->tk_pid, __func__,
Chuck Lever3748f1e2008-05-21 17:09:12 -04002476 rpc_proc_name(task),
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002477 clnt->cl_prog, clnt->cl_vers,
Trond Myklebustfb43d172016-01-30 16:39:26 -05002478 task->tk_xprt->servername);
Andreas Gruenbachercdf47702005-06-22 17:16:23 +00002479 error = -EOPNOTSUPP;
2480 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 case RPC_GARBAGE_ARGS:
Chuck Lever46121cf2007-01-31 12:14:08 -05002482 dprintk("RPC: %5u %s: server saw garbage\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002483 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 break; /* retry */
2485 default:
Trond Myklebust8a702bb2007-06-27 18:30:26 -04002486 dprintk("RPC: %5u %s: server accept status: %x\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002487 task->tk_pid, __func__, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 /* Also retry */
2489 }
2490
Trond Myklebustabbcf282006-01-03 09:55:03 +01002491out_garbage:
Trond Myklebust4e0038b2012-03-01 17:01:05 -05002492 clnt->cl_stats->rpcgarbage++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 if (task->tk_garb_retry) {
2494 task->tk_garb_retry--;
Chuck Lever46121cf2007-01-31 12:14:08 -05002495 dprintk("RPC: %5u %s: retrying\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -08002496 task->tk_pid, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 task->tk_action = call_bind;
Trond Myklebustabbcf282006-01-03 09:55:03 +01002498out_retry:
2499 return ERR_PTR(-EAGAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501out_err:
2502 rpc_exit(task, error);
Trond Myklebust8a702bb2007-06-27 18:30:26 -04002503 dprintk("RPC: %5u %s: call failed with error %d\n", task->tk_pid,
Harvey Harrison0dc47872008-03-05 20:47:47 -08002504 __func__, error);
Trond Myklebustabbcf282006-01-03 09:55:03 +01002505 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506out_overflow:
Trond Myklebust8a702bb2007-06-27 18:30:26 -04002507 dprintk("RPC: %5u %s: server reply was truncated.\n", task->tk_pid,
Harvey Harrison0dc47872008-03-05 20:47:47 -08002508 __func__);
Trond Myklebustabbcf282006-01-03 09:55:03 +01002509 goto out_garbage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00002511
Chuck Lever9f06c712010-12-14 14:59:18 +00002512static void rpcproc_encode_null(void *rqstp, struct xdr_stream *xdr, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00002513{
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00002514}
2515
Chuck Leverbf269552010-12-14 14:59:29 +00002516static int rpcproc_decode_null(void *rqstp, struct xdr_stream *xdr, void *obj)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00002517{
2518 return 0;
2519}
2520
2521static struct rpc_procinfo rpcproc_null = {
2522 .p_encode = rpcproc_encode_null,
2523 .p_decode = rpcproc_decode_null,
2524};
2525
Chuck Levercaabea82009-12-03 15:58:56 -05002526static int rpc_ping(struct rpc_clnt *clnt)
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00002527{
2528 struct rpc_message msg = {
2529 .rpc_proc = &rpcproc_null,
2530 };
2531 int err;
2532 msg.rpc_cred = authnull_ops.lookup_cred(NULL, NULL, 0);
Chuck Levercaabea82009-12-03 15:58:56 -05002533 err = rpc_call_sync(clnt, &msg, RPC_TASK_SOFT | RPC_TASK_SOFTCONN);
Trond Myklebust5ee0ed72005-06-22 17:16:20 +00002534 put_rpccred(msg.rpc_cred);
2535 return err;
2536}
Trond Myklebust188fef12007-06-16 14:18:40 -04002537
Trond Myklebust7f554892016-01-30 23:43:35 -05002538static
2539struct rpc_task *rpc_call_null_helper(struct rpc_clnt *clnt,
2540 struct rpc_xprt *xprt, struct rpc_cred *cred, int flags,
2541 const struct rpc_call_ops *ops, void *data)
Trond Myklebust5e1550d2007-06-23 10:17:16 -04002542{
2543 struct rpc_message msg = {
2544 .rpc_proc = &rpcproc_null,
2545 .rpc_cred = cred,
2546 };
Trond Myklebust84115e12007-07-14 15:39:59 -04002547 struct rpc_task_setup task_setup_data = {
2548 .rpc_client = clnt,
Trond Myklebust7f554892016-01-30 23:43:35 -05002549 .rpc_xprt = xprt,
Trond Myklebust84115e12007-07-14 15:39:59 -04002550 .rpc_message = &msg,
Trond Myklebust7f554892016-01-30 23:43:35 -05002551 .callback_ops = (ops != NULL) ? ops : &rpc_default_ops,
2552 .callback_data = data,
Trond Myklebust84115e12007-07-14 15:39:59 -04002553 .flags = flags,
2554 };
Trond Myklebust7f554892016-01-30 23:43:35 -05002555
Trond Myklebustc970aa82007-07-14 15:39:59 -04002556 return rpc_run_task(&task_setup_data);
Trond Myklebust5e1550d2007-06-23 10:17:16 -04002557}
Trond Myklebust7f554892016-01-30 23:43:35 -05002558
2559struct rpc_task *rpc_call_null(struct rpc_clnt *clnt, struct rpc_cred *cred, int flags)
2560{
2561 return rpc_call_null_helper(clnt, NULL, cred, flags, NULL, NULL);
2562}
Trond Myklebuste8914c62007-07-14 15:39:59 -04002563EXPORT_SYMBOL_GPL(rpc_call_null);
Trond Myklebust5e1550d2007-06-23 10:17:16 -04002564
Trond Myklebust7f554892016-01-30 23:43:35 -05002565struct rpc_cb_add_xprt_calldata {
2566 struct rpc_xprt_switch *xps;
2567 struct rpc_xprt *xprt;
2568};
2569
2570static void rpc_cb_add_xprt_done(struct rpc_task *task, void *calldata)
2571{
2572 struct rpc_cb_add_xprt_calldata *data = calldata;
2573
2574 if (task->tk_status == 0)
2575 rpc_xprt_switch_add_xprt(data->xps, data->xprt);
2576}
2577
2578static void rpc_cb_add_xprt_release(void *calldata)
2579{
2580 struct rpc_cb_add_xprt_calldata *data = calldata;
2581
2582 xprt_put(data->xprt);
2583 xprt_switch_put(data->xps);
2584 kfree(data);
2585}
2586
Trond Myklebustce272302016-07-24 17:06:28 -04002587static const struct rpc_call_ops rpc_cb_add_xprt_call_ops = {
Trond Myklebust7f554892016-01-30 23:43:35 -05002588 .rpc_call_done = rpc_cb_add_xprt_done,
2589 .rpc_release = rpc_cb_add_xprt_release,
2590};
2591
2592/**
2593 * rpc_clnt_test_and_add_xprt - Test and add a new transport to a rpc_clnt
2594 * @clnt: pointer to struct rpc_clnt
2595 * @xps: pointer to struct rpc_xprt_switch,
2596 * @xprt: pointer struct rpc_xprt
2597 * @dummy: unused
2598 */
2599int rpc_clnt_test_and_add_xprt(struct rpc_clnt *clnt,
2600 struct rpc_xprt_switch *xps, struct rpc_xprt *xprt,
2601 void *dummy)
2602{
2603 struct rpc_cb_add_xprt_calldata *data;
2604 struct rpc_cred *cred;
2605 struct rpc_task *task;
2606
2607 data = kmalloc(sizeof(*data), GFP_NOFS);
2608 if (!data)
2609 return -ENOMEM;
2610 data->xps = xprt_switch_get(xps);
2611 data->xprt = xprt_get(xprt);
2612
2613 cred = authnull_ops.lookup_cred(NULL, NULL, 0);
2614 task = rpc_call_null_helper(clnt, xprt, cred,
2615 RPC_TASK_SOFT|RPC_TASK_SOFTCONN|RPC_TASK_ASYNC,
2616 &rpc_cb_add_xprt_call_ops, data);
2617 put_rpccred(cred);
2618 if (IS_ERR(task))
2619 return PTR_ERR(task);
2620 rpc_put_task(task);
2621 return 1;
2622}
2623EXPORT_SYMBOL_GPL(rpc_clnt_test_and_add_xprt);
2624
2625/**
Andy Adamsonfda0ab42016-09-09 09:22:26 -04002626 * rpc_clnt_setup_test_and_add_xprt()
2627 *
2628 * This is an rpc_clnt_add_xprt setup() function which returns 1 so:
2629 * 1) caller of the test function must dereference the rpc_xprt_switch
2630 * and the rpc_xprt.
2631 * 2) test function must call rpc_xprt_switch_add_xprt, usually in
2632 * the rpc_call_done routine.
2633 *
2634 * Upon success (return of 1), the test function adds the new
2635 * transport to the rpc_clnt xprt switch
2636 *
2637 * @clnt: struct rpc_clnt to get the new transport
2638 * @xps: the rpc_xprt_switch to hold the new transport
2639 * @xprt: the rpc_xprt to test
2640 * @data: a struct rpc_add_xprt_test pointer that holds the test function
2641 * and test function call data
2642 */
2643int rpc_clnt_setup_test_and_add_xprt(struct rpc_clnt *clnt,
2644 struct rpc_xprt_switch *xps,
2645 struct rpc_xprt *xprt,
2646 void *data)
2647{
2648 struct rpc_cred *cred;
2649 struct rpc_task *task;
2650 struct rpc_add_xprt_test *xtest = (struct rpc_add_xprt_test *)data;
2651 int status = -EADDRINUSE;
2652
2653 xprt = xprt_get(xprt);
2654 xprt_switch_get(xps);
2655
2656 if (rpc_xprt_switch_has_addr(xps, (struct sockaddr *)&xprt->addr))
2657 goto out_err;
2658
2659 /* Test the connection */
2660 cred = authnull_ops.lookup_cred(NULL, NULL, 0);
2661 task = rpc_call_null_helper(clnt, xprt, cred,
2662 RPC_TASK_SOFT | RPC_TASK_SOFTCONN,
2663 NULL, NULL);
2664 put_rpccred(cred);
2665 if (IS_ERR(task)) {
2666 status = PTR_ERR(task);
2667 goto out_err;
2668 }
2669 status = task->tk_status;
2670 rpc_put_task(task);
2671
2672 if (status < 0)
2673 goto out_err;
2674
2675 /* rpc_xprt_switch and rpc_xprt are deferrenced by add_xprt_test() */
2676 xtest->add_xprt_test(clnt, xprt, xtest->data);
2677
2678 /* so that rpc_clnt_add_xprt does not call rpc_xprt_switch_add_xprt */
2679 return 1;
2680out_err:
2681 xprt_put(xprt);
2682 xprt_switch_put(xps);
2683 pr_info("RPC: rpc_clnt_test_xprt failed: %d addr %s not added\n",
2684 status, xprt->address_strings[RPC_DISPLAY_ADDR]);
2685 return status;
2686}
2687EXPORT_SYMBOL_GPL(rpc_clnt_setup_test_and_add_xprt);
2688
2689/**
Trond Myklebust7f554892016-01-30 23:43:35 -05002690 * rpc_clnt_add_xprt - Add a new transport to a rpc_clnt
2691 * @clnt: pointer to struct rpc_clnt
2692 * @xprtargs: pointer to struct xprt_create
2693 * @setup: callback to test and/or set up the connection
2694 * @data: pointer to setup function data
2695 *
2696 * Creates a new transport using the parameters set in args and
2697 * adds it to clnt.
2698 * If ping is set, then test that connectivity succeeds before
2699 * adding the new transport.
2700 *
2701 */
2702int rpc_clnt_add_xprt(struct rpc_clnt *clnt,
2703 struct xprt_create *xprtargs,
2704 int (*setup)(struct rpc_clnt *,
2705 struct rpc_xprt_switch *,
2706 struct rpc_xprt *,
2707 void *),
2708 void *data)
2709{
2710 struct rpc_xprt_switch *xps;
2711 struct rpc_xprt *xprt;
Trond Myklebust3851f1c2016-08-04 00:08:45 -04002712 unsigned long reconnect_timeout;
Trond Myklebust7f554892016-01-30 23:43:35 -05002713 unsigned char resvport;
2714 int ret = 0;
2715
2716 rcu_read_lock();
2717 xps = xprt_switch_get(rcu_dereference(clnt->cl_xpi.xpi_xpswitch));
2718 xprt = xprt_iter_xprt(&clnt->cl_xpi);
2719 if (xps == NULL || xprt == NULL) {
2720 rcu_read_unlock();
Lin Yied574f72019-06-10 10:16:56 +08002721 xprt_switch_put(xps);
Trond Myklebust7f554892016-01-30 23:43:35 -05002722 return -EAGAIN;
2723 }
2724 resvport = xprt->resvport;
Trond Myklebust3851f1c2016-08-04 00:08:45 -04002725 reconnect_timeout = xprt->max_reconnect_timeout;
Trond Myklebust7f554892016-01-30 23:43:35 -05002726 rcu_read_unlock();
2727
2728 xprt = xprt_create_transport(xprtargs);
2729 if (IS_ERR(xprt)) {
2730 ret = PTR_ERR(xprt);
2731 goto out_put_switch;
2732 }
2733 xprt->resvport = resvport;
Trond Myklebust3851f1c2016-08-04 00:08:45 -04002734 xprt->max_reconnect_timeout = reconnect_timeout;
Trond Myklebust7f554892016-01-30 23:43:35 -05002735
2736 rpc_xprt_switch_set_roundrobin(xps);
2737 if (setup) {
2738 ret = setup(clnt, xps, xprt, data);
2739 if (ret != 0)
2740 goto out_put_xprt;
2741 }
2742 rpc_xprt_switch_add_xprt(xps, xprt);
2743out_put_xprt:
2744 xprt_put(xprt);
2745out_put_switch:
2746 xprt_switch_put(xps);
2747 return ret;
2748}
2749EXPORT_SYMBOL_GPL(rpc_clnt_add_xprt);
2750
Trond Myklebust8d480322016-08-05 19:03:31 -04002751static int
2752rpc_xprt_cap_max_reconnect_timeout(struct rpc_clnt *clnt,
2753 struct rpc_xprt *xprt,
2754 void *data)
2755{
2756 unsigned long timeout = *((unsigned long *)data);
2757
2758 if (timeout < xprt->max_reconnect_timeout)
2759 xprt->max_reconnect_timeout = timeout;
2760 return 0;
2761}
2762
2763void
2764rpc_cap_max_reconnect_timeout(struct rpc_clnt *clnt, unsigned long timeo)
2765{
2766 rpc_clnt_iterate_for_each_xprt(clnt,
2767 rpc_xprt_cap_max_reconnect_timeout,
2768 &timeo);
2769}
2770EXPORT_SYMBOL_GPL(rpc_cap_max_reconnect_timeout);
2771
Andy Adamson3b58a8a2016-09-09 09:22:23 -04002772void rpc_clnt_xprt_switch_put(struct rpc_clnt *clnt)
2773{
Anna Schumakerbb29dd82016-10-26 10:33:31 -04002774 rcu_read_lock();
Andy Adamson3b58a8a2016-09-09 09:22:23 -04002775 xprt_switch_put(rcu_dereference(clnt->cl_xpi.xpi_xpswitch));
Anna Schumakerbb29dd82016-10-26 10:33:31 -04002776 rcu_read_unlock();
Andy Adamson3b58a8a2016-09-09 09:22:23 -04002777}
2778EXPORT_SYMBOL_GPL(rpc_clnt_xprt_switch_put);
2779
Andy Adamsondd691712016-09-09 09:22:24 -04002780void rpc_clnt_xprt_switch_add_xprt(struct rpc_clnt *clnt, struct rpc_xprt *xprt)
2781{
Anna Schumakerbb29dd82016-10-26 10:33:31 -04002782 rcu_read_lock();
Andy Adamsondd691712016-09-09 09:22:24 -04002783 rpc_xprt_switch_add_xprt(rcu_dereference(clnt->cl_xpi.xpi_xpswitch),
2784 xprt);
Anna Schumakerbb29dd82016-10-26 10:33:31 -04002785 rcu_read_unlock();
Andy Adamsondd691712016-09-09 09:22:24 -04002786}
2787EXPORT_SYMBOL_GPL(rpc_clnt_xprt_switch_add_xprt);
2788
Andy Adamson39e5d2d2016-09-09 09:22:25 -04002789bool rpc_clnt_xprt_switch_has_addr(struct rpc_clnt *clnt,
2790 const struct sockaddr *sap)
2791{
2792 struct rpc_xprt_switch *xps;
2793 bool ret;
2794
Andy Adamson39e5d2d2016-09-09 09:22:25 -04002795 rcu_read_lock();
Anna Schumakerbb29dd82016-10-26 10:33:31 -04002796 xps = rcu_dereference(clnt->cl_xpi.xpi_xpswitch);
Andy Adamson39e5d2d2016-09-09 09:22:25 -04002797 ret = rpc_xprt_switch_has_addr(xps, sap);
2798 rcu_read_unlock();
2799 return ret;
2800}
2801EXPORT_SYMBOL_GPL(rpc_clnt_xprt_switch_has_addr);
2802
Jeff Laytonf895b252014-11-17 16:58:04 -05002803#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
Chuck Lever68a23ee2008-05-21 17:09:26 -04002804static void rpc_show_header(void)
2805{
Chuck Levercb3997b2008-05-21 17:09:41 -04002806 printk(KERN_INFO "-pid- flgs status -client- --rqstp- "
2807 "-timeout ---ops--\n");
Chuck Lever68a23ee2008-05-21 17:09:26 -04002808}
2809
Chuck Lever38e886e2008-05-21 17:09:33 -04002810static void rpc_show_task(const struct rpc_clnt *clnt,
2811 const struct rpc_task *task)
2812{
2813 const char *rpc_waitq = "none";
Chuck Lever38e886e2008-05-21 17:09:33 -04002814
2815 if (RPC_IS_QUEUED(task))
2816 rpc_waitq = rpc_qname(task->tk_waitqueue);
2817
Joe Perchesb3bceda2010-12-21 10:52:24 -05002818 printk(KERN_INFO "%5u %04x %6d %8p %8p %8ld %8p %sv%u %s a:%ps q:%s\n",
Chuck Levercb3997b2008-05-21 17:09:41 -04002819 task->tk_pid, task->tk_flags, task->tk_status,
2820 clnt, task->tk_rqstp, task->tk_timeout, task->tk_ops,
Trond Myklebust55909f22013-08-23 11:48:15 -04002821 clnt->cl_program->name, clnt->cl_vers, rpc_proc_name(task),
Joe Perchesb3bceda2010-12-21 10:52:24 -05002822 task->tk_action, rpc_waitq);
Chuck Lever38e886e2008-05-21 17:09:33 -04002823}
2824
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04002825void rpc_show_tasks(struct net *net)
Trond Myklebust188fef12007-06-16 14:18:40 -04002826{
2827 struct rpc_clnt *clnt;
Chuck Lever38e886e2008-05-21 17:09:33 -04002828 struct rpc_task *task;
Chuck Lever68a23ee2008-05-21 17:09:26 -04002829 int header = 0;
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04002830 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Trond Myklebust188fef12007-06-16 14:18:40 -04002831
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04002832 spin_lock(&sn->rpc_client_lock);
2833 list_for_each_entry(clnt, &sn->all_clients, cl_clients) {
Trond Myklebust188fef12007-06-16 14:18:40 -04002834 spin_lock(&clnt->cl_lock);
Chuck Lever38e886e2008-05-21 17:09:33 -04002835 list_for_each_entry(task, &clnt->cl_tasks, tk_task) {
Chuck Lever68a23ee2008-05-21 17:09:26 -04002836 if (!header) {
2837 rpc_show_header();
2838 header++;
2839 }
Chuck Lever38e886e2008-05-21 17:09:33 -04002840 rpc_show_task(clnt, task);
Trond Myklebust188fef12007-06-16 14:18:40 -04002841 }
2842 spin_unlock(&clnt->cl_lock);
2843 }
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +04002844 spin_unlock(&sn->rpc_client_lock);
Trond Myklebust188fef12007-06-16 14:18:40 -04002845}
2846#endif
Jeff Layton3c87ef62015-06-03 16:14:25 -04002847
2848#if IS_ENABLED(CONFIG_SUNRPC_SWAP)
Trond Myklebust15001e52016-01-30 20:05:34 -05002849static int
2850rpc_clnt_swap_activate_callback(struct rpc_clnt *clnt,
2851 struct rpc_xprt *xprt,
2852 void *dummy)
2853{
2854 return xprt_enable_swap(xprt);
2855}
2856
Jeff Layton3c87ef62015-06-03 16:14:25 -04002857int
2858rpc_clnt_swap_activate(struct rpc_clnt *clnt)
2859{
Trond Myklebust15001e52016-01-30 20:05:34 -05002860 if (atomic_inc_return(&clnt->cl_swapper) == 1)
2861 return rpc_clnt_iterate_for_each_xprt(clnt,
2862 rpc_clnt_swap_activate_callback, NULL);
2863 return 0;
Jeff Layton3c87ef62015-06-03 16:14:25 -04002864}
2865EXPORT_SYMBOL_GPL(rpc_clnt_swap_activate);
2866
Trond Myklebust15001e52016-01-30 20:05:34 -05002867static int
2868rpc_clnt_swap_deactivate_callback(struct rpc_clnt *clnt,
2869 struct rpc_xprt *xprt,
2870 void *dummy)
2871{
2872 xprt_disable_swap(xprt);
2873 return 0;
2874}
2875
Jeff Layton3c87ef62015-06-03 16:14:25 -04002876void
2877rpc_clnt_swap_deactivate(struct rpc_clnt *clnt)
2878{
Trond Myklebust15001e52016-01-30 20:05:34 -05002879 if (atomic_dec_if_positive(&clnt->cl_swapper) == 0)
2880 rpc_clnt_iterate_for_each_xprt(clnt,
2881 rpc_clnt_swap_deactivate_callback, NULL);
Jeff Layton3c87ef62015-06-03 16:14:25 -04002882}
2883EXPORT_SYMBOL_GPL(rpc_clnt_swap_deactivate);
2884#endif /* CONFIG_SUNRPC_SWAP */